[chuni] Add all old version event and enable flag

pull/1/head
samnyan 2020-02-19 16:22:05 +08:00
parent 3f495ed18d
commit 58e3de5ab9
7 changed files with 1151 additions and 1 deletions

View File

@ -4,9 +4,13 @@ import icu.samnyan.aqua.sega.chunithm.model.gamedata.GameEvent;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import java.util.List;
/**
* @author samnyan (privateamusement@protonmail.com)
*/
@Repository
public interface GameEventRepository extends JpaRepository<GameEvent, Integer> {
List<GameEvent> findByEnable(boolean enable);
}

View File

@ -36,7 +36,7 @@ public class GetGameEventHandler implements BaseHandler {
public String handle(Map<String, Object> request) throws JsonProcessingException {
String type = (String) request.get("type");
List<GameEvent> gameEventList = gameEventRepository.findAll();
List<GameEvent> gameEventList = gameEventRepository.findByEnable(true);
Map<String, Object> resultMap = new LinkedHashMap<>();
resultMap.put("type", type);

View File

@ -30,4 +30,6 @@ public class GameEvent implements Serializable {
private LocalDateTime startDate;
private LocalDateTime endDate;
private boolean enable;
}

View File

@ -0,0 +1,4 @@
ALTER TABLE `chuni_game_event`
ADD COLUMN `enable` bit(1) NOT NULL DEFAULT true;
UPDATE `chuni_game_event` SET `enable`=false WHERE `type` = 1;

View File

@ -0,0 +1,555 @@
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (102, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (103, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (202, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (203, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (862, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (870, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (871, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (872, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (873, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (880, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (890, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (891, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 0, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (900, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (901, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (902, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (903, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (904, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (905, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (906, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (907, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (908, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (909, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (910, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (911, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (912, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (913, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (914, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (915, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (916, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (917, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (918, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (930, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (931, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (932, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (933, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (934, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (935, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (936, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (937, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (938, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (939, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (940, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (941, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (942, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (943, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (944, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (945, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (946, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (947, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (960, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (961, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (962, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (963, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (964, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (965, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (966, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (967, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (968, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (969, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (990, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (991, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (992, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (993, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (994, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (995, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (996, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (997, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (998, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (999, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1000, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1001, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1002, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1003, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1004, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1005, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1006, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1020, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1021, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1022, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1023, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1024, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1025, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1026, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1027, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1028, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1029, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1030, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1031, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1050, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1051, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1052, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1053, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1054, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1055, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1056, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1057, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1058, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1059, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1060, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1061, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1098, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1102, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1106, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1172, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1229, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1279, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1280, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1282, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1283, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1284, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1285, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1286, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1287, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1288, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1289, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1290, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1291, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1292, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1293, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1294, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1295, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1296, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1297, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1298, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1299, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1310, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1312, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1313, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1314, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1315, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1316, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1317, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1318, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1319, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1320, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1321, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1322, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1323, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1324, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1325, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1326, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1327, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1328, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1329, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1340, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1342, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1343, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1344, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1345, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1346, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1347, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1348, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1349, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1350, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1351, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1352, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1353, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1354, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1355, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1356, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1357, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1370, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1372, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1373, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1374, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1375, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1376, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1377, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1378, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1379, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1380, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1381, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1382, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1383, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1384, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1385, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1386, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1387, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1388, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1400, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1402, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1403, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1404, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1405, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1406, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1407, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1408, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1409, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1410, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1411, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1412, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1413, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1414, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1415, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1416, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1430, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1432, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1433, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1434, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1435, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1436, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1437, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1438, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1439, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1440, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1441, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1442, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1443, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1444, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1445, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1446, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1447, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1460, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1461, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1462, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1463, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1464, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1465, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1500, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1501, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1502, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1504, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1505, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1507, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1508, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1509, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1510, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1511, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1512, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1513, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1514, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1515, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1516, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1517, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1518, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1519, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1520, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1521, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1522, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1523, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1524, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1600, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1601, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1603, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1605, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1606, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1650, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1651, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1652, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1653, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1654, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1655, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1656, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1657, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1658, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1659, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1660, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1661, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1700, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1701, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1703, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1750, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1751, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1752, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1753, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1754, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1755, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1756, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1757, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1758, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1759, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1760, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1761, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1762, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1763, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1764, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1765, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1766, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1767, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1768, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1769, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1770, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1800, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1801, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1802, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1803, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1804, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1805, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1850, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1851, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1852, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1853, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1854, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1855, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1856, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1857, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1880, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1881, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1882, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1883, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1884, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1885, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1886, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1887, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1888, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1889, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1890, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1900, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1901, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1903, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1904, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1905, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1906, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1907, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1908, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1909, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1910, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1911, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1912, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1913, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1950, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1951, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1952, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1954, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1955, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1956, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2000, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2001, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2003, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2004, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2005, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2006, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2007, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2008, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2009, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2010, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2011, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2012, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2013, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2050, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2051, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2052, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2053, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2054, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2055, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2056, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2100, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2101, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2103, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2104, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2105, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2106, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2107, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2108, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2109, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2110, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2111, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2150, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2151, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2152, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2153, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2154, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2155, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2156, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2200, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2201, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2202, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2203, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2204, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2205, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2207, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2208, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2209, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2210, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2211, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2212, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2213, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2214, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2215, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2216, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2217, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2218, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2219, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2220, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2221, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2222, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2223, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2224, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2225, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2226, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2250, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2251, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2252, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2253, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2280, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2281, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2282, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2283, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2300, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2301, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2302, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2303, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2304, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2305, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2306, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2307, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2308, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2350, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2351, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2352, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2354, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2355, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2356, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2380, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2381, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2382, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2383, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2400, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2401, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2402, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2403, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2404, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2405, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2406, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2407, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2408, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2409, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2410, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2411, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2412, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2413, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2414, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2415, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2416, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2417, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2418, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2419, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2420, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2421, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2450, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2451, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2452, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2453, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2454, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2455, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2456, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2457, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2458, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2459, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2500, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2501, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2502, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2503, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2504, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2505, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2506, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2507, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2508, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2509, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2510, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2511, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2550, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2551, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2552, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2554, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2555, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2556, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2557, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2558, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2559, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2560, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2561, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2562, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2600, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2601, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2602, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2603, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2604, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2605, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2606, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2607, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2608, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2609, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2610, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2611, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2612, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2613, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2614, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2615, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2650, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2651, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2652, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2653, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2654, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2655, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2656, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2657, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2658, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2659, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2660, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2700, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2701, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2702, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2703, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2704, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2705, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2706, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2707, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2708, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2709, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2710, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2711, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2750, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2751, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2752, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2753, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2754, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2755, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2800, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2801, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2802, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2803, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2805, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2806, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2807, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2808, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2809, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2810, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2811, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2812, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2813, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2814, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2815, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2816, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2817, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2818, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2850, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2851, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2852, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2853, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2854, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2855, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2856, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2857, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2900, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2901, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2902, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2903, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2950, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2951, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2952, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2953, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (20000, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 6, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (20001, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 6, true);
INSERT IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (20002, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 6, true);

View File

@ -0,0 +1,30 @@
CREATE TABLE chuni_game_event_new
(
id INTEGER NOT NULL,
end_date DATETIME,
start_date DATETIME,
type INTEGER NOT NULL,
enable BOOLEAN NOT NULL,
PRIMARY KEY (
id
)
);
INSERT INTO chuni_game_event_new(id,
end_date,
start_date,
type,
enable)
SELECT id,
end_date,
start_date,
type,
true
FROM chuni_game_event;
DROP TABLE chuni_game_event;
ALTER TABLE chuni_game_event_new RENAME TO chuni_game_event;
UPDATE `chuni_game_event`
SET `enable`= false
WHERE `type` = 1;

View File

@ -0,0 +1,555 @@
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (102, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (103, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (202, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (203, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (862, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (870, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (871, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (872, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (873, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (880, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (890, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (891, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 0, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (900, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (901, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (902, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (903, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (904, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (905, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (906, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (907, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (908, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (909, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (910, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (911, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (912, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (913, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (914, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (915, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (916, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (917, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (918, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (930, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (931, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (932, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (933, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (934, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (935, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (936, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (937, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (938, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (939, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (940, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (941, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (942, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (943, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (944, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (945, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (946, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (947, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (960, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (961, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (962, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (963, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (964, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (965, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (966, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (967, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (968, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (969, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (990, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (991, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (992, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (993, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (994, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (995, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (996, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (997, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (998, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (999, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1000, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1001, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1002, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1003, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1004, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1005, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1006, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1020, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1021, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1022, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1023, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1024, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1025, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1026, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1027, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1028, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1029, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1030, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1031, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1050, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1051, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1052, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1053, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1054, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1055, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1056, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1057, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1058, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1059, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1060, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1061, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1098, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1102, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1106, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1172, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1229, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1279, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1280, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1282, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1283, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1284, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1285, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1286, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1287, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1288, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1289, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1290, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1291, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1292, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1293, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1294, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1295, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1296, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1297, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1298, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1299, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1310, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1312, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1313, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1314, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1315, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1316, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1317, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1318, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1319, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1320, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1321, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1322, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1323, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1324, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1325, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1326, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1327, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1328, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1329, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1340, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1342, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1343, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1344, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1345, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1346, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1347, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1348, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1349, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1350, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1351, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1352, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1353, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1354, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1355, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1356, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1357, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1370, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1372, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1373, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1374, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1375, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1376, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1377, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1378, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1379, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1380, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1381, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1382, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1383, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1384, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1385, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1386, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1387, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1388, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1400, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1402, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1403, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1404, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1405, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1406, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1407, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1408, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1409, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1410, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1411, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1412, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1413, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1414, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1415, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1416, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1430, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1432, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1433, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1434, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1435, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1436, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1437, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1438, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1439, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1440, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1441, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1442, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1443, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1444, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1445, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1446, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1447, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1460, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1461, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1462, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1463, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1464, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1465, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1500, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1501, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1502, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1504, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1505, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1507, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1508, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1509, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1510, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1511, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1512, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1513, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1514, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1515, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1516, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1517, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1518, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1519, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1520, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1521, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1522, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1523, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1524, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1600, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1601, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1603, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1605, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1606, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1650, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1651, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1652, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1653, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1654, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1655, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1656, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1657, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1658, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1659, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1660, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1661, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1700, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1701, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1703, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1750, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1751, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1752, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1753, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1754, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1755, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1756, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1757, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1758, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1759, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1760, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1761, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1762, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1763, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1764, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1765, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1766, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1767, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1768, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1769, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1770, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1800, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1801, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1802, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1803, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1804, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1805, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1850, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1851, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1852, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1853, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1854, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1855, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1856, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1857, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1880, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1881, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1882, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1883, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1884, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1885, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1886, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1887, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1888, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1889, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1890, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1900, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1901, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1903, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1904, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1905, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1906, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1907, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1908, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1909, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1910, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1911, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1912, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1913, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1950, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1951, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1952, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1954, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1955, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (1956, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2000, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2001, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2003, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2004, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2005, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2006, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2007, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2008, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2009, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2010, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2011, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2012, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2013, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2050, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2051, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2052, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2053, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2054, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2055, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2056, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2100, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2101, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2103, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2104, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2105, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2106, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2107, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2108, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2109, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2110, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2111, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2150, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2151, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2152, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2153, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2154, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2155, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2156, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2200, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2201, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2202, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2203, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2204, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2205, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2207, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2208, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2209, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2210, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2211, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2212, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2213, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2214, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2215, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2216, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2217, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2218, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2219, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2220, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2221, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2222, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2223, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2224, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2225, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2226, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2250, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2251, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2252, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2253, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2280, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2281, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2282, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2283, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2300, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2301, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2302, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2303, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2304, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2305, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2306, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2307, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2308, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2350, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2351, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2352, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2354, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2355, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2356, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2380, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2381, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2382, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2383, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2400, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2401, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2402, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2403, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2404, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2405, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2406, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2407, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2408, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2409, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2410, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2411, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2412, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2413, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2414, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2415, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2416, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2417, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2418, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2419, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2420, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2421, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2450, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2451, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2452, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2453, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2454, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2455, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2456, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2457, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2458, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2459, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2500, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2501, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2502, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2503, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2504, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2505, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2506, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2507, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2508, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2509, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2510, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2511, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2550, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2551, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2552, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2554, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2555, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2556, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2557, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2558, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2559, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2560, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2561, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2562, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2600, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2601, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2602, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2603, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2604, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2605, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2606, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2607, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2608, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2609, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2610, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2611, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2612, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2613, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2614, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2615, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2650, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2651, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2652, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2653, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2654, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2655, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2656, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2657, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2658, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2659, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2660, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2700, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2701, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2702, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2703, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2704, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2705, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2706, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2707, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2708, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2709, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2710, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2711, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2750, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2751, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2752, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2753, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2754, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2755, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2800, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2801, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2802, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2803, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2805, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2806, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2807, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2808, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2809, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2810, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2811, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2812, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2813, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2814, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2815, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2816, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 7, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2817, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2818, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 4, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2850, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2851, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2852, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2853, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 2, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2854, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2855, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 8, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2856, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2857, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2900, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2901, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2902, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2903, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 5, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2950, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2951, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2952, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 1, false);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (2953, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 3, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (20000, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 6, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (20001, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 6, true);
INSERT OR IGNORE INTO chuni_game_event (id, end_date, start_date, type, enable) VALUES (20002, '2029-01-01 00:00:00.000000', '2019-01-01 00:00:00.000000', 6, true);