-- MariaDB dump 10.19 Distrib 10.6.7-MariaDB, for Win64 (AMD64) -- -- Host: localhost Database: gnuboard -- ------------------------------------------------------ -- Server version 10.6.7-MariaDB-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `g5_auth` -- DROP TABLE IF EXISTS `g5_auth`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_auth` ( `mb_id` varchar(20) NOT NULL DEFAULT '', `au_menu` varchar(20) NOT NULL DEFAULT '', `au_auth` set('r','w','d') NOT NULL DEFAULT '', PRIMARY KEY (`mb_id`,`au_menu`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_auth` -- LOCK TABLES `g5_auth` WRITE; /*!40000 ALTER TABLE `g5_auth` DISABLE KEYS */; INSERT INTO `g5_auth` VALUES ('apache','100290','r,w,d'); /*!40000 ALTER TABLE `g5_auth` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_autosave` -- DROP TABLE IF EXISTS `g5_autosave`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_autosave` ( `as_id` int(11) NOT NULL AUTO_INCREMENT, `mb_id` varchar(20) NOT NULL, `as_uid` bigint(20) unsigned NOT NULL, `as_subject` varchar(255) NOT NULL, `as_content` text NOT NULL, `as_datetime` datetime NOT NULL, PRIMARY KEY (`as_id`), UNIQUE KEY `as_uid` (`as_uid`), KEY `mb_id` (`mb_id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_autosave` -- LOCK TABLES `g5_autosave` WRITE; /*!40000 ALTER TABLE `g5_autosave` DISABLE KEYS */; INSERT INTO `g5_autosave` VALUES (3,'test04',2020122410311741,'임시저장된 글 테스트입니다.','

임시 저장된 글 테스트입니다.


링크와 파일은 당연히 임시 저장안되겠죠.


보통 몇초 후에 자동 저장 될까요?

','2020-12-24 10:33:17'); /*!40000 ALTER TABLE `g5_autosave` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_board` -- DROP TABLE IF EXISTS `g5_board`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_board` ( `bo_table` varchar(20) NOT NULL DEFAULT '', `gr_id` varchar(255) NOT NULL DEFAULT '', `bo_subject` varchar(255) NOT NULL DEFAULT '', `bo_mobile_subject` varchar(255) NOT NULL DEFAULT '', `bo_device` enum('both','pc','mobile') NOT NULL DEFAULT 'both', `bo_admin` varchar(255) NOT NULL DEFAULT '', `bo_list_level` tinyint(4) NOT NULL DEFAULT 0, `bo_read_level` tinyint(4) NOT NULL DEFAULT 0, `bo_write_level` tinyint(4) NOT NULL DEFAULT 0, `bo_reply_level` tinyint(4) NOT NULL DEFAULT 0, `bo_comment_level` tinyint(4) NOT NULL DEFAULT 0, `bo_upload_level` tinyint(4) NOT NULL DEFAULT 0, `bo_download_level` tinyint(4) NOT NULL DEFAULT 0, `bo_html_level` tinyint(4) NOT NULL DEFAULT 0, `bo_link_level` tinyint(4) NOT NULL DEFAULT 0, `bo_count_delete` tinyint(4) NOT NULL DEFAULT 0, `bo_count_modify` tinyint(4) NOT NULL DEFAULT 0, `bo_read_point` int(11) NOT NULL DEFAULT 0, `bo_write_point` int(11) NOT NULL DEFAULT 0, `bo_comment_point` int(11) NOT NULL DEFAULT 0, `bo_download_point` int(11) NOT NULL DEFAULT 0, `bo_use_category` tinyint(4) NOT NULL DEFAULT 0, `bo_category_list` text NOT NULL, `bo_use_sideview` tinyint(4) NOT NULL DEFAULT 0, `bo_use_file_content` tinyint(4) NOT NULL DEFAULT 0, `bo_use_secret` tinyint(4) NOT NULL DEFAULT 0, `bo_use_dhtml_editor` tinyint(4) NOT NULL DEFAULT 0, `bo_select_editor` varchar(50) NOT NULL DEFAULT '', `bo_use_rss_view` tinyint(4) NOT NULL DEFAULT 0, `bo_use_good` tinyint(4) NOT NULL DEFAULT 0, `bo_use_nogood` tinyint(4) NOT NULL DEFAULT 0, `bo_use_name` tinyint(4) NOT NULL DEFAULT 0, `bo_use_signature` tinyint(4) NOT NULL DEFAULT 0, `bo_use_ip_view` tinyint(4) NOT NULL DEFAULT 0, `bo_use_list_view` tinyint(4) NOT NULL DEFAULT 0, `bo_use_list_file` tinyint(4) NOT NULL DEFAULT 0, `bo_use_list_content` tinyint(4) NOT NULL DEFAULT 0, `bo_table_width` int(11) NOT NULL DEFAULT 0, `bo_subject_len` int(11) NOT NULL DEFAULT 0, `bo_mobile_subject_len` int(11) NOT NULL DEFAULT 0, `bo_page_rows` int(11) NOT NULL DEFAULT 0, `bo_mobile_page_rows` int(11) NOT NULL DEFAULT 0, `bo_new` int(11) NOT NULL DEFAULT 0, `bo_hot` int(11) NOT NULL DEFAULT 0, `bo_image_width` int(11) NOT NULL DEFAULT 0, `bo_skin` varchar(255) NOT NULL DEFAULT '', `bo_mobile_skin` varchar(255) NOT NULL DEFAULT '', `bo_include_head` varchar(255) NOT NULL DEFAULT '', `bo_include_tail` varchar(255) NOT NULL DEFAULT '', `bo_content_head` text NOT NULL, `bo_mobile_content_head` text NOT NULL, `bo_content_tail` text NOT NULL, `bo_mobile_content_tail` text NOT NULL, `bo_insert_content` text NOT NULL, `bo_gallery_cols` int(11) NOT NULL DEFAULT 0, `bo_gallery_width` int(11) NOT NULL DEFAULT 0, `bo_gallery_height` int(11) NOT NULL DEFAULT 0, `bo_mobile_gallery_width` int(11) NOT NULL DEFAULT 0, `bo_mobile_gallery_height` int(11) NOT NULL DEFAULT 0, `bo_upload_size` int(11) NOT NULL DEFAULT 0, `bo_reply_order` tinyint(4) NOT NULL DEFAULT 0, `bo_use_search` tinyint(4) NOT NULL DEFAULT 0, `bo_order` int(11) NOT NULL DEFAULT 0, `bo_count_write` int(11) NOT NULL DEFAULT 0, `bo_count_comment` int(11) NOT NULL DEFAULT 0, `bo_write_min` int(11) NOT NULL DEFAULT 0, `bo_write_max` int(11) NOT NULL DEFAULT 0, `bo_comment_min` int(11) NOT NULL DEFAULT 0, `bo_comment_max` int(11) NOT NULL DEFAULT 0, `bo_notice` text NOT NULL, `bo_upload_count` tinyint(4) NOT NULL DEFAULT 0, `bo_use_email` tinyint(4) NOT NULL DEFAULT 0, `bo_use_cert` enum('','cert','adult','hp-cert','hp-adult') NOT NULL DEFAULT '', `bo_use_sns` tinyint(4) NOT NULL DEFAULT 0, `bo_use_captcha` tinyint(4) NOT NULL DEFAULT 0, `bo_sort_field` varchar(255) NOT NULL DEFAULT '', `bo_1_subj` varchar(255) NOT NULL DEFAULT '', `bo_2_subj` varchar(255) NOT NULL DEFAULT '', `bo_3_subj` varchar(255) NOT NULL DEFAULT '', `bo_4_subj` varchar(255) NOT NULL DEFAULT '', `bo_5_subj` varchar(255) NOT NULL DEFAULT '', `bo_6_subj` varchar(255) NOT NULL DEFAULT '', `bo_7_subj` varchar(255) NOT NULL DEFAULT '', `bo_8_subj` varchar(255) NOT NULL DEFAULT '', `bo_9_subj` varchar(255) NOT NULL DEFAULT '', `bo_10_subj` varchar(255) NOT NULL DEFAULT '', `bo_1` varchar(255) NOT NULL DEFAULT '', `bo_2` varchar(255) NOT NULL DEFAULT '', `bo_3` varchar(255) NOT NULL DEFAULT '', `bo_4` varchar(255) NOT NULL DEFAULT '', `bo_5` varchar(255) NOT NULL DEFAULT '', `bo_6` varchar(255) NOT NULL DEFAULT '', `bo_7` varchar(255) NOT NULL DEFAULT '', `bo_8` varchar(255) NOT NULL DEFAULT '', `bo_9` varchar(255) NOT NULL DEFAULT '', `bo_10` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`bo_table`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_board` -- LOCK TABLES `g5_board` WRITE; /*!40000 ALTER TABLE `g5_board` DISABLE KEYS */; INSERT INTO `g5_board` VALUES ('free','shop','자유게시판','','both','apache',1,1,1,1,1,1,1,1,1,1,1,-1,5,1,-20,0,'',1,0,0,1,'',0,1,1,0,0,0,0,0,0,100,60,30,15,15,24,100,835,'basic','basic','_head.php','_tail.php','','','','','',4,202,150,125,100,1048576,1,0,0,7,67,0,0,0,0,'',2,0,'',0,0,'','','','','','','','','','','','','','','','','','','','',''),('gallery','shop','갤러리','','both','',1,1,1,1,1,1,1,1,1,1,1,-1,5,1,-20,0,'',0,0,0,1,'',0,0,0,0,0,0,0,0,0,100,60,30,15,15,24,100,835,'gallery','gallery','_head.php','_tail.php','','','','','',4,202,150,125,100,1048576,1,0,0,4,6,0,0,0,0,'',2,0,'',0,0,'','','','','','','','','','','','','','','','','','','','',''),('notice','shop','공지사항','','both','',1,1,5,5,5,5,5,5,5,1,1,-1,5,1,-20,1,'일반|컨텐츠몰|이벤트몰',0,0,0,1,'',0,0,0,0,0,0,0,0,0,100,60,30,15,15,24,100,835,'basic','basic','_head.php','_tail.php','','','','','',4,202,150,125,100,1048576,1,0,0,15,0,0,0,0,0,'',2,0,'',0,0,'','','','','','','','','','','','','','','','','','','','',''),('qa','shop','질문답변','','both','',1,1,1,1,1,1,1,1,1,1,1,-1,5,1,-20,0,'',0,0,0,1,'',0,0,0,0,0,0,0,0,0,100,60,30,15,15,24,100,835,'basic','basic','_head.php','_tail.php','','','','','',4,202,150,125,100,1048576,1,0,0,4,4,0,0,0,0,'',2,0,'',0,0,'','','','','','','','','','','','','','','','','','','','',''); /*!40000 ALTER TABLE `g5_board` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_board_file` -- DROP TABLE IF EXISTS `g5_board_file`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_board_file` ( `bo_table` varchar(20) NOT NULL DEFAULT '', `wr_id` int(11) NOT NULL DEFAULT 0, `bf_no` int(11) NOT NULL DEFAULT 0, `bf_source` varchar(255) NOT NULL DEFAULT '', `bf_file` varchar(255) NOT NULL DEFAULT '', `bf_download` int(11) NOT NULL, `bf_content` text NOT NULL, `bf_fileurl` varchar(255) NOT NULL DEFAULT '', `bf_thumburl` varchar(255) NOT NULL DEFAULT '', `bf_storage` varchar(50) NOT NULL DEFAULT '', `bf_filesize` int(11) NOT NULL DEFAULT 0, `bf_width` int(11) NOT NULL DEFAULT 0, `bf_height` smallint(6) NOT NULL DEFAULT 0, `bf_type` tinyint(4) NOT NULL DEFAULT 0, `bf_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`bo_table`,`wr_id`,`bf_no`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_board_file` -- LOCK TABLES `g5_board_file` WRITE; /*!40000 ALTER TABLE `g5_board_file` DISABLE KEYS */; INSERT INTO `g5_board_file` VALUES ('gallery',1,0,'thumb-654781961_1592760783.7927_730x548.jpg','2130706433_n74l3ZBF_ee2c50d2c3397977391600b0274362cf831e8027.jpg',0,'','','','',188185,730,548,2,'2020-12-23 17:29:57'),('gallery',10,0,'thumb-654782132_1597796653.184_730x548.jpg','2130706433_e3VJBu5a_7bf022f634454e3838892d5a7106ef185aaf3e03.jpg',0,'','','','',142831,730,548,2,'2020-12-23 17:37:26'),('gallery',10,1,'thumb-654782132_1597796661.0614_730x548.jpg','2130706433_q5LkN8vx_c8da5441926bd786ae56163f42314b3e50ef6517.jpg',0,'','','','',133254,730,548,2,'2020-12-23 17:37:26'),('notice',15,0,'simple-payment.png','2130706433_EA4YhabP_3b6e599008e4564f7e7f813ffe427aca50b89d69.png',0,'','','','',19871,260,250,3,'2020-12-23 18:09:22'); /*!40000 ALTER TABLE `g5_board_file` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_board_good` -- DROP TABLE IF EXISTS `g5_board_good`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_board_good` ( `bg_id` int(11) NOT NULL AUTO_INCREMENT, `bo_table` varchar(20) NOT NULL DEFAULT '', `wr_id` int(11) NOT NULL DEFAULT 0, `mb_id` varchar(20) NOT NULL DEFAULT '', `bg_flag` varchar(255) NOT NULL DEFAULT '', `bg_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`bg_id`), UNIQUE KEY `fkey1` (`bo_table`,`wr_id`,`mb_id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_board_good` -- LOCK TABLES `g5_board_good` WRITE; /*!40000 ALTER TABLE `g5_board_good` DISABLE KEYS */; INSERT INTO `g5_board_good` VALUES (1,'free',58,'test03','good','2020-12-24 10:29:46'),(2,'free',49,'test05','good','2020-12-24 10:30:06'),(3,'free',48,'test02','good','2020-12-24 10:30:26'),(4,'free',48,'test04','nogood','2020-12-24 10:30:43'); /*!40000 ALTER TABLE `g5_board_good` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_board_new` -- DROP TABLE IF EXISTS `g5_board_new`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_board_new` ( `bn_id` int(11) NOT NULL AUTO_INCREMENT, `bo_table` varchar(20) NOT NULL DEFAULT '', `wr_id` int(11) NOT NULL DEFAULT 0, `wr_parent` int(11) NOT NULL DEFAULT 0, `bn_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `mb_id` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`bn_id`), KEY `mb_id` (`mb_id`) ) ENGINE=InnoDB AUTO_INCREMENT=111 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_board_new` -- LOCK TABLES `g5_board_new` WRITE; /*!40000 ALTER TABLE `g5_board_new` DISABLE KEYS */; /*!40000 ALTER TABLE `g5_board_new` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_cert_history` -- DROP TABLE IF EXISTS `g5_cert_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_cert_history` ( `cr_id` int(11) NOT NULL AUTO_INCREMENT, `mb_id` varchar(20) NOT NULL DEFAULT '', `cr_company` varchar(255) NOT NULL DEFAULT '', `cr_method` varchar(255) NOT NULL DEFAULT '', `cr_ip` varchar(255) NOT NULL DEFAULT '', `cr_date` date NOT NULL DEFAULT '0000-00-00', `cr_time` time NOT NULL DEFAULT '00:00:00', PRIMARY KEY (`cr_id`), KEY `mb_id` (`mb_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_cert_history` -- LOCK TABLES `g5_cert_history` WRITE; /*!40000 ALTER TABLE `g5_cert_history` DISABLE KEYS */; /*!40000 ALTER TABLE `g5_cert_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_config` -- DROP TABLE IF EXISTS `g5_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_config` ( `cf_title` varchar(255) NOT NULL DEFAULT '', `cf_theme` varchar(100) NOT NULL DEFAULT '', `cf_admin` varchar(100) NOT NULL DEFAULT '', `cf_admin_email` varchar(100) NOT NULL DEFAULT '', `cf_admin_email_name` varchar(100) NOT NULL DEFAULT '', `cf_add_script` text NOT NULL, `cf_use_point` tinyint(4) NOT NULL DEFAULT 0, `cf_point_term` int(11) NOT NULL DEFAULT 0, `cf_use_copy_log` tinyint(4) NOT NULL DEFAULT 0, `cf_use_email_certify` tinyint(4) NOT NULL DEFAULT 0, `cf_login_point` int(11) NOT NULL DEFAULT 0, `cf_cut_name` tinyint(4) NOT NULL DEFAULT 0, `cf_nick_modify` int(11) NOT NULL DEFAULT 0, `cf_new_skin` varchar(50) NOT NULL DEFAULT '', `cf_new_rows` int(11) NOT NULL DEFAULT 0, `cf_search_skin` varchar(50) NOT NULL DEFAULT '', `cf_connect_skin` varchar(50) NOT NULL DEFAULT '', `cf_faq_skin` varchar(50) NOT NULL DEFAULT '', `cf_read_point` int(11) NOT NULL DEFAULT 0, `cf_write_point` int(11) NOT NULL DEFAULT 0, `cf_comment_point` int(11) NOT NULL DEFAULT 0, `cf_download_point` int(11) NOT NULL DEFAULT 0, `cf_write_pages` int(11) NOT NULL DEFAULT 0, `cf_mobile_pages` int(11) NOT NULL DEFAULT 0, `cf_link_target` varchar(50) NOT NULL DEFAULT '', `cf_bbs_rewrite` tinyint(4) NOT NULL DEFAULT 0, `cf_delay_sec` int(11) NOT NULL DEFAULT 0, `cf_filter` text NOT NULL, `cf_possible_ip` text NOT NULL, `cf_intercept_ip` text NOT NULL, `cf_analytics` text NOT NULL, `cf_add_meta` text NOT NULL, `cf_syndi_token` varchar(255) NOT NULL, `cf_syndi_except` text NOT NULL, `cf_member_skin` varchar(50) NOT NULL DEFAULT '', `cf_use_homepage` tinyint(4) NOT NULL DEFAULT 0, `cf_req_homepage` tinyint(4) NOT NULL DEFAULT 0, `cf_use_tel` tinyint(4) NOT NULL DEFAULT 0, `cf_req_tel` tinyint(4) NOT NULL DEFAULT 0, `cf_use_hp` tinyint(4) NOT NULL DEFAULT 0, `cf_req_hp` tinyint(4) NOT NULL DEFAULT 0, `cf_use_addr` tinyint(4) NOT NULL DEFAULT 0, `cf_req_addr` tinyint(4) NOT NULL DEFAULT 0, `cf_use_signature` tinyint(4) NOT NULL DEFAULT 0, `cf_req_signature` tinyint(4) NOT NULL DEFAULT 0, `cf_use_profile` tinyint(4) NOT NULL DEFAULT 0, `cf_req_profile` tinyint(4) NOT NULL DEFAULT 0, `cf_register_level` tinyint(4) NOT NULL DEFAULT 0, `cf_register_point` int(11) NOT NULL DEFAULT 0, `cf_icon_level` tinyint(4) NOT NULL DEFAULT 0, `cf_use_recommend` tinyint(4) NOT NULL DEFAULT 0, `cf_recommend_point` int(11) NOT NULL DEFAULT 0, `cf_leave_day` int(11) NOT NULL DEFAULT 0, `cf_search_part` int(11) NOT NULL DEFAULT 0, `cf_email_use` tinyint(4) NOT NULL DEFAULT 0, `cf_email_wr_super_admin` tinyint(4) NOT NULL DEFAULT 0, `cf_email_wr_group_admin` tinyint(4) NOT NULL DEFAULT 0, `cf_email_wr_board_admin` tinyint(4) NOT NULL DEFAULT 0, `cf_email_wr_write` tinyint(4) NOT NULL DEFAULT 0, `cf_email_wr_comment_all` tinyint(4) NOT NULL DEFAULT 0, `cf_email_mb_super_admin` tinyint(4) NOT NULL DEFAULT 0, `cf_email_mb_member` tinyint(4) NOT NULL DEFAULT 0, `cf_email_po_super_admin` tinyint(4) NOT NULL DEFAULT 0, `cf_prohibit_id` text NOT NULL, `cf_prohibit_email` text NOT NULL, `cf_new_del` int(11) NOT NULL DEFAULT 0, `cf_memo_del` int(11) NOT NULL DEFAULT 0, `cf_visit_del` int(11) NOT NULL DEFAULT 0, `cf_popular_del` int(11) NOT NULL DEFAULT 0, `cf_optimize_date` date NOT NULL DEFAULT '0000-00-00', `cf_use_member_icon` tinyint(4) NOT NULL DEFAULT 0, `cf_member_icon_size` int(11) NOT NULL DEFAULT 0, `cf_member_icon_width` int(11) NOT NULL DEFAULT 0, `cf_member_icon_height` int(11) NOT NULL DEFAULT 0, `cf_member_img_size` int(11) NOT NULL DEFAULT 0, `cf_member_img_width` int(11) NOT NULL DEFAULT 0, `cf_member_img_height` int(11) NOT NULL DEFAULT 0, `cf_login_minutes` int(11) NOT NULL DEFAULT 0, `cf_image_extension` varchar(255) NOT NULL DEFAULT '', `cf_flash_extension` varchar(255) NOT NULL DEFAULT '', `cf_movie_extension` varchar(255) NOT NULL DEFAULT '', `cf_formmail_is_member` tinyint(4) NOT NULL DEFAULT 0, `cf_page_rows` int(11) NOT NULL DEFAULT 0, `cf_mobile_page_rows` int(11) NOT NULL DEFAULT 0, `cf_visit` varchar(255) NOT NULL DEFAULT '', `cf_max_po_id` int(11) NOT NULL DEFAULT 0, `cf_stipulation` text NOT NULL, `cf_privacy` text NOT NULL, `cf_open_modify` int(11) NOT NULL DEFAULT 0, `cf_memo_send_point` int(11) NOT NULL DEFAULT 0, `cf_mobile_new_skin` varchar(50) NOT NULL DEFAULT '', `cf_mobile_search_skin` varchar(50) NOT NULL DEFAULT '', `cf_mobile_connect_skin` varchar(50) NOT NULL DEFAULT '', `cf_mobile_faq_skin` varchar(50) NOT NULL DEFAULT '', `cf_mobile_member_skin` varchar(50) NOT NULL DEFAULT '', `cf_captcha_mp3` varchar(255) NOT NULL DEFAULT '', `cf_editor` varchar(50) NOT NULL DEFAULT '', `cf_cert_use` tinyint(4) NOT NULL DEFAULT 0, `cf_cert_find` tinyint(4) NOT NULL DEFAULT 0, `cf_cert_ipin` varchar(255) NOT NULL DEFAULT '', `cf_cert_hp` varchar(255) NOT NULL DEFAULT '', `cf_cert_simple` varchar(255) NOT NULL DEFAULT '', `cf_cert_kg_cd` varchar(255) NOT NULL DEFAULT '', `cf_cert_kg_mid` varchar(255) NOT NULL DEFAULT '', `cf_cert_kcb_cd` varchar(255) NOT NULL DEFAULT '', `cf_cert_kcp_cd` varchar(255) NOT NULL DEFAULT '', `cf_lg_mid` varchar(100) NOT NULL DEFAULT '', `cf_lg_mert_key` varchar(100) NOT NULL DEFAULT '', `cf_cert_limit` int(11) NOT NULL DEFAULT 0, `cf_cert_req` tinyint(4) NOT NULL DEFAULT 0, `cf_sms_use` varchar(255) NOT NULL DEFAULT '', `cf_sms_type` varchar(10) NOT NULL DEFAULT '', `cf_icode_id` varchar(255) NOT NULL DEFAULT '', `cf_icode_pw` varchar(255) NOT NULL DEFAULT '', `cf_icode_server_ip` varchar(50) NOT NULL DEFAULT '', `cf_icode_server_port` varchar(50) NOT NULL DEFAULT '', `cf_icode_token_key` varchar(100) NOT NULL DEFAULT '', `cf_googl_shorturl_apikey` varchar(50) NOT NULL DEFAULT '', `cf_social_login_use` tinyint(4) NOT NULL DEFAULT 0, `cf_social_servicelist` varchar(255) NOT NULL DEFAULT '', `cf_payco_clientid` varchar(100) NOT NULL DEFAULT '', `cf_payco_secret` varchar(100) NOT NULL DEFAULT '', `cf_facebook_appid` varchar(100) NOT NULL, `cf_facebook_secret` varchar(100) NOT NULL, `cf_twitter_key` varchar(100) NOT NULL, `cf_twitter_secret` varchar(100) NOT NULL, `cf_google_clientid` varchar(100) NOT NULL DEFAULT '', `cf_google_secret` varchar(100) NOT NULL DEFAULT '', `cf_naver_clientid` varchar(100) NOT NULL DEFAULT '', `cf_naver_secret` varchar(100) NOT NULL DEFAULT '', `cf_kakao_rest_key` varchar(100) NOT NULL DEFAULT '', `cf_kakao_client_secret` varchar(100) NOT NULL DEFAULT '', `cf_kakao_js_apikey` varchar(100) NOT NULL, `cf_captcha` varchar(100) NOT NULL DEFAULT '', `cf_recaptcha_site_key` varchar(100) NOT NULL DEFAULT '', `cf_recaptcha_secret_key` varchar(100) NOT NULL DEFAULT '', `cf_1_subj` varchar(255) NOT NULL DEFAULT '', `cf_2_subj` varchar(255) NOT NULL DEFAULT '', `cf_3_subj` varchar(255) NOT NULL DEFAULT '', `cf_4_subj` varchar(255) NOT NULL DEFAULT '', `cf_5_subj` varchar(255) NOT NULL DEFAULT '', `cf_6_subj` varchar(255) NOT NULL DEFAULT '', `cf_7_subj` varchar(255) NOT NULL DEFAULT '', `cf_8_subj` varchar(255) NOT NULL DEFAULT '', `cf_9_subj` varchar(255) NOT NULL DEFAULT '', `cf_10_subj` varchar(255) NOT NULL DEFAULT '', `cf_1` varchar(255) NOT NULL DEFAULT '', `cf_2` varchar(255) NOT NULL DEFAULT '', `cf_3` varchar(255) NOT NULL DEFAULT '', `cf_4` varchar(255) NOT NULL DEFAULT '', `cf_5` varchar(255) NOT NULL DEFAULT '', `cf_6` varchar(255) NOT NULL DEFAULT '', `cf_7` varchar(255) NOT NULL DEFAULT '', `cf_8` varchar(255) NOT NULL DEFAULT '', `cf_9` varchar(255) NOT NULL DEFAULT '', `cf_10` varchar(255) NOT NULL DEFAULT '' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_config` -- LOCK TABLES `g5_config` WRITE; /*!40000 ALTER TABLE `g5_config` DISABLE KEYS */; INSERT INTO `g5_config` VALUES ('그누보드5','basic','admin','admin@domain.com','그누보드5','',1,0,1,0,100,15,60,'basic',15,'basic','basic','basic',0,0,0,0,10,5,'_blank',0,30,'18아,18놈,18새끼,18뇬,18노,18것,18넘,개년,개놈,개뇬,개새,개색끼,개세끼,개세이,개쉐이,개쉑,개쉽,개시키,개자식,개좆,게색기,게색끼,광뇬,뇬,눈깔,뉘미럴,니귀미,니기미,니미,도촬,되질래,뒈져라,뒈진다,디져라,디진다,디질래,병쉰,병신,뻐큐,뻑큐,뽁큐,삐리넷,새꺄,쉬발,쉬밸,쉬팔,쉽알,스패킹,스팽,시벌,시부랄,시부럴,시부리,시불,시브랄,시팍,시팔,시펄,실밸,십8,십쌔,십창,싶알,쌉년,썅놈,쌔끼,쌩쑈,썅,써벌,썩을년,쎄꺄,쎄엑,쓰바,쓰발,쓰벌,쓰팔,씨8,씨댕,씨바,씨발,씨뱅,씨봉알,씨부랄,씨부럴,씨부렁,씨부리,씨불,씨브랄,씨빠,씨빨,씨뽀랄,씨팍,씨팔,씨펄,씹,아가리,아갈이,엄창,접년,잡놈,재랄,저주글,조까,조빠,조쟁이,조지냐,조진다,조질래,존나,존니,좀물,좁년,좃,좆,좇,쥐랄,쥐롤,쥬디,지랄,지럴,지롤,지미랄,쫍빱,凸,퍽큐,뻑큐,빠큐,ㅅㅂㄹㅁ','','','','','','','basic',0,0,0,0,0,0,0,0,0,0,0,0,2,1000,2,0,0,30,10000,1,0,0,0,0,0,0,0,0,'admin,administrator,관리자,운영자,어드민,주인장,webmaster,웹마스터,sysop,시삽,시샵,manager,매니저,메니저,root,루트,su,guest,방문객','',30,180,180,180,'2022-08-21',2,5000,22,22,50000,60,60,10,'gif|jpg|jpeg|png','swf','asx|asf|wmv|wma|mpg|mpeg|mov|avi|mp3',1,15,15,'오늘:1,어제:0,최대:1,전체:7',1,'해당 홈페이지에 맞는 회원가입약관을 입력합니다.','해당 홈페이지에 맞는 개인정보처리방침을 입력합니다.',0,500,'basic','basic','basic','basic','basic','basic','smarteditor2',0,0,'','','','','','','','','',2,0,'','','','','','','','',0,'','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''); /*!40000 ALTER TABLE `g5_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_content` -- DROP TABLE IF EXISTS `g5_content`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_content` ( `co_id` varchar(20) NOT NULL DEFAULT '', `co_html` tinyint(4) NOT NULL DEFAULT 0, `co_subject` varchar(255) NOT NULL DEFAULT '', `co_content` longtext NOT NULL, `co_seo_title` varchar(255) NOT NULL DEFAULT '', `co_mobile_content` longtext NOT NULL, `co_skin` varchar(255) NOT NULL DEFAULT '', `co_mobile_skin` varchar(255) NOT NULL DEFAULT '', `co_tag_filter_use` tinyint(4) NOT NULL DEFAULT 0, `co_hit` int(11) NOT NULL DEFAULT 0, `co_include_head` varchar(255) NOT NULL, `co_include_tail` varchar(255) NOT NULL, PRIMARY KEY (`co_id`), KEY `co_seo_title` (`co_seo_title`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_content` -- LOCK TABLES `g5_content` WRITE; /*!40000 ALTER TABLE `g5_content` DISABLE KEYS */; INSERT INTO `g5_content` VALUES ('company',1,'회사소개','

회사소개에 대한 내용을 입력하십시오.

','회사소개','','basic','basic',0,0,'',''),('privacy',1,'개인정보 처리방침','

개인정보 처리방침에 대한 내용을 입력하십시오.

','개인정보-처리방침','','basic','basic',0,0,'',''),('provision',1,'서비스 이용약관','

서비스 이용약관에 대한 내용을 입력하십시오.

','서비스-이용약관','','basic','basic',0,0,'',''); /*!40000 ALTER TABLE `g5_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_faq` -- DROP TABLE IF EXISTS `g5_faq`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_faq` ( `fa_id` int(11) NOT NULL AUTO_INCREMENT, `fm_id` int(11) NOT NULL DEFAULT 0, `fa_subject` text NOT NULL, `fa_content` text NOT NULL, `fa_order` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`fa_id`), KEY `fm_id` (`fm_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_faq` -- LOCK TABLES `g5_faq` WRITE; /*!40000 ALTER TABLE `g5_faq` DISABLE KEYS */; INSERT INTO `g5_faq` VALUES (1,1,'

테마 - 테마제작

','

그누보드5 테마를 제작하는 방법을 정리해 보겠습니다.

 

테마 제작은 head.php, index.php, tail.php 파일의 역할과 디자인 시안을 어떻게 각 파일에 대응시키는지에 대한 기본적인 개념이 있어야 작업을 할 수가 있습니다.

 

1. 준비

그누보드5에 포함된 베이직 테마를 기본으로 테마를 제작합니다. theme 폴더의 basic 폴더를 복사해 theme 폴더에 제작할 테마 폴더를 만듭니다. 복사 후 테마의 기본정보를 수정합니다.

 

2. readme.txt 파일 수정

readme.txt 파일에는 테마 이름 등의 정보가 포함되어 있습니다. 관리자 테마설정 페이지에서 상세보기 때 이 정보가 표시됩니다. 아래는 베이직 테마의 정보입니다.

 

Theme Name: 베이직

Theme URI: http://demo.sir.kr/gnuboard5

Maker: SIR

Maker URI: http://sir.kr

Version: 1.0.0

Detail: 베이직 테마는  SIR에서 제공하는 그누보드5 테마입니다. 베이직 테마는 웹표준 및 접근성을 준수합니다.

License: GNU LESSER GENERAL PUBLIC LICENSE Version 2.1

License URI: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html 

정보 작성 때 한가지 주의해야할 점은 정보는 한 줄에 표시가 되어야 한다는 것입니다. Detail: 부분은 상세설명 부분으로 내용이 길어도 키보드 Enter를 사용해 줄바꿈을 하시면 안됩니다.

 

3. screenshot.png 파일 준비

스크린샷 파일은 관리자 테마설정 페이지의 리스트와 상세보기 때 사용 됩니다. 보여지는 최대 사이즈는 600 x 450 픽셀이며 PNG 파일만 사용할 수 있습니다.

 

4. theme.config.php 설정

테마의 기본 설정을 담고 있는 파일입니다. 이 설정을 기준으로 테마 미리보기 기능 등이 실행됩니다. 이 파일은 테마 사용 때 common.php 에서 자동 로드되므로 별도의 로드 작업이 필요없습니다. 아래는 베이직 테마의 theme.config.php 내용입니다.

 

<?php\r\nif (!defined(\'_GNUBOARD_\')) exit; // 개별 페이지 접근 불가\r\n \r\n// 테마가 지원하는 장치 설정 pc, mobile\r\n// 선언하지 않거나 값을 지정하지 않으면 그누보드5의 설정을 따른다.\r\n// G5_SET_DEVICE 상수 설정 보다 우선 적용됨\r\ndefine(\'G5_THEME_DEVICE\', \'\');\r\n \r\n$theme_config = array();\r\n \r\n// 갤러리 이미지 수 등의 설정을 지정하시면 게시판관리에서 해당 값을\r\n// 가져오기 기능을 통해 게시판 설정의 해당 필드에 바로 적용할 수 있습니다.\r\n// 사용하지 않는 스킨 설정은 값을 비워두시면 됩니다.\r\n \r\n$theme_config = array(\r\n    \'set_default_skin\'          => false,   // 기본환경설정의 최근게시물 등의 기본스킨 변경여부 true, false\r\n    \'preview_board_skin\'        => \'basic\', // 테마 미리보기 때 적용될 기본 게시판 스킨\r\n    \'preview_mobile_board_skin\' => \'basic\', // 테마 미리보기 때 적용될 기본 모바일 게시판 스킨\r\n    \'cf_member_skin\'            => \'basic\', // 회원 스킨\r\n    \'cf_mobile_member_skin\'     => \'basic\', // 모바일 회원 스킨\r\n    \'cf_new_skin\'               => \'basic\', // 최근게시물 스킨\r\n    \'cf_mobile_new_skin\'        => \'basic\', // 모바일 최근게시물 스킨\r\n    \'cf_search_skin\'            => \'basic\', // 검색 스킨\r\n    \'cf_mobile_search_skin\'     => \'basic\', // 모바일 검색 스킨\r\n    \'cf_connect_skin\'           => \'basic\', // 접속자 스킨\r\n    \'cf_mobile_connect_skin\'    => \'basic\', // 모바일 접속자 스킨\r\n    \'cf_faq_skin\'               => \'basic\', // FAQ 스킨\r\n    \'cf_mobile_faq_skin\'        => \'basic\', // 모바일 FAQ 스킨\r\n    \'bo_gallery_cols\'           => 4,       // 갤러리 이미지 수\r\n    \'bo_gallery_width\'          => 174,     // 갤러리 이미지 폭\r\n    \'bo_gallery_height\'         => 124,     // 갤러리 이미지 높이\r\n    \'bo_mobile_gallery_width\'   => 125,     // 모바일 갤러리 이미지 폭\r\n    \'bo_mobile_gallery_height\'  => 100,     // 모바일 갤러리 이미지 높이\r\n    \'bo_image_width\'            => 600,     // 게시판 뷰 이미지 폭\r\n    \'qa_skin\'                   => \'basic\', // 1:1문의 스킨\r\n    \'qa_mobile_skin\'            => \'basic\'  // 1:1문의 모바일 스킨\r\n);\r\n?> \r\n

 

G5_THEME_DEVICE 설정은 테마가 지원하는 기기에 대한 것입니다. config.php 파일의 접속기기 관련 설정보다 우선순위를 가집니다. G5_THEME_DEVICE 설정을 pc 로 하시면 모바일로 접속 때도 PC 화면만 표시됩니다. 모바일 스킨 등을 지원하지 않는 경우 pc 로 설정하시면 좋습니다. 

$theme_config 배열의 각 항목은 주석부분을 참고하시면 됩니다. 이 설정에 대해 간단히 설명하면 set_default_skin 값을 기준으로 true 일 경우 관리자에서 테마 적용 때 cf_member_skin 등에 설정된 값으로 기본  스킨이 변경됩니다. 만약 지원하지 않는 스킨이 있거나 변경하는 걸 원하지 않는 때는 설정값을 빈 값으로 해두시면 됩니다.

 

5. 테마 퍼블리싱

퍼블리싱은 내용이 워낙 방대하기 때문에 따로 설명을 드리지 않겠습니다. 다만 퍼블리싱 때 주의해야할 점이 하나 있는데 바로 경로입니다. 테마 기능은 이 경로를 상황에 맞게 수정을 해서 테마에 따라 사이트의 디자인이 변경됩니다. 그래서 기본적인 경로 상수( http://sir.kr/faq/58 ) 를 제공하고 있고 퍼블리싱 작업 때 사용해 주셔야 합니다. 예를 들어 head.sub.php 파일에서 테마의 css 파일 로드를 위해

<link rel=\"stylesheet\" href=\"<?php echo G5_THEME_CSS_URL; ?>/<?php echo G5_IS_MOBILE ? \'mobile\' : \'default\'; ?>.css\">\r\n

코드를 사용하고 있습니다.

그외에 각 스킨의 경우 $board_skin_path, $board_skin_url 등의 경로 변수를 제공하고 있습니다. 이 변수는 common.php 파일에서 테마 사용여부 및 스킨에 따라 설정이 됩니다. 게시판 스킨의 경우 스킨의 css 파일 로드를 위해

add_stylesheet(\'<link rel=\"stylesheet\" href=\"\'.$board_skin_url.\'/style.css\">\', 0);\r\n

코드를 사용하고 있습니다. 스킨의 경로를 설정하는 부분은 아래와 같습니다.

 

//==============================================================================\r\n// 스킨경로\r\n//------------------------------------------------------------------------------\r\nif (G5_IS_MOBILE) {\r\n    $board_skin_path    = get_skin_path(\'board\', $board[\'bo_mobile_skin\']);\r\n    $board_skin_url     = get_skin_url(\'board\', $board[\'bo_mobile_skin\']);\r\n    $member_skin_path   = get_skin_path(\'member\', $config[\'cf_mobile_member_skin\']);\r\n    $member_skin_url    = get_skin_url(\'member\', $config[\'cf_mobile_member_skin\']);\r\n    $new_skin_path      = get_skin_path(\'new\', $config[\'cf_mobile_new_skin\']);\r\n    $new_skin_url       = get_skin_url(\'new\', $config[\'cf_mobile_new_skin\']);\r\n    $search_skin_path   = get_skin_path(\'search\', $config[\'cf_mobile_search_skin\']);\r\n    $search_skin_url    = get_skin_url(\'search\', $config[\'cf_mobile_search_skin\']);\r\n    $connect_skin_path  = get_skin_path(\'connect\', $config[\'cf_mobile_connect_skin\']);\r\n    $connect_skin_url   = get_skin_url(\'connect\', $config[\'cf_mobile_connect_skin\']);\r\n    $faq_skin_path      = get_skin_path(\'faq\', $config[\'cf_mobile_faq_skin\']);\r\n    $faq_skin_url       = get_skin_url(\'faq\', $config[\'cf_mobile_faq_skin\']);\r\n} else {\r\n    $board_skin_path    = get_skin_path(\'board\', $board[\'bo_skin\']);\r\n    $board_skin_url     = get_skin_url(\'board\', $board[\'bo_skin\']);\r\n    $member_skin_path   = get_skin_path(\'member\', $config[\'cf_member_skin\']);\r\n    $member_skin_url    = get_skin_url(\'member\', $config[\'cf_member_skin\']);\r\n    $new_skin_path      = get_skin_path(\'new\', $config[\'cf_new_skin\']);\r\n    $new_skin_url       = get_skin_url(\'new\', $config[\'cf_new_skin\']);\r\n    $search_skin_path   = get_skin_path(\'search\', $config[\'cf_search_skin\']);\r\n    $search_skin_url    = get_skin_url(\'search\', $config[\'cf_search_skin\']);\r\n    $connect_skin_path  = get_skin_path(\'connect\', $config[\'cf_connect_skin\']);\r\n    $connect_skin_url   = get_skin_url(\'connect\', $config[\'cf_connect_skin\']);\r\n    $faq_skin_path      = get_skin_path(\'faq\', $config[\'cf_faq_skin\']);\r\n    $faq_skin_url       = get_skin_url(\'faq\', $config[\'cf_faq_skin\']);\r\n}\r\n//============================================================================== \r\n

 

테마에 추가적인 라이브러리가 있는 경우 G5_THEME_LIB_PATH 경로 상수를 사용하시면 됩니다. 

include_once(G5_THEME_LIB_PATH.\'/theme.lib.php\');\r\n

와 같이 사용할 수 있습니다.

 

6. outlogin 등에서의 테마 스킨 사용

이 부분은 5의 퍼블리싱 작업과 연관돼있습니다. 기존 그누보드5의 코드 수정을 최소화하기 위해 아래와 같은 스킨 지정법을 사용했습니다. 베이직 테마의 외부 로그인 출력 부분 코드를 아래와 같습니다.

 

<?php echo outlogin(\'theme/basic\'); ?> \r\n

 

기존 외부로그인 출력 때 스킨 지정 부분이 변경될 것을 확인할 수 있습니다. 테마에 포함된 스킨은 \'theme/basic\' 과 같이 지정해서 현재 사용 중인 테마의 outlogin 스킨 중 basic 스킨을 사용한다는 의미입니다. \'theme/basic\' 대신 \'basic\' 만 사용하면 테마기능 이전의 그누보드5에서와 같이 skin 폴더에 있는 스킨을 사용하게 됩니다. 스킨 지정 때 theme/ 로 시작하면 테마의 스킨을 사용한다고 프로그램에서 판단하고 그에 맞게 경로를 설정하도록 되어 있습니다. 최신 글(latest) 등의 다른 기능에서의 스킨 지정 역시 이와 동일합니다.

 

테마 제작 때 게시판 스킨 등을 반드시 포함시켜야 하는 것은 아닙니다. 포함된 스킨이 없는 경우 skin 폴더 등을 삭제하셔도 됩니다. 모바일 테마가 포함되지 않은 경우 mobile 폴더를 삭제하셔도 사용에는 지장이 없습니다. 다만 이 경우 G5_THEME_DEVICE 설정을 pc 로 해주셔야 모바일 접속 때 오류가 발생하지 않게 됩니다.

 

 

테마 제작은 스킨 제작 경험과 퍼블리싱 경험이 있다면 어렵지 않은 작업입니다. 테마 제작 때 경로 부분만 주의를 해주시고 제공되는 경로 상수 및 변수를 사용하시면 경로로 인한 문제는 최소화할 수 있습니다.

',0),(2,1,'

테마 - 구조, 상수, 파일용도

','

그누보드5 테마 제작을 위해 먼저 알아두셔야 할 내용을 정리해보겠습니다.

 

1. 기본구조

 


 


테마에는 상당히 많은 파일이 포함되어 있습니다만 핵심 파일은 head.php, index.php, tail.php 파일입니다. 테마에 포함된 skin, mobile 폴더는 그누보드5 루트에 있는 해당 폴더와 역할이 동일합니다. 테마에 스킨을 포함시켜 배포하는 경우에 사용됩니다.

 

2. 테마 경로 상수

테마 작업을 위해 필요한 테마 경로 상수입니다. 기본으로 제공되는 상수는 아래와 같습니다.

 

G5_THEME_PATH : 사용 중인 테마 폴더의 절대 경로입니다. 사용 중인 테마가 basic 이라면 /home/example/www/theme/basic 입니다.

 

G5_THEME_URL : 사용 중인 테마의 웹접근 절대 경로입니다. 사용 중인 테마가 basic 이라면 http://example.com/theme/basic 의 경로를 가집니다. 실제로 사용자가 입력하는 경우는 없을 것이며 G5_THEME_JS_URL 등의 상수를 선언하기 위해 사용됩니다.

 

G5_THEME_MOBILE_PATH : 사용 중인 테마의 모바일 폴더 절대 경로입니다. /home/example/www/theme/basic/mobile 과 같습니다.

 

G5_THEME_LIB_PATH : 테마에 별도 라이브러리 파일을 포함시켜 사용하는 경우를 위한 경로 상수입니다. /home/example/www/theme/basic/lib 와 같습니다.

 

G5_THEME_CSS_URL : 현재 사용 중인 테마의 CSS 폴더 경로입니다. http://example.com/theme/basic/css 와 같습니다.

 

G5_THEME_IMG_URL : 현재 사용 중인 테마의 img 폴더 경로입니다. http://example.com/theme/basic/img 와 같습니다.

 

G5_THEME_JS_URL : 현재 사용 중인 테마의 js 폴더 경로입니다. http://example.com/theme/basic/js 와 같습니다. 

 

기본 제공되는 경로 상수는 위와 같으며 테마에 추가적으로 필요한 상수가 있다면 테마의 theme.config.php 파일에 선언해서 사용하시면 됩니다.

 

3. 파일용도

_common.php : 그누보드5 루트 common.php 파일을 include 합니다. 일반적으로 php 파일 등의 상단에 include_once(\'./_common.php\'); 와 같이 입력해서 사용합니다.

 

group.php : bbs/group.php 파일과 동일합니다. 그룹 최신글을 노출할 때 사용합니다. 테마에 포함되어 있으면 bbs/group.php 대신 사용됩니다.

 

head.php : 테마의 헤더 부분을 담당하는 파일입니다. 필수 파일입니다.

 

head.sub.php : 그누보드5 루트의 head.sub.php 파일과 동일한 역할을 합니다. 테마에 이 파일이 포함되어 있으면 루트의 head.sub.php 파일 대신 사용됩니다. 테마에서 그누보드5 기본 css파일, jQuery 등을 사용하지 않고 별도의 파일을 사용하시려면 이 파일을 수정해 css 파일 등의 경로를 지정해주시면 됩니다. 이 파일은 필수는 아니지만 보통 css 파일의 경로를 테마로 지정해야 하고 그누보드5에서 사용되는 팝업에는 head.sub.php 파일을 include 하기 때문에 테마에 맞게 디자인을 변경하시려면 사용하셔야 합니다.

 

index.php : 사이트 초기화면 파일입니다. 필수 파일입니다.

 

readme.txt : 테마 이름, 버전, 라이선스 등의 정보를 담고 있는 파일입니다. 관리자 테마설정에서 상세보기 내용이 담겨있습니다.

 

screenshot.png : 테마의 스크린샷입니다. 관리자 테마설정 페이지에서 설치된 테마의 이미지로 사용됩니다. png 파일만 사용이 가능합니다.

 

tail.php : 테마의 푸터 부분을 담당하는 파일입니다. 필수 파일입니다.

 

tail.sub.php : head.sub.php 파일과 마찬가지로 필수 파일은 아닙니다. 푸터 부분에 테마만의 코드 넣는 등의 용도로 사용하실 수 있습니다.

 

theme.config.php : 테마의 기본 설정을 담고 있는 파일입니다. 테마의 지원기기 설정 등의 설정을 할 수 있습니다. 이 파일은 common.php 파일에서 자동 로드됩니다.

 

그외 css, img, mobile, skin 등의 폴더 역할은 그누보드5 루트에 있는 해당 폴더의 역할과 동일합니다.

',0),(3,1,'

테마 적용

','

그누보드5에 탑재된 테마 기능을 사용하는 방법입니다.

 

1. 테마 다운로드



 

그누보드5 테마 게시판 http://sir.kr/g5_theme 에서 마음에 드는 테마를 다운로드 합니다.

 

2. 테마 업로드

1에서 다운로드 한 테마 파일의 압축을 해제한 후 FTP 프로그램을 이용해 테마 파일을 업로드 합니다.


 

그누보드5의 theme 폴더 안에 업로드 하시면 됩니다.

 

3. 테마 적용

관리자로 로그인 후 관리자 > 환경설정 > 테마설정 메뉴로 이동합니다.


 

현재 사용 중인 테마와 새로 추가한 테마가 표시됩니다. 상세보기를 클릭하면 테마의 설명, 이름, 라이선스 등의 테마관련 정보를 확인할 수 있습니다. 미리보기를 클릭하면 테마를 실제 적용하기 전에 메인 등의 화면이 테마가 적용됐을 때 어떻게 표시되는지 간단하게 확인할 수 있습니다. 테마를 적용하기 위해서는 테마적용을 클릭합니다.

 


 

사용 중인 테마가 변경된 것을 확인할 수 있습니다. 테마 적용 과정에서 테마에 따라 아래와 같은 알림창이 표시됩니다.

 


 


 

두번째 알림창은 테마의 설정에 따라 표시되지 않을 수 있습니다. 이 알림창에서 확인을 클릭하게 되면 테마 제작자가 지정한 회원스킨 등의 기본환경설정에서 설정할 수 있는 스킨이 변경될 수 있으며 1:1문의의 스킨 역시 변경될 수 있습니다. 테마 제작자가 스킨을 지정해두지 않으면 그에 해당하는 스킨은 변경되지 않습니다.

 

4. 스킨설정

그누보드5의 테마 기능은 테마에 포함된 스킨 외에 기존 skin 폴더에 있던 게시판 등의 스킨 역시 사용이 가능합니다. 아래 이미지처럼 기본환경설정에서는 최신글 스킨, 회원스킨 등을 변경할 수 있습니다. 테마에 포함된 스킨은 (테마) basic 이렇게 표시됩니다.

 


 


 

게시판 스킨 역시 별도로 지정할 수 있습니다.

 


 


 

1:1문의 역시 별도의 스킨 지정이 가능합니다.

 

5. 테마 설정 가져오기

테마적용 때 테마에 따라 회원스킨 등의 스킨이 자동으로 변경된다고 했습니다. 4의 방법대로 별도 스킨을 지정해서 사용하는 경우 테마에 지정된 기본 스킨으로 변경하고 게시판 이미지 폭 등의 이미지 관련 설정값을 테마 기본값으로 변경하는 방법입니다.



기본환경설정 페이지에는 테마 스킨설정 가져오기 버튼이 있습니다. 이 버튼을 클릭하면 최근게시물 등의 스킨을 테마 지정값으로 변경할 수 있습니다.


 


 

마찬가지로 기본환경설정 페이지에서 테마 회원스킨설정 가져오기 버튼을 클릭하면 회원스킨을 테마 지정스킨으로 변경할 수 있습니다.

게시판, 특히 갤러리 게시판의 경우 이미지 넓이 등을 설정할 수 있습니다. 이 때 게시판 추가/수정 페이지를 보시면 아래와 같이 테마 이미지설정 가져오기 버튼이 있습니다.



이 버튼을 클릭하면 아래 이미지에서 게시판 폭 설정을 제외한 이미지 관련 설정 값을 테마에서 지정한 값으로 변경할 수 있습니다.



 

단, 5의 내용대로 스킨 및 설정 값을 테마 지정값으로 변경하는 것은 테마설정파일(theme.config.php)에 값이 지정되어 있을 때만 가능합니다.

',0); /*!40000 ALTER TABLE `g5_faq` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_faq_master` -- DROP TABLE IF EXISTS `g5_faq_master`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_faq_master` ( `fm_id` int(11) NOT NULL AUTO_INCREMENT, `fm_subject` varchar(255) NOT NULL DEFAULT '', `fm_head_html` text NOT NULL, `fm_tail_html` text NOT NULL, `fm_mobile_head_html` text NOT NULL, `fm_mobile_tail_html` text NOT NULL, `fm_order` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`fm_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_faq_master` -- LOCK TABLES `g5_faq_master` WRITE; /*!40000 ALTER TABLE `g5_faq_master` DISABLE KEYS */; INSERT INTO `g5_faq_master` VALUES (1,'그누보드5','','','','',0),(2,'영카트5','','','','',0); /*!40000 ALTER TABLE `g5_faq_master` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_group` -- DROP TABLE IF EXISTS `g5_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_group` ( `gr_id` varchar(10) NOT NULL DEFAULT '', `gr_subject` varchar(255) NOT NULL DEFAULT '', `gr_device` enum('both','pc','mobile') NOT NULL DEFAULT 'both', `gr_admin` varchar(255) NOT NULL DEFAULT '', `gr_use_access` tinyint(4) NOT NULL DEFAULT 0, `gr_order` int(11) NOT NULL DEFAULT 0, `gr_1_subj` varchar(255) NOT NULL DEFAULT '', `gr_2_subj` varchar(255) NOT NULL DEFAULT '', `gr_3_subj` varchar(255) NOT NULL DEFAULT '', `gr_4_subj` varchar(255) NOT NULL DEFAULT '', `gr_5_subj` varchar(255) NOT NULL DEFAULT '', `gr_6_subj` varchar(255) NOT NULL DEFAULT '', `gr_7_subj` varchar(255) NOT NULL DEFAULT '', `gr_8_subj` varchar(255) NOT NULL DEFAULT '', `gr_9_subj` varchar(255) NOT NULL DEFAULT '', `gr_10_subj` varchar(255) NOT NULL DEFAULT '', `gr_1` varchar(255) NOT NULL DEFAULT '', `gr_2` varchar(255) NOT NULL DEFAULT '', `gr_3` varchar(255) NOT NULL DEFAULT '', `gr_4` varchar(255) NOT NULL DEFAULT '', `gr_5` varchar(255) NOT NULL DEFAULT '', `gr_6` varchar(255) NOT NULL DEFAULT '', `gr_7` varchar(255) NOT NULL DEFAULT '', `gr_8` varchar(255) NOT NULL DEFAULT '', `gr_9` varchar(255) NOT NULL DEFAULT '', `gr_10` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`gr_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_group` -- LOCK TABLES `g5_group` WRITE; /*!40000 ALTER TABLE `g5_group` DISABLE KEYS */; INSERT INTO `g5_group` VALUES ('shop','쇼핑몰','both','apache',0,0,'','','','','','','','','','','','','','','','','','','',''),('test','테스트','both','',1,0,'','','','','','','','','','','','','','','','','','','',''); /*!40000 ALTER TABLE `g5_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_group_member` -- DROP TABLE IF EXISTS `g5_group_member`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_group_member` ( `gm_id` int(11) NOT NULL AUTO_INCREMENT, `gr_id` varchar(255) NOT NULL DEFAULT '', `mb_id` varchar(20) NOT NULL DEFAULT '', `gm_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`gm_id`), KEY `gr_id` (`gr_id`), KEY `mb_id` (`mb_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_group_member` -- LOCK TABLES `g5_group_member` WRITE; /*!40000 ALTER TABLE `g5_group_member` DISABLE KEYS */; INSERT INTO `g5_group_member` VALUES (2,'test','test01','2020-12-24 10:25:55'); /*!40000 ALTER TABLE `g5_group_member` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_login` -- DROP TABLE IF EXISTS `g5_login`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_login` ( `lo_ip` varchar(100) NOT NULL DEFAULT '', `mb_id` varchar(20) NOT NULL DEFAULT '', `lo_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `lo_location` text NOT NULL, `lo_url` text NOT NULL, PRIMARY KEY (`lo_ip`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_login` -- LOCK TABLES `g5_login` WRITE; /*!40000 ALTER TABLE `g5_login` DISABLE KEYS */; INSERT INTO `g5_login` VALUES ('127.0.0.1','','2022-08-21 10:09:13','/','/'); /*!40000 ALTER TABLE `g5_login` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_mail` -- DROP TABLE IF EXISTS `g5_mail`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_mail` ( `ma_id` int(11) NOT NULL AUTO_INCREMENT, `ma_subject` varchar(255) NOT NULL DEFAULT '', `ma_content` mediumtext NOT NULL, `ma_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ma_ip` varchar(255) NOT NULL DEFAULT '', `ma_last_option` text NOT NULL, PRIMARY KEY (`ma_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_mail` -- LOCK TABLES `g5_mail` WRITE; /*!40000 ALTER TABLE `g5_mail` DISABLE KEYS */; /*!40000 ALTER TABLE `g5_mail` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_member` -- DROP TABLE IF EXISTS `g5_member`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_member` ( `mb_no` int(11) NOT NULL AUTO_INCREMENT, `mb_id` varchar(20) NOT NULL DEFAULT '', `mb_password` varchar(255) NOT NULL DEFAULT '', `mb_name` varchar(255) NOT NULL DEFAULT '', `mb_nick` varchar(255) NOT NULL DEFAULT '', `mb_nick_date` date NOT NULL DEFAULT '0000-00-00', `mb_email` varchar(255) NOT NULL DEFAULT '', `mb_homepage` varchar(255) NOT NULL DEFAULT '', `mb_level` tinyint(4) NOT NULL DEFAULT 0, `mb_sex` char(1) NOT NULL DEFAULT '', `mb_birth` varchar(255) NOT NULL DEFAULT '', `mb_tel` varchar(255) NOT NULL DEFAULT '', `mb_hp` varchar(255) NOT NULL DEFAULT '', `mb_certify` varchar(20) NOT NULL DEFAULT '', `mb_adult` tinyint(4) NOT NULL DEFAULT 0, `mb_dupinfo` varchar(255) NOT NULL DEFAULT '', `mb_zip1` char(3) NOT NULL DEFAULT '', `mb_zip2` char(3) NOT NULL DEFAULT '', `mb_addr1` varchar(255) NOT NULL DEFAULT '', `mb_addr2` varchar(255) NOT NULL DEFAULT '', `mb_addr3` varchar(255) NOT NULL DEFAULT '', `mb_addr_jibeon` varchar(255) NOT NULL DEFAULT '', `mb_signature` text NOT NULL, `mb_recommend` varchar(255) NOT NULL DEFAULT '', `mb_point` int(11) NOT NULL DEFAULT 0, `mb_today_login` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `mb_login_ip` varchar(255) NOT NULL DEFAULT '', `mb_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `mb_ip` varchar(255) NOT NULL DEFAULT '', `mb_leave_date` varchar(8) NOT NULL DEFAULT '', `mb_intercept_date` varchar(8) NOT NULL DEFAULT '', `mb_email_certify` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `mb_email_certify2` varchar(255) NOT NULL DEFAULT '', `mb_memo` text NOT NULL, `mb_lost_certify` varchar(255) NOT NULL, `mb_mailling` tinyint(4) NOT NULL DEFAULT 0, `mb_sms` tinyint(4) NOT NULL DEFAULT 0, `mb_open` tinyint(4) NOT NULL DEFAULT 0, `mb_open_date` date NOT NULL DEFAULT '0000-00-00', `mb_profile` text NOT NULL, `mb_memo_call` varchar(255) NOT NULL DEFAULT '', `mb_memo_cnt` int(11) NOT NULL DEFAULT 0, `mb_scrap_cnt` int(11) NOT NULL DEFAULT 0, `mb_1` varchar(255) NOT NULL DEFAULT '', `mb_2` varchar(255) NOT NULL DEFAULT '', `mb_3` varchar(255) NOT NULL DEFAULT '', `mb_4` varchar(255) NOT NULL DEFAULT '', `mb_5` varchar(255) NOT NULL DEFAULT '', `mb_6` varchar(255) NOT NULL DEFAULT '', `mb_7` varchar(255) NOT NULL DEFAULT '', `mb_8` varchar(255) NOT NULL DEFAULT '', `mb_9` varchar(255) NOT NULL DEFAULT '', `mb_10` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`mb_no`), UNIQUE KEY `mb_id` (`mb_id`), KEY `mb_today_login` (`mb_today_login`), KEY `mb_datetime` (`mb_datetime`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_member` -- LOCK TABLES `g5_member` WRITE; /*!40000 ALTER TABLE `g5_member` DISABLE KEYS */; INSERT INTO `g5_member` VALUES (1,'admin','sha256:12000:Tmeyan7ZTcfdae6QHHyjZd2hZ5nPfiko:5axU4cOtxexqvE2N03bjLNt1rLAMSVum','최고관리자','최고관리자','0000-00-00','admin@domain.com','',10,'','','','','',0,'','','','','','','','','',973,'2022-08-21 09:52:16','127.0.0.1','2020-11-22 12:39:40','127.0.0.1','','','2020-11-22 12:39:40','','','',1,0,1,'0000-00-00','','magento',1,0,'','','','','','','','','',''),(2,'rido','sha256:12000:YTXD+FV9GAuGir26ywv6aHBKkG3KKQqs:dN2vkmMnFrZAYD9uWdEjoOvp1H+BCrKJ','Rido','Rido','2020-12-23','rido@gnuboard.test','',2,'','','','','',0,'','','','','','','','','',1000,'2020-12-23 14:14:27','127.0.0.1','2020-12-23 14:14:27','127.0.0.1','','','2020-12-23 14:14:27','','','',1,0,1,'2020-12-23','','',0,0,'','','','','','','','','',''),(3,'smilezon','sha256:12000:I0Yi6Y1VdIpudPAf51iCvCb+TuG8RtYM:YXRAtdcQD30vla/tjmRuJEz923K6OoTA','해피아이','해피아이','2020-12-23','smilezon@gnuboard.test','',2,'','','','','',0,'','','','','','','','','',1014,'2020-12-23 14:17:58','127.0.0.1','2020-12-23 14:17:58','127.0.0.1','','','2020-12-23 14:17:58','','','',1,0,1,'2020-12-23','','',0,0,'','','','','','','','','',''),(4,'magento','sha256:12000:6iZ9k/ooGtZFyjq5+RIXgoKtU2A2U2yl:3B4FI+p26wcxeL40cFnWzllgU/1t7b16','마젠토','마젠토','2020-12-23','magento@gnuboard.test','',2,'','','','','',0,'','','','','','','','','',111,'2020-12-24 10:14:44','127.0.0.1','2020-12-23 14:19:37','127.0.0.1','','','2020-12-23 14:19:37','','','',1,0,1,'2020-12-23','','admin',0,0,'','','','','','','','','',''),(5,'sundoforce','sha256:12000:MDor/xF5BxiuUwcD/zgrwFQ4Q9SOG5vB:rwbBK533WKOImaUXipfwm9/mQvEq22Oq','선구자','선구자','2020-12-23','sundoforce@gnuboard.test','',2,'','','','','',0,'','','','','','','','','',1108,'2020-12-24 09:51:53','127.0.0.1','2020-12-23 16:18:26','127.0.0.1','','','2020-12-23 16:18:26','','','',1,0,1,'2020-12-23','','',0,1,'','','','','','','','','',''),(6,'anunnaki8','sha256:12000:LaSAqA9+LJ5seYvYh5MATVik1vmnrDXs:8wUpEcSqgLDVRE7mC3N/zTrLMu4JChZO','묵공','묵공','2020-12-23','anunnaki8@gnuboard.test','',2,'','','','','',0,'','','','','','','','','',1035,'2020-12-23 16:21:12','127.0.0.1','2020-12-23 16:21:12','127.0.0.1','','','2020-12-23 16:21:12','','','',1,0,1,'2020-12-23','','',0,0,'','','','','','','','','',''),(7,'test01','sha256:12000:R8B+frqqjDW3ng1H5ZJaYv1DjhCY4oJw:ctVGuOjoJmNlQaCSCsnzAX/s39uiAinv','테스트01','테스트01','2020-12-23','test01@gnuboard.test','',2,'','','','','',0,'','','','','','','','','',1232,'2020-12-24 09:55:59','127.0.0.1','2020-12-23 16:25:27','127.0.0.1','','','2020-12-23 16:25:27','','','',1,0,1,'2020-12-23','','',0,1,'','','','','','','','','',''),(8,'onlygiddy','sha256:12000:dYsP9Ij8bjUpSAAhUxqCMgrr8yk61Oj7:0tCC52wPksfnUt4YHr+0P3SQEMRsEo5z','쪼각조각','쪼각조각','2020-12-23','onlygiddy@gnuboard.test','',2,'','','','','',0,'','','','','','','','','',998,'2020-12-23 16:39:00','127.0.0.1','2020-12-23 16:39:00','127.0.0.1','','','2020-12-23 16:39:00','','','',1,0,1,'2020-12-23','','',0,0,'','','','','','','','','',''),(9,'test02','sha256:12000:JVXywdnWPaXb4MfjZ1Ssqc7wXS1x6Rdg:C9FLkkNgvRStSdccGVbbeVc6aA9cV4DY','테스트02','테스트02','2020-12-23','test02@gnuboard.test','',2,'','','','','',0,'','','','','','','','','',1200,'2020-12-24 10:04:46','127.0.0.1','2020-12-23 16:43:31','127.0.0.1','','','2020-12-23 16:43:31','','','',1,0,1,'2020-12-23','','',0,0,'','','','','','','','','',''),(10,'test03','sha256:12000:q6GWmPE4icJstLo8XQ+D8F1Vk7ujdVXX:6iAtDc4hhWpRlpO+zKeH7ZIIfCHJW1VP','테스트03','테스트03','2020-12-23','test03@gnuboard.test','',2,'','','','','',0,'','','','','','','','','',1100,'2020-12-24 10:07:06','127.0.0.1','2020-12-23 16:44:47','127.0.0.1','','','2020-12-23 16:44:47','','','',1,0,1,'2020-12-23','','',0,0,'','','','','','','','','',''),(11,'test04','sha256:12000:DqGUQHK3Y9rObe4vXMjGudae8hbCiGks:qQoqG8d0DI2LYJzWjz35vJ7yAUgUGodz','테스트04','테스트04','2020-12-23','test04@gnuboard.test','',2,'','','','','',0,'','','','','','','','','',1100,'2020-12-24 10:30:38','127.0.0.1','2020-12-23 16:46:06','127.0.0.1','','','2020-12-23 16:46:06','','','',1,0,1,'2020-12-23','','',0,0,'','','','','','','','','',''),(12,'test05','sha256:12000:307lT7kVrx0o9F2Eb5/YbIVYAtOVU5NE:U8jdxvTNNbVvWz0/uCVysbrNN7aFgv4+','테스트05','테스트05','2020-12-23','test05@gnuboard.test','',2,'','','','','',0,'','','','','','','','','',1100,'2020-12-24 10:29:59','127.0.0.1','2020-12-23 16:48:33','127.0.0.1','','','2020-12-23 16:48:33','','','',1,0,1,'2020-12-23','','',0,0,'','','','','','','','','',''),(13,'apache','sha256:12000:OPx1VRA+5I8d72vJP8t/StppQTv9VoTE:2oqMfcrUYhUKs0cTs/C34pXBwq2Gft+b','아파치','아파치','2020-12-23','apache@gnuboard.test','',2,'','','','','',0,'','','','','','','','','',1112,'2020-12-24 09:48:48','127.0.0.1','2020-12-23 18:03:57','127.0.0.1','','','2020-12-23 18:03:57','','','',1,0,1,'2020-12-23','','magento',1,0,'','','','','','','','','',''); /*!40000 ALTER TABLE `g5_member` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_member_social_profiles` -- DROP TABLE IF EXISTS `g5_member_social_profiles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_member_social_profiles` ( `mp_no` int(11) NOT NULL AUTO_INCREMENT, `mb_id` varchar(255) NOT NULL DEFAULT '', `provider` varchar(50) NOT NULL DEFAULT '', `object_sha` varchar(45) NOT NULL DEFAULT '', `identifier` varchar(255) NOT NULL DEFAULT '', `profileurl` varchar(255) NOT NULL DEFAULT '', `photourl` varchar(255) NOT NULL DEFAULT '', `displayname` varchar(150) NOT NULL DEFAULT '', `description` varchar(255) NOT NULL DEFAULT '', `mp_register_day` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `mp_latest_day` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', UNIQUE KEY `mp_no` (`mp_no`), KEY `mb_id` (`mb_id`), KEY `provider` (`provider`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_member_social_profiles` -- LOCK TABLES `g5_member_social_profiles` WRITE; /*!40000 ALTER TABLE `g5_member_social_profiles` DISABLE KEYS */; /*!40000 ALTER TABLE `g5_member_social_profiles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_memo` -- DROP TABLE IF EXISTS `g5_memo`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_memo` ( `me_id` int(11) NOT NULL AUTO_INCREMENT, `me_recv_mb_id` varchar(20) NOT NULL DEFAULT '', `me_send_mb_id` varchar(20) NOT NULL DEFAULT '', `me_send_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `me_read_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `me_memo` text NOT NULL, `me_send_id` int(11) NOT NULL DEFAULT 0, `me_type` enum('send','recv') NOT NULL DEFAULT 'recv', `me_send_ip` varchar(100) NOT NULL DEFAULT '', PRIMARY KEY (`me_id`), KEY `me_recv_mb_id` (`me_recv_mb_id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_memo` -- LOCK TABLES `g5_memo` WRITE; /*!40000 ALTER TABLE `g5_memo` DISABLE KEYS */; /*!40000 ALTER TABLE `g5_memo` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_menu` -- DROP TABLE IF EXISTS `g5_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_menu` ( `me_id` int(11) NOT NULL AUTO_INCREMENT, `me_code` varchar(255) NOT NULL DEFAULT '', `me_name` varchar(255) NOT NULL DEFAULT '', `me_link` varchar(255) NOT NULL DEFAULT '', `me_target` varchar(255) NOT NULL DEFAULT '', `me_order` int(11) NOT NULL DEFAULT 0, `me_use` tinyint(4) NOT NULL DEFAULT 0, `me_mobile_use` tinyint(4) NOT NULL DEFAULT 0, PRIMARY KEY (`me_id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_menu` -- LOCK TABLES `g5_menu` WRITE; /*!40000 ALTER TABLE `g5_menu` DISABLE KEYS */; INSERT INTO `g5_menu` VALUES (5,'10','자유게시판','https://gnuboard.test/bbs/board.php?bo_table=free','self',0,1,1),(6,'20','갤러리','https://gnuboard.test/bbs/board.php?bo_table=gallery','self',0,1,1),(7,'30','공지사항','https://gnuboard.test/bbs/board.php?bo_table=notice','self',0,1,1),(8,'40','질문답변','https://gnuboard.test/bbs/board.php?bo_table=qa','self',0,1,1); /*!40000 ALTER TABLE `g5_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_new_win` -- DROP TABLE IF EXISTS `g5_new_win`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_new_win` ( `nw_id` int(11) NOT NULL AUTO_INCREMENT, `nw_division` varchar(10) NOT NULL DEFAULT 'both', `nw_device` varchar(10) NOT NULL DEFAULT 'both', `nw_begin_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `nw_end_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `nw_disable_hours` int(11) NOT NULL DEFAULT 0, `nw_left` int(11) NOT NULL DEFAULT 0, `nw_top` int(11) NOT NULL DEFAULT 0, `nw_height` int(11) NOT NULL DEFAULT 0, `nw_width` int(11) NOT NULL DEFAULT 0, `nw_subject` text NOT NULL, `nw_content` text NOT NULL, `nw_content_html` tinyint(4) NOT NULL DEFAULT 0, PRIMARY KEY (`nw_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_new_win` -- LOCK TABLES `g5_new_win` WRITE; /*!40000 ALTER TABLE `g5_new_win` DISABLE KEYS */; INSERT INTO `g5_new_win` VALUES (1,'both','both','2020-12-24 00:00:00','2020-12-31 23:59:59',24,10,10,500,450,'그누보드/영카트 5의 데모 데이타 축하 이벤트','


 

',0); /*!40000 ALTER TABLE `g5_new_win` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_point` -- DROP TABLE IF EXISTS `g5_point`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_point` ( `po_id` int(11) NOT NULL AUTO_INCREMENT, `mb_id` varchar(20) NOT NULL DEFAULT '', `po_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `po_content` varchar(255) NOT NULL DEFAULT '', `po_point` int(11) NOT NULL DEFAULT 0, `po_use_point` int(11) NOT NULL DEFAULT 0, `po_expired` tinyint(4) NOT NULL DEFAULT 0, `po_expire_date` date NOT NULL DEFAULT '0000-00-00', `po_mb_point` int(11) NOT NULL DEFAULT 0, `po_rel_table` varchar(20) NOT NULL DEFAULT '', `po_rel_id` varchar(20) NOT NULL DEFAULT '', `po_rel_action` varchar(100) NOT NULL DEFAULT '', PRIMARY KEY (`po_id`), KEY `index1` (`mb_id`,`po_rel_table`,`po_rel_id`,`po_rel_action`), KEY `index2` (`po_expire_date`) ) ENGINE=InnoDB AUTO_INCREMENT=188 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_point` -- LOCK TABLES `g5_point` WRITE; /*!40000 ALTER TABLE `g5_point` DISABLE KEYS */; INSERT INTO `g5_point` VALUES (1,'admin','2020-11-22 12:39:52','2020-11-22 첫로그인',100,2,0,'9999-12-31',100,'@login','admin','2020-11-22'),(2,'admin','2020-12-19 12:48:10','2020-12-19 첫로그인',100,0,0,'9999-12-31',200,'@login','admin','2020-12-19'),(3,'admin','2020-12-20 10:20:23','2020-12-20 첫로그인',100,0,0,'9999-12-31',300,'@login','admin','2020-12-20'),(4,'admin','2020-12-21 00:01:33','2020-12-21 첫로그인',100,0,0,'9999-12-31',400,'@login','admin','2020-12-21'),(5,'admin','2020-12-22 08:33:16','2020-12-22 첫로그인',100,0,0,'9999-12-31',500,'@login','admin','2020-12-22'),(6,'admin','2020-12-23 09:09:27','2020-12-23 첫로그인',100,0,0,'9999-12-31',600,'@login','admin','2020-12-23'),(7,'rido','2020-12-23 14:14:27','회원가입 축하',1000,2,0,'9999-12-31',1000,'@member','rido','회원가입'),(8,'smilezon','2020-12-23 14:17:58','회원가입 축하',1000,1,0,'9999-12-31',1000,'@member','smilezon','회원가입'),(9,'magento','2020-12-23 14:19:37','회원가입 축하',1000,1000,100,'9999-12-31',1000,'@member','magento','회원가입'),(10,'admin','2020-12-23 14:26:03','공지사항 1 글쓰기',5,0,0,'9999-12-31',605,'notice','1','쓰기'),(11,'admin','2020-12-23 14:29:07','공지사항 2 글쓰기',5,0,0,'9999-12-31',610,'notice','2','쓰기'),(12,'admin','2020-12-23 14:29:57','공지사항 3 글쓰기',5,0,0,'9999-12-31',615,'notice','3','쓰기'),(13,'admin','2020-12-23 14:30:39','공지사항 4 글쓰기',5,0,0,'9999-12-31',620,'notice','4','쓰기'),(14,'admin','2020-12-23 14:31:40','공지사항 5 글쓰기',5,0,0,'9999-12-31',625,'notice','5','쓰기'),(15,'admin','2020-12-23 14:32:29','공지사항 6 글쓰기',5,0,0,'9999-12-31',630,'notice','6','쓰기'),(16,'admin','2020-12-23 14:33:14','공지사항 7 글쓰기',5,0,0,'9999-12-31',635,'notice','7','쓰기'),(17,'admin','2020-12-23 14:33:40','공지사항 8 글쓰기',5,0,0,'9999-12-31',640,'notice','8','쓰기'),(18,'admin','2020-12-23 14:34:14','공지사항 9 글쓰기',5,0,0,'9999-12-31',645,'notice','9','쓰기'),(19,'admin','2020-12-23 14:34:49','공지사항 10 글쓰기',5,0,0,'9999-12-31',650,'notice','10','쓰기'),(20,'admin','2020-12-23 14:35:23','공지사항 11 글쓰기',5,0,0,'9999-12-31',655,'notice','11','쓰기'),(21,'admin','2020-12-23 14:36:07','공지사항 12 글쓰기',5,0,0,'9999-12-31',660,'notice','12','쓰기'),(22,'admin','2020-12-23 14:36:41','공지사항 13 글쓰기',5,0,0,'9999-12-31',665,'notice','13','쓰기'),(23,'admin','2020-12-23 14:37:48','공지사항 14 글쓰기',5,0,0,'9999-12-31',670,'notice','14','쓰기'),(24,'admin','2020-12-23 14:38:11','공지사항 15 글쓰기',5,0,0,'9999-12-31',675,'notice','15','쓰기'),(25,'sundoforce','2020-12-23 16:18:26','회원가입 축하',1000,3,0,'9999-12-31',1000,'@member','sundoforce','회원가입'),(26,'anunnaki8','2020-12-23 16:21:12','회원가입 축하',1000,2,0,'9999-12-31',1000,'@member','anunnaki8','회원가입'),(27,'sundoforce','2020-12-23 16:24:23','자유게시판 1 글쓰기',5,0,0,'9999-12-31',1005,'free','1','쓰기'),(28,'test01','2020-12-23 16:25:27','회원가입 축하',1000,9,0,'9999-12-31',1000,'@member','test01','회원가입'),(29,'test01','2020-12-23 16:25:32','자유게시판 1 글읽기',-1,0,1,'2020-12-23',999,'free','1','읽기'),(30,'test01','2020-12-23 16:25:45','자유게시판 1-2 댓글쓰기',1,0,0,'9999-12-31',1000,'free','2','댓글'),(31,'sundoforce','2020-12-23 16:26:07','자유게시판 1-3 댓글쓰기',1,0,0,'9999-12-31',1006,'free','3','댓글'),(32,'magento','2020-12-23 16:26:33','자유게시판 1 글읽기',-1,0,1,'2020-12-23',999,'free','1','읽기'),(33,'magento','2020-12-23 16:26:57','자유게시판 1-4 댓글쓰기',1,1,100,'9999-12-31',1000,'free','4','댓글'),(34,'sundoforce','2020-12-23 16:27:20','자유게시판 1-5 댓글쓰기',1,0,0,'9999-12-31',1007,'free','5','댓글'),(35,'rido','2020-12-23 16:27:40','자유게시판 1 글읽기',-1,0,1,'2020-12-23',999,'free','1','읽기'),(36,'rido','2020-12-23 16:27:54','자유게시판 1-6 댓글쓰기',1,0,0,'9999-12-31',1000,'free','6','댓글'),(37,'sundoforce','2020-12-23 16:28:13','자유게시판 1-7 댓글쓰기',1,0,0,'9999-12-31',1008,'free','7','댓글'),(38,'rido','2020-12-23 16:28:42','자유게시판 1-8 댓글쓰기',1,0,0,'9999-12-31',1001,'free','8','댓글'),(39,'sundoforce','2020-12-23 16:29:14','자유게시판 1-9 댓글쓰기',1,0,0,'9999-12-31',1009,'free','9','댓글'),(40,'magento','2020-12-23 16:30:34','자유게시판 10 글쓰기',5,4,0,'9999-12-31',1005,'free','10','쓰기'),(41,'rido','2020-12-23 16:30:52','자유게시판 10 글읽기',-1,0,1,'2020-12-23',1000,'free','10','읽기'),(42,'anunnaki8','2020-12-23 16:31:33','자유게시판 10 글읽기',-1,0,1,'2020-12-23',999,'free','10','읽기'),(43,'anunnaki8','2020-12-23 16:31:43','자유게시판 10-11 댓글쓰기',1,0,0,'9999-12-31',1000,'free','11','댓글'),(44,'magento','2020-12-23 16:31:57','자유게시판 10-12 댓글쓰기',1,0,0,'9999-12-31',1006,'free','12','댓글'),(45,'anunnaki8','2020-12-23 16:32:18','자유게시판 10-13 댓글쓰기',1,0,0,'9999-12-31',1001,'free','13','댓글'),(46,'test01','2020-12-23 16:32:42','자유게시판 10 글읽기',-1,0,1,'2020-12-23',999,'free','10','읽기'),(47,'test01','2020-12-23 16:32:56','자유게시판 10-14 댓글쓰기',1,0,0,'9999-12-31',1000,'free','14','댓글'),(48,'anunnaki8','2020-12-23 16:33:37','자유게시판 10-15 댓글쓰기',1,0,0,'9999-12-31',1002,'free','15','댓글'),(49,'test01','2020-12-23 16:34:10','자유게시판 10-16 댓글쓰기',1,0,0,'9999-12-31',1001,'free','16','댓글'),(50,'anunnaki8','2020-12-23 16:34:52','자유게시판 17 글쓰기',5,0,0,'9999-12-31',1007,'free','17','쓰기'),(51,'onlygiddy','2020-12-23 16:39:00','회원가입 축하',1000,5,0,'9999-12-31',1000,'@member','onlygiddy','회원가입'),(52,'onlygiddy','2020-12-23 16:40:03','자유게시판 17 글읽기',-1,0,1,'2020-12-23',999,'free','17','읽기'),(53,'onlygiddy','2020-12-23 16:40:21','자유게시판 17-18 댓글쓰기',1,0,0,'9999-12-31',1000,'free','18','댓글'),(54,'anunnaki8','2020-12-23 16:40:42','자유게시판 17-19 댓글쓰기',1,0,0,'9999-12-31',1008,'free','19','댓글'),(55,'test01','2020-12-23 16:41:25','자유게시판 17 글읽기',-1,0,1,'2020-12-23',1000,'free','17','읽기'),(56,'test01','2020-12-23 16:41:35','자유게시판 17-20 댓글쓰기',1,0,0,'9999-12-31',1001,'free','20','댓글'),(57,'anunnaki8','2020-12-23 16:41:53','자유게시판 17-21 댓글쓰기',1,0,0,'9999-12-31',1009,'free','21','댓글'),(58,'magento','2020-12-23 16:42:11','자유게시판 17 글읽기',-1,0,1,'2020-12-23',1005,'free','17','읽기'),(59,'magento','2020-12-23 16:42:18','자유게시판 17-22 댓글쓰기',1,0,0,'9999-12-31',1006,'free','22','댓글'),(60,'anunnaki8','2020-12-23 16:42:34','자유게시판 17-23 댓글쓰기',1,0,0,'9999-12-31',1010,'free','23','댓글'),(61,'test02','2020-12-23 16:43:31','회원가입 축하',1000,6,0,'9999-12-31',1000,'@member','test02','회원가입'),(62,'test02','2020-12-23 16:43:34','자유게시판 17 글읽기',-1,0,1,'2020-12-23',999,'free','17','읽기'),(63,'test02','2020-12-23 16:43:43','자유게시판 17-24 댓글쓰기',1,0,0,'9999-12-31',1000,'free','24','댓글'),(64,'anunnaki8','2020-12-23 16:43:56','자유게시판 17-25 댓글쓰기',1,0,0,'9999-12-31',1011,'free','25','댓글'),(65,'test03','2020-12-23 16:44:47','회원가입 축하',1000,4,0,'9999-12-31',1000,'@member','test03','회원가입'),(66,'test03','2020-12-23 16:44:50','자유게시판 17 글읽기',-1,0,1,'2020-12-23',999,'free','17','읽기'),(67,'test03','2020-12-23 16:45:06','자유게시판 17-26 댓글쓰기',1,0,0,'9999-12-31',1000,'free','26','댓글'),(68,'anunnaki8','2020-12-23 16:45:20','자유게시판 17-27 댓글쓰기',1,0,0,'9999-12-31',1012,'free','27','댓글'),(69,'test04','2020-12-23 16:46:06','회원가입 축하',1000,3,0,'9999-12-31',1000,'@member','test04','회원가입'),(70,'test04','2020-12-23 16:46:08','자유게시판 17 글읽기',-1,0,1,'2020-12-23',999,'free','17','읽기'),(71,'test04','2020-12-23 16:46:18','자유게시판 17-28 댓글쓰기',1,0,0,'9999-12-31',1000,'free','28','댓글'),(72,'anunnaki8','2020-12-23 16:46:33','자유게시판 17-29 댓글쓰기',1,0,0,'9999-12-31',1013,'free','29','댓글'),(73,'smilezon','2020-12-23 16:47:02','자유게시판 17 글읽기',-1,0,1,'2020-12-23',999,'free','17','읽기'),(74,'smilezon','2020-12-23 16:47:12','자유게시판 17-30 댓글쓰기',1,0,0,'9999-12-31',1000,'free','30','댓글'),(75,'anunnaki8','2020-12-23 16:47:32','자유게시판 17-31 댓글쓰기',1,0,0,'9999-12-31',1014,'free','31','댓글'),(76,'test05','2020-12-23 16:48:33','회원가입 축하',1000,1,0,'9999-12-31',1000,'@member','test05','회원가입'),(77,'test05','2020-12-23 16:48:46','자유게시판 17-32 댓글쓰기',1,0,0,'9999-12-31',1001,'free','32','댓글'),(78,'anunnaki8','2020-12-23 16:49:01','자유게시판 17-33 댓글쓰기',1,0,0,'9999-12-31',1015,'free','33','댓글'),(79,'test01','2020-12-23 16:49:42','자유게시판 17-34 댓글쓰기',1,0,0,'9999-12-31',1002,'free','34','댓글'),(80,'anunnaki8','2020-12-23 16:50:25','자유게시판 17-35 댓글쓰기',1,0,0,'9999-12-31',1016,'free','35','댓글'),(81,'test01','2020-12-23 16:50:46','자유게시판 17-36 댓글쓰기',1,0,0,'9999-12-31',1003,'free','36','댓글'),(82,'test02','2020-12-23 16:51:22','자유게시판 17-37 댓글쓰기',1,0,0,'9999-12-31',1001,'free','37','댓글'),(83,'anunnaki8','2020-12-23 16:51:34','자유게시판 17-38 댓글쓰기',1,0,0,'9999-12-31',1017,'free','38','댓글'),(84,'test03','2020-12-23 16:52:12','자유게시판 17-39 댓글쓰기',1,0,0,'9999-12-31',1001,'free','39','댓글'),(85,'test04','2020-12-23 16:52:50','자유게시판 17-40 댓글쓰기',1,0,0,'9999-12-31',1001,'free','40','댓글'),(86,'anunnaki8','2020-12-23 17:29:57','갤러리 1 글쓰기',5,0,0,'9999-12-31',1022,'gallery','1','쓰기'),(87,'test01','2020-12-23 17:31:40','갤러리 2 글쓰기',5,0,0,'9999-12-31',1008,'gallery','2','쓰기'),(88,'anunnaki8','2020-12-23 17:32:56','갤러리 3 글쓰기',5,0,0,'9999-12-31',1027,'gallery','3','쓰기'),(89,'test01','2020-12-23 17:33:24','갤러리 1 글읽기',-1,0,1,'2020-12-23',1007,'gallery','1','읽기'),(90,'test01','2020-12-23 17:33:29','갤러리 3 글읽기',-1,0,1,'2020-12-23',1006,'gallery','3','읽기'),(91,'test01','2020-12-23 17:33:39','갤러리 3-4 댓글쓰기',1,0,0,'9999-12-31',1007,'gallery','4','댓글'),(92,'anunnaki8','2020-12-23 17:34:00','갤러리 3-5 댓글쓰기',1,0,0,'9999-12-31',1028,'gallery','5','댓글'),(93,'test01','2020-12-23 17:34:23','갤러리 3-6 댓글쓰기',1,0,0,'9999-12-31',1008,'gallery','6','댓글'),(94,'onlygiddy','2020-12-23 17:35:13','갤러리 1 글읽기',-1,0,1,'2020-12-23',999,'gallery','1','읽기'),(95,'onlygiddy','2020-12-23 17:35:24','갤러리 1-7 댓글쓰기',1,0,0,'9999-12-31',1000,'gallery','7','댓글'),(96,'anunnaki8','2020-12-23 17:35:44','갤러리 1-8 댓글쓰기',1,0,0,'9999-12-31',1029,'gallery','8','댓글'),(97,'test01','2020-12-23 17:36:01','갤러리 1-9 댓글쓰기',1,0,0,'9999-12-31',1009,'gallery','9','댓글'),(98,'anunnaki8','2020-12-23 17:37:26','갤러리 10 글쓰기',5,0,0,'9999-12-31',1034,'gallery','10','쓰기'),(99,'onlygiddy','2020-12-23 18:00:32','공지사항 15 글읽기',-1,0,1,'2020-12-23',999,'notice','15','읽기'),(100,'smilezon','2020-12-23 18:01:56','자유게시판 41 글쓰기',5,0,0,'9999-12-31',1005,'free','41','쓰기'),(101,'onlygiddy','2020-12-23 18:02:49','자유게시판 41 글읽기',-1,0,1,'2020-12-23',998,'free','41','읽기'),(102,'onlygiddy','2020-12-23 18:03:00','자유게시판 41-42 댓글쓰기',1,0,0,'9999-12-31',999,'free','42','댓글'),(103,'apache','2020-12-23 18:03:57','회원가입 축하',1000,1,0,'9999-12-31',1000,'@member','apache','회원가입'),(104,'apache','2020-12-23 18:04:13','자유게시판 41 글읽기',-1,0,1,'2020-12-23',999,'free','41','읽기'),(105,'apache','2020-12-23 18:04:19','자유게시판 41-43 댓글쓰기',1,0,0,'9999-12-31',1000,'free','43','댓글'),(106,'magento','2020-12-23 18:04:39','자유게시판 41 글읽기',-1,0,1,'2020-12-23',1005,'free','41','읽기'),(107,'magento','2020-12-23 18:04:42','자유게시판 41-44 댓글쓰기',1,0,0,'9999-12-31',1006,'free','44','댓글'),(108,'test01','2020-12-23 18:05:06','자유게시판 41 글읽기',-1,0,1,'2020-12-23',1008,'free','41','읽기'),(109,'test01','2020-12-23 18:05:10','자유게시판 41-45 댓글쓰기',1,0,0,'9999-12-31',1009,'free','45','댓글'),(110,'smilezon','2020-12-23 18:05:32','자유게시판 41-46 댓글쓰기',1,0,0,'9999-12-31',1006,'free','46','댓글'),(111,'test01','2020-12-23 18:05:47','자유게시판 41-47 댓글쓰기',1,0,0,'9999-12-31',1010,'free','47','댓글'),(112,'test01','2020-12-23 18:08:59','공지사항 15 글읽기',-1,0,1,'2020-12-23',1009,'notice','15','읽기'),(113,'test01','2020-12-23 18:15:38','질문답변 1 글쓰기',5,0,0,'9999-12-31',1014,'qa','1','쓰기'),(114,'test01','2020-12-23 18:16:19','질문답변 2 글쓰기',5,0,0,'9999-12-31',1019,'qa','2','쓰기'),(115,'test01','2020-12-23 18:16:52','질문답변 3 글쓰기',5,0,0,'9999-12-31',1024,'qa','3','쓰기'),(116,'test02','2020-12-23 18:17:11','질문답변 3 글읽기',-1,0,1,'2020-12-23',1000,'qa','3','읽기'),(117,'test02','2020-12-23 18:17:20','질문답변 3-4 댓글쓰기',1,0,0,'9999-12-31',1001,'qa','4','댓글'),(118,'test02','2020-12-23 18:17:30','질문답변 1 글읽기',-1,0,1,'2020-12-23',1000,'qa','1','읽기'),(119,'test02','2020-12-23 18:18:08','질문답변 1-5 댓글쓰기',1,0,0,'9999-12-31',1001,'qa','5','댓글'),(120,'test03','2020-12-23 18:18:24','질문답변 3 글읽기',-1,0,1,'2020-12-23',1000,'qa','3','읽기'),(121,'test03','2020-12-23 18:18:45','질문답변 3-6 댓글쓰기',1,0,0,'9999-12-31',1001,'qa','6','댓글'),(122,'onlygiddy','2020-12-23 19:21:48','질문답변 1 글읽기',-1,0,1,'2020-12-23',998,'qa','1','읽기'),(123,'magento','2020-12-23 23:24:02','자유게시판 48 글쓰기',5,0,0,'9999-12-31',1011,'free','48','쓰기'),(124,'smilezon','2020-12-23 23:25:56','자유게시판 49 글쓰기',5,0,0,'9999-12-31',1011,'free','49','쓰기'),(125,'test01','2020-12-23 23:26:51','자유게시판 49 글읽기',-1,0,1,'2020-12-23',1023,'free','49','읽기'),(126,'test01','2020-12-23 23:27:15','자유게시판 49-50 댓글쓰기',1,0,0,'9999-12-31',1024,'free','50','댓글'),(127,'smilezon','2020-12-23 23:27:37','자유게시판 49-51 댓글쓰기',1,0,0,'9999-12-31',1012,'free','51','댓글'),(128,'magento','2020-12-23 23:28:01','자유게시판 49 글읽기',-1,0,1,'2020-12-23',1010,'free','49','읽기'),(129,'magento','2020-12-23 23:28:07','자유게시판 49-52 댓글쓰기',1,0,0,'9999-12-31',1011,'free','52','댓글'),(130,'smilezon','2020-12-23 23:28:37','자유게시판 49-53 댓글쓰기',1,0,0,'9999-12-31',1013,'free','53','댓글'),(131,'smilezon','2020-12-23 23:29:17','자유게시판 49-54 댓글쓰기',1,0,0,'9999-12-31',1014,'free','54','댓글'),(132,'test02','2020-12-23 23:29:55','자유게시판 49 글읽기',-1,0,1,'2020-12-23',1000,'free','49','읽기'),(133,'test02','2020-12-23 23:30:01','자유게시판 49-55 댓글쓰기',1,0,0,'9999-12-31',1001,'free','55','댓글'),(134,'test03','2020-12-23 23:30:15','자유게시판 49 글읽기',-1,0,1,'2020-12-23',1000,'free','49','읽기'),(135,'test03','2020-12-23 23:30:39','자유게시판 49-56 댓글쓰기',1,0,0,'9999-12-31',1001,'free','56','댓글'),(136,'test04','2020-12-23 23:30:57','자유게시판 49 글읽기',-1,0,1,'2020-12-23',1000,'free','49','읽기'),(137,'test04','2020-12-23 23:31:16','자유게시판 49-57 댓글쓰기',1,0,0,'9999-12-31',1001,'free','57','댓글'),(138,'apache','2020-12-23 23:33:11','자유게시판 58 글쓰기',5,0,0,'9999-12-31',1005,'free','58','쓰기'),(139,'anunnaki8','2020-12-23 23:34:22','자유게시판 58 글읽기',-1,0,1,'2020-12-23',1033,'free','58','읽기'),(141,'anunnaki8','2020-12-23 23:34:53','자유게시판 58-60 댓글쓰기',1,0,0,'9999-12-31',1034,'free','60','댓글'),(142,'apache','2020-12-23 23:35:18','자유게시판 58-61 댓글쓰기',1,0,0,'9999-12-31',1006,'free','61','댓글'),(143,'anunnaki8','2020-12-23 23:37:08','자유게시판 58-62 댓글쓰기',1,0,0,'9999-12-31',1035,'free','62','댓글'),(144,'apache','2020-12-23 23:37:31','자유게시판 58-63 댓글쓰기',1,0,0,'9999-12-31',1007,'free','63','댓글'),(145,'magento','2020-12-23 23:37:54','자유게시판 58 글읽기',-1,0,1,'2020-12-23',1010,'free','58','읽기'),(146,'magento','2020-12-23 23:38:03','자유게시판 58-64 댓글쓰기',1,0,0,'9999-12-31',1011,'free','64','댓글'),(147,'apache','2020-12-23 23:38:28','자유게시판 58-65 댓글쓰기',1,0,0,'9999-12-31',1008,'free','65','댓글'),(148,'test01','2020-12-23 23:38:58','자유게시판 58 글읽기',-1,0,1,'2020-12-23',1023,'free','58','읽기'),(149,'test01','2020-12-23 23:39:03','자유게시판 58-66 댓글쓰기',1,0,0,'9999-12-31',1024,'free','66','댓글'),(150,'apache','2020-12-23 23:39:28','자유게시판 58-67 댓글쓰기',1,0,0,'9999-12-31',1009,'free','67','댓글'),(151,'test01','2020-12-23 23:39:48','자유게시판 58-68 댓글쓰기',1,0,0,'9999-12-31',1025,'free','68','댓글'),(152,'sundoforce','2020-12-23 23:40:36','자유게시판 58 글읽기',-1,0,1,'2020-12-23',1008,'free','58','읽기'),(153,'sundoforce','2020-12-23 23:40:46','자유게시판 58-69 댓글쓰기',1,0,0,'9999-12-31',1009,'free','69','댓글'),(154,'apache','2020-12-23 23:41:04','자유게시판 58-70 댓글쓰기',1,0,0,'9999-12-31',1010,'free','70','댓글'),(156,'test01','2020-12-23 23:42:30','자유게시판 58-72 댓글쓰기',1,0,0,'9999-12-31',1026,'free','72','댓글'),(158,'apache','2020-12-23 23:43:43','자유게시판 58-74 댓글쓰기',1,0,0,'9999-12-31',1011,'free','74','댓글'),(159,'test01','2020-12-23 23:44:05','자유게시판 58-75 댓글쓰기',1,0,0,'9999-12-31',1027,'free','75','댓글'),(160,'sundoforce','2020-12-23 23:44:31','자유게시판 58-76 댓글쓰기',1,0,0,'9999-12-31',1010,'free','76','댓글'),(161,'apache','2020-12-23 23:44:47','자유게시판 58-77 댓글쓰기',1,0,0,'9999-12-31',1012,'free','77','댓글'),(162,'sundoforce','2020-12-23 23:46:04','질문답변 3 글읽기',-1,0,1,'2020-12-23',1009,'qa','3','읽기'),(163,'test01','2020-12-23 23:46:35','질문답변 7 글쓰기',5,0,0,'9999-12-31',1032,'qa','7','쓰기'),(164,'test02','2020-12-23 23:47:05','질문답변 7 글읽기',-1,0,1,'2020-12-23',1000,'qa','7','읽기'),(165,'test02','2020-12-23 23:47:09','질문답변 7-8 댓글쓰기',1,0,0,'9999-12-31',1001,'qa','8','댓글'),(166,'apache','2020-12-24 09:48:48','2020-12-24 첫로그인',100,0,0,'9999-12-31',1112,'@login','apache','2020-12-24'),(167,'admin','2020-12-24 09:48:53','2020-12-24 첫로그인',100,0,0,'9999-12-31',775,'@login','admin','2020-12-24'),(168,'sundoforce','2020-12-24 09:51:53','2020-12-24 첫로그인',100,0,0,'9999-12-31',1109,'@login','sundoforce','2020-12-24'),(169,'sundoforce','2020-12-24 09:51:58','자유게시판 48 글읽기',-1,0,1,'2020-12-24',1108,'free','48','읽기'),(170,'test01','2020-12-24 09:55:59','2020-12-24 첫로그인',100,0,0,'9999-12-31',1132,'@login','test01','2020-12-24'),(171,'test01','2020-12-24 10:04:02','1. 그누보드/영카트의 데모사이트 필요한가… 투표 참여 ',100,0,0,'9999-12-31',1232,'@poll','1','투표'),(172,'test02','2020-12-24 10:04:46','2020-12-24 첫로그인',100,0,0,'9999-12-31',1101,'@login','test02','2020-12-24'),(173,'test02','2020-12-24 10:04:55','1. 그누보드/영카트의 데모사이트 필요한가… 투표 참여 ',100,0,0,'9999-12-31',1201,'@poll','1','투표'),(174,'test03','2020-12-24 10:07:06','2020-12-24 첫로그인',100,0,0,'9999-12-31',1101,'@login','test03','2020-12-24'),(175,'magento','2020-12-24 10:14:44','2020-12-24 첫로그인',100,0,0,'9999-12-31',1111,'@login','magento','2020-12-24'),(176,'magento','2020-12-24 10:15:17','최고관리자(admin)님께 쪽지 발송',-500,0,1,'2020-12-24',611,'@memo','admin','3'),(177,'magento','2020-12-24 10:15:50','아파치(apache)님께 쪽지 발송',-500,0,1,'2020-12-24',111,'@memo','apache','5'),(178,'test03','2020-12-24 10:27:42','자유게시판 58 글읽기',-1,0,1,'2020-12-24',1100,'free','58','읽기'),(179,'test05','2020-12-24 10:29:59','2020-12-24 첫로그인',100,0,0,'9999-12-31',1101,'@login','test05','2020-12-24'),(180,'test05','2020-12-24 10:30:04','자유게시판 49 글읽기',-1,0,1,'2020-12-24',1100,'free','49','읽기'),(181,'test02','2020-12-24 10:30:23','자유게시판 48 글읽기',-1,0,1,'2020-12-24',1200,'free','48','읽기'),(182,'test04','2020-12-24 10:30:38','2020-12-24 첫로그인',100,0,0,'9999-12-31',1101,'@login','test04','2020-12-24'),(183,'test04','2020-12-24 10:30:41','자유게시판 48 글읽기',-1,0,1,'2020-12-24',1100,'free','48','읽기'),(184,'admin','2022-06-18 09:32:13','2022-06-18 첫로그인',100,0,0,'9999-12-31',875,'@login','admin','2022-06-18'),(185,'admin','2022-06-18 09:57:14','자유게시판 1 글읽기',-1,0,1,'2022-06-18',874,'free','1','읽기'),(186,'admin','2022-08-21 09:52:16','2022-08-21 첫로그인',100,0,0,'9999-12-31',974,'@login','admin','2022-08-21'),(187,'admin','2022-08-21 10:01:09','자유게시판 58 글읽기',-1,0,1,'2022-08-21',973,'free','58','읽기'); /*!40000 ALTER TABLE `g5_point` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_poll` -- DROP TABLE IF EXISTS `g5_poll`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_poll` ( `po_id` int(11) NOT NULL AUTO_INCREMENT, `po_subject` varchar(255) NOT NULL DEFAULT '', `po_poll1` varchar(255) NOT NULL DEFAULT '', `po_poll2` varchar(255) NOT NULL DEFAULT '', `po_poll3` varchar(255) NOT NULL DEFAULT '', `po_poll4` varchar(255) NOT NULL DEFAULT '', `po_poll5` varchar(255) NOT NULL DEFAULT '', `po_poll6` varchar(255) NOT NULL DEFAULT '', `po_poll7` varchar(255) NOT NULL DEFAULT '', `po_poll8` varchar(255) NOT NULL DEFAULT '', `po_poll9` varchar(255) NOT NULL DEFAULT '', `po_cnt1` int(11) NOT NULL DEFAULT 0, `po_cnt2` int(11) NOT NULL DEFAULT 0, `po_cnt3` int(11) NOT NULL DEFAULT 0, `po_cnt4` int(11) NOT NULL DEFAULT 0, `po_cnt5` int(11) NOT NULL DEFAULT 0, `po_cnt6` int(11) NOT NULL DEFAULT 0, `po_cnt7` int(11) NOT NULL DEFAULT 0, `po_cnt8` int(11) NOT NULL DEFAULT 0, `po_cnt9` int(11) NOT NULL DEFAULT 0, `po_etc` varchar(255) NOT NULL DEFAULT '', `po_level` tinyint(4) NOT NULL DEFAULT 0, `po_point` int(11) NOT NULL DEFAULT 0, `po_date` date NOT NULL DEFAULT '0000-00-00', `po_ips` mediumtext NOT NULL, `mb_ids` text NOT NULL, PRIMARY KEY (`po_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_poll` -- LOCK TABLES `g5_poll` WRITE; /*!40000 ALTER TABLE `g5_poll` DISABLE KEYS */; INSERT INTO `g5_poll` VALUES (1,'그누보드/영카트의 데모사이트 필요한가요?','꼭 필요하다','필요하다','필요하지 않다','필요없다','잘모른다','','','','',1,0,0,0,1,0,0,0,0,'다른 의견이 있다면?',1,100,'2020-12-24','','test01,test02,'); /*!40000 ALTER TABLE `g5_poll` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_poll_etc` -- DROP TABLE IF EXISTS `g5_poll_etc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_poll_etc` ( `pc_id` int(11) NOT NULL DEFAULT 0, `po_id` int(11) NOT NULL DEFAULT 0, `mb_id` varchar(20) NOT NULL DEFAULT '', `pc_name` varchar(255) NOT NULL DEFAULT '', `pc_idea` varchar(255) NOT NULL DEFAULT '', `pc_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`pc_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_poll_etc` -- LOCK TABLES `g5_poll_etc` WRITE; /*!40000 ALTER TABLE `g5_poll_etc` DISABLE KEYS */; INSERT INTO `g5_poll_etc` VALUES (1,1,'test01','테스트01','잘쓰고 있습니다.','2020-12-24 10:04:29'),(2,1,'test02','테스트02','뭐 때문에 이런것을 만드는지 알수 없네요','2020-12-24 10:05:18'); /*!40000 ALTER TABLE `g5_poll_etc` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_popular` -- DROP TABLE IF EXISTS `g5_popular`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_popular` ( `pp_id` int(11) NOT NULL AUTO_INCREMENT, `pp_word` varchar(50) NOT NULL DEFAULT '', `pp_date` date NOT NULL DEFAULT '0000-00-00', `pp_ip` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`pp_id`), UNIQUE KEY `index1` (`pp_date`,`pp_word`,`pp_ip`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_popular` -- LOCK TABLES `g5_popular` WRITE; /*!40000 ALTER TABLE `g5_popular` DISABLE KEYS */; /*!40000 ALTER TABLE `g5_popular` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_qa_config` -- DROP TABLE IF EXISTS `g5_qa_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_qa_config` ( `qa_title` varchar(255) NOT NULL DEFAULT '', `qa_category` varchar(255) NOT NULL DEFAULT '', `qa_skin` varchar(255) NOT NULL DEFAULT '', `qa_mobile_skin` varchar(255) NOT NULL DEFAULT '', `qa_use_email` tinyint(4) NOT NULL DEFAULT 0, `qa_req_email` tinyint(4) NOT NULL DEFAULT 0, `qa_use_hp` tinyint(4) NOT NULL DEFAULT 0, `qa_req_hp` tinyint(4) NOT NULL DEFAULT 0, `qa_use_sms` tinyint(4) NOT NULL DEFAULT 0, `qa_send_number` varchar(255) NOT NULL DEFAULT '0', `qa_admin_hp` varchar(255) NOT NULL DEFAULT '', `qa_admin_email` varchar(255) NOT NULL DEFAULT '', `qa_use_editor` tinyint(4) NOT NULL DEFAULT 0, `qa_subject_len` int(11) NOT NULL DEFAULT 0, `qa_mobile_subject_len` int(11) NOT NULL DEFAULT 0, `qa_page_rows` int(11) NOT NULL DEFAULT 0, `qa_mobile_page_rows` int(11) NOT NULL DEFAULT 0, `qa_image_width` int(11) NOT NULL DEFAULT 0, `qa_upload_size` int(11) NOT NULL DEFAULT 0, `qa_insert_content` text NOT NULL, `qa_include_head` varchar(255) NOT NULL DEFAULT '', `qa_include_tail` varchar(255) NOT NULL DEFAULT '', `qa_content_head` text NOT NULL, `qa_content_tail` text NOT NULL, `qa_mobile_content_head` text NOT NULL, `qa_mobile_content_tail` text NOT NULL, `qa_1_subj` varchar(255) NOT NULL DEFAULT '', `qa_2_subj` varchar(255) NOT NULL DEFAULT '', `qa_3_subj` varchar(255) NOT NULL DEFAULT '', `qa_4_subj` varchar(255) NOT NULL DEFAULT '', `qa_5_subj` varchar(255) NOT NULL DEFAULT '', `qa_1` varchar(255) NOT NULL DEFAULT '', `qa_2` varchar(255) NOT NULL DEFAULT '', `qa_3` varchar(255) NOT NULL DEFAULT '', `qa_4` varchar(255) NOT NULL DEFAULT '', `qa_5` varchar(255) NOT NULL DEFAULT '' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_qa_config` -- LOCK TABLES `g5_qa_config` WRITE; /*!40000 ALTER TABLE `g5_qa_config` DISABLE KEYS */; INSERT INTO `g5_qa_config` VALUES ('1:1문의','회원|포인트','basic','basic',1,0,1,0,0,'0','','',1,60,30,15,15,600,1048576,'','','','','','','','','','','','','','','','',''); /*!40000 ALTER TABLE `g5_qa_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_qa_content` -- DROP TABLE IF EXISTS `g5_qa_content`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_qa_content` ( `qa_id` int(11) NOT NULL AUTO_INCREMENT, `qa_num` int(11) NOT NULL DEFAULT 0, `qa_parent` int(11) NOT NULL DEFAULT 0, `qa_related` int(11) NOT NULL DEFAULT 0, `mb_id` varchar(20) NOT NULL DEFAULT '', `qa_name` varchar(255) NOT NULL DEFAULT '', `qa_email` varchar(255) NOT NULL DEFAULT '', `qa_hp` varchar(255) NOT NULL DEFAULT '', `qa_type` tinyint(4) NOT NULL DEFAULT 0, `qa_category` varchar(255) NOT NULL DEFAULT '', `qa_email_recv` tinyint(4) NOT NULL DEFAULT 0, `qa_sms_recv` tinyint(4) NOT NULL DEFAULT 0, `qa_html` tinyint(4) NOT NULL DEFAULT 0, `qa_subject` varchar(255) NOT NULL DEFAULT '', `qa_content` text NOT NULL, `qa_status` tinyint(4) NOT NULL DEFAULT 0, `qa_file1` varchar(255) NOT NULL DEFAULT '', `qa_source1` varchar(255) NOT NULL DEFAULT '', `qa_file2` varchar(255) NOT NULL DEFAULT '', `qa_source2` varchar(255) NOT NULL DEFAULT '', `qa_ip` varchar(255) NOT NULL DEFAULT '', `qa_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `qa_1` varchar(255) NOT NULL DEFAULT '', `qa_2` varchar(255) NOT NULL DEFAULT '', `qa_3` varchar(255) NOT NULL DEFAULT '', `qa_4` varchar(255) NOT NULL DEFAULT '', `qa_5` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`qa_id`), KEY `qa_num_parent` (`qa_num`,`qa_parent`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_qa_content` -- LOCK TABLES `g5_qa_content` WRITE; /*!40000 ALTER TABLE `g5_qa_content` DISABLE KEYS */; INSERT INTO `g5_qa_content` VALUES (1,-1,1,1,'test01','테스트01','test01@gnuboard.test','',0,'회원',0,0,1,'회원 가입에 대한 문의','

회원 가입에 대한 문의가 있습니다.


로고 사이즈등 어떻게 되나요?

',1,'2130706433_kT6bZ9gD_e1e7a5ad56cfcf4f330e4e755fa7f00046d75244.gif','ezgif.com-gif-maker.gif','2130706433_nR1bqgEP_520e7066fa523eca064e936ac7a06ac7f9880f9b.jpg','ezgif.com-gif-maker.jpg','127.0.0.1','2020-12-24 09:58:48','','','','',''),(2,-1,1,1,'admin','최고관리자','','',1,'회원',0,0,1,'답변입니다.','

정보수정에서 넣어주세요

',1,'','','','','127.0.0.1','2020-12-24 09:59:42','','','','',''); /*!40000 ALTER TABLE `g5_qa_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_scrap` -- DROP TABLE IF EXISTS `g5_scrap`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_scrap` ( `ms_id` int(11) NOT NULL AUTO_INCREMENT, `mb_id` varchar(20) NOT NULL DEFAULT '', `bo_table` varchar(20) NOT NULL DEFAULT '', `wr_id` varchar(15) NOT NULL DEFAULT '', `ms_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`ms_id`), KEY `mb_id` (`mb_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_scrap` -- LOCK TABLES `g5_scrap` WRITE; /*!40000 ALTER TABLE `g5_scrap` DISABLE KEYS */; INSERT INTO `g5_scrap` VALUES (1,'sundoforce','free','48','2020-12-24 09:55:26'),(2,'test01','free','58','2020-12-24 09:56:05'); /*!40000 ALTER TABLE `g5_scrap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_banner` -- DROP TABLE IF EXISTS `g5_shop_banner`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_banner` ( `bn_id` int(11) NOT NULL AUTO_INCREMENT, `bn_alt` varchar(255) NOT NULL DEFAULT '', `bn_url` varchar(255) NOT NULL DEFAULT '', `bn_device` varchar(10) NOT NULL DEFAULT '', `bn_position` varchar(255) NOT NULL DEFAULT '', `bn_border` tinyint(4) NOT NULL DEFAULT 0, `bn_new_win` tinyint(4) NOT NULL DEFAULT 0, `bn_begin_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `bn_end_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `bn_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `bn_hit` int(11) NOT NULL DEFAULT 0, `bn_order` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`bn_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_banner` -- LOCK TABLES `g5_shop_banner` WRITE; /*!40000 ALTER TABLE `g5_shop_banner` DISABLE KEYS */; INSERT INTO `g5_shop_banner` VALUES (1,'쇼핑몰 배너입니다.','http://www.sir.kr','both','왼쪽',0,0,'2020-12-24 00:00:00','2021-01-24 23:59:59','2020-12-24 10:51:58',0,50); /*!40000 ALTER TABLE `g5_shop_banner` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_cart` -- DROP TABLE IF EXISTS `g5_shop_cart`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_cart` ( `ct_id` int(11) NOT NULL AUTO_INCREMENT, `od_id` bigint(20) unsigned NOT NULL, `mb_id` varchar(255) NOT NULL DEFAULT '', `it_id` varchar(20) NOT NULL DEFAULT '', `it_name` varchar(255) NOT NULL DEFAULT '', `it_sc_type` tinyint(4) NOT NULL DEFAULT 0, `it_sc_method` tinyint(4) NOT NULL DEFAULT 0, `it_sc_price` int(11) NOT NULL DEFAULT 0, `it_sc_minimum` int(11) NOT NULL DEFAULT 0, `it_sc_qty` int(11) NOT NULL DEFAULT 0, `ct_status` varchar(255) NOT NULL DEFAULT '', `ct_history` text NOT NULL, `ct_price` int(11) NOT NULL DEFAULT 0, `ct_point` int(11) NOT NULL DEFAULT 0, `cp_price` int(11) NOT NULL DEFAULT 0, `ct_point_use` tinyint(4) NOT NULL DEFAULT 0, `ct_stock_use` tinyint(4) NOT NULL DEFAULT 0, `ct_option` varchar(255) NOT NULL DEFAULT '', `ct_qty` int(11) NOT NULL DEFAULT 0, `ct_notax` tinyint(4) NOT NULL DEFAULT 0, `io_id` varchar(255) NOT NULL DEFAULT '', `io_type` tinyint(4) NOT NULL DEFAULT 0, `io_price` int(11) NOT NULL DEFAULT 0, `ct_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ct_ip` varchar(25) NOT NULL DEFAULT '', `ct_send_cost` tinyint(4) NOT NULL DEFAULT 0, `ct_direct` tinyint(4) NOT NULL DEFAULT 0, `ct_select` tinyint(4) NOT NULL DEFAULT 0, `ct_select_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`ct_id`), KEY `od_id` (`od_id`), KEY `it_id` (`it_id`), KEY `ct_status` (`ct_status`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_cart` -- LOCK TABLES `g5_shop_cart` WRITE; /*!40000 ALTER TABLE `g5_shop_cart` DISABLE KEYS */; INSERT INTO `g5_shop_cart` VALUES (5,2020122410450822,'test01','Ws10','Karissa V-Neck Tee',0,0,0,0,0,'주문','',32000,0,0,0,0,'Size:S / Color:Red',1,0,'SRed',0,0,'2020-12-24 10:45:08','127.0.0.1',0,1,1,'2020-12-24 10:45:08'),(6,2020122410472731,'test02','MJ08','Lando Gym Jacket',0,0,0,0,0,'주문','',99000,0,0,0,0,'Size:L / Color:Blue',1,0,'LBlue',0,0,'2020-12-24 10:47:03','127.0.0.1',0,0,1,'2020-12-24 10:47:27'),(7,2020122410472731,'test02','MP11','Aether Gym Pant',0,0,0,0,0,'주문','',74000,0,0,0,0,'Size:34 / Color:Blue',1,0,'34Blue',0,0,'2020-12-24 10:47:25','127.0.0.1',0,0,1,'2020-12-24 10:47:27'); /*!40000 ALTER TABLE `g5_shop_cart` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_category` -- DROP TABLE IF EXISTS `g5_shop_category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_category` ( `ca_id` varchar(10) NOT NULL DEFAULT '0', `ca_name` varchar(255) NOT NULL DEFAULT '', `ca_order` int(11) NOT NULL DEFAULT 0, `ca_skin_dir` varchar(255) NOT NULL DEFAULT '', `ca_mobile_skin_dir` varchar(255) NOT NULL DEFAULT '', `ca_skin` varchar(255) NOT NULL DEFAULT '', `ca_mobile_skin` varchar(255) NOT NULL DEFAULT '', `ca_img_width` int(11) NOT NULL DEFAULT 0, `ca_img_height` int(11) NOT NULL DEFAULT 0, `ca_mobile_img_width` int(11) NOT NULL DEFAULT 0, `ca_mobile_img_height` int(11) NOT NULL DEFAULT 0, `ca_sell_email` varchar(255) NOT NULL DEFAULT '', `ca_use` tinyint(4) NOT NULL DEFAULT 0, `ca_stock_qty` int(11) NOT NULL DEFAULT 0, `ca_explan_html` tinyint(4) NOT NULL DEFAULT 0, `ca_head_html` text NOT NULL, `ca_tail_html` text NOT NULL, `ca_mobile_head_html` text NOT NULL, `ca_mobile_tail_html` text NOT NULL, `ca_list_mod` int(11) NOT NULL DEFAULT 0, `ca_list_row` int(11) NOT NULL DEFAULT 0, `ca_mobile_list_mod` int(11) NOT NULL DEFAULT 0, `ca_mobile_list_row` int(11) NOT NULL DEFAULT 0, `ca_include_head` varchar(255) NOT NULL DEFAULT '', `ca_include_tail` varchar(255) NOT NULL DEFAULT '', `ca_mb_id` varchar(255) NOT NULL DEFAULT '', `ca_cert_use` tinyint(4) NOT NULL DEFAULT 0, `ca_adult_use` tinyint(4) NOT NULL DEFAULT 0, `ca_nocoupon` tinyint(4) NOT NULL DEFAULT 0, `ca_1_subj` varchar(255) NOT NULL DEFAULT '', `ca_2_subj` varchar(255) NOT NULL DEFAULT '', `ca_3_subj` varchar(255) NOT NULL DEFAULT '', `ca_4_subj` varchar(255) NOT NULL DEFAULT '', `ca_5_subj` varchar(255) NOT NULL DEFAULT '', `ca_6_subj` varchar(255) NOT NULL DEFAULT '', `ca_7_subj` varchar(255) NOT NULL DEFAULT '', `ca_8_subj` varchar(255) NOT NULL DEFAULT '', `ca_9_subj` varchar(255) NOT NULL DEFAULT '', `ca_10_subj` varchar(255) NOT NULL DEFAULT '', `ca_1` varchar(255) NOT NULL DEFAULT '', `ca_2` varchar(255) NOT NULL DEFAULT '', `ca_3` varchar(255) NOT NULL DEFAULT '', `ca_4` varchar(255) NOT NULL DEFAULT '', `ca_5` varchar(255) NOT NULL DEFAULT '', `ca_6` varchar(255) NOT NULL DEFAULT '', `ca_7` varchar(255) NOT NULL DEFAULT '', `ca_8` varchar(255) NOT NULL DEFAULT '', `ca_9` varchar(255) NOT NULL DEFAULT '', `ca_10` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`ca_id`), KEY `ca_order` (`ca_order`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_category` -- LOCK TABLES `g5_shop_category` WRITE; /*!40000 ALTER TABLE `g5_shop_category` DISABLE KEYS */; INSERT INTO `g5_shop_category` VALUES ('10','Women',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('1010','Tops',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('101010','Jackets',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('101020','Hoodies & Sweatshirts',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('101030','Tees',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('101040','Bras & Tanks',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('1020','Bottoms',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('102010','Pants',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('102020','Shorts',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('20','Men',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('2010','Tops',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('201010','Jackets',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('201020','Hoodies & Sweatshirts',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('201030','Tees',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('201040','Tanks',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('2030','Bottoms',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('203010','Pants',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('203020','Shorts',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('30','Gear',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('3010','Bags',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('3020','Fitness Equipment',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''),('3030','Watches',0,'theme/basic','theme/basic','list.10.skin.php','list.10.skin.php',230,230,230,230,'',1,99999,1,'','','','',3,5,3,5,'','','',0,0,0,'','','','','','','','','','','','','','','','','','','',''); /*!40000 ALTER TABLE `g5_shop_category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_coupon` -- DROP TABLE IF EXISTS `g5_shop_coupon`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_coupon` ( `cp_no` int(11) NOT NULL AUTO_INCREMENT, `cp_id` varchar(100) NOT NULL DEFAULT '', `cp_subject` varchar(255) NOT NULL DEFAULT '', `cp_method` tinyint(4) NOT NULL DEFAULT 0, `cp_target` varchar(255) NOT NULL DEFAULT '', `mb_id` varchar(255) NOT NULL DEFAULT '', `cz_id` int(11) NOT NULL DEFAULT 0, `cp_start` date NOT NULL DEFAULT '0000-00-00', `cp_end` date NOT NULL DEFAULT '0000-00-00', `cp_price` int(11) NOT NULL DEFAULT 0, `cp_type` tinyint(4) NOT NULL DEFAULT 0, `cp_trunc` int(11) NOT NULL DEFAULT 0, `cp_minimum` int(11) NOT NULL DEFAULT 0, `cp_maximum` int(11) NOT NULL DEFAULT 0, `od_id` bigint(20) unsigned NOT NULL, `cp_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`cp_no`), UNIQUE KEY `cp_id` (`cp_id`), KEY `mb_id` (`mb_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_coupon` -- LOCK TABLES `g5_shop_coupon` WRITE; /*!40000 ALTER TABLE `g5_shop_coupon` DISABLE KEYS */; INSERT INTO `g5_shop_coupon` VALUES (1,'3MKN-RGK6-EF6H-U8Z1','크리스마스 할인',0,'MH09','sundoforce',0,'2020-12-24','2020-12-31',10000,0,1,100000,0,0,'2020-12-24 10:41:22'); /*!40000 ALTER TABLE `g5_shop_coupon` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_coupon_log` -- DROP TABLE IF EXISTS `g5_shop_coupon_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_coupon_log` ( `cl_id` int(11) NOT NULL AUTO_INCREMENT, `cp_id` varchar(100) NOT NULL DEFAULT '', `mb_id` varchar(100) NOT NULL DEFAULT '', `od_id` bigint(20) NOT NULL, `cp_price` int(11) NOT NULL DEFAULT 0, `cl_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`cl_id`), KEY `mb_id` (`mb_id`), KEY `od_id` (`od_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_coupon_log` -- LOCK TABLES `g5_shop_coupon_log` WRITE; /*!40000 ALTER TABLE `g5_shop_coupon_log` DISABLE KEYS */; /*!40000 ALTER TABLE `g5_shop_coupon_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_coupon_zone` -- DROP TABLE IF EXISTS `g5_shop_coupon_zone`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_coupon_zone` ( `cz_id` int(11) NOT NULL AUTO_INCREMENT, `cz_type` tinyint(4) NOT NULL DEFAULT 0, `cz_subject` varchar(255) NOT NULL DEFAULT '', `cz_start` date NOT NULL DEFAULT '0000-00-00', `cz_end` date NOT NULL DEFAULT '0000-00-00', `cz_file` varchar(255) NOT NULL DEFAULT '', `cz_period` int(11) NOT NULL DEFAULT 0, `cz_point` int(11) NOT NULL DEFAULT 0, `cp_method` tinyint(4) NOT NULL DEFAULT 0, `cp_target` varchar(255) NOT NULL DEFAULT '', `cp_price` int(11) NOT NULL DEFAULT 0, `cp_type` tinyint(4) NOT NULL DEFAULT 0, `cp_trunc` int(11) NOT NULL DEFAULT 0, `cp_minimum` int(11) NOT NULL DEFAULT 0, `cp_maximum` int(11) NOT NULL DEFAULT 0, `cz_download` int(11) NOT NULL DEFAULT 0, `cz_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`cz_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_coupon_zone` -- LOCK TABLES `g5_shop_coupon_zone` WRITE; /*!40000 ALTER TABLE `g5_shop_coupon_zone` DISABLE KEYS */; INSERT INTO `g5_shop_coupon_zone` VALUES (1,0,'다운로드 쿠폰','2020-12-24','2021-01-08','2020122410435716087742372632.png',15,0,0,'WH09',10000,0,1,100000,0,0,'2020-12-24 10:43:57'); /*!40000 ALTER TABLE `g5_shop_coupon_zone` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_default` -- DROP TABLE IF EXISTS `g5_shop_default`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_default` ( `de_admin_company_owner` varchar(255) NOT NULL DEFAULT '', `de_admin_company_name` varchar(255) NOT NULL DEFAULT '', `de_admin_company_saupja_no` varchar(255) NOT NULL DEFAULT '', `de_admin_company_tel` varchar(255) NOT NULL DEFAULT '', `de_admin_company_fax` varchar(255) NOT NULL DEFAULT '', `de_admin_tongsin_no` varchar(255) NOT NULL DEFAULT '', `de_admin_company_zip` varchar(255) NOT NULL DEFAULT '', `de_admin_company_addr` varchar(255) NOT NULL DEFAULT '', `de_admin_info_name` varchar(255) NOT NULL DEFAULT '', `de_admin_info_email` varchar(255) NOT NULL DEFAULT '', `de_shop_skin` varchar(255) NOT NULL DEFAULT '', `de_shop_mobile_skin` varchar(255) NOT NULL DEFAULT '', `de_type1_list_use` tinyint(4) NOT NULL DEFAULT 0, `de_type1_list_skin` varchar(255) NOT NULL DEFAULT '', `de_type1_list_mod` int(11) NOT NULL DEFAULT 0, `de_type1_list_row` int(11) NOT NULL DEFAULT 0, `de_type1_img_width` int(11) NOT NULL DEFAULT 0, `de_type1_img_height` int(11) NOT NULL DEFAULT 0, `de_type2_list_use` tinyint(4) NOT NULL DEFAULT 0, `de_type2_list_skin` varchar(255) NOT NULL DEFAULT '', `de_type2_list_mod` int(11) NOT NULL DEFAULT 0, `de_type2_list_row` int(11) NOT NULL DEFAULT 0, `de_type2_img_width` int(11) NOT NULL DEFAULT 0, `de_type2_img_height` int(11) NOT NULL DEFAULT 0, `de_type3_list_use` tinyint(4) NOT NULL DEFAULT 0, `de_type3_list_skin` varchar(255) NOT NULL DEFAULT '', `de_type3_list_mod` int(11) NOT NULL DEFAULT 0, `de_type3_list_row` int(11) NOT NULL DEFAULT 0, `de_type3_img_width` int(11) NOT NULL DEFAULT 0, `de_type3_img_height` int(11) NOT NULL DEFAULT 0, `de_type4_list_use` tinyint(4) NOT NULL DEFAULT 0, `de_type4_list_skin` varchar(255) NOT NULL DEFAULT '', `de_type4_list_mod` int(11) NOT NULL DEFAULT 0, `de_type4_list_row` int(11) NOT NULL DEFAULT 0, `de_type4_img_width` int(11) NOT NULL DEFAULT 0, `de_type4_img_height` int(11) NOT NULL DEFAULT 0, `de_type5_list_use` tinyint(4) NOT NULL DEFAULT 0, `de_type5_list_skin` varchar(255) NOT NULL DEFAULT '', `de_type5_list_mod` int(11) NOT NULL DEFAULT 0, `de_type5_list_row` int(11) NOT NULL DEFAULT 0, `de_type5_img_width` int(11) NOT NULL DEFAULT 0, `de_type5_img_height` int(11) NOT NULL DEFAULT 0, `de_mobile_type1_list_use` tinyint(4) NOT NULL DEFAULT 0, `de_mobile_type1_list_skin` varchar(255) NOT NULL DEFAULT '', `de_mobile_type1_list_mod` int(11) NOT NULL DEFAULT 0, `de_mobile_type1_list_row` int(11) NOT NULL DEFAULT 0, `de_mobile_type1_img_width` int(11) NOT NULL DEFAULT 0, `de_mobile_type1_img_height` int(11) NOT NULL DEFAULT 0, `de_mobile_type2_list_use` tinyint(4) NOT NULL DEFAULT 0, `de_mobile_type2_list_skin` varchar(255) NOT NULL DEFAULT '', `de_mobile_type2_list_mod` int(11) NOT NULL DEFAULT 0, `de_mobile_type2_list_row` int(11) NOT NULL DEFAULT 0, `de_mobile_type2_img_width` int(11) NOT NULL DEFAULT 0, `de_mobile_type2_img_height` int(11) NOT NULL DEFAULT 0, `de_mobile_type3_list_use` tinyint(4) NOT NULL DEFAULT 0, `de_mobile_type3_list_skin` varchar(255) NOT NULL DEFAULT '', `de_mobile_type3_list_mod` int(11) NOT NULL DEFAULT 0, `de_mobile_type3_list_row` int(11) NOT NULL DEFAULT 0, `de_mobile_type3_img_width` int(11) NOT NULL DEFAULT 0, `de_mobile_type3_img_height` int(11) NOT NULL DEFAULT 0, `de_mobile_type4_list_use` tinyint(4) NOT NULL DEFAULT 0, `de_mobile_type4_list_skin` varchar(255) NOT NULL DEFAULT '', `de_mobile_type4_list_mod` int(11) NOT NULL DEFAULT 0, `de_mobile_type4_list_row` int(11) NOT NULL DEFAULT 0, `de_mobile_type4_img_width` int(11) NOT NULL DEFAULT 0, `de_mobile_type4_img_height` int(11) NOT NULL DEFAULT 0, `de_mobile_type5_list_use` tinyint(4) NOT NULL DEFAULT 0, `de_mobile_type5_list_skin` varchar(255) NOT NULL DEFAULT '', `de_mobile_type5_list_mod` int(11) NOT NULL DEFAULT 0, `de_mobile_type5_list_row` int(11) NOT NULL DEFAULT 0, `de_mobile_type5_img_width` int(11) NOT NULL DEFAULT 0, `de_mobile_type5_img_height` int(11) NOT NULL DEFAULT 0, `de_rel_list_use` tinyint(4) NOT NULL DEFAULT 0, `de_rel_list_skin` varchar(255) NOT NULL DEFAULT '', `de_rel_list_mod` int(11) NOT NULL DEFAULT 0, `de_rel_img_width` int(11) NOT NULL DEFAULT 0, `de_rel_img_height` int(11) NOT NULL DEFAULT 0, `de_mobile_rel_list_use` tinyint(4) NOT NULL DEFAULT 0, `de_mobile_rel_list_skin` varchar(255) NOT NULL DEFAULT '', `de_mobile_rel_list_mod` int(11) NOT NULL DEFAULT 0, `de_mobile_rel_img_width` int(11) NOT NULL DEFAULT 0, `de_mobile_rel_img_height` int(11) NOT NULL DEFAULT 0, `de_search_list_skin` varchar(255) NOT NULL DEFAULT '', `de_search_list_mod` int(11) NOT NULL DEFAULT 0, `de_search_list_row` int(11) NOT NULL DEFAULT 0, `de_search_img_width` int(11) NOT NULL DEFAULT 0, `de_search_img_height` int(11) NOT NULL DEFAULT 0, `de_mobile_search_list_skin` varchar(255) NOT NULL DEFAULT '', `de_mobile_search_list_mod` int(11) NOT NULL DEFAULT 0, `de_mobile_search_list_row` int(11) NOT NULL DEFAULT 0, `de_mobile_search_img_width` int(11) NOT NULL DEFAULT 0, `de_mobile_search_img_height` int(11) NOT NULL DEFAULT 0, `de_listtype_list_skin` varchar(255) NOT NULL DEFAULT '', `de_listtype_list_mod` int(11) NOT NULL DEFAULT 0, `de_listtype_list_row` int(11) NOT NULL DEFAULT 0, `de_listtype_img_width` int(11) NOT NULL DEFAULT 0, `de_listtype_img_height` int(11) NOT NULL DEFAULT 0, `de_mobile_listtype_list_skin` varchar(255) NOT NULL DEFAULT '', `de_mobile_listtype_list_mod` int(11) NOT NULL DEFAULT 0, `de_mobile_listtype_list_row` int(11) NOT NULL DEFAULT 0, `de_mobile_listtype_img_width` int(11) NOT NULL DEFAULT 0, `de_mobile_listtype_img_height` int(11) NOT NULL DEFAULT 0, `de_bank_use` int(11) NOT NULL DEFAULT 0, `de_bank_account` text NOT NULL, `de_card_test` int(11) NOT NULL DEFAULT 0, `de_card_use` int(11) NOT NULL DEFAULT 0, `de_card_noint_use` tinyint(4) NOT NULL DEFAULT 0, `de_card_point` int(11) NOT NULL DEFAULT 0, `de_settle_min_point` int(11) NOT NULL DEFAULT 0, `de_settle_max_point` int(11) NOT NULL DEFAULT 0, `de_settle_point_unit` int(11) NOT NULL DEFAULT 0, `de_level_sell` int(11) NOT NULL DEFAULT 0, `de_delivery_company` varchar(255) NOT NULL DEFAULT '', `de_send_cost_case` varchar(255) NOT NULL DEFAULT '', `de_send_cost_limit` varchar(255) NOT NULL DEFAULT '', `de_send_cost_list` varchar(255) NOT NULL DEFAULT '', `de_hope_date_use` int(11) NOT NULL DEFAULT 0, `de_hope_date_after` int(11) NOT NULL DEFAULT 0, `de_baesong_content` text NOT NULL, `de_change_content` text NOT NULL, `de_point_days` int(11) NOT NULL DEFAULT 0, `de_simg_width` int(11) NOT NULL DEFAULT 0, `de_simg_height` int(11) NOT NULL DEFAULT 0, `de_mimg_width` int(11) NOT NULL DEFAULT 0, `de_mimg_height` int(11) NOT NULL DEFAULT 0, `de_sms_cont1` text NOT NULL, `de_sms_cont2` text NOT NULL, `de_sms_cont3` text NOT NULL, `de_sms_cont4` text NOT NULL, `de_sms_cont5` text NOT NULL, `de_sms_use1` tinyint(4) NOT NULL DEFAULT 0, `de_sms_use2` tinyint(4) NOT NULL DEFAULT 0, `de_sms_use3` tinyint(4) NOT NULL DEFAULT 0, `de_sms_use4` tinyint(4) NOT NULL DEFAULT 0, `de_sms_use5` tinyint(4) NOT NULL DEFAULT 0, `de_sms_hp` varchar(255) NOT NULL DEFAULT '', `de_pg_service` varchar(255) NOT NULL DEFAULT '', `de_kcp_mid` varchar(255) NOT NULL DEFAULT '', `de_kcp_site_key` varchar(255) NOT NULL DEFAULT '', `de_inicis_mid` varchar(255) NOT NULL DEFAULT '', `de_inicis_admin_key` varchar(255) NOT NULL DEFAULT '', `de_inicis_sign_key` varchar(255) NOT NULL DEFAULT '', `de_iche_use` tinyint(4) NOT NULL DEFAULT 0, `de_easy_pay_use` tinyint(4) NOT NULL DEFAULT 0, `de_easy_pay_services` varchar(255) NOT NULL DEFAULT '', `de_samsung_pay_use` tinyint(4) NOT NULL DEFAULT 0, `de_inicis_lpay_use` tinyint(4) NOT NULL DEFAULT 0, `de_inicis_kakaopay_use` tinyint(4) NOT NULL DEFAULT 0, `de_inicis_cartpoint_use` tinyint(4) NOT NULL DEFAULT 0, `de_item_use_use` tinyint(4) NOT NULL DEFAULT 0, `de_item_use_write` tinyint(4) NOT NULL DEFAULT 0, `de_code_dup_use` tinyint(4) NOT NULL DEFAULT 0, `de_cart_keep_term` int(11) NOT NULL DEFAULT 0, `de_guest_cart_use` tinyint(4) NOT NULL DEFAULT 0, `de_admin_buga_no` varchar(255) NOT NULL DEFAULT '', `de_vbank_use` varchar(255) NOT NULL DEFAULT '', `de_taxsave_use` tinyint(4) NOT NULL, `de_taxsave_types` set('account','vbank','transfer') NOT NULL DEFAULT 'account', `de_guest_privacy` text NOT NULL, `de_hp_use` tinyint(4) NOT NULL DEFAULT 0, `de_escrow_use` tinyint(4) NOT NULL DEFAULT 0, `de_tax_flag_use` tinyint(4) NOT NULL DEFAULT 0, `de_kakaopay_mid` varchar(255) NOT NULL DEFAULT '', `de_kakaopay_key` varchar(255) NOT NULL DEFAULT '', `de_kakaopay_enckey` varchar(255) NOT NULL DEFAULT '', `de_kakaopay_hashkey` varchar(255) NOT NULL DEFAULT '', `de_kakaopay_cancelpwd` varchar(255) NOT NULL DEFAULT '', `de_naverpay_mid` varchar(255) NOT NULL DEFAULT '', `de_naverpay_cert_key` varchar(255) NOT NULL DEFAULT '', `de_naverpay_button_key` varchar(255) NOT NULL DEFAULT '', `de_naverpay_test` tinyint(4) NOT NULL DEFAULT 0, `de_naverpay_mb_id` varchar(255) NOT NULL DEFAULT '', `de_naverpay_sendcost` varchar(255) NOT NULL DEFAULT '', `de_member_reg_coupon_use` tinyint(4) NOT NULL DEFAULT 0, `de_member_reg_coupon_term` int(11) NOT NULL DEFAULT 0, `de_member_reg_coupon_price` int(11) NOT NULL DEFAULT 0, `de_member_reg_coupon_minimum` int(11) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_default` -- LOCK TABLES `g5_shop_default` WRITE; /*!40000 ALTER TABLE `g5_shop_default` DISABLE KEYS */; INSERT INTO `g5_shop_default` VALUES ('대표자명','회사명','123-45-67890','02-123-4567','02-123-4568','제 OO구 - 123호','123-456','OO도 OO시 OO구 OO동 123-45','정보책임자명','정보책임자 E-mail','basic','basic',1,'main.10.skin.php',5,1,160,160,1,'main.20.skin.php',4,1,215,215,1,'main.40.skin.php',4,1,215,215,1,'main.50.skin.php',5,1,215,215,1,'main.30.skin.php',4,1,215,215,1,'main.30.skin.php',2,4,230,230,1,'main.10.skin.php',2,2,230,230,1,'main.10.skin.php',2,4,300,300,1,'main.20.skin.php',2,2,80,80,1,'main.10.skin.php',2,2,230,230,1,'relation.10.skin.php',5,215,215,1,'relation.10.skin.php',3,230,230,'list.10.skin.php',5,5,225,225,'list.10.skin.php',2,5,230,230,'list.10.skin.php',5,5,225,225,'list.10.skin.php',2,5,230,230,1,'OO은행 12345-67-89012 예금주명',1,0,0,0,5000,50000,100,1,'','차등','20000;30000;40000','4000;3000;2000',0,3,'배송 안내 입력전입니다.','교환/반품 안내 입력전입니다.',7,230,230,300,300,'{이름}님의 회원가입을 축하드립니다.\nID:{회원아이디}\n{회사명}','{이름}님 주문해주셔서 고맙습니다.\n{주문번호}\n{주문금액}원\n{회사명}','{이름}님께서 주문하셨습니다.\n{주문번호}\n{주문금액}원\n{회사명}','{이름}님 입금 감사합니다.\n{입금액}원\n주문번호:\n{주문번호}\n{회사명}','{이름}님 배송합니다.\n택배:{택배회사}\n운송장번호:\n{운송장번호}\n{회사명}',0,0,0,0,0,'','kcp','','','','','',0,0,'',0,0,0,0,1,0,1,15,0,'12345호','0',0,'account','',0,0,0,'','','','','','','','',0,'','',0,0,0,0); /*!40000 ALTER TABLE `g5_shop_default` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_event` -- DROP TABLE IF EXISTS `g5_shop_event`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_event` ( `ev_id` int(11) NOT NULL AUTO_INCREMENT, `ev_skin` varchar(255) NOT NULL DEFAULT '', `ev_mobile_skin` varchar(255) NOT NULL DEFAULT '', `ev_img_width` int(11) NOT NULL DEFAULT 0, `ev_img_height` int(11) NOT NULL DEFAULT 0, `ev_list_mod` int(11) NOT NULL DEFAULT 0, `ev_list_row` int(11) NOT NULL DEFAULT 0, `ev_mobile_img_width` int(11) NOT NULL DEFAULT 0, `ev_mobile_img_height` int(11) NOT NULL DEFAULT 0, `ev_mobile_list_mod` int(11) NOT NULL DEFAULT 0, `ev_mobile_list_row` int(11) NOT NULL DEFAULT 0, `ev_subject` varchar(255) NOT NULL DEFAULT '', `ev_subject_strong` tinyint(4) NOT NULL DEFAULT 0, `ev_head_html` text NOT NULL, `ev_tail_html` text NOT NULL, `ev_use` tinyint(4) NOT NULL DEFAULT 0, PRIMARY KEY (`ev_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1608686275 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_event` -- LOCK TABLES `g5_shop_event` WRITE; /*!40000 ALTER TABLE `g5_shop_event` DISABLE KEYS */; INSERT INTO `g5_shop_event` VALUES (1608686274,'list.10.skin.php','list.10.skin.php',230,230,3,5,230,230,3,5,'이벤트 테스트',1,'','',1); /*!40000 ALTER TABLE `g5_shop_event` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_event_item` -- DROP TABLE IF EXISTS `g5_shop_event_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_event_item` ( `ev_id` int(11) NOT NULL DEFAULT 0, `it_id` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`ev_id`,`it_id`), KEY `it_id` (`it_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_event_item` -- LOCK TABLES `g5_shop_event_item` WRITE; /*!40000 ALTER TABLE `g5_shop_event_item` DISABLE KEYS */; INSERT INTO `g5_shop_event_item` VALUES (1608686274,'WJ03'),(1608686274,'WJ06'); /*!40000 ALTER TABLE `g5_shop_event_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_inicis_log` -- DROP TABLE IF EXISTS `g5_shop_inicis_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_inicis_log` ( `oid` bigint(20) unsigned NOT NULL, `P_TID` varchar(255) NOT NULL DEFAULT '', `P_MID` varchar(255) NOT NULL DEFAULT '', `P_AUTH_DT` varchar(255) NOT NULL DEFAULT '', `P_STATUS` varchar(255) NOT NULL DEFAULT '', `P_TYPE` varchar(255) NOT NULL DEFAULT '', `P_OID` varchar(255) NOT NULL DEFAULT '', `P_FN_NM` varchar(255) NOT NULL DEFAULT '', `P_AUTH_NO` varchar(255) NOT NULL DEFAULT '', `P_AMT` int(11) NOT NULL DEFAULT 0, `P_RMESG1` varchar(255) NOT NULL DEFAULT '', `post_data` text NOT NULL, `is_mail_send` tinyint(4) NOT NULL DEFAULT 1, PRIMARY KEY (`oid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_inicis_log` -- LOCK TABLES `g5_shop_inicis_log` WRITE; /*!40000 ALTER TABLE `g5_shop_inicis_log` DISABLE KEYS */; /*!40000 ALTER TABLE `g5_shop_inicis_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_item` -- DROP TABLE IF EXISTS `g5_shop_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_item` ( `it_id` varchar(20) NOT NULL DEFAULT '', `ca_id` varchar(10) NOT NULL DEFAULT '0', `ca_id2` varchar(255) NOT NULL DEFAULT '', `ca_id3` varchar(255) NOT NULL DEFAULT '', `it_skin` varchar(255) NOT NULL DEFAULT '', `it_mobile_skin` varchar(255) NOT NULL DEFAULT '', `it_name` varchar(255) NOT NULL DEFAULT '', `it_seo_title` varchar(200) NOT NULL DEFAULT '', `it_maker` varchar(255) NOT NULL DEFAULT '', `it_origin` varchar(255) NOT NULL DEFAULT '', `it_brand` varchar(255) NOT NULL DEFAULT '', `it_model` varchar(255) NOT NULL DEFAULT '', `it_option_subject` varchar(255) NOT NULL DEFAULT '', `it_supply_subject` varchar(255) NOT NULL DEFAULT '', `it_type1` tinyint(4) NOT NULL DEFAULT 0, `it_type2` tinyint(4) NOT NULL DEFAULT 0, `it_type3` tinyint(4) NOT NULL DEFAULT 0, `it_type4` tinyint(4) NOT NULL DEFAULT 0, `it_type5` tinyint(4) NOT NULL DEFAULT 0, `it_basic` text NOT NULL, `it_explan` mediumtext NOT NULL, `it_explan2` mediumtext NOT NULL, `it_mobile_explan` mediumtext NOT NULL, `it_cust_price` int(11) NOT NULL DEFAULT 0, `it_price` int(11) NOT NULL DEFAULT 0, `it_point` int(11) NOT NULL DEFAULT 0, `it_point_type` tinyint(4) NOT NULL DEFAULT 0, `it_supply_point` int(11) NOT NULL DEFAULT 0, `it_notax` tinyint(4) NOT NULL DEFAULT 0, `it_sell_email` varchar(255) NOT NULL DEFAULT '', `it_use` tinyint(4) NOT NULL DEFAULT 0, `it_nocoupon` tinyint(4) NOT NULL DEFAULT 0, `it_soldout` tinyint(4) NOT NULL DEFAULT 0, `it_stock_qty` int(11) NOT NULL DEFAULT 0, `it_stock_sms` tinyint(4) NOT NULL DEFAULT 0, `it_noti_qty` int(11) NOT NULL DEFAULT 0, `it_sc_type` tinyint(4) NOT NULL DEFAULT 0, `it_sc_method` tinyint(4) NOT NULL DEFAULT 0, `it_sc_price` int(11) NOT NULL DEFAULT 0, `it_sc_minimum` int(11) NOT NULL DEFAULT 0, `it_sc_qty` int(11) NOT NULL DEFAULT 0, `it_buy_min_qty` int(11) NOT NULL DEFAULT 0, `it_buy_max_qty` int(11) NOT NULL DEFAULT 0, `it_head_html` text NOT NULL, `it_tail_html` text NOT NULL, `it_mobile_head_html` text NOT NULL, `it_mobile_tail_html` text NOT NULL, `it_hit` int(11) NOT NULL DEFAULT 0, `it_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `it_update_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `it_ip` varchar(25) NOT NULL DEFAULT '', `it_order` int(11) NOT NULL DEFAULT 0, `it_tel_inq` tinyint(4) NOT NULL DEFAULT 0, `it_info_gubun` varchar(50) NOT NULL DEFAULT '', `it_info_value` text NOT NULL, `it_sum_qty` int(11) NOT NULL DEFAULT 0, `it_use_cnt` int(11) NOT NULL DEFAULT 0, `it_use_avg` decimal(2,1) NOT NULL, `it_shop_memo` text NOT NULL, `ec_mall_pid` varchar(255) NOT NULL DEFAULT '', `it_img1` varchar(255) NOT NULL DEFAULT '', `it_img2` varchar(255) NOT NULL DEFAULT '', `it_img3` varchar(255) NOT NULL DEFAULT '', `it_img4` varchar(255) NOT NULL DEFAULT '', `it_img5` varchar(255) NOT NULL DEFAULT '', `it_img6` varchar(255) NOT NULL DEFAULT '', `it_img7` varchar(255) NOT NULL DEFAULT '', `it_img8` varchar(255) NOT NULL DEFAULT '', `it_img9` varchar(255) NOT NULL DEFAULT '', `it_img10` varchar(255) NOT NULL DEFAULT '', `it_1_subj` varchar(255) NOT NULL DEFAULT '', `it_2_subj` varchar(255) NOT NULL DEFAULT '', `it_3_subj` varchar(255) NOT NULL DEFAULT '', `it_4_subj` varchar(255) NOT NULL DEFAULT '', `it_5_subj` varchar(255) NOT NULL DEFAULT '', `it_6_subj` varchar(255) NOT NULL DEFAULT '', `it_7_subj` varchar(255) NOT NULL DEFAULT '', `it_8_subj` varchar(255) NOT NULL DEFAULT '', `it_9_subj` varchar(255) NOT NULL DEFAULT '', `it_10_subj` varchar(255) NOT NULL DEFAULT '', `it_1` varchar(255) NOT NULL DEFAULT '', `it_2` varchar(255) NOT NULL DEFAULT '', `it_3` varchar(255) NOT NULL DEFAULT '', `it_4` varchar(255) NOT NULL DEFAULT '', `it_5` varchar(255) NOT NULL DEFAULT '', `it_6` varchar(255) NOT NULL DEFAULT '', `it_7` varchar(255) NOT NULL DEFAULT '', `it_8` varchar(255) NOT NULL DEFAULT '', `it_9` varchar(255) NOT NULL DEFAULT '', `it_10` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`it_id`), KEY `ca_id` (`ca_id`), KEY `it_name` (`it_name`), KEY `it_seo_title` (`it_seo_title`), KEY `it_order` (`it_order`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_item` -- LOCK TABLES `g5_shop_item` WRITE; /*!40000 ALTER TABLE `g5_shop_item` DISABLE KEYS */; INSERT INTO `g5_shop_item` VALUES ('24-MB01','3010','','','','','Joust Duffle Bag','joust-duffle-bag','','','','','','',0,0,0,0,0,'','

The sporty Joust Duffle Bag can\'t be beat - not in the gym, not on the luggage carousel, not anywhere. Big enough to haul a basketball or soccer ball and some sneakers with plenty of room to spare, it\'s ideal for athletes with places to go.


','The sporty Joust Duffle Bag can\'t be beat - not in the gym, not on the luggage carousel, not anywhere. Big enough to haul a basketball or soccer ball and some sneakers with plenty of room to spare, it\'s ideal for athletes with places to go.Dual top handles.Adjustable shoulder strap.Full-length zipper.L 29\" x W 13\" x H 11\".','',0,34000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 21:49:48','2020-12-22 21:49:48','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-MB01/mb01blue0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-MB02','3010','','','','','Fusion Backpack','fusion-backpack','','','','','','',0,0,0,0,0,'','

With the Fusion Backpack strapped on, every trek is an adventure - even a bus ride to work. That\'s partly because two large zippered compartments store everything you need, while a front zippered pocket and side mesh pouches are perfect for stashing those little extras, in case you change your mind and take the day off.

More Information
ActivityYoga, Hiking, School
StyleBackpack, Laptop
MaterialBurlap, Nylon, Polyester
Strap/HandleAdjustable, Double, Padded
FeaturesHydration Pocket, Audio Pocket, Waterproof, Lightweight
','With the Fusion Backpack strapped on, every trek is an adventure - even a bus ride to work. That\'s partly because two large zippered compartments store everything you need, while a front zippered pocket and side mesh pouches are perfect for stashing those little extras, in case you change your mind and take the day off.Durable nylon construction.2 main zippered compartments.1 exterior zippered pocket.Mesh side pouches.Padded, adjustable straps.Top carry handle.Dimensions: 18\" x 10\" x 6\".More InformationActivityYoga, Hiking, SchoolStyleBackpack, LaptopMaterialBurlap, Nylon, PolyesterStrap/HandleAdjustable, Double, PaddedFeaturesHydration Pocket, Audio Pocket, Waterproof, Lightweight','',0,59000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 21:43:32','2020-12-22 21:43:32','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-MB02/mb02gray0.jpg','24-MB02/mb02blue0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-MB03','3010','','','','','Crown Summit Backpack','crown-summit-backpack','','','','','','',0,0,0,0,0,'','

The Crown Summit Backpack is equally at home in a gym locker, study cube or a pup tent, so be sure yours is packed with books, a bag lunch, water bottles, yoga block, laptop, or whatever else you want in hand. Rugged enough for day hikes and camping trips, it has two large zippered compartments and padded, adjustable shoulder straps.

More Information
ActivityGym, Hiking, Overnight, School, Trail, Travel, Urban
StyleBackpack
MaterialNylon, Polyester
Strap/HandleAdjustable, Double, Padded
FeaturesAudio Pocket, Waterproof, Lightweight, Reflective, Laptop Sleeve
','The Crown Summit Backpack is equally at home in a gym locker, study cube or a pup tent, so be sure yours is packed with books, a bag lunch, water bottles, yoga block, laptop, or whatever else you want in hand. Rugged enough for day hikes and camping trips, it has two large zippered compartments and padded, adjustable shoulder straps.Top handle.Grommet holes.Two-way zippers.H 20\" x W 14\" x D 12\".Weight: 2 lbs, 8 oz. Volume: 29 L.More InformationActivityGym, Hiking, Overnight, School, Trail, Travel, UrbanStyleBackpackMaterialNylon, PolyesterStrap/HandleAdjustable, Double, PaddedFeaturesAudio Pocket, Waterproof, Lightweight, Reflective, Laptop Sleeve','',0,38000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 21:47:24','2020-12-22 21:47:24','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-MB03/mb03black0.jpg','24-MB03/mb03black0_alt1.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-MB04','3010','','','','','Strive Shoulder Pack','strive-shoulder-pack','','','','','','',0,1,0,0,0,'','

Convenience is next to nothing when your day is crammed with action. So whether you\'re heading to class, gym, or the unbeaten path, make sure you\'ve got your Strive Shoulder Pack stuffed with all your essentials, and extras as well.

More Information
ActivityGym, Hiking, Trail, Urban
StyleMessenger, Exercise, Tote
MaterialCanvas, Cotton, Mesh, Polyester
Strap/HandleAdjustable, Cross Body, Padded, Shoulder, Single
FeaturesAudio Pocket, Waterproof, Lightweight, Laptop Sleeve
','Convenience is next to nothing when your day is crammed with action. So whether you\'re heading to class, gym, or the unbeaten path, make sure you\'ve got your Strive Shoulder Pack stuffed with all your essentials, and extras as well.Zippered main compartment.Front zippered pocket.Side mesh pocket.Cell phone pocket on strap.Adjustable shoulder strap and top carry handle.More InformationActivityGym, Hiking, Trail, UrbanStyleMessenger, Exercise, ToteMaterialCanvas, Cotton, Mesh, PolyesterStrap/HandleAdjustable, Cross Body, Padded, Shoulder, SingleFeaturesAudio Pocket, Waterproof, Lightweight, Laptop Sleeve','',0,32000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-22 21:48:29','2020-12-22 23:41:40','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-MB04/mb04black0.jpg','24-MB04/mb04black0_alt1.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-MB05','3010','','','','','Wayfarer Messenger Bag','wayfarer-messenger-bag','','','','','','',0,0,0,0,0,'','

Perfect for class, work or the gym, the Wayfarer Messenger Bag is packed with pockets. The dual-buckle flap closure reveals an organizational panel, and the roomy main compartment has spaces for your laptop and a change of clothes. An adjustable shoulder strap and easy-grip handle promise easy carrying.

More Information
ActivityGym, Overnight, Travel
StyleMessenger, Laptop
MaterialNylon, Polyester
Strap/HandleAdjustable, Detachable, Double, Padded, Shoulder
FeaturesWaterproof, Lightweight, Reflective, Laptop Sleeve, Lockable
','Perfect for class, work or the gym, the Wayfarer Messenger Bag is packed with pockets. The dual-buckle flap closure reveals an organizational panel, and the roomy main compartment has spaces for your laptop and a change of clothes. An adjustable shoulder strap and easy-grip handle promise easy carrying.Multiple internal zip pockets.Made of durable nylon.More InformationActivityGym, Overnight, TravelStyleMessenger, LaptopMaterialNylon, PolyesterStrap/HandleAdjustable, Detachable, Double, Padded, ShoulderFeaturesWaterproof, Lightweight, Reflective, Laptop Sleeve, Lockable','',0,45000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 21:46:07','2020-12-22 21:46:07','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-MB05/mb05black0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-MB06','3010','','','','','Rival Field Messenger','rival-field-messenger','','','','','','',0,0,0,0,0,'','

The Rival Field Messenger packs all your campus, studio or trail essentials inside a unique design of soft, textured leather - with loads of character to spare. Two exterior pockets keep all your smaller items handy, and the roomy interior offers even more space.

More Information
ActivityTravel, Urban
StyleMessenger, Laptop, Exercise
MaterialLeather, Nylon, Suede
Strap/HandleAdjustable, Cross Body, Shoulder, Single
FeaturesFlapover, Lightweight, Laptop Sleeve
','The Rival Field Messenger packs all your campus, studio or trail essentials inside a unique design of soft, textured leather - with loads of character to spare. Two exterior pockets keep all your smaller items handy, and the roomy interior offers even more space.Leather construction.Adjustable fabric carry strap.Dimensions: 18\" x 10\" x 4\".More InformationActivityTravel, UrbanStyleMessenger, Laptop, ExerciseMaterialLeather, Nylon, SuedeStrap/HandleAdjustable, Cross Body, Shoulder, SingleFeaturesFlapover, Lightweight, Laptop Sleeve','',0,45000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 21:44:57','2020-12-22 21:44:57','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-MB06/mb06gray0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-MG01','3030','','','','','Endurance Watch','endurance-watch','','','','','','',0,0,0,0,0,'','

It\'s easy to track and monitor your training progress with the Endurance Watch. You\'ll see standard info like time, date and day of the week, but it also functions for the serious high-mileage athete: lap counter, stopwatch, distance, heart rate, speed/pace, cadence and altitude.

More Information
ActivityRecreation, Athletic
MaterialMetal, Rubber, Silicone
GenderMen
CategoryElectronic, Exercise, Timepiece
','It\'s easy to track and monitor your training progress with the Endurance Watch. You\'ll see standard info like time, date and day of the week, but it also functions for the serious high-mileage athete: lap counter, stopwatch, distance, heart rate, speed/pace, cadence and altitude.Digital display.LED backlight.Strap fits 7\" to 10\".1-year limited warranty.Comes with polished metal case.More InformationActivityRecreation, AthleticMaterialMetal, Rubber, SiliconeGenderMenCategoryElectronic, Exercise, Timepiece','',0,49000,0,0,0,0,'',1,0,1,0,1,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-22 22:26:41','2020-12-24 11:11:10','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-MG01/mg01bk0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-MG02','3030','','','','','Dash Digital Watch','dash-digital-watch','','','','','','',0,0,0,0,0,'','

The Dash Digital Watch will challenge you to push harder and longer. Log workouts by date, average, and segment times, and recharge by setting hydration and nutrition alarms. This watch is styled with a sleek, square face and durable rubber strap for a long life.

More Information
ActivityOutdoor, Gym, Athletic, Sports
MaterialRubber
GenderMen
CategoryElectronic, Exercise, Timepiece
','The Dash Digital Watch will challenge you to push harder and longer. Log workouts by date, average, and segment times, and recharge by setting hydration and nutrition alarms. This watch is styled with a sleek, square face and durable rubber strap for a long life.Digital display.LED backlight.Rubber strap with buckle clasp.1-year limited warranty.More InformationActivityOutdoor, Gym, Athletic, SportsMaterialRubberGenderMenCategoryElectronic, Exercise, Timepiece','',0,92000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 22:23:11','2020-12-22 22:23:11','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-MG02/mg02bk0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-MG03','3030','','','','','Summit Watch','summit-watch','','','','','','',0,0,0,0,0,'','

Trek high and low in the attractive Summit Watch, which features a digital LED display with time and date, stopwatch, lap counter, and 3-second backlight. It can also calculate the number of steps taken and calories burned.

More Information
ActivityOutdoor, Recreation, Gym, Athletic, Sports
MaterialMetal, Plastic, Silicone
GenderMen, Women, Unisex
CategoryElectronic, Exercise, Timepiece
','Trek high and low in the attractive Summit Watch, which features a digital LED display with time and date, stopwatch, lap counter, and 3-second backlight. It can also calculate the number of steps taken and calories burned.Brushed metal case.Water resistant (100 meters).Buckle clasp.Strap fits 7\" - 10\".1-year limited warranty.More InformationActivityOutdoor, Recreation, Gym, Athletic, SportsMaterialMetal, Plastic, SiliconeGenderMen, Women, UnisexCategoryElectronic, Exercise, Timepiece','',0,54000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 22:25:39','2020-12-22 22:25:39','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-MG03/mg03br0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-MG04','3030','','','','','Aim Analog Watch','aim-analog-watch','','','','','','',0,0,0,0,0,'','

Stay light-years ahead of the competition with our Aim Analog Watch. The flexible, rubberized strap is contoured to conform to the shape of your wrist for a comfortable all-day fit. The face features three illuminated hands, a digital read-out of the current time, and stopwatch functions.

More Information
ActivityOutdoor, Recreation, Gym, Sports
MaterialPlastic, Rubber
GenderMen
CategoryElectronic, Exercise, Timepiece
','Stay light-years ahead of the competition with our Aim Analog Watch. The flexible, rubberized strap is contoured to conform to the shape of your wrist for a comfortable all-day fit. The face features three illuminated hands, a digital read-out of the current time, and stopwatch functions.Japanese quartz movement.Strap fits 7\" to 8.0\".More InformationActivityOutdoor, Recreation, Gym, SportsMaterialPlastic, RubberGenderMenCategoryElectronic, Exercise, Timepiece','',0,45000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 22:27:44','2020-12-22 22:27:44','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-MG04/mg04bk0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-MG05','3030','','','','','Cruise Dual Analog Watch','cruise-dual-analog-watch','','','','','','',0,0,0,0,0,'','

Whether you\'re traveling or wish you were, you\'ll never let time zones perplex you again with the Cruise Dual Analog Watch. The thick, adjustable band promises a comfortable, personalized fit to this classy, modern time piece.

More Information
ActivityRecreation
MaterialLeather, Plastic
GenderMen
CategoryElectronic, Fashion, Timepiece
','Whether you\'re traveling or wish you were, you\'ll never let time zones perplex you again with the Cruise Dual Analog Watch. The thick, adjustable band promises a comfortable, personalized fit to this classy, modern time piece.Two dials.Stainless steel case.Adjustable leather band.More InformationActivityRecreationMaterialLeather, PlasticGenderMenCategoryElectronic, Fashion, Timepiece','',0,55000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 22:24:25','2020-12-22 22:24:25','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-MG05/mg05br0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-UB02','3010','','','','','Impulse Duffle','impulse-duffle','','','','','','',0,0,0,0,0,'','

Good for beach trips, track meets, yoga retreats and more, the Impulse Duffle is the companion you\'ll want at your side. A large U-shaped opening makes packing a hassle-free affair, while a zippered interior pocket keeps jewelry and other small valuables safely tucked out of sight.

More Information
ActivityGym, Overnight, Travel
StyleLuggage, Duffel
MaterialNylon, Polyester
Strap/HandleAdjustable, Double, Telescoping
FeaturesWheeled, TSA Approved, Lockable
','Good for beach trips, track meets, yoga retreats and more, the Impulse Duffle is the companion you\'ll want at your side. A large U-shaped opening makes packing a hassle-free affair, while a zippered interior pocket keeps jewelry and other small valuables safely tucked out of sight.Wheeled.Dual carry handles.Retractable top handle.W 14\" x H 26\" x D 11\".More InformationActivityGym, Overnight, TravelStyleLuggage, DuffelMaterialNylon, PolyesterStrap/HandleAdjustable, Double, TelescopingFeaturesWheeled, TSA Approved, Lockable','',0,74000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 21:41:55','2020-12-22 21:41:55','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-UB02/ub02black0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-UG01','3020','','','','','Quest Lumaflex™ Band','quest-lumaflex-band','','','','','','',0,0,0,0,0,'','

From leg extensions and standing squats to a full range of floor routines, the Quest Strength Band brings your own personal gym with you everywhere you go. Designed to add extra resistance to any training session, this strength band helps you tone and define your muscles. You\'ll love the extra comfort of its grippy handles and adjustable design.

More Information
ActivityGym
MaterialLeather, Plastic, Rubber
GenderMen, Women, Unisex
CategoryCardio, Exercise
','From leg extensions and standing squats to a full range of floor routines, the Quest Strength Band brings your own personal gym with you everywhere you go. Designed to add extra resistance to any training session, this strength band helps you tone and define your muscles. You\'ll love the extra comfort of its grippy handles and adjustable design.Adjusts from 30\" to 55\".Grippy comfort handles.Stretchy rubber construction.More InformationActivityGymMaterialLeather, Plastic, RubberGenderMen, Women, UnisexCategoryCardio, Exercise','',0,19000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 22:08:16','2020-12-22 22:08:16','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-UG01/ug01bk0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-UG02','3020','','','','','Pursuit Lumaflex™ Tone Band','pursuit-lumaflex-tone-band','','','','','','',0,0,0,0,0,'','

Save your knees and joints while strengthening arms, legs and core with the Pursuit Lumaflex™ Tone Band. This ultra-durable training tool lets you complete a full-body workout free of bulky machines or free weights.

More Information
ActivityGym
MaterialRubber, Synthetic
GenderMen, Women, Unisex
CategoryCardio, Exercise
','Save your knees and joints while strengthening arms, legs and core with the Pursuit Lumaflex™ Tone Band. This ultra-durable training tool lets you complete a full-body workout free of bulky machines or free weights.Home and/or gym use.Ergonomic handles.More InformationActivityGymMaterialRubber, SyntheticGenderMen, Women, UnisexCategoryCardio, Exercise','',0,16000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 22:10:37','2020-12-22 22:10:37','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-UG02/ug02bk0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-UG03','3020','','','','','Harmony Lumaflex™ Strength Band Kit','harmony-lumaflex-strength-band-kit','','','','','','',0,0,0,0,0,'','

Forget fancy machines and costly memberships - the Harmony Lumaflex™ Stength Band Kit is all you need for an amazing workout. The kit has everything you need for a range of strengthening and toning exercises.

More Information
ActivityGym
MaterialLeather, Plastic, Rubber
GenderMen, Women, Unisex
CategoryExercise
','Forget fancy machines and costly memberships - the Harmony Lumaflex™ Stength Band Kit is all you need for an amazing workout. The kit has everything you need for a range of strengthening and toning exercises.Three flex bands.Textured, ergonomic grips.Adjustable lengths.Mesh carry bag included.More InformationActivityGymMaterialLeather, Plastic, RubberGenderMen, Women, UnisexCategoryExercise','',0,22000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 22:04:31','2020-12-22 22:04:31','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-UG03/ug03bk0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-UG04','3020','','','','','Zing Jump Rope','zing-jump-rope','','','','','','',0,0,0,0,0,'','

One of the world\'s simplest and most portable exercise devices, a jump rope enables endless variations and fitness output. The Zing Jump Rope goes anywhere and can be used any time. It is adjustable in length and has contoured foam handles for a great grip.

More Information
ActivityGym
MaterialLeather, Plastic
GenderMen, Women, Unisex
CategoryCardio, Exercise
','One of the world\'s simplest and most portable exercise devices, a jump rope enables endless variations and fitness output. The Zing Jump Rope goes anywhere and can be used any time. It is adjustable in length and has contoured foam handles for a great grip.Contoured foam handles.Adjustable length.More InformationActivityGymMaterialLeather, PlasticGenderMen, Women, UnisexCategoryCardio, Exercise','',0,12000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 22:11:45','2020-12-22 22:11:45','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-UG04/ug04bk0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-UG05','3020','','','','','Go-Get\'r Pushup Grips','go-getr-pushup-grips','','','','','','',0,0,0,0,0,'','

The Go-Get\'r Pushup Grips safely provide the extra range of motion you need for a deep-dip routine targeting core, shoulder, chest and arm strength. Do fewer pushups using more energy, getting better results faster than the standard floor-level technique yield.

More Information
ActivityGym, Athletic
MaterialPlastic, Rubber
GenderMen, Women, Unisex
CategoryExercise
','The Go-Get\'r Pushup Grips safely provide the extra range of motion you need for a deep-dip routine targeting core, shoulder, chest and arm strength. Do fewer pushups using more energy, getting better results faster than the standard floor-level technique yield.Durable foam grips.Supportive base.More InformationActivityGym, AthleticMaterialPlastic, RubberGenderMen, Women, UnisexCategoryExercise','',0,19000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 22:09:18','2020-12-22 22:09:18','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-UG05/ug05gr0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-UG06','3020','','','','','Affirm Water Bottle','affirm-water-bottle','','','','','','',0,0,0,0,0,'','

You\'ll stay hydrated with ease with the Affirm Water Bottle by your side or in hand. Measurements on the outside help you keep track of how much you\'re drinking, while the screw-top lid prevents spills. A metal carabiner clip allows you to attach it to the outside of a backpack or bag for easy access.

More Information
ActivityYoga, Recreation, Gym, Sports
MaterialPlastic
','You\'ll stay hydrated with ease with the Affirm Water Bottle by your side or in hand. Measurements on the outside help you keep track of how much you\'re drinking, while the screw-top lid prevents spills. A metal carabiner clip allows you to attach it to the outside of a backpack or bag for easy access.Made of plastic.Grooved sides for an easy grip.More InformationActivityYoga, Recreation, Gym, SportsMaterialPlastic','',0,7000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 22:14:31','2020-12-22 22:15:39','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-UG06/ug06lb0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-UG07','3020','','','','','Dual Handle Cardio Ball','dual-handle-cardio-ball','','','','','','',0,0,0,0,0,'','

Make the most of your limited workout window with our Dual-Handle Cardio Ball. The 15-lb ball maximizes the effort-impact to your abdominal, upper arm and lower-body muscles. It features a handle on each side for a firm, secure grip.

More Information
ActivityGym, Athletic, Sports
MaterialPlastic
GenderMen, Women, Unisex
CategoryCardio, Exercise
','Make the most of your limited workout window with our Dual-Handle Cardio Ball. The 15-lb ball maximizes the effort-impact to your abdominal, upper arm and lower-body muscles. It features a handle on each side for a firm, secure grip.Durable plastic shell with sand fill.Two handles.15 lbs.More InformationActivityGym, Athletic, SportsMaterialPlasticGenderMen, Women, UnisexCategoryCardio, Exercise','',0,12000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 22:12:53','2020-12-22 22:12:53','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-UG07/ug07bk0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-WB01','3010','','','','','Voyage Yoga Bag','voyage-yoga-bag','','','','','','',0,0,0,0,0,'','

Everything you need for a trip to the gym will fit inside this surprisingly spacious Voyage Yoga Bag. Stock it with a water bottle, change of clothes, pair of shoes, and even a few beauty products. Fits inside a locker and zips shut for security.

More Information
ActivityYoga, Gym
StyleExercise, Tote
MaterialNylon, Polyester
Strap/HandleDouble, Shoulder
FeaturesWaterproof, Reflective, Lockable
','Everything you need for a trip to the gym will fit inside this surprisingly spacious Voyage Yoga Bag. Stock it with a water bottle, change of clothes, pair of shoes, and even a few beauty products. Fits inside a locker and zips shut for security.Slip pocket on front.Contrast piping.Durable nylon construction.More InformationActivityYoga, GymStyleExercise, ToteMaterialNylon, PolyesterStrap/HandleDouble, ShoulderFeaturesWaterproof, Reflective, Lockable','',0,32000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 21:40:00','2020-12-22 21:40:00','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-WB01/wb01black0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-WB02','3010','','','','','Compete Track Tote','compete-track-tote','','','','','','',0,0,0,0,0,'','

The Compete Track Tote holds a host of exercise supplies with ease. Stash your towel, jacket and street shoes inside. Tuck water bottles in easy-access external spaces. Perfect for trips to gym or yoga studio, with dual top handles for convenience to and from.

More Information
ActivityYoga, Gym, School
StyleExercise, Tote
MaterialNylon, Polyester, Rayon
Strap/HandleAdjustable, Double, Shoulder
FeaturesWaterproof, Lightweight, Reflective
','The Compete Track Tote holds a host of exercise supplies with ease. Stash your towel, jacket and street shoes inside. Tuck water bottles in easy-access external spaces. Perfect for trips to gym or yoga studio, with dual top handles for convenience to and from.Two-way zippers.Contrast detailing.W 22.0\" x H 17\" x D 10\".More InformationActivityYoga, Gym, SchoolStyleExercise, ToteMaterialNylon, Polyester, RayonStrap/HandleAdjustable, Double, ShoulderFeaturesWaterproof, Lightweight, Reflective','',0,32000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 21:38:45','2020-12-22 21:38:45','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-WB02/wb02green0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-WB03','3010','','','','','Driven Backpack','driven-backpack','','','','','','',0,0,0,0,0,'','

School books, camp gear and yoga clothes get along just fine in the all-purpose Driven Backpack. Crafted with tough polyester ripstop fabric, it\'s outfitted with rubberized end panels and padded, adjustable shoulder straps. The roomy main compartment features molded foam pockets that host everything you need.

More Information
ActivityYoga, Gym, School
StyleBackpack, Laptop, Exercise
MaterialMesh, Nylon, Polyester
Strap/HandleAdjustable, Double, Padded
FeaturesHydration Pocket, Audio Pocket, Lightweight, Laptop Sleeve
','School books, camp gear and yoga clothes get along just fine in the all-purpose Driven Backpack. Crafted with tough polyester ripstop fabric, it\'s outfitted with rubberized end panels and padded, adjustable shoulder straps. The roomy main compartment features molded foam pockets that host everything you need.Large main and small zip compartments.Adjustable, padded straps.Interior foam pockets.Exterior zip compartment.Left sport bottle pocket.Survival gear sold separately.More InformationActivityYoga, Gym, SchoolStyleBackpack, Laptop, ExerciseMaterialMesh, Nylon, PolyesterStrap/HandleAdjustable, Double, PaddedFeaturesHydration Pocket, Audio Pocket, Lightweight, Laptop Sleeve','',0,36000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 21:34:17','2020-12-22 21:34:17','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-WB03/wb03purple0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-WB04','3010','','','','','Push It Messenger Bag','push-it-messenger-bag','','','','','','',0,0,0,0,0,'','

The name says so, but the Push It Messenger Bag is much more than a busy commuter\'s tote. It\'s a closet away from home when you\'re pedaling from class or work to gym and back or home again. It\'s the perfect size and shape for laptop, folded clothes, even extra shoes.

More Information
ActivityYoga, School, Urban
StyleMessenger, Laptop
MaterialNylon, Polyester
Strap/HandleAdjustable, Cross Body, Detachable, Padded, Shoulder, Single
FeaturesWaterproof, Lightweight, Laptop Sleeve, Lockable
','The name says so, but the Push It Messenger Bag is much more than a busy commuter\'s tote. It\'s a closet away from home when you\'re pedaling from class or work to gym and back or home again. It\'s the perfect size and shape for laptop, folded clothes, even extra shoes.Adjustable crossbody strap.Top handle.Zippered interior pocket.Secure clip closures.Durable fabric construction.More InformationActivityYoga, School, UrbanStyleMessenger, LaptopMaterialNylon, PolyesterStrap/HandleAdjustable, Cross Body, Detachable, Padded, Shoulder, SingleFeaturesWaterproof, Lightweight, Laptop Sleeve, Lockable','',0,45000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 21:31:35','2020-12-22 21:31:35','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-WB04/wb04blue0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-WB05','3010','','','','','Savvy Shoulder Tote','savvy-shoulder-tote','','','','','','',0,0,0,0,0,'','

Powerwalking to the gym or strolling to the local coffeehouse, the Savvy Shoulder Tote lets you stash your essentials in sporty style! A top-loading compartment provides quick and easy access to larger items, while zippered pockets on the front and side hold cash, credit cards and phone.

More Information
ActivityYoga, Gym
StyleExercise, Tote
Strap/HandleAdjustable, Cross Body, Shoulder, Single
FeaturesAudio Pocket, Lightweight
','Powerwalking to the gym or strolling to the local coffeehouse, the Savvy Shoulder Tote lets you stash your essentials in sporty style! A top-loading compartment provides quick and easy access to larger items, while zippered pockets on the front and side hold cash, credit cards and phone.Water-resistant shell.Water bottle pocket.Padded, articulating shoulder strap.Dimensions: W 21\" x H 15\" x D 10\".More InformationActivityYoga, GymStyleExercise, ToteStrap/HandleAdjustable, Cross Body, Shoulder, SingleFeaturesAudio Pocket, Lightweight','',0,24000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 21:36:51','2020-12-22 21:36:51','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-WB05/wb05red0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-WB06','3010','','','','','Endeavor Daytrip Backpack','endeavor-daytrip-backpack','','','','','','',0,0,0,0,0,'','

With more room than it appears, the Endeavor Daytrip Backpack will hold a whole day\'s worth of books, binders and gym clothes. The spacious main compartment includes a dedicated laptop sleeve. Two other compartments offer extra storage space.

More Information
ActivityGym, Hiking, School, Urban
StyleBackpack, Laptop
MaterialMesh, Nylon, Polyester
Strap/HandleAdjustable, Double, Padded
FeaturesAudio Pocket, Lightweight, Reflective, Laptop Sleeve, Lockable
','With more room than it appears, the Endeavor Daytrip Backpack will hold a whole day\'s worth of books, binders and gym clothes. The spacious main compartment includes a dedicated laptop sleeve. Two other compartments offer extra storage space.Foam-padded adjustable shoulder straps.900D polyester.Oversized zippers.Locker loop.More InformationActivityGym, Hiking, School, UrbanStyleBackpack, LaptopMaterialMesh, Nylon, PolyesterStrap/HandleAdjustable, Double, PaddedFeaturesAudio Pocket, Lightweight, Reflective, Laptop Sleeve, Lockable','',0,33000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 21:35:36','2020-12-22 21:35:36','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-WB06/wb06red0.jpg','24-WB06/wb06red0_alt1.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-WB07','3010','','','','','Overnight Duffle','overnight-duffle','','','','','','',0,0,0,0,0,'','

For long weekends away, camping outings and business trips, the Overnight Duffle can\'t be beat. The dual handles make it a cinch to carry, while the durable waterproof exterior helps you worry less about the weather. With multiple organizational pockets inside and out, it\'s the perfect travel companion.

More Information
ActivityOvernight, Travel
StyleDuffel
MaterialLeather, Nylon, Polyester
Strap/HandleDouble
FeaturesWaterproof, Lockable
','For long weekends away, camping outings and business trips, the Overnight Duffle can\'t be beat. The dual handles make it a cinch to carry, while the durable waterproof exterior helps you worry less about the weather. With multiple organizational pockets inside and out, it\'s the perfect travel companion.Dual top handles.W 15\" x H 15\" x D 9\".More InformationActivityOvernight, TravelStyleDuffelMaterialLeather, Nylon, PolyesterStrap/HandleDoubleFeaturesWaterproof, Lockable','',0,45000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 21:32:42','2020-12-22 21:32:42','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-WB07/wb07brown0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-WG01','3030','','','','','Bolo Sport Watch','bolo-sport-watch','','','','','','',0,0,0,0,0,'','

The Bolo Sport Watch is sleek, sporty and sized just right to fit your smaller wrist. Easy to read and set up, it features a large digital face and button-activated alarm and stopwatch. The soft-touch resin band promises no-pinch comfort, while the water-resistant design lets you take your workout to the lap pool.

More Information
ActivityRecreation, Sports
MaterialSilicone
GenderWomen
CategoryElectronic, Exercise, Timepiece
','The Bolo Sport Watch is sleek, sporty and sized just right to fit your smaller wrist. Easy to read and set up, it features a large digital face and button-activated alarm and stopwatch. The soft-touch resin band promises no-pinch comfort, while the water-resistant design lets you take your workout to the lap pool.Displays time, day and date.Two-tone design.12/24 hour formats.Nickel-free buckle on band.Battery included.More InformationActivityRecreation, SportsMaterialSiliconeGenderWomenCategoryElectronic, Exercise, Timepiece','',0,49000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 22:20:33','2020-12-22 22:20:33','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-WG01/wg01bk0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-WG02','3030','','','','','Didi Sport Watch','didi-sport-watch','','','','','','',0,0,0,0,0,'','

The Didi Sport Watch helps you keep your workout plan down to the second. The vertical, digital face looks sleek and futuristic. This watch is programmed with tons of helpful features such as a timer, an alarm clock, a pedometer, and more to help make your excercise more productive.

More Information
ActivityGym, Athletic
MaterialMetal, Rubber, Silicone
GenderWomen
CategoryElectronic, Exercise, Timepiece
','The Didi Sport Watch helps you keep your workout plan down to the second. The vertical, digital face looks sleek and futuristic. This watch is programmed with tons of helpful features such as a timer, an alarm clock, a pedometer, and more to help make your excercise more productive.Digital display.LED backlight.Rubber strap with buckle clasp.1-year limited warranty.More InformationActivityGym, AthleticMaterialMetal, Rubber, SiliconeGenderWomenCategoryElectronic, Exercise, Timepiece','',0,92000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 22:18:24','2020-12-22 22:18:24','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-WG02/wg02bk0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-WG03','3030','','','','','Clamber Watch','clamber-watch','','','','','','',0,0,0,0,0,'','

Keep track of time on the treadmill or trail with our Clamber Watch. The flexible, rubberized strap is contoured to conform to your wrist for a comfortable fit all day. The face features an illuminated digital read-out of the current time and stopwatch functions.

More Information
ActivityOutdoor, Recreation, Gym, Athletic
MaterialPlastic, Rubber, Silicone
GenderWomen
CategoryElectronic, Exercise, Timepiece
','Keep track of time on the treadmill or trail with our Clamber Watch. The flexible, rubberized strap is contoured to conform to your wrist for a comfortable fit all day. The face features an illuminated digital read-out of the current time and stopwatch functions.Japanese quartz movement.Strap fits 5\" to 6.0\".More InformationActivityOutdoor, Recreation, Gym, AthleticMaterialPlastic, Rubber, SiliconeGenderWomenCategoryElectronic, Exercise, Timepiece','',0,54000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 22:19:27','2020-12-22 22:19:27','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-WG03/wg03gr0.jpg','24-WG03/wg03sa0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-WG080','3020','','','','','Sprite Yoga Companion Kit','sprite-yoga-companion-kit','','','','','Sprite Stasts Ball,Sprite Yoga Strap','추가 상품',0,0,0,0,0,'','

A well-rounded yoga workout takes more than a mat. The Sprite Yoga Companion Kit helps stock your studio with the basics you need for a full-range workout. The kit is composed of four best-selling Luma Sprite accessories in one easy bundle: statis ball, foam block, yoga strap, and foam roller. Choose sizes and colors and leave the rest to us. The kit includes:

More Information
ActivityYoga, Gym
GenderMen, Women, Unisex
CategoryExercise
','A well-rounded yoga workout takes more than a mat. The Sprite Yoga Companion Kit helps stock your studio with the basics you need for a full-range workout. The kit is composed of four best-selling Luma Sprite accessories in one easy bundle: statis ball, foam block, yoga strap, and foam roller. Choose sizes and colors and leave the rest to us. The kit includes:Sprite Statis BallSprite Foam Yoga BrickSprite Yoga StrapSprite Foam RollerMore InformationActivityYoga, GymGenderMen, Women, UnisexCategoryExercise','',0,0,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 22:00:11','2020-12-22 22:00:11','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-WG080/lumayogakit2.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-WG084','3020','','','','','Sprite Foam Yoga Brick','sprite-foam-yoga-brick','','','','','','',0,0,0,0,0,'','

Our top-selling yoga prop, the 4-inch, high-quality Sprite Foam Yoga Brick is popular among yoga novices and studio professionals alike. An essential yoga accessory, the yoga brick is a critical tool for finding balance and alignment in many common yoga poses. Choose from 5 color options.

More Information
ActivityYoga, Recreation, Gym, Sports
MaterialFoam
GenderMen, Women, Unisex
CategoryExercise
','Our top-selling yoga prop, the 4-inch, high-quality Sprite Foam Yoga Brick is popular among yoga novices and studio professionals alike. An essential yoga accessory, the yoga brick is a critical tool for finding balance and alignment in many common yoga poses. Choose from 5 color options.Standard Large Size: 4\" x 6\" x 9\".Beveled edges for ideal contour grip.Durable and soft, scratch-proof foam.Individually wrapped.Ten color choices.More InformationActivityYoga, Recreation, Gym, SportsMaterialFoamGenderMen, Women, UnisexCategoryExercise','',0,5000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 22:07:03','2020-12-22 22:07:03','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-WG084/lumayogabrick.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-WG085_Group','3020','','','','','Set of Sprite Yoga Straps','set-of-sprite-yoga-straps','','','','','','Yoga Straps',0,0,0,0,0,'','

Great set of Sprite Yoga Straps for every stretch and hold you need. There are three straps in this set: 6\', 8\' and 10\'.

ActivityYoga
MaterialCanvas, Plastic
GenderMen, Women, Unisex
CategoryExercise
','Great set of Sprite Yoga Straps for every stretch and hold you need. There are three straps in this set: 6\', 8\' and 10\'.100% soft and durable cotton.Plastic cinch buckle is easy to use.Choice of three natural colors made from phthalate and heavy metal free dyes.ActivityYogaMaterialCanvas, PlasticGenderMen, Women, UnisexCategoryExercise','',0,0,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 22:02:44','2020-12-22 22:02:44','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-WG085_Group/lumayogastrapset.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-WG088','3020','','','','','Sprite Foam Roller','sprite-foam-roller','','','','','','',0,0,0,0,0,'','

It hurts so good to use the Sprite Foam Roller on achy, tired muscles for myofascial massage therapy. Or you can add this fundamental piece to your Pilates and yoga accouterment, or apply towards core stability, strengthening and balance exercise.

More Information
ActivityYoga, Gym
MaterialFoam
GenderMen, Women, Unisex
CategoryExercise
','It hurts so good to use the Sprite Foam Roller on achy, tired muscles for myofascial massage therapy. Or you can add this fundamental piece to your Pilates and yoga accouterment, or apply towards core stability, strengthening and balance exercise.6\'\' wide by 12\'\' long.Safe for myofascial release.EPP or PE foam options.Solid, dense, closed-cell foam.More InformationActivityYoga, GymMaterialFoamGenderMen, Women, UnisexCategoryExercise','',0,19000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 22:05:50','2020-12-22 22:05:50','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-WG088/lumafoamroller.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('24-WG09','3030','','','','','Luma Analog Watch','luma-analog-watch','','','','','','',0,0,0,0,0,'','

Designed to stand up to your active lifestyle, this women\'s Luma Analog Watch features a tasteful brushed chrome finish and a stainless steel, water-resistant construction for lasting durability.

More Information
ActivityRecreation
MaterialStainless Steel
GenderWomen
CategoryElectronic, Fashion, Timepiece
','Designed to stand up to your active lifestyle, this women\'s Luma Analog Watch features a tasteful brushed chrome finish and a stainless steel, water-resistant construction for lasting durability.Precision Miyota® three-hand movement.More InformationActivityRecreationMaterialStainless SteelGenderWomenCategoryElectronic, Fashion, Timepiece','',0,43000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 22:21:43','2020-12-22 22:21:43','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','24-WG09/wg09gr0.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('56990','201010','','','','','Jupiter All-Weather Trainer','jupiter-all-weather-trainer','','','','','Size,Color','',0,0,0,0,0,'','

Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.

• Relaxed fit.
• Hand pockets.
• Machine wash/dry.
• Reflective safety trim.


More Information
StyleInsulated, Lightweight, Soft Shell, Full Zip
MaterialFleece, Hemp, Nylon
PatternSolid
ClimateAll-Weather, Indoor, Mild, Spring, Warm
','Inclement climate be damned. With your breathable, water-resistant Jupiter All-Weather Trainer, you can focus on fuel and form and leave protection and comfort to us. The fabric is a special light fleece that wicks moisture and insulates at once.• Relaxed fit.• Hand pockets.• Machine wash/dry.• Reflective safety trim.More InformationStyleInsulated, Lightweight, Soft Shell, Full ZipMaterialFleece, Hemp, NylonPatternSolidClimateAll-Weather, Indoor, Mild, Spring, Warm','',0,56990,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 15:31:59','2020-12-22 15:31:59','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','56990/mj06blue_main.jpg','56990/mj06blue_alt1.jpg','56990/mj06blue_back.jpg','56990/mj06green_main.jpg','56990/mj06purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MH01','201020','','','','','Chaz Kangeroo Hoodie','chaz-kangeroo-hoodie','','','','','Size,Color','',0,0,0,0,0,'','

Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.

• Two-tone gray heather hoodie.
• Drawstring-adjustable hood.
• Machine wash/dry.


More Information
MaterialWool
PatternColor-Blocked
ClimateAll-Weather, Cool, Indoor, Spring, Windy
','Ideal for cold-weather training or work outdoors, the Chaz Hoodie promises superior warmth with every wear. Thick material blocks out the wind as ribbed cuffs and bottom band seal in body heat.• Two-tone gray heather hoodie.• Drawstring-adjustable hood.• Machine wash/dry.More InformationMaterialWoolPatternColor-BlockedClimateAll-Weather, Cool, Indoor, Spring, Windy','',0,52000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 16:38:14','2020-12-22 16:38:14','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MH01/mh01gray_main.jpg','MH01/mh01gray_alt1.jpg','MH01/mh01gray_back.jpg','MH01/mh01black_main.jpg','MH01/mh01orange_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MH02','201020','','','','','Teton Pullover Hoodie','teton-pullover-hoodie','','','','','Size,Color','',0,0,0,0,0,'','

This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.

• Black pullover hoodie.
• Soft, brushed interior.
• Front hand pockets.
• Machine wash/dry.


More Information
MaterialFleece, Nylon, Wool
PatternSolid
ClimateAll-Weather, Cool, Indoor, Spring, Windy
','This Teton Pullover Hoodie gives you more than laid-back style. It\'s equipped with moisture-wicking fabric to keep light and dry inside, especially in chilly-weather workouts. An elasticized hem lets you move about freely.• Black pullover hoodie.• Soft, brushed interior.• Front hand pockets.• Machine wash/dry.More InformationMaterialFleece, Nylon, WoolPatternSolidClimateAll-Weather, Cool, Indoor, Spring, Windy','',0,70000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 16:36:33','2020-12-22 16:36:33','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MH02/mh02black_main.jpg','MH02/mh02black_alt1.jpg','MH02/mh02black_back.jpg','MH02/mh02purple_main.jpg','MH02/mh02red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MH03','201020','','','','','Bruno Compete Hoodie','bruno-compete-hoodie','','','','','Size,Color','',0,0,0,0,0,'','

Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.

• Full zip black hoodie pullover.
• Adjustable drawstring hood.
• Ribbed cuffs/waistband.
• Kangaroo pocket.
• Machine wash/dry.


More Information
MaterialOrganic Cotton
PatternSolid
ClimateAll-Weather, Cool, Indoor, Spring, Windy
','Stay comfortable and stay in the race no matter what the weather\'s up to. The Bruno Compete Hoodie\'s water-repellent exterior shields you from the elements, while advanced fabric technology inside wicks moisture to keep you dry.• Full zip black hoodie pullover.• Adjustable drawstring hood.• Ribbed cuffs/waistband.• Kangaroo pocket.• Machine wash/dry.More InformationMaterialOrganic CottonPatternSolidClimateAll-Weather, Cool, Indoor, Spring, Windy','',0,63000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 16:34:42','2020-12-22 16:34:42','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MH03/mh03black_main.jpg','MH03/mh03black_alt1.jpg','MH03/mh03black_back.jpg','MH03/mh03blue_main.jpg','MH03/mh03green_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MH04','201020','','','','','Frankie Sweatshirt','frankie-sweatshirt','','','','','Size,Color','',0,0,0,0,0,'','

The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.

• Light green crewneck sweatshirt.
• Hand pockets.
• Relaxed fit.
• Machine wash/dry.


More Information
MaterialOrganic Cotton
PatternSolid
ClimateAll-Weather, Cool, Indoor, Spring, Windy
','The Frankie Sweatshirt is your best friend at long afternoon stadium stints or winter trailside campsites. The soft fleece fabric keeps you toasty as moisture-wicking technology kicks in when the sun comes out.• Light green crewneck sweatshirt.• Hand pockets.• Relaxed fit.• Machine wash/dry.More InformationMaterialOrganic CottonPatternSolidClimateAll-Weather, Cool, Indoor, Spring, Windy','',0,60000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 16:32:49','2020-12-22 16:32:49','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MH04/mh04green_main.jpg','MH04/mh04green_alt1.jpg','MH04/mh04green_back.jpg','MH04/mh04white_main.jpg','MH04/mh04yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MH05','201020','','','','','Hollister Backyard Sweatshirt','hollister-backyard-sweatshirt','','','','','Size,Color','',0,0,0,0,0,'','

Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.

• Cream crewneck sweatshirt with navy sleeves/trim.
• Relaxed fit.
• Ribbed cuffs and hem.
• Machine wash/dry.


More Information
MaterialNylon, Polyester, Wool
PatternColor-Blocked
ClimateCool
','Kick off your weekend in the Hollister Backyard Sweatshirt. Whether you\'re raking leaves or flipping burgers, this comfy layer blocks the bite of the crisp autumn air. Puffy thick from hood to hem, it traps heat against your core.• Cream crewneck sweatshirt with navy sleeves/trim.• Relaxed fit.• Ribbed cuffs and hem.• Machine wash/dry.More InformationMaterialNylon, Polyester, WoolPatternColor-BlockedClimateCool','',0,52000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 16:30:45','2020-12-22 16:30:45','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MH05/mh05white_main.jpg','MH05/mh05white_alt1.jpg','MH05/mh05white_back.jpg','MH05/mh05green_main.jpg','MH05/mh05red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MH06','201020','','','','','Stark Fundamental Hoodie','stark-fundamental-hoodie','','','','','','',0,0,0,0,0,'','

You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.

• Navy specked full zip hoodie.
• Ribbed cuffs, banded waist.
• Side pockets.
• Machine wash/dry.


More Information
MaterialNylon, Polyester, Wool
PatternSolid
ClimateAll-Weather, Cool, Indoor, Spring
','You don\'t need bells and whistles when performance speaks for itself. The full-zip Stark Fundamental Hoodie give just what you need. Hood and fleece lining keep you warm, while breathable fabric and wicking technology won\'t let you overheat.• Navy specked full zip hoodie.• Ribbed cuffs, banded waist.• Side pockets.• Machine wash/dry.More InformationMaterialNylon, Polyester, WoolPatternSolidClimateAll-Weather, Cool, Indoor, Spring','',0,42000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 16:28:35','2020-12-22 16:28:35','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MH06/mh06blue_main.jpg','MH06/mh06blue_alt1.jpg','MH06/mh06blue_back.jpg','MH06/mh06black_main.jpg','MH06/mh06purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MH07','201020','','','','','Hero Hoodie','hero-hoodie','','','','','','',0,0,0,0,0,'','

Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.

• Full-zip gray and black hoodie.
• Ribbed hem.
• Standard fit.
• Drawcord hood cinch.
• Water-resistant coating.


MaterialFleece, Hemp, Polyester
PatternColor-Blocked
ClimateSpring
','Gray and black color blocking sets you apart as the Hero Hoodie keeps you warm on the bus, campus or cold mean streets. Slanted outsize front pockets keep your style real . . . convenient.• Full-zip gray and black hoodie.• Ribbed hem.• Standard fit.• Drawcord hood cinch.• Water-resistant coating.MaterialFleece, Hemp, PolyesterPatternColor-BlockedClimateSpring','',0,54000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 16:26:40','2020-12-22 16:26:40','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MH07/mh07gray_main.jpg','MH07/mh07gray_alt1.jpg','MH07/mh07gray_back.jpg','MH07/mh07black_main.jpg','MH07/mh07green_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MH08','201020','','','','','Oslo Trek Hoodie','oslo-trek-hoodie','','','','','Size,Color','',0,0,0,0,0,'','

Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.

• Brown hoodie with black detail.
• Pullover.
• Adjustable drawstring hood.
• Ribbed cuffs/waistband.
• Machine wash/dry.


More Information
MaterialNylon, Polyester, Organic Cotton
PatternSolid
ClimateCool, Windy
','Chilly weather is just an excuse to throw on your toasty, handsome new Oslo Trek Hoodie. It features an adjustable drawstring hood and a kangaroo pocket for extra hand warmth. The ultra-soft, cozy lining will have you wishing for more brisk days.• Brown hoodie with black detail.• Pullover.• Adjustable drawstring hood.• Ribbed cuffs/waistband.• Machine wash/dry.More InformationMaterialNylon, Polyester, Organic CottonPatternSolidClimateCool, Windy','',0,42000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 16:24:46','2020-12-22 16:24:46','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MH08/mh08brown_main.jpg','MH08/mh08brown_alt1.jpg','MH08/mh08brown_back.jpg','MH08/mh08purple_main.jpg','MH08/mh08red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MH09','201020','','','','','Abominable Hoodie','abominable-hoodie','','','','','Size,Color','',0,0,0,0,0,'','

It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.

• Blue heather hoodie.
• Relaxed fit.
• Moisture-wicking.
• Machine wash/dry.


More Information
MaterialNylon, CoolTech™, Wool
PatternSolid
ClimateSpring, Windy
','It took CoolTech™ weather apparel know-how and lots of wind-resistant fabric to get the Abominable Hoodie just right. It\'s aggressively warm when it needs to be, while maintaining your comfort in milder climes.• Blue heather hoodie.• Relaxed fit.• Moisture-wicking.• Machine wash/dry.More InformationMaterialNylon, CoolTech™, WoolPatternSolidClimateSpring, Windy','',0,69000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 16:22:55','2020-12-22 16:22:55','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MH09/mh09blue_main.jpg','MH09/mh09blue_alt1.jpg','MH09/mh09blue_back.jpg','MH09/mh09green_main.jpg','MH09/mh09red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MH10','201020','','','','','Mach Street Sweatshirt','mach-street-sweatshirt','','','','','Size,Color','',0,0,0,0,0,'','

From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it\'s bound to become an everyday part of your active lifestyle

• Navy heather crewneck sweatshirt.
• LumaTech™ moisture-wicking fabric.
• Antimicrobial, odor-resistant.
• Zip hand pockets.
• Chafe-resistant flatlock seams.
• Rib-knit cuffs and hem.


More Information
MaterialLumaTech™, Wool
PatternSolid
ClimateAll-Weather, Cool, Indoor, Spring
','From hard streets to asphalt track, the Mach Street Sweatshirt holds up to wear and wind and rain. An infusion of performance and stylish comfort, with moisture-wicking LumaTech™ fabric, it\'s bound to become an everyday part of your active lifestyle• Navy heather crewneck sweatshirt.• LumaTech™ moisture-wicking fabric.• Antimicrobial, odor-resistant.• Zip hand pockets.• Chafe-resistant flatlock seams.• Rib-knit cuffs and hem.More InformationMaterialLumaTech™, WoolPatternSolidClimateAll-Weather, Cool, Indoor, Spring','',0,62000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 16:20:32','2020-12-22 16:20:32','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MH10/mh10blue_main.jpg','MH10/mh10blue_alt1.jpg','MH10/mh10blue_back.jpg','MH10/mh10black_main.jpg','MH10/mh10red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MH11','201020','','','','','Grayson Crewneck Sweatshirt','grayson-crewneck-sweatshirt','','','','','Size,Color','',0,0,0,0,0,'','

The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.

• Cream crewneck sweatshirt with black accents.
• 80% cotton/20% polyester fleece.
• Patterned knit hood lining.
• Knit cuffs and waist.
• Pouch pocket.
• Curl edged seam detail


More Information
MaterialFleece, Organic Cotton
PatternColor-Blocked
ClimateAll-Weather, Cool, Indoor, Spring, Windy
','The Grayson Crewneck Sweatshirt gives you that ageless, classic look – a style that comes back around nearly every season. What\'s more, its performance and temp-control values are always in vogue.• Cream crewneck sweatshirt with black accents.• 80% cotton/20% polyester fleece.• Patterned knit hood lining.• Knit cuffs and waist.• Pouch pocket.• Curl edged seam detailMore InformationMaterialFleece, Organic CottonPatternColor-BlockedClimateAll-Weather, Cool, Indoor, Spring, Windy','',0,64000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 16:08:20','2020-12-22 16:08:20','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MH11/mh11white_main.jpg','MH11/mh11white_alt1.jpg','MH11/mh11white_back.jpg','MH11/mh11orange_main.jpg','MH11/mh11red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MH12','201020','','','','','Ajax Full-Zip Sweatshirt','ajax-full-zip-sweatshirt','','','','','Size,Color','',1,0,0,0,0,'','

The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.

• Mint striped full zip hoodie.
• 100% bonded polyester fleece.
• Pouch pocket.
• Rib cuffs and hem.
• Machine washable.


More Information
MaterialFleece, Polyester
PatternStriped
ClimateAll-Weather, Cool, Indoor, Spring, Windy
','The Ajax Full-Zip Sweatshirt makes the optimal layering or outer piece for archers, golfers, hikers and virtually any other sportsmen. Not only does it have top-notch moisture-wicking abilities, but the tight-weave fabric also prevents pilling from repeated wash-and-wear cycles.• Mint striped full zip hoodie.• 100% bonded polyester fleece.• Pouch pocket.• Rib cuffs and hem.• Machine washable.More InformationMaterialFleece, PolyesterPatternStripedClimateAll-Weather, Cool, Indoor, Spring, Windy','',0,69000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-22 16:05:53','2020-12-22 23:35:11','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MH12/mh12green_main.jpg','MH12/mh12green_alt1.jpg','MH12/mh12green_back.jpg','MH12/mh12blue_main.jpg','MH12/mh12red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MH13','201020','','','','','Marco Lightweight Active Hoodie','marco-lightweight-active-hoodie','','','','','Size,Color','',0,0,0,0,0,'','

For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.

• Light blue heather full zip hoodie.
• Fitted flatlock seams.
• Matching lining and drawstring.
• Machine wash/dry.


MaterialCocona® performance fabric, Fleece
PatternSolid
ClimateAll-Weather, Cool, Indoor, Spring, Windy
','For cold-weather training or post-game layering, you need something more than a basic fleece. Our Marco Lightweight Active Hoodie brings both style and performance to the plate, court, or touchline. The smooth-faced, brushed-back fabric blocks wind and traps body heat, while integrated Cocona® fibers pull moisture away.• Light blue heather full zip hoodie.• Fitted flatlock seams.• Matching lining and drawstring.• Machine wash/dry.MaterialCocona® performance fabric, FleecePatternSolidClimateAll-Weather, Cool, Indoor, Spring, Windy','',0,74000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 16:03:23','2020-12-22 16:03:23','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MH13/mh13blue_main.jpg','MH13/mh13blue_alt1.jpg','MH13/mh13blue_back.jpg','MH13/mh13green_main.jpg','MH13/mh13lavender_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MJ01','201010','','','','','Beaumont Summit Kit','beaumont-summit-kit','','','','','Size,Color','',0,0,0,0,0,'','

The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.

• Yellow full zip rain jacket.
• Full-zip front.
• Stand-up collar.
• Elasticized cuffs.
• Machine wash/dry.


More Information
StyleLightweight, Hooded, Rain Coat, Hard Shell, Windbreaker, ¼ zip, Reversible
MaterialFleece, LumaTech™, Polyester
PatternSolid
ClimateCool, Rainy, Spring, Windy
','The smooth nylon shell around the Beaumont Summit Kit combats wind, reinforced with a cold-fighting brushed fleece layer. The jacket is reversible, giving you a new look for the return trek. Ample pocket space rounds out this hiker\'s paradise package.• Yellow full zip rain jacket.• Full-zip front.• Stand-up collar.• Elasticized cuffs.• Machine wash/dry.More InformationStyleLightweight, Hooded, Rain Coat, Hard Shell, Windbreaker, ¼ zip, ReversibleMaterialFleece, LumaTech™, PolyesterPatternSolidClimateCool, Rainy, Spring, Windy','',0,42000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 15:59:05','2020-12-22 15:59:05','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MJ01/mj01yellow_main.jpg','MJ01/mj01yellow_alt1.jpg','MJ01/mj01yellow_back.jpg','MJ01/mj01orange_main.jpg','MJ01/mj01red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MJ02','201010','','','','','Hyperion Elements Jacket','hyperion-elements-jacket','','','','','Size,Color','',0,0,0,0,0,'','

Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.

• Lime 1/4 zip pullover.
• Split pocket.
• Thumb holes.
• Machine wash/hang to dry.


More Information
StyleInsulated, Rain Coat, Hard Shell, Windbreaker, ¼ zip
MaterialFleece, LumaTech™, Polyester
PatternSolid
ClimateCool, Rainy, Spring, Windy
','Boldly face high winds, frigid temps and stormy weather the whole winter through in the Hyperion Elements Jacket. LumaTech™ insulating technology helps maintain your core temperature and wick sweat. The smooth shell is water repellent and quilted to retain body heat.• Lime 1/4 zip pullover.• Split pocket.• Thumb holes.• Machine wash/hang to dry.More InformationStyleInsulated, Rain Coat, Hard Shell, Windbreaker, ¼ zipMaterialFleece, LumaTech™, PolyesterPatternSolidClimateCool, Rainy, Spring, Windy','',0,51000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 15:57:09','2020-12-22 15:57:09','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MJ02/mj02green_main.jpg','MJ02/mj02green_alt1.jpg','MJ02/mj02green_back.jpg','MJ02/mj02orange_main.jpg','MJ02/mj02red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MJ03','201010','','','','','Montana Wind Jacket','montana-wind-jacket','','','','','Size,Color','',0,0,0,0,0,'','

move-with-you design makes it especially versatile.

Adjustable hood.
Split pocket.
Thumb holes.
Machine wash/hang to dry.


More Information
StyleLightweight, Hooded, Hard Shell, Windbreaker, Full Zip
MaterialNylon, Polyester
PatternSolid
ClimateCool, Mild, Spring, Windy
','move-with-you design makes it especially versatile.Adjustable hood.Split pocket.Thumb holes.Machine wash/hang to dry.More InformationStyleLightweight, Hooded, Hard Shell, Windbreaker, Full ZipMaterialNylon, PolyesterPatternSolidClimateCool, Mild, Spring, Windy','',0,49000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 15:27:50','2020-12-22 15:27:50','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MJ03/mj03black_main.jpg','MJ03/mj03black_alt1.jpg','MJ03/mj03black_back.jpg','MJ03/mj03green_main.jpg','MJ03/mj03red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MJ04','201010','','','','','Kenobi Trail Jacket','kenobi-trail-jacket','','','','','Size,Color','',0,0,0,0,0,'','

Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.

• Black 1/4 zip pullover with royal zipper.
• Adjustable hood and sleeve cuffs.
• Machine wash/air dry.


More Information
StyleInsulated, Soft Shell, ¼ zip
MaterialCotton, Fleece, Nylon
PatternSolid
ClimateCold, Cool, Spring, Windy, Wintry
','Aside from sealed seams to keep moisture out and body heat in, the Kenobi Trail Vest is all about media convenience. Use your phone and music player without ever taking it out of its cozy compartment: an attached remote on the left chest lets you change songs, pause and raise/lower volume.• Black 1/4 zip pullover with royal zipper.• Adjustable hood and sleeve cuffs.• Machine wash/air dry.More InformationStyleInsulated, Soft Shell, ¼ zipMaterialCotton, Fleece, NylonPatternSolidClimateCold, Cool, Spring, Windy, Wintry','',0,47000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 15:45:24','2020-12-22 15:45:24','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MJ04/mj04black_main.jpg','MJ04/mj04black_alt1.jpg','MJ04/mj04black_back.jpg','MJ04/mj04blue_main.jpg','MJ04/mj04purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MJ07','201010','','','','','Orion Two-Tone Fitted Jacket','orion-two-tone-fitted-jacket','','','','','Size,Color','',0,0,0,0,0,'','

While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.

• Red full zip fleece with gray insets.
• Double-knit construction.
• Full athletic cut.
• Set in sleeves.
• Front pouch pocket.


More Information
StyleLightweight, Hooded, Rain Coat, Soft Shell, Full Zip
MaterialPolyester
PatternSolid
ClimateAll-Weather, Cool, Rainy, Spring, Windy
','While you\'re getting fit, you need a fitted jacket to match. Striking color blocking patterns on hood, shoulders and arms are hallmarks of the Orion Two-Tone Fitted Jacket. They provide eye-catching contrast against the rich, torso tones of this 100% polyester, moisture-wicking essential.• Red full zip fleece with gray insets.• Double-knit construction.• Full athletic cut.• Set in sleeves.• Front pouch pocket.More InformationStyleLightweight, Hooded, Rain Coat, Soft Shell, Full ZipMaterialPolyesterPatternSolidClimateAll-Weather, Cool, Rainy, Spring, Windy','',0,72000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 15:43:33','2020-12-22 15:43:33','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MJ07/mj07red_main.jpg','MJ07/mj07red_alt1.jpg','MJ07/mj07red_back.jpg','MJ07/mj07black_main.jpg','MJ07/mj07yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MJ08','201010','','','','','Lando Gym Jacket','lando-gym-jacket','','','','','Size,Color','',0,1,0,0,0,'','

The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out. 

• Gray polyester/spandex full zip jacket with orange lining.
• Right pocket device storage.
• Cocona® performance fabric.
• Machine wash/dry.


More Information
StyleSoft Shell, ¼ zip, Full Zip
MaterialPolyester, Spandex
PatternSolid
ClimateCold, Cool, Windy, Wintry
','​The Lando Gym Jacket offers strategic ventilation at perspiration-prone areas, while moisture-wicking technology helps you stay dry. Side-seam pockets house your favorite media device, so you\'re plugged in when working out. • Gray polyester/spandex full zip jacket with orange lining.• Right pocket device storage.• Cocona® performance fabric.• Machine wash/dry.More InformationStyleSoft Shell, ¼ zip, Full ZipMaterialPolyester, SpandexPatternSolidClimateCold, Cool, Windy, Wintry','',0,99000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',2,'2020-12-22 15:41:39','2020-12-22 23:24:45','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MJ08/mj08gray_main.jpg','MJ08/mj08gray_alt1.jpg','MJ08/mj08gray_back.jpg','MJ08/mj08blue_main.jpg','MJ08/mj08green_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MJ09','201010','','','','','Taurus Elements Shell','taurus-elements-shell','','','','','Size,Color','',0,0,0,0,0,'','

What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.

• Yellow 1/4 zip pullover.
• Two chest pockets.
• Standard fit.
• Waterproof, breathable, seam sealed.
• Cocona® performance fabric.
• Machine wash/dry.


More Information
StyleJacket, Lightweight, Rain Coat, Windbreaker, ¼ zip
MaterialCocona® performance fabric, Lycra®, Polyester
PatternSolid
ClimateCool, Mild, Rainy, Spring, Windy
','What\'s a little rain or snow when you\'re inside the Taurus Elements Shell? This specially engineered Cocona® jacket lets you enjoy the great outdoors and brave the elements, thanks to the all-waterproof, breathable exterior.• Yellow 1/4 zip pullover.• Two chest pockets.• Standard fit.• Waterproof, breathable, seam sealed.• Cocona® performance fabric.• Machine wash/dry.More InformationStyleJacket, Lightweight, Rain Coat, Windbreaker, ¼ zipMaterialCocona® performance fabric, Lycra®, PolyesterPatternSolidClimateCool, Mild, Rainy, Spring, Windy','',0,65000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 15:39:34','2020-12-22 15:39:34','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MJ09/mj09yellow_main.jpg','MJ09/mj09yellow_alt1.jpg','MJ09/mj09yellow_back.jpg','MJ09/mj09blue_main.jpg','MJ09/mj09white_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MJ10','201010','','','','','Mars HeatTech™ Pullover','mars-heattech-pullover','','','','','Size,Color','',0,0,0,0,0,'','

The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.

• Red 1/4 zip pullover.
• Adjustable VELCRO® sleeve cuffs.
• Two hand pockets.
• Napoleon pocket.
• Machine wash/dry


More Information
StyleLightweight, Rain Coat, Hard Shell, Windbreaker, ¼ zip
MaterialNylon, Polyester
PatternSolid
ClimateAll-Weather, Cool, Mild, Rainy, Spring, Windy
','The Mars HeatTech™ Jacket defense against winter climes so you can play offense in the park, on the trail or in the deck chair. Great for the ski lodge or stadium, it features a wind- and water-resistant outer shell with a draw-cord hood and deep pockets for storage.• Red 1/4 zip pullover.• Adjustable VELCRO® sleeve cuffs.• Two hand pockets.• Napoleon pocket.• Machine wash/dryMore InformationStyleLightweight, Rain Coat, Hard Shell, Windbreaker, ¼ zipMaterialNylon, PolyesterPatternSolidClimateAll-Weather, Cool, Mild, Rainy, Spring, Windy','',0,66000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 15:37:32','2020-12-22 15:37:32','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MJ10/mj10red_main.jpg','MJ10/mj10red_alt1.jpg','MJ10/mj10red_back.jpg','MJ10/mj10black_main.jpg','MJ10/mj10orange_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MJ11','201010','','','','','Typhon Performance Fleece-lined Jacket','typhon-performance-fleece-lined-jacket','','','','','Size,Color','',0,0,0,0,0,'','

Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.

• Black full-zip flight jacket.
• Cocona® wicking fiber.
• Machine wash/dry.


More Information
StyleInsulated, Heavy Duty, Hard Shell, Windbreaker, Full Zip
MaterialCocona® performance fabric, Nylon, Polyester
PatternSolid
ClimateAll-Weather, Spring, Windy, Wintry
','Ironmen and couch warriors both reach for the Typhon Performance Fleece-lined Jacket. After all, no man can resist ultra-soft microfleece lining. Flatlock seams make it ideal for wearing over everything from tanks and tees to high-tech base layers.• Black full-zip flight jacket.• Cocona® wicking fiber.• Machine wash/dry.More InformationStyleInsulated, Heavy Duty, Hard Shell, Windbreaker, Full ZipMaterialCocona® performance fabric, Nylon, PolyesterPatternSolidClimateAll-Weather, Spring, Windy, Wintry','',0,60000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 15:34:45','2020-12-22 15:34:45','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MJ11/mj11black_main.jpg','MJ11/mj11black_alt1.jpg','MJ11/mj11black_back.jpg','MJ11/mj11green_main.jpg','MJ11/mj11red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MJ12','201010','','','','','Proteus Fitness Jackshirt','proteus-fitness-jackshirt','','','','','Size,Color','',1,0,0,0,0,'','

breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.

• 1/4 zip. Stand-up collar.
• Machine wash/dry.
• Quilted inner layer.


More Information
StyleInsulated, Heavy Duty, Soft Shell, ¼ zip
MaterialFleece, Polyester, Wool
PatternSolid
ClimateAll-Weather, Cool, Indoor, Spring
','breathable comfort and increased dryness along with UV protection and odor management. The drop-tail hem provides extra coverage when you\'re riding a bike or replacing a sink valve.• 1/4 zip. Stand-up collar.• Machine wash/dry.• Quilted inner layer.More InformationStyleInsulated, Heavy Duty, Soft Shell, ¼ zipMaterialFleece, Polyester, WoolPatternSolidClimateAll-Weather, Cool, Indoor, Spring','',0,45000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-22 15:25:41','2020-12-22 23:24:25','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MJ12/mj12orange_main.jpg','MJ12/mj12orange_alt1.jpg','MJ12/mj12orange_back.jpg','MJ12/mj12black_main.jpg','MJ12/mj12blue_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MP01','203010','','','','','Caesar Warm-Up Pant','caesar-warm-up-pant','','','','','Size,Color','',0,0,0,0,0,'','

Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.

• Light gray heather knit straight leg pants.
• Relaxed fit.
• Inseam: 32\".
• Machine wash/dry.
• CoolTech™ wicking fabric.


More Information
StyleSweatpants, Track Pants, Workout Pants
MaterialFleece, Hemp, CoolTech™, Wool
PatternSolid
ClimateCool, Spring
','Command your workout and keep your muscles limber in the Caesar Warm-Up Pant. Engineered CoolTech™ fabric wicks away moisture so you don\'t have to worry about sweat and discomfort. The drawstring-adjustable waist helps make sure your pants fit properly.• Light gray heather knit straight leg pants.• Relaxed fit.• Inseam: 32\".• Machine wash/dry.• CoolTech™ wicking fabric.More InformationStyleSweatpants, Track Pants, Workout PantsMaterialFleece, Hemp, CoolTech™, WoolPatternSolidClimateCool, Spring','',0,35000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 20:25:25','2020-12-22 20:25:25','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MP01/mp01gray_main.jpg','MP01/mp01gray_back.jpg','MP01/mp01black_main.jpg','MP01/mp01purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MP02','203010','','','','','Viktor LumaTech™ Pant','viktor-lumatech-pant','','','','','Size,Color','',0,0,0,0,0,'','

You\'ll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.

• Dark gray polyester/spandex straight leg pants.
• Elastic waistband and internal drawstring.
• Relaxed fit.
• Machine wash/dry.


More Information
StyleTrack Pants, Workout Pants
MaterialLumaTech™, Polyester, Spandex
PatternSolid
ClimateCold, Cool, Wintry
','You\'ll love the new Viktor LumaTech™ Pant, with featherweight fleece fabric lining and stretchy, sweat-wicking material. It delivers toasty warmth on the sidelines or in cold-weather training, with reflective trim for a safe finish.• Dark gray polyester/spandex straight leg pants.• Elastic waistband and internal drawstring.• Relaxed fit.• Machine wash/dry.More InformationStyleTrack Pants, Workout PantsMaterialLumaTech™, Polyester, SpandexPatternSolidClimateCold, Cool, Wintry','',0,46000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 20:23:12','2020-12-22 20:23:12','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MP02/mp02gray_main.jpg','MP02/mp02gray_back.jpg','MP02/mp02blue_main.jpg','MP02/mp02red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MP03','203010','','','','','Geo Insulated Jogging Pant','geo-insulated-jogging-pant','','','','','Size,Color','',0,0,0,0,0,'','

In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.

• Black polyester spandex pants with zipper pockets.
• Reflective safety accents.
• Loose fit.
• On-seam pockets.
• 8\" leg zips. 32\" inseam.
• Machine wash/dry.


More Information
StyleSweatpants, Track Pants, Workout Pants
MaterialPolyester, Rayon, Spandex, CoolTech™, Wool
PatternSolid
ClimateAll-Weather, Cool, Indoor, Windy, Wintry
','In the cold, even the toughest guys shiver, unless they\'re in the Geo Insulated Jogging Pant. Lightweight and wind resistant, they block brutal wind gusts and warm you to the bone. Breathable mesh keeps them dry on the inside.• Black polyester spandex pants with zipper pockets.• Reflective safety accents.• Loose fit.• On-seam pockets.• 8\" leg zips. 32\" inseam.• Machine wash/dry.More InformationStyleSweatpants, Track Pants, Workout PantsMaterialPolyester, Rayon, Spandex, CoolTech™, WoolPatternSolidClimateAll-Weather, Cool, Indoor, Windy, Wintry','',0,51000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 20:20:30','2020-12-22 20:20:30','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MP03/mp03black_main.jpg','MP03/mp03black_alt1.jpg','MP03/mp03black_back.jpg','MP03/mp03blue_main.jpg','MP03/mp03green_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MP04','203010','','','','','Supernova Sport Pant','supernova-sport-pant','','','','','Size,Color','',0,0,0,0,0,'','

Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.

• Dark heather gray straight leg cotton pants.
• Relaxed fit.
• Internal drawstring.
• Machine wash/dry.


More Information
StyleSweatpants, Track Pants, Workout Pants
MaterialLumaTech™, Spandex, Wool
PatternSolid
ClimateAll-Weather, Cold, Cool, Spring, Windy, Wintry
','Turn the corner and open it up -- your driveway is two blocks away. The Supernova Sport Pant gets you there with key features like moisture-wicking LumaTech™ fabric and mesh ventilation. Side seam pockets ensure total convenience during rest periods.• Dark heather gray straight leg cotton pants.• Relaxed fit.• Internal drawstring.• Machine wash/dry.More InformationStyleSweatpants, Track Pants, Workout PantsMaterialLumaTech™, Spandex, WoolPatternSolidClimateAll-Weather, Cold, Cool, Spring, Windy, Wintry','',0,45000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 20:16:26','2020-12-22 20:16:26','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MP04/mp04gray_main.jpg','MP04/mp04gray_back.jpg','MP04/mp04black_main.jpg','MP04/mp04green_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MP05','203010','','','','','Kratos Gym Pant','kratos-gym-pant','','','','','Size,Color','',0,0,0,0,0,'','

Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.

• Navy cotton straight leg pants.
• Relaxed fit.
• 2 side-seam pockets.
• Internal zip pocket.
• Drawstring waist.
• Machine wash/dry.


More Information
StyleBase Layer, Workout Pants
MaterialPolyester, Rayon, Organic Cotton
PatternSolid
ClimateSpring, Windy, Wintry
','Like it\'s namesake god of strength, the Kratos Gym Pant help you bring your best to bear on weight-based, plyometric and endurance exercise. They stretch and support in all the right places while ultra-light construction and moisture-wicking technology provide comfort.• Navy cotton straight leg pants.• Relaxed fit.• 2 side-seam pockets.• Internal zip pocket.• Drawstring waist.• Machine wash/dry.More InformationStyleBase Layer, Workout PantsMaterialPolyester, Rayon, Organic CottonPatternSolidClimateSpring, Windy, Wintry','',0,57000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 20:14:12','2020-12-22 20:14:12','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MP05/mp05blue_main.jpg','MP05/mp05blue_back.jpg','MP05/mp05blue_outfit.jpg','MP05/mp05black_main.jpg','MP05/mp05green_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MP06','203010','','','','','Mithra Warmup Pant','mithra-warmup-pant','','','','','Size,Color','',0,0,0,0,0,'','

When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.

• Ankle zips.
• Elasticized waistband with draw cord.
• Dual hand pockets.
• Reflective elements for low-light safety.


More Information
StyleSweatpants, Workout Pants
MaterialFleece, Hemp, Polyester, Organic Cotton, Wool
PatternSolid
ClimateAll-Weather, Cold, Cool, Mild, Windy, Wintry
','When you\'re not sure you\'re up to the weather, don the Mithra Warmup Pant for a confidence boost. Its supersoft, stretchy fabric and fleece-like finish help prep your muscles and ease your mind. Designed for relaxed, easy-wear fit with handy ankle zips.• Ankle zips.• Elasticized waistband with draw cord.• Dual hand pockets.• Reflective elements for low-light safety.More InformationStyleSweatpants, Workout PantsMaterialFleece, Hemp, Polyester, Organic Cotton, WoolPatternSolidClimateAll-Weather, Cold, Cool, Mild, Windy, Wintry','',0,28000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 20:11:57','2020-12-22 20:11:57','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MP06/mp06gray_main.jpg','MP06/mp06gray_back.jpg','MP06/mp06gray_outfit.jpg','MP06/mp06green_main.jpg','MP06/mp06orange_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MP07','203010','','','','','Thorpe Track Pant','thorpe-track-pant','','','','','Size,Color','',0,0,0,0,0,'','

Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.

• Moisture transfer properties.
• 7% stretch.
• Reflective safety trim.
• Elastic drawcord waist.


More Information
StyleSweatpants, Track Pants, Workout Pants
MaterialCocona® performance fabric, Polyester, Rayon, Wool
PatternSolid
Climate

All-Weather, Cold, Cool, Spring, Wintry

','Thirty degree temps are chilly for most, except when you\'re in Thorpe Track Pants. These top-of-the-line track bottoms are made from fast-drying, weather-resistant fabric with an internal breathable layer of mesh nylon to wick away moisture.• Moisture transfer properties.• 7% stretch.• Reflective safety trim.• Elastic drawcord waist.More InformationStyleSweatpants, Track Pants, Workout PantsMaterialCocona® performance fabric, Polyester, Rayon, WoolPatternSolidClimateAll-Weather, Cold, Cool, Spring, Wintry','',0,68000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 20:08:37','2020-12-22 20:08:37','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MP07/mp07blue_main.jpg','MP07/mp07blue_alt1.jpg','MP07/mp07blue_back.jpg','MP07/mp07blue_side_a.jpg','MP07/mp07blue_side_b.jpg','MP07/mp07black_main.jpg','MP07/mp07purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','',''),('MP08','203010','','','','','Zeppelin Yoga Pant','zeppelin-yoga-pant','','','','','Size,Color','',0,0,0,0,0,'','

Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.

• Smooth exterior for easy over-layering.
• Brushed fleece interior insulates and wicks.
• No-roll elastic waistband with inner drawstring.
• Chafe-resistant flatlock seams.


StyleBase Layer, Leggings, Sweatpants, Track Pants, Workout Pants
MaterialFleece, LumaTech™, Spandex, Wool
PatternSolid
ClimateAll-Weather, Cool, Spring, Windy, Wintry
','Climb every mountain, or hold every pose, in the all-purpose Zepellin Yoga Pant. With its thin fleece interior and smooth layer-friendly surface, you\'ll get all the comfort and versatility you need.• Smooth exterior for easy over-layering.• Brushed fleece interior insulates and wicks.• No-roll elastic waistband with inner drawstring.• Chafe-resistant flatlock seams.StyleBase Layer, Leggings, Sweatpants, Track Pants, Workout PantsMaterialFleece, LumaTech™, Spandex, WoolPatternSolidClimateAll-Weather, Cool, Spring, Windy, Wintry','',0,82000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 20:04:56','2020-12-22 20:04:56','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MP08/mp08green_main.jpg','MP08/mp08green_alt1.jpg','MP08/mp08green_back.jpg','MP08/mp08blue_main.jpg','MP08/mp08red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MP09','203010','','','','','Livingston All-Purpose Tight','livingston-all-purpose-tight','','','','','Size,Color','',0,0,0,0,0,'','

It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.

• Breathable stretch organic cotton/spandex.
• Compression fit
• Hidden key pocket
• Elastic waist with internal drawcord.


More Information
StyleBase Layer, Compression, Leggings, Sweatpants, Track Pants
MaterialFleece, Polyester, Rayon, CoolTech™
PatternSolid
ClimateAll-Weather, Cold, Cool, Windy, Wintry
','It\'s not often that your pants work as a yoga staple and a climbing buddy. The Livingston All-Purpose Tight is made with soft, 11% cotton and nylon polymer stretch construction that lets you find the right angle in the studio or on the mountain side.• Breathable stretch organic cotton/spandex.• Compression fit• Hidden key pocket• Elastic waist with internal drawcord.More InformationStyleBase Layer, Compression, Leggings, Sweatpants, Track PantsMaterialFleece, Polyester, Rayon, CoolTech™PatternSolidClimateAll-Weather, Cold, Cool, Windy, Wintry','',0,75000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 20:02:33','2020-12-22 20:02:33','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MP09/mp09blue_main.jpg','MP09/mp09blue_alt1.jpg','MP09/mp09blue_back.jpg','MP09/mp09black_main.jpg','MP09/mp09red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('Mp10','203010','','','','','Orestes Yoga Pant','orestes-yoga-pant','','','','','Size,Color','',0,0,0,0,0,'','

The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.

• A yoga essential.
• Breathable stretch organic cotton/spandex.
• Standard Fit.


More Information
StyleLeggings, Track Pants, Workout Pants
MaterialNylon, Spandex, Organic Cotton
PatternSolid
ClimateCool, Indoor, Mild, Windy, Wintry
','The Orestes Yoga Pant is a yoga basic that sustains the novice yogi well into the expert stage. Organic sustainable cotton and 9% stretch spandex let your body bend to your will while your conscience stays clear.• A yoga essential.• Breathable stretch organic cotton/spandex.• Standard Fit.More InformationStyleLeggings, Track Pants, Workout PantsMaterialNylon, Spandex, Organic CottonPatternSolidClimateCool, Indoor, Mild, Windy, Wintry','',0,66000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 19:59:57','2020-12-22 19:59:57','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','Mp10/mp10black_main.jpg','Mp10/mp10black_alt1.jpg','Mp10/mp10black_back.jpg','Mp10/mp10blue_main.jpg','Mp10/mp10green_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MP11','203010','','','','','Aether Gym Pant','aether-gym-pant','','','','','Size,Color','',0,0,0,1,0,'','

The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.

• Pants/shorts convertible.
• Lightweight moisture wicking.
• Water repellent.
• Belted waist.


More Information
StyleSweatpants, Track Pants, Workout Pants
MaterialCocona® performance fabric, Spandex, Wool
PatternSolid
ClimateAll-Weather, Cold, Cool, Indoor, Mild, Rainy, Spring, Windy
','The Aether Gym Pant is built for the studio, but adapts perfectly well to outdoor and gym environs too. With lightweight stretch fabric and water-repellent exterior, the Aether is ready for all comers.• Pants/shorts convertible.• Lightweight moisture wicking.• Water repellent.• Belted waist.More InformationStyleSweatpants, Track Pants, Workout PantsMaterialCocona® performance fabric, Spandex, WoolPatternSolidClimateAll-Weather, Cold, Cool, Indoor, Mild, Rainy, Spring, Windy','',0,74000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',2,'2020-12-22 19:57:57','2020-12-22 23:38:34','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MP11/mp11brown_main.jpg','MP11/mp11brown_alt1.jpg','MP11/mp11brown_back.jpg','MP11/mp11blue_main.jpg','MP11/mp11green_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MP12','203010','','','','','Cronus Yoga Pant','cronus-yoga-pant','','','','','Size,Color','',0,0,0,0,0,'','

Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.

• Drawstring waist.
• Loose, straight-leg fit.
• Lightweight cotton-recycled blend.
• Front pockets with stitching detail.
• Elastic ankle.


More Information
StyleLeggings, Track Pants, Workout Pants
MaterialCotton, Polyester, Spandex
PatternSolid
ClimateCool, Indoor, Mild, Spring, Windy, Wintry
','Guys who love yoga love this all-purpose yoga pant. Designed for yoga, gym and lounge, the Cronus Yoga Pant is a loose-fitting, classic-style pant made from a lightweight blend of cotton, recycled polyester and a touch of Spandex for the stretch factor.• Drawstring waist.• Loose, straight-leg fit.• Lightweight cotton-recycled blend.• Front pockets with stitching detail.• Elastic ankle.More InformationStyleLeggings, Track Pants, Workout PantsMaterialCotton, Polyester, SpandexPatternSolidClimateCool, Indoor, Mild, Spring, Windy, Wintry','',0,48000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 19:50:26','2020-12-22 19:50:26','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MP12/mp12black_main.jpg','MP12/mp12black_back.jpg','MP12/mp12blue_main.jpg','MP12/mp12red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MS01','201030','','','','','Aero Daily Fitness Tee','aero-daily-fitness-tee','','','','','Size,Color','',0,0,0,0,0,'','

Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.

Relaxed fit.
Short-Sleeve.
Machine wash/dry.


More Information
StyleTee
MaterialPolyester
PatternSolid
ClimateAll-Weather, Indoor, Warm
','Need an everyday action tee that helps keep you dry? The Aero Daily Fitness Tee is made of 100% polyester wicking knit that funnels moisture away from your skin. Don\'t be fooled by its classic style; this tee hides premium performance technology beneath its unassuming look.Relaxed fit.Short-Sleeve.Machine wash/dry.More InformationStyleTeeMaterialPolyesterPatternSolidClimateAll-Weather, Indoor, Warm','',0,24000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 17:11:05','2020-12-22 17:11:05','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MS01/ms01blue_main.jpg','MS01/ms01blue_back.jpg','MS01/ms01black_main.jpg','MS01/ms01brown_main.jpg','MS01/ms01brown_back.jpg','MS01/ms01yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','',''),('MS02','201030','','','','','Ryker LumaTech™ Tee (V-neck)','ryker-lumatech-tee-v-neck','','','','','Size,Color','',0,0,0,0,0,'','

Don\'t be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.

• Relaxed fit.
• Short-Sleeve.
• Machine wash/dry.


More Information
StyleTee
MaterialCotton, LumaTech™, Rayon
PatternSolid
ClimateAll-Weather, Indoor, Warm
','Don\'t be fooled by its classic style; the Ryker LumaTech™ Tee embodies the future of performance apparel. Its featherweight blend of fabrics wicks away moisture to keep you cool and dry, whether racking up miles, hitting three pointers or strutting the boardwalk.• Relaxed fit.• Short-Sleeve.• Machine wash/dry.More InformationStyleTeeMaterialCotton, LumaTech™, RayonPatternSolidClimateAll-Weather, Indoor, Warm','',0,28000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 17:05:54','2020-12-22 17:05:54','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MS02/ms02gray_main.jpg','MS02/ms02gray_alt1.jpg','MS02/ms02gray_back.jpg','MS02/ms02black_main.jpg','MS02/ms02blue_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MS03','201030','','','','','Balboa Persistence Tee','balboa-persistence-tee','','','','','Size,Color','',0,0,0,0,0,'','

The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.

• Crew neckline.
• Semi-fitted.
• Cocona® performance fabric.
• Machine wash/dry.


More Information
StyleTee
MaterialCocona® performance fabric, Polyester
PatternSolid
ClimateAll-Weather, Indoor, Warm
','The Balboa Persistence Tee is a must-have for any athlete, Philadelphia or elsewhere. We took the best of performance apparel, cut the fluff and boiled it down to the basics for a lightweight, quick-drying t-shirt.• Crew neckline.• Semi-fitted.• Cocona® performance fabric.• Machine wash/dry.More InformationStyleTeeMaterialCocona® performance fabric, PolyesterPatternSolidClimateAll-Weather, Indoor, Warm','',0,29000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 17:16:39','2020-12-22 17:16:39','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MS03/ms03black_main.jpg','MS03/ms03black_back.jpg','MS03/ms03gray_main.jpg','MS03/ms03gray_alt1.jpg','MS03/ms03gray_back.jpg','MS03/ms03green_main.jpg','MS03/ms03orange_main.jpg','','','','','','','','','','','','','','','','','','','','','','',''),('MS04','201030','','','','','Gobi HeatTec® Tee','gobi-heattec-tee','','','','','Size,Color','',0,0,0,0,0,'','

When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.

• Orange micropolyester shirt.
• HeatTec® wicking fabric.
• Crew neckline.
• Machine wash/dry.


More Information
StyleTee
MaterialCotton, Polyester, HeatTec®
PatternSolid
ClimateAll-Weather, Indoor, Warm
','When the training gets intense, the Gobi HeatTec® Tee works as hard as you do to maintain your cool. The moisture-wicking material promises drier comfort, while breathable side panels deliver extra stretch that\'s sure to keep you moving.• Orange micropolyester shirt.• HeatTec® wicking fabric.• Crew neckline.• Machine wash/dry.More InformationStyleTeeMaterialCotton, Polyester, HeatTec®PatternSolidClimateAll-Weather, Indoor, Warm','',0,29000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 17:28:24','2020-12-22 17:28:24','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MS04/ms04orange_main.jpg','MS04/ms04orange_back.jpg','MS04/ms04black_main.jpg','MS04/ms04red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MS05','201030','','','','','Helios EverCool™ Tee','helios-evercool-tee','','','','','Size,Color','',0,0,0,0,0,'','

Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.

• Teal quick dry tee.
• Relaxed fit.
• Crew neckline.
• Machine wash/dry.


More Information
StyleTee
MaterialLycra®, EverCool™, Organic Cotton
PatternSolid
ClimateAll-Weather, Indoor, Warm
','Pumping iron or dialing the track, you\'ve got cool comfort on your side in our short-sleeve Helios EverCool™ Tee. The fabric is infused with moisture-wicking technology that pulls sweat off your skin for speedy evaporation. Stretchy fabric gussets encourage ventilation while increasing your range of motion.• Teal quick dry tee.• Relaxed fit.• Crew neckline.• Machine wash/dry.More InformationStyleTeeMaterialLycra®, EverCool™, Organic CottonPatternSolidClimateAll-Weather, Indoor, Warm','',0,24000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 17:25:30','2020-12-22 17:25:30','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MS05/ms05blue_main.jpg','MS05/ms05blue_back.jpg','MS05/ms05black_main.jpg','MS05/ms05purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MS06','201030','','','','','Zoltan Gym Tee','zoltan-gym-tee','','','','','Size,Color','',0,0,0,0,0,'','

This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.

• Relaxed fit.
• Crew neckline.
• Machine wash/dry.


More Information
StyleTee
MaterialPolyester, Organic Cotton
PatternSolid
ClimateAll-Weather, Indoor, Warm
','This short-sleeve wonder works twice as hard to give you good gym days and good looks. The Zoltan Gym Tee helps you stay comfortable, while the looser sleeves and flatlock seams keep you moving in chafe-free comfort.• Relaxed fit.• Crew neckline.• Machine wash/dry.More InformationStyleTeeMaterialPolyester, Organic CottonPatternSolidClimateAll-Weather, Indoor, Warm','',0,29000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 17:13:56','2020-12-22 17:13:56','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MS06/ms06blue_main.jpg','MS06/ms06blue_alt1.jpg','MS06/ms06blue_back.jpg','MS06/ms06green_main.jpg','MS06/ms06yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MS07','201030','','','','','Deion Long-Sleeve EverCool™ Tee','deion-long-sleeve-evercool-tee','','','','','Size,Color','',0,0,0,0,0,'','

When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.

• Fitted.
• Contrast inner neck tape.
• Machine wash/dry.


More Information
StyleTee
MaterialCocona® performance fabric, EverCool™, Organic Cotton
PatternSolid
ClimateAll-Weather, Cool, Indoor, Warm
','When you\'re training, ordinary tees don\'t cut it. That\'s why the Dion Long-Sleeve EverCool™ Tee features revolutionary Cocona® fabric derived from a renewable resource: coconut shells. This unique material protects you from harmful UV rays, wicks away sweat, controls stink and dries quickly.• Fitted.• Contrast inner neck tape.• Machine wash/dry.More InformationStyleTeeMaterialCocona® performance fabric, EverCool™, Organic CottonPatternSolidClimateAll-Weather, Cool, Indoor, Warm','',0,39000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 17:00:06','2020-12-22 17:00:44','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MS07/ms07green_main.jpg','MS07/ms07green_alt1.jpg','MS07/ms07green_back.jpg','MS07/ms07black_main.jpg','MS07/ms07white_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MS08','201030','','','','','Strike Endurance Tee','strike-endurance-tee','','','','','Size,Color','',0,0,0,0,0,'','

While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.

• Loose fit.
• Ribbed cuffs/collar.
• Machine wash/dry.


More Information
StyleTee
MaterialPolyester, Organic Cotton
PatternSolid
ClimateAll-Weather, Cool, Indoor, Warm
','While grit and purpose keep you going, it helps to have a little extra comfort, too. Our Strike Long-Sleeve Endurance Tee helps ensures a photo-ready finish with advanced sweat-wicking technology for a cool, dry feel.• Loose fit.• Ribbed cuffs/collar.• Machine wash/dry.More InformationStyleTeeMaterialPolyester, Organic CottonPatternSolidClimateAll-Weather, Cool, Indoor, Warm','',0,39000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 16:57:56','2020-12-22 17:01:13','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MS08/ms08black_main.jpg','MS08/ms08black_back.jpg','MS08/ms08blue_main.jpg','MS08/ms08red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MS09','201030','','','','','Ryker LumaTech™ Tee (Crew-neck)','ryker-lumatech-tee-crew-neck','','','','','Size,Color','',0,0,0,0,0,'','

The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.

• Royal polyester tee with black accents.
• Relaxed fit.
• Short-Sleeve.
• Machine wash/dry.


More Information
StyleTee
MaterialLumaTech™, Polyester
PatternSolid
ClimateAll-Weather, Indoor, Warm
','The crew-neck Ryker LumaTech™ Tee hides premium performance technology beneath unassuming looks. The featherweight blend of fabrics wicks away moisture to keep you cool and dry in every phase of your active life.• Royal polyester tee with black accents.• Relaxed fit.• Short-Sleeve.• Machine wash/dry.More InformationStyleTeeMaterialLumaTech™, PolyesterPatternSolidClimateAll-Weather, Indoor, Warm','',0,32000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 17:23:25','2020-12-22 17:23:25','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MS09/ms09blue_main.jpg','MS09/ms09blue_alt1.jpg','MS09/ms09blue_back.jpg','MS09/ms09black_main.jpg','MS09/ms09red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MS10','201030','','','','','Logan HeatTec® Tee','logan-heattec-tee','','','','','Size,Color','',1,0,0,0,0,'','

Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.

• Semi-fitted.
• Crew neckline.
• Machine wash/tumble dry.


More Information
StyleTee
MaterialCotton, HeatTec®
PatternSolid
ClimateAll-Weather, Indoor, Warm
','Soft and lightweight, the Logan HeatTec® Tee gets you through the long haul in total comfort. It boasts superior sweat-wicking performance to keep skin dry and cool, and strategic flat-lock seams to resist chafing.• Semi-fitted.• Crew neckline.• Machine wash/tumble dry.More InformationStyleTeeMaterialCotton, HeatTec®PatternSolidClimateAll-Weather, Indoor, Warm','',0,24000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',2,'2020-12-22 17:03:33','2020-12-22 23:36:08','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MS10/ms10blue_main.jpg','MS10/ms10blue_alt1.jpg','MS10/ms10blue_back.jpg','MS10/ms10black_main.jpg','MS10/ms10red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MS11','201030','','','','','Atomic Endurance Running Tee (V-neck)','atomic-endurance-running-tee-v-neck','','','','','Size,Color','',0,0,0,0,0,'','

Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.

• Lime heathered v-neck tee.
• Ultra-lightweight.
• Moisture-wicking Cocona® fabric.
• Machine wash/dry.


More Information
StyleTee
MaterialCocona® performance fabric, Polyester, Organic Cotton
PatternSolid
ClimateAll-Weather, Indoor, Warm
','Reach your limit and keep on going in the Atomic Endurance Running Tee. Built to help any athlete push past the wall with loads of performance features.• Lime heathered v-neck tee.• Ultra-lightweight.• Moisture-wicking Cocona® fabric.• Machine wash/dry.More InformationStyleTeeMaterialCocona® performance fabric, Polyester, Organic CottonPatternSolidClimateAll-Weather, Indoor, Warm','',0,28000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 17:20:53','2020-12-22 17:20:53','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MS11/ms11green_main.jpg','MS11/ms11green_back.jpg','MS11/ms11blue_main.jpg','MS11/ms11yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MS12','201030','','','','','Atomic Endurance Running Tee (Crew-Neck)','atomic-endurance-running-tee-crew-neck','','','','','Size,Color','',0,0,0,0,0,'','

Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.

• Red polyester tee.
• Crew neckline.
• Cocona® performance fabric.
• Machine wash/dry.


More Information
StyleTee
MaterialCocona® performance fabric, Polyester, Organic Cotton
PatternSolid
ClimateAll-Weather, Indoor, Warm
','Like it\'s v-neck counterpart, the crew-neck Atomic Tee will get you to your goal and beyond with its many load-bearing features: ultra-lightweight, moisture-wicking Cocona® fabric, chafe-free flatlock seams and an ergonomic cut that moves with your body.• Red polyester tee.• Crew neckline.• Cocona® performance fabric.• Machine wash/dry.More InformationStyleTeeMaterialCocona® performance fabric, Polyester, Organic CottonPatternSolidClimateAll-Weather, Indoor, Warm','',0,29000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 17:19:04','2020-12-22 17:19:04','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MS12/ms12red_main.jpg','MS12/ms12red_alt1.jpg','MS12/ms12red_back.jpg','MS12/ms12black_main.jpg','MS12/ms12blue_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MSH01','203020','','','','','Cobalt CoolTech™ Fitness Short','cobalt-cooltech-fitness-short','','','','','Size,Color','',0,0,0,0,0,'','

that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.

• Light blue nylon shorts.
• Relaxed fit.
• 5\" inseam.
• Machine wash/dry.


More Information
StyleBase Layer, Workout Pants
MaterialNylon, Polyester, CoolTech™, Wool
PatternSolid
ClimateAll-Weather, Indoor, Hot
','that keep you ventilated and comfortable for the distance. The elastic waist promises a personalized fit.• Light blue nylon shorts.• Relaxed fit.• 5\" inseam.• Machine wash/dry.More InformationStyleBase Layer, Workout PantsMaterialNylon, Polyester, CoolTech™, WoolPatternSolidClimateAll-Weather, Indoor, Hot','',0,44000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 21:09:47','2020-12-22 21:09:47','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MSH01/msh01blue_main.jpg','MSH01/msh01blue_back.jpg','MSH01/msh01black_main.jpg','MSH01/msh01red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MSH02','203020','','','','','Apollo Running Short','apollo-running-short','','','','','Size,Color','',0,0,0,0,0,'','

Fleet of foot or slow and steady, you\'ll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.

• Black shorts with green accents.
• Side pockets.
• 4\" inseam.
• Machine wash/dry.


More Information
StyleBase Layer, Workout Pants
MaterialPolyester, Rayon
PatternSolid
ClimateAll-Weather, Indoor, Warm
','Fleet of foot or slow and steady, you\'ll be in complete comfort with the Apollo Running Short. Lightweight polyester material lets you move with ease, and mesh side panels promise plenty of ventilation as you work up a sweat. The stretchy elastic waistband delivers a flexible fit.• Black shorts with green accents.• Side pockets.• 4\" inseam.• Machine wash/dry.More InformationStyleBase Layer, Workout PantsMaterialPolyester, RayonPatternSolidClimateAll-Weather, Indoor, Warm','',0,32500,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 21:07:55','2020-12-22 21:07:55','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MSH02/msh02black_main.jpg','MSH02/msh02black_alt1.jpg','MSH02/msh02black_back.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MSH03','203020','','','','','Meteor Workout Short','meteor-workout-short','','','','','Size,Color','',0,0,0,0,0,'','

Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.

• Royal blue shorts with light blue accents.
• Interior drawstring waistband.
• 7\" inseam.
• Machine wash/dry.


More Information
StyleBase Layer, Workout Pants
MaterialCocona® performance fabric, Polyester
PatternSolid
ClimateAll-Weather, Spring, Warm
','Step into the Meteor Workout Short for an incredibly lightweight fitness experience. Its breathable construction and an inner brief provide additional comfort and support, while the adjustable waistband offers the perfect fit to take you to the finish.• Royal blue shorts with light blue accents.• Interior drawstring waistband.• 7\" inseam.• Machine wash/dry.More InformationStyleBase Layer, Workout PantsMaterialCocona® performance fabric, PolyesterPatternSolidClimateAll-Weather, Spring, Warm','',0,32500,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-22 21:04:44','2020-12-22 21:04:44','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MSH03/msh03blue_main.jpg','MSH03/msh03blue_alt1.jpg','MSH03/msh03blue_back.jpg','MSH03/msh03black_main.jpg','MSH03/msh03green_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MSH04','203020','','','','','Torque Power Short','torque-power-short','','','','','Size,Color','',0,0,0,0,0,'','

Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.

• Light gray shorts.
• Fitted design.
• Elastic waistband.
• Flat-seam construction.
• 7\" inseam.
• Machine wash/dry.


More Information
StyleBase Layer, Workout Pants
MaterialNylon, Polyester, CoolTech™
PatternSolid
ClimateIndoor, Mild, Spring, Warm, Hot
','Take a turn in the Torque Power Short and enjoy the smooth, motion-friendly stretch and sweat-wicking, UV-protective material. You\'ll stay cool, dry and energized miles later.• Light gray shorts.• Fitted design.• Elastic waistband.• Flat-seam construction.• 7\" inseam.• Machine wash/dry.More InformationStyleBase Layer, Workout PantsMaterialNylon, Polyester, CoolTech™PatternSolidClimateIndoor, Mild, Spring, Warm, Hot','',0,32500,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 21:01:01','2020-12-22 21:01:01','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MSH04/msh04gray_main.jpg','MSH04/msh04gray_back.jpg','MSH04/msh04purple_main.jpg','MSH04/msh04yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MSH05','203020','','','','','Hawkeye Yoga Short','hawkeye-yoga-short','','','','','Size,Color','',0,0,0,0,0,'','

What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.

• Dark gray shorts with red accents.
• 92% Organic Cotton 8% Spandex.
• Breathable stretch organic cotton.
• Medium=8.0\" (21.0cm) inseam.


More Information
StyleBase Layer, Workout Pants
MaterialPolyester, Rayon, CoolTech™, Linen, Wool
PatternSolid, Striped
ClimateIndoor, Spring, Warm
','What more do you need than a sporty yoga short made with organic cotton and a little spandex for mobility? The Hawkeye Yoga Short brings a stylish, standard fit you can sport with confidence outside the studio.• Dark gray shorts with red accents.• 92% Organic Cotton 8% Spandex.• Breathable stretch organic cotton.• Medium=8.0\" (21.0cm) inseam.More InformationStyleBase Layer, Workout PantsMaterialPolyester, Rayon, CoolTech™, Linen, WoolPatternSolid, StripedClimateIndoor, Spring, Warm','',0,29000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 20:58:59','2020-12-22 20:58:59','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MSH05/msh05gray_main.jpg','MSH05/msh05gray_alt1.jpg','MSH05/msh05gray_back.jpg','MSH05/msh05black_main.jpg','MSH05/msh05blue_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MSH06','203020','','','','','Lono Yoga Short','lono-yoga-short','','','','','Size,Color','',0,0,0,0,0,'','

Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.

• Dark gray shorts with mesh accents.
• Ultra flexible four-way stretch.
• Flatlock seams and waistband.
• Two pockets, phony fly.
• Nylon/Lycra outer, Polyester/Lycra inner.


More Information
StyleBase Layer, Compression, Workout Pants
MaterialNylon, Polyester, Rayon
PatternSolid
ClimateAll-Weather, Indoor, Warm, Hot
','Some shorts are “all-purpose,” while the Lono Yoga Short has a single purpose: yoga. Soft, flexible outer material moves with your body, and a secure, integrated boxer brief liner gives you extra confidence as you push your physique to the outer limits.• Dark gray shorts with mesh accents.• Ultra flexible four-way stretch.• Flatlock seams and waistband.• Two pockets, phony fly.• Nylon/Lycra outer, Polyester/Lycra inner.More InformationStyleBase Layer, Compression, Workout PantsMaterialNylon, Polyester, RayonPatternSolidClimateAll-Weather, Indoor, Warm, Hot','',0,32000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 20:56:37','2020-12-22 20:56:37','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MSH06/msh06gray_main.jpg','MSH06/msh06gray_alt1.jpg','MSH06/msh06gray_back.jpg','MSH06/msh06blue_main.jpg','MSH06/msh06red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MSH07','203020','','','','','Rapha Sports Short','rapha-sports-short','','','','','Size,Color','',0,0,0,0,0,'','

For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.

• Black shorts with royal accents.
• Compression liner.
• Inseam: 8\".
• Machine wash/dry.


More Information
StyleBase Layer, Compression, Workout Pants
MaterialMesh, Polyester, Rayon, CoolTech™
PatternSolid, Striped
ClimateIndoor, Spring, Warm
','For those about to sweat, we support you with the Rapha Sports Short. The compression-fit liner surrounds your muscles with the stimulation they need to find your high gear, while moisture-wicking performance fabric helps prevents sweat build-up.• Black shorts with royal accents.• Compression liner.• Inseam: 8\".• Machine wash/dry.More InformationStyleBase Layer, Compression, Workout PantsMaterialMesh, Polyester, Rayon, CoolTech™PatternSolid, StripedClimateIndoor, Spring, Warm','',0,35000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 20:54:01','2020-12-22 20:54:01','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MSH07/msh07black_main.jpg','MSH07/msh07black_alt1.jpg','MSH07/msh07black_back.jpg','MSH07/msh07blue_main.jpg','MSH07/msh07purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MSH08','203020','','','','','Orestes Fitness Short','orestes-fitness-short','','','','','Size,Color','',0,0,0,0,0,'','

You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.

• Black shorts with dark gray accents.
• Elasticized waistband with interior drawstring.
• Ventilating mesh detailing.
• 100% polyester and recycled polyester.
• Machine wash cold, tumble dry low.


More Information
StyleBase Layer, Workout Pants
MaterialLumaTech™, Polyester
PatternSolid
ClimateAll-Weather, Indoor, Hot
','You\'re out of excuses not to run, lift, or play when you own a pair of the Orestes Fitness Short. You won\'t complain about the high-performance polyester wicking fabric, reflective safety trim or seamless built-in comfort brief, either.• Black shorts with dark gray accents.• Elasticized waistband with interior drawstring.• Ventilating mesh detailing.• 100% polyester and recycled polyester.• Machine wash cold, tumble dry low.More InformationStyleBase Layer, Workout PantsMaterialLumaTech™, PolyesterPatternSolidClimateAll-Weather, Indoor, Hot','',0,35000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 20:51:59','2020-12-22 20:51:59','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MSH08/msh08black_main.jpg','MSH08/msh08black_back.jpg','MSH08/msh08blue_main.jpg','MSH08/msh08green_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MSH09','203020','','','','','Troy Yoga Short','troy-yoga-short','','','','','Size,Color','',0,0,0,0,0,'','

The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.

• Navy polyester pinstripe shorts.
• Woven fabric with moderate stretch.
• 62% cotton/34% nylon/4% spandex.
• LumaTech™ lining.


More Information
StyleBase Layer, Workout Pants
MaterialCotton, LumaTech™, Nylon, Spandex
PatternSolid
ClimateIndoor, Warm, Hot
','The versatile, all-purpose Troy Yoga Short is knee-lengthed with an elastic waistband with drawstring, making it comfortably flexible. The removable LumaTech™ wicking liner is also bacteria resistant.• Navy polyester pinstripe shorts.• Woven fabric with moderate stretch.• 62% cotton/34% nylon/4% spandex.• LumaTech™ lining.More InformationStyleBase Layer, Workout PantsMaterialCotton, LumaTech™, Nylon, SpandexPatternSolidClimateIndoor, Warm, Hot','',0,24000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 20:49:28','2020-12-22 20:49:28','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MSH09/msh09blue_main.jpg','MSH09/msh09blue_alt1.jpg','MSH09/msh09blue_back.jpg','MSH09/msh09black_main.jpg','MSH09/msh09green_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MSH10','203020','','','','','Sol Active Short','sol-active-short','','','','','Size,Color','',0,0,0,0,0,'','

You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.

• Light blue jersey shorts with mesh detail.
• 87% Spandex 13% Lycra.
• Machine wash cold, tumble dry low.
• Superior performance fabric.
• Flat-lock seams.


More Information
StyleBase Layer, Workout Pants
MaterialLycra®, Spandex
PatternSolid
ClimateIndoor, Warm, Hot
','You\'ll let your fear go and push your limits in your new Sol Active Short. Featuring ultra-breathable performance fabric and a flat comfort-fit waistband, the Sol Active Short is perfect for high-intensity circuits or high-heat bikram.• Light blue jersey shorts with mesh detail.• 87% Spandex 13% Lycra.• Machine wash cold, tumble dry low.• Superior performance fabric.• Flat-lock seams.More InformationStyleBase Layer, Workout PantsMaterialLycra®, SpandexPatternSolidClimateIndoor, Warm, Hot','',0,32000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 20:47:21','2020-12-22 20:47:21','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MSH10/msh10blue_main.jpg','MSH10/msh10blue_alt1.jpg','MSH10/msh10blue_back.jpg','MSH10/msh10green_main.jpg','MSH10/msh10purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MSH11','203020','','','','','Arcadio Gym Short','arcadio-gym-short','','','','','Size,Color','',0,0,0,0,0,'','

you need, plus more.

• Royal blue cotton shorts.
• Built-in mesh brief.
• 87% Spandex 13% Lycra.
• Adjustable drawstring.


More Information
StyleBase Layer, Compression, Workout Pants
MaterialLycra®, Spandex
PatternSolid
ClimateAll-Weather, Indoor, Spring, Warm, Hot
','you need, plus more.• Royal blue cotton shorts.• Built-in mesh brief.• 87% Spandex 13% Lycra.• Adjustable drawstring.More InformationStyleBase Layer, Compression, Workout PantsMaterialLycra®, SpandexPatternSolidClimateAll-Weather, Indoor, Spring, Warm, Hot','',0,20000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 20:43:48','2020-12-22 20:43:48','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MSH11/msh11blue_main.jpg','MSH11/msh11blue_back.jpg','MSH11/msh11black_main.jpg','MSH11/msh11red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MSH12','203020','','','','','Pierce Gym Short','pierce-gym-short','','','','','Size,Color','',0,1,0,0,0,'','

The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.

• Dark red cotton shorts.
• 87% Supplex, 13% Lycra.
• Adjustable drawstring waistband.
• Built-in mesh brief.
• Machine wash cold, tumble dry low.


More Information
StyleBase Layer, Compression, Tights, Workout Pants
MaterialLumaTech™, Mesh, Spandex
PatternSolid
ClimateIndoor, Warm, Hot
','The Pierce Gym Short is similar to our Arcadio Gym Short, but designed with a fitted, tapered look. A flat waistband with an adjustable drawstring adds comfort, with zippered pockets for safe, easy storage.• Dark red cotton shorts.• 87% Supplex, 13% Lycra.• Adjustable drawstring waistband.• Built-in mesh brief.• Machine wash cold, tumble dry low.More InformationStyleBase Layer, Compression, Tights, Workout PantsMaterialLumaTech™, Mesh, SpandexPatternSolidClimateIndoor, Warm, Hot','',0,27000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',2,'2020-12-22 20:39:49','2020-12-22 23:38:02','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MSH12/msh12red_main.jpg','MSH12/msh12red_back.jpg','MSH12/msh12black_main.jpg','MSH12/msh12gray_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MT01','201040','','','','','Erikssen CoolTech™ Fitness Tank','erikssen-cooltech-fitness-tank','','','','','Size,Color','',0,0,0,0,0,'','

A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.

• Red performance tank.
• Slight scoop neckline.
• Reflectivity.
• Machine wash/dry.


More Information
StyleTank
MaterialCotton, Polyester, HeatTec®
PatternSolid
ClimateAll-Weather, Indoor, Warm
','A good running tank helps make the miles pass by keep you cool. The Erikssen CoolTech™ Fitness Tank completes that mission, with performance fabric engineered to wick perspiration and promote airflow.• Red performance tank.• Slight scoop neckline.• Reflectivity.• Machine wash/dry.More InformationStyleTankMaterialCotton, Polyester, HeatTec®PatternSolidClimateAll-Weather, Indoor, Warm','',0,29000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 19:44:46','2020-12-22 19:44:46','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MT01/mt01red_main.jpg','MT01/mt01red_alt1.jpg','MT01/mt01red_back.jpg','MT01/mt01gray_main.jpg','MT01/mt01orange_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('MT02','201040','','','','','Tristan Endurance Tank','tristan-endurance-tank','','','','','Size,Color','',0,0,0,0,0,'','

Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.

• White performance tank.
• Stylish contrast stitching.
• Relaxed fit.
• Ribbed crew neckline.
• Machine wash/dry.


More Information
StyleTank
MaterialLycra®, EverCool™, Organic Cotton
PatternSolid
ClimateAll-Weather, Indoor, Warm
','Push yourself through punishing runs, plyometric workouts, intense competition and more in our athletic Tristan Endurance Tank. Constructed with built-in moisture-wicking technology, it\'s designed to keep you completely cool and dry on the long haul.• White performance tank.• Stylish contrast stitching.• Relaxed fit.• Ribbed crew neckline.• Machine wash/dry.More InformationStyleTankMaterialLycra®, EverCool™, Organic CottonPatternSolidClimateAll-Weather, Indoor, Warm','',0,29000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 19:43:00','2020-12-22 19:43:00','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MT02/mt02white_main.jpg','MT02/mt02white_alt1.jpg','MT02/mt02white_back.jpg','MT02/mt02white_sideb.jpg','MT02/mt02gray_main.jpg','MT02/mt02red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','',''),('MT03','201040','','','','','Primo Endurance Tank','primo-endurance-tank','','','','','Size,Color','',0,0,0,0,0,'','

Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.

• Red heather tank with gray pocket.
• Chafe-resistant flatlock seams.
• Relaxed fit.
• Contrast topstitching.
• Machine wash/dry.


More Information
StyleTank
MaterialLumaTech™, Polyester
PatternSolid
ClimateAll-Weather, Indoor, Warm
','Chances are your workout goes beyond free weights, which is why the Primo Endurance Tank employs maximum versatility. Run, lift or play ball – this breathable mesh top will keep you cool during all your activities.• Red heather tank with gray pocket.• Chafe-resistant flatlock seams.• Relaxed fit.• Contrast topstitching.• Machine wash/dry.More InformationStyleTankMaterialLumaTech™, PolyesterPatternSolidClimateAll-Weather, Indoor, Warm','',0,29000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 19:40:53','2020-12-22 19:40:53','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MT03/mt03red_main.jpg','MT03/mt03blue_main.jpg','MT03/mt03yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MT04','201040','','','','','Helios Endurance Tank','helios-endurance-tank','','','','','Size,Color','',0,1,0,0,0,'','

When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.

• Blue heather tank with gray pocket.
• Contrast sides and back inserts.
• Self-fabric binding at neck and armholes.
• Machine wash/dry.


More Information
StyleTank
MaterialCocona® performance fabric, Polyester, Organic Cotton
PatternSolid
ClimateAll-Weather, Indoor, Warm
','When training pushes your limits, you need gear that works harder than you. Our mesh Helio Training Tank is crafted from super-soft, ultra-lightweight fabric that stretches in all directions to follow your every move, on mat, court or street.• Blue heather tank with gray pocket.• Contrast sides and back inserts.• Self-fabric binding at neck and armholes.• Machine wash/dry.More InformationStyleTankMaterialCocona® performance fabric, Polyester, Organic CottonPatternSolidClimateAll-Weather, Indoor, Warm','',0,32000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-22 19:38:19','2020-12-22 23:37:19','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MT04/mt04blue_main.jpg','MT04/mt04blue_alt1.jpg','MT04/mt04blue_back.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MT05','201040','','','','','Rocco Gym Tank','rocco-gym-tank','','','','','Size,Color','',0,0,0,0,0,'','

Weights? Heavy Bag? Bikram? However you get sweaty, you\'ll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.

• Light blue heather gray tank.
• Quick-drying, moisture-wicking.
• 4-way stretch construction.
• Flatlock seams prevent chafing.
• Mesh at back for breathability.
• 100% Polyester.
• UPF 50 protection.


More Information
StyleTank
MaterialCocona® performance fabric, Polyester, Organic Cotton
PatternSolid
ClimateAll-Weather, Indoor, Warm
','Weights? Heavy Bag? Bikram? However you get sweaty, you\'ll be prepared with the moisture-wicking all-purpose Rocco Gym Tank. The free-moving cut gives you maximum range of motion, with flatlock seams to eliminate chafing.• Light blue heather gray tank.• Quick-drying, moisture-wicking.• 4-way stretch construction.• Flatlock seams prevent chafing.• Mesh at back for breathability.• 100% Polyester.• UPF 50 protection.More InformationStyleTankMaterialCocona® performance fabric, Polyester, Organic CottonPatternSolidClimateAll-Weather, Indoor, Warm','',0,24000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 19:36:53','2020-12-22 19:36:53','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MT05/mt05blue_main.jpg','MT05/mt05blue_back.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MT06','201040','','','','','Vulcan Weightlifting Tank','vulcan-weightlifting-tank','','','','','Size,Color','',0,0,0,0,0,'','

The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.

• Black polyester spandex tank.
• 100% polyester.
• Freedom of movement.
• No-chafe seams.


More Information
StyleTank
MaterialCocona® performance fabric, Polyester
PatternSolid
ClimateAll-Weather, Indoor, Warm
','The Olympic styled Vulcan Weightlifting Tank features polyester stretch and flex. Hit the rack in sleeveless style and unleash your personal best. This tank is designed to max performance, comfort and range of motion.• Black polyester spandex tank.• 100% polyester.• Freedom of movement.• No-chafe seams.More InformationStyleTankMaterialCocona® performance fabric, PolyesterPatternSolidClimateAll-Weather, Indoor, Warm','',0,28000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 19:35:26','2020-12-22 19:35:26','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MT06/mt06black_main.jpg','MT06/mt06black_back.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MT07','201040','','','','','Argus All-Weather Tank','argus-all-weather-tank','','','','','Size,Color','',0,0,0,0,0,'','

The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.

• Dark gray polyester spandex tank.
• Reflective details for nighttime visibility.
• Stash pocket.
• Anti-chafe flatlock seams.


More Information
StyleTank
MaterialPolyester, Organic Cotton
PatternSolid
ClimateAll-Weather, Indoor, Warm
','The Argus All-Weather Tank is sure to become your favorite base layer or go-to cover for hot outdoor workouts. With its subtle reflective safely trim, you can even wear it jogging on urban evenings.• Dark gray polyester spandex tank.• Reflective details for nighttime visibility.• Stash pocket.• Anti-chafe flatlock seams.More InformationStyleTankMaterialPolyester, Organic CottonPatternSolidClimateAll-Weather, Indoor, Warm','',0,22000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 19:33:59','2020-12-22 19:33:59','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MT07/mt07gray_main.jpg','MT07/mt07gray_back.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MT08','201040','','','','','Sparta Gym Tank','sparta-gym-tank','','','','','Size,Color','',0,0,0,0,0,'','

The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.

• Green polyester tank.
• Ultra lightweight.
• Naturally odor-resistant.
• Close-to-body athletic fit.
• Chafe-resistant flatlock seams.


More Information
StyleTank
MaterialPolyester
PatternSolid
ClimateAll-Weather, Indoor, Warm
','The high performance Sparta Gym Tank is made with thin, light, merino wool and aims to be the perfect base layer or balmy weather running and fitness top.• Green polyester tank.• Ultra lightweight.• Naturally odor-resistant.• Close-to-body athletic fit.• Chafe-resistant flatlock seams.More InformationStyleTankMaterialPolyesterPatternSolidClimateAll-Weather, Indoor, Warm','',0,29000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 19:32:28','2020-12-22 19:32:28','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MT08/mt08green_main.jpg','MT08/mt08green_alt1.jpg','MT08/mt08green_back.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MT09','201040','','','','','Sinbad Fitness Tank','sinbad-fitness-tank','','','','','Size,Color','',1,0,0,0,0,'','

Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.

• Teal polyester tank.
• Premium fit tank top.
• Ultra lightweight.
• Naturally odor-resistant.


More Information
StyleTank
MaterialPolyester
PatternSolid
ClimateAll-Weather, Indoor, Warm
','Solid in color and construction, the 100% cotton-weave Sinbad Fitness Tank moves with you as you press, hold, crunch and stride your way to the ultimate you.• Teal polyester tank.• Premium fit tank top.• Ultra lightweight.• Naturally odor-resistant.More InformationStyleTankMaterialPolyesterPatternSolidClimateAll-Weather, Indoor, Warm','',0,29000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-22 19:30:54','2020-12-22 23:23:49','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MT09/mt09blue_main.jpg','MT09/mt09blue_alt1.jpg','MT09/mt09blue_back.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MT10','201040','','','','','Tiberius Gym Tank','tiberius-gym-tank','','','','','Size,Color','',0,0,0,0,0,'','

Whether you\'re classy or just sweaty, the Tiberius Gym Tank helps you look good while you\'re at it. What\'s more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you\'re welcome back to the gym.

• Yellow scoop neck cotton tank.
• Comfortable, relaxed fit.
• 55% Hemp / 45% Organic Cotton.
• Pesticide- and herbicide-free hemp.


More Information
StyleTank
MaterialCocona® performance fabric, EverCool™, Organic Cotton
PatternSolid
ClimateAll-Weather, Indoor, Warm
','Whether you\'re classy or just sweaty, the Tiberius Gym Tank helps you look good while you\'re at it. What\'s more, its moisture-wicking, quick-drying, anti-microbial and anti-odor construction help ensure you\'re welcome back to the gym.• Yellow scoop neck cotton tank.• Comfortable, relaxed fit.• 55% Hemp / 45% Organic Cotton.• Pesticide- and herbicide-free hemp.More InformationStyleTankMaterialCocona® performance fabric, EverCool™, Organic CottonPatternSolidClimateAll-Weather, Indoor, Warm','',0,18000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 19:29:15','2020-12-22 19:29:15','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MT10/mt10yellow_main.jpg','MT10/mt10yellow_back.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MT11','201040','','','','','Atlas Fitness Tank','atlas-fitness-tank','','','','','Size,Color','',0,0,0,0,0,'','

From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.

• Teal scoop neck cotton tank.
• Triblend, soft fabric.
• Relaxed fit.


More Information
StyleTank
MaterialPolyester, Organic Cotton
PatternSolid
ClimateAll-Weather, Indoor, Warm


','From weekend warrior to Warrior Pose II, no role can beat the Atlas Fitness Tank, a versatile top for gym and yoga studio. Wicking-weave soft fabric helps prevent uncomfortable chafing.• Teal scoop neck cotton tank.• Triblend, soft fabric.• Relaxed fit.More InformationStyleTankMaterialPolyester, Organic CottonPatternSolidClimateAll-Weather, Indoor, Warm','',0,18000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 19:27:56','2020-12-22 19:27:56','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MT11/mt11blue_main.jpg','MT11/mt11blue_back.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('MT12','201040','','','','','Cassius Sparring Tank','cassius-sparring-tank','','','','','Size,Color','',0,0,0,0,0,'','

Whether you\'re up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.

• Royal crewneck cotton tank.
• Contrast stitching.
• Self fabric binding at neckline.
• Slim fit.
• 96% Merino / 4% LYCRA®.


More Information
StyleTank
MaterialLumaTech™, Polyester
PatternSolid
ClimateAll-Weather, Indoor, Warm
','Whether you\'re up against a partner or the clock, the Cassius Sparring Tank is in your corner, moving effortless with your body. The light and loose feel gives you no reason to give up before the bell or the end of the block.• Royal crewneck cotton tank.• Contrast stitching.• Self fabric binding at neckline.• Slim fit.• 96% Merino / 4% LYCRA®.More InformationStyleTankMaterialLumaTech™, PolyesterPatternSolidClimateAll-Weather, Indoor, Warm','',0,18000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 19:26:27','2020-12-22 19:26:27','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','MT12/mt12blue_main.jpg','MT12/mt12blue_back.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WB01','101040','','','','','Electra Bra Top','electra-bra-top','','','','','Size,Color','',0,0,0,1,0,'','

A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.

• Gray rouched bra top.
• Attractive back straps feature contrasting motif fabric.
• Interior bra top is lined with breathable mesh.
• Elastic underband for superior support.
• Removable cup inserts.
• Chafe-free flat lock seams provide added comfort.


More Information
StyleBra
MaterialPolyester, EverCool™, Organic Cotton
PatternSolid
ClimateIndoor, Warm
','A heavenly soft and stylish eco garment, the Electra Bra Top is perfect for wearing on its own as a hot yoga top or layered under a tank.• Gray rouched bra top.• Attractive back straps feature contrasting motif fabric.• Interior bra top is lined with breathable mesh.• Elastic underband for superior support.• Removable cup inserts.• Chafe-free flat lock seams provide added comfort.More InformationStyleBraMaterialPolyester, EverCool™, Organic CottonPatternSolidClimateIndoor, Warm','',0,39000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-22 13:31:12','2020-12-22 23:39:37','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WB01/wb01gray_main.jpg','WB01/wb01gray_alt1.jpg','WB01/wb01gray_back.jpg','WB01/wb01black_main.jpg','WB01/wb01purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WB02','101040','','','','','Erica Evercool Sports Bra','erica-evercool-sports-bra','','','','','Size,Color','',0,0,0,0,0,'','

Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.

• Honeycomb light blue bra top.
• Elastic hem.
• Reinforced binding.
• Machine wash/dry.


More Information
StyleBra
MaterialLycra®, EverCool™
PatternSolid
ClimateIndoor, Warm
','Perfect for medium-impact workouts, our Erica EverCool™ Sports Bra brings a brilliant combo of comfort and style. Moisture-wicking technology keeps you dry, and the flattering hybrid racerback promises an unbeatable range of motion.• Honeycomb light blue bra top.• Elastic hem.• Reinforced binding.• Machine wash/dry.More InformationStyleBraMaterialLycra®, EverCool™PatternSolidClimateIndoor, Warm','',0,39000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 13:29:19','2020-12-22 13:29:19','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WB02/wb02blue_main.jpg','WB02/wb02blue_alt1.jpg','WB02/wb02blue_back.jpg','WB02/wb02orange_main.jpg','WB02/wb02yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WB03','101040','','','','','Celeste Sports Bra','celeste-sports-bra','','','','','Size,Color','',0,0,1,0,0,'','

Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.

• Mint bra top.
• Seam-free interior molded cups
• Odor control.
• UV protection.
• Machine wash/dry.


More Information
StyleBra
MaterialCocona® performance fabric, Organic Cotton
PatternSolid
ClimateIndoor, Warm


','Whatever your goals for the day\'s workout, the Celeste Sports Bra lets you do it in comfort and coolness, plus enhanced support and shaping. A power mesh back zone and moisture-wicking fabric ensure you stay dry.• Mint bra top.• Seam-free interior molded cups• Odor control.• UV protection.• Machine wash/dry.More InformationStyleBraMaterialCocona® performance fabric, Organic CottonPatternSolidClimateIndoor, Warm','',0,39000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-22 13:27:26','2020-12-22 23:27:33','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WB03/wb03green_main.jpg','WB03/wb03green_alt1.jpg','WB03/wb03green_back.jpg','WB03/wb03red_main.jpg','WB03/wb03yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WB04','101040','','','','','Prima Compete Bra Top','prima-compete-bra-top','','','','','Size,Color','',0,0,0,0,0,'','

Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats.
`
• Colorblocked details.
• Machine wash/line dry. 


More Information
StyleBra
MaterialSpandex, EverCool™, Organic Cotton
PatternSolid
ClimateIndoor, Warm
','Pull on the Prima Compete Bra Top and you\'ll love the fabric: soft, stretchy, and ultra lightweight. But you\'ll also love the racerback cut, for freer movement through all your athletic feats.`• Colorblocked details.• Machine wash/line dry. More InformationStyleBraMaterialSpandex, EverCool™, Organic CottonPatternSolidClimateIndoor, Warm','',0,24000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 13:24:38','2020-12-22 13:24:38','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WB04/wb04blue_main.jpg','WB04/wb04blue0.jpg','WB04/wb04blue_alt1.jpg','WB04/wb04blue_back.jpg','WB04/wb04purple_main.jpg','WB04/wb04yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','',''),('WB05','101040','','','','','Lucia Cross-Fit Bra','lucia-cross-fit-bra','','','','','Size,Color','',0,0,0,0,0,'','

Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.

• Black/white bra top.
• Criss-cross back design.
• Machine wash/dry.


StyleBra
MaterialNylon, Microfiber, Polyester
PatternChecked
ClimateIndoor, Warm
','Being cool is a big part of being comfy, which is why the Lucia Cross-Fit Bra features moisture-wicking technology as well as soft, lightweight fabric.• Black/white bra top.• Criss-cross back design.• Machine wash/dry.StyleBraMaterialNylon, Microfiber, PolyesterPatternCheckedClimateIndoor, Warm','',0,39000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 13:22:31','2020-12-22 13:22:31','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WB05/wb05black_main.jpg','WB05/wb05black_back.jpg','WB05/wb05orange_main.jpg','WB05/wb05purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WH01','101020','','','theme/basic','theme/basic','Mona Pullover Hoodlie','mona-pullover-hoodlie','','','','','Size,Color','',0,0,0,0,0,'','

Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.

• Light green heathered hoodie.
• Long-Sleeve, pullover.
• Long elliptical hem for extra coverage.
• Deep button placket for layering.
• Double rib design.
• Mid layer, mid weight.
• 98% Merino Wool / 2% Spandex 


More Information
StylePullover, Hoodie
MaterialSpandex, Wool
PatternSolid
ClimateAll-Weather, Cool, Mild, Spring
','Whether you\'re after energizing activity or eye-catching apparel, the Mona Pullover is what you want. You\'ll stay warm and look fashionable, wherever you are.• Light green heathered hoodie.• Long-Sleeve, pullover.• Long elliptical hem for extra coverage.• Deep button placket for layering.• Double rib design.• Mid layer, mid weight.• 98% Merino Wool / 2% Spandex More InformationStylePullover, HoodieMaterialSpandex, WoolPatternSolidClimateAll-Weather, Cool, Mild, Spring','',0,57000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-21 11:13:46','2020-12-21 11:13:46','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WH01/wh01green_main.jpg','WH01/wh01green_alt1.jpg','WH01/wh01green_back.jpg','WH01/wh01orange_main.jpg','WH01/wh01purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WH02','101020','','','theme/basic','theme/basic','Hera Pullover Hoodie','hera-pullover-hoodie','','','','','Size,Color','',0,0,1,0,0,'','

Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.

• Teal with purple stiching.
• Hoodie pullover.
• Snug fit.


More Information
StylePullover, Hoodie
MaterialNylon, Wool
PatternSolid
ClimateAll-Weather, Cool, Mild, Spring
','Get ready to rule the studio and dominate the yoga mat in the Hera Pullover Hoodie, a cozy yet classy look for any level of yogi.• Teal with purple stiching.• Hoodie pullover.• Snug fit.More InformationStylePullover, HoodieMaterialNylon, WoolPatternSolidClimateAll-Weather, Cool, Mild, Spring​','',0,48000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',2,'2020-12-21 11:11:53','2020-12-22 23:26:42','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WH02/wh02blue_main.jpg','WH02/wh02blue_alt1.jpg','WH02/wh02blue_back.jpg','WH02/wh02green_main.jpg','WH02/wh02orange_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WH03','101020','','','theme/basic','theme/basic','Autumn Pullie','autumn-pullie','','','','','Size,Color','',0,0,0,0,0,'','

With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.

• Cayenne Short-Sleeve roll neck sweatshirt.
• Relaxed fit.
• Short-Sleeves.
• Machine wash/dry.


More Information
StyleSweatshirt, Pullover
MaterialCotton, Fleece, Polyester
PatternSolid
ClimateIndoor, Mild, Spring
','With ultra-soft fleece fabric and an athletic design, our short-sleeve Autumn Pullie delivers a comfortable fit that makes it an everyday essential. A luxurious roll neck protects you from elements.• Cayenne Short-Sleeve roll neck sweatshirt.• Relaxed fit.• Short-Sleeves.• Machine wash/dry.More InformationStyleSweatshirt, PulloverMaterialCotton, Fleece, PolyesterPatternSolidClimateIndoor, Mild, Spring','',0,57000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-21 11:09:04','2020-12-21 11:09:04','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WH03/wh03red_main.jpg','WH03/wh03red_alt1.jpg','WH03/wh03red_back.jpg','WH03/wh03green_main.jpg','WH03/wh03purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WH04','101020','','','theme/basic','theme/basic','Miko Pullover Hoodie','miko-pullover-hoodie','','','','','Size,Color','',0,0,0,0,0,'','

After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.

• Teal two-tone hoodie.
• Low scoop neckline.
• Adjustable hood drawstrings.
• Longer rounded hemline for extra back coverage.
• Long-Sleeve style.


More Information
StyleSweatshirt, Pullover
MaterialJersey, Spandex
PatternSolid
ClimateAll-Weather, Cool, Spring
','After quality gym time, put on the Miko Pullover Hoody and keep your body warm. You\'ll find it\'s fashionable enough for the streets, but comfy enough to relax in at home.• Teal two-tone hoodie.• Low scoop neckline.• Adjustable hood drawstrings.• Longer rounded hemline for extra back coverage.• Long-Sleeve style.More InformationStyleSweatshirt, PulloverMaterialJersey, SpandexPatternSolidClimateAll-Weather, Cool, Spring','',0,69000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-21 11:03:52','2020-12-21 11:03:52','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WH04/wh04blue_main.jpg','WH04/wh04blue_alt1.jpg','WH04/wh04blue_back.jpg','WH04/wh04orange_main.jpg','WH04/wh04purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WH05','101020','','','theme/basic','theme/basic','Selene Yoga Hoodie','selene-yoga-hoodie','','','','','Size,Color','',0,0,0,0,0,'','

The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.

• Ivory heather full zip 3/4 sleeve hoodie.
• Zip pocket at arm for convenient storage.
• 24.0\" body length.
• 89% Polyester / 11% Spandex.


More Information
StyleFull Zip, Hoodie
MaterialPolyester, Spandex
PatternSolid
ClimateIndoor, Mild, Spring
','The Selene Yoga Hoodie gets you to and from the studio in semi form-fitted comfort. Snug, sleek contours add fashion to function in this free-moving yoga warm up sweatshirt.• Ivory heather full zip 3/4 sleeve hoodie.• Zip pocket at arm for convenient storage.• 24.0\" body length.• 89% Polyester / 11% Spandex.More InformationStyleFull Zip, HoodieMaterialPolyester, SpandexPatternSolidClimateIndoor, Mild, Spring','',0,42000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-21 11:00:26','2020-12-21 11:00:26','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WH05/wh05white_main.jpg','WH05/wh05white_back.jpg','WH05/wh05orange_main.jpg','WH05/wh05purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WH06','101020','','','theme/basic','theme/basic','Daphne Full-Zip Hoodie','daphne-full-zip-hoodie','','','','','Size,Color','',0,0,0,0,0,'','

The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.

• Purple full zip hoodie with pink accents.
• Heather texture.
• 4-way stretch.
• Pre-shrunk.
• Hood lined in vegan Sherpa for added warmth.
• Ribbed hem on hood and front pouch pocket.
• 60% Cotton / 40% Polyester.


StyleFull Zip, Hoodie
MaterialCotton, Polyester
PatternSolid
ClimateAll-Weather, Cold, Cool, Spring, Windy, Wintry


','The Daphne Hoodie is an attractive yet rugged layering or outer piece, especially for chilly days en route the studio, doing yardwork or enjoying outdoor recreation.• Purple full zip hoodie with pink accents.• Heather texture.• 4-way stretch.• Pre-shrunk.• Hood lined in vegan Sherpa for added warmth.• Ribbed hem on hood and front pouch pocket.• 60% Cotton / 40% Polyester.StyleFull Zip, HoodieMaterialCotton, PolyesterPatternSolidClimateAll-Weather, Cold, Cool, Spring, Windy, Wintry','',0,59000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-21 10:57:44','2020-12-21 10:57:44','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WH06/wh06purple_main.jpg','WH06/wh06purple_alt1.jpg','WH06/wh06purple_back.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WH07','101020','','','theme/basic','theme/basic','Phoebe Zipper Sweatshirt','phoebe-zipper-sweatshirt','','','','','Size,Color','',0,0,0,0,0,'','

A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.

• Gray full zip hoodie with yellow detail.
• Hand-warmer pockets.
• Zip MP3 pocket with outlet for earphones wire.
• Polyester/cotton.
• Washable.


More Information
StyleFull Zip, Sweatshirt, Hoodie
MaterialCotton, Polyester
PatternSolid
ClimateCool, Indoor, Mild


','A sophisticated layer of warmth awaits you in our full-zip sweatshirt jacket. You\'ll reach for this one in any season to enjoy its sturdy exterior and plush interior.• Gray full zip hoodie with yellow detail.• Hand-warmer pockets.• Zip MP3 pocket with outlet for earphones wire.• Polyester/cotton.• Washable.More InformationStyleFull Zip, Sweatshirt, HoodieMaterialCotton, PolyesterPatternSolidClimateCool, Indoor, Mild','',0,59000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-21 10:51:30','2020-12-21 10:51:30','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WH07/wh07gray_main.jpg','WH07/wh07gray_alt1.jpg','WH07/wh07gray_back.jpg','WH07/wh07purple_main.jpg','WH07/wh07white_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WH08','101020','','','theme/basic','theme/basic','Cassia Funnel Sweatshirt','cassia-funnel-sweatshirt','','','','','Size,Color','',0,0,0,0,0,'','

The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.

• White full zip hoodie with gray detail.
• 65% Cotton/28% Nylon/7% Spandex.
• Front slash pockets.
• Tagless label at back neck.


More Information
StyleFull Zip, Hoodie
MaterialCotton, Nylon, Spandex
PatternSolid
ClimateAll-Weather, Cool, Indoor, Mild, Spring
','The casual Cassia Funnel Sweatshirt sports front angled pockets and a drawstring stretch funnel hoodie. A cowl front neck pairs with a tagless label at back neck.• White full zip hoodie with gray detail.• 65% Cotton/28% Nylon/7% Spandex.• Front slash pockets.• Tagless label at back neck.More InformationStyleFull Zip, HoodieMaterialCotton, Nylon, SpandexPatternSolidClimateAll-Weather, Cool, Indoor, Mild, Spring','',0,48000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-21 10:48:25','2020-12-21 10:48:25','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WH08/wh08white_main.jpg','WH08/wh08white_alt1.jpg','WH08/wh08white_alternate.jpg','WH08/wh08white_back.jpg','WH08/wh08orange_main.jpg','WH08/wh08purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','',''),('WH09','101020','','','theme/basic','theme/basic','Ariel Roll Sleeve Sweatshirt','ariel-roll-sleeve-sweatshirt','','','','','Size,Color','',1,0,0,0,0,'','

Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.

• Purple two-tone lightweight hoodie.
• 100% cotton.
• Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.
• Casual, comfy piece for running errands or weekend activities.


More Information
StylePullover, Hoodie
MaterialCotton
PatternColor-Blocked
ClimateIndoor, Mild, Spring, Warm
','Soft, sleek and subtle, the Ariel Roll Sleeve Sweatshirt is a nuanced fitness garment for all occasions. It works equally well as a workout piece or in a casual social setting.• Purple two-tone lightweight hoodie.• 100% cotton.• Adjustable roll sleeves for Long-Sleeve or 3/4 sleeve.• Casual, comfy piece for running errands or weekend activities.More InformationStylePullover, HoodieMaterialCottonPatternColor-BlockedClimateIndoor, Mild, Spring, Warm','',0,39000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-21 10:44:48','2020-12-22 23:19:38','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WH09/wh09purple_main.jpg','WH09/wh09purple_alt1.jpg','WH09/wh09purple_back.jpg','WH09/wh09green_main.jpg','WH09/wh09red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WH10','101020','','','theme/basic','theme/basic','Helena Hooded Fleece','helena-hooded-fleece','','','','','Size,Color','',0,0,0,0,0,'','

Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.

Full zip.
Banded cuffs and waist.
Front pockets.
Machine wash/dry.


StyleFull Zip, Hoodie
MaterialCotton, Polyester, Spandex
PatternSolid
ClimateCool, Spring


','Wear this hoodie after the gym or before a chilly weather bike ride. Either way, this versatile sweatshirt offers an effortlessly appealing silhouette and a super-comfy fit. Smooth, stretchy fabric creates flattering shape, while the full-zip placket and hood help block gusty winds.Full zip.Banded cuffs and waist.Front pockets.Machine wash/dry.StyleFull Zip, HoodieMaterialCotton, Polyester, SpandexPatternSolidClimateCool, Spring','',0,55000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-21 10:41:41','2020-12-21 10:41:41','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WH10/wh10gray_main.jpg','WH10/wh10gray_alt1.jpg','WH10/wh10gray_back.jpg','WH10/wh10blue_main.jpg','WH10/wh10yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WH11','101020','','','theme/basic','theme/basic','Eos V-Neck Hoodie','eos-v-neck-hoodie','','','','','Size,Color','',0,0,0,0,0,'','

Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.

Semi-fitted.
Long-Sleeve.
Machine wash/line dry.


StyleSweatshirt, Pullover
MaterialFleece, Polyester, Spandex
PatternSolid
ClimateCool, Indoor, Mild
','Getting chilly before class starts? Wear the Eos on your way to and from yoga for a cute and cozy warmup piece. Reach for its reliable comfort and enjoy a super-soft blend of fabrics finished in sporty style that includes a hidden kangaroo pocket.Semi-fitted.Long-Sleeve.Machine wash/line dry.StyleSweatshirt, PulloverMaterialFleece, Polyester, SpandexPatternSolidClimateCool, Indoor, Mild','',0,54000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',2,'2020-12-21 00:31:26','2020-12-22 22:56:10','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WH11/wh11blue_main.jpg','WH11/wh11blue_back.jpg','WH11/wh11green_main.jpg','WH11/wh11orange_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WH12','101020','','','theme/basic','theme/basic','Circe Hooded Ice Fleece','circe-hooded-ice-fleece','','','','','Size,Color','',0,0,0,0,0,'','

Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.

Full-zip front.
Three-panel hood.
Flatlock seams throughout.
Welt hand pockets.
Machine wash/dry.


More Information
StyleFull Zip, Sweatshirt, Hoodie
MaterialFleece, CoolTech™
PatternSolid
ClimateCold, Cool, Wintry


','Keep shivers at bay with the Circe Hooded Ice Fleece. Ultra-thick, high-pile fleece traps your body heat and keeps cold outside. The drawstring hood and ribbed details add extra coziness and touches of classic style. Its relaxed fit is loose enough to layer comfortably over your shirt.Full-zip front.Three-panel hood.Flatlock seams throughout.Welt hand pockets.Machine wash/dry.More InformationStyleFull Zip, Sweatshirt, HoodieMaterialFleece, CoolTech™PatternSolidClimateCold, Cool, Wintry','',0,68000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',2,'2020-12-21 00:28:29','2020-12-22 22:54:44','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WH12/wh12gray_main.jpg','WH12/wh12gray_back.jpg','WH12/wh12green_main.jpg','WH12/wh12purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WJ01','101010','','','theme/basic','theme/basic','Stellar Solar Jacket','stellar-solar-jacket','','','','','Size,Color','',0,0,0,0,0,'','

Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.

• Loose fit.
• Reflectivity.
• Flat seams.
• Machine wash/dry.
• Deep pink jacket with front panel rouching


More Information
StyleJacket, Hooded, Soft Shell, Full Zip
MaterialCocona® performance fabric, Fleece, Wool
PatternSolid
ClimateAll-Weather, Mild, Spring, Windy
','Beat the heat and protect yourself from sunrays with the Stellar Solar Jacket. It\'s loaded with all the engineered features you need for an intense, safe outdoor workout: 100% UV protection, a breathable perforated construction, and advanced moisture-wicking technology.• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.• Deep pink jacket with front panel rouchingMore InformationStyleJacket, Hooded, Soft Shell, Full ZipMaterialCocona® performance fabric, Fleece, WoolPatternSolidClimateAll-Weather, Mild, Spring, Windy','',0,75000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-21 00:17:12','2020-12-22 22:47:39','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WJ01/wj01red_main.jpg','WJ01/wj01red_alt1.jpg','WJ01/wj01red_back.jpg','WJ01/wj01blue_main.jpg','WJ01/wj01yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WJ02','101010','','','theme/basic','theme/basic','Josie Yoga Jacket','josie-yoga-jacket','','','','','Size,Color','',0,0,1,0,0,'','

When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.

• Slate rouched neck pullover.
• Moisture-wicking fabric.
• Hidden zipper.
• Mesh armpit venting.
• Dropped rear hem.


More Information
StyleJacket, Lightweight, Soft Shell, Pullover
MaterialPolyester, Spandex, CoolTech™
PatternSolid
ClimateIndoor, Mild, Spring
','When your near future includes yoga, the cozy comfort of the Josie Yoga Jacket gets your mind and body ready. Stretchy CoolTech™ fabric with zipper pockets makes this jacket the right gear for studio time or teatime after.• Slate rouched neck pullover.• Moisture-wicking fabric.• Hidden zipper.• Mesh armpit venting.• Dropped rear hem.More InformationStyleJacket, Lightweight, Soft Shell, PulloverMaterialPolyester, Spandex, CoolTech™PatternSolidClimateIndoor, Mild, Spring','',0,56250,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',3,'2020-12-21 00:15:07','2020-12-22 23:25:36','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WJ02/wj02gray_main.jpg','WJ02/wj02gray_alt1.jpg','WJ02/wj02gray_back.jpg','WJ02/wj02black_main.jpg','WJ02/wj02blue_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WJ03','101010','','','theme/basic','theme/basic','Augusta Pullover Jacket','augusta-pullover-jacket','','','','','Size,Color','',0,0,0,0,0,'','

It\'s hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.

• Pink half-zip pullover.
• Front pouch pockets.
• Fold-down collar.


More Information
StyleJacket, Soft Shell, Windbreaker, ¼ zip, Pullover
MaterialFleece, Polyester
PatternSolid
ClimateAll-Weather, Cool, Indoor, Mild, Spring
','It\'s hard to be uncomfortable in the Augusta Pullover Jacket with ¼ zip. With an incredibly soft fleece lining and textured outer fabric, it offers reliable protection from the elements and a cozy fit as well.• Pink half-zip pullover.• Front pouch pockets.• Fold-down collar.More InformationStyleJacket, Soft Shell, Windbreaker, ¼ zip, PulloverMaterialFleece, PolyesterPatternSolidClimateAll-Weather, Cool, Indoor, Mild, Spring','',0,57000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-21 00:12:06','2020-12-22 22:45:26','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WJ03/wj03red_main.jpg','WJ03/wj03red_alt1.jpg','WJ03/wj03red_back.jpg','WJ03/wj03orange_main.jpg','WJ03/wj03blue_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WJ04','101010','','','theme/basic','theme/basic','Ingrid Running Jacket','ingrid-running-jacket','','','','','Size,Color','',0,0,0,1,0,'','

The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.
• Slim fit.
• Moisture-wicking fabric.
• Two side pockets.
• Zippered pocket at back waist.
• Machine wash/dry.
• Ivory specked full zip 


More Information
StyleJacket, Lightweight, Full Zip
MaterialNylon, Polyester, CoolTech™
PatternSolid
ClimateCool, Spring, Windy, Wintry
','The Ingrid Running Jacket combines sleek design and high performance with slim, contoured fit and moisture-wicking fabric. It features a full-zip construction and a collared neck to keep the elements out and body heat in.• Slim fit.• Moisture-wicking fabric.• Two side pockets.• Zippered pocket at back waist.• Machine wash/dry.• Ivory specked full zip More InformationStyleJacket, Lightweight, Full ZipMaterialNylon, Polyester, CoolTech™PatternSolidClimateCool, Spring, Windy, Wintry','',0,84000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-21 00:08:23','2020-12-22 23:10:57','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,2,4.5,'','','WJ04/wj04white_main.jpg','WJ04/wj04white_alt1.jpg','WJ04/wj04white_alternate.jpg','WJ04/wj04white_back.jpg','WJ04/wj04orange_main.jpg','WJ04/wj04red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','',''),('WJ05','101010','','','theme/basic','theme/basic','Riona Full Zip Jacket','riona-full-zip-jacket','','','','','Size,Color','',0,0,0,0,0,'','

The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.

• Brown heather full zip rouched jacket.
• Side hand pockets for extra storage.
• High collar.
• Thick cuffs for extra coverage.
• Durable, shape retention material to longer wear.


More Information
StyleInsulated, Jacket, Hooded, Soft Shell, Windbreaker, Full Zip
MaterialLumaTech™, Lycra®, Wool
PatternSolid
ClimateCold, Cool, Spring, Wintry


','The Riona Basic Zip Jacket makes the perfect extra layer for cold-weather workouts. It features amazing breathability and moisture management, but full-length zipper lets you moderate your core temperature even more.• Brown heather full zip rouched jacket.• Side hand pockets for extra storage.• High collar.• Thick cuffs for extra coverage.• Durable, shape retention material to longer wear.More InformationStyleInsulated, Jacket, Hooded, Soft Shell, Windbreaker, Full ZipMaterialLumaTech™, Lycra®, WoolPatternSolidClimateCold, Cool, Spring, Wintry','',0,60000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-21 00:05:38','2020-12-22 22:42:57','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WJ05/wj05brown_main.jpg','WJ05/wj05brown_alt1.jpg','WJ05/wj05brown_back.jpg','WJ05/wj05green_main.jpg','WJ05/wj05red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WJ06','101010','','','theme/basic','theme/basic','Juno Jacket','juno-jacket','','','','','Size,Color','',0,0,0,0,0,'','

On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.

• Adjustable hood.
• Fleece-lined, zippered hand pockets.
• Thumbhole cuffs.
• Full zip.
• Mock-neck collar.
• Machine wash/dry.



More Information
StyleInsulated, Jacket, Heavy Duty, Hard Shell, Full Zip, Reversible
MaterialCocona® performance fabric, Fleece
PatternSolid
ClimateCold, Cool, Spring, Windy, Wintry
','On colder-than-comfortable mornings, you\'ll love warming up in the Juno All-Ways Performanc Jacket, designed to compete with wind and chill. Built-in Cocona® technology aids evaporation, while a special zip placket and stand-up collar keep your neck protected.• Adjustable hood.• Fleece-lined, zippered hand pockets.• Thumbhole cuffs.• Full zip.• Mock-neck collar.• Machine wash/dry.More InformationStyleInsulated, Jacket, Heavy Duty, Hard Shell, Full Zip, ReversibleMaterialCocona® performance fabric, FleecePatternSolidClimateCold, Cool, Spring, Windy, Wintry','',0,77000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',2,'2020-12-20 11:18:06','2020-12-22 22:35:12','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,3,4.3,'','','WJ06/wj06purple_main.jpg','WJ06/wj06purple_alt1.jpg','WJ06/wj06purple_back.jpg','WJ06/wj06blue_main.jpg','WJ06/wj06green_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WJ07','101010','','','theme/basic','theme/basic','Inez Full Zip Jacket','inez-full-zip-jacket','','','','','Size,Color','',0,0,0,0,0,'','

The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.

• Purple heather inset full zip jacket.
• Full zip hoodie.
• Contrast binding along the zipper, hood and sleeves.
• Inseam pockets for storage.
• Thumbholes for comfortable fit.


StyleInsulated, Jacket, Hooded, Soft Shell, Full Zip
MaterialNylon, Polyester, Spandex, CoolTech™
PatternColor-Blocked
ClimateCool, Mild, Rainy, Spring, Windy
','The Inez Full Zip jacket is more than a cute layer. It\'s a full-on tech wonder you\'ll use for outdoor, pre and post workout. You\'ll love how the highlighted zipper and sleeve safety trim protect and catch looks.• Purple heather inset full zip jacket.• Full zip hoodie.• Contrast binding along the zipper, hood and sleeves.• Inseam pockets for storage.• Thumbholes for comfortable fit.StyleInsulated, Jacket, Hooded, Soft Shell, Full ZipMaterialNylon, Polyester, Spandex, CoolTech™PatternColor-BlockedClimateCool, Mild, Rainy, Spring, Windy','',0,59000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-21 00:03:03','2020-12-22 22:41:26','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WJ07/wj07purple_main.jpg','WJ07/wj07purple_alt1.jpg','WJ07/wj07purple_back.jpg','WJ07/wj07orange_main.jpg','WJ07/wj07red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WJ08','101010','','','theme/basic','theme/basic','Adrienne Trek Jacket','adrienne-trek-jacket','','','','','Size,Color','',0,0,0,0,0,'','

You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.

• gray 1/4 zip pullover.
• Comfortable, relaxed fit.
• Front zip for venting.
• Spacious, kangaroo pockets.
• 27\" body length.
• 95% Organic Cotton / 5% Spandex.


StyleJacket, Lightweight, Rain Coat, Hard Shell, Windbreaker, ¼ zip
MaterialCotton, Spandex
PatternSolid
ClimateAll-Weather, Cool, Mild, Spring, Wintry
','You\'re ready for a cross-country jog or a coffee on the patio in the Adrienne Trek Jacket. Its style is unique with stand collar and drawstrings, and it fits like a jacket should.• gray 1/4 zip pullover.• Comfortable, relaxed fit.• Front zip for venting.• Spacious, kangaroo pockets.• 27\" body length.• 95% Organic Cotton / 5% Spandex.StyleJacket, Lightweight, Rain Coat, Hard Shell, Windbreaker, ¼ zipMaterialCotton, SpandexPatternSolidClimateAll-Weather, Cool, Mild, Spring, Wintry','',0,57000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-20 23:55:47','2020-12-22 22:40:16','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WJ08/wj08gray_main.jpg','WJ08/wj08gray_alt1.jpg','WJ08/wj08gray_alternate.jpg','WJ08/wj08gray_back.jpg','WJ08/wj08orange_main.jpg','WJ08/wj08purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','',''),('WJ09','101010','','','theme/basic','theme/basic','Jade Yoga Jacket','jade-yoga-jacket','','','','','Size,Color','',0,0,0,0,0,'','

If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.

• Seafoam 1/4 zip pullover with purple stitching.
• Lightweight, quick-drying, water-resistant construction.
• Shirred details at front and back for a feminine look.
• Hood collapses into collar.
• Mesh liner for breathability.
• Front zip pockets.
• Hem cinches at sideseam.
• 100% Polyester.


StyleJacket, Lightweight, Hooded, Soft Shell, ¼ zip
MaterialPolyester
PatternSolid
ClimateCool, Mild, Spring, Windy
','If only all your other jackets were as comfortable as the relaxed-fit Jade Yoga Jacket, perfect for use during stretching, biking to and from studio or strolling on breezy fall days.• Seafoam 1/4 zip pullover with purple stitching.• Lightweight, quick-drying, water-resistant construction.• Shirred details at front and back for a feminine look.• Hood collapses into collar.• Mesh liner for breathability.• Front zip pockets.• Hem cinches at sideseam.• 100% Polyester.StyleJacket, Lightweight, Hooded, Soft Shell, ¼ zipMaterialPolyesterPatternSolidClimateCool, Mild, Spring, Windy','',0,32000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',2,'2020-12-20 23:52:28','2020-12-22 22:38:54','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,3,4.3,'','','WJ09/wj09green_main.jpg','WJ09/wj09green_alt1.jpg','WJ09/wj09green_back.jpg','WJ09/wj09gray_main.jpg','WJ09/wj09blue_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WJ10','101010','','','theme/basic','theme/basic','Nadia Elements Shell','nadia-elements-shell','','','','','Size,Color','',0,1,0,0,0,'','

Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.

• Zippered front.
• Zippered side pockets.
• Drawstring-adjustable waist and hood.
• Machine wash/line dry.
• Light blue 1/4 zip pullover.


StyleInsulated, Jacket, Rain Coat, Hard Shell, Windbreaker, Full Zip
MaterialNylon, Polyester, CoolTech™
PatternSolid
ClimateCool, Mild, Rainy, Spring, Windy
','Protect yourself from wind and rain in the stylish Nadia Elements Shell. It repels water using hydro-resistant fabric, with fleece lining that adds a touch of warmth. It\'s finished with bold contrast zippers, adjustable cuffs and a hood.• Zippered front.• Zippered side pockets.• Drawstring-adjustable waist and hood.• Machine wash/line dry.• Light blue 1/4 zip pullover.StyleInsulated, Jacket, Rain Coat, Hard Shell, Windbreaker, Full ZipMaterialNylon, Polyester, CoolTech™PatternSolidClimateCool, Mild, Rainy, Spring, Windy','',0,69000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',3,'2020-12-20 11:24:32','2020-12-22 23:13:36','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,3,3.0,'','','WJ10/wj10yellow_main.jpg','WJ10/wj10yellow_alt1.jpg','WJ10/wj10yellow_back.jpg','WJ10/wj10black_main.jpg','WJ10/wj10orange_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WJ11','101010','','','theme/basic','theme/basic','Neve Studio Dance Jacket','neve-studio-dance-jacket','','','','','Size,Color','',0,0,0,0,0,'','

If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.

• Bright blue 1/4 zip pullover.
• CoolTech™ liner is sweat-wicking.
• Sleeve thumbholes.
• Zipper garage to protect your chin.
• Stretchy collar drawcords.



StyleJacket, Lightweight, Hooded, Soft Shell, ¼ zip, Reversible, Pullover
MaterialMesh, Lycra®, Nylon, CoolTech™
PatternSolid
ClimateIndoor, Mild, Spring
','If you\'re constantly on the move, the Neve Studio Dance Jacket is for you. It\'s not just for dance, either, with a tight fit that works as a mid-layer. The reversible design makes it even more versatile.• Bright blue 1/4 zip pullover.• CoolTech™ liner is sweat-wicking.• Sleeve thumbholes.• Zipper garage to protect your chin.• Stretchy collar drawcords.StyleJacket, Lightweight, Hooded, Soft Shell, ¼ zip, Reversible, PulloverMaterialMesh, Lycra®, Nylon, CoolTech™PatternSolidClimateIndoor, Mild, Spring','',0,69000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',4,'2020-12-20 11:22:00','2020-12-22 23:07:43','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,3,4.3,'','','WJ11/wj11blue_main.jpg','WJ11/wj11blue_alt1.jpg','WJ11/wj11blue_back.jpg','WJ11/wj11black_main.jpg','WJ11/wj11orange_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WJ12','101010','','','theme/basic','theme/basic','Olivia 1/4 Zip Light Jacket','olivia-14-zip-light-jacket','','','','','Size,Color','',0,0,0,0,0,'','

Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.

• Loose fit.
• Reflectivity.
• Flat seams.
• Machine wash/dry.



StyleJacket, Lightweight, Soft Shell, ¼ zip, Pullover
MaterialCocona® performance fabric, Cotton, Nylon
PatternSolid
ClimateSpring, Warm, Windy


','Running errands or headed to the gym, you just want to be comfortable. The Olivia Light Jacket promises that, plus a laid-back look. This zip-up is designed with shoulder stripes for an athletic touch, and banded waist and contoured seams for a flattering silhouette.• Loose fit.• Reflectivity.• Flat seams.• Machine wash/dry.StyleJacket, Lightweight, Soft Shell, ¼ zip, PulloverMaterialCocona® performance fabric, Cotton, NylonPatternSolidClimateSpring, Warm, Windy','',0,77000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',9,'2020-12-20 10:54:58','2020-12-22 22:33:45','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WJ12/wj12blue_main.jpg','WJ12/wj12blue_alt1.jpg','WJ12/wj12blue_back.jpg','WJ12/wj12black_main.jpg','WJ12/wj12purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WP01','102010','','','','','Karmen Yoga Pant','karmen-yoga-pant','','','','','Size,Color','',0,0,1,0,0,'','

Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

• Light blue parachute pants.
• Power mesh internal waistband for support.
• Internal waistband pocket.
• Antimicrobial finish.


More Information
StyleSweatpants
MaterialOrganic Cotton, CoolTech™
PatternSolid
ClimateIndoor, Mild
','Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.• Light blue parachute pants.• Power mesh internal waistband for support.• Internal waistband pocket.• Antimicrobial finish.More InformationStyleSweatpantsMaterialOrganic Cotton, CoolTech™PatternSolidClimateIndoor, Mild','',0,39000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-22 14:01:40','2020-12-22 23:30:26','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WP01/wp01gray_main.jpg','WP01/wp01gray_back.jpg','WP01/wp01black_main.jpg','WP01/wp01white_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WP02','102010','','','','','Emma Leggings','emma-leggings','','','','','Size,Color','',0,0,0,0,0,'','

These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma\'s subtle contrast fabric and fit ensure you\'re stylish without overdoing it.

• Light blue heather yoga pants.
• Body hugging fit.
• Low rise fit.


StyleSweatpants
MaterialCocona® performance fabric, Organic Cotton
PatternSolid
ClimateCool, Indoor, Mild, Spring
','These comfortable and practical leggings pair perfectly with any workout top or casual tee. The Emma\'s subtle contrast fabric and fit ensure you\'re stylish without overdoing it.• Light blue heather yoga pants.• Body hugging fit.• Low rise fit.StyleSweatpantsMaterialCocona® performance fabric, Organic CottonPatternSolidClimateCool, Indoor, Mild, Spring','',0,42000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 13:58:55','2020-12-22 13:58:55','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WP02/wp02blue_main.jpg','WP02/wp02blue_back.jpg','WP02/wp02purple_main.jpg','WP02/wp02red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WP03','102010','','','','','Ida Workout Parachute Pant','ida-workout-parachute-pant','','','','','Size,Color','',0,0,0,0,0,'','

The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.

• Royal blue parachute pants.
• Contrast stripe.
• Relaxed fit.
• Drawstring closure.
• Machine wash/dry.


More Information
StyleParachute, Track Pants
MaterialLumaTech™, Nylon, Spandex
PatternColor-Blocked
ClimateIndoor, Mild, Spring, Warm, Hot
','The Ida Workout Parachute Pant is made of lightweight, super-soft fabric that keeps you comfortable during any level of activity, whether Downward Dog or a few trail miles.• Royal blue parachute pants.• Contrast stripe.• Relaxed fit.• Drawstring closure.• Machine wash/dry.More InformationStyleParachute, Track PantsMaterialLumaTech™, Nylon, SpandexPatternColor-BlockedClimateIndoor, Mild, Spring, Warm, Hot','',0,48000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 13:57:19','2020-12-22 13:57:19','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WP03/wp03blue_main.jpg','WP03/wp03blue_alt1.jpg','WP03/wp03blue_back.jpg','WP03/wp03black_main.jpg','WP03/wp03purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WP04','102010','','','','','Cora Parachute Pant','cora-parachute-pant','','','','','Size,Color','',0,0,0,1,0,'','

Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.

• Light blue parachute pants.
• Power mesh internal waistband for support.
• Internal waistband pocket.
• Antimicrobial finish.


More Information
StyleParachute, Track Pants
MaterialLumaTech™, Nylon, Spandex
PatternSolid
ClimateIndoor, Mild, Spring, Warm, Hot
','Good for running, hiking, lounging or stretching, the Cora Parachute Pant presents comfortable styling designed to help you look and feel great.• Light blue parachute pants.• Power mesh internal waistband for support.• Internal waistband pocket.• Antimicrobial finish.More InformationStyleParachute, Track PantsMaterialLumaTech™, Nylon, SpandexPatternSolidClimateIndoor, Mild, Spring, Warm, Hot','',0,75000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-22 13:55:38','2020-12-22 23:29:49','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WP04/wp04blue_main.jpg','WP04/wp04blue_alt1.jpg','WP04/wp04blue_alternate.jpg','WP04/wp04blue_back.jpg','WP04/wp04black_main.jpg','WP04/wp04white_main.jpg','','','','','','','','','','','','','','','','','','','','','','','',''),('WP05','102010','','','','','Sahara Leggings','sahara-leggings','','','','','Size,Color','',0,0,0,0,0,'','

Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.

• Pinstripe legging with rouched ankles.
• Secret pocket at waistband.
• Flat seams for comfort.
• Shaped fit with low rise.
• 4-way stretch, moisture-wicking material.


More Information
StyleLeggings, Sweatpants, Track Pants
MaterialLumaTech™, Organic Cotton
PatternSolid
ClimateCool, Indoor, Spring
','Contrast colors, full-length leggings, and opaque, high-stretch fabric define the Sahara. Flat-locked seams and quick-drying wicking properties prevent chafing. A deep elasticated waistband and carefully positioned seamlines create a flattering silhouette.• Pinstripe legging with rouched ankles.• Secret pocket at waistband.• Flat seams for comfort.• Shaped fit with low rise.• 4-way stretch, moisture-wicking material.More InformationStyleLeggings, Sweatpants, Track PantsMaterialLumaTech™, Organic CottonPatternSolidClimateCool, Indoor, Spring','',0,75000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 13:53:38','2020-12-22 13:53:38','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WP05/wp05gray_main.jpg','WP05/wp05gray_alt1.jpg','WP05/wp05gray_back.jpg','WP05/wp05blue_main.jpg','WP05/wp05red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WP06','102010','','','','','Diana Tights','diana-tights','','','','','Size,Color','',0,0,0,0,0,'','

Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you\'ll feel like anything is possible in the capri-style Diana Tights.

• Black legging with slate details.
• Flat-lock, chafe-free side seams.
• Vented gusset.
• Secret interior pocket.
• Sustainable and recycled fabric.


More Information
StyleCapri, Leggings
MaterialMicrofiber, Polyester, Spandex
PatternSolid
ClimateAll-Weather, Cool, Indoor, Mild, Spring, Warm
','Perfect for hot bikram session or cool-down stretching. 8-percent stretch means you\'ll feel like anything is possible in the capri-style Diana Tights.• Black legging with slate details.• Flat-lock, chafe-free side seams.• Vented gusset.• Secret interior pocket.• Sustainable and recycled fabric.More InformationStyleCapri, LeggingsMaterialMicrofiber, Polyester, SpandexPatternSolidClimateAll-Weather, Cool, Indoor, Mild, Spring, Warm','',0,59000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 13:51:53','2020-12-22 13:51:53','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WP06/wp06black_main.jpg','WP06/wp06black_alt1.jpg','WP06/wp06black_back.jpg','WP06/wp06black_outfit.jpg','WP06/wp06blue_main.jpg','WP06/wp06orange_main.jpg','','','','','','','','','','','','','','','','','','','','','','','',''),('WP07','102010','','','','','Aeon Capri','aeon-capri','','','','','Size,Color','',0,0,0,0,0,'','

Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.

• Black capris with teal accents.
• Thick, 3\" flattering waistband.
• Media pocket on inner waistband.
• Dry wick finish for ultimate comfort and dryness.


More Information
StyleCapri
MaterialMicrofiber, Organic Cotton, CoolTech™
PatternColor-Blocked
ClimateIndoor, Mild, Hot
','Reach for the stars and beyond in these Aeon Capri pant. With a soft, comfortable feel and moisture wicking fabric, these duo-tone leggings are easy to wear -- and wear attractively.• Black capris with teal accents.• Thick, 3\" flattering waistband.• Media pocket on inner waistband.• Dry wick finish for ultimate comfort and dryness.More InformationStyleCapriMaterialMicrofiber, Organic Cotton, CoolTech™PatternColor-BlockedClimateIndoor, Mild, Hot','',0,48000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 13:48:50','2020-12-22 13:48:50','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WP07/wp07black_main.jpg','WP07/wp07black_alt1.jpg','WP07/wp07black_back.jpg','WP07/wp07blue_main.jpg','WP07/wp07orange_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WP08','102010','','','','','Bardot Capri','bardot-capri','','','','','Size,Color','',0,0,0,0,0,'','

Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.

• Black capris with pink waistband.
• Cropped leggings.
• Waistband drawcord.
• Flat, thin and flattering.
• Made with organic fabric.


More Information
StyleCapri, Leggings
MaterialMicrofiber, Rayon, Spandex
PatternColor-Blocked
ClimateIndoor, Mild, Warm, Hot
','Black is back — was it ever gone? — which means all your favorite tops will get along with the comfortable and versatile Bardot Capri.• Black capris with pink waistband.• Cropped leggings.• Waistband drawcord.• Flat, thin and flattering.• Made with organic fabric.More InformationStyleCapri, LeggingsMaterialMicrofiber, Rayon, SpandexPatternColor-BlockedClimateIndoor, Mild, Warm, Hot','',0,48000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 13:46:11','2020-12-22 13:46:11','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WP08/wp08black_main.jpg','WP08/wp08black_back.jpg','WP08/wp08green_main.jpg','WP08/wp08red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WP09','102010','','','','','Carina Basic Capri','carina-basic-capri','','','','','Size,Color','',0,0,0,0,0,'','

Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.

• Black capris with rouching detail.
• 93% cotton, 7% spandex.
• Elasticized waistband.
• Reinforced seams with exposed topstitching.
• Soft, medium-weight jersey with added stretch.


More Information
StyleCapri, Compression, Leggings
MaterialCotton, Spandex
PatternSolid
ClimateAll-Weather, Indoor, Mild, Spring, Warm
','Perfect as workout pants or \"accessory,\" the Carina Basic Capri is comfy as it is practical -- try it under skirts or shorts.• Black capris with rouching detail.• 93% cotton, 7% spandex.• Elasticized waistband.• Reinforced seams with exposed topstitching.• Soft, medium-weight jersey with added stretch.More InformationStyleCapri, Compression, LeggingsMaterialCotton, SpandexPatternSolidClimateAll-Weather, Indoor, Mild, Spring, Warm','',0,51000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 13:44:01','2020-12-22 13:44:01','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WP09/wp09black_main.jpg','WP09/wp09black_alt1.jpg','WP09/wp09black_back.jpg','WP09/wp09blue_main.jpg','WP09/wp09purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WP10','102010','','','','','Daria Bikram Pant','daria-bikram-pant','','','','','Size,Color','',0,0,0,0,0,'','

The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.

• Heather gray capris with pink striped waist.
• Flatlock seams.
• Interior pocket.


More Information
StyleCapri
MaterialSpandex, Organic Cotton
PatternColor-Blocked
ClimateAll-Weather, Indoor, Mild, Spring, Warm
','The Daria Bikram Pant is designed to stretch and move with your body to make extreme yoga extremely comfortable.• Heather gray capris with pink striped waist.• Flatlock seams.• Interior pocket.More InformationStyleCapriMaterialSpandex, Organic CottonPatternColor-BlockedClimateAll-Weather, Indoor, Mild, Spring, Warm','',0,51000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 13:40:47','2020-12-22 13:40:47','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WP10/wp10gray_main.jpg','WP10/wp10gray_alt1.jpg','WP10/wp10gray_back.jpg','WP10/wp10black_main.jpg','WP10/wp10white_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WP11','102010','','','','','Sylvia Capri','sylvia-capri','','','','','Size,Color','',0,0,0,0,0,'','

Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.

• Green striped capri.
• Strategic side seam
• Comfort gusset with lining.
• Flat seaming.
• Wide waistband.
• Moisture wicking.


More Information
StyleCapri
MaterialLycra®, Polyester, Organic Cotton
PatternStriped
ClimateIndoor
','Enjoy a sleek, slendering look in new Silvia Capri. Its engineer-designed support fabric feels great and gives the illusion of a slimmer fit.• Green striped capri.• Strategic side seam• Comfort gusset with lining.• Flat seaming.• Wide waistband.• Moisture wicking.More InformationStyleCapriMaterialLycra®, Polyester, Organic CottonPatternStripedClimateIndoor','',0,42000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 13:38:40','2020-12-22 13:38:40','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WP11/wp11green_main.jpg','WP11/wp11green_back.jpg','WP11/wp11blue_main.jpg','WP11/wp11red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WP12','102010','','','','','Deirdre Relaxed-Fit Capri','deirdre-relaxed-fit-capri','','','','','Size,Color','',1,0,0,0,0,'','

Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.

• Heather gray capris with mint green waist & accents.
• Comfortable, relaxed fit with high rise.
• Moisture-wicking, 4-way stretch construction.
• Lined with mesh for better support.
• Hidden pocket at waistband.
• Flatlock seams and lined gusset for comfort.


More Information
StyleCapri
MaterialCocona® performance fabric, Rayon, Organic Cotton
PatternColor-Blocked
ClimateIndoor, Mild, Hot
','Invigorate your yoga practice with this Deirdre Relaxed-Fit Capri, designed to let you move without strain or restriction.• Heather gray capris with mint green waist & accents.• Comfortable, relaxed fit with high rise.• Moisture-wicking, 4-way stretch construction.• Lined with mesh for better support.• Hidden pocket at waistband.• Flatlock seams and lined gusset for comfort.More InformationStyleCapriMaterialCocona® performance fabric, Rayon, Organic CottonPatternColor-BlockedClimateIndoor, Mild, Hot','',0,63000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-22 13:36:55','2020-12-22 23:22:20','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WP12/wp12gray_main.jpg','WP12/wp12gray_back.jpg','WP12/wp12blue_main.jpg','WP12/wp12green_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WP13','102010','','','','','Portia Capri','portia-capri','','','','','Size,Color','',0,0,0,0,0,'','

From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you\'re bending and stretching, while contrast stripes promise a dash of sporty style.

• Salmon heather capri sweats.
• Relaxed fit, high waist.
• Inseam: 21\".
• Wide elastic waistband.
• Machine wash/dry.


More Information
StyleCapri
MaterialOrganic Cotton
PatternSolid
ClimateIndoor, Mild, Hot
','From yoga at dawn to evenings curled up with a book, our Portia Capri gives you the comfort and freedom to cruise through the day. The high-waisted design keeps you covered while you\'re bending and stretching, while contrast stripes promise a dash of sporty style.• Salmon heather capri sweats.• Relaxed fit, high waist.• Inseam: 21\".• Wide elastic waistband.• Machine wash/dry.More InformationStyleCapriMaterialOrganic CottonPatternSolidClimateIndoor, Mild, Hot','',0,49000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 13:35:00','2020-12-22 13:35:00','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WP13/wp13orange_main.jpg','WP13/wp13orange_back.jpg','WP13/wp13blue_main.jpg','WP13/wp13green_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WS01','101030','','','','','Gwyn Endurance Tee','gwyn-endurance-tee','','','','','Size,Color','',0,0,0,0,0,'','

When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.

• Short-Sleeves.
• Machine wash/line dry.


StyleTee
MaterialPolyester, HeatTec®
PatternSolid
ClimateIndoor, Warm
','When the miles add up, comfort is crucial. The short-sleeve Gwyn Endurance Tee is designed with an ultra-lightweight blend of breathable fabrics to help you tackle your training. Female-specific seams and a sporty v-neckline offer subtle style.• Short-Sleeves.• Machine wash/line dry.StyleTeeMaterialPolyester, HeatTec®PatternSolidClimateIndoor, Warm','',0,24000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 08:41:47','2020-12-22 08:41:47','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WS01/ws01black_main.jpg','WS01/ws01black_back.jpg','WS01/ws01green_main.jpg','WS01/ws01yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WS02','101030','','','','','Gabrielle Micro Sleeve Top','gabrielle-micro-sleeve-top','','','','','Size,Color','',0,0,1,0,0,'','

Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.

• Lime green v-neck tee.
• Slimming, flattering fit.
• Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.
• Longer curved hem provides additional coverage.
• 55% Hemp / 45% Organic Cotton.


More Information
StyleTee
MaterialCotton, Hemp
PatternSolid
ClimateIndoor, Warm
','Luma\'s most popular top, the Gabrielle Micro Sleeve is back with even more comfort and style.• Lime green v-neck tee.• Slimming, flattering fit.• Moisture-wicking, quick-drying, anti-microbial, and anti-odor construction.• Longer curved hem provides additional coverage.• 55% Hemp / 45% Organic Cotton.More InformationStyleTeeMaterialCotton, HempPatternSolidClimateIndoor, Warm','',0,28000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-22 09:20:16','2020-12-22 23:27:07','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WS02/ws02green_main.jpg','WS02/ws02green_back.jpg','WS02/ws02blue_main.jpg','WS02/ws02red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WS03','101030','','','','','Iris Workout Top','iris-workout-top','','','','','Size,Color','',0,0,0,0,0,'','

The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.

• Pink heather rouched v-neck.
• Scoop neckline.
• Angled flat seams.
• Moisture wicking.
• Body skimming.
• 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.


More Information
StyleTee
MaterialLycra®, Polyester, Spandex, TENCEL
PatternSolid
ClimateIndoor, Warm
','The Iris Workout Top is sleeveless, body fitting and moisture wicking for a fashionable, functional garment. Rouched textures add style.• Pink heather rouched v-neck.• Scoop neckline.• Angled flat seams.• Moisture wicking.• Body skimming.• 83% Polyester / 11% TENCEL® Lyocell / 6% Lycra® Spandex.More InformationStyleTeeMaterialLycra®, Polyester, Spandex, TENCELPatternSolidClimateIndoor, Warm','',0,29000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 09:18:27','2020-12-22 09:18:27','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WS03/ws03red_main.jpg','WS03/ws03red_alt1.jpg','WS03/ws03red_back.jpg','WS03/ws03blue_main.jpg','WS03/ws03green_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WS04','101030','','','','','Layla Tee','layla-tee','','','','','Size,Color','',0,0,0,0,0,'','

Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.

• Teal tee.
• Long back hem.
• Dropped shoulders.


More Information
StyleTee
MaterialCotton
PatternSolid
ClimateIndoor, Warm
','Work out or hang out in chic style in the Layla Tee. With a lightweight sheer design and a roomy neckline, this tee fits you comfortably while looking stylish.• Teal tee.• Long back hem.• Dropped shoulders.More InformationStyleTeeMaterialCottonPatternSolidClimateIndoor, Warm','',0,29000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 09:16:28','2020-12-22 09:16:28','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WS04/ws04green_main.jpg','WS04/ws04green_back.jpg','WS04/ws04blue_main.jpg','WS04/ws04red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WS05','101030','','','','','Desiree Fitness Tee','desiree-fitness-tee','','','','','Size,Color','',0,0,0,0,0,'','

When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.

• Short-Sleeves.
• Performance fabric.
• Machine wash/line dry.


StyleTee
MaterialPolyester, HeatTec®
PatternSolid
ClimateIndoor, Warm


','When you\'re too far to turn back, thank yourself for choosing the Desiree Fitness Tee. Its ultra-lightweight, ultra-breathable fabric wicks sweat away from your body and helps keeps you cool for the distance.• Short-Sleeves.• Performance fabric.• Machine wash/line dry.StyleTeeMaterialPolyester, HeatTec®PatternSolidClimateIndoor, Warm','',0,24000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 08:37:37','2020-12-22 08:37:37','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WS05/ws05black_main.jpg','WS05/ws05black_alt1.jpg','WS05/ws05black_back.jpg','WS05/ws05orange_main.jpg','WS05/ws05yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WS06','101030','','','','','Elisa EverCool™ Tee','elisa-evercool-tee','','','','','Size,Color','',0,0,0,0,0,'','

When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.

• Purple heather v-neck tee.
• Short-Sleeves.
• Luma EverCool™ fabric.
• Machine wash/line dry.


StyleTee
MaterialEverCool™, Organic Cotton
PatternSolid
ClimateIndoor, Warm
','When rising temps threaten to melt you down, Elisa EverCool™ Tee brings serious relief. Moisture-wicking fabric pulls sweat away from your skin, while the innovative seams hug your muscles to enhance your range of motion.• Purple heather v-neck tee.• Short-Sleeves.• Luma EverCool™ fabric.• Machine wash/line dry.StyleTeeMaterialEverCool™, Organic CottonPatternSolidClimateIndoor, Warm','',0,29000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 09:14:24','2020-12-22 09:14:24','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WS06/ws06purple_main.jpg','WS06/ws06purple_back.jpg','WS06/ws06gray_main.jpg','WS06/ws06red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WS07','101030','','','','','Juliana Short-Sleeve Tee','juliana-short-sleeve-tee','','','','','Size,Color','',0,0,0,0,0,'','

The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.

• Black scoop neck tee.
• Side rouching.
• Relaxed fit.


More Information
StyleTee
MaterialCocona® performance fabric, Polyester
PatternSolid
ClimateIndoor, Warm
','The Juliana Short-Sleeve Tee gives you more than sporty style. Consider that its soft Cocona® polyester fabric accelerates evaporation to help keep you dry and comfortable, too. And a selection of colors lets you get more than one.• Black scoop neck tee.• Side rouching.• Relaxed fit.More InformationStyleTeeMaterialCocona® performance fabric, PolyesterPatternSolidClimateIndoor, Warm','',0,42000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 09:12:30','2020-12-22 09:12:30','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WS07/ws07black_main.jpg','WS07/ws07black_alt1.jpg','WS07/ws07black_back.jpg','WS07/ws07white_main.jpg','WS07/ws07yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WS08','101030','','','','','Minerva LumaTech™ V-Tee','minerva-lumatech-v-tee','','','','','Size,Color','',0,0,0,0,0,'','

Don\'t be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.

• Navy blue heather soft v-neck tee.
• Flatlock seams for chafe-free comfort.
• Relaxed cut.
• Ultra-lightweight fabric.
• Machine wash/dry.


More Information
StyleTee
MaterialCotton, Lycra®
PatternSolid
ClimateIndoor, Warm
','Don\'t be fooled by the simple design of our Minerva LumaTech™ V-Neck Tee. This classic training top features the same serious sweat-wicking technology as some of the more expensive tees in our lineup.• Navy blue heather soft v-neck tee.• Flatlock seams for chafe-free comfort.• Relaxed cut.• Ultra-lightweight fabric.• Machine wash/dry.More InformationStyleTeeMaterialCotton, Lycra®PatternSolidClimateIndoor, Warm','',0,32000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 09:10:23','2020-12-22 09:10:23','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WS08/ws08blue_main.jpg','WS08/ws08blue_back.jpg','WS08/ws08black_main.jpg','WS08/ws08red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WS09','101030','','','','','Tiffany Fitness Tee','tiffany-fitness-tee','','','','','Size,Color','',0,0,0,0,0,'','

You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.

• Teal soft scoop neck tee.
• Contrast stitching pattern.
• Machine wash/dry.


More Information
StyleTee
MaterialOrganic Cotton
PatternSolid
ClimateIndoor, Warm
','You\'ll work out and look cute doing it in the short-sleeve Tiffany Fitness Tee. The longer length and fitted cut offer a smoother silhouette, while scoop neck pattern and drape effects lend a trendy touch.• Teal soft scoop neck tee.• Contrast stitching pattern.• Machine wash/dry.More InformationStyleTeeMaterialOrganic CottonPatternSolidClimateIndoor, Warm','',0,28000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 09:07:37','2020-12-22 09:07:37','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WS09/ws09blue_main.jpg','WS09/ws09blue_back.jpg','WS09/ws09red_main.jpg','WS09/ws09white_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('Ws10','101030','','','','','Karissa V-Neck Tee','karissa-v-neck-tee','','','','','Size,Color','',1,0,0,0,0,'','

The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.

• Pink heather soft v-neck tee.
• Luma signature micro sleeves.
• Semi-fitted.
• Machine wash/dry.


StyleTee
MaterialCotton, EverCool™
PatternSolid
ClimateIndoor, Warm
','The Karissa V-Neck Tee features a semi-fitted shape that\'s flattering for every figure. You can hit the gym with confidence while it hugs curves and hides common \"problem\" areas.• Pink heather soft v-neck tee.• Luma signature micro sleeves.• Semi-fitted.• Machine wash/dry.StyleTeeMaterialCotton, EverCool™PatternSolidClimateIndoor, Warm','',0,32000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',2,'2020-12-22 09:05:17','2020-12-22 23:20:13','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','Ws10/ws10red_main.jpg','Ws10/ws10red_back.jpg','Ws10/ws10green_main.jpg','Ws10/ws10yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WS11','101030','','','','','Diva Gym Tee','diva-gym-tee','','','','','Size,Color','',0,0,0,0,0,'','

The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.

• Bright yellow v-neck tee.
• Moisture-wicking fabric.
• Long-Sleeves.
• Machine wash/line dry.


More Information
StyleTee
MaterialCocona® performance fabric, Polyester
PatternSolid
ClimateIndoor, Warm
','The Diva Gym Tee feels like your favorite right out of the mailbox. Micro-sleeved, lightweight and extra comfortable, it\'s a casual staple that hides incredible comfort behind a laid-back, carefree look.• Bright yellow v-neck tee.• Moisture-wicking fabric.• Long-Sleeves.• Machine wash/line dry.More InformationStyleTeeMaterialCocona® performance fabric, PolyesterPatternSolidClimateIndoor, Warm','',0,32000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 09:03:01','2020-12-22 09:03:01','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WS11/ws11yellow_main.jpg','WS11/ws11yellow_back.jpg','WS11/ws11green_main.jpg','WS11/ws11orange_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WS12','101030','','','','','Radiant Tee','radiant-tee','','','','','Size,Color','',0,0,0,0,0,'','

So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.

• Salmon soft scoop neck tee.
• Athletic, semi-form fit.
• Flat seams prevent chafing.
• 67% Organic Cotton / 28% Hemp / 5% Spandex.


More Information
StyleTee
MaterialHemp, Spandex, Organic Cotton
PatternSolid
ClimateIndoor, Warm
','So light and comfy, you\'ll love the Radiant Tee\'s organic fabric, feel, performance and style. You may never want to stop moving in this shirt.• Salmon soft scoop neck tee.• Athletic, semi-form fit.• Flat seams prevent chafing.• 67% Organic Cotton / 28% Hemp / 5% Spandex.More InformationStyleTeeMaterialHemp, Spandex, Organic CottonPatternSolidClimateIndoor, Warm','',0,22000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-22 09:00:14','2020-12-22 09:00:14','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WS12/ws12orange_main.jpg','WS12/ws12orange_back.jpg','WS12/ws12blue_main.jpg','WS12/ws12purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WSH01','102020','','','','','Fiona Fitness Short','fiona-fitness-short','','','','','Size,Color','',0,0,0,0,0,'','

Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.

• Black run shorts
- cotton/spandex.
• 5” inseam.
• Machine wash/Line dry.


More Information
StyleBase Layer, Basic
MaterialSpandex, Organic Cotton
PatternSolid
ClimateIndoor, Mild, Warm, Hot
','Don\'t let the plain style fool you: the Fiona Fitness Short demands notice on several levels. Comfort, of course. But also a performance-grade wicking fabric that takes everything you can give.• Black run shorts- cotton/spandex.• 5” inseam.• Machine wash/Line dry.More InformationStyleBase Layer, BasicMaterialSpandex, Organic CottonPatternSolidClimateIndoor, Mild, Warm, Hot','',0,29000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 14:30:13','2020-12-22 14:30:13','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WSH01/wsh01black_main.jpg','WSH01/wsh01black_back.jpg','WSH01/wsh01green_main.jpg','WSH01/wsh01red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WSH02','102020','','','','','Maxima Drawstring Short','maxima-drawstring-short','','','','','Size,Color','',0,0,0,0,0,'','

Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.

• Light gray run shorts
- cotton polyester.
• Contrast binding.
• 3\" inseam.
• Machine wash/dry.


More Information
StyleBasic
MaterialCotton, Polyester
PatternSolid
ClimateIndoor, Mild, Warm, Hot
','Even laid-back women like to stay stylish, and that\'s just what the Maxima Drawstring Short delivers. An elastic waist keeps the fit flexible, on the deck at home or on a trail walk. Sporty tennis flair adds an athletic accent.• Light gray run shorts- cotton polyester.• Contrast binding.• 3\" inseam.• Machine wash/dry.More InformationStyleBasicMaterialCotton, PolyesterPatternSolidClimateIndoor, Mild, Warm, Hot','',0,28000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 14:28:23','2020-12-22 14:28:23','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WSH02/wsh02gray_main.jpg','WSH02/wsh02gray_back.jpg','WSH02/wsh02orange_main.jpg','WSH02/wsh02yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WSH03','102020','','','','','Gwen Drawstring Bike Short','gwen-drawstring-bike-short','','','','','Size,Color','',0,0,0,0,0,'','

For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.

• Dark heather gray rouched bike shorts.
• Fitted. Inseam: 2\".
• Machine wash/dry.


More Information
StyleBase Layer, Basic, Snug
MaterialLumaTech™, Organic Cotton
PatternSolid
ClimateAll-Weather, Indoor, Hot
','For a completely modern style with moisture-wicking CoolTech™ technology, try the Gwen Drawstring Bike Short. Subtle grays and eye catching stitching combine with an adjustable waist for the perfect look and fit.• Dark heather gray rouched bike shorts.• Fitted. Inseam: 2\".• Machine wash/dry.More InformationStyleBase Layer, Basic, SnugMaterialLumaTech™, Organic CottonPatternSolidClimateAll-Weather, Indoor, Hot','',0,50000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 14:26:20','2020-12-22 14:26:20','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WSH03/wsh03gray_main.jpg','WSH03/wsh03gray_alt1.jpg','WSH03/wsh03gray_back.jpg','WSH03/wsh03blue_main.jpg','WSH03/wsh03orange_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WSH04','102020','','','','','Artemis Running Short','artemis-running-short','','','','','Size,Color','',0,0,0,0,0,'','

Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.

• Black rouched shorts with mint waist.
• Soft, lightweight construction.
• LumaTech™ wicking technology.
• Semi-fitted.


More Information
StyleBasic
MaterialSpandex, Wool
PatternSolid-Highlight
ClimateAll-Weather, Indoor, Mild, Warm, Hot
','Discover smooth jogging and chic comfort each time you slip into the Artemis Running Short. A unique maritime-inspired design and oolor theme features a stretchy drawstring waist.• Black rouched shorts with mint waist.• Soft, lightweight construction.• LumaTech™ wicking technology.• Semi-fitted.More InformationStyleBasicMaterialSpandex, WoolPatternSolid-HighlightClimateAll-Weather, Indoor, Mild, Warm, Hot','',0,45000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 14:24:07','2020-12-22 14:24:07','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WSH04/wsh04black_main.jpg','WSH04/wsh04black_alt1.jpg','WSH04/wsh04black_back.jpg','WSH04/wsh04green_main.jpg','WSH04/wsh04orange_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WSH05','102020','','','','','Bess Yoga Short','bess-yoga-short','','','','','Size,Color','',0,0,0,0,0,'','

Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.

• Navy cotton shorts with light bue waist detail.
• Front shirred waistband.
• Flat-lock, chafe-free side seams.
• Vented gusset.
• Hidden interior pocket.
• Sustainable and recycled fabric.


More Information
StyleBasic
MaterialCotton, Mesh, CoolTech™
PatternSolid-Highlight
ClimateAll-Weather, Warm, Hot
','Designed for intense physical activity – think bikram – our Bess Yoga Short features moisture-wicking, four-way stretch fabric that lets you move in every which way. A vented gusset adds breathability and range of motion.• Navy cotton shorts with light bue waist detail.• Front shirred waistband.• Flat-lock, chafe-free side seams.• Vented gusset.• Hidden interior pocket.• Sustainable and recycled fabric.More InformationStyleBasicMaterialCotton, Mesh, CoolTech™PatternSolid-HighlightClimateAll-Weather, Warm, Hot','',0,28000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 14:21:55','2020-12-22 14:21:55','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WSH05/wsh05blue_main.jpg','WSH05/wsh05blue_back.jpg','WSH05/wsh05purple_main.jpg','WSH05/wsh05yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WSH06','102020','','','','','Angel Light Running Short','angel-light-running-short','','','','','Size','',0,0,0,0,0,'','

The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.

• Dark heather gray running shorts.
• Snug fit.
• Elastic waistband.
• Cocona® performance fabric.
• Machine wash/dry.


More Information
StyleBasic, Snug
MaterialCocona® performance fabric, Mesh, Polyester
PatternSolid
ClimateAll-Weather, Indoor, Hot
','The Angel Light Running Short offers comfort in an ultra-lightweight, breathable package. With fabric infused with all-natural Cocona® performance technology, it can whisk away sweat and block UV rays.• Dark heather gray running shorts.• Snug fit.• Elastic waistband.• Cocona® performance fabric.• Machine wash/dry.More InformationStyleBasic, SnugMaterialCocona® performance fabric, Mesh, PolyesterPatternSolidClimateAll-Weather, Indoor, Hot','',0,42000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 14:19:55','2020-12-22 14:19:55','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WSH06/wsh06gray_main.jpg','WSH06/wsh06gray_alt1.jpg','WSH06/wsh06gray_back.jpg','WSH06/wsh06orange_main.jpg','WSH06/wsh06purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WSH07','102020','','','','','Echo Fit Compression Short','echo-fit-compression-short','','','','','Size,Color','',0,0,0,0,0,'','

Your muscles know it\'s go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.

• Black compression shorts.
• High-waisted cut.
• Compression fit.
• Inseam: 1.0\".
• Machine wash/dry.


More Information
StyleBase Layer, Compression, Snug
MaterialLycra®, Spandex, Wool
PatternSolid
ClimateAll-Weather, Indoor, Mild, Warm, Hot
','Your muscles know it\'s go time the second you pull on the Echo Fit Compression Short. A balance of firm, stimulating squeeze with breathability, it offers the support and comfort you need to give it your all.• Black compression shorts.• High-waisted cut.• Compression fit.• Inseam: 1.0\".• Machine wash/dry.More InformationStyleBase Layer, Compression, SnugMaterialLycra®, Spandex, WoolPatternSolidClimateAll-Weather, Indoor, Mild, Warm, Hot','',0,24000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 14:17:39','2020-12-22 14:17:39','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WSH07/wsh07black_main.jpg','WSH07/wsh07black_back.jpg','WSH07/wsh07blue_main.jpg','WSH07/wsh07purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WSH08','102020','','','','','Sybil Running Short','sybil-running-short','','','','','Size,Color','',0,0,0,0,0,'','

Fortunately, it\'s okay to look cute while you\'re working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.

• Blue running shorts with green waist.
• Drawstring-adjustable waist.
• 4\" inseam. Machine wash/line dry.


More Information
StyleBasic
MaterialCocona® performance fabric, Cotton, Mesh
PatternSolid-Highlight
ClimateIndoor, Hot
','Fortunately, it\'s okay to look cute while you\'re working out. The Sybil Running Short combines a fun, color-blocked design with breathable mesh fabric for sporty-fun style.• Blue running shorts with green waist.• Drawstring-adjustable waist.• 4\" inseam. Machine wash/line dry.More InformationStyleBasicMaterialCocona® performance fabric, Cotton, MeshPatternSolid-HighlightClimateIndoor, Hot','',0,44000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 14:15:50','2020-12-22 14:15:50','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WSH08/wsh08purple_main.jpg','WSH08/wsh08purple_back.jpg','','','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WSH09','102020','','','','','Mimi All-Purpose Short','mimi-all-purpose-short','','','','','Size,Color','',0,0,0,0,0,'','

You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.

• Gray/seafoam two-layer shorts.
• Water-resistant construction.
• Inner mesh brief for breathable support.
• 2.0\" inseam.
• Reflective trim for visibility.


More Information
StyleBasic
MaterialNylon, Polyester, Organic Cotton
PatternSolid-Highlight
ClimateMild, Warm
','You can run, bike or swim in the do-anything, water-resistance Mimi Short. No need to worry about rubbing-induced soreness either, with flatlock seams and soft, chafe-resistant material.• Gray/seafoam two-layer shorts.• Water-resistant construction.• Inner mesh brief for breathable support.• 2.0\" inseam.• Reflective trim for visibility.More InformationStyleBasicMaterialNylon, Polyester, Organic CottonPatternSolid-HighlightClimateMild, Warm','',0,44000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 14:14:02','2020-12-22 14:14:02','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WSH09/wsh09gray_main.jpg','WSH09/wsh09gray_alt1.jpg','WSH09/wsh09gray_back.jpg','WSH09/wsh09green_main.jpg','WSH09/wsh09white_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WSH10','102020','','','','','Ana Running Short','ana-running-short','','','','','Size,Color','',0,0,0,0,0,'','

Time to lace up your kicks and beat that personal best in the Ana Running Short. It\'s designed with breathable mesh side panels to help keep you cool while you master the miles.

• Black/pink two-layer shorts.
• Low-rise elastic waistband.
• Relaxed fit.
• Ultra-lightweight fabric.
• Internal drawstring.
• Machine wash/dry.


More Information
StyleBasic
MaterialPolyester, Organic Cotton, CoolTech™
PatternSolid-Highlight
ClimateAll-Weather, Warm
','Time to lace up your kicks and beat that personal best in the Ana Running Short. It\'s designed with breathable mesh side panels to help keep you cool while you master the miles.• Black/pink two-layer shorts.• Low-rise elastic waistband.• Relaxed fit.• Ultra-lightweight fabric.• Internal drawstring.• Machine wash/dry.More InformationStyleBasicMaterialPolyester, Organic Cotton, CoolTech™PatternSolid-HighlightClimateAll-Weather, Warm','',0,40000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 14:11:58','2020-12-22 14:11:58','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WSH10/wsh10black_main.jpg','WSH10/wsh10black_alt1.jpg','WSH10/wsh10black_back.jpg','WSH10/wsh10orange_main.jpg','WSH10/wsh10white_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WSH11','102020','','','','','Ina Compression Short','ina-compression-short','','','','','Size,Color','',1,0,0,0,0,'','

One of Luma\'s most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you\'re running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.

• Royal blue bike shorts.
• Compression fit.
• Moisture-wicking.
• Anti-microbial.
• Machine wash/dry.


StyleBase Layer, Compression, Snug
MaterialLumaTech™, Spandex
PatternSolid
ClimateAll-Weather, Warm, Hot
','One of Luma\'s most popular items, the Ina Compression Short has you covered with exceptional support and comfort, whether you\'re running the trail, riding a bike or ripping out reps. The ventilating fabric offers cool relief and prevents irritating chafing.• Royal blue bike shorts.• Compression fit.• Moisture-wicking.• Anti-microbial.• Machine wash/dry.StyleBase Layer, Compression, SnugMaterialLumaTech™, SpandexPatternSolidClimateAll-Weather, Warm, Hot','',0,49000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',2,'2020-12-22 14:09:59','2020-12-22 23:22:48','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WSH11/wsh11blue_main.jpg','WSH11/wsh11blue_back.jpg','WSH11/wsh11orange_main.jpg','WSH11/wsh11red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WSH12','102020','','','','','Erika Running Short','erika-running-short','','','','','Size,Color','',0,0,0,0,0,'','

A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.

• Seafoam pattern running shorts.
• Elastic waistband.
• Snug fit.
• 4\'\' inseam.
• 76% premium brushed Nylon / 24% Spandex.


More Information
StyleBasic, Snug
MaterialPolyester, Spandex, Organic Cotton
PatternGraphic Print
ClimateMild, Warm, Hot
','A great short with a body-hugging design, the Erika Running Short is perfect for runners who prefer a fitted short rather than the traditional baggy variety.• Seafoam pattern running shorts.• Elastic waistband.• Snug fit.• 4\'\' inseam.• 76% premium brushed Nylon / 24% Spandex.More InformationStyleBasic, SnugMaterialPolyester, Spandex, Organic CottonPatternGraphic PrintClimateMild, Warm, Hot','',0,45000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 14:08:15','2020-12-22 14:08:15','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WSH12/wsh12green_main.jpg','WSH12/wsh12green_alt1.jpg','WSH12/wsh12green_back.jpg','WSH12/wsh12purple_main.jpg','WSH12/wsh12red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WT01','101040','','','','','Bella Tank','bella-tank','','','','','Size,Color','',0,0,0,0,1,'','

Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.

• Navy blue tank top - cotton.
• Feminine scoop neckline.
• Power mesh lining in shelf bra for superior support.
• Soft, breathable fabric.
• Dry wick fabric to stay cool and dry.


More Information
StyleTank
MaterialOrganic Cotton
PatternSolid
ClimateIndoor, Warm
','Style, performance and comfort mix it up in the Bella Tank. With striking color block contrast, fitted form and a built-in bra, you\'ll be supported and stylish at the same time.• Navy blue tank top - cotton.• Feminine scoop neckline.• Power mesh lining in shelf bra for superior support.• Soft, breathable fabric.• Dry wick fabric to stay cool and dry.More InformationStyleTankMaterialOrganic CottonPatternSolidClimateIndoor, Warm','',0,29000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 13:20:16','2020-12-23 10:19:08','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WT01/wt01blue_main.jpg','WT01/wt01blue_back.jpg','WT01/wt01black_main.jpg','WT01/wt01orange_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WT02','101040','','','','','Zoe Tank','zoe-tank','','','','','Size,Color','',0,0,0,0,0,'','

The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.

• Salmon heather tank top.
• 1\" elastic band on inner bra.
• Mesh lining on shelf bra for support.
• Soft, breathable fabric.
• Dry wick fabric to stay cool and dry.


More Information
StyleTank
MaterialCocona® performance fabric, Cotton
PatternSolid
ClimateIndoor, Warm
','The Zoe Tank leads with eye-catching fitness-pop looks, keeping your studio style uptrend. The inner shelf bra and soft, breathable fabric create a tank top that looks, feels and fits great.• Salmon heather tank top.• 1\" elastic band on inner bra.• Mesh lining on shelf bra for support.• Soft, breathable fabric.• Dry wick fabric to stay cool and dry.More InformationStyleTankMaterialCocona® performance fabric, CottonPatternSolidClimateIndoor, Warm','',0,29000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-22 13:18:34','2020-12-22 13:18:34','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WT02/wt02orange_main.jpg','WT02/wt02orange_back.jpg','WT02/wt02green_main.jpg','WT02/wt02yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WT03','101040','','','','','Nora Practice Tank','nora-practice-tank','','','','','Size,Color','',0,0,0,0,0,'','

A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!

• Pink stripped tank with side rouching.
• Pre-shrunk.
• Garment dyed.
• 92% Organic Cotton/8% Lycra.


More Information
StyleTank
MaterialLycra®, Organic Cotton
PatternSolid
ClimateIndoor, Warm
','A closet go-to, the Nora Practice Tank can be worn at or after workouts or beneath a baggy tee for a laid-back style. Perfect fit and very comfortable!• Pink stripped tank with side rouching.• Pre-shrunk.• Garment dyed.• 92% Organic Cotton/8% Lycra.More InformationStyleTankMaterialLycra®, Organic CottonPatternSolidClimateIndoor, Warm','',0,39000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 13:16:33','2020-12-22 13:16:33','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WT03/wt03red_main.jpg','WT03/wt03red_alt1.jpg','WT03/wt03red_back.jpg','WT03/wt03orange_main.jpg','WT03/wt03purple_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WT04','101040','','','','','Nona Fitness Tank','nona-fitness-tank','','','','','Size,Color','',0,0,0,0,0,'','

It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.

• Blue/white striped mesh tank.
• Relaxed fit.
• Chafe-resistant trim around armholes and collar.
• Machine wash/dry.


More Information
StyleTank
MaterialCotton, Spandex
PatternStriped
ClimateIndoor, Warm
','It doesn\'t matter if your goal is 5 miles or an hour of Vinyasa, because our Nona Fitness Tank does it all. You don\'t have to sacrifice either -- this v-neck top features smooth, chafe-free seams and a breathable mesh back insert. Cute, too.• Blue/white striped mesh tank.• Relaxed fit.• Chafe-resistant trim around armholes and collar.• Machine wash/dry.More InformationStyleTankMaterialCotton, SpandexPatternStripedClimateIndoor, Warm','',0,39000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 13:14:26','2020-12-22 13:14:26','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WT04/wt04blue_main.jpg','WT04/wt04blue_back.jpg','WT04/wt04purple_main.jpg','WT04/wt04red_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WT05','101040','','','','','Leah Yoga Top','leah-yoga-top','','','','','Size,Color','',0,0,0,0,0,'','

The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.

• Blue heather rouched tank top.
• Camisole tank top.
• Banding and shirring details.
• Body hugging fit.
• Contrast topstitch.
• Interior shelf bra with shapewear technology.
• 65% Polyester 35% Cotton.


More Information
StyleTank, Camisole
MaterialCotton, Polyester
PatternSolid
ClimateIndoor, Warm
','The Leah Yoga Top offers a practical, comfortable upper that will not compromise your style. Body hugging fit and interior shelf bra make it suitable for active or leisure pursuits.• Blue heather rouched tank top.• Camisole tank top.• Banding and shirring details.• Body hugging fit.• Contrast topstitch.• Interior shelf bra with shapewear technology.• 65% Polyester 35% Cotton.More InformationStyleTank, CamisoleMaterialCotton, PolyesterPatternSolidClimateIndoor, Warm','',0,39000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 13:12:25','2020-12-22 13:12:25','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WT05/wt05purple_main.jpg','WT05/wt05purple_alt1.jpg','WT05/wt05purple_back.jpg','WT05/wt05orange_main.jpg','WT05/wt05white_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WT06','101040','','','','','Chloe Compete Tank','chloe-compete-tank','','','','','Size,Color','',0,0,0,0,0,'','

You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.

• Royal blue tank top - nylon/spandex.
• Flatlock stitching.
• Moisture-wicking fabric.
• Ergonomic seaming.
• Machine wash/dry.


More Information
StyleTank
MaterialMesh, Nylon, Polyester
PatternSolid
ClimateIndoor, Warm
','You\'ve earned your figure, so stay cool and let it do all the talking in the form-fitted, sleek racerback Chloe Compete Tank. Designed for total range of motion and performance, the Nona is made with highly breathable mesh fabric.• Royal blue tank top - nylon/spandex.• Flatlock stitching.• Moisture-wicking fabric.• Ergonomic seaming.• Machine wash/dry.More InformationStyleTankMaterialMesh, Nylon, PolyesterPatternSolidClimateIndoor, Warm','',0,39000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 13:10:14','2020-12-22 13:10:14','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WT06/wt06blue_main.jpg','WT06/wt06blue_back.jpg','WT06/wt06red_main.jpg','WT06/wt06yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''),('WT07','101040','','','','','Maya Tunic','maya-tunic','','','','','Size,Color','',0,0,0,0,0,'','

With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.

• Mint green heather tunic-style tank.
• Wrapped back with cut out detail.
• Drawcord detail at end.
• Abutted seams.


More Information
StyleTank
MaterialCocona® performance fabric, Organic Cotton
PatternSolid
ClimateIndoor, Warm
','With abutted seams and moisture wicking capacity, the Maya Tunic lets you work out in complete comfort.• Mint green heather tunic-style tank.• Wrapped back with cut out detail.• Drawcord detail at end.• Abutted seams.More InformationStyleTankMaterialCocona® performance fabric, Organic CottonPatternSolidClimateIndoor, Warm','',0,29000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',0,'2020-12-22 10:16:17','2020-12-22 10:16:17','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WT07/wt07green_main.jpg','WT07/wt07green_alt1.jpg','WT07/wt07green_back.jpg','WT07/wt07white_main.jpg','WT07/1608599777_6163_wt07white_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WT08','101040','','','','','Antonia Racer Tank','antonia-racer-tank','','','','','Size,Color','',1,0,0,0,0,'','

You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.

• Machine wash.
• Line dry.


More Information
StyleTank
MaterialNylon, Polyester, HeatTec®
PatternSolid
ClimateIndoor, Warm
','You won\'t know what you like best about the Antonia Racer Tank: soft, stretchy, lightweight fabric? Super-cute colorblocked details? Whatever it is, this piece is sure to quickly move to the top of your workout rotation.• Machine wash.• Line dry.More InformationStyleTankMaterialNylon, Polyester, HeatTec®PatternSolidClimateIndoor, Warm','',0,34000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',1,'2020-12-22 10:14:24','2020-12-22 23:21:45','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WT08/wt08black_main.jpg','WT08/wt08black_alt1.jpg','WT08/wt08black_back.jpg','WT08/wt08purple_main.jpg','WT08/wt08yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','',''),('WT09','101040','','','','','Breathe-Easy Tank','breathe-easy-tank','','','','','Size,Color','',0,0,0,0,0,'','

The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.

• Machine wash/dry.
• Cocona® fabric.



StyleTank
MaterialCocona® performance fabric, Cotton
PatternSolid
ClimateIndoor, Warm
','The Breathe Easy Tank is so soft, lightweight, and comfortable, you won\'t even know it\'s there -- until its high-tech Cocona® fabric starts wicking sweat away from your body to help you stay dry and focused. Layer it over your favorite sports bra and get moving.• Machine wash/dry.• Cocona® fabric.StyleTankMaterialCocona® performance fabric, CottonPatternSolidClimateIndoor, Warm','',0,34000,0,0,0,0,'',1,0,0,99999,0,0,0,0,0,0,0,0,0,'','','','',3,'2020-12-22 10:07:51','2020-12-23 09:24:04','127.0.0.1',0,0,'wear','a:8:{s:8:\"material\";s:22:\"상품페이지 참고\";s:5:\"color\";s:22:\"상품페이지 참고\";s:4:\"size\";s:22:\"상품페이지 참고\";s:5:\"maker\";s:22:\"상품페이지 참고\";s:7:\"caution\";s:22:\"상품페이지 참고\";s:16:\"manufacturing_ym\";s:22:\"상품페이지 참고\";s:8:\"warranty\";s:22:\"상품페이지 참고\";s:2:\"as\";s:22:\"상품페이지 참고\";}',0,0,0.0,'','','WT09/wt09white_main.jpg','WT09/wt09white_back.jpg','WT09/wt09purple_main.jpg','WT09/wt09yellow_main.jpg','','','','','','','','','','','','','','','','','','','','','','','','','',''); /*!40000 ALTER TABLE `g5_shop_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_item_option` -- DROP TABLE IF EXISTS `g5_shop_item_option`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_item_option` ( `io_no` int(11) NOT NULL AUTO_INCREMENT, `io_id` varchar(255) NOT NULL DEFAULT '0', `io_type` tinyint(4) NOT NULL DEFAULT 0, `it_id` varchar(20) NOT NULL DEFAULT '', `io_price` int(11) NOT NULL DEFAULT 0, `io_stock_qty` int(11) NOT NULL DEFAULT 0, `io_noti_qty` int(11) NOT NULL DEFAULT 0, `io_use` tinyint(4) NOT NULL DEFAULT 0, PRIMARY KEY (`io_no`), KEY `io_id` (`io_id`), KEY `it_id` (`it_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2811 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_item_option` -- LOCK TABLES `g5_shop_item_option` WRITE; /*!40000 ALTER TABLE `g5_shop_item_option` DISABLE KEYS */; INSERT INTO `g5_shop_item_option` VALUES (610,'XSBlue',0,'WH10',0,9999,100,1),(611,'XSGray',0,'WH10',0,9999,100,1),(612,'XSYellow',0,'WH10',0,9999,100,1),(613,'SBlue',0,'WH10',0,9999,100,1),(614,'SGray',0,'WH10',0,9999,100,1),(615,'SYellow',0,'WH10',0,9999,100,1),(616,'MBlue',0,'WH10',0,9999,100,1),(617,'MGray',0,'WH10',0,9999,100,1),(618,'MYellow',0,'WH10',0,9999,100,1),(619,'LBlue',0,'WH10',0,9999,100,1),(620,'LGray',0,'WH10',0,9999,100,1),(621,'LYellow',0,'WH10',0,9999,100,1),(622,'XLBlue',0,'WH10',0,9999,100,1),(623,'XLGray',0,'WH10',0,9999,100,1),(624,'XLYellow',0,'WH10',0,9999,100,1),(640,'XSOrange',0,'WH08',0,9999,100,1),(641,'XSPurple',0,'WH08',0,9999,100,1),(642,'XSWhite',0,'WH08',0,9999,100,1),(643,'SOrange',0,'WH08',0,9999,100,1),(644,'SPurple',0,'WH08',0,9999,100,1),(645,'SWhite',0,'WH08',0,9999,100,1),(646,'MOrange',0,'WH08',0,9999,100,1),(647,'MPurple',0,'WH08',0,9999,100,1),(648,'MWhite',0,'WH08',0,9999,100,1),(649,'LOrange',0,'WH08',0,9999,100,1),(650,'LPurple',0,'WH08',0,9999,100,1),(651,'LWhite',0,'WH08',0,9999,100,1),(652,'XLOrange',0,'WH08',0,9999,100,1),(653,'XLPurple',0,'WH08',0,9999,100,1),(654,'XLWhite',0,'WH08',0,9999,100,1),(655,'XSGray',0,'WH07',0,9999,100,1),(656,'XSPurple',0,'WH07',0,9999,100,1),(657,'XSWhite',0,'WH07',0,9999,100,1),(658,'SGray',0,'WH07',0,9999,100,1),(659,'SPurple',0,'WH07',0,9999,100,1),(660,'SWhite',0,'WH07',0,9999,100,1),(661,'MGray',0,'WH07',0,9999,100,1),(662,'MPurple',0,'WH07',0,9999,100,1),(663,'MWhite',0,'WH07',0,9999,100,1),(664,'LGray',0,'WH07',0,9999,100,1),(665,'LPurple',0,'WH07',0,9999,100,1),(666,'LWhite',0,'WH07',0,9999,100,1),(667,'XLGray',0,'WH07',0,9999,100,1),(668,'XLPurple',0,'WH07',0,9999,100,1),(669,'XLWhite',0,'WH07',0,9999,100,1),(670,'XSPurple',0,'WH06',0,9999,100,1),(671,'SPurple',0,'WH06',0,9999,100,1),(672,'MPurple',0,'WH06',0,9999,100,1),(673,'LPurple',0,'WH06',0,9999,100,1),(674,'XLPurple',0,'WH06',0,9999,100,1),(675,'XSOrange',0,'WH05',0,9999,100,1),(676,'XSPurple',0,'WH05',0,9999,100,1),(677,'XSWhite',0,'WH05',0,9999,100,1),(678,'SOrange',0,'WH05',0,9999,100,1),(679,'SPurple',0,'WH05',0,9999,100,1),(680,'SWhite',0,'WH05',0,9999,100,1),(681,'MOrange',0,'WH05',0,9999,100,1),(682,'MPurple',0,'WH05',0,9999,100,1),(683,'MWhite',0,'WH05',0,9999,100,1),(684,'LOrange',0,'WH05',0,9999,100,1),(685,'LPurple',0,'WH05',0,9999,100,1),(686,'LWhite',0,'WH05',0,9999,100,1),(687,'XLOrange',0,'WH05',0,9999,100,1),(688,'XLPurple',0,'WH05',0,9999,100,1),(689,'XLWhite',0,'WH05',0,9999,100,1),(690,'XSBlue',0,'WH04',0,9999,100,1),(691,'XSOrange',0,'WH04',0,9999,100,1),(692,'XSPurple',0,'WH04',0,9999,100,1),(693,'SBlue',0,'WH04',0,9999,100,1),(694,'SOrange',0,'WH04',0,9999,100,1),(695,'SPurple',0,'WH04',0,9999,100,1),(696,'MBlue',0,'WH04',0,9999,100,1),(697,'MOrange',0,'WH04',0,9999,100,1),(698,'MPurple',0,'WH04',0,9999,100,1),(699,'LBlue',0,'WH04',0,9999,100,1),(700,'LOrange',0,'WH04',0,9999,100,1),(701,'LPurple',0,'WH04',0,9999,100,1),(702,'XLBlue',0,'WH04',0,9999,100,1),(703,'XLOrange',0,'WH04',0,9999,100,1),(704,'XLPurple',0,'WH04',0,9999,100,1),(705,'XSGreen',0,'WH03',0,9999,100,1),(706,'XSPurple',0,'WH03',0,9999,100,1),(707,'XSRed',0,'WH03',0,9999,100,1),(708,'SGreen',0,'WH03',0,9999,100,1),(709,'SPurple',0,'WH03',0,9999,100,1),(710,'SRed',0,'WH03',0,9999,100,1),(711,'MGreen',0,'WH03',0,9999,100,1),(712,'MPurple',0,'WH03',0,9999,100,1),(713,'MRed',0,'WH03',0,9999,100,1),(714,'LGreen',0,'WH03',0,9999,100,1),(715,'LPurple',0,'WH03',0,9999,100,1),(716,'LRed',0,'WH03',0,9999,100,1),(717,'XLGreen',0,'WH03',0,9999,100,1),(718,'XLPurple',0,'WH03',0,9999,100,1),(719,'XLRed',0,'WH03',0,9999,100,1),(735,'XSGreen',0,'WH01',0,9999,100,1),(736,'XSOrange',0,'WH01',0,9999,100,1),(737,'XSPurple',0,'WH01',0,9999,100,1),(738,'SGreen',0,'WH01',0,9999,100,1),(739,'SOrange',0,'WH01',0,9999,100,1),(740,'SPurple',0,'WH01',0,9999,100,1),(741,'MGreen',0,'WH01',0,9999,100,1),(742,'MOrange',0,'WH01',0,9999,100,1),(743,'MPurple',0,'WH01',0,9999,100,1),(744,'LGreen',0,'WH01',0,9999,100,1),(745,'LOrange',0,'WH01',0,9999,100,1),(746,'LPurple',0,'WH01',0,9999,100,1),(747,'XLGreen',0,'WH01',0,9999,100,1),(748,'XLOrange',0,'WH01',0,9999,100,1),(749,'XLPurple',0,'WH01',0,9999,100,1),(750,'XSBlack',0,'WS05',0,9999,100,1),(751,'XSOrange',0,'WS05',0,9999,100,1),(752,'XSYellow',0,'WS05',0,9999,100,1),(753,'SBlack',0,'WS05',0,9999,100,1),(754,'SOrange',0,'WS05',0,9999,100,1),(755,'SYellow',0,'WS05',0,9999,100,1),(756,'MBlack',0,'WS05',0,9999,100,1),(757,'MOrange',0,'WS05',0,9999,100,1),(758,'MYellow',0,'WS05',0,9999,100,1),(759,'LBlack',0,'WS05',0,9999,100,1),(760,'LOrange',0,'WS05',0,9999,100,1),(761,'LYellow',0,'WS05',0,9999,100,1),(762,'XLBlack',0,'WS05',0,9999,100,1),(763,'XLOrange',0,'WS05',0,9999,100,1),(764,'XLYellow',0,'WS05',0,9999,100,1),(765,'XSBlack',0,'WS01',0,9999,100,1),(766,'XSGreen',0,'WS01',0,9999,100,1),(767,'XSYellow',0,'WS01',0,9999,100,1),(768,'SBlack',0,'WS01',0,9999,100,1),(769,'SGreen',0,'WS01',0,9999,100,1),(770,'SYellow',0,'WS01',0,9999,100,1),(771,'MBlack',0,'WS01',0,9999,100,1),(772,'MGreen',0,'WS01',0,9999,100,1),(773,'MYellow',0,'WS01',0,9999,100,1),(774,'LBlack',0,'WS01',0,9999,100,1),(775,'LGreen',0,'WS01',0,9999,100,1),(776,'LYellow',0,'WS01',0,9999,100,1),(777,'XLBlack',0,'WS01',0,9999,100,1),(778,'XLGreen',0,'WS01',0,9999,100,1),(779,'XLYellow',0,'WS01',0,9999,100,1),(780,'XSBlue',0,'WS12',0,9999,100,1),(781,'XSOrange',0,'WS12',0,9999,100,1),(782,'XSPurple',0,'WS12',0,9999,100,1),(783,'SBlue',0,'WS12',0,9999,100,1),(784,'SOrange',0,'WS12',0,9999,100,1),(785,'SPurple',0,'WS12',0,9999,100,1),(786,'MBlue',0,'WS12',0,9999,100,1),(787,'MOrange',0,'WS12',0,9999,100,1),(788,'MPurple',0,'WS12',0,9999,100,1),(789,'LBlue',0,'WS12',0,9999,100,1),(790,'LOrange',0,'WS12',0,9999,100,1),(791,'LPurple',0,'WS12',0,9999,100,1),(792,'XLBlue',0,'WS12',0,9999,100,1),(793,'XLOrange',0,'WS12',0,9999,100,1),(794,'XLPurple',0,'WS12',0,9999,100,1),(795,'XSGreen',0,'WS11',0,9999,100,1),(796,'XSOrange',0,'WS11',0,9999,100,1),(797,'XSYellow',0,'WS11',0,9999,100,1),(798,'SGreen',0,'WS11',0,9999,100,1),(799,'SOrange',0,'WS11',0,9999,100,1),(800,'SYellow',0,'WS11',0,9999,100,1),(801,'MGreen',0,'WS11',0,9999,100,1),(802,'MOrange',0,'WS11',0,9999,100,1),(803,'MYellow',0,'WS11',0,9999,100,1),(804,'LGreen',0,'WS11',0,9999,100,1),(805,'LOrange',0,'WS11',0,9999,100,1),(806,'LYellow',0,'WS11',0,9999,100,1),(807,'XLGreen',0,'WS11',0,9999,100,1),(808,'XLOrange',0,'WS11',0,9999,100,1),(809,'XLYellow',0,'WS11',0,9999,100,1),(825,'XSBlue',0,'WS09',0,9999,100,1),(826,'XSRed',0,'WS09',0,9999,100,1),(827,'XSWhite',0,'WS09',0,9999,100,1),(828,'SBlue',0,'WS09',0,9999,100,1),(829,'SRed',0,'WS09',0,9999,100,1),(830,'SWhite',0,'WS09',0,9999,100,1),(831,'MBlue',0,'WS09',0,9999,100,1),(832,'MRed',0,'WS09',0,9999,100,1),(833,'MWhite',0,'WS09',0,9999,100,1),(834,'LBlue',0,'WS09',0,9999,100,1),(835,'LRed',0,'WS09',0,9999,100,1),(836,'LWhite',0,'WS09',0,9999,100,1),(837,'XLBlue',0,'WS09',0,9999,100,1),(838,'XLRed',0,'WS09',0,9999,100,1),(839,'XLWhite',0,'WS09',0,9999,100,1),(840,'XSBlack',0,'WS08',0,9999,100,1),(841,'XSBlue',0,'WS08',0,9999,100,1),(842,'XSRed',0,'WS08',0,9999,100,1),(843,'SBlack',0,'WS08',0,9999,100,1),(844,'SBlue',0,'WS08',0,9999,100,1),(845,'SRed',0,'WS08',0,9999,100,1),(846,'MBlack',0,'WS08',0,9999,100,1),(847,'MBlue',0,'WS08',0,9999,100,1),(848,'MRed',0,'WS08',0,9999,100,1),(849,'LBlack',0,'WS08',0,9999,100,1),(850,'LBlue',0,'WS08',0,9999,100,1),(851,'LRed',0,'WS08',0,9999,100,1),(852,'XLBlack',0,'WS08',0,9999,100,1),(853,'XLBlue',0,'WS08',0,9999,100,1),(854,'XLRed',0,'WS08',0,9999,100,1),(855,'XSBlack',0,'WS07',0,9999,100,1),(856,'XSWhite',0,'WS07',0,9999,100,1),(857,'XSYellow',0,'WS07',0,9999,100,1),(858,'SBlack',0,'WS07',0,9999,100,1),(859,'SWhite',0,'WS07',0,9999,100,1),(860,'SYellow',0,'WS07',0,9999,100,1),(861,'MBlack',0,'WS07',0,9999,100,1),(862,'MWhite',0,'WS07',0,9999,100,1),(863,'MYellow',0,'WS07',0,9999,100,1),(864,'LBlack',0,'WS07',0,9999,100,1),(865,'LWhite',0,'WS07',0,9999,100,1),(866,'LYellow',0,'WS07',0,9999,100,1),(867,'XLBlack',0,'WS07',0,9999,100,1),(868,'XLWhite',0,'WS07',0,9999,100,1),(869,'XLYellow',0,'WS07',0,9999,100,1),(870,'XSGray',0,'WS06',0,9999,100,1),(871,'XSPurple',0,'WS06',0,9999,100,1),(872,'XSRed',0,'WS06',0,9999,100,1),(873,'SGray',0,'WS06',0,9999,100,1),(874,'SPurple',0,'WS06',0,9999,100,1),(875,'SRed',0,'WS06',0,9999,100,1),(876,'MGray',0,'WS06',0,9999,100,1),(877,'MPurple',0,'WS06',0,9999,100,1),(878,'MRed',0,'WS06',0,9999,100,1),(879,'LGray',0,'WS06',0,9999,100,1),(880,'LPurple',0,'WS06',0,9999,100,1),(881,'LRed',0,'WS06',0,9999,100,1),(882,'XLGray',0,'WS06',0,9999,100,1),(883,'XLPurple',0,'WS06',0,9999,100,1),(884,'XLRed',0,'WS06',0,9999,100,1),(885,'XSBlue',0,'WS04',0,9999,100,1),(886,'XSGreen',0,'WS04',0,9999,100,1),(887,'XSRed',0,'WS04',0,9999,100,1),(888,'SBlue',0,'WS04',0,9999,100,1),(889,'SGreen',0,'WS04',0,9999,100,1),(890,'SRed',0,'WS04',0,9999,100,1),(891,'MBlue',0,'WS04',0,9999,100,1),(892,'MGreen',0,'WS04',0,9999,100,1),(893,'MRed',0,'WS04',0,9999,100,1),(894,'LBlue',0,'WS04',0,9999,100,1),(895,'LGreen',0,'WS04',0,9999,100,1),(896,'LRed',0,'WS04',0,9999,100,1),(897,'XLBlue',0,'WS04',0,9999,100,1),(898,'XLGreen',0,'WS04',0,9999,100,1),(899,'XLRed',0,'WS04',0,9999,100,1),(900,'XSBlue',0,'WS03',0,9999,100,1),(901,'XSGreen',0,'WS03',0,9999,100,1),(902,'XSRed',0,'WS03',0,9999,100,1),(903,'SBlue',0,'WS03',0,9999,100,1),(904,'SGreen',0,'WS03',0,9999,100,1),(905,'SRed',0,'WS03',0,9999,100,1),(906,'MBlue',0,'WS03',0,9999,100,1),(907,'MGreen',0,'WS03',0,9999,100,1),(908,'MRed',0,'WS03',0,9999,100,1),(909,'LBlue',0,'WS03',0,9999,100,1),(910,'LGreen',0,'WS03',0,9999,100,1),(911,'LRed',0,'WS03',0,9999,100,1),(912,'XLBlue',0,'WS03',0,9999,100,1),(913,'XLGreen',0,'WS03',0,9999,100,1),(914,'XLRed',0,'WS03',0,9999,100,1),(960,'XSGreen',0,'WT07',0,9999,100,1),(961,'XSWhite',0,'WT07',0,9999,100,1),(962,'XSYellow',0,'WT07',0,9999,100,1),(963,'SGreen',0,'WT07',0,9999,100,1),(964,'SWhite',0,'WT07',0,9999,100,1),(965,'SYellow',0,'WT07',0,9999,100,1),(966,'MGreen',0,'WT07',0,9999,100,1),(967,'MWhite',0,'WT07',0,9999,100,1),(968,'MYellow',0,'WT07',0,9999,100,1),(969,'LGreen',0,'WT07',0,9999,100,1),(970,'LWhite',0,'WT07',0,9999,100,1),(971,'LYellow',0,'WT07',0,9999,100,1),(972,'XLGreen',0,'WT07',0,9999,100,1),(973,'XLWhite',0,'WT07',0,9999,100,1),(974,'XLYellow',0,'WT07',0,9999,100,1),(975,'XSBlue',0,'WT06',0,9999,100,1),(976,'XSRed',0,'WT06',0,9999,100,1),(977,'XSYellow',0,'WT06',0,9999,100,1),(978,'SBlue',0,'WT06',0,9999,100,1),(979,'SRed',0,'WT06',0,9999,100,1),(980,'SYellow',0,'WT06',0,9999,100,1),(981,'MBlue',0,'WT06',0,9999,100,1),(982,'MRed',0,'WT06',0,9999,100,1),(983,'MYellow',0,'WT06',0,9999,100,1),(984,'LBlue',0,'WT06',0,9999,100,1),(985,'LRed',0,'WT06',0,9999,100,1),(986,'LYellow',0,'WT06',0,9999,100,1),(987,'XLBlue',0,'WT06',0,9999,100,1),(988,'XLRed',0,'WT06',0,9999,100,1),(989,'XLYellow',0,'WT06',0,9999,100,1),(990,'XSOrange',0,'WT05',0,9999,100,1),(991,'XSPurple',0,'WT05',0,9999,100,1),(992,'XSWhite',0,'WT05',0,9999,100,1),(993,'SOrange',0,'WT05',0,9999,100,1),(994,'SPurple',0,'WT05',0,9999,100,1),(995,'SWhite',0,'WT05',0,9999,100,1),(996,'MOrange',0,'WT05',0,9999,100,1),(997,'MPurple',0,'WT05',0,9999,100,1),(998,'MWhite',0,'WT05',0,9999,100,1),(999,'LOrange',0,'WT05',0,9999,100,1),(1000,'LPurple',0,'WT05',0,9999,100,1),(1001,'LWhite',0,'WT05',0,9999,100,1),(1002,'XLOrange',0,'WT05',0,9999,100,1),(1003,'XLPurple',0,'WT05',0,9999,100,1),(1004,'XLWhite',0,'WT05',0,9999,100,1),(1005,'XSBlue',0,'WT04',0,9999,100,1),(1006,'XSPurple',0,'WT04',0,9999,100,1),(1007,'XSRed',0,'WT04',0,9999,100,1),(1008,'SBlue',0,'WT04',0,9999,100,1),(1009,'SPurple',0,'WT04',0,9999,100,1),(1010,'SRed',0,'WT04',0,9999,100,1),(1011,'MBlue',0,'WT04',0,9999,100,1),(1012,'MPurple',0,'WT04',0,9999,100,1),(1013,'MRed',0,'WT04',0,9999,100,1),(1014,'LBlue',0,'WT04',0,9999,100,1),(1015,'LPurple',0,'WT04',0,9999,100,1),(1016,'LRed',0,'WT04',0,9999,100,1),(1017,'XLBlue',0,'WT04',0,9999,100,1),(1018,'XLPurple',0,'WT04',0,9999,100,1),(1019,'XLRed',0,'WT04',0,9999,100,1),(1020,'XSOrange',0,'WT03',0,9999,100,1),(1021,'XSPurple',0,'WT03',0,9999,100,1),(1022,'XSRed',0,'WT03',0,9999,100,1),(1023,'SOrange',0,'WT03',0,9999,100,1),(1024,'SPurple',0,'WT03',0,9999,100,1),(1025,'SRed',0,'WT03',0,9999,100,1),(1026,'MOrange',0,'WT03',0,9999,100,1),(1027,'MPurple',0,'WT03',0,9999,100,1),(1028,'MRed',0,'WT03',0,9999,100,1),(1029,'LOrange',0,'WT03',0,9999,100,1),(1030,'LPurple',0,'WT03',0,9999,100,1),(1031,'LRed',0,'WT03',0,9999,100,1),(1032,'XLOrange',0,'WT03',0,9999,100,1),(1033,'XLPurple',0,'WT03',0,9999,100,1),(1034,'XLRed',0,'WT03',0,9999,100,1),(1035,'XSGreen',0,'WT02',0,9999,100,1),(1036,'XSOrange',0,'WT02',0,9999,100,1),(1037,'XSYellow',0,'WT02',0,9999,100,1),(1038,'SGreen',0,'WT02',0,9999,100,1),(1039,'SOrange',0,'WT02',0,9999,100,1),(1040,'SYellow',0,'WT02',0,9999,100,1),(1041,'MGreen',0,'WT02',0,9999,100,1),(1042,'MOrange',0,'WT02',0,9999,100,1),(1043,'MYellow',0,'WT02',0,9999,100,1),(1044,'LGreen',0,'WT02',0,9999,100,1),(1045,'LOrange',0,'WT02',0,9999,100,1),(1046,'LYellow',0,'WT02',0,9999,100,1),(1047,'XLGreen',0,'WT02',0,9999,100,1),(1048,'XLOrange',0,'WT02',0,9999,100,1),(1049,'XLYellow',0,'WT02',0,9999,100,1),(1065,'XSBlack',0,'WB05',0,9999,100,1),(1066,'XSOrange',0,'WB05',0,9999,100,1),(1067,'XSPurple',0,'WB05',0,9999,100,1),(1068,'SBlack',0,'WB05',0,9999,100,1),(1069,'SOrange',0,'WB05',0,9999,100,1),(1070,'SPurple',0,'WB05',0,9999,100,1),(1071,'MBlack',0,'WB05',0,9999,100,1),(1072,'MOrange',0,'WB05',0,9999,100,1),(1073,'MPurple',0,'WB05',0,9999,100,1),(1074,'LBlack',0,'WB05',0,9999,100,1),(1075,'LOrange',0,'WB05',0,9999,100,1),(1076,'LPurple',0,'WB05',0,9999,100,1),(1077,'XLBlack',0,'WB05',0,9999,100,1),(1078,'XLOrange',0,'WB05',0,9999,100,1),(1079,'XLPurple',0,'WB05',0,9999,100,1),(1080,'XSBlue',0,'WB04',0,9999,100,1),(1081,'XSPurple',0,'WB04',0,9999,100,1),(1082,'XSYellow',0,'WB04',0,9999,100,1),(1083,'SBlue',0,'WB04',0,9999,100,1),(1084,'SPurple',0,'WB04',0,9999,100,1),(1085,'SYellow',0,'WB04',0,9999,100,1),(1086,'MBlue',0,'WB04',0,9999,100,1),(1087,'MPurple',0,'WB04',0,9999,100,1),(1088,'MYellow',0,'WB04',0,9999,100,1),(1089,'LBlue',0,'WB04',0,9999,100,1),(1090,'LPurple',0,'WB04',0,9999,100,1),(1091,'LYellow',0,'WB04',0,9999,100,1),(1092,'XLBlue',0,'WB04',0,9999,100,1),(1093,'XLPurple',0,'WB04',0,9999,100,1),(1094,'XLYellow',0,'WB04',0,9999,100,1),(1110,'XSBlue',0,'WB02',0,9999,100,1),(1111,'XSOrange',0,'WB02',0,9999,100,1),(1112,'XSYellow',0,'WB02',0,9999,100,1),(1113,'SBlue',0,'WB02',0,9999,100,1),(1114,'SOrange',0,'WB02',0,9999,100,1),(1115,'SYellow',0,'WB02',0,9999,100,1),(1116,'MBlue',0,'WB02',0,9999,100,1),(1117,'MOrange',0,'WB02',0,9999,100,1),(1118,'MYellow',0,'WB02',0,9999,100,1),(1119,'LBlue',0,'WB02',0,9999,100,1),(1120,'LOrange',0,'WB02',0,9999,100,1),(1121,'LYellow',0,'WB02',0,9999,100,1),(1122,'XLBlue',0,'WB02',0,9999,100,1),(1123,'XLOrange',0,'WB02',0,9999,100,1),(1124,'XLYellow',0,'WB02',0,9999,100,1),(1140,'28Blue',0,'WP13',0,9999,100,1),(1141,'28Green',0,'WP13',0,9999,100,1),(1142,'28Orange',0,'WP13',0,9999,100,1),(1143,'29Blue',0,'WP13',0,9999,100,1),(1144,'29Green',0,'WP13',0,9999,100,1),(1145,'29Orange',0,'WP13',0,9999,100,1),(1152,'28Blue',0,'WP11',0,9999,100,1),(1153,'28green',0,'WP11',0,9999,100,1),(1154,'28Red',0,'WP11',0,9999,100,1),(1155,'29Blue',0,'WP11',0,9999,100,1),(1156,'29green',0,'WP11',0,9999,100,1),(1157,'29Red',0,'WP11',0,9999,100,1),(1158,'28Black',0,'WP10',0,9999,100,1),(1159,'28Gray',0,'WP10',0,9999,100,1),(1160,'28white',0,'WP10',0,9999,100,1),(1161,'29Black',0,'WP10',0,9999,100,1),(1162,'29Gray',0,'WP10',0,9999,100,1),(1163,'29white',0,'WP10',0,9999,100,1),(1164,'28Black',0,'WP09',0,9999,100,1),(1165,'28Blue',0,'WP09',0,9999,100,1),(1166,'28Purple',0,'WP09',0,9999,100,1),(1167,'29Black',0,'WP09',0,9999,100,1),(1168,'29Blue',0,'WP09',0,9999,100,1),(1169,'29Purple',0,'WP09',0,9999,100,1),(1170,'28Black',0,'WP08',0,9999,100,1),(1171,'28Green',0,'WP08',0,9999,100,1),(1172,'28Red',0,'WP08',0,9999,100,1),(1173,'29Black',0,'WP08',0,9999,100,1),(1174,'29Green',0,'WP08',0,9999,100,1),(1175,'29Red',0,'WP08',0,9999,100,1),(1176,'28Black',0,'WP07',0,9999,100,1),(1177,'28Blue',0,'WP07',0,9999,100,1),(1178,'28Orange',0,'WP07',0,9999,100,1),(1179,'29Black',0,'WP07',0,9999,100,1),(1180,'29Blue',0,'WP07',0,9999,100,1),(1181,'29Orange',0,'WP07',0,9999,100,1),(1182,'28Black',0,'WP06',0,9999,100,1),(1183,'28Blue',0,'WP06',0,9999,100,1),(1184,'28Orange',0,'WP06',0,9999,100,1),(1185,'29Black',0,'WP06',0,9999,100,1),(1186,'29Blue',0,'WP06',0,9999,100,1),(1187,'29Orange',0,'WP06',0,9999,100,1),(1188,'28Blue',0,'WP05',0,9999,100,1),(1189,'28Gray',0,'WP05',0,9999,100,1),(1190,'28Red',0,'WP05',0,9999,100,1),(1191,'29Blue',0,'WP05',0,9999,100,1),(1192,'29Gray',0,'WP05',0,9999,100,1),(1193,'29Red',0,'WP05',0,9999,100,1),(1200,'28Black',0,'WP03',0,9999,100,1),(1201,'28Blue',0,'WP03',0,9999,100,1),(1202,'28Purple',0,'WP03',0,9999,100,1),(1203,'29Black',0,'WP03',0,9999,100,1),(1204,'29Blue',0,'WP03',0,9999,100,1),(1205,'29Purple',0,'WP03',0,9999,100,1),(1206,'28Blue',0,'WP02',0,9999,100,1),(1207,'28Purple',0,'WP02',0,9999,100,1),(1208,'28Red',0,'WP02',0,9999,100,1),(1209,'29Blue',0,'WP02',0,9999,100,1),(1210,'29Purple',0,'WP02',0,9999,100,1),(1211,'29Red',0,'WP02',0,9999,100,1),(1218,'28Green',0,'WSH12',0,9999,100,1),(1219,'28Purple',0,'WSH12',0,9999,100,1),(1220,'28Red',0,'WSH12',0,9999,100,1),(1221,'29Green',0,'WSH12',0,9999,100,1),(1222,'29Purple',0,'WSH12',0,9999,100,1),(1223,'29Red',0,'WSH12',0,9999,100,1),(1224,'30Green',0,'WSH12',0,9999,100,1),(1225,'30Purple',0,'WSH12',0,9999,100,1),(1226,'30Red',0,'WSH12',0,9999,100,1),(1227,'31Green',0,'WSH12',0,9999,100,1),(1228,'31Purple',0,'WSH12',0,9999,100,1),(1229,'31Red',0,'WSH12',0,9999,100,1),(1230,'32Green',0,'WSH12',0,9999,100,1),(1231,'32Purple',0,'WSH12',0,9999,100,1),(1232,'32Red',0,'WSH12',0,9999,100,1),(1239,'28Black',0,'WSH10',0,9999,100,1),(1240,'28Orange',0,'WSH10',0,9999,100,1),(1241,'28White',0,'WSH10',0,9999,100,1),(1242,'29Black',0,'WSH10',0,9999,100,1),(1243,'29Orange',0,'WSH10',0,9999,100,1),(1244,'29White',0,'WSH10',0,9999,100,1),(1245,'28Gray',0,'WSH09',0,9999,100,1),(1246,'28Green',0,'WSH09',0,9999,100,1),(1247,'28White',0,'WSH09',0,9999,100,1),(1248,'29Gray',0,'WSH09',0,9999,100,1),(1249,'29Green',0,'WSH09',0,9999,100,1),(1250,'29White',0,'WSH09',0,9999,100,1),(1251,'28Purple',0,'WSH08',0,9999,100,1),(1252,'29Purple',0,'WSH08',0,9999,100,1),(1253,'30Purple',0,'WSH08',0,9999,100,1),(1254,'31Purple',0,'WSH08',0,9999,100,1),(1255,'32Purple',0,'WSH08',0,9999,100,1),(1256,'28Black',0,'WSH07',0,9999,100,1),(1257,'28Blue',0,'WSH07',0,9999,100,1),(1258,'28Purple',0,'WSH07',0,9999,100,1),(1259,'29Black',0,'WSH07',0,9999,100,1),(1260,'29Blue',0,'WSH07',0,9999,100,1),(1261,'29Purple',0,'WSH07',0,9999,100,1),(1262,'Gray',0,'WSH06',0,9999,100,1),(1263,'Orange',0,'WSH06',0,9999,100,1),(1264,'Purple',0,'WSH06',0,9999,100,1),(1265,'28Blue',0,'WSH05',0,9999,100,1),(1266,'28Purple',0,'WSH05',0,9999,100,1),(1267,'28Yellow',0,'WSH05',0,9999,100,1),(1268,'29Blue',0,'WSH05',0,9999,100,1),(1269,'29Purple',0,'WSH05',0,9999,100,1),(1270,'29Yellow',0,'WSH05',0,9999,100,1),(1271,'30Blue',0,'WSH05',0,9999,100,1),(1272,'30Purple',0,'WSH05',0,9999,100,1),(1273,'30Yellow',0,'WSH05',0,9999,100,1),(1274,'31Blue',0,'WSH05',0,9999,100,1),(1275,'31Purple',0,'WSH05',0,9999,100,1),(1276,'31Yellow',0,'WSH05',0,9999,100,1),(1277,'32Blue',0,'WSH05',0,9999,100,1),(1278,'32Purple',0,'WSH05',0,9999,100,1),(1279,'32Yellow',0,'WSH05',0,9999,100,1),(1280,'28Black',0,'WSH04',0,9999,100,1),(1281,'28Green',0,'WSH04',0,9999,100,1),(1282,'28Orange',0,'WSH04',0,9999,100,1),(1283,'29Black',0,'WSH04',0,9999,100,1),(1284,'29Green',0,'WSH04',0,9999,100,1),(1285,'29Orange',0,'WSH04',0,9999,100,1),(1286,'30Black',0,'WSH04',0,9999,100,1),(1287,'30Green',0,'WSH04',0,9999,100,1),(1288,'30Orange',0,'WSH04',0,9999,100,1),(1289,'31Black',0,'WSH04',0,9999,100,1),(1290,'31Green',0,'WSH04',0,9999,100,1),(1291,'31Orange',0,'WSH04',0,9999,100,1),(1292,'32Black',0,'WSH04',0,9999,100,1),(1293,'32Green',0,'WSH04',0,9999,100,1),(1294,'32Orange',0,'WSH04',0,9999,100,1),(1295,'28Blue',0,'WSH03',0,9999,100,1),(1296,'28Gray',0,'WSH03',0,9999,100,1),(1297,'28Orange',0,'WSH03',0,9999,100,1),(1298,'29Blue',0,'WSH03',0,9999,100,1),(1299,'29Gray',0,'WSH03',0,9999,100,1),(1300,'29Orange',0,'WSH03',0,9999,100,1),(1301,'30Blue',0,'WSH03',0,9999,100,1),(1302,'30Gray',0,'WSH03',0,9999,100,1),(1303,'30Orange',0,'WSH03',0,9999,100,1),(1304,'31Blue',0,'WSH03',0,9999,100,1),(1305,'31Gray',0,'WSH03',0,9999,100,1),(1306,'31Orange',0,'WSH03',0,9999,100,1),(1307,'32Blue',0,'WSH03',0,9999,100,1),(1308,'32Gray',0,'WSH03',0,9999,100,1),(1309,'32Orange',0,'WSH03',0,9999,100,1),(1310,'28Gray',0,'WSH02',0,9999,100,1),(1311,'28Orange',0,'WSH02',0,9999,100,1),(1312,'28Yellow',0,'WSH02',0,9999,100,1),(1313,'29Gray',0,'WSH02',0,9999,100,1),(1314,'29Orange',0,'WSH02',0,9999,100,1),(1315,'29Yellow',0,'WSH02',0,9999,100,1),(1316,'30Gray',0,'WSH02',0,9999,100,1),(1317,'30Orange',0,'WSH02',0,9999,100,1),(1318,'30Yellow',0,'WSH02',0,9999,100,1),(1319,'31Gray',0,'WSH02',0,9999,100,1),(1320,'31Orange',0,'WSH02',0,9999,100,1),(1321,'31Yellow',0,'WSH02',0,9999,100,1),(1322,'32Gray',0,'WSH02',0,9999,100,1),(1323,'32Orange',0,'WSH02',0,9999,100,1),(1324,'32Yellow',0,'WSH02',0,9999,100,1),(1325,'28Black',0,'WSH01',0,9999,100,1),(1326,'28Green',0,'WSH01',0,9999,100,1),(1327,'28Red',0,'WSH01',0,9999,100,1),(1328,'29Black',0,'WSH01',0,9999,100,1),(1329,'29Green',0,'WSH01',0,9999,100,1),(1330,'29Red',0,'WSH01',0,9999,100,1),(1331,'30Black',0,'WSH01',0,9999,100,1),(1332,'30Green',0,'WSH01',0,9999,100,1),(1333,'30Red',0,'WSH01',0,9999,100,1),(1334,'31Black',0,'WSH01',0,9999,100,1),(1335,'31Green',0,'WSH01',0,9999,100,1),(1336,'31Red',0,'WSH01',0,9999,100,1),(1337,'32Black',0,'WSH01',0,9999,100,1),(1338,'32Green',0,'WSH01',0,9999,100,1),(1339,'32Red',0,'WSH01',0,9999,100,1),(1355,'XSBlack',0,'MJ03',0,9999,100,1),(1356,'XSGreen',0,'MJ03',0,9999,100,1),(1357,'XSRed',0,'MJ03',0,9999,100,1),(1358,'SBlack',0,'MJ03',0,9999,100,1),(1359,'SGreen',0,'MJ03',0,9999,100,1),(1360,'SRed',0,'MJ03',0,9999,100,1),(1361,'MBlack',0,'MJ03',0,9999,100,1),(1362,'MGreen',0,'MJ03',0,9999,100,1),(1363,'MRed',0,'MJ03',0,9999,100,1),(1364,'LBlack',0,'MJ03',0,9999,100,1),(1365,'LGreen',0,'MJ03',0,9999,100,1),(1366,'LRed',0,'MJ03',0,9999,100,1),(1367,'XLBlack',0,'MJ03',0,9999,100,1),(1368,'XLGreen',0,'MJ03',0,9999,100,1),(1369,'XLRed',0,'MJ03',0,9999,100,1),(1370,'XSBlue',0,'56990',0,9999,100,1),(1371,'XSGreen',0,'56990',0,9999,100,1),(1372,'XSPurple',0,'56990',0,9999,100,1),(1373,'SBlue',0,'56990',0,9999,100,1),(1374,'SGreen',0,'56990',0,9999,100,1),(1375,'SPurple',0,'56990',0,9999,100,1),(1376,'MBlue',0,'56990',0,9999,100,1),(1377,'MGreen',0,'56990',0,9999,100,1),(1378,'MPurple',0,'56990',0,9999,100,1),(1379,'LBlue',0,'56990',0,9999,100,1),(1380,'LGreen',0,'56990',0,9999,100,1),(1381,'LPurple',0,'56990',0,9999,100,1),(1382,'XLBlue',0,'56990',0,9999,100,1),(1383,'XLGreen',0,'56990',0,9999,100,1),(1384,'XLPurple',0,'56990',0,9999,100,1),(1385,'XSBlack',0,'MJ11',0,9999,100,1),(1386,'XSGreen',0,'MJ11',0,9999,100,1),(1387,'XSRed',0,'MJ11',0,9999,100,1),(1388,'SBlack',0,'MJ11',0,9999,100,1),(1389,'SGreen',0,'MJ11',0,9999,100,1),(1390,'SRed',0,'MJ11',0,9999,100,1),(1391,'MBlack',0,'MJ11',0,9999,100,1),(1392,'MGreen',0,'MJ11',0,9999,100,1),(1393,'MRed',0,'MJ11',0,9999,100,1),(1394,'LBlack',0,'MJ11',0,9999,100,1),(1395,'LGreen',0,'MJ11',0,9999,100,1),(1396,'LRed',0,'MJ11',0,9999,100,1),(1397,'XLBlack',0,'MJ11',0,9999,100,1),(1398,'XLGreen',0,'MJ11',0,9999,100,1),(1399,'XLRed',0,'MJ11',0,9999,100,1),(1400,'XSBlack',0,'MJ10',0,9999,100,1),(1401,'XSOrange',0,'MJ10',0,9999,100,1),(1402,'XSRed',0,'MJ10',0,9999,100,1),(1403,'SBlack',0,'MJ10',0,9999,100,1),(1404,'SOrange',0,'MJ10',0,9999,100,1),(1405,'SRed',0,'MJ10',0,9999,100,1),(1406,'MBlack',0,'MJ10',0,9999,100,1),(1407,'MOrange',0,'MJ10',0,9999,100,1),(1408,'MRed',0,'MJ10',0,9999,100,1),(1409,'LBlack',0,'MJ10',0,9999,100,1),(1410,'LOrange',0,'MJ10',0,9999,100,1),(1411,'LRed',0,'MJ10',0,9999,100,1),(1412,'XLBlack',0,'MJ10',0,9999,100,1),(1413,'XLOrange',0,'MJ10',0,9999,100,1),(1414,'XLRed',0,'MJ10',0,9999,100,1),(1415,'XSBlue',0,'MJ09',0,9999,100,1),(1416,'XSWhite',0,'MJ09',0,9999,100,1),(1417,'XSYellow',0,'MJ09',0,9999,100,1),(1418,'SBlue',0,'MJ09',0,9999,100,1),(1419,'SWhite',0,'MJ09',0,9999,100,1),(1420,'SYellow',0,'MJ09',0,9999,100,1),(1421,'MBlue',0,'MJ09',0,9999,100,1),(1422,'MWhite',0,'MJ09',0,9999,100,1),(1423,'MYellow',0,'MJ09',0,9999,100,1),(1424,'LBlue',0,'MJ09',0,9999,100,1),(1425,'LWhite',0,'MJ09',0,9999,100,1),(1426,'LYellow',0,'MJ09',0,9999,100,1),(1427,'XLBlue',0,'MJ09',0,9999,100,1),(1428,'XLWhite',0,'MJ09',0,9999,100,1),(1429,'XLYellow',0,'MJ09',0,9999,100,1),(1445,'XSBlack',0,'MJ07',0,9999,100,1),(1446,'XSRed',0,'MJ07',0,9999,100,1),(1447,'XSYellow',0,'MJ07',0,9999,100,1),(1448,'SBlack',0,'MJ07',0,9999,100,1),(1449,'SRed',0,'MJ07',0,9999,100,1),(1450,'SYellow',0,'MJ07',0,9999,100,1),(1451,'MBlack',0,'MJ07',0,9999,100,1),(1452,'MRed',0,'MJ07',0,9999,100,1),(1453,'MYellow',0,'MJ07',0,9999,100,1),(1454,'LBlack',0,'MJ07',0,9999,100,1),(1455,'LRed',0,'MJ07',0,9999,100,1),(1456,'LYellow',0,'MJ07',0,9999,100,1),(1457,'XLBlack',0,'MJ07',0,9999,100,1),(1458,'XLRed',0,'MJ07',0,9999,100,1),(1459,'XLYellow',0,'MJ07',0,9999,100,1),(1460,'XSBlack',0,'MJ04',0,9999,100,1),(1461,'XSBlue',0,'MJ04',0,9999,100,1),(1462,'XSPurple',0,'MJ04',0,9999,100,1),(1463,'SBlack',0,'MJ04',0,9999,100,1),(1464,'SBlue',0,'MJ04',0,9999,100,1),(1465,'SPurple',0,'MJ04',0,9999,100,1),(1466,'MBlack',0,'MJ04',0,9999,100,1),(1467,'MBlue',0,'MJ04',0,9999,100,1),(1468,'MPurple',0,'MJ04',0,9999,100,1),(1469,'LBlack',0,'MJ04',0,9999,100,1),(1470,'LBlue',0,'MJ04',0,9999,100,1),(1471,'LPurple',0,'MJ04',0,9999,100,1),(1472,'XLBlack',0,'MJ04',0,9999,100,1),(1473,'XLBlue',0,'MJ04',0,9999,100,1),(1474,'XLPurple',0,'MJ04',0,9999,100,1),(1475,'XSGreen',0,'MJ02',0,9999,100,1),(1476,'XSOrange',0,'MJ02',0,9999,100,1),(1477,'XSRed',0,'MJ02',0,9999,100,1),(1478,'SGreen',0,'MJ02',0,9999,100,1),(1479,'SOrange',0,'MJ02',0,9999,100,1),(1480,'SRed',0,'MJ02',0,9999,100,1),(1481,'MGreen',0,'MJ02',0,9999,100,1),(1482,'MOrange',0,'MJ02',0,9999,100,1),(1483,'MRed',0,'MJ02',0,9999,100,1),(1484,'LGreen',0,'MJ02',0,9999,100,1),(1485,'LOrange',0,'MJ02',0,9999,100,1),(1486,'LRed',0,'MJ02',0,9999,100,1),(1487,'XLGreen',0,'MJ02',0,9999,100,1),(1488,'XLOrange',0,'MJ02',0,9999,100,1),(1489,'XLRed',0,'MJ02',0,9999,100,1),(1490,'XSOrange',0,'MJ01',0,9999,100,1),(1491,'XSRed',0,'MJ01',0,9999,100,1),(1492,'XSYellow',0,'MJ01',0,9999,100,1),(1493,'SOrange',0,'MJ01',0,9999,100,1),(1494,'SRed',0,'MJ01',0,9999,100,1),(1495,'SYellow',0,'MJ01',0,9999,100,1),(1496,'MOrange',0,'MJ01',0,9999,100,1),(1497,'MRed',0,'MJ01',0,9999,100,1),(1498,'MYellow',0,'MJ01',0,9999,100,1),(1499,'LOrange',0,'MJ01',0,9999,100,1),(1500,'LRed',0,'MJ01',0,9999,100,1),(1501,'LYellow',0,'MJ01',0,9999,100,1),(1502,'XLOrange',0,'MJ01',0,9999,100,1),(1503,'XLRed',0,'MJ01',0,9999,100,1),(1504,'XLYellow',0,'MJ01',0,9999,100,1),(1505,'XSBlue',0,'MH13',0,9999,100,1),(1506,'XSGreen',0,'MH13',0,9999,100,1),(1507,'XSLavender',0,'MH13',0,9999,100,1),(1508,'SBlue',0,'MH13',0,9999,100,1),(1509,'SGreen',0,'MH13',0,9999,100,1),(1510,'SLavender',0,'MH13',0,9999,100,1),(1511,'MBlue',0,'MH13',0,9999,100,1),(1512,'MGreen',0,'MH13',0,9999,100,1),(1513,'MLavender',0,'MH13',0,9999,100,1),(1514,'LBlue',0,'MH13',0,9999,100,1),(1515,'LGreen',0,'MH13',0,9999,100,1),(1516,'LLavender',0,'MH13',0,9999,100,1),(1517,'XLBlue',0,'MH13',0,9999,100,1),(1518,'XLGreen',0,'MH13',0,9999,100,1),(1519,'XLLavender',0,'MH13',0,9999,100,1),(1535,'XSOrange',0,'MH11',0,9999,100,1),(1536,'XSRed',0,'MH11',0,9999,100,1),(1537,'XSWhite',0,'MH11',0,9999,100,1),(1538,'SOrange',0,'MH11',0,9999,100,1),(1539,'SRed',0,'MH11',0,9999,100,1),(1540,'SWhite',0,'MH11',0,9999,100,1),(1541,'MOrange',0,'MH11',0,9999,100,1),(1542,'MRed',0,'MH11',0,9999,100,1),(1543,'MWhite',0,'MH11',0,9999,100,1),(1544,'LOrange',0,'MH11',0,9999,100,1),(1545,'LRed',0,'MH11',0,9999,100,1),(1546,'LWhite',0,'MH11',0,9999,100,1),(1547,'XLOrange',0,'MH11',0,9999,100,1),(1548,'XLRed',0,'MH11',0,9999,100,1),(1549,'XLWhite',0,'MH11',0,9999,100,1),(1550,'XSBlack',0,'MH10',0,9999,100,1),(1551,'XSBlue',0,'MH10',0,9999,100,1),(1552,'XSRed',0,'MH10',0,9999,100,1),(1553,'SBlack',0,'MH10',0,9999,100,1),(1554,'SBlue',0,'MH10',0,9999,100,1),(1555,'SRed',0,'MH10',0,9999,100,1),(1556,'MBlack',0,'MH10',0,9999,100,1),(1557,'MBlue',0,'MH10',0,9999,100,1),(1558,'MRed',0,'MH10',0,9999,100,1),(1559,'LBlack',0,'MH10',0,9999,100,1),(1560,'LBlue',0,'MH10',0,9999,100,1),(1561,'LRed',0,'MH10',0,9999,100,1),(1562,'XLBlack',0,'MH10',0,9999,100,1),(1563,'XLBlue',0,'MH10',0,9999,100,1),(1564,'XLRed',0,'MH10',0,9999,100,1),(1565,'XSBlue',0,'MH09',0,9999,100,1),(1566,'XSGreen',0,'MH09',0,9999,100,1),(1567,'XSRed',0,'MH09',0,9999,100,1),(1568,'SBlue',0,'MH09',0,9999,100,1),(1569,'SGreen',0,'MH09',0,9999,100,1),(1570,'SRed',0,'MH09',0,9999,100,1),(1571,'MBlue',0,'MH09',0,9999,100,1),(1572,'MGreen',0,'MH09',0,9999,100,1),(1573,'MRed',0,'MH09',0,9999,100,1),(1574,'LBlue',0,'MH09',0,9999,100,1),(1575,'LGreen',0,'MH09',0,9999,100,1),(1576,'LRed',0,'MH09',0,9999,100,1),(1577,'XLBlue',0,'MH09',0,9999,100,1),(1578,'XLGreen',0,'MH09',0,9999,100,1),(1579,'XLRed',0,'MH09',0,9999,100,1),(1580,'XSBrown',0,'MH08',0,9999,100,1),(1581,'XSPurple',0,'MH08',0,9999,100,1),(1582,'XSRed',0,'MH08',0,9999,100,1),(1583,'SBrown',0,'MH08',0,9999,100,1),(1584,'SPurple',0,'MH08',0,9999,100,1),(1585,'SRed',0,'MH08',0,9999,100,1),(1586,'MBrown',0,'MH08',0,9999,100,1),(1587,'MPurple',0,'MH08',0,9999,100,1),(1588,'MRed',0,'MH08',0,9999,100,1),(1589,'LBrown',0,'MH08',0,9999,100,1),(1590,'LPurple',0,'MH08',0,9999,100,1),(1591,'LRed',0,'MH08',0,9999,100,1),(1592,'XLBrown',0,'MH08',0,9999,100,1),(1593,'XLPurple',0,'MH08',0,9999,100,1),(1594,'XLRed',0,'MH08',0,9999,100,1),(1595,'XSGreen',0,'MH05',0,9999,100,1),(1596,'XSRed',0,'MH05',0,9999,100,1),(1597,'XSWhite',0,'MH05',0,9999,100,1),(1598,'SGreen',0,'MH05',0,9999,100,1),(1599,'SRed',0,'MH05',0,9999,100,1),(1600,'SWhite',0,'MH05',0,9999,100,1),(1601,'MGreen',0,'MH05',0,9999,100,1),(1602,'MRed',0,'MH05',0,9999,100,1),(1603,'MWhite',0,'MH05',0,9999,100,1),(1604,'LGreen',0,'MH05',0,9999,100,1),(1605,'LRed',0,'MH05',0,9999,100,1),(1606,'LWhite',0,'MH05',0,9999,100,1),(1607,'XLGreen',0,'MH05',0,9999,100,1),(1608,'XLRed',0,'MH05',0,9999,100,1),(1609,'XLWhite',0,'MH05',0,9999,100,1),(1610,'XSGreen',0,'MH04',0,9999,100,1),(1611,'XSWhite',0,'MH04',0,9999,100,1),(1612,'XSYellow',0,'MH04',0,9999,100,1),(1613,'SGreen',0,'MH04',0,9999,100,1),(1614,'SWhite',0,'MH04',0,9999,100,1),(1615,'SYellow',0,'MH04',0,9999,100,1),(1616,'MGreen',0,'MH04',0,9999,100,1),(1617,'MWhite',0,'MH04',0,9999,100,1),(1618,'MYellow',0,'MH04',0,9999,100,1),(1619,'LGreen',0,'MH04',0,9999,100,1),(1620,'LWhite',0,'MH04',0,9999,100,1),(1621,'LYellow',0,'MH04',0,9999,100,1),(1622,'XLGreen',0,'MH04',0,9999,100,1),(1623,'XLWhite',0,'MH04',0,9999,100,1),(1624,'XLYellow',0,'MH04',0,9999,100,1),(1625,'XSBlack',0,'MH03',0,9999,100,1),(1626,'XSBlue',0,'MH03',0,9999,100,1),(1627,'XSGreen',0,'MH03',0,9999,100,1),(1628,'SBlack',0,'MH03',0,9999,100,1),(1629,'SBlue',0,'MH03',0,9999,100,1),(1630,'SGreen',0,'MH03',0,9999,100,1),(1631,'MBlack',0,'MH03',0,9999,100,1),(1632,'MBlue',0,'MH03',0,9999,100,1),(1633,'MGreen',0,'MH03',0,9999,100,1),(1634,'LBlack',0,'MH03',0,9999,100,1),(1635,'LBlue',0,'MH03',0,9999,100,1),(1636,'LGreen',0,'MH03',0,9999,100,1),(1637,'XLBlack',0,'MH03',0,9999,100,1),(1638,'XLBlue',0,'MH03',0,9999,100,1),(1639,'XLGreen',0,'MH03',0,9999,100,1),(1640,'XSBlack',0,'MH02',0,9999,100,1),(1641,'XSPurple',0,'MH02',0,9999,100,1),(1642,'XSRed',0,'MH02',0,9999,100,1),(1643,'SBlack',0,'MH02',0,9999,100,1),(1644,'SPurple',0,'MH02',0,9999,100,1),(1645,'SRed',0,'MH02',0,9999,100,1),(1646,'MBlack',0,'MH02',0,9999,100,1),(1647,'MPurple',0,'MH02',0,9999,100,1),(1648,'MRed',0,'MH02',0,9999,100,1),(1649,'LBlack',0,'MH02',0,9999,100,1),(1650,'LPurple',0,'MH02',0,9999,100,1),(1651,'LRed',0,'MH02',0,9999,100,1),(1652,'XLBlack',0,'MH02',0,9999,100,1),(1653,'XLPurple',0,'MH02',0,9999,100,1),(1654,'XLRed',0,'MH02',0,9999,100,1),(1655,'XSBlack',0,'MH01',0,9999,100,1),(1656,'XSGray',0,'MH01',0,9999,100,1),(1657,'XSOrange',0,'MH01',0,9999,100,1),(1658,'SBlack',0,'MH01',0,9999,100,1),(1659,'SGray',0,'MH01',0,9999,100,1),(1660,'SOrange',0,'MH01',0,9999,100,1),(1661,'MBlack',0,'MH01',0,9999,100,1),(1662,'MGray',0,'MH01',0,9999,100,1),(1663,'MOrange',0,'MH01',0,9999,100,1),(1664,'LBlack',0,'MH01',0,9999,100,1),(1665,'LGray',0,'MH01',0,9999,100,1),(1666,'LOrange',0,'MH01',0,9999,100,1),(1667,'XLBlack',0,'MH01',0,9999,100,1),(1668,'XLGray',0,'MH01',0,9999,100,1),(1669,'XLOrange',0,'MH01',0,9999,100,1),(1670,'XSBlack',0,'MS08',0,9999,100,1),(1671,'XSBlue',0,'MS08',0,9999,100,1),(1672,'XSRed',0,'MS08',0,9999,100,1),(1673,'SBlack',0,'MS08',0,9999,100,1),(1674,'SBlue',0,'MS08',0,9999,100,1),(1675,'SRed',0,'MS08',0,9999,100,1),(1676,'MBlack',0,'MS08',0,9999,100,1),(1677,'MBlue',0,'MS08',0,9999,100,1),(1678,'MRed',0,'MS08',0,9999,100,1),(1679,'LBlack',0,'MS08',0,9999,100,1),(1680,'LBlue',0,'MS08',0,9999,100,1),(1681,'LRed',0,'MS08',0,9999,100,1),(1682,'XLBlack',0,'MS08',0,9999,100,1),(1683,'XLBlue',0,'MS08',0,9999,100,1),(1684,'XLRed',0,'MS08',0,9999,100,1),(1685,'XSBlack',0,'MS07',0,9999,100,1),(1686,'XSGreen',0,'MS07',0,9999,100,1),(1687,'XSWhite',0,'MS07',0,9999,100,1),(1688,'SBlack',0,'MS07',0,9999,100,1),(1689,'SGreen',0,'MS07',0,9999,100,1),(1690,'SWhite',0,'MS07',0,9999,100,1),(1691,'MBlack',0,'MS07',0,9999,100,1),(1692,'MGreen',0,'MS07',0,9999,100,1),(1693,'MWhite',0,'MS07',0,9999,100,1),(1694,'LBlack',0,'MS07',0,9999,100,1),(1695,'LGreen',0,'MS07',0,9999,100,1),(1696,'LWhite',0,'MS07',0,9999,100,1),(1697,'XLBlack',0,'MS07',0,9999,100,1),(1698,'XLGreen',0,'MS07',0,9999,100,1),(1699,'XLWhite',0,'MS07',0,9999,100,1),(1715,'XSBlack',0,'MS02',0,9999,100,1),(1716,'XSBlue',0,'MS02',0,9999,100,1),(1717,'XSGray',0,'MS02',0,9999,100,1),(1718,'SBlack',0,'MS02',0,9999,100,1),(1719,'SBlue',0,'MS02',0,9999,100,1),(1720,'SGray',0,'MS02',0,9999,100,1),(1721,'MBlack',0,'MS02',0,9999,100,1),(1722,'MBlue',0,'MS02',0,9999,100,1),(1723,'MGray',0,'MS02',0,9999,100,1),(1724,'LBlack',0,'MS02',0,9999,100,1),(1725,'LBlue',0,'MS02',0,9999,100,1),(1726,'LGray',0,'MS02',0,9999,100,1),(1727,'XLBlack',0,'MS02',0,9999,100,1),(1728,'XLBlue',0,'MS02',0,9999,100,1),(1729,'XLGray',0,'MS02',0,9999,100,1),(1730,'XSBlack',0,'MS01',0,9999,100,1),(1731,'XSBrown',0,'MS01',0,9999,100,1),(1732,'XSYellow',0,'MS01',0,9999,100,1),(1733,'SBlack',0,'MS01',0,9999,100,1),(1734,'SBrown',0,'MS01',0,9999,100,1),(1735,'SYellow',0,'MS01',0,9999,100,1),(1736,'MBlack',0,'MS01',0,9999,100,1),(1737,'MBrown',0,'MS01',0,9999,100,1),(1738,'MYellow',0,'MS01',0,9999,100,1),(1739,'LBlack',0,'MS01',0,9999,100,1),(1740,'LBrown',0,'MS01',0,9999,100,1),(1741,'LYellow',0,'MS01',0,9999,100,1),(1742,'XLBlack',0,'MS01',0,9999,100,1),(1743,'XLBrown',0,'MS01',0,9999,100,1),(1744,'XLYellow',0,'MS01',0,9999,100,1),(1745,'XSBlue',0,'MS06',0,9999,100,1),(1746,'XSGreen',0,'MS06',0,9999,100,1),(1747,'XSYellow',0,'MS06',0,9999,100,1),(1748,'SBlue',0,'MS06',0,9999,100,1),(1749,'SGreen',0,'MS06',0,9999,100,1),(1750,'SYellow',0,'MS06',0,9999,100,1),(1751,'MBlue',0,'MS06',0,9999,100,1),(1752,'MGreen',0,'MS06',0,9999,100,1),(1753,'MYellow',0,'MS06',0,9999,100,1),(1754,'LBlue',0,'MS06',0,9999,100,1),(1755,'LGreen',0,'MS06',0,9999,100,1),(1756,'LYellow',0,'MS06',0,9999,100,1),(1757,'XLBlue',0,'MS06',0,9999,100,1),(1758,'XLGreen',0,'MS06',0,9999,100,1),(1759,'XLYellow',0,'MS06',0,9999,100,1),(1760,'XSGray',0,'MS03',0,9999,100,1),(1761,'XSGreen',0,'MS03',0,9999,100,1),(1762,'XSOrange',0,'MS03',0,9999,100,1),(1763,'SGray',0,'MS03',0,9999,100,1),(1764,'SGreen',0,'MS03',0,9999,100,1),(1765,'SOrange',0,'MS03',0,9999,100,1),(1766,'MGray',0,'MS03',0,9999,100,1),(1767,'MGreen',0,'MS03',0,9999,100,1),(1768,'MOrange',0,'MS03',0,9999,100,1),(1769,'LGray',0,'MS03',0,9999,100,1),(1770,'LGreen',0,'MS03',0,9999,100,1),(1771,'LOrange',0,'MS03',0,9999,100,1),(1772,'XLGray',0,'MS03',0,9999,100,1),(1773,'XLGreen',0,'MS03',0,9999,100,1),(1774,'XLOrange',0,'MS03',0,9999,100,1),(1775,'XSBlack',0,'MS12',0,9999,100,1),(1776,'XSBlue',0,'MS12',0,9999,100,1),(1777,'XSRed',0,'MS12',0,9999,100,1),(1778,'SBlack',0,'MS12',0,9999,100,1),(1779,'SBlue',0,'MS12',0,9999,100,1),(1780,'SRed',0,'MS12',0,9999,100,1),(1781,'MBlack',0,'MS12',0,9999,100,1),(1782,'MBlue',0,'MS12',0,9999,100,1),(1783,'MRed',0,'MS12',0,9999,100,1),(1784,'LBlack',0,'MS12',0,9999,100,1),(1785,'LBlue',0,'MS12',0,9999,100,1),(1786,'LRed',0,'MS12',0,9999,100,1),(1787,'XLBlack',0,'MS12',0,9999,100,1),(1788,'XLBlue',0,'MS12',0,9999,100,1),(1789,'XLRed',0,'MS12',0,9999,100,1),(1790,'XSBlue',0,'MS11',0,9999,100,1),(1791,'XSGreen',0,'MS11',0,9999,100,1),(1792,'XSYellow',0,'MS11',0,9999,100,1),(1793,'SBlue',0,'MS11',0,9999,100,1),(1794,'SGreen',0,'MS11',0,9999,100,1),(1795,'SYellow',0,'MS11',0,9999,100,1),(1796,'MBlue',0,'MS11',0,9999,100,1),(1797,'MGreen',0,'MS11',0,9999,100,1),(1798,'MYellow',0,'MS11',0,9999,100,1),(1799,'LBlue',0,'MS11',0,9999,100,1),(1800,'LGreen',0,'MS11',0,9999,100,1),(1801,'LYellow',0,'MS11',0,9999,100,1),(1802,'XLBlue',0,'MS11',0,9999,100,1),(1803,'XLGreen',0,'MS11',0,9999,100,1),(1804,'XLYellow',0,'MS11',0,9999,100,1),(1805,'XSBlack',0,'MS09',0,9999,100,1),(1806,'XSBlue',0,'MS09',0,9999,100,1),(1807,'XSRed',0,'MS09',0,9999,100,1),(1808,'SBlack',0,'MS09',0,9999,100,1),(1809,'SBlue',0,'MS09',0,9999,100,1),(1810,'SRed',0,'MS09',0,9999,100,1),(1811,'MBlack',0,'MS09',0,9999,100,1),(1812,'MBlue',0,'MS09',0,9999,100,1),(1813,'MRed',0,'MS09',0,9999,100,1),(1814,'LBlack',0,'MS09',0,9999,100,1),(1815,'LBlue',0,'MS09',0,9999,100,1),(1816,'LRed',0,'MS09',0,9999,100,1),(1817,'XLBlack',0,'MS09',0,9999,100,1),(1818,'XLBlue',0,'MS09',0,9999,100,1),(1819,'XLRed',0,'MS09',0,9999,100,1),(1820,'XSBlack',0,'MS05',0,9999,100,1),(1821,'XSBlue',0,'MS05',0,9999,100,1),(1822,'XSPurple',0,'MS05',0,9999,100,1),(1823,'SBlack',0,'MS05',0,9999,100,1),(1824,'SBlue',0,'MS05',0,9999,100,1),(1825,'SPurple',0,'MS05',0,9999,100,1),(1826,'MBlack',0,'MS05',0,9999,100,1),(1827,'MBlue',0,'MS05',0,9999,100,1),(1828,'MPurple',0,'MS05',0,9999,100,1),(1829,'LBlack',0,'MS05',0,9999,100,1),(1830,'LBlue',0,'MS05',0,9999,100,1),(1831,'LPurple',0,'MS05',0,9999,100,1),(1832,'XLBlack',0,'MS05',0,9999,100,1),(1833,'XLBlue',0,'MS05',0,9999,100,1),(1834,'XLPurple',0,'MS05',0,9999,100,1),(1835,'XSBlack',0,'MS04',0,9999,100,1),(1836,'XSOrange',0,'MS04',0,9999,100,1),(1837,'XSRed',0,'MS04',0,9999,100,1),(1838,'SBlack',0,'MS04',0,9999,100,1),(1839,'SOrange',0,'MS04',0,9999,100,1),(1840,'SRed',0,'MS04',0,9999,100,1),(1841,'MBlack',0,'MS04',0,9999,100,1),(1842,'MOrange',0,'MS04',0,9999,100,1),(1843,'MRed',0,'MS04',0,9999,100,1),(1844,'LBlack',0,'MS04',0,9999,100,1),(1845,'LOrange',0,'MS04',0,9999,100,1),(1846,'LRed',0,'MS04',0,9999,100,1),(1847,'XLBlack',0,'MS04',0,9999,100,1),(1848,'XLOrange',0,'MS04',0,9999,100,1),(1849,'XLRed',0,'MS04',0,9999,100,1),(1850,'XSBlue',0,'MT12',0,9999,100,1),(1851,'SBlue',0,'MT12',0,9999,100,1),(1852,'MBlue',0,'MT12',0,9999,100,1),(1853,'LBlue',0,'MT12',0,9999,100,1),(1854,'XLBlue',0,'MT12',0,9999,100,1),(1855,'XSBlue',0,'MT11',0,9999,100,1),(1856,'SBlue',0,'MT11',0,9999,100,1),(1857,'MBlue',0,'MT11',0,9999,100,1),(1858,'LBlue',0,'MT11',0,9999,100,1),(1859,'XLBlue',0,'MT11',0,9999,100,1),(1860,'XSYellow',0,'MT10',0,9999,100,1),(1861,'SYellow',0,'MT10',0,9999,100,1),(1862,'MYellow',0,'MT10',0,9999,100,1),(1863,'LYellow',0,'MT10',0,9999,100,1),(1864,'XLYellow',0,'MT10',0,9999,100,1),(1870,'XSGreen',0,'MT08',0,9999,100,1),(1871,'SGreen',0,'MT08',0,9999,100,1),(1872,'MGreen',0,'MT08',0,9999,100,1),(1873,'LGreen',0,'MT08',0,9999,100,1),(1874,'XLGreen',0,'MT08',0,9999,100,1),(1875,'XSGray',0,'MT07',0,9999,100,1),(1876,'SGray',0,'MT07',0,9999,100,1),(1877,'MGray',0,'MT07',0,9999,100,1),(1878,'LGray',0,'MT07',0,9999,100,1),(1879,'XLGray',0,'MT07',0,9999,100,1),(1880,'XSBlack',0,'MT06',0,9999,100,1),(1881,'SBlack',0,'MT06',0,9999,100,1),(1882,'MBlack',0,'MT06',0,9999,100,1),(1883,'LBlack',0,'MT06',0,9999,100,1),(1884,'XLBlack',0,'MT06',0,9999,100,1),(1885,'XSBlue',0,'MT05',0,9999,100,1),(1886,'SBlue',0,'MT05',0,9999,100,1),(1887,'MBlue',0,'MT05',0,9999,100,1),(1888,'LBlue',0,'MT05',0,9999,100,1),(1889,'XLBlue',0,'MT05',0,9999,100,1),(1895,'XSBlue',0,'MT03',0,9999,100,1),(1896,'XSRed',0,'MT03',0,9999,100,1),(1897,'XSYellow',0,'MT03',0,9999,100,1),(1898,'SBlue',0,'MT03',0,9999,100,1),(1899,'SRed',0,'MT03',0,9999,100,1),(1900,'SYellow',0,'MT03',0,9999,100,1),(1901,'MBlue',0,'MT03',0,9999,100,1),(1902,'MRed',0,'MT03',0,9999,100,1),(1903,'MYellow',0,'MT03',0,9999,100,1),(1904,'LBlue',0,'MT03',0,9999,100,1),(1905,'LRed',0,'MT03',0,9999,100,1),(1906,'LYellow',0,'MT03',0,9999,100,1),(1907,'XLBlue',0,'MT03',0,9999,100,1),(1908,'XLRed',0,'MT03',0,9999,100,1),(1909,'XLYellow',0,'MT03',0,9999,100,1),(1910,'XSGray',0,'MT02',0,9999,100,1),(1911,'XSRed',0,'MT02',0,9999,100,1),(1912,'XSWhite',0,'MT02',0,9999,100,1),(1913,'SGray',0,'MT02',0,9999,100,1),(1914,'SRed',0,'MT02',0,9999,100,1),(1915,'SWhite',0,'MT02',0,9999,100,1),(1916,'MGray',0,'MT02',0,9999,100,1),(1917,'MRed',0,'MT02',0,9999,100,1),(1918,'MWhite',0,'MT02',0,9999,100,1),(1919,'LGray',0,'MT02',0,9999,100,1),(1920,'LRed',0,'MT02',0,9999,100,1),(1921,'LWhite',0,'MT02',0,9999,100,1),(1922,'XLGray',0,'MT02',0,9999,100,1),(1923,'XLRed',0,'MT02',0,9999,100,1),(1924,'XLWhite',0,'MT02',0,9999,100,1),(1925,'XSGray',0,'MT01',0,9999,100,1),(1926,'XSOrange',0,'MT01',0,9999,100,1),(1927,'XSRed',0,'MT01',0,9999,100,1),(1928,'SGray',0,'MT01',0,9999,100,1),(1929,'SOrange',0,'MT01',0,9999,100,1),(1930,'SRed',0,'MT01',0,9999,100,1),(1931,'MGray',0,'MT01',0,9999,100,1),(1932,'MOrange',0,'MT01',0,9999,100,1),(1933,'MRed',0,'MT01',0,9999,100,1),(1934,'LGray',0,'MT01',0,9999,100,1),(1935,'LOrange',0,'MT01',0,9999,100,1),(1936,'LRed',0,'MT01',0,9999,100,1),(1937,'XLGray',0,'MT01',0,9999,100,1),(1938,'XLOrange',0,'MT01',0,9999,100,1),(1939,'XLRed',0,'MT01',0,9999,100,1),(1940,'32Black',0,'MP12',0,9999,100,1),(1941,'32Blue',0,'MP12',0,9999,100,1),(1942,'32Red',0,'MP12',0,9999,100,1),(1943,'33Black',0,'MP12',0,9999,100,1),(1944,'33Blue',0,'MP12',0,9999,100,1),(1945,'33Red',0,'MP12',0,9999,100,1),(1946,'34Black',0,'MP12',0,9999,100,1),(1947,'34Blue',0,'MP12',0,9999,100,1),(1948,'34Red',0,'MP12',0,9999,100,1),(1949,'36Black',0,'MP12',0,9999,100,1),(1950,'36Blue',0,'MP12',0,9999,100,1),(1951,'36Red',0,'MP12',0,9999,100,1),(1964,'32Black',0,'Mp10',0,9999,100,1),(1965,'32Blue',0,'Mp10',0,9999,100,1),(1966,'32Green',0,'Mp10',0,9999,100,1),(1967,'33Black',0,'Mp10',0,9999,100,1),(1968,'33Blue',0,'Mp10',0,9999,100,1),(1969,'33Green',0,'Mp10',0,9999,100,1),(1970,'34Black',0,'Mp10',0,9999,100,1),(1971,'34Blue',0,'Mp10',0,9999,100,1),(1972,'34Green',0,'Mp10',0,9999,100,1),(1973,'36Black',0,'Mp10',0,9999,100,1),(1974,'36Blue',0,'Mp10',0,9999,100,1),(1975,'36Green',0,'Mp10',0,9999,100,1),(1976,'32Black',0,'MP09',0,9999,100,1),(1977,'32Blue',0,'MP09',0,9999,100,1),(1978,'32Red',0,'MP09',0,9999,100,1),(1979,'33Black',0,'MP09',0,9999,100,1),(1980,'33Blue',0,'MP09',0,9999,100,1),(1981,'33Red',0,'MP09',0,9999,100,1),(1982,'34Black',0,'MP09',0,9999,100,1),(1983,'34Blue',0,'MP09',0,9999,100,1),(1984,'34Red',0,'MP09',0,9999,100,1),(1985,'36Black',0,'MP09',0,9999,100,1),(1986,'36Blue',0,'MP09',0,9999,100,1),(1987,'36Red',0,'MP09',0,9999,100,1),(1988,'32Blue',0,'MP08',0,9999,100,1),(1989,'32Green',0,'MP08',0,9999,100,1),(1990,'32Red',0,'MP08',0,9999,100,1),(1991,'33Blue',0,'MP08',0,9999,100,1),(1992,'33Green',0,'MP08',0,9999,100,1),(1993,'33Red',0,'MP08',0,9999,100,1),(1994,'34Blue',0,'MP08',0,9999,100,1),(1995,'34Green',0,'MP08',0,9999,100,1),(1996,'34Red',0,'MP08',0,9999,100,1),(1997,'36Blue',0,'MP08',0,9999,100,1),(1998,'36Green',0,'MP08',0,9999,100,1),(1999,'36Red',0,'MP08',0,9999,100,1),(2000,'32Black',0,'MP07',0,9999,100,1),(2001,'32Blue',0,'MP07',0,9999,100,1),(2002,'32Purple',0,'MP07',0,9999,100,1),(2003,'33Black',0,'MP07',0,9999,100,1),(2004,'33Blue',0,'MP07',0,9999,100,1),(2005,'33Purple',0,'MP07',0,9999,100,1),(2006,'34Black',0,'MP07',0,9999,100,1),(2007,'34Blue',0,'MP07',0,9999,100,1),(2008,'34Purple',0,'MP07',0,9999,100,1),(2009,'36Black',0,'MP07',0,9999,100,1),(2010,'36Blue',0,'MP07',0,9999,100,1),(2011,'36Purple',0,'MP07',0,9999,100,1),(2012,'32Gray',0,'MP06',0,9999,100,1),(2013,'32Green',0,'MP06',0,9999,100,1),(2014,'32Orange',0,'MP06',0,9999,100,1),(2015,'33Gray',0,'MP06',0,9999,100,1),(2016,'33Green',0,'MP06',0,9999,100,1),(2017,'33Orange',0,'MP06',0,9999,100,1),(2018,'34Gray',0,'MP06',0,9999,100,1),(2019,'34Green',0,'MP06',0,9999,100,1),(2020,'34Orange',0,'MP06',0,9999,100,1),(2021,'36Gray',0,'MP06',0,9999,100,1),(2022,'36Green',0,'MP06',0,9999,100,1),(2023,'36Orange',0,'MP06',0,9999,100,1),(2024,'32Black',0,'MP05',0,9999,100,1),(2025,'32Blue',0,'MP05',0,9999,100,1),(2026,'32Green',0,'MP05',0,9999,100,1),(2027,'33Black',0,'MP05',0,9999,100,1),(2028,'33Blue',0,'MP05',0,9999,100,1),(2029,'33Green',0,'MP05',0,9999,100,1),(2030,'34Black',0,'MP05',0,9999,100,1),(2031,'34Blue',0,'MP05',0,9999,100,1),(2032,'34Green',0,'MP05',0,9999,100,1),(2033,'36Black',0,'MP05',0,9999,100,1),(2034,'36Blue',0,'MP05',0,9999,100,1),(2035,'36Green',0,'MP05',0,9999,100,1),(2036,'32Black',0,'MP04',0,9999,100,1),(2037,'32Gray',0,'MP04',0,9999,100,1),(2038,'32Green',0,'MP04',0,9999,100,1),(2039,'33Black',0,'MP04',0,9999,100,1),(2040,'33Gray',0,'MP04',0,9999,100,1),(2041,'33Green',0,'MP04',0,9999,100,1),(2042,'34Black',0,'MP04',0,9999,100,1),(2043,'34Gray',0,'MP04',0,9999,100,1),(2044,'34Green',0,'MP04',0,9999,100,1),(2045,'36Black',0,'MP04',0,9999,100,1),(2046,'36Gray',0,'MP04',0,9999,100,1),(2047,'36Green',0,'MP04',0,9999,100,1),(2048,'32Blue',0,'MP03',0,9999,100,1),(2049,'32Green',0,'MP03',0,9999,100,1),(2050,'32Red',0,'MP03',0,9999,100,1),(2051,'33Blue',0,'MP03',0,9999,100,1),(2052,'33Green',0,'MP03',0,9999,100,1),(2053,'33Red',0,'MP03',0,9999,100,1),(2054,'34Blue',0,'MP03',0,9999,100,1),(2055,'34Green',0,'MP03',0,9999,100,1),(2056,'34Red',0,'MP03',0,9999,100,1),(2057,'36Blue',0,'MP03',0,9999,100,1),(2058,'36Green',0,'MP03',0,9999,100,1),(2059,'36Red',0,'MP03',0,9999,100,1),(2060,'32Blue',0,'MP02',0,9999,100,1),(2061,'32Gray',0,'MP02',0,9999,100,1),(2062,'32Red',0,'MP02',0,9999,100,1),(2063,'33Blue',0,'MP02',0,9999,100,1),(2064,'33Gray',0,'MP02',0,9999,100,1),(2065,'33Red',0,'MP02',0,9999,100,1),(2066,'34Blue',0,'MP02',0,9999,100,1),(2067,'34Gray',0,'MP02',0,9999,100,1),(2068,'34Red',0,'MP02',0,9999,100,1),(2069,'36Blue',0,'MP02',0,9999,100,1),(2070,'36Gray',0,'MP02',0,9999,100,1),(2071,'36Red',0,'MP02',0,9999,100,1),(2072,'32Black',0,'MP01',0,9999,100,1),(2073,'32Gray',0,'MP01',0,9999,100,1),(2074,'32Purple',0,'MP01',0,9999,100,1),(2075,'33Black',0,'MP01',0,9999,100,1),(2076,'33Gray',0,'MP01',0,9999,100,1),(2077,'33Purple',0,'MP01',0,9999,100,1),(2078,'34Black',0,'MP01',0,9999,100,1),(2079,'34Gray',0,'MP01',0,9999,100,1),(2080,'34Purple',0,'MP01',0,9999,100,1),(2081,'36Black',0,'MP01',0,9999,100,1),(2082,'36Gray',0,'MP01',0,9999,100,1),(2083,'36Purple',0,'MP01',0,9999,100,1),(2096,'32Black',0,'MSH11',0,9999,100,1),(2097,'32Blue',0,'MSH11',0,9999,100,1),(2098,'32Red',0,'MSH11',0,9999,100,1),(2099,'33Black',0,'MSH11',0,9999,100,1),(2100,'33Blue',0,'MSH11',0,9999,100,1),(2101,'33Red',0,'MSH11',0,9999,100,1),(2102,'34Black',0,'MSH11',0,9999,100,1),(2103,'34Blue',0,'MSH11',0,9999,100,1),(2104,'34Red',0,'MSH11',0,9999,100,1),(2105,'36Black',0,'MSH11',0,9999,100,1),(2106,'36Blue',0,'MSH11',0,9999,100,1),(2107,'36Red',0,'MSH11',0,9999,100,1),(2108,'32Blue',0,'MSH10',0,9999,100,1),(2109,'32Green',0,'MSH10',0,9999,100,1),(2110,'32Purple',0,'MSH10',0,9999,100,1),(2111,'33Blue',0,'MSH10',0,9999,100,1),(2112,'33Green',0,'MSH10',0,9999,100,1),(2113,'33Purple',0,'MSH10',0,9999,100,1),(2114,'34Blue',0,'MSH10',0,9999,100,1),(2115,'34Green',0,'MSH10',0,9999,100,1),(2116,'34Purple',0,'MSH10',0,9999,100,1),(2117,'36Blue',0,'MSH10',0,9999,100,1),(2118,'36Green',0,'MSH10',0,9999,100,1),(2119,'36Purple',0,'MSH10',0,9999,100,1),(2120,'32Black',0,'MSH09',0,9999,100,1),(2121,'32Blue',0,'MSH09',0,9999,100,1),(2122,'32Green',0,'MSH09',0,9999,100,1),(2123,'33Black',0,'MSH09',0,9999,100,1),(2124,'33Blue',0,'MSH09',0,9999,100,1),(2125,'33Green',0,'MSH09',0,9999,100,1),(2126,'34Black',0,'MSH09',0,9999,100,1),(2127,'34Blue',0,'MSH09',0,9999,100,1),(2128,'34Green',0,'MSH09',0,9999,100,1),(2129,'36Black',0,'MSH09',0,9999,100,1),(2130,'36Blue',0,'MSH09',0,9999,100,1),(2131,'36Green',0,'MSH09',0,9999,100,1),(2132,'32Black',0,'MSH08',0,9999,100,1),(2133,'32Blue',0,'MSH08',0,9999,100,1),(2134,'32Green',0,'MSH08',0,9999,100,1),(2135,'33Black',0,'MSH08',0,9999,100,1),(2136,'33Blue',0,'MSH08',0,9999,100,1),(2137,'33Green',0,'MSH08',0,9999,100,1),(2138,'34Black',0,'MSH08',0,9999,100,1),(2139,'34Blue',0,'MSH08',0,9999,100,1),(2140,'34Green',0,'MSH08',0,9999,100,1),(2141,'36Black',0,'MSH08',0,9999,100,1),(2142,'36Blue',0,'MSH08',0,9999,100,1),(2143,'36Green',0,'MSH08',0,9999,100,1),(2144,'32Black',0,'MSH07',0,9999,100,1),(2145,'32Blue',0,'MSH07',0,9999,100,1),(2146,'32Purple',0,'MSH07',0,9999,100,1),(2147,'33Black',0,'MSH07',0,9999,100,1),(2148,'33Blue',0,'MSH07',0,9999,100,1),(2149,'33Purple',0,'MSH07',0,9999,100,1),(2150,'34Black',0,'MSH07',0,9999,100,1),(2151,'34Blue',0,'MSH07',0,9999,100,1),(2152,'34Purple',0,'MSH07',0,9999,100,1),(2153,'36Black',0,'MSH07',0,9999,100,1),(2154,'36Blue',0,'MSH07',0,9999,100,1),(2155,'36Purple',0,'MSH07',0,9999,100,1),(2156,'32Blue',0,'MSH06',0,9999,100,1),(2157,'32Gray',0,'MSH06',0,9999,100,1),(2158,'32Red',0,'MSH06',0,9999,100,1),(2159,'33Blue',0,'MSH06',0,9999,100,1),(2160,'33Gray',0,'MSH06',0,9999,100,1),(2161,'33Red',0,'MSH06',0,9999,100,1),(2162,'34Blue',0,'MSH06',0,9999,100,1),(2163,'34Gray',0,'MSH06',0,9999,100,1),(2164,'34Red',0,'MSH06',0,9999,100,1),(2165,'36Blue',0,'MSH06',0,9999,100,1),(2166,'36Gray',0,'MSH06',0,9999,100,1),(2167,'36Red',0,'MSH06',0,9999,100,1),(2168,'32Black',0,'MSH05',0,9999,100,1),(2169,'32Blue',0,'MSH05',0,9999,100,1),(2170,'32Gray',0,'MSH05',0,9999,100,1),(2171,'33Black',0,'MSH05',0,9999,100,1),(2172,'33Blue',0,'MSH05',0,9999,100,1),(2173,'33Gray',0,'MSH05',0,9999,100,1),(2174,'34Black',0,'MSH05',0,9999,100,1),(2175,'34Blue',0,'MSH05',0,9999,100,1),(2176,'34Gray',0,'MSH05',0,9999,100,1),(2177,'36Black',0,'MSH05',0,9999,100,1),(2178,'36Blue',0,'MSH05',0,9999,100,1),(2179,'36Gray',0,'MSH05',0,9999,100,1),(2180,'32Gray',0,'MSH04',0,9999,100,1),(2181,'32Purple',0,'MSH04',0,9999,100,1),(2182,'32Yellow',0,'MSH04',0,9999,100,1),(2183,'33Gray',0,'MSH04',0,9999,100,1),(2184,'33Purple',0,'MSH04',0,9999,100,1),(2185,'33Yellow',0,'MSH04',0,9999,100,1),(2186,'34Gray',0,'MSH04',0,9999,100,1),(2187,'34Purple',0,'MSH04',0,9999,100,1),(2188,'34Yellow',0,'MSH04',0,9999,100,1),(2189,'36Gray',0,'MSH04',0,9999,100,1),(2190,'36Purple',0,'MSH04',0,9999,100,1),(2191,'36Yellow',0,'MSH04',0,9999,100,1),(2192,'32Black',0,'MSH03',0,9999,100,1),(2193,'32Blue',0,'MSH03',0,9999,100,1),(2194,'32Green',0,'MSH03',0,9999,100,1),(2195,'33Black',0,'MSH03',0,9999,100,1),(2196,'33Blue',0,'MSH03',0,9999,100,1),(2197,'33Green',0,'MSH03',0,9999,100,1),(2198,'34Black',0,'MSH03',0,9999,100,1),(2199,'34Blue',0,'MSH03',0,9999,100,1),(2200,'34Green',0,'MSH03',0,9999,100,1),(2201,'36Black',0,'MSH03',0,9999,100,1),(2202,'36Blue',0,'MSH03',0,9999,100,1),(2203,'36Green',0,'MSH03',0,9999,100,1),(2204,'32Black',0,'MSH02',0,9999,100,1),(2205,'33Black',0,'MSH02',0,9999,100,1),(2206,'34Black',0,'MSH02',0,9999,100,1),(2207,'36Black',0,'MSH02',0,9999,100,1),(2208,'32Black',0,'MSH01',0,9999,100,1),(2209,'32Blue',0,'MSH01',0,9999,100,1),(2210,'32Red',0,'MSH01',0,9999,100,1),(2211,'33Black',0,'MSH01',0,9999,100,1),(2212,'33Blue',0,'MSH01',0,9999,100,1),(2213,'33Red',0,'MSH01',0,9999,100,1),(2214,'34Black',0,'MSH01',0,9999,100,1),(2215,'34Blue',0,'MSH01',0,9999,100,1),(2216,'34Red',0,'MSH01',0,9999,100,1),(2217,'36Black',0,'MSH01',0,9999,100,1),(2218,'36Blue',0,'MSH01',0,9999,100,1),(2219,'36Red',0,'MSH01',0,9999,100,1),(2220,'55 cm6 foot',0,'24-WG080',37000,9999,100,1),(2221,'55 cm8 foot',0,'24-WG080',40000,9999,100,1),(2222,'55 cm10 foot',0,'24-WG080',44000,9999,100,1),(2223,'65 cm6 foot',0,'24-WG080',41000,9999,100,1),(2224,'65 cm8 foot',0,'24-WG080',44000,9999,100,1),(2225,'65 cm10 foot',0,'24-WG080',48000,9999,100,1),(2226,'75 cm6 foot',0,'24-WG080',46000,9999,100,1),(2227,'75 cm8 foot',0,'24-WG080',49000,9999,100,1),(2228,'75 cm10 foot',0,'24-WG080',53000,9999,100,1),(2229,'추가 상품Sprite Foam Yoga Brick',1,'24-WG080',5000,9999,100,1),(2230,'추가 상품Sprite Foam Roller',1,'24-WG080',19000,9999,100,1),(2231,'Yoga StrapsSprite Yoga Strap 6 foot',1,'24-WG085_Group',14000,9999,100,1),(2232,'Yoga StrapsSprite Yoga Strap 8 foot',1,'24-WG085_Group',17000,9999,100,1),(2233,'Yoga StrapsSprite Yoga Strap 10 foot',1,'24-WG085_Group',21000,9999,100,1),(2234,'XSBlack',0,'WJ12',0,9999,100,1),(2235,'XSBlue',0,'WJ12',0,9999,100,1),(2236,'XSPurple',0,'WJ12',0,9999,100,1),(2237,'SBlack',0,'WJ12',0,9999,100,1),(2238,'SBlue',0,'WJ12',0,9999,100,1),(2239,'SPurple',0,'WJ12',0,9999,100,1),(2240,'MBlack',0,'WJ12',0,9999,100,1),(2241,'MBlue',0,'WJ12',0,9999,100,1),(2242,'MPurple',0,'WJ12',0,9999,100,1),(2243,'LBlack',0,'WJ12',0,9999,100,1),(2244,'LBlue',0,'WJ12',0,9999,100,1),(2245,'LPurple',0,'WJ12',0,9999,100,1),(2246,'XLBlack',0,'WJ12',0,9999,100,1),(2247,'XLBlue',0,'WJ12',0,9999,100,1),(2248,'XLPurple',0,'WJ12',0,9999,100,1),(2249,'xsBlue',0,'WJ06',0,9999,100,1),(2250,'xsGreen',0,'WJ06',0,9999,100,1),(2251,'xsPurple',0,'WJ06',0,9999,100,1),(2252,'sBlue',0,'WJ06',0,9999,100,1),(2253,'sGreen',0,'WJ06',0,9999,100,1),(2254,'sPurple',0,'WJ06',0,9999,100,1),(2255,'MBlue',0,'WJ06',0,9999,100,1),(2256,'MGreen',0,'WJ06',0,9999,100,1),(2257,'MPurple',0,'WJ06',0,9999,100,1),(2258,'LBlue',0,'WJ06',0,9999,100,1),(2259,'LGreen',0,'WJ06',0,9999,100,1),(2260,'LPurple',0,'WJ06',0,9999,100,1),(2261,'XLBlue',0,'WJ06',0,9999,100,1),(2262,'XLGreen',0,'WJ06',0,9999,100,1),(2263,'XLPurple',0,'WJ06',0,9999,100,1),(2294,'XSBlue',0,'WJ09',0,9999,100,1),(2295,'XSGray',0,'WJ09',0,9999,100,1),(2296,'XSGreen',0,'WJ09',0,9999,100,1),(2297,'SBlue',0,'WJ09',0,9999,100,1),(2298,'SGray',0,'WJ09',0,9999,100,1),(2299,'SGreen',0,'WJ09',0,9999,100,1),(2300,'MBlue',0,'WJ09',0,9999,100,1),(2301,'MGray',0,'WJ09',0,9999,100,1),(2302,'MGreen',0,'WJ09',0,9999,100,1),(2303,'LBlue',0,'WJ09',0,9999,100,1),(2304,'LGray',0,'WJ09',0,9999,100,1),(2305,'LGreen',0,'WJ09',0,9999,100,1),(2306,'XLBlue',0,'WJ09',0,9999,100,1),(2307,'XLGray',0,'WJ09',0,9999,100,1),(2308,'XLGreen',0,'WJ09',0,9999,100,1),(2309,'XSGrey',0,'WJ08',0,9999,100,1),(2310,'XSOrange',0,'WJ08',0,9999,100,1),(2311,'XSPurple',0,'WJ08',0,9999,100,1),(2312,'SGrey',0,'WJ08',0,9999,100,1),(2313,'SOrange',0,'WJ08',0,9999,100,1),(2314,'SPurple',0,'WJ08',0,9999,100,1),(2315,'MGrey',0,'WJ08',0,9999,100,1),(2316,'MOrange',0,'WJ08',0,9999,100,1),(2317,'MPurple',0,'WJ08',0,9999,100,1),(2318,'LGrey',0,'WJ08',0,9999,100,1),(2319,'LOrange',0,'WJ08',0,9999,100,1),(2320,'LPurple',0,'WJ08',0,9999,100,1),(2321,'XLGrey',0,'WJ08',0,9999,100,1),(2322,'XLOrange',0,'WJ08',0,9999,100,1),(2323,'XLPurple',0,'WJ08',0,9999,100,1),(2324,'XSOrange',0,'WJ07',0,9999,100,1),(2325,'XSPurple',0,'WJ07',0,9999,100,1),(2326,'XSRed',0,'WJ07',0,9999,100,1),(2327,'SOrange',0,'WJ07',0,9999,100,1),(2328,'SPurple',0,'WJ07',0,9999,100,1),(2329,'SRed',0,'WJ07',0,9999,100,1),(2330,'MOrange',0,'WJ07',0,9999,100,1),(2331,'MPurple',0,'WJ07',0,9999,100,1),(2332,'MRed',0,'WJ07',0,9999,100,1),(2333,'LOrange',0,'WJ07',0,9999,100,1),(2334,'LPurple',0,'WJ07',0,9999,100,1),(2335,'LRed',0,'WJ07',0,9999,100,1),(2336,'XLOrange',0,'WJ07',0,9999,100,1),(2337,'XLPurple',0,'WJ07',0,9999,100,1),(2338,'XLRed',0,'WJ07',0,9999,100,1),(2339,'XSBrown',0,'WJ05',0,9999,100,1),(2340,'XSGreen',0,'WJ05',0,9999,100,1),(2341,'XSRed',0,'WJ05',0,9999,100,1),(2342,'SBrown',0,'WJ05',0,9999,100,1),(2343,'SGreen',0,'WJ05',0,9999,100,1),(2344,'SRed',0,'WJ05',0,9999,100,1),(2345,'MBrown',0,'WJ05',0,9999,100,1),(2346,'MGreen',0,'WJ05',0,9999,100,1),(2347,'MRed',0,'WJ05',0,9999,100,1),(2348,'LBrown',0,'WJ05',0,9999,100,1),(2349,'LGreen',0,'WJ05',0,9999,100,1),(2350,'LRed',0,'WJ05',0,9999,100,1),(2351,'XLBrown',0,'WJ05',0,9999,100,1),(2352,'XLGreen',0,'WJ05',0,9999,100,1),(2353,'XLRed',0,'WJ05',0,9999,100,1),(2369,'XSBlue',0,'WJ03',0,9999,100,1),(2370,'XSOrange',0,'WJ03',0,9999,100,1),(2371,'XSRed',0,'WJ03',0,9999,100,1),(2372,'SBlue',0,'WJ03',0,9999,100,1),(2373,'SOrange',0,'WJ03',0,9999,100,1),(2374,'SRed',0,'WJ03',0,9999,100,1),(2375,'MBlue',0,'WJ03',0,9999,100,1),(2376,'MOrange',0,'WJ03',0,9999,100,1),(2377,'MRed',0,'WJ03',0,9999,100,1),(2378,'LBlue',0,'WJ03',0,9999,100,1),(2379,'LOrange',0,'WJ03',0,9999,100,1),(2380,'LRed',0,'WJ03',0,9999,100,1),(2381,'XLBlue',0,'WJ03',0,9999,100,1),(2382,'XLOrange',0,'WJ03',0,9999,100,1),(2383,'XLRed',0,'WJ03',0,9999,100,1),(2399,'SBlue',0,'WJ01',0,9999,100,1),(2400,'SRed',0,'WJ01',0,9999,100,1),(2401,'SYellow',0,'WJ01',0,9999,100,1),(2402,'MBlue',0,'WJ01',0,9999,100,1),(2403,'MRed',0,'WJ01',0,9999,100,1),(2404,'MYellow',0,'WJ01',0,9999,100,1),(2405,'LBlue',0,'WJ01',0,9999,100,1),(2406,'LRed',0,'WJ01',0,9999,100,1),(2407,'LYellow',0,'WJ01',0,9999,100,1),(2408,'XSGray',0,'WH12',0,9999,100,1),(2409,'XSGreen',0,'WH12',0,9999,100,1),(2410,'XSPurple',0,'WH12',0,9999,100,1),(2411,'SGray',0,'WH12',0,9999,100,1),(2412,'SGreen',0,'WH12',0,9999,100,1),(2413,'SPurple',0,'WH12',0,9999,100,1),(2414,'MGray',0,'WH12',0,9999,100,1),(2415,'MGreen',0,'WH12',0,9999,100,1),(2416,'MPurple',0,'WH12',0,9999,100,1),(2417,'LGray',0,'WH12',0,9999,100,1),(2418,'LGreen',0,'WH12',0,9999,100,1),(2419,'LPurple',0,'WH12',0,9999,100,1),(2420,'XLGray',0,'WH12',0,9999,100,1),(2421,'XLGreen',0,'WH12',0,9999,100,1),(2422,'XLPurple',0,'WH12',0,9999,100,1),(2423,'XSBlue',0,'WH11',0,9999,100,1),(2424,'XSGreen',0,'WH11',0,9999,100,1),(2425,'XSOrange',0,'WH11',0,9999,100,1),(2426,'SBlue',0,'WH11',0,9999,100,1),(2427,'SGreen',0,'WH11',0,9999,100,1),(2428,'SOrange',0,'WH11',0,9999,100,1),(2429,'MBlue',0,'WH11',0,9999,100,1),(2430,'MGreen',0,'WH11',0,9999,100,1),(2431,'MOrange',0,'WH11',0,9999,100,1),(2432,'LBlue',0,'WH11',0,9999,100,1),(2433,'LGreen',0,'WH11',0,9999,100,1),(2434,'LOrange',0,'WH11',0,9999,100,1),(2435,'XLBlue',0,'WH11',0,9999,100,1),(2436,'XLGreen',0,'WH11',0,9999,100,1),(2437,'XLOrange',0,'WH11',0,9999,100,1),(2483,'XSBlack',0,'WJ11',0,9999,100,1),(2484,'XSBlue',0,'WJ11',0,9999,100,1),(2485,'XSOrange',0,'WJ11',0,9999,100,1),(2486,'SBlack',0,'WJ11',0,9999,100,1),(2487,'SBlue',0,'WJ11',0,9999,100,1),(2488,'SOrange',0,'WJ11',0,9999,100,1),(2489,'MBlack',0,'WJ11',0,9999,100,1),(2490,'MBlue',0,'WJ11',0,9999,100,1),(2491,'MOrange',0,'WJ11',0,9999,100,1),(2492,'LBlack',0,'WJ11',0,9999,100,1),(2493,'LBlue',0,'WJ11',0,9999,100,1),(2494,'LOrange',0,'WJ11',0,9999,100,1),(2495,'XLBlack',0,'WJ11',0,9999,100,1),(2496,'XLBlue',0,'WJ11',0,9999,100,1),(2497,'XLOrange',0,'WJ11',0,9999,100,1),(2513,'XSOrange',0,'WJ04',0,9999,100,1),(2514,'XSRed',0,'WJ04',0,9999,100,1),(2515,'XSWhite',0,'WJ04',0,9999,100,1),(2516,'SOrange',0,'WJ04',0,9999,100,1),(2517,'SRed',0,'WJ04',0,9999,100,1),(2518,'SWhite',0,'WJ04',0,9999,100,1),(2519,'MOrange',0,'WJ04',0,9999,100,1),(2520,'MRed',0,'WJ04',0,9999,100,1),(2521,'MWhite',0,'WJ04',0,9999,100,1),(2522,'LOrange',0,'WJ04',0,9999,100,1),(2523,'LRed',0,'WJ04',0,9999,100,1),(2524,'LWhite',0,'WJ04',0,9999,100,1),(2525,'XLOrange',0,'WJ04',0,9999,100,1),(2526,'XLRed',0,'WJ04',0,9999,100,1),(2527,'XLWhite',0,'WJ04',0,9999,100,1),(2528,'XSBlack',0,'WJ10',0,9999,100,1),(2529,'XSOrange',0,'WJ10',0,9999,100,1),(2530,'XSYellow',0,'WJ10',0,9999,100,1),(2531,'SBlack',0,'WJ10',0,9999,100,1),(2532,'SOrange',0,'WJ10',0,9999,100,1),(2533,'SYellow',0,'WJ10',0,9999,100,1),(2534,'MBlack',0,'WJ10',0,9999,100,1),(2535,'MOrange',0,'WJ10',0,9999,100,1),(2536,'MYellow',0,'WJ10',0,9999,100,1),(2537,'LBlack',0,'WJ10',0,9999,100,1),(2538,'LOrange',0,'WJ10',0,9999,100,1),(2539,'LYellow',0,'WJ10',0,9999,100,1),(2540,'XLBlack',0,'WJ10',0,9999,100,1),(2541,'XLOrange',0,'WJ10',0,9999,100,1),(2542,'XLYellow',0,'WJ10',0,9999,100,1),(2543,'XSGreen',0,'WH09',0,9999,100,1),(2544,'XSPurple',0,'WH09',0,9999,100,1),(2545,'XSRed',0,'WH09',0,9999,100,1),(2546,'SGreen',0,'WH09',0,9999,100,1),(2547,'SPurple',0,'WH09',0,9999,100,1),(2548,'SRed',0,'WH09',0,9999,100,1),(2549,'MGreen',0,'WH09',0,9999,100,1),(2550,'MPurple',0,'WH09',0,9999,100,1),(2551,'MRed',0,'WH09',0,9999,100,1),(2552,'LGreen',0,'WH09',0,9999,100,1),(2553,'LPurple',0,'WH09',0,9999,100,1),(2554,'LRed',0,'WH09',0,9999,100,1),(2555,'XLGreen',0,'WH09',0,9999,100,1),(2556,'XLPurple',0,'WH09',0,9999,100,1),(2557,'XLRed',0,'WH09',0,9999,100,1),(2558,'XSGreen',0,'Ws10',0,9999,100,1),(2559,'XSRed',0,'Ws10',0,9999,100,1),(2560,'XSYellow',0,'Ws10',0,9999,100,1),(2561,'SGreen',0,'Ws10',0,9999,100,1),(2562,'SRed',0,'Ws10',0,9999,100,1),(2563,'SYellow',0,'Ws10',0,9999,100,1),(2564,'MGreen',0,'Ws10',0,9999,100,1),(2565,'MRed',0,'Ws10',0,9999,100,1),(2566,'MYellow',0,'Ws10',0,9999,100,1),(2567,'LGreen',0,'Ws10',0,9999,100,1),(2568,'LRed',0,'Ws10',0,9999,100,1),(2569,'LYellow',0,'Ws10',0,9999,100,1),(2570,'XLGreen',0,'Ws10',0,9999,100,1),(2571,'XLRed',0,'Ws10',0,9999,100,1),(2572,'XLYellow',0,'Ws10',0,9999,100,1),(2573,'XSBlack',0,'WT08',0,9999,100,1),(2574,'XSPurple',0,'WT08',0,9999,100,1),(2575,'XSYellow',0,'WT08',0,9999,100,1),(2576,'SBlack',0,'WT08',0,9999,100,1),(2577,'SPurple',0,'WT08',0,9999,100,1),(2578,'SYellow',0,'WT08',0,9999,100,1),(2579,'MBlack',0,'WT08',0,9999,100,1),(2580,'MPurple',0,'WT08',0,9999,100,1),(2581,'MYellow',0,'WT08',0,9999,100,1),(2582,'LBlack',0,'WT08',0,9999,100,1),(2583,'LPurple',0,'WT08',0,9999,100,1),(2584,'LYellow',0,'WT08',0,9999,100,1),(2585,'XLBlack',0,'WT08',0,9999,100,1),(2586,'XLPurple',0,'WT08',0,9999,100,1),(2587,'XLYellow',0,'WT08',0,9999,100,1),(2588,'28Blue',0,'WP12',0,9999,100,1),(2589,'28Gray',0,'WP12',0,9999,100,1),(2590,'28Green',0,'WP12',0,9999,100,1),(2591,'29Blue',0,'WP12',0,9999,100,1),(2592,'29Gray',0,'WP12',0,9999,100,1),(2593,'29Green',0,'WP12',0,9999,100,1),(2594,'28Blue',0,'WSH11',0,9999,100,1),(2595,'28Orange',0,'WSH11',0,9999,100,1),(2596,'28Red',0,'WSH11',0,9999,100,1),(2597,'29Blue',0,'WSH11',0,9999,100,1),(2598,'29Orange',0,'WSH11',0,9999,100,1),(2599,'29Red',0,'WSH11',0,9999,100,1),(2600,'XSBlue',0,'MT09',0,9999,100,1),(2601,'SBlue',0,'MT09',0,9999,100,1),(2602,'MBlue',0,'MT09',0,9999,100,1),(2603,'LBlue',0,'MT09',0,9999,100,1),(2604,'XLBlue',0,'MT09',0,9999,100,1),(2605,'XSBlack',0,'MJ12',0,9999,100,1),(2606,'XSBlue',0,'MJ12',0,9999,100,1),(2607,'XSOrange',0,'MJ12',0,9999,100,1),(2608,'SBlack',0,'MJ12',0,9999,100,1),(2609,'SBlue',0,'MJ12',0,9999,100,1),(2610,'SOrange',0,'MJ12',0,9999,100,1),(2611,'MBlack',0,'MJ12',0,9999,100,1),(2612,'MBlue',0,'MJ12',0,9999,100,1),(2613,'MOrange',0,'MJ12',0,9999,100,1),(2614,'LBlack',0,'MJ12',0,9999,100,1),(2615,'LBlue',0,'MJ12',0,9999,100,1),(2616,'LOrange',0,'MJ12',0,9999,100,1),(2617,'XLBlack',0,'MJ12',0,9999,100,1),(2618,'XLBlue',0,'MJ12',0,9999,100,1),(2619,'XLOrange',0,'MJ12',0,9999,100,1),(2620,'XSBlue',0,'MJ08',0,9999,100,1),(2621,'XSGray',0,'MJ08',0,9999,100,1),(2622,'XSGreen',0,'MJ08',0,9999,100,1),(2623,'SBlue',0,'MJ08',0,9999,100,1),(2624,'SGray',0,'MJ08',0,9999,100,1),(2625,'SGreen',0,'MJ08',0,9999,100,1),(2626,'MBlue',0,'MJ08',0,9999,100,1),(2627,'MGray',0,'MJ08',0,9999,100,1),(2628,'MGreen',0,'MJ08',0,9999,100,1),(2629,'LBlue',0,'MJ08',0,9999,100,1),(2630,'LGray',0,'MJ08',0,9999,100,1),(2631,'LGreen',0,'MJ08',0,9999,100,1),(2632,'XLBlue',0,'MJ08',0,9999,100,1),(2633,'XLGray',0,'MJ08',0,9999,100,1),(2634,'XLGreen',0,'MJ08',0,9999,100,1),(2635,'XSBlack',0,'WJ02',0,9999,100,1),(2636,'XSBlue',0,'WJ02',0,9999,100,1),(2637,'XSGray',0,'WJ02',0,9999,100,1),(2638,'SBlack',0,'WJ02',0,9999,100,1),(2639,'SBlue',0,'WJ02',0,9999,100,1),(2640,'SGray',0,'WJ02',0,9999,100,1),(2641,'MBlack',0,'WJ02',0,9999,100,1),(2642,'MBlue',0,'WJ02',0,9999,100,1),(2643,'MGray',0,'WJ02',0,9999,100,1),(2644,'LBlack',0,'WJ02',0,9999,100,1),(2645,'LBlue',0,'WJ02',0,9999,100,1),(2646,'LGray',0,'WJ02',0,9999,100,1),(2647,'XLBlack',0,'WJ02',0,9999,100,1),(2648,'XLBlue',0,'WJ02',0,9999,100,1),(2649,'XLGray',0,'WJ02',0,9999,100,1),(2650,'XSBlue',0,'WH02',0,9999,100,1),(2651,'XSGreen',0,'WH02',0,9999,100,1),(2652,'XSOrange',0,'WH02',0,9999,100,1),(2653,'SBlue',0,'WH02',0,9999,100,1),(2654,'SGreen',0,'WH02',0,9999,100,1),(2655,'SOrange',0,'WH02',0,9999,100,1),(2656,'MBlue',0,'WH02',0,9999,100,1),(2657,'MGreen',0,'WH02',0,9999,100,1),(2658,'MOrange',0,'WH02',0,9999,100,1),(2659,'LBlue',0,'WH02',0,9999,100,1),(2660,'LGreen',0,'WH02',0,9999,100,1),(2661,'LOrange',0,'WH02',0,9999,100,1),(2662,'XLBlue',0,'WH02',0,9999,100,1),(2663,'XLGreen',0,'WH02',0,9999,100,1),(2664,'XLOrange',0,'WH02',0,9999,100,1),(2665,'XSBlue',0,'WS02',0,9999,100,1),(2666,'XSGreen',0,'WS02',0,9999,100,1),(2667,'XSRed',0,'WS02',0,9999,100,1),(2668,'SBlue',0,'WS02',0,9999,100,1),(2669,'SGreen',0,'WS02',0,9999,100,1),(2670,'SRed',0,'WS02',0,9999,100,1),(2671,'MBlue',0,'WS02',0,9999,100,1),(2672,'MGreen',0,'WS02',0,9999,100,1),(2673,'MRed',0,'WS02',0,9999,100,1),(2674,'LBlue',0,'WS02',0,9999,100,1),(2675,'LGreen',0,'WS02',0,9999,100,1),(2676,'LRed',0,'WS02',0,9999,100,1),(2677,'XLBlue',0,'WS02',0,9999,100,1),(2678,'XLGreen',0,'WS02',0,9999,100,1),(2679,'XLRed',0,'WS02',0,9999,100,1),(2680,'XSGreen',0,'WB03',0,9999,100,1),(2681,'XSRed',0,'WB03',0,9999,100,1),(2682,'XSYellow',0,'WB03',0,9999,100,1),(2683,'SGreen',0,'WB03',0,9999,100,1),(2684,'SRed',0,'WB03',0,9999,100,1),(2685,'SYellow',0,'WB03',0,9999,100,1),(2686,'MGreen',0,'WB03',0,9999,100,1),(2687,'MRed',0,'WB03',0,9999,100,1),(2688,'MYellow',0,'WB03',0,9999,100,1),(2689,'LGreen',0,'WB03',0,9999,100,1),(2690,'LRed',0,'WB03',0,9999,100,1),(2691,'LYellow',0,'WB03',0,9999,100,1),(2692,'XLGreen',0,'WB03',0,9999,100,1),(2693,'XLRed',0,'WB03',0,9999,100,1),(2694,'XLYellow',0,'WB03',0,9999,100,1),(2695,'28Black',0,'WP04',0,9999,100,1),(2696,'28Blue',0,'WP04',0,9999,100,1),(2697,'28White',0,'WP04',0,9999,100,1),(2698,'29Black',0,'WP04',0,9999,100,1),(2699,'29Blue',0,'WP04',0,9999,100,1),(2700,'29White',0,'WP04',0,9999,100,1),(2701,'28Black',0,'WP01',0,9999,100,1),(2702,'28Gray',0,'WP01',0,9999,100,1),(2703,'28White',0,'WP01',0,9999,100,1),(2704,'29Black',0,'WP01',0,9999,100,1),(2705,'29Gray',0,'WP01',0,9999,100,1),(2706,'29White',0,'WP01',0,9999,100,1),(2707,'XSBlue',0,'MH12',0,9999,100,1),(2708,'XSGreen',0,'MH12',0,9999,100,1),(2709,'XSRed',0,'MH12',0,9999,100,1),(2710,'SBlue',0,'MH12',0,9999,100,1),(2711,'SGreen',0,'MH12',0,9999,100,1),(2712,'SRed',0,'MH12',0,9999,100,1),(2713,'MBlue',0,'MH12',0,9999,100,1),(2714,'MGreen',0,'MH12',0,9999,100,1),(2715,'MRed',0,'MH12',0,9999,100,1),(2716,'LBlue',0,'MH12',0,9999,100,1),(2717,'LGreen',0,'MH12',0,9999,100,1),(2718,'LRed',0,'MH12',0,9999,100,1),(2719,'XLBlue',0,'MH12',0,9999,100,1),(2720,'XLGreen',0,'MH12',0,9999,100,1),(2721,'XLRed',0,'MH12',0,9999,100,1),(2722,'XSBlack',0,'MS10',0,9999,100,1),(2723,'XSBlue',0,'MS10',0,9999,100,1),(2724,'XSRed',0,'MS10',0,9999,100,1),(2725,'SBlack',0,'MS10',0,9999,100,1),(2726,'SBlue',0,'MS10',0,9999,100,1),(2727,'SRed',0,'MS10',0,9999,100,1),(2728,'MBlack',0,'MS10',0,9999,100,1),(2729,'MBlue',0,'MS10',0,9999,100,1),(2730,'MRed',0,'MS10',0,9999,100,1),(2731,'LBlack',0,'MS10',0,9999,100,1),(2732,'LBlue',0,'MS10',0,9999,100,1),(2733,'LRed',0,'MS10',0,9999,100,1),(2734,'XLBlack',0,'MS10',0,9999,100,1),(2735,'XLBlue',0,'MS10',0,9999,100,1),(2736,'XLRed',0,'MS10',0,9999,100,1),(2737,'XSBlue',0,'MT04',0,9999,100,1),(2738,'SBlue',0,'MT04',0,9999,100,1),(2739,'MBlue',0,'MT04',0,9999,100,1),(2740,'LBlue',0,'MT04',0,9999,100,1),(2741,'XLBlue',0,'MT04',0,9999,100,1),(2742,'32Black',0,'MSH12',0,9999,100,1),(2743,'32Gray',0,'MSH12',0,9999,100,1),(2744,'32Red',0,'MSH12',0,9999,100,1),(2745,'33Black',0,'MSH12',0,9999,100,1),(2746,'33Gray',0,'MSH12',0,9999,100,1),(2747,'33Red',0,'MSH12',0,9999,100,1),(2748,'34Black',0,'MSH12',0,9999,100,1),(2749,'34Gray',0,'MSH12',0,9999,100,1),(2750,'34Red',0,'MSH12',0,9999,100,1),(2751,'36Black',0,'MSH12',0,9999,100,1),(2752,'36Gray',0,'MSH12',0,9999,100,1),(2753,'36Red',0,'MSH12',0,9999,100,1),(2754,'32Blue',0,'MP11',0,9999,100,1),(2755,'32Brown',0,'MP11',0,9999,100,1),(2756,'32Green',0,'MP11',0,9999,100,1),(2757,'33Blue',0,'MP11',0,9999,100,1),(2758,'33Brown',0,'MP11',0,9999,100,1),(2759,'33Green',0,'MP11',0,9999,100,1),(2760,'34Blue',0,'MP11',0,9999,100,1),(2761,'34Brown',0,'MP11',0,9999,100,1),(2762,'34Green',0,'MP11',0,9999,100,1),(2763,'36Blue',0,'MP11',0,9999,100,1),(2764,'36Brown',0,'MP11',0,9999,100,1),(2765,'36Green',0,'MP11',0,9999,100,1),(2766,'XSBlack',0,'WB01',0,9999,100,1),(2767,'XSGray',0,'WB01',0,9999,100,1),(2768,'XSPurple',0,'WB01',0,9999,100,1),(2769,'SBlack',0,'WB01',0,9999,100,1),(2770,'SGray',0,'WB01',0,9999,100,1),(2771,'SPurple',0,'WB01',0,9999,100,1),(2772,'MBlack',0,'WB01',0,9999,100,1),(2773,'MGray',0,'WB01',0,9999,100,1),(2774,'MPurple',0,'WB01',0,9999,100,1),(2775,'LBlack',0,'WB01',0,9999,100,1),(2776,'LGray',0,'WB01',0,9999,100,1),(2777,'LPurple',0,'WB01',0,9999,100,1),(2778,'XLBlack',0,'WB01',0,9999,100,1),(2779,'XLGray',0,'WB01',0,9999,100,1),(2780,'XLPurple',0,'WB01',0,9999,100,1),(2781,'XSPurple',0,'WT09',0,9999,100,1),(2782,'XSWhite',0,'WT09',0,9999,100,1),(2783,'XSYellow',0,'WT09',0,9999,100,1),(2784,'SPurple',0,'WT09',0,9999,100,1),(2785,'SWhite',0,'WT09',0,9999,100,1),(2786,'SYellow',0,'WT09',0,9999,100,1),(2787,'MPurple',0,'WT09',0,9999,100,1),(2788,'MWhite',0,'WT09',0,9999,100,1),(2789,'MYellow',0,'WT09',0,9999,100,1),(2790,'LPurple',0,'WT09',0,9999,100,1),(2791,'LWhite',0,'WT09',0,9999,100,1),(2792,'LYellow',0,'WT09',0,9999,100,1),(2793,'XLPurple',0,'WT09',0,9999,100,1),(2794,'XLWhite',0,'WT09',0,9999,100,1),(2795,'XLYellow',0,'WT09',0,9999,100,1),(2796,'XSBlack',0,'WT01',0,9999,100,1),(2797,'XSBlue',0,'WT01',0,9999,100,1),(2798,'XSOrange',0,'WT01',0,9999,100,1),(2799,'SBlack',0,'WT01',0,9999,100,1),(2800,'SBlue',0,'WT01',0,9999,100,1),(2801,'SOrange',0,'WT01',0,9999,100,1),(2802,'MBlack',0,'WT01',0,9999,100,1),(2803,'MBlue',0,'WT01',0,9999,100,1),(2804,'MOrange',0,'WT01',0,9999,100,1),(2805,'LBlack',0,'WT01',0,9999,100,1),(2806,'LBlue',0,'WT01',0,9999,100,1),(2807,'LOrange',0,'WT01',0,9999,100,1),(2808,'XLBlack',0,'WT01',0,9999,100,1),(2809,'XLBlue',0,'WT01',0,9999,100,1),(2810,'XLOrange',0,'WT01',0,9999,100,1); /*!40000 ALTER TABLE `g5_shop_item_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_item_qa` -- DROP TABLE IF EXISTS `g5_shop_item_qa`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_item_qa` ( `iq_id` int(11) NOT NULL AUTO_INCREMENT, `it_id` varchar(20) NOT NULL DEFAULT '', `mb_id` varchar(255) NOT NULL DEFAULT '', `iq_secret` tinyint(4) NOT NULL DEFAULT 0, `iq_name` varchar(255) NOT NULL DEFAULT '', `iq_email` varchar(255) NOT NULL DEFAULT '', `iq_hp` varchar(255) NOT NULL DEFAULT '', `iq_password` varchar(255) NOT NULL DEFAULT '', `iq_subject` varchar(255) NOT NULL DEFAULT '', `iq_question` text NOT NULL, `iq_answer` text NOT NULL, `iq_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `iq_ip` varchar(25) NOT NULL DEFAULT '', PRIMARY KEY (`iq_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_item_qa` -- LOCK TABLES `g5_shop_item_qa` WRITE; /*!40000 ALTER TABLE `g5_shop_item_qa` DISABLE KEYS */; INSERT INTO `g5_shop_item_qa` VALUES (1,'WSH11','test02',0,'테스트02','test02@gnuboard.test','','sha256:12000:JVXywdnWPaXb4MfjZ1Ssqc7wXS1x6Rdg:C9FLkkNgvRStSdccGVbbeVc6aA9cV4DY','이 상품 좋은가요?','

착용했을 때 불편하지 않을까요?

','

불편하지 않고, 편안합니다

','2020-12-24 10:49:02','127.0.0.1'),(2,'WJ02','test04',0,'테스트04','test04@gnuboard.test','','sha256:12000:DqGUQHK3Y9rObe4vXMjGudae8hbCiGks:qQoqG8d0DI2LYJzWjz35vJ7yAUgUGodz','신축성은 어떤가요?','

너무 타이트하게 달라 붙지 않나요?

','','2020-12-24 10:49:55','127.0.0.1'); /*!40000 ALTER TABLE `g5_shop_item_qa` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_item_relation` -- DROP TABLE IF EXISTS `g5_shop_item_relation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_item_relation` ( `it_id` varchar(20) NOT NULL DEFAULT '', `it_id2` varchar(20) NOT NULL DEFAULT '', `ir_no` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`it_id`,`it_id2`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_item_relation` -- LOCK TABLES `g5_shop_item_relation` WRITE; /*!40000 ALTER TABLE `g5_shop_item_relation` DISABLE KEYS */; INSERT INTO `g5_shop_item_relation` VALUES ('24-UG04','24-UG06',0),('24-UG06','24-UG04',0),('24-UG06','24-UG07',1),('24-UG07','24-UG06',1),('WH01','WJ08',3),('WH01','WJ10',2),('WH02','WJ11',0),('WH02','WJ12',1),('WH03','WJ06',2),('WH03','WJ12',3),('WH04','WJ02',3),('WH04','WJ10',3),('WH05','WJ01',0),('WH05','WJ05',2),('WH06','WJ03',1),('WH06','WJ08',2),('WH07','WJ02',1),('WH07','WJ06',3),('WH07','WJ07',0),('WH07','WJ09',2),('WH08','WJ04',1),('WH08','WJ05',3),('WH08','WJ09',1),('WH08','WJ11',3),('WH10','WJ01',1),('WH10','WJ03',0),('WH10','WJ04',2),('WH10','WJ10',4),('WH11','WP04',1),('WH11','WP05',2),('WH11','WS01',0),('WH11','WS04',3),('WH12','WP01',1),('WH12','WP11',0),('WH12','WS07',1),('WH12','Ws10',0),('WJ01','WH05',0),('WJ01','WH10',1),('WJ01','WP01',0),('WJ01','WP03',3),('WJ02','WH04',3),('WJ02','WH07',1),('WJ02','WP10',0),('WJ02','WP11',2),('WJ03','WH06',1),('WJ03','WH10',0),('WJ03','WP04',3),('WJ03','WP09',3),('WJ04','WH08',1),('WJ04','WH10',2),('WJ04','WP07',0),('WJ04','WP13',3),('WJ05','WH05',2),('WJ05','WH08',3),('WJ05','WP04',2),('WJ05','WP09',0),('WJ06','WH03',2),('WJ06','WH07',3),('WJ06','WP07',1),('WJ06','WP09',0),('WJ07','WH07',0),('WJ07','WP05',1),('WJ07','WP10',3),('WJ08','WH01',3),('WJ08','WH06',2),('WJ08','WP06',0),('WJ08','WP13',1),('WJ09','WH07',2),('WJ09','WH08',1),('WJ09','WP05',0),('WJ09','WP07',3),('WJ10','WH01',2),('WJ10','WH04',3),('WJ10','WH10',4),('WJ10','WP04',0),('WJ10','WP11',1),('WJ11','WH02',0),('WJ11','WH08',3),('WJ11','WP03',2),('WJ11','WP09',0),('WJ12','WH02',1),('WJ12','WH03',3),('WJ12','WP02',1),('WJ12','WP06',0),('WP01','WH12',1),('WP01','WJ01',0),('WP02','WJ12',1),('WP03','WJ01',3),('WP03','WJ11',2),('WP04','WH11',1),('WP04','WJ03',3),('WP04','WJ05',2),('WP04','WJ10',0),('WP05','WH11',2),('WP05','WJ07',1),('WP05','WJ09',0),('WP06','WJ08',0),('WP06','WJ12',0),('WP07','WJ04',0),('WP07','WJ06',1),('WP07','WJ09',3),('WP09','WJ03',3),('WP09','WJ05',0),('WP09','WJ06',0),('WP09','WJ11',0),('WP10','WJ02',0),('WP10','WJ07',3),('WP11','WH12',0),('WP11','WJ02',2),('WP11','WJ10',1),('WP13','WJ04',3),('WP13','WJ08',1),('WS01','WH11',0),('WS02','WT09',0),('WS04','WH11',3),('WS07','WH12',1),('WS07','WT09',3),('Ws10','WH12',0),('Ws10','WT08',1),('WS12','WT08',2),('WSH06','WT08',0),('WSH09','WT09',1),('WSH10','WT09',2),('WSH11','WT08',0),('WT08','Ws10',1),('WT08','WS12',2),('WT08','WSH06',0),('WT08','WSH11',0),('WT09','WS02',0),('WT09','WS07',3),('WT09','WSH09',1),('WT09','WSH10',2); /*!40000 ALTER TABLE `g5_shop_item_relation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_item_stocksms` -- DROP TABLE IF EXISTS `g5_shop_item_stocksms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_item_stocksms` ( `ss_id` int(11) NOT NULL AUTO_INCREMENT, `it_id` varchar(20) NOT NULL DEFAULT '', `ss_hp` varchar(255) NOT NULL DEFAULT '', `ss_send` tinyint(4) NOT NULL DEFAULT 0, `ss_send_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ss_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ss_ip` varchar(25) NOT NULL DEFAULT '', PRIMARY KEY (`ss_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_item_stocksms` -- LOCK TABLES `g5_shop_item_stocksms` WRITE; /*!40000 ALTER TABLE `g5_shop_item_stocksms` DISABLE KEYS */; INSERT INTO `g5_shop_item_stocksms` VALUES (1,'24-MG01','010-2345-3456',0,'0000-00-00 00:00:00','2020-12-24 11:11:39','127.0.0.1'); /*!40000 ALTER TABLE `g5_shop_item_stocksms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_item_use` -- DROP TABLE IF EXISTS `g5_shop_item_use`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_item_use` ( `is_id` int(11) NOT NULL AUTO_INCREMENT, `it_id` varchar(20) NOT NULL DEFAULT '0', `mb_id` varchar(255) NOT NULL DEFAULT '', `is_name` varchar(255) NOT NULL DEFAULT '', `is_password` varchar(255) NOT NULL DEFAULT '', `is_score` tinyint(4) NOT NULL DEFAULT 0, `is_subject` varchar(255) NOT NULL DEFAULT '', `is_content` text NOT NULL, `is_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `is_ip` varchar(25) NOT NULL DEFAULT '', `is_confirm` tinyint(4) NOT NULL DEFAULT 0, `is_reply_subject` varchar(255) NOT NULL DEFAULT '', `is_reply_content` text NOT NULL, `is_reply_name` varchar(25) NOT NULL DEFAULT '', PRIMARY KEY (`is_id`), KEY `index1` (`it_id`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_item_use` -- LOCK TABLES `g5_shop_item_use` WRITE; /*!40000 ALTER TABLE `g5_shop_item_use` DISABLE KEYS */; INSERT INTO `g5_shop_item_use` VALUES (1,'WJ10','admin','최고관리자','sha256:12000:Tmeyan7ZTcfdae6QHHyjZd2hZ5nPfiko:5axU4cOtxexqvE2N03bjLNt1rLAMSVum',3,'Great colors!','

I\'m into the colors cause they\'re great for night skiing-but I overheated really fast in this jacket 

','2020-12-20 11:26:14','127.0.0.1',1,'','','최고관리자'),(2,'WJ06','admin','최고관리자','sha256:12000:Tmeyan7ZTcfdae6QHHyjZd2hZ5nPfiko:5axU4cOtxexqvE2N03bjLNt1rLAMSVum',3,'REALLY lightweight.','

OK this jacket is REALLY lightweight. But if it\'s really cold, you have to wear it with baselayers or you\'ll freeze. It\'s a good buy, but be prepared! 

','2020-12-22 23:03:10','127.0.0.1',1,'','',''),(3,'WJ06','admin','최고관리자','sha256:12000:Tmeyan7ZTcfdae6QHHyjZd2hZ5nPfiko:5axU4cOtxexqvE2N03bjLNt1rLAMSVum',5,'Nice for skiing','

Looks good and feels good. It\'s nice for skiing because it blocks the wind and keeps you warm, but doesn\'t get too hot after you start sweating. 

','2020-12-22 23:03:38','127.0.0.1',1,'','',''),(4,'WJ06','admin','최고관리자','sha256:12000:Tmeyan7ZTcfdae6QHHyjZd2hZ5nPfiko:5axU4cOtxexqvE2N03bjLNt1rLAMSVum',5,'Most comfortable jacket','

I have never worn such a comfortable jacket!!! It\'s really thin and moves well with your body, I have no idea how it manages to keep you so warm. And if you\'ll be in really cold weather, you can easily add some extra layers underneath and still be comfortable. 

','2020-12-22 23:04:02','127.0.0.1',1,'','',''),(5,'WJ11','admin','최고관리자','sha256:12000:Tmeyan7ZTcfdae6QHHyjZd2hZ5nPfiko:5axU4cOtxexqvE2N03bjLNt1rLAMSVum',5,'Perfect, perfect, perfect in every way.','

Perfect, perfect, perfect in every way. I love the quilting and it keeps me toasty warm. 

','2020-12-22 23:05:47','127.0.0.1',1,'','',''),(6,'WJ11','admin','최고관리자','sha256:12000:Tmeyan7ZTcfdae6QHHyjZd2hZ5nPfiko:5axU4cOtxexqvE2N03bjLNt1rLAMSVum',3,'Not for cold weather','

This really doesn\'t deliver on the insulating part. I can\'t say I would throw this on in really chilly temperatures-need a coat. 

','2020-12-22 23:06:06','127.0.0.1',1,'','',''),(7,'WJ11','admin','최고관리자','sha256:12000:Tmeyan7ZTcfdae6QHHyjZd2hZ5nPfiko:5axU4cOtxexqvE2N03bjLNt1rLAMSVum',5,'This is the most dependable piece I own.','

This is the most dependable piece I own. You\'ll rarely me without this on. (except in the summer) 

','2020-12-22 23:06:24','127.0.0.1',1,'','',''),(8,'WJ04','admin','최고관리자','sha256:12000:Tmeyan7ZTcfdae6QHHyjZd2hZ5nPfiko:5axU4cOtxexqvE2N03bjLNt1rLAMSVum',4,'Great for hiking and camping','

Great hoodie for hiking and camping in the fall. I really wish the pockets were bigger, though, I can\'t get my hands in them when I\'m wearing gloves. 

','2020-12-22 23:09:23','127.0.0.1',1,'','',''),(9,'WJ04','admin','최고관리자','sha256:12000:Tmeyan7ZTcfdae6QHHyjZd2hZ5nPfiko:5axU4cOtxexqvE2N03bjLNt1rLAMSVum',5,'Fleece inside, sweater outside','

I love wearing fleece, but I hate how it pills and picks up fluff and cat hair. This hoodie is perfect, because it\'s a fleece on the inside and a sweater on the outside. I wear it around the house all the time in the winter. 

','2020-12-22 23:09:44','127.0.0.1',1,'','',''),(10,'WJ10','admin','최고관리자','sha256:12000:Tmeyan7ZTcfdae6QHHyjZd2hZ5nPfiko:5axU4cOtxexqvE2N03bjLNt1rLAMSVum',3,'Overheated','

I agree with that other reviewer. I get very overheated while wearing this jacket while shoveling snow. 

','2020-12-22 23:12:51','127.0.0.1',1,'','',''),(11,'WJ10','admin','최고관리자','sha256:12000:Tmeyan7ZTcfdae6QHHyjZd2hZ5nPfiko:5axU4cOtxexqvE2N03bjLNt1rLAMSVum',3,'Rain proof?','

I don\'t know if this jacket would be good for a whole day outside in the snow. It says waterproof but mine got pretty soaked one day when it was raining. 

','2020-12-22 23:13:13','127.0.0.1',1,'','',''),(12,'WJ09','admin','최고관리자','sha256:12000:Tmeyan7ZTcfdae6QHHyjZd2hZ5nPfiko:5axU4cOtxexqvE2N03bjLNt1rLAMSVum',5,'Everyone loves this jacket on me','

I got this jacket for tennis practice since its in my schools color and everyone on the team loves it!! 

','2020-12-22 23:15:41','127.0.0.1',1,'','',''),(13,'WJ09','admin','최고관리자','sha256:12000:Tmeyan7ZTcfdae6QHHyjZd2hZ5nPfiko:5axU4cOtxexqvE2N03bjLNt1rLAMSVum',4,'Big back pocket','

my fave part is the back pocket. I needed a place to keep my cell phone safe when I run 

','2020-12-22 23:16:04','127.0.0.1',1,'','',''),(14,'WJ09','admin','최고관리자','sha256:12000:Tmeyan7ZTcfdae6QHHyjZd2hZ5nPfiko:5axU4cOtxexqvE2N03bjLNt1rLAMSVum',4,'The actual color is brighter','

The actual color is brighter than it looks in the photo, but thats why I like it for jogging in the neighborhood at night 

','2020-12-22 23:16:30','127.0.0.1',1,'','',''); /*!40000 ALTER TABLE `g5_shop_item_use` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_order` -- DROP TABLE IF EXISTS `g5_shop_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_order` ( `od_id` bigint(20) unsigned NOT NULL, `mb_id` varchar(255) NOT NULL DEFAULT '', `od_name` varchar(20) NOT NULL DEFAULT '', `od_email` varchar(100) NOT NULL DEFAULT '', `od_tel` varchar(20) NOT NULL DEFAULT '', `od_hp` varchar(20) NOT NULL DEFAULT '', `od_zip1` char(3) NOT NULL DEFAULT '', `od_zip2` char(3) NOT NULL DEFAULT '', `od_addr1` varchar(100) NOT NULL DEFAULT '', `od_addr2` varchar(100) NOT NULL DEFAULT '', `od_addr3` varchar(255) NOT NULL DEFAULT '', `od_addr_jibeon` varchar(255) NOT NULL DEFAULT '', `od_deposit_name` varchar(20) NOT NULL DEFAULT '', `od_b_name` varchar(20) NOT NULL DEFAULT '', `od_b_tel` varchar(20) NOT NULL DEFAULT '', `od_b_hp` varchar(20) NOT NULL DEFAULT '', `od_b_zip1` char(3) NOT NULL DEFAULT '', `od_b_zip2` char(3) NOT NULL DEFAULT '', `od_b_addr1` varchar(100) NOT NULL DEFAULT '', `od_b_addr2` varchar(100) NOT NULL DEFAULT '', `od_b_addr3` varchar(255) NOT NULL DEFAULT '', `od_b_addr_jibeon` varchar(255) NOT NULL DEFAULT '', `od_memo` text NOT NULL, `od_cart_count` int(11) NOT NULL DEFAULT 0, `od_cart_price` int(11) NOT NULL DEFAULT 0, `od_cart_coupon` int(11) NOT NULL DEFAULT 0, `od_send_cost` int(11) NOT NULL DEFAULT 0, `od_send_cost2` int(11) NOT NULL DEFAULT 0, `od_send_coupon` int(11) NOT NULL DEFAULT 0, `od_receipt_price` int(11) NOT NULL DEFAULT 0, `od_cancel_price` int(11) NOT NULL DEFAULT 0, `od_receipt_point` int(11) NOT NULL DEFAULT 0, `od_refund_price` int(11) NOT NULL DEFAULT 0, `od_bank_account` varchar(255) NOT NULL DEFAULT '', `od_receipt_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `od_coupon` int(11) NOT NULL DEFAULT 0, `od_misu` int(11) NOT NULL DEFAULT 0, `od_shop_memo` text NOT NULL, `od_mod_history` text NOT NULL, `od_status` varchar(255) NOT NULL DEFAULT '', `od_hope_date` date NOT NULL DEFAULT '0000-00-00', `od_settle_case` varchar(255) NOT NULL DEFAULT '', `od_other_pay_type` varchar(100) NOT NULL DEFAULT '', `od_test` tinyint(4) NOT NULL DEFAULT 0, `od_mobile` tinyint(4) NOT NULL DEFAULT 0, `od_pg` varchar(255) NOT NULL DEFAULT '', `od_tno` varchar(255) NOT NULL DEFAULT '', `od_app_no` varchar(20) NOT NULL DEFAULT '', `od_escrow` tinyint(4) NOT NULL DEFAULT 0, `od_casseqno` varchar(255) NOT NULL DEFAULT '', `od_tax_flag` tinyint(4) NOT NULL DEFAULT 0, `od_tax_mny` int(11) NOT NULL DEFAULT 0, `od_vat_mny` int(11) NOT NULL DEFAULT 0, `od_free_mny` int(11) NOT NULL DEFAULT 0, `od_delivery_company` varchar(255) NOT NULL DEFAULT '0', `od_invoice` varchar(255) NOT NULL DEFAULT '', `od_invoice_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `od_cash` tinyint(4) NOT NULL, `od_cash_no` varchar(255) NOT NULL, `od_cash_info` text NOT NULL, `od_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `od_pwd` varchar(255) NOT NULL DEFAULT '', `od_ip` varchar(25) NOT NULL DEFAULT '', PRIMARY KEY (`od_id`), KEY `index2` (`mb_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_order` -- LOCK TABLES `g5_shop_order` WRITE; /*!40000 ALTER TABLE `g5_shop_order` DISABLE KEYS */; INSERT INTO `g5_shop_order` VALUES (2020122410450822,'test01','테스트01','test01@gnuboard.test','010-1234-1234','','311','30','test','','','','테스트01','테스트01','010-1234-1234','','311','30','test','','','','',1,32000,0,2000,0,0,0,0,0,0,'OO은행 12345-67-89012 예금주명','0000-00-00 00:00:00',0,34000,'','','주문','0000-00-00','무통장','',1,0,'kcp','','',0,'',0,30909,3091,0,'0','','0000-00-00 00:00:00',0,'','','2020-12-24 10:45:51','sha256:12000:R8B+frqqjDW3ng1H5ZJaYv1DjhCY4oJw:ctVGuOjoJmNlQaCSCsnzAX/s39uiAinv','127.0.0.1'),(2020122410472731,'test02','테스트02','test02@gnuboard.test','010-1234-2345','','311','20','test','','','','테스트02','테스트02','010-1234-2345','','311','20','test','','','','',2,173000,0,0,0,0,0,0,0,0,'OO은행 12345-67-89012 예금주명','0000-00-00 00:00:00',0,173000,'','','주문','0000-00-00','무통장','',1,0,'kcp','','',0,'',0,157273,15727,0,'0','','0000-00-00 00:00:00',0,'','','2020-12-24 10:47:50','sha256:12000:JVXywdnWPaXb4MfjZ1Ssqc7wXS1x6Rdg:C9FLkkNgvRStSdccGVbbeVc6aA9cV4DY','127.0.0.1'); /*!40000 ALTER TABLE `g5_shop_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_order_address` -- DROP TABLE IF EXISTS `g5_shop_order_address`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_order_address` ( `ad_id` int(11) NOT NULL AUTO_INCREMENT, `mb_id` varchar(255) NOT NULL DEFAULT '', `ad_subject` varchar(255) NOT NULL DEFAULT '', `ad_default` tinyint(4) NOT NULL DEFAULT 0, `ad_name` varchar(255) NOT NULL DEFAULT '', `ad_tel` varchar(255) NOT NULL DEFAULT '', `ad_hp` varchar(255) NOT NULL DEFAULT '', `ad_zip1` char(3) NOT NULL DEFAULT '', `ad_zip2` char(3) NOT NULL DEFAULT '', `ad_addr1` varchar(255) NOT NULL DEFAULT '', `ad_addr2` varchar(255) NOT NULL DEFAULT '', `ad_addr3` varchar(255) NOT NULL DEFAULT '', `ad_jibeon` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`ad_id`), KEY `mb_id` (`mb_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_order_address` -- LOCK TABLES `g5_shop_order_address` WRITE; /*!40000 ALTER TABLE `g5_shop_order_address` DISABLE KEYS */; INSERT INTO `g5_shop_order_address` VALUES (1,'test01','',0,'테스트01','010-1234-1234','','311','30','test','','',''),(2,'test02','',0,'테스트02','010-1234-2345','','311','20','test','','',''); /*!40000 ALTER TABLE `g5_shop_order_address` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_order_data` -- DROP TABLE IF EXISTS `g5_shop_order_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_order_data` ( `od_id` bigint(20) unsigned NOT NULL, `cart_id` bigint(20) unsigned NOT NULL, `mb_id` varchar(20) NOT NULL DEFAULT '', `dt_pg` varchar(255) NOT NULL DEFAULT '', `dt_data` text NOT NULL, `dt_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', KEY `od_id` (`od_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_order_data` -- LOCK TABLES `g5_shop_order_data` WRITE; /*!40000 ALTER TABLE `g5_shop_order_data` DISABLE KEYS */; /*!40000 ALTER TABLE `g5_shop_order_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_order_delete` -- DROP TABLE IF EXISTS `g5_shop_order_delete`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_order_delete` ( `de_id` int(11) NOT NULL AUTO_INCREMENT, `de_key` varchar(255) NOT NULL DEFAULT '', `de_data` longtext NOT NULL, `mb_id` varchar(20) NOT NULL DEFAULT '', `de_ip` varchar(255) NOT NULL DEFAULT '', `de_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`de_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_order_delete` -- LOCK TABLES `g5_shop_order_delete` WRITE; /*!40000 ALTER TABLE `g5_shop_order_delete` DISABLE KEYS */; /*!40000 ALTER TABLE `g5_shop_order_delete` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_order_post_log` -- DROP TABLE IF EXISTS `g5_shop_order_post_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_order_post_log` ( `oid` bigint(20) unsigned NOT NULL, `mb_id` varchar(255) NOT NULL DEFAULT '', `post_data` text NOT NULL, `ol_code` varchar(255) NOT NULL DEFAULT '', `ol_msg` varchar(255) NOT NULL DEFAULT '', `ol_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ol_ip` varchar(25) NOT NULL DEFAULT '', PRIMARY KEY (`oid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_order_post_log` -- LOCK TABLES `g5_shop_order_post_log` WRITE; /*!40000 ALTER TABLE `g5_shop_order_post_log` DISABLE KEYS */; /*!40000 ALTER TABLE `g5_shop_order_post_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_personalpay` -- DROP TABLE IF EXISTS `g5_shop_personalpay`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_personalpay` ( `pp_id` bigint(20) unsigned NOT NULL, `od_id` bigint(20) unsigned NOT NULL, `pp_name` varchar(255) NOT NULL DEFAULT '', `pp_email` varchar(255) NOT NULL DEFAULT '', `pp_hp` varchar(255) NOT NULL DEFAULT '', `pp_content` text NOT NULL, `pp_use` tinyint(4) NOT NULL DEFAULT 0, `pp_price` int(11) NOT NULL DEFAULT 0, `pp_pg` varchar(255) NOT NULL DEFAULT '', `pp_tno` varchar(255) NOT NULL DEFAULT '', `pp_app_no` varchar(20) NOT NULL DEFAULT '', `pp_casseqno` varchar(255) NOT NULL DEFAULT '', `pp_receipt_price` int(11) NOT NULL DEFAULT 0, `pp_settle_case` varchar(255) NOT NULL DEFAULT '', `pp_bank_account` varchar(255) NOT NULL DEFAULT '', `pp_deposit_name` varchar(255) NOT NULL DEFAULT '', `pp_receipt_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `pp_receipt_ip` varchar(255) NOT NULL DEFAULT '', `pp_shop_memo` text NOT NULL, `pp_cash` tinyint(4) NOT NULL DEFAULT 0, `pp_cash_no` varchar(255) NOT NULL DEFAULT '', `pp_cash_info` text NOT NULL, `pp_ip` varchar(255) NOT NULL DEFAULT '', `pp_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`pp_id`), KEY `od_id` (`od_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_personalpay` -- LOCK TABLES `g5_shop_personalpay` WRITE; /*!40000 ALTER TABLE `g5_shop_personalpay` DISABLE KEYS */; /*!40000 ALTER TABLE `g5_shop_personalpay` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_sendcost` -- DROP TABLE IF EXISTS `g5_shop_sendcost`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_sendcost` ( `sc_id` int(11) NOT NULL AUTO_INCREMENT, `sc_name` varchar(255) NOT NULL DEFAULT '', `sc_zip1` varchar(10) NOT NULL DEFAULT '', `sc_zip2` varchar(10) NOT NULL DEFAULT '', `sc_price` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`sc_id`), KEY `sc_zip1` (`sc_zip1`), KEY `sc_zip2` (`sc_zip2`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_sendcost` -- LOCK TABLES `g5_shop_sendcost` WRITE; /*!40000 ALTER TABLE `g5_shop_sendcost` DISABLE KEYS */; INSERT INTO `g5_shop_sendcost` VALUES (1,'울릉도','40209','40209',5000); /*!40000 ALTER TABLE `g5_shop_sendcost` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_shop_wish` -- DROP TABLE IF EXISTS `g5_shop_wish`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_shop_wish` ( `wi_id` int(11) NOT NULL AUTO_INCREMENT, `mb_id` varchar(255) NOT NULL DEFAULT '', `it_id` varchar(20) NOT NULL DEFAULT '0', `wi_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `wi_ip` varchar(25) NOT NULL DEFAULT '', PRIMARY KEY (`wi_id`), KEY `index1` (`mb_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_shop_wish` -- LOCK TABLES `g5_shop_wish` WRITE; /*!40000 ALTER TABLE `g5_shop_wish` DISABLE KEYS */; INSERT INTO `g5_shop_wish` VALUES (1,'admin','MS10','2020-12-23 09:35:02','127.0.0.1'),(2,'admin','MSH03','2020-12-23 09:35:23','127.0.0.1'); /*!40000 ALTER TABLE `g5_shop_wish` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_uniqid` -- DROP TABLE IF EXISTS `g5_uniqid`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_uniqid` ( `uq_id` bigint(20) unsigned NOT NULL, `uq_ip` varchar(255) NOT NULL, PRIMARY KEY (`uq_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_uniqid` -- LOCK TABLES `g5_uniqid` WRITE; /*!40000 ALTER TABLE `g5_uniqid` DISABLE KEYS */; INSERT INTO `g5_uniqid` VALUES (2020112212395230,'127.0.0.1'),(2020121912481042,'127.0.0.1'),(2020122010202328,'127.0.0.1'),(2020122215223978,'127.0.0.1'),(2020122314235328,'127.0.0.1'),(2020122314241188,'127.0.0.1'),(2020122314253638,'127.0.0.1'),(2020122314261643,'127.0.0.1'),(2020122314273874,'127.0.0.1'),(2020122314283420,'127.0.0.1'),(2020122314293393,'127.0.0.1'),(2020122314301908,'127.0.0.1'),(2020122314305319,'127.0.0.1'),(2020122314320780,'127.0.0.1'),(2020122314325281,'127.0.0.1'),(2020122314332658,'127.0.0.1'),(2020122314340091,'127.0.0.1'),(2020122314342272,'127.0.0.1'),(2020122314345742,'127.0.0.1'),(2020122314353361,'127.0.0.1'),(2020122314362619,'127.0.0.1'),(2020122314372518,'127.0.0.1'),(2020122314375945,'127.0.0.1'),(2020122316230366,'127.0.0.1'),(2020122316231843,'127.0.0.1'),(2020122316232430,'127.0.0.1'),(2020122316262924,'127.0.0.1'),(2020122316273710,'127.0.0.1'),(2020122316293353,'127.0.0.1'),(2020122316294473,'127.0.0.1'),(2020122316294887,'127.0.0.1'),(2020122316313176,'127.0.0.1'),(2020122316323909,'127.0.0.1'),(2020122316332068,'127.0.0.1'),(2020122316343642,'127.0.0.1'),(2020122316411966,'127.0.0.1'),(2020122316420838,'127.0.0.1'),(2020122316465957,'127.0.0.1'),(2020122316491767,'127.0.0.1'),(2020122316510750,'127.0.0.1'),(2020122316515562,'127.0.0.1'),(2020122316521961,'127.0.0.1'),(2020122317284398,'127.0.0.1'),(2020122317304482,'127.0.0.1'),(2020122317305226,'127.0.0.1'),(2020122317320123,'127.0.0.1'),(2020122317350746,'127.0.0.1'),(2020122317363436,'127.0.0.1'),(2020122317401043,'127.0.0.1'),(2020122318012270,'127.0.0.1'),(2020122318012755,'127.0.0.1'),(2020122318024762,'127.0.0.1'),(2020122318043668,'127.0.0.1'),(2020122318050474,'127.0.0.1'),(2020122318091035,'127.0.0.1'),(2020122318091586,'127.0.0.1'),(2020122318144058,'127.0.0.1'),(2020122318151615,'127.0.0.1'),(2020122318151953,'127.0.0.1'),(2020122318160709,'127.0.0.1'),(2020122318163339,'127.0.0.1'),(2020122318170653,'127.0.0.1'),(2020122318182218,'127.0.0.1'),(2020122318190729,'127.0.0.1'),(2020122323225458,'127.0.0.1'),(2020122323232907,'127.0.0.1'),(2020122323252497,'127.0.0.1'),(2020122323253038,'127.0.0.1'),(2020122323264686,'127.0.0.1'),(2020122323275833,'127.0.0.1'),(2020122323295245,'127.0.0.1'),(2020122323300876,'127.0.0.1'),(2020122323305623,'127.0.0.1'),(2020122323320238,'127.0.0.1'),(2020122323320969,'127.0.0.1'),(2020122323342013,'127.0.0.1'),(2020122323385650,'127.0.0.1'),(2020122323403276,'127.0.0.1'),(2020122323412969,'127.0.0.1'),(2020122323442518,'127.0.0.1'),(2020122323461295,'127.0.0.1'),(2020122323461671,'127.0.0.1'),(2020122323470132,'127.0.0.1'),(2020122409485373,'127.0.0.1'),(2020122409515334,'127.0.0.1'),(2020122409523482,'127.0.0.1'),(2020122409555925,'127.0.0.1'),(2020122409571806,'127.0.0.1'),(2020122409573476,'127.0.0.1'),(2020122409590253,'127.0.0.1'),(2020122410004638,'127.0.0.1'),(2020122410035781,'127.0.0.1'),(2020122410044652,'127.0.0.1'),(2020122410070628,'127.0.0.1'),(2020122410144474,'127.0.0.1'),(2020122410175082,'127.0.0.1'),(2020122410242410,'127.0.0.1'),(2020122410244123,'127.0.0.1'),(2020122410295981,'127.0.0.1'),(2020122410302045,'127.0.0.1'),(2020122410303816,'127.0.0.1'),(2020122410311741,'127.0.0.1'),(2020122410444695,'127.0.0.1'),(2020122410450808,'127.0.0.1'),(2020122410450822,'127.0.0.1'),(2020122410464506,'127.0.0.1'),(2020122410472731,'127.0.0.1'),(2020122410491974,'127.0.0.1'),(2020122411085368,'127.0.0.1'),(2022061809321310,'127.0.0.1'),(2022061809572449,'127.0.0.1'),(2022061810294829,'127.0.0.1'),(2022082109521638,'127.0.0.1'); /*!40000 ALTER TABLE `g5_uniqid` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_visit` -- DROP TABLE IF EXISTS `g5_visit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_visit` ( `vi_id` int(11) NOT NULL DEFAULT 0, `vi_ip` varchar(100) NOT NULL DEFAULT '', `vi_date` date NOT NULL DEFAULT '0000-00-00', `vi_time` time NOT NULL DEFAULT '00:00:00', `vi_referer` text NOT NULL, `vi_agent` varchar(200) NOT NULL DEFAULT '', `vi_browser` varchar(255) NOT NULL DEFAULT '', `vi_os` varchar(255) NOT NULL DEFAULT '', `vi_device` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`vi_id`), UNIQUE KEY `index1` (`vi_ip`,`vi_date`), KEY `index2` (`vi_date`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_visit` -- LOCK TABLES `g5_visit` WRITE; /*!40000 ALTER TABLE `g5_visit` DISABLE KEYS */; INSERT INTO `g5_visit` VALUES (1,'127.0.0.1','2022-08-21','09:51:41','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36','','',''); /*!40000 ALTER TABLE `g5_visit` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_visit_sum` -- DROP TABLE IF EXISTS `g5_visit_sum`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_visit_sum` ( `vs_date` date NOT NULL DEFAULT '0000-00-00', `vs_count` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`vs_date`), KEY `index1` (`vs_count`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_visit_sum` -- LOCK TABLES `g5_visit_sum` WRITE; /*!40000 ALTER TABLE `g5_visit_sum` DISABLE KEYS */; INSERT INTO `g5_visit_sum` VALUES ('2020-11-22',1),('2020-12-19',1),('2020-12-20',1),('2020-12-21',1),('2020-12-22',1),('2020-12-23',1),('2022-08-21',1); /*!40000 ALTER TABLE `g5_visit_sum` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_write_free` -- DROP TABLE IF EXISTS `g5_write_free`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_write_free` ( `wr_id` int(11) NOT NULL AUTO_INCREMENT, `wr_num` int(11) NOT NULL DEFAULT 0, `wr_reply` varchar(10) NOT NULL, `wr_parent` int(11) NOT NULL DEFAULT 0, `wr_is_comment` tinyint(4) NOT NULL DEFAULT 0, `wr_comment` int(11) NOT NULL DEFAULT 0, `wr_comment_reply` varchar(5) NOT NULL, `ca_name` varchar(255) NOT NULL, `wr_option` set('html1','html2','secret','mail') NOT NULL, `wr_subject` varchar(255) NOT NULL, `wr_content` text NOT NULL, `wr_seo_title` varchar(255) NOT NULL DEFAULT '', `wr_link1` text NOT NULL, `wr_link2` text NOT NULL, `wr_link1_hit` int(11) NOT NULL DEFAULT 0, `wr_link2_hit` int(11) NOT NULL DEFAULT 0, `wr_hit` int(11) NOT NULL DEFAULT 0, `wr_good` int(11) NOT NULL DEFAULT 0, `wr_nogood` int(11) NOT NULL DEFAULT 0, `mb_id` varchar(20) NOT NULL, `wr_password` varchar(255) NOT NULL, `wr_name` varchar(255) NOT NULL, `wr_email` varchar(255) NOT NULL, `wr_homepage` varchar(255) NOT NULL, `wr_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `wr_file` tinyint(4) NOT NULL DEFAULT 0, `wr_last` varchar(19) NOT NULL, `wr_ip` varchar(255) NOT NULL, `wr_facebook_user` varchar(255) NOT NULL, `wr_twitter_user` varchar(255) NOT NULL, `wr_1` varchar(255) NOT NULL, `wr_2` varchar(255) NOT NULL, `wr_3` varchar(255) NOT NULL, `wr_4` varchar(255) NOT NULL, `wr_5` varchar(255) NOT NULL, `wr_6` varchar(255) NOT NULL, `wr_7` varchar(255) NOT NULL, `wr_8` varchar(255) NOT NULL, `wr_9` varchar(255) NOT NULL, `wr_10` varchar(255) NOT NULL, PRIMARY KEY (`wr_id`), KEY `wr_seo_title` (`wr_seo_title`), KEY `wr_num_reply_parent` (`wr_num`,`wr_reply`,`wr_parent`), KEY `wr_is_comment` (`wr_is_comment`,`wr_id`) ) ENGINE=InnoDB AUTO_INCREMENT=78 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_write_free` -- LOCK TABLES `g5_write_free` WRITE; /*!40000 ALTER TABLE `g5_write_free` DISABLE KEYS */; INSERT INTO `g5_write_free` VALUES (1,-1,'',1,0,8,'','','html1','flask(플라스크) 서평 이벤트에 당첨되었어요','

점프 투 파이썬의 저자님이 후속 책을 쓰셨고요

https://wikidocs.net/book/4542

위 링크에서도 책과 동일한 내용이 있습니다.

 

 

얼마전 @박스2 님께서도 

구입하신 책입니다.

 

12월 14일 이후부터 읽기 가능할것 같습니다.

 

서평은 처음인데 

시작전에 인증글 남기고 갑니다.

 

안녕히 주무세요.


','flask플라스크-서평-이벤트에-당첨되었어요','https://wikidocs.net/book/4542','',0,0,6,0,0,'sundoforce','','선구자','sundoforce@gnuboard.test','','2020-12-23 16:24:23',0,'2020-12-23 16:29:14','127.0.0.1','','','','','','','','','','','',''),(2,-1,'',1,1,1,'','','','','와 추카','','','',0,0,0,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 16:25:45',0,'','127.0.0.1','','','','','','','','','','','',''),(3,-1,'',1,1,1,'A','','','','감사합니다.','','','',0,0,0,0,0,'sundoforce','','선구자','sundoforce@gnuboard.test','','2020-12-23 16:26:07',0,'','127.0.0.1','','','','','','','','','','','',''),(4,-1,'',1,1,2,'','','','','플라스크로 REST를 만들고 싶었는데.. 코로나 때문에..','','','',0,0,0,0,0,'magento','','마젠토','magento@gnuboard.test','','2020-12-23 16:26:57',0,'','127.0.0.1','','','','','','','','','','','',''),(5,-1,'',1,1,2,'A','','','','ㅠㅠ\r\n힘내셔요','','','',0,0,0,0,0,'sundoforce','','선구자','sundoforce@gnuboard.test','','2020-12-23 16:27:20',0,'','127.0.0.1','','','','','','','','','','','',''),(6,-1,'',1,1,3,'','','','','먹는 건가요?','','','',0,0,0,0,0,'rido','','Rido','rido@gnuboard.test','','2020-12-23 16:27:54',0,'','127.0.0.1','','','','','','','','','','','',''),(7,-1,'',1,1,3,'A','','','','ㅎㅎ 대전이신가요?ㅎ','','','',0,0,0,0,0,'sundoforce','','선구자','sundoforce@gnuboard.test','','2020-12-23 16:28:13',0,'','127.0.0.1','','','','','','','','','','','',''),(8,-1,'',1,1,3,'AA','','','','먹는거냐고 물었더니 왜 질문이 그쪽으로 ㅋㅋㅋ 대전입니다','','','',0,0,0,0,0,'rido','','Rido','rido@gnuboard.test','','2020-12-23 16:28:42',0,'','127.0.0.1','','','','','','','','','','','',''),(9,-1,'',1,1,3,'AAA','','','','그러시군요 ^^;;\r\n코로나 끝나면 사무실 놀러갈게요','','','',0,0,0,0,0,'sundoforce','','선구자','sundoforce@gnuboard.test','','2020-12-23 16:29:14',0,'','127.0.0.1','','','','','','','','','','','',''),(10,-2,'',10,0,6,'','','html1','이렇게 1등도 되는군요','

정치/경제/사회 소모임이 일등을 했네요.

 

축하 드립니다.

 

랭킹 계산은 전체글수 + 글수 (동일인 제외)*300 + 댓글(동일인 제외)*100 입니다.

 

709 + 300*4 + 8*100 = 2709로 1위가 되었습니다.



 

','이렇게-1등도-되는군요','','',0,0,6,0,0,'magento','','마젠토','magento@gnuboard.test','','2020-12-23 16:30:34',0,'2020-12-23 16:34:10','127.0.0.1','','','','','','','','','','','',''),(11,-2,'',10,1,1,'','','','','ㅋㅋㅋㅋ 사이트가 어그로꾼도 좀 있어야 하고 좀 재미있기도 한 것 같고 내심 열이 받다가도 어차피 서로 갈 길만 가는 사람들이 나쁘지 않아도 보이고 그렇습니다.','','','',0,0,0,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 16:31:43',0,'','127.0.0.1','','','','','','','','','','','',''),(12,-2,'',10,1,1,'A','','','','이제는 보고 싶은 것만 보게 되네요.','','','',0,0,0,0,0,'magento','','마젠토','magento@gnuboard.test','','2020-12-23 16:31:57',0,'','127.0.0.1','','','','','','','','','','','',''),(13,-2,'',10,1,1,'AA','','','','저는 마젠토님만 봅니다?','','','',0,0,0,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 16:32:18',0,'','127.0.0.1','','','','','','','','','','','',''),(14,-2,'',10,1,1,'AAA','','','','두분 입흔 사랑하세요~♡','','','',0,0,0,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 16:32:56',0,'','127.0.0.1','','','','','','','','','','','',''),(15,-2,'',10,1,1,'AAAA','','','','저분이 저한테 소화제를 선물해 주셨는데 분홍색이었습니다.','','','',0,0,0,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 16:33:37',0,'','127.0.0.1','','','','','','','','','','','',''),(16,-2,'',10,1,1,'AAAAA','','','','핑크핑크로 먼저 고백 받으신거였군요. ㅋㅋㅋㅋㅋㅋ 이건 1도 부럽지 않습니닷!!!','','','',0,0,0,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 16:34:10',0,'','127.0.0.1','','','','','','','','','','','',''),(17,-3,'',17,0,23,'','','html1','친구가 냉동탑차를 하는데','

단톡방에서 맨날~

 

심심하다...놀러와라....

심심하다...놀러와라....

심심하다...놀러와라....

심심하다...놀러와라.... 했더니...


냉동 탑차 하는 서울 사는 친구 놈이 지나는 길에 들렀고 창문열면 바로 보일 곳에 있다 하며 창문 열어 보라고 하더라구요? 참고로 제 집은 4층입니다.(엘베없음...주인눔아!!!!)


그래서 거실 창을 열고 살짝 봤더니 바로 앞에 탑차 주차해 놓고 선 채로

 

\"됐냐!!!\"

 

이러더니 다시 차를 타고 가버립니다???


생긴 건 개 껍데기 눌렀다가 으깬 것 같이 생긴 놈이 이른 새벽에 그러니 이웃에게 창피하기도 미쳤다 싶어 무섭기도하고 어처구니가 없어 얼이 털려 있습니다. 전화해서 먼저 웃으면 진다는 생각이 들어 오기로 참고는 있습니다만 아...이거 정말 묘하게 웃끼네요.


그놈도 저와 같은 생각으로 그대로 서울로 갔는지 전화가 없고~

전화나 받고 자려고 했더니 그냥 자야겠습니다.

 

','친구가-냉동탑차를-하는데','','',0,0,15,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 16:34:52',0,'2020-12-23 16:52:50','127.0.0.1','','','','','','','','','','','',''),(18,-3,'',17,1,1,'','','','','ㅎㅎㅎ 근처 납품건 잡혔을때부터 계획 세우고 키득키득 했을 친구분이 떠오르네요','','','',0,0,0,0,0,'onlygiddy','','쪼각조각','onlygiddy@gnuboard.test','','2020-12-23 16:40:21',0,'','127.0.0.1','','','','','','','','','','','',''),(19,-3,'',17,1,1,'A','','','','젊어서 같았으면 냅다 슬리퍼 벗어서 던졌는데 나이가 먹었는지 누가 황당하게 나오면 어버버...하게 되더라구요.','','','',0,0,0,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 16:40:42',0,'','127.0.0.1','','','','','','','','','','','',''),(20,-3,'',17,1,2,'','','','','ㅋㅋㅋㅋ 센스있네요','','','',0,0,0,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 16:41:35',0,'','127.0.0.1','','','','','','','','','','','',''),(21,-3,'',17,1,2,'A','','','','아직 장가도 가지 않는 멋있는 친구입니다.','','','',0,0,0,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 16:41:53',0,'','127.0.0.1','','','','','','','','','','','',''),(22,-3,'',17,1,3,'','','','','바쁘긴 하고, 시간은 없고, 친한 친구가 놀러는 오라고 하고 그러면 아마 저도 그랬을 것 같습니다.','','','',0,0,0,0,0,'magento','','마젠토','magento@gnuboard.test','','2020-12-23 16:42:18',0,'','127.0.0.1','','','','','','','','','','','',''),(23,-3,'',17,1,3,'A','','','','이상한게 원래 이쪽으로 전혀 다니지 않는 친구거든요. 그래서 집앞이라고 하길래 믿지도 않았습니다. 설마...하다가 엉겁결에 미친짓을 보니 웃음도 울음도 나오지가 않더라구요. 4살 상계동에 막 이사와서 부터 친구인데 하다하다 별 짓을 다 하더라구요.','','','',0,0,0,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 16:42:34',0,'','127.0.0.1','','','','','','','','','','','',''),(24,-3,'',17,1,4,'','','','','상황 생각하면 진짜 웃긴데요 ㅋㅋ','','','',0,0,0,0,0,'test02','','테스트02','test02@gnuboard.test','','2020-12-23 16:43:43',0,'','127.0.0.1','','','','','','','','','','','',''),(25,-3,'',17,1,4,'A','','','','저는 한 5분 멍을 때리다가 거실에서 방으로 들어 오니 웃끼더라구요. 다른 사람들이 한밤중에 미쳤다 그럴까 싶어 크게 웃지도 못 하고...','','','',0,0,0,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 16:43:56',0,'','127.0.0.1','','','','','','','','','','','',''),(26,-3,'',17,1,5,'','','','','유쾌한 친구, 좋네요. ^^','','','',0,0,0,0,0,'test03','','테스트03','test03@gnuboard.test','','2020-12-23 16:45:06',0,'','127.0.0.1','','','','','','','','','','','',''),(27,-3,'',17,1,5,'A','','','','친구는 딱 10년 정도가 좋은 듯 합니다. 애가 기괴해지네요.','','','',0,0,0,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 16:45:20',0,'','127.0.0.1','','','','','','','','','','','',''),(28,-3,'',17,1,6,'','','','','웃을일 없을때.. 친구가 웃게 만들면 기분좋을거 같습니다. 갑자기 친구가 그립네요..ㅎ','','','',0,0,0,0,0,'test04','','테스트04','test04@gnuboard.test','','2020-12-23 16:46:18',0,'','127.0.0.1','','','','','','','','','','','',''),(29,-3,'',17,1,6,'A','','','','제가 4살에 상계동에 이사와서 지금까지 살아왔는데 20~30대 때는 서로 떠나려고 스탠바이 상태로 있다 사라지더니 지금은 되려 못 들어 와서 난리더라구요. 저는 하는 일이 되지 않아 줄창 노원구에서 살았는데 그러다 보니 친구들이 많습니다. 뭐...친구 많아 봐야 진짜 친한 친구는 하나, 둘 이고 그런 거죠.','','','',0,0,0,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 16:46:33',0,'','127.0.0.1','','','','','','','','','','','',''),(30,-3,'',17,1,7,'','','','','ㅋㅋㅋ','','','',0,0,0,0,0,'smilezon','','해피아이','smilezon@gnuboard.test','','2020-12-23 16:47:12',0,'','127.0.0.1','','','','','','','','','','','',''),(31,-3,'',17,1,7,'A','','','','햐...젊으시니까 웃음도 스마트하십니다.','','','',0,0,0,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 16:47:32',0,'','127.0.0.1','','','','','','','','','','','',''),(32,-3,'',17,1,8,'','','','','좋은 친구분이네요. ^^','','','',0,0,0,0,0,'test05','','테스트05','test05@gnuboard.test','','2020-12-23 16:48:46',0,'','127.0.0.1','','','','','','','','','','','',''),(33,-3,'',17,1,8,'A','','','','제가 아마 행여나 그럴리는 없겠지만 절대 없겠지만 사람을 죽이고서 숨겨달라고 하면 우린 서로 숨겨주기 굳은 범죄모이를 했던 친구입니다.ㅎㅎㅎ 다른 것도 많은데 하필 사람을 죽여 쫒긴다는 가정하에 그런 약속을 했는지 모르겠습니다. 홍콩영화 영향 때문일 수도....','','','',0,0,0,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 16:49:01',0,'','127.0.0.1','','','','','','','','','','','',''),(34,-3,'',17,1,9,'','','','','ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ','','','',0,0,0,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 16:49:42',0,'','127.0.0.1','','','','','','','','','','','',''),(35,-3,'',17,1,9,'A','','','','저 위에 해피아이님 웃음 보세요. 젊으시니 짧습니다. 웃음 길이를 보아서는 삼십대...훨씬~ 나나티님 생각해서 연세 이야기는 여기까지 하겠습니다.','','','',0,0,0,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 16:50:25',0,'','127.0.0.1','','','','','','','','','','','',''),(36,-3,'',17,1,9,'AA','','','','위에 계신 분은 기력이 딸리셔서 길게 못 웃으시는 걸로...','','','',0,0,0,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 16:50:46',0,'','127.0.0.1','','','','','','','','','','','',''),(37,-3,'',17,1,10,'','','','','그런 친구가 있다니 부럽네요...전 친구가 없.......','','','',0,0,0,0,0,'test02','','테스트02','test02@gnuboard.test','','2020-12-23 16:51:22',0,'','127.0.0.1','','','','','','','','','','','',''),(38,-3,'',17,1,10,'A','','','','나이들면 진정한 친구가 생기지 않는다들 하는데 그러지도 않습니다. 가슴 살짝 보여 주었는데 상대도 열면 그렇게 깊어져 가면 친구죠. 매일 만난다고 해도 그게 친구가 아닐 수도 있다 보구요. 인간은...독고다이죠?','','','',0,0,0,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 16:51:34',0,'','127.0.0.1','','','','','','','','','','','',''),(39,-3,'',17,1,11,'','','','','ㅋ ㅎㅎㅎ','','','',0,0,0,0,0,'test03','','테스트03','test03@gnuboard.test','','2020-12-23 16:52:12',0,'','127.0.0.1','','','','','','','','','','','',''),(40,-3,'',17,1,12,'','','','','남녀만 설정되면 로맨틱할 이야기네요 ㅋㅋㅋㅋㅋㅋ','','','',0,0,0,0,0,'test04','','테스트04','test04@gnuboard.test','','2020-12-23 16:52:50',0,'','127.0.0.1','','','','','','','','','','','',''),(41,-4,'',41,0,6,'','','html1','마젠토님..그나저나..','

이놈은 어디에 보관하나요???

아직 안열어봐서..ㅋ

실온? 냉장고? 냉동칸??


 

','마젠토님그나저나','','',0,0,5,0,0,'smilezon','','해피아이','smilezon@gnuboard.test','','2020-12-23 18:01:56',0,'2020-12-23 18:05:47','127.0.0.1','','','','','','','','','','','',''),(42,-4,'',41,1,1,'','','','','주의사항\r\n• 직사광선이 닿지 않는 서늘하고 건조한 곳에 보관하세요.','','','',0,0,0,0,0,'onlygiddy','','쪼각조각','onlygiddy@gnuboard.test','','2020-12-23 18:03:00',0,'','127.0.0.1','','','','','','','','','','','',''),(43,-4,'',41,1,2,'','','','','냉장고에 굳이 안넣어도 됩니다. 직사광만 없으면 되는것으로 압니다.\r\n\r\n저희집에 탁자위에 굴러 다닌답니다.....ㅎㅎ','','','',0,0,0,0,0,'apache','','아파치','apache@gnuboard.test','','2020-12-23 18:04:19',0,'','127.0.0.1','','','','','','','','','','','',''),(44,-4,'',41,1,3,'','','','','오픈해도 그냥 서늘한곳에 놓아 두시면 되는데, 한국 집이 생각보다 온도가 높네요. 그래서 한 두컵 먹고 당장 먹을 것 같지 않으면, 냉장에 넣어 두셔도 됩니다. 보통 미국에서는 한번 따면 한두달안에 다 먹게 되더군요.','','','',0,0,0,0,0,'magento','','마젠토','magento@gnuboard.test','','2020-12-23 18:04:42',0,'','127.0.0.1','','','','','','','','','','','',''),(45,-4,'',41,1,4,'','','','','요넘은 어디에다 쓰는 물건인가요? 물건너온거네요~','','','',0,0,0,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 18:05:10',0,'','127.0.0.1','','','','','','','','','','','',''),(46,-4,'',41,1,4,'A','','','','여기에 설명이...\r\nhttps://sir.kr/pauction/3888','','','',0,0,0,0,0,'smilezon','','해피아이','smilezon@gnuboard.test','','2020-12-23 18:05:32',0,'','127.0.0.1','','','','','','','','','','','',''),(47,-4,'',41,1,4,'AA','','','','네~열람해볼게요..히~','','','',0,0,0,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 18:05:47',0,'','127.0.0.1','','','','','','','','','','','',''),(48,-5,'',48,0,0,'','','html1','핵소고지 (영화)','

양심적 병역 거부자가 오키나와 전투  에서 위생병으로 참여한 이야기 입니다.

\r\n\r\n

 

\r\n\r\n

치사한 일본X에 대한 이야기가 나옵니다.  백기들고 항복하면서 나오다가 손에 든 수류탄 투척하네요.

\r\n\r\n

 

\r\n\r\n

그래도 끝에 보면 일본군 포로가 많이 있네요.  영화라 그런지,  전쟁터에서 저런것 한번 겪으면 보자마자 사살했을 것 같은데..

\r\n\r\n

 

\r\n\r\n
\r\n\r\n

 

','핵소고지-영화','https://namu.wiki/w/%ED%95%B5%EC%86%8C%20%EA%B3%A0%EC%A7%80','',0,0,4,1,1,'magento','','마젠토','magento@gnuboard.test','','2020-12-23 23:24:02',0,'2020-12-23 23:24:02','127.0.0.1','','','','','','','','','','','',''),(49,-6,'',49,0,8,'','','html1','저도 피같은 천포인트..','

아..아까비..

 

그러나 쾌적한 환경을 위해서..

내 눈을 더럽히지 않기위해서

과감히(?) 투자 했네요..

','저도-피같은-천포인트','','',0,0,7,1,0,'smilezon','','해피아이','smilezon@gnuboard.test','','2020-12-23 23:25:56',0,'2020-12-23 23:31:16','127.0.0.1','','','','','','','','','','','',''),(50,-6,'',49,1,1,'','','','','환영합니다. 천뽀클럽에서 안구정화를 담당하고 있는 라고 합니다.\r\n대뇌전두엽과 시신경의 평화를 위해 소중한 선택을 하셨네용 ㅋㅋㅋ','','','',0,0,0,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 23:27:15',0,'','127.0.0.1','','','','','','','','','','','',''),(51,-6,'',49,1,1,'A','','','','어이쿠..감사^^','','','',0,0,0,0,0,'smilezon','','해피아이','smilezon@gnuboard.test','','2020-12-23 23:27:37',0,'','127.0.0.1','','','','','','','','','','','',''),(52,-6,'',49,1,2,'','','','','저도 어제 투자 했습니다. @thisgun 님 제가 차단한 사람이 내 글 안 보이게 하는 기능에 만 포인트 정도 걸면 가능하게 해주세요.(10배)','','','',0,0,0,0,0,'magento','','마젠토','magento@gnuboard.test','','2020-12-23 23:28:07',0,'','127.0.0.1','','','','','','','','','','','',''),(53,-6,'',49,1,2,'A','','','','제가 추천 5개 드려습니다.\r\n어??\r\n근데 왜 하나만 표시되지??\r\n\r\n이거도 기능에 넣어주세요.\r\n\r\n추천 하나는 무료..\r\n2개부터는 500포인트 차감...','','','',0,0,0,0,0,'smilezon','','해피아이','smilezon@gnuboard.test','','2020-12-23 23:28:37',0,'','127.0.0.1','','','','','','','','','','','',''),(54,-6,'',49,1,3,'','','','','이게 어쩌면무용지물일수도 있습니다.\r\n왜냐하면...\r\n본인이 차단된걸 알면..\r\n다시 부캐를 하나 만들어서 똑같은 짓거리를 하거든요.\r\n제가 안볼려고 한 그놈을 컴에서..\r\n전체게시물로 검색해봤더니\r\n어닌게 아니라 거의 접속이 없더라고요..ㅋㅋ','','','',0,0,0,0,0,'smilezon','','해피아이','smilezon@gnuboard.test','','2020-12-23 23:29:17',0,'','127.0.0.1','','','','','','','','','','','',''),(55,-6,'',49,1,4,'','','','','그냥 그런 글에는 관심조차 주면 안됩니다.\r\n되지도 않는 글, 논리도 없는 글, 거기다 말꼬리 붙잡고 늘어지고...\r\n내 피 같은 시간을 그런 쓸데 없는 글 읽는데 사용하느니 1,000포인트 쓰는게 훨씬 의미 있다 봅니다.ㅎㅎ\r\n그런데 차단한 아이디에 답글을 다시는 분들 덕분에(?) 계속 아이디가 보여 신경이 쓰이네요. 차단한 아이디가 댓글에 들어있다면 그것도 안보이게 되었으면 더 좋겠습니다.ㅎㅎ;;;\r\n즐거운 오후 되세요.','','','',0,0,0,0,0,'test02','','테스트02','test02@gnuboard.test','','2020-12-23 23:30:01',0,'','127.0.0.1','','','','','','','','','','','',''),(56,-6,'',49,1,5,'','','','','저도 차단클럽에 가입했습니다~\r\n\r\n리스트는 나올줄 알았는데\r\n글리스트에도 안나오니 정말 좋네요\r\n\r\n와우~','','','',0,0,0,0,0,'test03','','테스트03','test03@gnuboard.test','','2020-12-23 23:30:39',0,'','127.0.0.1','','','','','','','','','','','',''),(57,-6,'',49,1,6,'','','','','차단클럽...ㅋㅋㅋㅋ\r\n저 역시.^^','','','',0,0,0,0,0,'test04','','테스트04','test04@gnuboard.test','','2020-12-23 23:31:16',0,'','127.0.0.1','','','','','','','','','','','',''),(58,-7,'',58,0,16,'','','html1','일하러 갔는데....','

가지고간 사다리가 죄다 짧아서 눈물을 머금고 뒤돌아 섰네요...ㅠㅠ

1시간 20분을 달려 간 곳인데 거래처에서 높다고 알려주지 않아서리...망할~~~

 

게다가 아파트 현장이니 길이도 130 피트 나 되네요...허거걱~

 

다음주로 리스케줄 잡고 숙소로 갑니다. 오늘 하루 망~~~~




 

','일하러-갔는데','','',0,0,12,1,0,'apache','','아파치','apache@gnuboard.test','','2020-12-23 23:33:11',0,'2020-12-23 23:44:47','127.0.0.1','','','','','','','','','','','',''),(60,-7,'',58,1,1,'','','','','건물 측벽 간이 화장실은 시공업체가 가지고 다니는 화장실인가요? 보는 순간 아!하고 느낌표가 오는 화장실입니다. 저도 조금의 여유가 있는 현장은 이동식 간이 화장실을 하나씩 가지고 다녀야 겠다는 생각이~!\r\n\r\n건강 조심하세요. 굴러가는 금액이 큰 대신에 몸 상하기 쉬운 직업이에요~!','','','',0,0,0,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 23:34:53',0,'','127.0.0.1','','','','','','','','','','','',''),(61,-7,'',58,1,1,'A','','','','시공업체에서 렌트해 주는 겁니다...^^\r\n다음주에 스케줄 다시 잡고 그냥 숙소로 오다가 샛길로 새서 득템 했습니다...ㅎㅎ','','','',0,0,0,0,0,'apache','','아파치','apache@gnuboard.test','','2020-12-23 23:35:18',0,'','127.0.0.1','','','','','','','','','','','',''),(62,-7,'',58,1,1,'AA','','','','그냥 막연하게 일하시는 분들 캠핑카 하나 사줄 여유가 있었으면 하고 있고 꼭 그러고 싶은데 일단 어디가서 눈치라도 보지 않게 깔끔한 화장실 하나 들여야겠습니다.\r\n\r\n사다리는 아무리 긴 사다리를 사도 계속 더 긴 사다리를 사야한다는 압박이 들게 하는 것 같아요. 매일 짧음.','','','',0,0,0,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 23:37:08',0,'','127.0.0.1','','','','','','','','','','','',''),(63,-7,'',58,1,1,'AAA','','','','전 일단 42\' 까지는 가지고 있는데 저런 일을 할때는 사다리가 최소 3개 이상이 필요하니 사다리 값만 200만원에 육박 한답니다......ㅠㅠ','','','',0,0,0,0,0,'apache','','아파치','apache@gnuboard.test','','2020-12-23 23:37:31',0,'','127.0.0.1','','','','','','','','','','','',''),(64,-7,'',58,1,1,'AAB','','','','미국에서 저 화장실만 빌려주는 사람이 있더군요. 공사장에 트럭으로 몇개 싫어다 놓고, 끝나면 가져가고.. 한달에 꽤 벌이가 된다고 하네요','','','',0,0,0,0,0,'magento','','마젠토','magento@gnuboard.test','','2020-12-23 23:38:03',0,'','127.0.0.1','','','','','','','','','','','',''),(65,-7,'',58,1,1,'AABA','','','','꽤 큰 업체가 있더라구요. 아마도 체인점이지 않을까 싶네요....^^','','','',0,0,0,0,0,'apache','','아파치','apache@gnuboard.test','','2020-12-23 23:38:28',0,'','127.0.0.1','','','','','','','','','','','',''),(66,-7,'',58,1,2,'','','','','고공렌탈로 가능하지 않을까요? 최대 12미터까지 올라가는게 있는걸로 아는데 ㄷㄷㄷㄷㄷㄷ','','','',0,0,0,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 23:39:03',0,'','127.0.0.1','','','','','','','','','','','',''),(67,-7,'',58,1,2,'A','','','','한대만 사용하면 되는게 아니라 한번에 처마(fascia)에 gutter 을 설치해야 해서 적어도 3~6대가 함께 움직여야 하는데 사다리가 더 편하기도 하고 경사진 곳이 더러 있어서 이장비는 사용을 못하고 아래 사진에 있는 붐 카를 사용 합니다....^^;;','','','',0,0,0,0,0,'apache','','아파치','apache@gnuboard.test','','2020-12-23 23:39:28',0,'','127.0.0.1','','','','','','','','','','','',''),(68,-7,'',58,1,2,'AA','','','','아.. 그러면 견적이 두통을 유발하겠네요 ㅎ 어쨌든 안전하게 공사 잘 마무리 되시길 바라겠습니다.','','','',0,0,0,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 23:39:48',0,'','127.0.0.1','','','','','','','','','','','',''),(69,-7,'',58,1,2,'B','','','','이거 렌탈이라고 하던데\r\n정말 렌탈이네요 ㅎㅎ','','','',0,0,0,0,0,'sundoforce','','선구자','sundoforce@gnuboard.test','','2020-12-23 23:40:46',0,'','127.0.0.1','','','','','','','','','','','',''),(70,-7,'',58,1,2,'BA','','','','네. 대여품이지요....^^','','','',0,0,0,0,0,'apache','','아파치','apache@gnuboard.test','','2020-12-23 23:41:04',0,'','127.0.0.1','','','','','','','','','','','',''),(72,-7,'',58,1,2,'BB','','','','네 대부분 렌탈 띄운다고 하죠. 현장에서 내부 전기공사작업할때 많이 쓴다죠 ㅎㅎ\r\n(저도 한때 자주 탔는데... 재미있었습니다 ㅋ 2~3대 레이싱 놀이도 했던 ㅋㅋㅋ)','','','',0,0,0,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 23:42:30',0,'','127.0.0.1','','','','','','','','','','','',''),(74,-7,'',58,1,2,'BBA','','','','커머셜 일 들어가면 일상이죠....ㅎㅎ','','','',0,0,0,0,0,'apache','','아파치','apache@gnuboard.test','','2020-12-23 23:43:43',0,'','127.0.0.1','','','','','','','','','','','',''),(75,-7,'',58,1,2,'BBAA','','','','네 ㅎㅎ 저 한참 일할때는 거미줄 치러가자고 했었습니다. 렌탈은 뭐 그냥 일상적인 수단이었죠 ㅋ','','','',0,0,0,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 23:44:05',0,'','127.0.0.1','','','','','','','','','','','',''),(76,-7,'',58,1,3,'','','','','헉 먼길 오셨는데 ㅠㅠ','','','',0,0,0,0,0,'sundoforce','','선구자','sundoforce@gnuboard.test','','2020-12-23 23:44:31',0,'','127.0.0.1','','','','','','','','','','','',''),(77,-7,'',58,1,3,'A','','','','여기선 일상이라 뭐 그렇게 멀다고 느끼지 않습니다.','','','',0,0,0,0,0,'apache','','아파치','apache@gnuboard.test','','2020-12-23 23:44:47',0,'','127.0.0.1','','','','','','','','','','','',''); /*!40000 ALTER TABLE `g5_write_free` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_write_gallery` -- DROP TABLE IF EXISTS `g5_write_gallery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_write_gallery` ( `wr_id` int(11) NOT NULL AUTO_INCREMENT, `wr_num` int(11) NOT NULL DEFAULT 0, `wr_reply` varchar(10) NOT NULL, `wr_parent` int(11) NOT NULL DEFAULT 0, `wr_is_comment` tinyint(4) NOT NULL DEFAULT 0, `wr_comment` int(11) NOT NULL DEFAULT 0, `wr_comment_reply` varchar(5) NOT NULL, `ca_name` varchar(255) NOT NULL, `wr_option` set('html1','html2','secret','mail') NOT NULL, `wr_subject` varchar(255) NOT NULL, `wr_content` text NOT NULL, `wr_seo_title` varchar(255) NOT NULL DEFAULT '', `wr_link1` text NOT NULL, `wr_link2` text NOT NULL, `wr_link1_hit` int(11) NOT NULL DEFAULT 0, `wr_link2_hit` int(11) NOT NULL DEFAULT 0, `wr_hit` int(11) NOT NULL DEFAULT 0, `wr_good` int(11) NOT NULL DEFAULT 0, `wr_nogood` int(11) NOT NULL DEFAULT 0, `mb_id` varchar(20) NOT NULL, `wr_password` varchar(255) NOT NULL, `wr_name` varchar(255) NOT NULL, `wr_email` varchar(255) NOT NULL, `wr_homepage` varchar(255) NOT NULL, `wr_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `wr_file` tinyint(4) NOT NULL DEFAULT 0, `wr_last` varchar(19) NOT NULL, `wr_ip` varchar(255) NOT NULL, `wr_facebook_user` varchar(255) NOT NULL, `wr_twitter_user` varchar(255) NOT NULL, `wr_1` varchar(255) NOT NULL, `wr_2` varchar(255) NOT NULL, `wr_3` varchar(255) NOT NULL, `wr_4` varchar(255) NOT NULL, `wr_5` varchar(255) NOT NULL, `wr_6` varchar(255) NOT NULL, `wr_7` varchar(255) NOT NULL, `wr_8` varchar(255) NOT NULL, `wr_9` varchar(255) NOT NULL, `wr_10` varchar(255) NOT NULL, PRIMARY KEY (`wr_id`), KEY `wr_seo_title` (`wr_seo_title`), KEY `wr_num_reply_parent` (`wr_num`,`wr_reply`,`wr_parent`), KEY `wr_is_comment` (`wr_is_comment`,`wr_id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_write_gallery` -- LOCK TABLES `g5_write_gallery` WRITE; /*!40000 ALTER TABLE `g5_write_gallery` DISABLE KEYS */; INSERT INTO `g5_write_gallery` VALUES (1,-1,'',1,0,3,'','','html1','간만의 봉자 소식','




집에만 오면 오디든 따라다니고 자려고 안방에 들어가면 문턱에서 자리틀고 제가 나오기 전 까지 망부석이 되어져 살고 있습니다.

 

 

뚱냥이라도 좋으니 건강하게만 살아다오~!


','간만의-봉자-소식','https://sir.kr/so_cat/4767','',0,0,3,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 17:29:57',1,'2020-12-23 17:36:01','127.0.0.1','','','','','','','','','','','',''),(2,-2,'',2,0,0,'','','html1','제 고양이 입니다','


 

새벽까지 작업하면 꼭 옆에 와서 잡니다

불이 밝아서 눈 가리며 자는데 참 귀여워요

그냥 편하게 거실 소파에서 자면 될텐데 꼭 내옆에서 저러구 자네요 ㅋㅋ

','제-고양이-입니다','','',0,0,1,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 17:31:40',0,'2020-12-23 17:31:40','127.0.0.1','','','','','','','','','','','',''),(3,-3,'',3,0,3,'','','html1','안녕! 하는 예절냥','


 


 

남해 독일마을에서 본 예절양입니다. 



','안녕-하는-예절냥','https://sir.kr/so_cat/4779','',0,0,2,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 17:32:56',0,'2020-12-23 17:34:23','127.0.0.1','','','','','','','','','','','',''),(4,-3,'',3,1,1,'','','','','지긋이 눈감고 귀엽네요 ㅎㅎ','','','',0,0,0,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 17:33:39',0,'','127.0.0.1','','','','','','','','','','','',''),(5,-3,'',3,1,1,'A','','','','저녀석 정말 개냥이었습니다. 보는 사람 마다 다 눈 인사고~ㅎㅎㅎㅎ','','','',0,0,0,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 17:34:00',0,'','127.0.0.1','','','','','','','','','','','',''),(6,-3,'',3,1,1,'AA','','','','너무 귀여워욯ㅎㅎ 고양이는 진리죠 ㅎㅎ','','','',0,0,0,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 17:34:23',0,'','127.0.0.1','','','','','','','','','','','',''),(7,-1,'',1,1,1,'','','','','울집 강쥐 같은가 보네요 ㅎㅎㅎ','','','',0,0,0,0,0,'onlygiddy','','쪼각조각','onlygiddy@gnuboard.test','','2020-12-23 17:35:24',0,'','127.0.0.1','','','','','','','','','','','',''),(8,-1,'',1,1,1,'A','','','','얘는 다른 고양이와 정말 다르게 저와의 소통이 잘 되는 아이 같습니다. ㅎㅎㅎㅎ','','','',0,0,0,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 17:35:44',0,'','127.0.0.1','','','','','','','','','','','',''),(9,-1,'',1,1,2,'','','','','넘 사랑스러워영','','','',0,0,0,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 17:36:01',0,'','127.0.0.1','','','','','','','','','','','',''),(10,-4,'',10,0,0,'','','html1','묵묵히 살찌우는','

간만에 봉자씨와 지내다 갑니다. 살이 더 쪘더라구요!

 

','묵묵히-살찌우는','https://sir.kr/so_cat/4781','',0,0,1,0,0,'anunnaki8','','묵공','anunnaki8@gnuboard.test','','2020-12-23 17:37:26',2,'2020-12-23 17:37:26','127.0.0.1','','','','','','','','','','','',''); /*!40000 ALTER TABLE `g5_write_gallery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_write_notice` -- DROP TABLE IF EXISTS `g5_write_notice`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_write_notice` ( `wr_id` int(11) NOT NULL AUTO_INCREMENT, `wr_num` int(11) NOT NULL DEFAULT 0, `wr_reply` varchar(10) NOT NULL, `wr_parent` int(11) NOT NULL DEFAULT 0, `wr_is_comment` tinyint(4) NOT NULL DEFAULT 0, `wr_comment` int(11) NOT NULL DEFAULT 0, `wr_comment_reply` varchar(5) NOT NULL, `ca_name` varchar(255) NOT NULL, `wr_option` set('html1','html2','secret','mail') NOT NULL, `wr_subject` varchar(255) NOT NULL, `wr_content` text NOT NULL, `wr_seo_title` varchar(255) NOT NULL DEFAULT '', `wr_link1` text NOT NULL, `wr_link2` text NOT NULL, `wr_link1_hit` int(11) NOT NULL DEFAULT 0, `wr_link2_hit` int(11) NOT NULL DEFAULT 0, `wr_hit` int(11) NOT NULL DEFAULT 0, `wr_good` int(11) NOT NULL DEFAULT 0, `wr_nogood` int(11) NOT NULL DEFAULT 0, `mb_id` varchar(20) NOT NULL, `wr_password` varchar(255) NOT NULL, `wr_name` varchar(255) NOT NULL, `wr_email` varchar(255) NOT NULL, `wr_homepage` varchar(255) NOT NULL, `wr_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `wr_file` tinyint(4) NOT NULL DEFAULT 0, `wr_last` varchar(19) NOT NULL, `wr_ip` varchar(255) NOT NULL, `wr_facebook_user` varchar(255) NOT NULL, `wr_twitter_user` varchar(255) NOT NULL, `wr_1` varchar(255) NOT NULL, `wr_2` varchar(255) NOT NULL, `wr_3` varchar(255) NOT NULL, `wr_4` varchar(255) NOT NULL, `wr_5` varchar(255) NOT NULL, `wr_6` varchar(255) NOT NULL, `wr_7` varchar(255) NOT NULL, `wr_8` varchar(255) NOT NULL, `wr_9` varchar(255) NOT NULL, `wr_10` varchar(255) NOT NULL, PRIMARY KEY (`wr_id`), KEY `wr_seo_title` (`wr_seo_title`), KEY `wr_num_reply_parent` (`wr_num`,`wr_reply`,`wr_parent`), KEY `wr_is_comment` (`wr_is_comment`,`wr_id`) ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_write_notice` -- LOCK TABLES `g5_write_notice` WRITE; /*!40000 ALTER TABLE `g5_write_notice` DISABLE KEYS */; INSERT INTO `g5_write_notice` VALUES (1,-1,'',1,0,0,'','일반','html1','영카트 카카오페이 기본 탑재 재개','

안녕하세요. SIR입니다.

 

영카트에서 다시 카카오페이를 바로 쓰실 수 있습니다.

(영카트 5.4.2.7.1 버전 기준)

 

사용중인 PG사가 KG 이니시스인 경우에는 상점관리자에서 신청하시면 되며,

타 PG사 ( NHN_KCP, 토스페이먼츠, 기타 등등 ) 결제를 쓰고 있는 경우 아래 신청 URL 에서 신청해 주시면 됩니다.

( PG사를 쓰고 있지 않은 경우 승인이 되지 않습니다. )

 

20년 7월 1일부터, KG이니시스를 통해 신청하시면 됩니다.

KCP, 토스페이먼츠 등 다른 결제대행사를 이용 중이셔도 신청하실 수 있습니다.

▶ 카카오페이 신청

 

이전 버전 사용자는 아래 게시물을 참고하시어 패치하시면 됩니다.

▶ 카카오페이 간편결제 패치

 

카카오페이 신청과 관련된 자세한 사항은 신청페이지를 참고해주세요.

▶ 카카오페이 신청

 

감사합니다.

','영카트-카카오페이-기본-탑재-재개','','',0,0,1,0,0,'admin','','최고관리자','admin@domain.com','','2020-12-23 14:26:03',0,'2020-12-23 14:26:03','127.0.0.1','','','','','','','','','','','',''),(2,-2,'',2,0,0,'','일반','html1','7월 24일 사무실 이전으로 인한 고객지원 안내','

안녕하세요. SIR입니다.

 

SIR 사무실을 새로운 곳으로 이전합니다.

사무실 이전 당일 고객지원이 중단되오니, 업무에 참고 부탁드립니다.

 

▶ 이전일 : 7월 24일(금)

▶ 업무재개일 : 7월 27일(월)

 

감사합니다.

','7월-24일-사무실-이전으로-인한-고객지원-안내','','',0,0,1,0,0,'admin','','최고관리자','admin@domain.com','','2020-12-23 14:29:07',0,'2020-12-23 14:29:07','127.0.0.1','','','','','','','','','','','',''),(3,-3,'',3,0,0,'','컨텐츠몰','html1','컨텐츠몰 2020년 7월 분류별 판매현황','

안녕하세요. SIR입니다.

컨텐츠몰 7월 분류별 판매현황을 알려드립니다.

 

판매현황

구분상세
7월 총판매건수257건
7월 총판매액21,301,900원
최근 3개월 평균21,527,100원

 

상세내역

상세분류건수금액
테마
미분류99건6,991,900원
홈페이지51건3,452,000원
쇼핑몰15건2,478,000원
플러그인
플러그인56건7,896,000원
스킨
미분류2건100,000원
홈페이지10건213,000원
디자인소스
디자인시안22건22,000원
솔루션
게시판1건50,000원
빌더
모바일1건99,000원

 

감사합니다.

','컨텐츠몰-2020년-7월-분류별-판매현황','','',0,0,1,0,0,'admin','','최고관리자','admin@domain.com','','2020-12-23 14:29:57',0,'2020-12-23 14:29:57','127.0.0.1','','','','','','','','','','','',''),(4,-4,'',4,0,0,'','일반','html1','8월 17일(월요일) 휴무 안내 - 임시공휴일','

안녕하세요. SIR입니다.

 

정부에서는 올해 현충일과 광복절이 주말과 겹쳐
쉴 수 있는 공휴일이 줄어든 것과 코로나19 장기화로
심신이 지친 국민들께 조금이나마 쉴 수 있는 시간을 제공하고,
내수 회복의 흐름도 이어가기 위한 취지에서 광복절(토요일) 다음 주 월요일인 8월 17일을
임시공휴일로 지정하였습니다.

 

8월 17일 임시공휴일로 인해 고객지원이 중단됩니다.


고객지원 문의사항은 문의게시판에 남겨주시면 업무 재개 후 순차적으로 안내해드리겠습니다.

https://sir.kr/co_qa

 

휴무 8월 17일(월요일)

정상업무 8월 18일(화요일)

 

감사합니다.

','8월-17일월요일-휴무-안내-임시공휴일','','',0,0,1,0,0,'admin','','최고관리자','admin@domain.com','','2020-12-23 14:30:39',0,'2020-12-23 14:30:39','127.0.0.1','','','','','','','','','','','',''),(5,-5,'',5,0,0,'','컨텐츠몰','html1','컨텐츠몰 특별할인 안내 9월1일~12월31일','

안녕하세요. SIR입니다.

 

코로나19 바이러스 재확산 및 장기화로 어려운 시기입니다.
 

SIR은 코로나19 극복에 작은 힘을 보태고자,

9월 1일부터 12월 31일까지 SIR 컨텐츠몰 10% 특별할인을 제공합니다.
할인은 저희 SIR이 전액 부담합니다.

 

할인기간 2020년 9월 1일 ~ 12월 31일
대상 SIR 컨텐츠몰에 등록된 모든 컨텐츠
판매자 혜택 컨텐츠몰에 등록하신 판매가 기준으로 수수료 차감 후 정산 받으실 수 있습니다. (기존과 동일)
구매자 혜택 컨텐츠몰 모든 컨텐츠를 10% 할인된 가격에 구입하실 수 있습니다.

유의사항! 다운로드 받으신 주문은 취소가 불가합니다.

 

하루 빨리 이 사태가 진정되길 진심으로 기원합니다.

 

감사합니다. 

','컨텐츠몰-특별할인-안내-9월1일12월31일','','',0,0,1,0,0,'admin','','최고관리자','admin@domain.com','','2020-12-23 14:31:40',0,'2020-12-23 14:31:40','127.0.0.1','','','','','','','','','','','',''),(6,-6,'',6,0,0,'','컨텐츠몰','html1','컨텐츠몰 2020년 8월 분류별 판매현황','

안녕하세요. SIR입니다.

컨텐츠몰 8월 분류별 판매현황을 알려드립니다.

 

판매현황

구분상세
8월 총판매건수250건
8월 총판매액20,120,800원
최근 3개월 평균20,886,733원

 

상세내역

상세분류건수금액
테마163건14,592,800원
┕ 미분류102건7,686,800원
┕ 홈페이지47건3,039,000원
┕ 쇼핑몰14건3,867,000원
스킨20건727,000원
┕ 미분류3건130,000원
┕ 홈페이지17건597,000원
플러그인43건4,723,000원
디자인소스21건21,000원
┕ 미분류1건1,000원
┕ 디자인시안20건20,000원
솔루션3건57,000원
┕ 미분류1건37,000원
┕ 게시판2건20,000원

 

SIR은 코로나19 극복을 위해 작은 힘을 보태고자,

9월 1일부터 12월 31일까지 SIR 컨텐츠몰 10% 특별할인을 제공합니다.
할인은 저희 SIR이 전액 부담합니다.

https://sir.kr/co_notice/1318

 

감사합니다.

','컨텐츠몰-2020년-8월-분류별-판매현황','','',0,0,1,0,0,'admin','','최고관리자','admin@domain.com','','2020-12-23 14:32:29',0,'2020-12-23 14:32:29','127.0.0.1','','','','','','','','','','','',''),(7,-7,'',7,0,0,'','일반','html1','태풍으로 인한 임시 휴무일 안내','

초특급 태풍 하이선의 북상으로 인해 출퇴근시 있을지 모르는 불상사를 막기 위해 임시휴무를 결정하였습니다.

 

전화 상담은 가능하지만 담당자의 부재로 인하여 업무 처리가 다소 늦어질수 있는점 양해 바랍니다.

 

감사합니다.

 

임시휴무일 : 2020년 9월 7일 월요일 하루

','태풍으로-인한-임시-휴무일-안내','','',0,0,1,0,0,'admin','','최고관리자','admin@domain.com','','2020-12-23 14:33:14',0,'2020-12-23 14:33:14','127.0.0.1','','','','','','','','','','','',''),(8,-8,'',8,0,0,'','일반','html1','영카트에서 네이버페이를 더 쉽게 연동할 수 있습니다.','

안녕하세요. SIR입니다.

 

영카트에서 네이버페이를 더 쉽게 연동할 수 있습니다.

영카트 5.4.2.8.1 버전 기준 KCP를 통해 신청하시면 됩니다.

KCP 외 이니시스, 토스페이먼츠를 이용하시는 경우에도 신청하실 수 있습니다.

 

▶ KCP 신청하기

(20년 9월 29일 추가: KCP 신규 가맹 시 페이코, 네이버페이, 카카오페이도 함께 신청됩니다.)

 

이전 버전 사용자는 네이버페이에 직접 신청하시면 됩니다.

 

감사합니다.

','영카트에서-네이버페이를-더-쉽게-연동할-수-있습니다','','',0,0,1,0,0,'admin','','최고관리자','admin@domain.com','','2020-12-23 14:33:40',0,'2020-12-23 14:33:40','127.0.0.1','','','','','','','','','','','',''),(9,-9,'',9,0,0,'','일반','html1','2020 추석 연휴 안내','

안녕하세요. SIR입니다.

 

2020 추석 연휴를 맞아 고객지원에 대해 알려드리오니 업무에 참고 부탁드립니다.

 

▶ 업무종료 : 9월 29일(화) 오후 1시

▶ 업무재개 : 10월 5일(월) 오전 10시

 

슬기로운 추석 연휴 보내시기 바랍니다.

 

감사합니다.

','2020-추석-연휴-안내','','',0,0,1,0,0,'admin','','최고관리자','admin@domain.com','','2020-12-23 14:34:14',0,'2020-12-23 14:34:14','127.0.0.1','','','','','','','','','','','',''),(10,-10,'',10,0,0,'','이벤트몰','html1','NHN KCP 창업 지원 이벤트 - 수수료 0.3% 할인','

안녕하세요. SIR입니다.

 

대한민국 결제의 중심 NHN KCP와 함께 창업 지원 이벤트를 진행합니다.

이벤트 기간 동안 가입신청한 신규가맹점을 대상으로 1년간 신용카드 결제수수료 0.3%를 할인해드립니다.

자세한 내용은 아래를 참고해 주세요.

 

NHN KCP 창업 지원 이벤트

기간 2020년 10월 5일 ~ 12월 31일까지

대상 기간 내 가입신청한 신규가맹점

혜택 가입완료일부터 1년간 신용카드 수수료 0.3% 할인

 

이벤트 바로가기

 

- SIR 홈페이지에서 가입신청하셔야 수수료 할인 혜택이 제공됩니다.

- 이벤트 기간 내 가입비를 완납한 신규가맹점을 대상으로 진행되는 이벤트입니다.

- 본 행사는 KCP 혹은 SIR의 사정에 따라 임의 변경 혹은 조기 종료될 수 있습니다.

- 간편결제 페이코, 네이버페이, 카카오페이가 함께 지원됩니다.

- 할인 적용된 수수료율은 부가세 별도입니다.

 

감사합니다.

','nhn-kcp-창업-지원-이벤트-수수료-03','','',0,0,1,0,0,'admin','','최고관리자','admin@domain.com','','2020-12-23 14:34:49',0,'2020-12-23 14:34:49','127.0.0.1','','','','','','','','','','','',''),(11,-11,'',11,0,0,'','컨텐츠몰','html1','컨텐츠몰 2020년 09월 분류별 판매현황','

안녕하세요. SIR입니다.

컨텐츠몰 09월 분류별 판매현황을 알려드립니다.

 

판매현황

구분상세
09월 총판매건수256건
09월 총판매액22,005,100원
최근 3개월 평균21,105,933원

 

상세내역

상세분류건수금액
디자인소스20건20,000원
┕ 디자인시안20건20,000원
솔루션2건47,000원
┕ 게시판1건10,000원
┕ 미분류1건37,000원
스킨9건193,000원
┕ 홈페이지9건193,000원
테마155건14,138,600원
┕ 미분류88건6,300,800원
┕ 쇼핑몰11건3,118,000원
┕ 홈페이지56건4,719,800원
플러그인70건7,606,500원
┕ 미분류70건7,606,500원

 

SIR은 코로나19 극복을 위해 작은 힘을 보태고자,

9월 1일부터 12월 31일까지 SIR 컨텐츠몰 10% 특별할인을 제공합니다.
할인은 저희 SIR이 전액 부담합니다.

https://sir.kr/co_notice/1318

 

감사합니다.

','컨텐츠몰-2020년-09월-분류별-판매현황','','',0,0,1,0,0,'admin','','최고관리자','admin@domain.com','','2020-12-23 14:35:23',0,'2020-12-23 14:35:23','127.0.0.1','','','','','','','','','','','',''),(12,-12,'',12,0,0,'','컨텐츠몰','html1','컨텐츠몰 2020년 10월 분류별 판매현황','

안녕하세요. SIR입니다.

컨텐츠몰 10월 분류별 판매현황을 알려드립니다.

 

판매현황

구분상세
10월 총판매건수281건
10월 총판매액27,312,800원
최근 3개월 평균23,146,233원

 

상세내역

상세분류건수금액
디자인소스21건21,000원
┕ 디자인시안21건21,000원
빌더1건750,000원
┕ 모바일1건750,000원
솔루션2건47,000원
┕ 게시판1건10,000원
┕ 미분류1건37,000원
스킨14건389,000원
┕ 미분류1건50,000원
┕ 홈페이지13건339,000원
테마186건19,465,800원
┕ 미분류117건9,245,000원
┕ 쇼핑몰10건4,850,000원
┕ 홈페이지59건5,370,800원
플러그인57건6,640,000원
┕ 미분류57건6,640,000원

 

SIR은 코로나19 극복을 위해 작은 힘을 보태고자,

9월 1일부터 12월 31일까지 SIR 컨텐츠몰 10% 특별할인을 제공합니다.
할인은 저희 SIR이 전액 부담합니다.

https://sir.kr/co_notice/1318

 

감사합니다.

','컨텐츠몰-2020년-10월-분류별-판매현황','','',0,0,1,0,0,'admin','','최고관리자','admin@domain.com','','2020-12-23 14:36:07',0,'2020-12-23 14:36:07','127.0.0.1','','','','','','','','','','','',''),(13,-13,'',13,0,0,'','컨텐츠몰','html1','컨텐츠몰 이용약관 변경 안내','

안녕하세요. SIR입니다.

 

11월 30일부터, 컨텐츠몰 이용약관 중 일부가 변경됩니다.

https://sir.kr/cmall/provision.php

 

변경 요약

1. 제7조 3항 추가

2. 제8조 6항 추가

 

변경 사항

조항구분내용
제7조
(판매자의 의무)
신설3. 판매자는 신용카드 현금융통, 결제수단도용, 구매후기 조작, 대량 허위거래 등에 해당하는 부정 거래 행위를 할 수 없습니다.

제8조

(고객의 의무)

신설6. 고객은 신용카드 현금융통, 결제수단도용, 구매후기 조작, 대량 허위거래 등에 해당하는 부정 거래 행위를 할 수 없습니다.

 

변경 사유

판매자와 고객의 의무가 추가되었습니다.

 

개정된 약관은 2020년 11월 30일부터 적용됩니다.

 

감사합니다.

','컨텐츠몰-이용약관-변경-안내','','',0,0,1,0,0,'admin','','최고관리자','admin@domain.com','','2020-12-23 14:36:41',0,'2020-12-23 14:36:41','127.0.0.1','','','','','','','','','','','',''),(14,-14,'',14,0,0,'','컨텐츠몰','html1','컨텐츠몰 2020년 11월 분류별 판매현황','

안녕하세요. SIR입니다.

컨텐츠몰 11월 분류별 판매현황을 알려드립니다.

 

판매현황

구분상세
11월 총판매건수331건
11월 총판매액29,929,900원
최근 3개월 평균26,415,933원

 

상세내역

상세분류건수금액
디자인소스17건17,000원
┕ 디자인시안17건17,000원
빌더2건849,000원
┕ 모바일2건849,000원
솔루션2건20,000원
┕ 게시판2건20,000원
스킨13건457,500원
┕ 미분류1건30,000원
┕ 홈페이지12건427,500원
테마221건20,625,400원
┕ 미분류142건10,540,000원
┕ 쇼핑몰16건4,140,000원
┕ 홈페이지63건5,945,400원
플러그인76건7,961,000원
┕ 미분류76건7,961,000원

 

감사합니다.

','컨텐츠몰-2020년-11월-분류별-판매현황','','',0,0,1,0,0,'admin','','최고관리자','admin@domain.com','','2020-12-23 14:37:48',0,'2020-12-23 14:37:48','127.0.0.1','','','','','','','','','','','',''),(15,-15,'',15,0,0,'','일반','html1','그누커머스, 그누프레스, 그누페이 공식지원 중단 안내','

안녕하세요.


그누커머스, 그누프레스, 그누페이 공식 지원이 중단됩니다.
기존 사용자는 그대로 사용하실 수 있으나, 지원이 중단되므로 적절한 조치를 취하시길 권해드립니다.


▶ 지원중단 : 2020년 12월 31일
▶ 중단사유 : 개발인력 부족


그동안 그누커머스, 그누프레스, 그누페이를 이용해주신 분들께 진심으로 감사와 양해의 말씀을 드립니다.


감사합니다.

','그누커머스-그누프레스-그누페이-공식지원-중단-안내','','',0,0,4,0,0,'admin','','최고관리자','admin@domain.com','','2020-12-23 14:38:11',1,'2020-12-23 14:38:11','127.0.0.1','','','','','','','','','','','',''); /*!40000 ALTER TABLE `g5_write_notice` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g5_write_qa` -- DROP TABLE IF EXISTS `g5_write_qa`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `g5_write_qa` ( `wr_id` int(11) NOT NULL AUTO_INCREMENT, `wr_num` int(11) NOT NULL DEFAULT 0, `wr_reply` varchar(10) NOT NULL, `wr_parent` int(11) NOT NULL DEFAULT 0, `wr_is_comment` tinyint(4) NOT NULL DEFAULT 0, `wr_comment` int(11) NOT NULL DEFAULT 0, `wr_comment_reply` varchar(5) NOT NULL, `ca_name` varchar(255) NOT NULL, `wr_option` set('html1','html2','secret','mail') NOT NULL, `wr_subject` varchar(255) NOT NULL, `wr_content` text NOT NULL, `wr_seo_title` varchar(255) NOT NULL DEFAULT '', `wr_link1` text NOT NULL, `wr_link2` text NOT NULL, `wr_link1_hit` int(11) NOT NULL DEFAULT 0, `wr_link2_hit` int(11) NOT NULL DEFAULT 0, `wr_hit` int(11) NOT NULL DEFAULT 0, `wr_good` int(11) NOT NULL DEFAULT 0, `wr_nogood` int(11) NOT NULL DEFAULT 0, `mb_id` varchar(20) NOT NULL, `wr_password` varchar(255) NOT NULL, `wr_name` varchar(255) NOT NULL, `wr_email` varchar(255) NOT NULL, `wr_homepage` varchar(255) NOT NULL, `wr_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `wr_file` tinyint(4) NOT NULL DEFAULT 0, `wr_last` varchar(19) NOT NULL, `wr_ip` varchar(255) NOT NULL, `wr_facebook_user` varchar(255) NOT NULL, `wr_twitter_user` varchar(255) NOT NULL, `wr_1` varchar(255) NOT NULL, `wr_2` varchar(255) NOT NULL, `wr_3` varchar(255) NOT NULL, `wr_4` varchar(255) NOT NULL, `wr_5` varchar(255) NOT NULL, `wr_6` varchar(255) NOT NULL, `wr_7` varchar(255) NOT NULL, `wr_8` varchar(255) NOT NULL, `wr_9` varchar(255) NOT NULL, `wr_10` varchar(255) NOT NULL, PRIMARY KEY (`wr_id`), KEY `wr_seo_title` (`wr_seo_title`), KEY `wr_num_reply_parent` (`wr_num`,`wr_reply`,`wr_parent`), KEY `wr_is_comment` (`wr_is_comment`,`wr_id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `g5_write_qa` -- LOCK TABLES `g5_write_qa` WRITE; /*!40000 ALTER TABLE `g5_write_qa` DISABLE KEYS */; INSERT INTO `g5_write_qa` VALUES (1,-1,'',1,0,1,'','','html1','아이쿠','


 

','아이쿠','','',0,0,3,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 18:15:38',0,'2020-12-23 18:18:08','127.0.0.1','','','','','','','','','','','',''),(2,-2,'',2,0,0,'','','html1','명사수','


 

','명사수','','',0,0,1,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 18:16:19',0,'2020-12-23 18:16:19','127.0.0.1','','','','','','','','','','','',''),(3,-3,'',3,0,2,'','','html1','아이쿠 깜작이야','


 

','아이쿠-깜작이야','','',0,0,4,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 18:16:52',0,'2020-12-23 18:18:45','127.0.0.1','','','','','','','','','','','',''),(4,-3,'',3,1,1,'','','','','ㅎㅎㅎ','','','',0,0,0,0,0,'test02','','테스트02','test02@gnuboard.test','','2020-12-23 18:17:20',0,'','127.0.0.1','','','','','','','','','','','',''),(5,-1,'',1,1,1,'','','','','흐미','','','',0,0,0,0,0,'test02','','테스트02','test02@gnuboard.test','','2020-12-23 18:18:08',0,'','127.0.0.1','','','','','','','','','','','',''),(6,-3,'',3,1,2,'','','','','ㅎㅎㅎ\r\n개가 귀엽네요 ...\r\n아이구 귀여워라 ㅎㅎㅎ 쪽~~~~','','','',0,0,0,0,0,'test03','','테스트03','test03@gnuboard.test','','2020-12-23 18:18:45',0,'','127.0.0.1','','','','','','','','','','','',''),(7,-4,'',7,0,1,'','','html1','악','


 

','악','','',0,0,2,0,0,'test01','','테스트01','test01@gnuboard.test','','2020-12-23 23:46:35',0,'2020-12-23 23:47:09','127.0.0.1','','','','','','','','','','','',''),(8,-4,'',7,1,1,'','','','','잼있네여. ^^','','','',0,0,0,0,0,'test02','','테스트02','test02@gnuboard.test','','2020-12-23 23:47:09',0,'','127.0.0.1','','','','','','','','','','','',''); /*!40000 ALTER TABLE `g5_write_qa` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2022-08-21 10:27:12