forked from Twillo/GOG-Games-Docker-Edition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.sql
454 lines (424 loc) · 807 KB
/
database.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
CREATE DATABASE gg;
USE gg;
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `files`
--
DROP TABLE IF EXISTS `files`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `files` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`game_id` int(10) unsigned DEFAULT 0,
`name` varchar(255) NOT NULL DEFAULT '0',
`type` enum('GAME','GOODIES','PATCHES') NOT NULL,
`size` bigint(20) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `type` (`type`),
KEY `name` (`name`),
KEY `game_id` (`game_id`),
KEY `size` (`size`)
) ENGINE=InnoDB AUTO_INCREMENT=54783 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `files`
--
LOCK TABLES `files` WRITE;
/*!40000 ALTER TABLE `files` DISABLE KEYS */;
/*!40000 ALTER TABLE `files` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `games`
--
DROP TABLE IF EXISTS `games`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `games` (
`id` int(11) unsigned NOT NULL,
`title` varchar(255) NOT NULL,
`indev` tinyint(1) unsigned NOT NULL DEFAULT 0,
`new` tinyint(1) unsigned NOT NULL DEFAULT 0,
`updated` tinyint(1) unsigned NOT NULL DEFAULT 0,
`last_upload` int(11) unsigned NOT NULL DEFAULT 0,
`last_update` int(11) unsigned NOT NULL DEFAULT 0,
`thumb_id` varchar(64) DEFAULT NULL,
`bg_id` varchar(64) DEFAULT NULL,
`slug` varchar(255) NOT NULL,
`slug_folder` varchar(255) DEFAULT NULL,
`url` varchar(2083) DEFAULT NULL,
`release_date` int(11) unsigned DEFAULT NULL,
`developer` varchar(255) DEFAULT NULL,
`publisher` varchar(255) DEFAULT NULL,
`category` varchar(255) DEFAULT NULL,
`hidden` tinyint(1) unsigned NOT NULL DEFAULT 0,
`uploading` tinyint(1) unsigned NOT NULL DEFAULT 0,
`queued` tinyint(1) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `unq_slug` (`slug`),
UNIQUE KEY `unq_slug_folder` (`slug_folder`),
KEY `cat` (`category`),
KEY `pub` (`publisher`),
KEY `dev` (`developer`),
KEY `slug` (`slug`),
KEY `rlsdate` (`release_date`),
KEY `hidden` (`hidden`),
KEY `indev` (`indev`),
KEY `new` (`new`),
KEY `updated` (`updated`),
KEY `title` (`title`),
KEY `last_upload` (`last_upload`),
KEY `date_added` (`last_update`),
KEY `slug_folder` (`slug_folder`),
KEY `uploading` (`uploading`),
KEY `queued` (`queued`),
KEY `thumb_id` (`thumb_id`),
KEY `bg_id` (`bg_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `games`
--
LOCK TABLES `games` WRITE;
/*!40000 ALTER TABLE `games` DISABLE KEYS */;
INSERT INTO `games` VALUES (1,'Fallout Classic',0,0,0,0,0,'0ef80c3dc9692710809e4adaf2fcd3348f9ede1f530af6182c2972c86238e71a','c56bad8b70314d26f24c8c83c4e5cd868d01febac500f2401ad44ed2c9a597be','fallout_classic','fallout_classic','http://www.gog.com/game/fallout',0,'Interplay Inc.','Bethesda Softworks LLC','Role-playing',0,0,0),(2,'Fallout 2 Classic',0,0,0,0,0,'e53d34bde0d96488b581a2e79fe3f9b25eabc9e51c990361443aa7b9c7660dd2','2405d078c16fc6b25414d2f08725596b955f5ca899ae30f317de7269dfefa22b','fallout_2_classic','fallout_2_classic','http://www.gog.com/game/fallout_2',0,'Interplay Inc.','Bethesda Softworks LLC','Role-playing',0,0,0),(3,'Fallout Tactics Classic',0,0,0,0,0,'4f7a5f52b7618dc9f51ac95c4106182a3321053c381e9b4015a943856edffea4','36b667e12a68adc06c8fd03f8b89cbec4b90d5503a91692392592318984c8c3f','fallout_tactics_classic','fallout_tactics_classic','https://www.gog.com/game/fallout_tactics_classic',0,'14° East','Bethesda Softworks LLC','Role-playing',0,0,0),(4,'Descent: Freespace Battle Pack',0,0,0,0,0,'58e9a905ef59d7a9882ccad71bd4af68c3288679c64d829b6e30ae32d7a2e953','72acc4b3e6c4d69d511fcd77a19141b49092578201ac9e439ac9e560c7a5c9d0','freespace_expansion','freespace_expansion','https://www.gog.com/game/freespace_expansion',0,'Volition','Interplay','Simulation',0,0,0),(5,'Freespace 2',0,0,0,0,0,'d73f470c34ac19b3f35638d177689507d2663d9974c0b3ff4e5c6e733f916e2d','b48edf201cc0417576e2c792c200e4cc43c6556e2bdf0b987e141026c9e933d5','freespace_2','freespace_2','https://www.gog.com/game/freespace_2',0,'Volition','Interplay','Simulation',0,0,0),(6,'MDK',0,0,0,0,0,'c02a5a3b627f4682a672f14b716334a9b37acc554308852396c3b6fc89ee405d','e1b2c24a959b9b238edbd00a88b08361084d198c4f6084221c6ab0b5486c0106','mdk','mdk','https://www.gog.com/game/mdk',0,'Shiny Entertainment','Interplay','Action',0,0,0),(7,'Messiah',0,0,0,0,0,'c4b3a466c8925326b5f8a887728ba1be2a6103593e52e245f8f27ef507bc4d1a','acc52817f646a884b003b3fa1e3896b37aed2075a6c99739976910b575a6902b','messiah','messiah','https://www.gog.com/game/messiah',0,'Shiny Entertainment','Interplay','Action',0,0,0),(8,'Lionheart: Legacy of the Crusader',0,0,0,0,0,'ae76710bc8824fb60d2e4b9c35f3c374f99a32c74e3800910d72be4a61adf743','c80f83d3d799f8397745a8fb7ca78b06d979e02339e67f9071cd57488bebc59c','lionheart_legacy_of_the_crusader','lionheart_legacy_of_the_crusader','https://www.gog.com/game/lionheart_legacy_of_the_crusader',0,'Reflexive Entertainment','Interplay','Role-playing',0,0,0),(9,'Kingpin: Life of Crime',0,0,0,0,0,'46be11273ec3b4be47c4d74086e76a7dff2ed59b31c83d94e7509dcabfdd4a1a','52fece2aa9d27afcf82fe3625c4bf03aa977d6690cf17b49bf846c265e929687','kingpin_life_of_crime','kingpin_life_of_crime','https://www.gog.com/game/kingpin_life_of_crime',0,'Xatrix Entertainment','Interplay','Shooter',0,0,0),(1073954123,'Atlantic Fleet',0,0,0,0,0,'307370ab758fbd08bb6dcef7472926134f2f714e5a71ee00d87581d6836280dd','133d64a607c0227b2518551f1cf40921b4863bf7a536261977b2be49aaeba863','atlantic_fleet','atlantic_fleet','https://www.gog.com/game/atlantic_fleet',0,'Killerfish Games','Killerfish Games','Simulation',0,0,0),(1074372977,'Nightmares from the Deep 3: Davy Jones',0,0,0,0,0,'53e8f54467b5b3725f8185e83212e3576572ba0bba0f89b1b8e87c2fb0180128','84a5dd07e6740e4601831fbd809584f26ff06c496eafbd90ef445d1b85d54a52','nightmares_from_the_deep_3_davy_jones','nightmares_from_the_deep_3_davy_jones','https://www.gog.com/game/nightmares_from_the_deep_3_davy_jones',0,'Artifex Mundi','Artifex Mundi','Adventure',0,0,0),(1075740587,'Vambrace: Cold Soul',0,0,0,0,0,'0846d1f218b1228a787584e65cd6856457726d942f64ed604030bd134e67310f','fc07de99cdb2b36a80005eb9805f1bb9f67f94a8a328e88cf44a36837263f963','vambrace_cold_soul','vambrace_cold_soul','https://www.gog.com/game/vambrace_cold_soul',0,'Devespresso Games','Headup Games','Adventure',0,0,0),(1076629028,'Virginia',0,0,0,0,0,'b68de7c99a9f4cd8b2b44d0a4a473a2b4e6dfdf8bfc839ecf8f4d9cd600a3694','6d6048d058147e2745113322ae2b131b1756667c6b8706f746cec903cd6337f6','virginia','virginia','https://www.gog.com/game/virginia',0,'Variable State','505 Games','Adventure',0,0,0);
INSERT INTO `games` VALUES (1076642617,'Pathologic 2',0,0,0,0,0,'fb2fd36f67e09357086e9dadf0692770676f98026a68e5e87d9725c8b005a079','a362b347c09c345314179946ea2278fcd35d66e6c62ed769d09dccdfafb3dedb','pathologic_2','pathologic_2','https://www.gog.com/game/pathologic_2',0,'Ice-Pick Lodge','tinyBuild','Adventure',0,0,0),(1077893077,'My Time At Portia',0,0,0,0,0,'abfe26b0c276a1f367fa0dfb5b35915e59fe8e28d3711215038b9b41c71f1946','ad346bf2fff71a837e2ea1485a1bb675ac1ef5880b168a5ee0a8b7fb1960ee97','my_time_at_portia','my_time_at_portia','https://www.gog.com/game/my_time_at_portia',0,'Pathea Games','Team17 Digital','Simulation',0,0,0),(1079289132,'Delta Force',0,0,0,0,0,'14da7c72ccfe12cbe0fc6693d0ae9d0a80d355d996667b10fc188ebb8794476d','c13d5addb72db03c72d2638e04444c0635ab541b2038dd7aaaa178a362f86fb4','delta_force','delta_force','https://www.gog.com/game/delta_force',0,'NovaLogic Inc.','THQ Nordic GmbH','Action',0,0,0),(1079762750,'Momodora: Reverie Under the Moonlight',0,0,0,0,0,'5d9dd90e9a946f2ff14ae0df17b02a6675d972668164454a370da641beb8f3f7','1ba57d9708209cefd67cf10e14e4ca5c3776338af06e8afbc132d66163243938','momodora_reverie_under_the_moonlight','momodora_reverie_under_the_moonlight','https://www.gog.com/game/momodora_reverie_under_the_moonlight',0,'Bombservice','Active Gaming Media','Action',0,0,0),(1080818996,'Higurashi When They Cry Hou - Ch.3 Tatarigoroshi',0,0,0,0,0,'96329fee1d0eae51b794df42f3612dff459342fdbf4ab0609b9902a645fc1661','2834c21773806c20135b50ae32a74dc376c3faabd97e36bd2a4f1422a5322967','higurashi_when_they_cry_hou_ch3_tatarigoroshi','higurashi_when_they_cry_hou_ch3_tatarigoroshi','https://www.gog.com/game/higurashi_when_they_cry_hou_ch3_tatarigoroshi',0,'07th Expansion','MangaGamer','Adventure',0,0,0),(1081614865,'Ken Follett’s The Pillars of the Earth - Season Pass',0,0,0,0,0,'3b39babcd29518ef9f06a82004a6a8259fd59e35cb31d9a1bb5786c5588ae8bc','8a0419813614214deedace1e289ef75ffce3f70143198dfb4210214cc18276c4','ken_folletts_the_pillars_of_the_earth_season_pass','ken_folletts_the_pillars_of_the_earth','https://www.gog.com/game/ken_folletts_the_pillars_of_the_earth_season_pass',0,'Daedalic Entertainment','Daedalic Entertainment','Adventure',0,0,0),(1083434718,'Drakkhen',0,0,0,0,0,'7ffa81aebf334761f74b46c36bc2b35175bf12da7c6de1dc67f4901e4e7e8d64','ea21950733f16403c4181061113ca388c9273a05012b43710d616845c6a78d35','drakkhen','drakkhen','https://www.gog.com/game/drakkhen',0,'Infogrames Europe SA','Piko Interactive','Role-playing',0,0,0),(1084764045,'Do Not Feed the Monkeys',0,0,0,0,0,'88640c120adb4daa3641bd09d22f775eab7aaf1a8487db4edb22bb21afc99230','bc5c0be4271899dd8f7c6498f436f06886c05441641ae666a2924002ac193929','do_not_feed_the_monkeys','do_not_feed_the_monkeys','https://www.gog.com/game/do_not_feed_the_monkeys',0,'Fictiorama Studios','Alawar Premium','Simulation',0,0,0),(1086743022,'Hello Neighbor',0,0,0,0,0,'478c0e4e7ae07e2c3434b8f3b75dd5af8362a1d7a3463433eca267a87f4a513b','1cbbdd3de83a7e56c511e31a90c0feb0e1680f9b6ffe8982d03821b40187e2c0','hello_neighbor','hello_neighbor','https://www.gog.com/game/hello_neighbor',0,'Dynamic Pixels','tinyBuild','Action',0,0,0),(1089914798,'Orwell: Ignorance is Strength',0,0,0,0,0,'a1e1fbc7aadbd966faf87607c06e01457a68745f9c303ba6a2873b4bc5576dd6','c484fd16d3a9b3b78f1ba1d02c9668f6eff2333d16c32c437491750d6239ce11','orwell_ignorance_is_strength','orwell_ignorance_is_strength','https://www.gog.com/game/orwell_ignorance_is_strength',0,'Osmotic Studios','Fellow Traveller','Simulation',0,0,0),(1090728382,'Figment',0,0,0,0,0,'c8d0c9882d6d6da599d0a423d1e660269b9c63503a60d6eb6d33f87488b2ade8','686d7e0a1fc99adc3e601e45f4d95e03f5e86641e9223cb583054d20d544c692','figment','figment','https://www.gog.com/game/figment',0,'Bedtime Digital Games','Bedtime Digital Games','Action',0,0,0);
INSERT INTO `games` VALUES (1091423420,'Cook, Serve, Delicious! 2!!',0,0,0,0,0,'6ec9983a40fb8519d39c7ee09f76f793020a71ece5edd2942a90c246797f8112','a32c791a0a92d5066707be0ae05b4ab52b0d3d62a2e5eec273123e3c7c4a4493','cook_serve_delicious_2','cook_serve_delicious_2','https://www.gog.com/game/cook_serve_delicious_2',0,'Vertigo Gaming Inc.','Vertigo Gaming Inc.','Simulation',0,0,0),(1091958310,'Phantom Trigger',0,0,0,0,0,'413887708884cdfa9c486e7bc269b2c8f90a47e88ade8fa2c5d8b4d7f6cfd24d','aeff8483c503b18f3010af2167c7b6ba6918ca915ff64d89e5b6895eec959f0c','phantom_trigger','phantom_trigger','https://www.gog.com/game/phantom_trigger',0,'Bread Team, Victor Solodilov, Denis Novikov ','tinyBuild','Action',0,0,0),(1096313866,'140',0,0,0,0,0,'e2bcfd5f2a8052460af43020b5db0ab3c92c95c2ddcdfe8d62dbe4ed270503d4','fa24ab919f018e70eca4248c74e3c93e1e8cded0c97ef72a6f1c4bde3a0716d6','140_game','140_game','https://www.gog.com/game/140_game',0,'Carlsen Games','Carlsen Games','Action',0,0,0),(1097098068,'Fear Effect: Sedna',0,0,0,0,0,'f2e12be9126fc74b89803880dc005c1e1fb4d7ec20c0745a875c8ec8b5115ea7','b2a83171276a30f9ba8536611dba81ffc9b5d64c0009df4366b9181407835d4f','fear_effect_sedna','fear_effect_sedna','https://www.gog.com/game/fear_effect_sedna',0,'Sushee','Square Enix, Forever Entertainment S. A.','Strategy',0,0,0),(1098355601,'The Long Reach ',0,0,0,0,0,'23948aa255e85d8f896934ffdabea24536ee10a912f11f90242b2271261df9a2','bfc9bbfc331889a70c5c727908f285c616754848ff79c4da74096d5e2c75bf18','the_long_reach','the_long_reach','https://www.gog.com/game/the_long_reach',0,'Painted Black Games','Merge Games','Action',0,0,0),(1098700594,'Megamagic: Wizards of the Neon Age',0,0,0,0,0,'70e51a814bf4f0dfa8b7fb5c2d921c4e3c46eccdbe58a2c62afaa8f2a14fecc3','85893230d91c4bee6e5fe27e7c6c64968759fa2063c9d94aba71d73ef9bddace','megamagic_wizards_of_the_neon_age','megamagic_wizards_of_the_neon_age','https://www.gog.com/game/megamagic_wizards_of_the_neon_age',0,'BeautiFun Games','BeautiFun Games','Action',0,0,0),(1098996397,'Cinders',0,0,0,0,0,'0ef3e542f40fbd672a6647a9b0cee5aed42fb7b39f6d0de1dfc21744b95e3214','6ad7f3c0437fa4e28dbfbe6fa3da6023adfbb7b2a74faa59958b93ab52bdf750','cinders','cinders','https://www.gog.com/game/cinders',0,' MoaCube',' MoaCube','Adventure',0,0,0),(1099471765,'Slipstream',0,0,0,0,0,'68875e904fb3e49789b708fa456432062b36286ec1521e7cb730a9abd570cc6c','b831c9ad9074f6c62d14f4da657d4b412a8bf7fbf1d7431096805d24d03c9bc6','slipstream','slipstream','https://www.gog.com/game/slipstream',0,'ansdor','ansdor','Racing',0,0,0),(1102856701,'My Friend Pedro',0,0,0,0,0,'762861befc69b31b7ae1dc7fadf5454c319c37c37647d9c0d21d624d45868636','ccba0f2c46dae8dd7df2c3df0dba55fc619aa55c4e465ee8431cccad3b06acb0','my_friend_pedro','my_friend_pedro','https://www.gog.com/game/my_friend_pedro',0,'DeadToast Entertainment','Devolver Digital','Action',0,0,0),(1104118179,'15 Days',0,0,0,0,0,'d31bb8b7b44635add29f37a025033a01094938c89759fca2115e3f4702178b36','cfb6b372f9b8aef8eeb5859998b39152b2b2cbd7cf2979a0b768422e57bf3488','15_days','15_days','https://www.gog.com/game/15_days',0,'House of Tales','HandyGames','Adventure',0,0,0),(1104739253,'8-bit Hordes',0,0,0,0,0,'8b7758a58ae60cc32d2aca74054d4f41ed090978c3722ba5da467aebd04eb143','65682ea3104d626723b20f2bf44754696069496adc0ffeb8280bebccbcc722b1','8bit_hordes','8bit_hordes','https://www.gog.com/game/8bit_hordes',0,'Petroglyph Games','Petroglyph Games','Strategy',0,0,0),(1106698055,'Realpolitiks',0,0,0,0,0,'32b167cb73d644b67afce1abb89d0f5da7edd7efaa5f2ebaedfad7140bd75377','72b0b16d7bab6616a7503bd7498e8ef78456f1e94473c1c595f1366418616342','realpolitiks','realpolitiks','https://www.gog.com/game/realpolitiks',0,'Jujubee S.A.','1C Company','Strategy',0,0,0);
INSERT INTO `games` VALUES (1106707958,'Indiana Jones® and the Infernal Machine™',0,0,0,0,0,'21895af5df9cc900bf6610a9c36f6fd8e8ca545d2c7edbe4c924ac8faf2d617b','230ce5ccdb643f43efbd7fe3ac4b8f078c922f8c90ea7e22e1deb62998932a08','indiana_jones_and_the_infernal_machine','indiana_jones_and_the_infernal_machine','https://www.gog.com/game/indiana_jones_and_the_infernal_machine',0,'Lucasfilm','Disney','Action',0,0,0),(1107785727,'Strategic Command Classic: Global Conflict',0,0,0,0,0,'5283c619c1e1859154669649bd48d4ee5e3816b2b83e44b15e8bf4fd4a4913db','0b941c6d3bc476b7dac0a3b0fbf3e8f98d9c36f8af4c3c9297ca28f4bad55d45','strategic_command_classic_global_conflict','strategic_command_classic_global_conflict','https://www.gog.com/game/strategic_command_classic_global_conflict',0,'Fury Software','Slitherine Ltd.','Strategy',0,0,0),(1108393852,'Return of the Obra Dinn',0,0,0,0,0,'6d725d2e3ffdab8043e078b6aaa9b0bfd9fc3316d82e4a257735e0bc5dc991f3','f759c13caa26ae51b90129b2d88a90c8c21c2605c0bcf0e9dafa3dbb3b5291a5','return_of_the_obra_dinn','return_of_the_obra_dinn','https://www.gog.com/game/return_of_the_obra_dinn',0,'Lucas Pope','3909 LLC','Adventure',0,0,0),(1108791957,'Quake 4',0,0,0,0,0,'cbcc88126e6c2dabc0b8d8316482aced5ec09255e5fc2517a27e37ca76b56fc3','b3886024606808fbe36158a1c3d0c589e24b06a69f09640ccd2426289e895a24','quake_4','quake_4_game','https://www.gog.com/game/quake_4',0,'RavenSoft / id Software','Bethesda Softworks LLC','Shooter',0,0,0),(1111208428,'BioShock™ 2 Remastered',0,0,0,0,0,'21ea45df7a589d7671a774a2748e1a0fed48dcc5b713c199b64638b539ace392','7915591b52c5e6a225945ed54c4bb41d8894c885f855a10a4ff6aaa1d92e801c','bioshock_2_remastered','bioshock_2_remastered_game','https://www.gog.com/game/bioshock_2_remastered',0,'2K Marin, 2K China, Digital Extremes, 2K Australia, Blind Squirrel','2K Games','Shooter',0,0,0),(1113278046,'Plane Mechanic Simulator',1,0,0,0,0,'cf17b0656a016a7109453ce8164112b7371de1a6b5da8436db7856cabd874498','eea2d42c66d9f34ac93f575a1663e9944c001e61bb1fc979fa17cc7118c47014','plane_mechanic_simulator','plane_mechanic_simulator','https://www.gog.com/game/plane_mechanic_simulator',0,'Disaster Studio','Plug In Digital','Simulation',0,0,0),(1115004086,'We are the Dwarves',0,0,0,0,0,'f3fc5110844e065535913fe2e32a78076d4339cc83edaa8735837d2120602c85','da24cd7451ec11f671330e5918ef6484d88d214a01a38f238de533ce072ce8dd','we_are_the_dwarves','we_are_the_dwarves','https://www.gog.com/game/we_are_the_dwarves',0,'Whale Rock Games','Whale Rock Games','Action',0,0,0),(1116345066,'MarZ: Tactical Base Defense',0,0,0,0,0,'2b9fa88a956822fa1d0e70deeb56bbc6be1350393e8794f281c872fcd1415463','4c38722b2049aa13b9861ae20f8807c3b7640557ca263ee3c2539e536f26cc94','marz_tactical_base_defense','marz_tactical_base_defense','https://www.gog.com/game/marz_tactical_base_defense',0,' doorfortyfour',' doorfortyfour','Strategy',0,0,0),(1116941879,'Sundered®: Eldritch Edition',0,0,0,0,0,'3db893c9087f3a8a0dd84718602a8800bcd7c6e4cf9cace85e250d59e4e2bfb1','e38f2acdb88d439c9f48ce3794405f3cdd24f177e7fa77e18d66eca4dc2387c8','sundered','sundered','https://www.gog.com/game/sundered',0,'Thunder Lotus Games','Thunder Lotus Games','Action',0,0,0),(1117322977,'Heaven\'s Vault',0,0,0,0,0,'5f530556ac2fe1c1e74ea89a1de95b6941353fdf7e41cfe16128ec229c96e359','b81fea27e71c30fa2d041fcea2c82be88e4604bc0cb690701a1551a2f08eb831','heavens_vault','heavens_vault','https://www.gog.com/game/heavens_vault',0,'inkle Ltd','inkle Ltd','Adventure',0,0,0),(1117508714,'Disney\'s Hercules',0,0,0,0,0,'747d7ab8bc203a7dd3c0f30ad4a835a1908af411b09aadec49a08719739f9120','e03a5485c9c1acb3de863a221bacc626f296f350f925adb1aada3d6e123265cb','disneys_hercules','disneys_hercules','https://www.gog.com/game/disneys_hercules',0,'Disney Interactive Studios','Disney','Action',0,0,0);
INSERT INTO `games` VALUES (1118073204,'Sphinx and the Cursed Mummy',0,0,0,0,0,'cbab20abddb27cfb4e4ef20ca3c41216c70d18c46fe023d75760f310d700a304','5c52e54ca0d0482a45c3bb3d391027a02c7822371b7f3cfa828d1f8aa45fc291','sphinx_and_the_cursed_mummy','sphinx_and_the_cursed_mummy','https://www.gog.com/game/sphinx_and_the_cursed_mummy',0,'Eurocom','THQ Nordic GmbH','Action',0,0,0),(1119459074,'Fallen Haven: Liberation Day',0,0,0,0,0,'aef9fcab0ccc801a85c0e5ff515e0bfe5ebbb0cc1db592a060777d899522a1b0','3acd52c46913f288f419f864c2e3aa7aac20cb931b2d9e56fb66088458291e80','fallen_haven_liberation_day','fallen_haven_liberation_day','https://www.gog.com/game/fallen_haven_liberation_day',0,'Les Productions Micomeq','iEntertainment Network Inc.','Strategy',0,0,0),(1119659879,'OmniBus: Game of the Year Edition',0,0,0,0,0,'00d6d30d344e25f4a6d890266476ea70fd362aebc391b737ad233725c0b803d0','31782b266caec49b20631f12ae22641c5cf6ada2a08ee3acbce0a3305d9e7f0c','omnibus','omnibus','https://www.gog.com/game/omnibus',0,'Buddy Cops LLC ','Devolver Digital','Racing',0,0,0),(1119875193,'Night Call',0,0,0,0,0,'57ba043d4fd6e10d9784c7fbd687d3fc7ebeb80468932d9a124d6ce691ca7f08','4edbce1e2a25a98dca47ba4a3b54dee8d28ab91d8d2a5ac7d408abd53af6c6c7','night_call','night_call','https://www.gog.com/game/night_call',0,'Monkey Moon, Black Muffin','Raw Fury','Adventure',0,0,0),(1120387413,'Battlezone: Combat Commander',0,0,0,0,0,'44f47b72a5495818b36c0a6c5ef398fa836af3001d48b2add17948f79d249662','5b4420e5c4daccf2ba1bdceecc6d09ad63b193a22ba5582a483b9e1ef209ee64','battlezone_combat_commander','battlezone_combat_commander','https://www.gog.com/game/battlezone_combat_commander',0,'Big Boat Interactive','Rebellion','Strategy',0,0,0),(1120573264,'Serment - Contract with a Devil',0,0,0,0,0,'465f780e40d0bd469351a5c78efd15f25d8fc3465523aa18a20e6bd73265c993','8e342fb296692702aafbe750bc80aee544213ef91bf718773e1576f3d3b7ef94','serment_contract_with_a_devil','serment_contract_with_a_devil','https://www.gog.com/game/serment_contract_with_a_devil',0,'Nkt Studio','Sekai Project','Role-playing',0,0,0),(1121892325,'Disney The Jungle Book',0,0,0,0,0,'183ee4e2ca273869cc29bb543d97afb55f1a99e7ca0d03144f13672544bbaadb','9ad0c31bba37bfc9f8c10c4d553715dd0cf013771e94721ab021bc1898a47ac6','disney_the_jungle_book','disney_the_jungle_book','https://www.gog.com/game/disney_the_jungle_book',0,'Eurocom','Disney','Action',0,0,0),(1123662938,'SpellForce 2 - Anniversary Edition',0,0,0,0,0,'091dfb2493ebe61379566219b045d015b62964528c59d6d4525c2df7ddb1b715','392de411291c91b7861e12722abbca532fabadb950d8602a2d24f5cc3a567dd8','spellforce_2_anniversary_edition','spellforce_2_anniversary_edition','https://www.gog.com/game/spellforce_2_anniversary_edition',0,'Phenomic, THQ Nordic GmbH','THQ Nordic GmbH','Role-playing',0,0,0),(1123684973,'Rad Rodgers',0,0,0,0,0,'9514527709c7bb7810f48eb2b3d59d6e58983cc446623c101f0b354a97fdbb61','a65567764ee81b3ddc2ffc318fa13559497650012374e964da4c38ee9f9009ea','rad_rodgers','rad_rodgers','http://www.gog.com/game/rad_rodgers',0,'Slipgate Studios','THQ Nordic GmbH','Action',0,0,0),(1123993222,'Opus Magnum',0,0,0,0,0,'0f491a893df945d35f79e164555464ed3416c4d4e8f8ba233956d18d291628f4','76ef8ea9c3ccea03827629b58543195d5a18848a71a4f780a58c856e36eb072a','opus_magnum','opus_magnum','https://www.gog.com/game/opus_magnum',0,'Zachtronics','Zachtronics','Simulation',0,0,0),(1124718952,'Nex Machina',0,0,0,0,0,'d6116860e1e5dab40feb7a4b360a2c96adf3835bbe1a7f514168d98d5223f75b','4bb79d8d67926d88e007b3d37a0ed3ce842344a55bd660b98b9d1cb2bc3b1824','nex_machina','nex_machina','https://www.gog.com/game/nex_machina',0,'Housemarque','Housemarque','Shooter',0,0,0),(1125796684,'Soldier of Fortune: Payback',0,0,0,0,0,'2e65fbd70a58e5f78dcfe486c36c4cd3f2d480dc7a20c3e74c91477f15b2d890','aaa067514832f08339c959692638c3566b9b2d1ac9a0c2144c34c13e87288cab','soldier_of_fortune_payback','soldier_of_fortune_payback','https://www.gog.com/game/soldier_of_fortune_payback',0,'Cauldron Ltd.','Activision','Shooter',0,0,0);
INSERT INTO `games` VALUES (1126406171,'Niche - a genetics survival game',0,0,0,0,0,'5c505c71ba7c3832c39192643c78b60a1021f084918e9c8f2b62a262bbe4d266','dd526c8873049935aca865c113b303b8de9710b3b06869c8e08155d2cd53499e','niche','niche','https://www.gog.com/game/niche',0,'Stray Fawn Studio','Stray Fawn Studio','Strategy',0,0,0),(1128886553,'Lorelai',0,0,0,0,0,'7617a137a072c7596d06f2bbf31a7744050be0e32735e7e7b25c31bdf1dd4434','59189772af3691c31c1d1eb67373ac9b95480abefdd2bf5546325df1f8adde8d','lorelai','lorelai','https://www.gog.com/game/lorelai',0,'Harvester Games','Screen 7','Action',0,0,0),(1129701343,'Jill of the Jungle: The Complete Trilogy',0,0,0,0,0,'b6184bdfe32a6b50777057d0b599c4e00758a68e31ebdaad2d737839b0fb170d','46c1ffa7dccc1911642a028267121d46d33a43e72a06a9b4cf66679c4d402560','jill_of_the_jungle_the_complete_trilogy','jill_of_the_jungle_the_complete_trilogy','https://www.gog.com/game/jill_of_the_jungle_the_complete_trilogy',0,'Epic Games','Epic Games','Action',0,0,0),(1130879425,'Avadon 3: The Warborn',0,0,0,0,0,'d2a85b37027f95be3018cf586533de705979338cea2428b9d264c1a3ec6b2ed5','a5bc0ced8089827569f1a735ada9c7c3cec3652b60ad302f5c9aaa904f0e15f4','avadon_3_the_warborn','avadon_3_the_warborn','https://www.gog.com/game/avadon_3_the_warborn',0,'Spiderweb Software','Spiderweb Software','Role-playing',0,0,0),(1133130154,'The Silver Case',0,0,0,0,0,'591807e0e15a16419f3121a37feff0b83b2b08a6c66b89e8507b9e48ce205148','23f1e0df7bea6ac32ac6a4e860025e2fd6008954c06a43c4ad1a50f9ab56da9b','the_silver_case','the_silver_case','https://www.gog.com/game/the_silver_case',0,'Grasshopper Manufacture Inc., AGM Playism','Active Gaming Media','Adventure',0,0,0),(1133514031,'Bloodstained: Ritual of the Night',0,0,0,0,0,'05a310bc9145a202623035cad6303d383672c7e0f4d5b6ec4d629ba0a0218b0d','f5a3422c6ec8a6560de467bc0bfe33f4844f01e54d9c2c73b31fb5f5a449a1cc','bloodstained_ritual_of_the_night','bloodstained_ritual_of_the_night','https://www.gog.com/game/bloodstained_ritual_of_the_night',0,'ArtPlay','505 Games','Action',0,0,0),(1133536995,'Quern - Undying Thoughts',0,0,0,0,0,'3a7279aa4d6b088dca7c8dacae8e6cfe23372182e9927c8c5ea0bfdfc52a9ced','9bf829d192c1a5c8efab399746fc605d498a9192d730fe7b06c78295364b57b9','quern_undying_thoughts','quern_undying_thoughts','https://www.gog.com/game/quern_undying_thoughts',0,'Zadbox Entertainment','Zadbox Entertainment','Adventure',0,0,0),(1135130303,'60 Parsecs!',0,0,0,0,0,'1f28e82a76b56ce7812b6a13fbb55d1a8d0f791446409314db4843c832f12ecd','c9f6cfa59b4d784dc3ee31a05e3e3bf23881ded8d73ea92a0ed80dd7eabad9b2','60_parsecs','60_parsecs','https://www.gog.com/game/60_parsecs',0,'Robot Gentleman','Robot Gentleman','Strategy',0,0,0),(1135331377,'fault - milestone two side:above',0,0,0,0,0,'0ac320304f0a1062448beecd00ca0861b03f9809d5683494c141b2a22fecc099','84f8be329866ffc6325f74791e75a725ef292ebf9d4fb9674e4ab74ffe2a9edf','fault_milestone_two_sideabove','fault_milestone_two_sideabove','https://www.gog.com/game/fault_milestone_two_sideabove',0,'ALICE IN DISSONANCE','Sekai Project','Adventure',0,0,0),(1135975449,'X-Morph: Defense Complete Edition',0,0,0,0,0,'79b952206586baecd5f90ef5e91ad67824961797f42b1a15081399d8391a8dd7','72ede7861a6c13d237fea7fcb862101bd6ffcee3c800dd83d0cc21addf5d0aaa','xmorph_defense_complete_edition','xmorph_defense_complete_edition','https://www.gog.com/game/xmorph_defense_complete_edition',0,'EXOR Studios','EXOR Studios','Action',0,0,0),(1136471182,'METAL SLUG',0,0,0,0,0,'d9b4aad087af9241b3dcc3447f498fd1052c097436c0eb9871bbff081cfc6f5b','6792fa652cb9933b7db18b56d21dd0cfeb3f11496eb8f3ca5a74de54c1723787','metal_slug','metal_slug','https://www.gog.com/game/metal_slug',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(1139980926,'Battle Princess Madelyn',0,0,0,0,0,'37534e72fa3ecba2af1abcfddb035db7bec2787371c556c8036251fe8fac9cb6','6f4063247641cfbcc27a1722aa2c1c37f90999d248706bc5c508cb78d6a624d8','battle_princess_madelyn','battle_princess_madelyn','https://www.gog.com/game/battle_princess_madelyn',0,'Causal Bit Games Inc.','Causal Bit Games Inc. / Hound Picked Games','Action',0,0,0);
INSERT INTO `games` VALUES (1140907376,'House Flipper',0,0,0,0,0,'de7092d0436187d008b57ecff15330081872cb770587cade6bcd9e2a295a496e','4219e5956e7befedda1ed6cbba1a37e344425bdd68db084a1f81a615b0b65ba7','house_flipper','house_flipper','https://www.gog.com/game/house_flipper',0,'Empyrean','Frozen District, PlayWay S.A.','Simulation',0,0,0),(1143171575,'Mages of Mystralia',0,0,0,0,0,'9695e77968411f3a24d60e192b6b76c164d8cbee29addf384b474c0bd48c9b24','37ff6781906bffc516257784b88f94092d77e3f1a73096d68d438cd020cbb67f','mages_of_mystralia','mages_of_mystralia','https://www.gog.com/game/mages_of_mystralia',0,'Borealys Games','Borealys Games','Action',0,0,0),(1146716716,'Basingstoke',0,0,0,0,0,'09748f8ac3a7ca4ea5ec7b9b013e551744df20441d9780a042e6275d2c4b7cf5','e68dc9a57210f4d939a1b3d088f02b49e86fb546ff5b09eb312b43cf9bba4866','basingstoke','basingstoke','https://www.gog.com/game/basingstoke',0,'Puppygames','Puppygames','Action',0,0,0),(1146738698,'Carmageddon TDR 2000',0,0,0,0,0,'582afa462258de85a66d9f30ddac02d86115d6f3f8e311e5717c4668e6e3bfeb','ca152b594f34a57db23edb3543bcc25274a84826dc50f64446f6a6ac4b5f8f46','carmageddon_tdr_2000','carmageddon_tdr_2000','https://www.gog.com/game/carmageddon_tdr_2000',0,'Torus Games','THQ Nordic GmbH','Action',0,0,0),(1147957142,'Door Kickers: Action Squad',0,0,0,0,0,'48a9253776f2411cea6ab9448cac8fc72e6d4f02d34ae0f79d0e555d8385ba59','9aae87562c2911aff0287287974f74267782511291abcffe4ffa22dc98c511b6','door_kickers_action_squad','door_kickers_action_squad','https://www.gog.com/game/door_kickers_action_squad',0,'KillHouse Games','KillHouse Games','Strategy',0,0,0),(1148539461,'Nightmares from the Deep: The Cursed Heart',0,0,0,0,0,'580062e5b703136f52181b153ed3cadd6231593430ceb3006e1c1909f198361e','0c12cc22bd95c94f2fcab634c9573ed8952028176d4470d9901e82c048d3fabb','nightmares_from_the_deep_the_cursed_heart','nightmares_from_the_deep_the_cursed_heart','https://www.gog.com/game/nightmares_from_the_deep_the_cursed_heart',0,'Artifex Mundi','Artifex Mundi','Adventure',0,0,0),(1154606028,'West of Loathing',0,0,0,0,0,'b96fc80eae76421fd9b805d05ee1f8e9cdaa672cc0a7bb4b530755d096cc0b83','684d5a9d5e57768f1ae27caf4a2b72de76f558b49fb4a12c4758a54039716f4c','west_of_loathing','west_of_loathing','https://www.gog.com/game/west_of_loathing',0,'Asymmetric','Asymmetric','Adventure',0,0,0),(1159267503,'Seasons after Fall',0,0,0,0,0,'2c0042beb38f9029863561fc5304bf20c746173fbd613f7e68bf22085418b328','7b3e73f4cf0d3f7f727ba69e3a8d986be774005f5fd96d31370b4a654c28a416','seasons_after_fall','seasons_after_fall','https://www.gog.com/game/seasons_after_fall',0,'Swing Swing Submarine','Focus Home Interactive','Adventure',0,0,0),(1159880091,'Owlboy',0,0,0,0,0,'493551fc374028acc1124e0af508bbf558a385d773da92c49537fc8b60e71d33','72a964b9ac6e174fef897a4b8a142e9cfda1814c4c155468e4d431aff60f9b3f','owlboy','owlboy','https://www.gog.com/game/owlboy',0,'D-Pad Studio','D-Pad Studio','Action',0,0,0),(1160509725,'Delta Force Xtreme',0,0,0,0,0,'05e0a031367bbb140bde470d8a9c149ca2056a1b2a518f57cd5aa9ac55f38760','97594e0c5d3e54a3d0c3ec75dd8b0a103917d3a693cbf86cdd4d7b29ab9ac442','delta_force_xtreme','delta_force_xtreme','https://www.gog.com/game/delta_force_xtreme',0,'NovaLogic Inc.','THQ Nordic GmbH','Action',0,0,0),(1161151493,'Halcyon 6: Lightspeed Edition',0,0,0,0,0,'c3b211de036204009f5c5698b854bbc7caaed5b21a3cd7cab4c1f5c008c29d32','623ca60efcbc3bcc3d46c2a46dc92832e553a717fde4c6ad305ca60c973f84c7','halcyon_6_lightspeed_edition','halcyon_6_lightspeed_edition','https://www.gog.com/game/halcyon_6_lightspeed_edition',0,'Massive Damage, Inc.','Massive Damage, Inc.','Role-playing',0,0,0),(1163079714,'Pathway',0,0,0,0,0,'b893aa9d605c25ba4ecd243f9f474e72f70e70c2b615e3908d99477718f34bb8','942bd094d17286676a654edf7fe4c5623776525915fd831719c2831b18deaed1','pathway','pathway','https://www.gog.com/game/pathway',0,'Robotality','Chucklefish','Adventure',0,0,0);
INSERT INTO `games` VALUES (1163487128,'The Coma: Recut',0,0,0,0,0,'4addedbe5f77f861e16097860a138b1d78de89fa2095ad9278ca808565f940f3','ca613ed8aed0a4d9c0e11d606a4539206d716f5de68fa506e6029c0c3d54d81c','the_coma_recut','the_coma_recut','https://www.gog.com/game/the_coma_recut',0,'Devespresso Games','Digerati','Adventure',0,0,0),(1165376925,'Archeo: Shinar',1,0,0,0,0,'8966e0d8f2ddebf9c5ccd0d3a61df3fe578b98d6f7a171dd749d16b22aedc2fb','ada77c2c075285920a022113fb44aa212157fdd9aa5e7d50f7a21533c281b00f','archeo_shinar','archeo_shinar','https://www.gog.com/game/archeo_shinar',0,'Artists Entertainment','Artists Entertainment','Strategy',0,0,0),(1165605891,'Mission Critical',0,0,0,0,0,'d222bdbc0c66d9cd4729dd84f41319b1fe92852359f6631398d69975e5ac7cf4','9bc54b23508cec151ce4f02302274995bc1c666e4e489734408c1d2355bad731','mission_critical','mission_critical','https://www.gog.com/game/mission_critical',0,'Legend Entertainment','Piko Interactive','Adventure',0,0,0),(1166252453,'Songbringer',0,0,0,0,0,'a0647176b1e5e60c2960b391b51b4406f101423f9b72e84456d0b8013278a251','c8e49393797548d2ea06a37a751f128b10f79a53e9504b8239db1170f54ce933','songbringer','songbringer','https://www.gog.com/game/songbringer',0,'Wizard Fu Inc.','Double Eleven Ltd.','Action',0,0,0),(1166983063,'The Bureau: XCOM® Declassified™',0,0,0,0,0,'a05eada7ef342f4f7930720d3b46aaaa7494334d3fc58a5c4491c2a4da1471ee','d2ebb0949d8fa9579dc34bed24193cff7ebcb1d49fecc046848a92c7524485b8','the_bureau_xcom_declassified','the_bureau_xcom_declassified','https://www.gog.com/game/the_bureau_xcom_declassified',0,'2K Marin','2K Games','Shooter',0,0,0),(1167891218,'Treasure Adventure World',0,0,0,0,0,'0b76cf6285faea7768d6f63cb036bc3bb6ac262892a712781ea2cb0e3d8ce1d1','770a0ee6810a6df9805b083a1aadbb62fb9970dcb9376e583deca3d11752b318','treasure_adventure_world','treasure_adventure_world','https://www.gog.com/game/treasure_adventure_world',0,'Robit Studios','Chucklefish','Adventure',0,0,0),(1167911806,'Phoning Home',0,0,0,0,0,'c07fb6821411546195400a7b0be5985168f1fde1af54edacd2d6db0284681869','8910e37dd834c693da413c267c7e17c75cca157aff6f06142a27309d67b14a70','phoning_home','phoning_home','https://www.gog.com/game/phoning_home',0,'ION LANDS','ION LANDS','Adventure',0,0,0),(1170675521,'Alice VR',0,0,0,0,0,'19a75d19f7bef65cc300e89a11b7061e2e9f13d8bbb2376a1a88f825a6ca6a1f','ebef16f0502695b084f6955feee71b0db5d5a0b4df0b136625d3b6a6a587ad53','alice_vr','alice_vr','https://www.gog.com/game/alice_vr',0,'Carbon Studio','Klabater','Adventure',0,0,0),(1171070121,'Brothers: A Tale of Two Sons',0,0,0,0,0,'2014e893e147820f3794ebc73f1779f68faaf0fbd38c7c236a9e563afcdbe831','5934e6ee04d850aefb755bca11377b6b4d47cf20d6d51a51d83f2dfee81da1f1','brothers_a_tale_of_two_sons','brothers_a_tale_of_two_sons','https://www.gog.com/game/brothers_a_tale_of_two_sons',0,'Starbreeze Studios AB','505 Games','Action',0,0,0),(1173909540,'Wuppo',0,0,0,0,0,'79e7124db855025ff0dc7cc0a9230697f53ee59139fc7610ba1b5c1cbb6dad0a','e038c73b59ed36c0c877b95f763c1a52e217011b9c881c5bdac12f0453ac13d3','wuppo','wuppo','https://www.gog.com/game/wuppo',0,'Knuist & Perzik','SOEDESCO Publishing','Adventure',0,0,0),(1174280500,'STAR WARS™: The Force Unleashed™ II',0,0,0,0,0,'943a1894a4a700955cdc7756ff0f04b0e9bbeabcb4f3ffd52bef38f588edb1dc','799193f7bb3cb88ab873408ef496e22912108ac14afa858660770c69e2aa10c4','star_wars_the_force_unleashed_ii','star_wars_the_force_unleashed_ii','https://www.gog.com/game/star_wars_the_force_unleashed_ii',0,'LucasArts','Disney','Action',0,0,0),(1175067557,'Pizza Connection 2',0,0,0,0,0,'66c7f7998f5fde839766e0051ba2a23eb0853ea9c9f8ed438db1d02cedcfedce','8517bace25afbc060a1ae00cb1bd6870aefd4962f4de3af28ccd82517cfc60ef','pizza_connection_2','pizza_connection_2','https://www.gog.com/game/pizza_connection_2',0,'Software 2000','Assemble Entertainment','Strategy',0,0,0);
INSERT INTO `games` VALUES (1176929400,'Medal of Honor™: Pacific Assault',0,0,0,0,0,'8e13aeef741dfe3f75f57fac388221c9b5b946ca37adcf48e523626e9ecfb43b','f8d0b84d0a646a89d07f4d6f7a4b69974fda9f5521eb9d761e3c1a6d5c4b9cda','medal_of_honor_pacific_assault','medal_of_honor_pacific_assault','https://www.gog.com/game/medal_of_honor_pacific_assault',0,'Electronic Arts','Electronic Arts','Shooter',0,0,0),(1178190421,'The Bard\'s Tale IV: Barrows Deep',0,0,0,0,0,'74d4a2e60b0d1d09ba168dbd1f60b06cbd622122d233888c28129939c49ee8b6','865a8b68cafba128efedcd60139a26048d9e56c64d4495a2a0f08f67b301e413','the_bards_tale_iv_barrows_deep','the_bards_tale_iv_barrows_deep','https://www.gog.com/game/the_bards_tale_iv_barrows_deep',0,'inXile Entertainment','inXile Entertainment','Action',0,0,0),(1180040534,'DISTRAINT: Deluxe Edition',0,0,0,0,0,'a1739118aaa0a006e9996bc6ded1306ebc1387643e1f6a4949cff83d2378151d','8d7d521af885e08cf69fa9a2f172ceb5871c85b4a67185bea8a08e23e1c6ecc9','distraint_deluxe_edition','distraint_deluxe_edition','https://www.gog.com/game/distraint_deluxe_edition',0,'Jesse Makkonen','Jesse Makkonen','Adventure',0,0,0),(1181344034,'Warlocks 2: God Slayers',0,0,0,0,0,'20663c2b3f31671c548f9841343605880540d681ab8a3c1a6197357cb4265274','d5f4feecbc8eb8d252ea0ce30b02e192c0862b95ad950ff1080d6d95418a23e3','warlocks_2_god_slayers','warlocks_2_god_slayers','https://www.gog.com/game/warlocks_2_god_slayers',0,'Frozen District','Fat Dog Games','Action',0,0,0),(1182306873,'Tender Loving Care',0,0,0,0,0,'c9392e5858670c3c6ced4ad14da08efb69f7e227580000071dcad887c5f242e1','c079d19126737aebff24492ea050d157edc13e0352858b18019af6d30060fcbf','tender_loving_care','tender_loving_care','https://www.gog.com/game/tender_loving_care',0,'Aftermath Media','Trilobyte Games','Role-playing',0,0,0),(1183022406,'Anima: Gate of Memories',0,0,0,0,0,'33b96fcbd624b2c494ca07a62730ed1d523f9c0613ec6cf8968390e0dc11e578','dfd47559d3a3a25f9fea8826a86ba0410bf5dd3ac2ffecb7ed017cd4b8b79856','anima_gate_of_memories','anima_gate_of_memories','https://www.gog.com/game/anima_gate_of_memories',0,'Badland Games','Plug In Digital','Action',0,0,0),(1183536009,'Reigns: Her Majesty',0,0,0,0,0,'c270723f96b8cf7e4b87c26d8616c5c71d80c45c1deafe0fa6c3954a04237d63','7de6573c4ce8fdc54542b79a9902cb09457229b4fe9321d0b086039ab1cbdecc','reigns_her_majesty','reigns_her_majesty','https://www.gog.com/game/reigns_her_majesty',0,'Nerial, Synaptic Insight Technology Systems','Devolver Digital','Adventure',0,0,0),(1183804253,'Aegis Defenders',0,0,0,0,0,'fda8e60259060068308030eddda3812bc7bf4af59537028f69b234085d903acb','2db70f4da12a28d9ca79986bf0b13f168ca9c86eb6657f413b187a3a7e71ec32','aegis_defenders','aegis_defenders','https://www.gog.com/game/aegis_defenders',0,'GUTS Department','Humble Bundle','Action',0,0,0),(1189268228,'STAR WARS™ - The Force Unleashed™ Ultimate Sith Edition',0,0,0,0,0,'5dc39b9a86981b24d8abd9f42667627bd000057ea8bb07a9699a845719ef428c','788b5364058aae8a391e2e2f968799a33937e4331e3fbe16aa2888ad59182e1f','star_wars_the_force_unleashed_ultimate_sith_edition','star_wars_the_force_unleashed_ultimate_sith_edition','https://www.gog.com/game/star_wars_the_force_unleashed_ultimate_sith_edition',0,'LucasArts','Disney','Action',0,0,0),(1191552510,'SENGOKU 3',0,0,0,0,0,'cfd6f0b9dba5d3aeac4651d0457b587f3270e1868d4ba609d8cd1a85fae49698','f724bef90cc1cf0db237903d6f608ac5dbb51d5131241f6758ffe507b78b1632','sengoku_3','sengoku_3','https://www.gog.com/game/sengoku_3',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(1191986305,'Pizza Connection',0,0,0,0,0,'c5da214df3deff2a35908e8e58fa297ab9b08b720e0b7a54ad16db1d332c77d7','5c59e6bce81407d956fdce33e149f15341b2f9aa1f88070a1b621f7a9c19dede','pizza_connection','pizza_connection','https://www.gog.com/game/pizza_connection',0,'Cybernetic Corporation','Assemble Entertainment','Strategy',0,0,0);
INSERT INTO `games` VALUES (1193013642,'The Count Lucanor',0,0,0,0,0,'1eb56f1ea154102509f4ae6dbf89ed96d9ea823631f089745f6d1bb92e315ab3','872ae4a2fe23d0ed810d5895e2683e06c5f6fcc4e04790621db37befa965d62e','the_count_lucanor','the_count_lucanor','https://www.gog.com/game/the_count_lucanor',0,'Baroque Decay','Baroque Decay','Adventure',0,0,0),(1193046833,'Kenshi',0,0,0,0,0,'d7326fd93a1363257a08464bb6b2f9b691b1b695ca3d7cda13edc5a6d91a9f8c','e7e9cdc9f044f05ff49a61505dffe575d099a2bc5c26384d3e65240cdd78e022','kenshi','kenshi','https://www.gog.com/game/kenshi',0,'Lo-Fi Games','Lo-Fi Games','Role-playing',0,0,0),(1193470625,'Field of Glory: Empires',0,0,0,0,0,'219a5f75bb49609bab07d589cbae9b8d0eaa9095079e8b17c3b3915ff48c1cf4','24d364d1c99397d32ee982f82eeac94ba2317a705d245c91667ee1b3a84f4337','field_of_glory_empires','field_of_glory_empires','https://www.gog.com/game/field_of_glory_empires',0,'Ageod','Slitherine Ltd.','Strategy',0,0,0),(1193585573,'LEGO® Batman 2 DC Super Heroes™',0,0,0,0,0,'59b711af3a85c37f4d81c4b851cef88ad939f78a4e81c4a264e8c83a90d4b6c1','f12fc4437b50c7131978fe09ca6345a9832bffd7a7407b680ba6bc16f043fb49','legor_batman_2_dc_super_heroes','legor_batman_2_dc_super_heroes','https://www.gog.com/game/legor_batman_2_dc_super_heroes',0,'TT Games','Warner Bros. Interactive Entertainment','Action',0,0,0),(1194227151,'LEGO® Indiana Jones™: The Original Adventures',0,0,0,0,0,'5d94a5fc6af070cadf0e085cbd743a5d3dd0a930699135a869c78560b844a743','8eef6b0fed5d9b82f7a27fdb6739cba727b24298057ae8085348e66a43bd2dc2','lego_indiana_jones_the_original_adventures','lego_indiana_jones_the_original_adventures','https://www.gog.com/game/lego_indiana_jones_the_original_adventures',0,'Traveller\'s Tales','Disney','Action',0,0,0),(1195142914,'Blackwood Crossing',0,0,0,0,0,'4ebddcbc30342fdec0a95841361a2b0a0b9203010d7a4bd1229e3b6d30a30111','0869b23ab4e1a8e8b2766fae11f35ab1df3f36594a849f748f19ac97286ca1ba','blackwood_crossing','blackwood_crossing','https://www.gog.com/game/blackwood_crossing',0,'PaperSeven LTD','Vision Games Publishing LTD','Adventure',0,0,0),(1195536024,'Kingdom Rush: Frontiers',0,0,0,0,0,'49d50b5661bc57bb6b8244a44e5e343b8a1fc8ee6f2ed08febc319a0a282256e','4cffe50a1df511d4b910d0f3fb1716d446f9bb09921d33448e682eaee9425738','kingdom_rush_frontiers','kingdom_rush_frontiers','https://www.gog.com/game/kingdom_rush_frontiers',0,'Ironhide Game Studio','Ironhide Game Studio','Strategy',0,0,0),(1196354077,'eden*',0,0,0,0,0,'a39d1c3cd172053cedc476ea7ff45c7f0eba9a8562e8df9b35783b19d5a1b568','6a861f68ac9789701947b2ebd22c8d1fdf373447d55850d22aad36942e352136','eden','eden','https://www.gog.com/game/eden',0,'minori','MangaGamer','Adventure',0,0,0),(1196739945,'Combat Mission: Afrika Korps',0,0,0,0,0,'a1ad7be5cd70e2b844feff301e8010af40ede3e367f752dc5a478b280e6b5e89','ff0a77d91fb8e19a204b21b67bc0b36dd5202fe25459ddd256f17a16eaf6daf9','combat_mission_3_afrika_korps','combat_mission_3_afrika_korps','https://www.gog.com/game/combat_mission_3_afrika_korps',0,'Battlefront.com','Battlefront.com','Strategy',0,0,0),(1196955511,'Titan Quest Anniversary Edition',0,0,0,0,0,'def06ad3f040088ca798e1cccd14313fc38dd17c9f46c3ca78b2991f96ed1e5c','5d965294c562c9e74cda6f8b1fac88d98fc80490b2a07effb48bc60f34f06a50','titan_quest_anniversary_edition','titan_quest_anniversary_edition','https://www.gog.com/game/titan_quest_anniversary_edition',0,'THQ Nordic, Iron Lore Entertainment','THQ Nordic GmbH','Role-playing',0,0,0),(1198397489,'Imperator: Rome',0,0,0,0,0,'7eeea5c10356b211eccc5ed007d62b3945394afcf60be8e903367084bdcb108a','c243dbda83a056610013c03eede20af130aa62d1e6eac0274f073a48da9b418f','imperator_rome','imperator_rome','https://www.gog.com/game/imperator_rome',0,'Paradox Development Studio','Paradox Interactive','Strategy',0,0,0);
INSERT INTO `games` VALUES (1198456673,'Parkan: The Imperial Chronicles',0,0,0,0,0,'c045d0e2d74531a8a3114cfc5dbc0a2474524ba64c9e609bc747d36ad88ea899','a9361f6244d19b8e5fa3312d14bf34f0706272bebcc699bbd407cc0983ae1488','parkan_the_imperial_chronicles','parkan_the_imperial_chronicles','https://www.gog.com/game/parkan_the_imperial_chronicles',0,'Nikita','NIKITA Online','Shooter',0,0,0),(1199381642,'Q.U.B.E. 2',0,0,0,0,0,'00b71f0c8a101d8a3c09983c478c5b217b78449455072a5fcc0b3eff630f8d6a','4dc4971b1c283e99ad4f3e73b55adf99a86df3be8a38fd2718c816028f45b239','qube_2','qube_2','https://www.gog.com/game/qube_2',0,'Toxic Games','Trapped Nerve Games','Adventure',0,0,0),(1203613131,'Planescape: Torment: Enhanced Edition',0,0,0,0,0,'fa204532133f3ded41330f4d07fcf4125518237cf867681e08853317f87cbf8e','b0529bb71c35c7aa6817ff50b72400b1645197b22a7691df326db944fbabf952','planescape_torment_enhanced_edition','planescape_torment_enhanced_edition_game','https://www.gog.com/game/planescape_torment_enhanced_edition',0,'Beamdog','Beamdog','Role-playing',0,0,0),(1203767418,'Human Fall Flat',0,0,0,0,0,'b3e8319d53a255cd1bb21ab17e6d79ea7d5a786a4a21eb1d6824e85c5b240952','1092c0e575dd74b5c4ff7634043ba2bcebce60074f4bc5ac29166b4bacbc4936','human_fall_flat','human_fall_flat','https://www.gog.com/game/human_fall_flat',0,'Curve Digital','Curve Digital','Adventure',0,0,0),(1207658645,'MDK 2',0,0,0,0,0,'727c27ece9944d7873210bee007a94f76783fb68afbb1d1fc33fe5cde826f5cf','be401be52178d4658950b432cfefe8aa30b0566545316e83227793203082a25e','mdk_2','mdk_2','https://www.gog.com/game/mdk_2',0,'BioWare','Interplay','Action',0,0,0),(1207658646,'Conquest of the New World',0,0,0,0,0,'e02ded2038d278189fac47a514c903082fe7888070950109fb359927b016a283','a57f7e23823f63a16e2e7f893dd719cd672b33cffa1281672f72388658cdeb6a','conquest_of_the_new_world','conquest_of_the_new_world','https://www.gog.com/game/conquest_of_the_new_world',0,'Quicksilver Software','Interplay','Strategy',0,0,0),(1207658647,'Die By The Sword + Limb From Limb',0,0,0,0,0,'a5a3804e13ae76cb3f154d8569b79803b5c99745eb3c89c5e2024a92c91f01e0','c397e607ac15b21b21512bb8fec7a9bf6e00f13717dea63a898b502687e59192','die_by_the_sword_expansion','die_by_the_sword_expansion','https://www.gog.com/game/die_by_the_sword_expansion',0,'Treyarch','Interplay','Action',0,0,0),(1207658648,'Evolva',0,0,0,0,0,'69f9e18fd92b40d4d6ca639f4765bdc15450db0f7c98a00f8f01585ed2fe303c','9e85d4379e2afcabb998da1129beddae5187634ce0661d74be5b3c3c5a2e7b02','evolva','evolva','https://www.gog.com/game/evolva',0,'Computer Artworks','Interplay','Shooter',0,0,0),(1207658649,'Earthworm Jim 3D',0,0,0,0,0,'521f10ac342d0f71a9e4ce3c7dc1ade03065259cbb6d71daad268d4152802e27','932a1a173241f8d5d57547bb825a64416bcb6947b9413e21b71fc32354cf1cf8','earthworm_jim_3d','earthworm_jim_3d','https://www.gog.com/game/earthworm_jim_3d',0,'VIS Entertainment','Interplay','Action',0,0,0),(1207658650,'Giants: Citizen Kabuto',0,0,0,0,0,'2c9ef8c238c36930e7c96710dda28bf26dde56b60bea5e43b7a7509d6692df48','d3d61186c6b3c6bb669128e2a297ddd0314fcc28d997dbe36371af63d9196452','giants_citizen_kabuto','giants_citizen_kabuto','https://www.gog.com/game/giants_citizen_kabuto',0,'Planet Moon Studios','Interplay','Action',0,0,0),(1207658651,'Sacrifice',0,0,0,0,0,'da69c0864b275bf6ed1526675b33de2515d347d8d3bd8839df956c9a1e804894','cf00618cd254847a338021584fb86bdf1a1e6f8485fe04156490fa6eb1361acf','sacrifice','sacrifice','https://www.gog.com/game/sacrifice',0,'Shiny Entertainment','Interplay','Strategy',0,0,0),(1207658652,'Original War',0,0,0,0,0,'e046eb61e43ad91e4fd87861ee54299d6caff83728a788337473702ac41dfb57','ac9309e1b67b2eadffd09f9168d4de05aa18dccca09334cf2a46f9c256883af1','original_war','original_war','https://web.archive.org/web/20130820015718/https://www.gog.com/game/original_war',0,'Bohemia Interactive Studio','Bohemia Interactive Studio','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207658653,'Jagged Alliance 2: Unfinished Business',0,0,0,0,0,'0c2ef766b369ce4921df6353fa99aead0eebdec49d53ccf3b3a14046b303c3b9','3f498f654b978b39726d025be4053eb39db84457156e52ffbc7470a1e2bba3f9','jagged_alliance_2_unfinished_business','jagged_alliance_2_unfinished_business','https://www.gog.com/game/jagged_alliance_2_unfinished_business',0,'Sir-Tech Software','Interplay','Strategy',0,0,0),(1207658655,'Invictus: In the Shadow of Olympus',0,0,0,0,0,'9c19298837989576ba7ff7a549300ccb1efaa9d4bc74a8a5a9116fc36afb42c4','a6ddc45a86ad720a56f007cb5ead9e5b40e95b5624495fe8ef2707e75d08fd2d','invictus_in_the_shadow_of_olympus','invictus_in_the_shadow_of_olympus','https://www.gog.com/game/invictus_in_the_shadow_of_olympus',0,'Quicksilver Software','Interplay','Role-playing',0,0,0),(1207658657,'Descent 3 + Mercenary',0,0,0,0,0,'6b4f27ca9324a60c99d8bc31109d4f6b884d2b1092f459b2bccec3af02ca5b82','a2b8ad8d8e3502416699033176b600b6d2a6a162e69681a135b0806dcbac4cdb','descent_3_expansion','descent_3_expansion','https://www.gog.com/game/descent_3_expansion',0,'Outrage Entertainment','Interplay','Shooter',0,0,0),(1207658658,'1nsane',0,0,0,0,0,'7845cc0a49fb8770d97f513718282afc38f45da8000d210176a9858a341eca70','dc3162872244a0e7b1d90e48d5026c529ca20bd7655b110c110c122eb8976b77','1nsane','1nsane','https://www.gog.com/game/1nsane',0,'Invictus Games','Codemasters','Racing',0,0,0),(1207658659,'Shogo: Mobile Armor Division',0,0,0,0,0,'20ad9e48fa6fba46333a31edcf3cb5637680349d5e5e71caa215ecc3c91741e4','2c797594860c957e181007ef37a03e8f8eb12ff776c99fd21e95f7e338dffcb0','shogo_mobile_armor_division','shogo_mobile_armor_division','https://www.gog.com/game/shogo_mobile_armor_division',0,'Monolith Productions','Interplay','Shooter',0,0,0),(1207658660,'F/A-18E Super Hornet',0,0,0,0,0,'9a8e7654dd1ffa664f70bf7fa05ca2ad28151730f1ffa792cf4793162c16259e','f7eb87e3695991a915eab6b91a2ca43d69bf2c1eb5302037f88e4ca8d3e62291','f_a_18e_super_hornet','f_a_18e_super_hornet','https://www.gog.com/game/f_a_18e_super_hornet',0,'Digital Integration','Interplay','Simulation',0,0,0),(1207658661,'Arma: Cold War Assault',0,0,0,0,0,'aa4645c14c8987dabafecd3b5776cfca35fb0c661c2bd98ffd1e110dc2276cc5','2098854b6cba7e0fbe26b9f3b4b93ea9aec0f409abcf81cddecf3c9de02a4b6b','arma_cold_war_assault','arma_cold_war_assault','https://web.archive.org/web/20130809085814/https://www.gog.com/game/arma_cold_war_assault',0,'Bohemia Interactive Studio','Bohemia Interactive Studio','Shooter',0,0,0),(1207658662,'Second Sight',0,0,0,0,0,'5b9d4fabc4a0ee58b166423df61f53c6582a2b810518e4e386402b3bf787fd38','e49d3f75191a758d0603cb20fe9af8070a4bc7b0f9729b13df68f19da409d189','second_sight','second_sight','https://web.archive.org/web/20120504015206/http://www.gog.com/en/gamecard/second_sight',0,'Free Radical Design','Codemasters','Action',0,0,0),(1207658663,'Colin McRae Rally 2005',0,0,0,0,0,'e1c35d8ec6642d39237fa3d026843ff6844b3c5d9a6b39f0f201d18df53d9e59','5f4acc294a322e4035dd211d499ddaa2c682b486af7b31df66ff6dcd9f8836ac','colin_mcrae_rally_2005','colin_mcrae_rally_2005','https://web.archive.org/web/20090701074031/http://www.gog.com/en/gamecard/colin_mcrae_rally_2005',0,'Codemasters','Codemasters','Racing',0,0,0),(1207658664,'Soldiers: Heroes of World War II',0,0,0,0,0,'499485be43a63901d9ffcddc5a9e0ea3a438bff084521ea285e6d446944c8762','2c31de45bcc894334d7f8e7549a22ea54f4d50504c8577d26ac7e15046cdee75','soldiers_heroes_of_world_war_ii','soldiers_heroes_of_world_war_ii','https://www.gog.com/game/soldiers_heroes_of_world_war_ii',0,'Best Way','1C Publishing','Strategy',0,0,0),(1207658665,'Toca Race Driver 3',0,0,0,0,0,'4fcee9433fe3be0386fc7a25332459681daf2a4574bff5a42cfb4a1104951733','bf9b282ab529dcae8358b738fff0db4aff08ae9ccdb467ad8ace8daf46e6e1c0','toca_race_driver_3','toca_race_driver_3','https://web.archive.org/web/20081104044556/http://www.gog.com/en/gamecard/toca_race_driver_3',0,'Codemasters','Codemasters','Racing',0,0,0);
INSERT INTO `games` VALUES (1207658666,'I.G.I. 2: Covert Strike',0,0,0,0,0,'39ee4e983d71b4e4ffdda66b2469009799da02cacd6e6017c4dc11fedd667c38','69a51458863833bb773d788b08bad44d6397b3454257835d4f09de32da321287','i_g_i_2_covert_strike','i_g_i_2_covert_strike','https://www.gog.com/game/i_g_i_2_covert_strike',0,'Innerloop Studios','Codemasters','Shooter',0,0,0),(1207658667,'Perimeter',0,0,0,0,0,'b299d72fdb558f2f28a857c74bf73c902e9ac2a001ebb999d7cecfc545a237b4','33a00a5ced4dbfe08ca65dccfaafa3c20f7f97104c89e958f98bb92e6ac6ba67','perimeter','perimeter','https://www.gog.com/game/perimeter',0,'K-D Lab Game Development','1C Publishing','Strategy',0,0,0),(1207658668,'Sensible Soccer 2006',0,0,0,0,0,'f92717f9a54c2b6e8a5db6b0453c14cc3a583a118e1135b35b8314c408204b49','1e1ac37d6a87232bfbb5dbe63745e9ce540b818d2c42e47e2582b6ee9391af27','sensible_soccer_2006','sensible_soccer_2006','https://www.gog.com/game/sensible_soccer_2006',0,'Kuju Sheffield','Codemasters','Sports',0,0,0),(1207658669,'Shattered Steel',0,0,0,0,0,'6c9eef20effd3b0959961c905be4a46357d87590eadea70bb20bafae7a4d210e','b33c74139a667f81e2b37e3ca63fd0ad4f8644f86a2c1ae7f6370d336ee80a10','shattered_steel','shattered_steel','https://www.gog.com/game/shattered_steel',0,'BioWare','Interplay','Action',0,0,0),(1207658670,'Hostile Waters: Antaeus Rising',0,0,0,0,0,'aa8b43009a4049efac8467b1f30486246e9473d2efdeeb5c4d51258a43a991f7','99d3b71704a2dbd66d7a5e9bbb7af2338f5563518237bfde6de703f5f2ac8cfa','hostile_waters_antaeus_rising','hostile_waters_antaeus_rising','https://www.gog.com/game/hostile_waters_antaeus_rising',0,'Rage Software','Blue Moon Red Owl','Strategy',0,0,0),(1207658671,'Stonekeep',0,0,0,0,0,'02e55c37ae6532ef896c5e4ed493f557f00096bd95736dbf5ea0a458b18621da','3b44bbb786611a8fb4e54cd974c0e5387c7e8d8d73373d0b8c6192004975cd9a','stonekeep','stonekeep','https://www.gog.com/game/stonekeep',0,'Interplay','Interplay','Role-playing',0,0,0),(1207658674,'Redneck Rampage Collection',0,0,0,0,0,'b316f1885b568432d639ba8de01f326446f684eaeb42a9960f6a73bc4969773a','c1ddffd2875f5bacea4ce0d11224b34ccb5620bc7a99d8d2485650b3e4450639','redneck_rampage_collection','redneck_rampage_collection','https://www.gog.com/game/redneck_rampage_collection',0,'Xatrix Entertainment','Interplay','Shooter',0,0,0),(1207658675,'Kingdom: The Far Reaches',0,0,0,0,0,'b43ab81b05aabde1be85f3c357d5f7ae85de46d14ce9f431bb54b4686c10c818','65fb9a5006116ac53d3dac8e6f52ae2a61afa17b5ad8643a8097d7ed30d119f1','kingdom_the_far_reaches','kingdom_the_far_reaches','https://www.gog.com/game/kingdom_the_far_reaches',0,'Interplay','Interplay','Adventure',0,0,0),(1207658677,'Unreal 2: The Awakening Special Edition',0,0,0,0,0,'4b69011205652e96c3776095710ba5b491d1f52fc6486947d190b28e6ebce6c0','4a02cb88055a87a59474a2b73a158c69a86cf3a282ef2e5ebeb91f2e2b337508','unreal_2_the_awakening_se','unreal_2_the_awakening_se','https://www.gog.com/game/unreal_2_the_awakening_se',0,'Epic Games','Epic Games','Shooter',0,0,0),(1207658679,'Unreal Gold',0,0,0,0,0,'f5d47eca37a7097368fa4652740853f5967a41c88fbc15775e1aad12a03d4a80','152c5e33436fbff4226665b69eed6d7ef65533d56b74a1c21d70f264dc7dbd5e','unreal_gold','unreal_gold','https://www.gog.com/game/unreal_gold',0,'Epic Games','Epic Games','Shooter',0,0,0),(1207658680,'Arx Fatalis',0,0,0,0,0,'c2520dded66c1e9fc65ebc0ece3fb480e26f40c966a6809366a0d9a43f2b27e0','45f3acec3ea1747890e560a458434174aae903a7e252de9c1583ae776b850b47','arx_fatalis','arx_fatalis','https://www.gog.com/game/arx_fatalis',0,'Arkane Studios','Arkane Studios','Role-playing',0,0,0),(1207658682,'Gothic',0,0,0,0,0,'7a520e68d2f6a50d5e6a5dc45deb33aeddcd58f17dd922123352b677cc357ecd','9ace6bfc14199ac07ee1f4108c99a7972e6204df33e8c1c10646b0cb2c28dbfc','gothic','gothic','https://www.gog.com/game/gothic',0,'Piranha Bytes','Piranha Bytes','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1207658683,'Disciples: Sacred Lands Gold',0,0,0,0,0,'eaa5d8b3118e23a1c7d8f8fdba1f8874a4f12abfc40dfbd0655b8c96e7949f01','18c4efb9d9d838d16c49741be024eec26dfd87418069e48f63408cb1f7ede86d','disciples_sacred_lands_gold','disciples_sacred_lands_gold','https://www.gog.com/game/disciples_sacred_lands_gold',0,'Strategy First','Strategy First','Strategy',0,0,0),(1207658687,'Ghost Master',0,0,0,0,0,'65b84154cbdf62ea4ea42c8cabd0ce021bc67977e6bee9203244dba9a1f1d3d1','e5ef078d9b2e73f093c93f711069d9ce0a8e22334eb4fe0bbdabbd3b07647658','ghost_master','ghost_master','https://www.gog.com/game/ghost_master',0,'Sick Puppies','Strategy First','Strategy',0,0,0),(1207658688,'Sacred Gold',0,0,0,0,0,'ebed80c53a37fb3601baa3ee816c32f9a505782a962b681f091e11547bdd973a','b8a1e36f2589e63cd4228a57203c292a2d6c1cda6502e4ff20a298f02aea00c4','sacred_gold','sacred_gold','https://www.gog.com/game/sacred_gold',0,'ASCARON Entertainment','Strategy First','Role-playing',0,0,0),(1207658689,'Jagged Alliance',0,0,0,0,0,'d02148c6b9c4784d4227b9ecc5786fcb0240c0fcbca7ed95e34bb9d62f48edb0','582741590637fce3c20d75f4a311f881174b32d6419c7a405cbdda3e99c2abbc','jagged_alliance','jagged_alliance','https://www.gog.com/game/jagged_alliance',0,'Madlab Software','Strategy First','Strategy',0,0,0),(1207658690,'Jagged Alliance: Deadly Games',0,0,0,0,0,'efc6409323ca214bd37400306d68c993afb014e8c17359ba65a5b5033076a3bf','ca232bbf9cb92511f2510a2887b98c023af1ad8d9782fc39c48844caffd10166','jagged_alliance_deadly_games','jagged_alliance_deadly_games','https://www.gog.com/game/jagged_alliance_deadly_games',0,'Sir-Tech Software','Strategy First','Strategy',0,0,0),(1207658691,'Unreal Tournament 2004 Editor\'s Choice Edition',0,0,0,0,0,'b6fff8c1a9600816e8c250ec6959def0e996f960b8c5083fae313c242c63ed84','ebed1d5546a4fa382d7d36db8aee7f298eac7db3a8dc2f4389120b5b7b3155a9','unreal_tournament_2004_ece','unreal_tournament_2004_ece','https://www.gog.com/game/unreal_tournament_2004_ece',0,'Epic Games','Epic Games','Shooter',0,0,0),(1207658692,'Unreal Tournament GOTY',0,0,0,0,0,'d8ff26552def3f682442fb7c3d8132e67ef4d15deff2be1ed439954341f8c7f3','05a67816a9ece3b268b629201724ca5f45862c217940c5858d8dd4245ec33094','unreal_tournament_goty','unreal_tournament_goty','https://www.gog.com/game/unreal_tournament_goty',0,'Epic Games','Epic Games','Shooter',0,0,0),(1207658693,'FlatOut',0,0,0,0,0,'ff7b111c6ba2299cda2f49c3fffd68ea2d9d4e5a69964c6221a2b619278caee8','d83efed4534fed26ecfd93cd28443624f70b2fd987d28f7b79f68d5f8817b354','flatout','flatout','https://www.gog.com/game/flatout',0,'Bugbear Entertainment','Strategy First','Racing',0,0,0),(1207658694,'Lure of the Temptress',0,0,0,0,0,'c142bc01845e073ea337341303cee07a8e9e980434cd1d148bf1f43e8634c734','6d0100e38c60b014d02cba03434614151faa64f60dd6cc7114a03bae8f886baf','lure_of_the_temptress','lure_of_the_temptress','https://www.gog.com/game/lure_of_the_temptress',0,'Revolution Software','Revolution Software','Adventure',0,0,0),(1207658695,'Beneath a Steel Sky',0,0,0,0,0,'8c9562087850f4f0bc5cbb073e2207e75cb016d7b1632800db3e36c8e85d79d2','072e4bd714ee4bebe88f112fab88b4f35df066e7138a6dd76b52a9275543a775','beneath_a_steel_sky','beneath_a_steel_sky','https://www.gog.com/game/beneath_a_steel_sky',0,'Revolution Software','Revolution Software','Adventure',0,0,0),(1207658696,'Jagged Alliance 2',0,0,0,0,0,'0bd69a02f78359063bcba7966ed6941d0efbd74c9bdf3a04f938e862fed98961','d10a1237757e742e6f7cbe0c4c2f4b34931073c4dfe0edf2317d044ad80d170e','jagged_alliance_2','jagged_alliance_2','https://www.gog.com/game/jagged_alliance_2',0,'Sir-Tech Software','Strategy First','Strategy',0,0,0),(1207658698,'Port Royale 2',0,0,0,0,0,'8d99a2ec340be9fa3f22d8dcb13d190d6ff281e280ca61214f27e30a0b22d251','005ff5a14658f8a23fb807ab829aac08ce4dd94ddc8f9a62995c0a952cd46958','port_royale_2','port_royale_2','https://www.gog.com/game/port_royale_2',0,'ASCARON Entertainment','Strategy First','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207658701,'Simon the Sorcerer 3D',0,0,0,0,0,'d0b3a3154e4f0fc657fc46ad914c1e8cc87be62624188823936b6126982fc2fb','230dbeed346c7182bc64b5e430091381e971f08e3e5289263786fb33436da403','simon_the_sorcerer_3d','simon_the_sorcerer_3d','https://www.gog.com/game/simon_the_sorcerer_3d',0,'Adventure Soft','Adventure Soft','Adventure',0,0,0),(1207658702,'Waxworks',0,0,0,0,0,'2594db9a403f6b063929f996037a69b32573e2f689ceaf955ae993221f325b90','590cb9218d7c4706d0dffff17e7873d4348c54318015722599fdc49d087a0703','waxworks','waxworks','https://www.gog.com/game/waxworks',0,'Horrorsoft','Adventure Soft','Adventure',0,0,0),(1207658703,'Feeble Files, The ',0,0,0,0,0,'1126359a412c27cdf5a61bececf1b2c667d16941d10e1b06289a96dc0e218a78','1671ad3c0fd0bba5d9888e2b4d858f80995a92e8f4614e6fa336807a1a9aaf0c','the_feeble_files','the_feeble_files','https://www.gog.com/game/the_feeble_files',0,'Adventure Soft','Adventure Soft','Adventure',0,0,0),(1207658704,'Darkstar One',0,0,0,0,0,'69f9c47051de725f65c6c8f9fde41d55b356a1c79c3b4f8f9b9182a753cee1e9','3f72b326b4e92e563c4b20c4e79c479f5b40d31132c1825a5e10f8c21e876019','darkstar_one','darkstar_one','https://www.gog.com/game/darkstar_one',0,'ASCARON Entertainment','Strategy First','Simulation',0,0,0),(1207658705,'Oddworld: Abe\'s Oddysee',0,0,0,0,0,'ce9e579b57077b3c86ae73db8d1aa6634b523a72fed5d574369e9ce43d4ad0d9','dcbccdad7b713338536704b7dff58297b4203a66881173b234de35939b468a97','oddworld_abes_oddysee','oddworld_abes_oddysee','https://www.gog.com/game/oddworld_abes_oddysee',0,'Oddworld Inhabitants','Oddworld Inhabitants','Action',0,0,0),(1207658706,'Patrician 3',0,0,0,0,0,'489e9df66168db5a7d0c99ebd2516e5d6171a21e45a096de3ec90c91672ceef2','45cd92b8062640ed26025ec126fe13835e3d220ee9aa74d07d8d418505eef45c','patrician_3','patrician_3','https://www.gog.com/game/patrician_3',0,'ASCARON Entertainment','Strategy First','Strategy',0,0,0),(1207658707,'Broken Sword 2: Remastered',0,0,0,0,0,'cf0635fd4743c0ca4a3960d29929e870dadd03284fb7bf2f5339ed303da4e515','d497e1f6845d8dac191bd5487f2eac0e73afa508d8a9f2e8ef70b917fc8c5e02','broken_sword_2__the_smoking_mirror','broken_sword_2__the_smoking_mirror','https://www.gog.com/game/broken_sword_2__the_smoking_mirror',0,'Revolution Software','Revolution Software','Adventure',0,0,0),(1207658708,'Broken Sword 3: The Sleeping Dragon',0,0,0,0,0,'4412a06296d0dbb4a39f9cbd1c65ad6efb28d50231fd2dbf415dd296f087e015','2c684df04cafcb21a883853d3d66e2ffbc0e18cf464a0e14885501f82738928f','broken_sword_3__the_sleeping_dragon','broken_sword_3__the_sleeping_dragon','https://www.gog.com/game/broken_sword_3__the_sleeping_dragon',0,'Revolution Software','Revolution Software','Adventure',0,0,0),(1207658709,'Oddworld: Abe\'s Exoddus',0,0,0,0,0,'0c2de60e953bb9683d82dafc8a27be6a913fba901e6f985af45fbe9a569659f6','e8dea59b1aef66a5a253bb2739e5e389ecbfbc73b8b53d868581e17c9ada5a91','oddworld_abes_exoddus','oddworld_abes_exoddus','https://www.gog.com/game/oddworld_abes_exoddus',0,'Oddworld Inhabitants','Oddworld Inhabitants','Action',0,0,0),(1207658710,'Pure Pinball 2 REDUX',0,0,0,0,0,'8aa4cc040e8a60312e1740295d7c045647f0ee25c2aefd2149133316ee2f7e9a','e52932b200a98c8b619ba84d21901653017881bc3b81eeec919408cb957779fd','pure_pinball_2','pure_pinball_2','https://www.gog.com/game/pure_pinball_2',0,'Legendo Entertainment','Legendo Entertainment','Simulation',0,0,0),(1207658711,'Alien Shooter 2: Reloaded',0,0,0,0,0,'f670125de7b88dfaaf4cc7b43d7a7dac3a1b561d45e7502460660861d830b33a','e1132435f94d920df5c6d2ed88b628bfccec820634e6ef9467038bf95eb04e6a','alien_shooter_2_reloaded','alien_shooter_2_reloaded','https://www.gog.com/game/alien_shooter_2_reloaded',0,'Sigma Team','Sigma Team','Action',0,0,0),(1207658712,'Stronghold HD',0,0,0,0,0,'ab6728d1788b22409c4724742dbdc8248e96bee7d029f9eb7152b6c7bd300f91','423703ea9c2f0554b6dfa22c434e24b07e8ac13a48daaa63db46d3e2480138dc','stronghold','stronghold','https://www.gog.com/game/stronghold',0,'FireFly Studios','FireFly Studios','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207658713,'Stronghold Crusader HD',0,0,0,0,0,'b010b40e8af5305619e93ebd660b8964c99cb648beddc423d9ff78d49bae6b59','0f733c74b9cb6d8a71d931df57d10f146d7a2b663d258baa2e1696a210d12f2b','stronghold_crusader','stronghold_crusader','https://www.gog.com/game/stronghold_crusader',0,'FireFly Studios','FireFly Studios','Strategy',0,0,0),(1207658714,'In Cold Blood',0,0,0,0,0,'886e9aeafb586f593ef1bcb05a010e6b1981730ae9071cc81917f95a190c1c46','bd1a6cf1ab9f0270ae80c276d34bd05a09ab8c9d252ee5ece7719ff58007d497','in_cold_blood','in_cold_blood','https://www.gog.com/game/in_cold_blood',0,'Revolution Software','Revolution Software','Adventure',0,0,0),(1207658715,'Painkiller Black Edition',0,0,0,0,0,'6c72cb00a7e3d5bf03a3f3aa30f4530959818eef01be482c5db450c53caa9eef','7e3c9badd6c8fc723c158563fa6ddd2b55265ed641e201dfce41d5fcc090eb37','painkiller','painkiller','https://www.gog.com/game/painkiller',0,'People Can Fly','THQ Nordic GmbH','Shooter',0,0,0),(1207658716,'Panzer Elite Special Edition',0,0,0,0,0,'28b7114364f0e1c6fa9533dcca0571d9941fdc5c9a7070f8e049a7425cfed668','ce4826b61b852fb1d1ccc96bddbddf9f260ec2ebc52ddccf07a10f6168588d68','panzer_elite_se','panzer_elite_se','https://www.gog.com/game/panzer_elite_se',0,'Wings Simulations','THQ Nordic GmbH','Simulation',0,0,0),(1207658717,'Alien Nations',0,0,0,0,0,'9ba749c6cb84b7318f65121cceefd46e60681dd4311d315acaefb9d12165be61','7e898c0eb5dfdf69f4bc435ae8bdd9c1fd67f7147aa73b263c236276df726f17','alien_nations','alien_nations','https://www.gog.com/game/alien_nations',0,'Neo Software Produktions','THQ Nordic GmbH','Strategy',0,0,0),(1207658718,'Gothic 2 Gold Edition',0,0,0,0,0,'0c6f294fdbdcc0080d81eacb5952b980c6bf187c2d69e17c972592d13d2347da','e4d40823fa20502f844b0eac7030f7da0ce15f9efafede60765b3f150d18bff3','gothic_2_gold_edition','gothic_2_gold_edition','https://www.gog.com/game/gothic_2_gold_edition',0,'Piranha Bytes','Piranha Bytes','Role-playing',0,0,0),(1207658719,'SpellForce Platinum',0,0,0,0,0,'f349136a14f64e7a5b7d0ebdcacc27ef1bab0420fd385a8b735e99ace792d0c0','fa9ea2ad032b0110cab3167f2acc9c63f422a9bc7dda0d32533ab975d4d171c7','spellforce_platinum','spellforce_platinum','https://www.gog.com/game/spellforce_platinum',0,'JoWooD Productions Software','THQ Nordic GmbH','Role-playing',0,0,0),(1207658720,'The Guild Gold Edition',0,0,0,0,0,'b8306f8266eb9547f01cfcd95dd69846c9828761fe0ffc82b8cde0ea7c22bd4a','f0a9b326731d432b398bcca99c1500281a3344bac3b893dbd491ed9d958f4693','the_guild_gold_edition','the_guild_gold_edition','https://www.gog.com/game/the_guild_gold_edition',0,'4HEAD Studios','THQ Nordic GmbH','Simulation',0,0,0),(1207658721,'Capitalism Plus',0,0,0,0,0,'4f5c7fa3d8d923d3cf4ac041526f1334d1a90372cedff0e0866aa10944a4f43e','76d6d17f9eb1a91256077e384e5d7389db09004fe50050d3dd9eeb72b07b3586','capitalism_plus','capitalism_plus','https://www.gog.com/game/capitalism_plus',0,'Enlight Software','Enlight Software','Simulation',0,0,0),(1207658722,'Capitalism 2',0,0,0,0,0,'357b43ed454bb02d6a9d311d0ed9c625b6efac9eeed2e4244f900ad8f71bbbac','daa09160f95dc4298442d3f4da66f836bf202311130b5b078a074067bae5e709','capitalism_2','capitalism_2','https://www.gog.com/game/capitalism_2',0,'Enlight Software','Enlight Software','Simulation',0,0,0),(1207658723,'Seven Kingdoms 2 HD',0,0,0,0,0,'e5a28e218be42c59e4cbe9f127c6763a94e1d9bb7041d12f08fd1f8e31d795cf','0d65e72272abd70f70dbd21eb9dc744da4f29b2ec462e1a0bf5a7d8995f6383a','seven_kingdoms_2','seven_kingdoms_2','https://www.gog.com/game/seven_kingdoms_2',0,'Enlight Software','Enlight Software','Strategy',0,0,0),(1207658724,'Seven Kingdoms: Ancient Adversaries',0,0,0,0,0,'2b32e5579c5f447f04f7e0a9e31c931fc42cc0787daf775981ce6d273326b3ab','44727a7e8e08fe7a6aa6fb938009181359f9c7eaf397154f16daf83a9ee9da92','seven_kingdoms_ancient_adversaries','seven_kingdoms_ancient_adversaries','https://www.gog.com/game/seven_kingdoms_ancient_adversaries',0,'Enlight Software','Enlight Software','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207658725,'Warlords Battlecry 3',0,0,0,0,0,'3fbdf4c41773efe656882b7ce9da3918dd8d941776b53f980c45bea94a2838b1','cb46b17907a2ccf3f12544f91ae5cacafeef11549f205c444abd97cdb08f6183','warlords_battlecry_3','warlords_battlecry_3','https://www.gog.com/game/warlords_battlecry_3',0,'Infinite Interactive','Enlight Software','Role-playing',0,0,0),(1207658726,'Screamer',0,0,0,0,0,'a4ff745a52fe9d214ae67ec43811b3cbb2ced4e92cfa3fc7ebd87450a1a1e4fd','59b775de56c5e66f993da872a5ac3ecccd2207e4639de4d3beb8fc34340d8f28','screamer','screamer','https://www.gog.com/game/screamer',0,'Graffiti','Interplay','Racing',0,0,0),(1207658727,'Runaway: A Road Adventure',0,0,0,0,0,'b71dbd54d546169b6f7a6490c555d8f280aa4e00c52c273459b8bd76a56a9d9e','ce385b31659f92ec38a4d444431824f421a14edaaab38eee714ac87dff79d309','runaway_a_road_adventure','runaway_a_road_adventure','https://www.gog.com/game/runaway_a_road_adventure',0,'Pendulo Studios','Focus Home Interactive','Adventure',0,0,0),(1207658728,'Blake Stone: Aliens of Gold',0,0,0,0,0,'8dabde55c0c2615a0e9f4855a8329ef96688d0c42da9a9f2bbb619594400c769','e1f2ce8ff7dcdf1b63fb96977db91b382d6347bcee6505fb357aa19332e3548e','blake_stone_aliens_of_gold','blake_stone_aliens_of_gold','https://www.gog.com/game/blake_stone_aliens_of_gold',0,'JAM Productions','Apogee Software','Shooter',0,0,0),(1207658729,'Blake Stone: Planet Strike',0,0,0,0,0,'af39853d585bf1450a1dd893fe8efd2e4d6e18e6652f498e02a40016edcf5f26','ede13dcf3a14356620695a395cbaa9133e98b65401585818434e87c7a89616f5','blake_stone_planet_strike','blake_stone_planet_strike','https://www.gog.com/game/blake_stone_planet_strike',0,'JAM Productions','Apogee Software','Shooter',0,0,0),(1207658730,'Duke Nukem 3D Atomic Edition',0,0,0,0,0,'ceae090bc136375bfc60cf0e134929acfa6cb7f2362eba471571a7612f3d2871','2bb5f1f056241ef497701bbbab56da8d4dfd7c5709020b8a98af9665b002c0eb','duke_nukem_3d_atomic_edition','duke_nukem_3d_atomic_edition','https://web.archive.org/web/20151229200253/http://www.gog.com/game/duke_nukem_3d_atomic_edition',0,'3D Realms Entertainment','Apogee Software','Shooter',0,0,0),(1207658731,'Duke Nukem: Manhattan Project',0,0,0,0,0,'8b4c2e3bb9b1d6d0b573b37d8eecbce6891b11e591cdbe70b5dc29dd2492ea08','6f00b6914def656444d37917466c405d13db2499b9201e35ab45eeb8e4b7d0a9','duke_nukem_manhattan_project','duke_nukem_manhattan_project','https://web.archive.org/web/20151231054853/http://www.gog.com/game/duke_nukem_manhattan_project',0,'3D Realms Entertainment','Apogee Software','Action',0,0,0),(1207658732,'Rise of the Triad: Dark War',0,0,0,0,0,'008cb9e7683e31837410a2f35eab52ec563279461d18844003ef3f2600c71332','e7a85c6e1c6d94df42abab0e94d3019dca3f31013d7bf044320226ce1e7927f2','rise_of_the_triad__dark_war','rise_of_the_triad__dark_war','https://www.gog.com/game/rise_of_the_triad__dark_war',0,'Apogee Software, Ltd.','Apogee Software','Shooter',0,0,0),(1207658733,'Enemy Engaged: Apache vs Havoc',0,0,0,0,0,'36b55097b33fbb902edef21a42d0241544032cf893eb905ce3051d240b175093','7c029fa2062fbb5cf4681b883228f894801cbee97a4e993713436cae2f66776f','apache_vs_havoc','apache_vs_havoc','https://www.gog.com/game/apache_vs_havoc',0,'Razorworks','Strategy First','Simulation',0,0,0),(1207658734,'Combat Chess',0,0,0,0,0,'a24037b56ba4e9b4460acb99901c8cb09d0fa991ed8e50ac425b92bbcce7c068','0908546c6739449c36f14bd715e38e087a8feecb3ad8e3cd41136448f2ad2840','combat_chess','combat_chess','https://www.gog.com/game/combat_chess',0,'Mind\'s Eye','Strategy First','Strategy',0,0,0),(1207658735,'Pro Pinball Big Race USA',0,0,0,0,0,'78cc646fd0b4de5d54401a158db409ba375d87b52e71e8956b9ac5d7020bf71e','944f3e63d4312ef6539e7d0a9e1f6a863461364d7260dcf45404d9d7b41f04fe','pro_pinball_big_race_usa','pro_pinball_big_race_usa','https://www.gog.com/game/pro_pinball_big_race_usa',0,'Cunning Developments','Barnstorm Games','Simulation',0,0,0);
INSERT INTO `games` VALUES (1207658736,'Pro Pinball Fantastic Journey',0,0,0,0,0,'6b95fa1ab8207c0ceca1c61b28db5e94897e31aa60d4edf50a581fbe668fc43f','6713089466055ebe91457aa6716d49a0624e76b58026c47a9101a57d3fb2937c','pro_pinball_fantastic_journey','pro_pinball_fantastic_journey','https://www.gog.com/game/pro_pinball_fantastic_journey',0,'Cunning Developments','Barnstorm Games','Simulation',0,0,0),(1207658737,'Pro Pinball Timeshock',0,0,0,0,0,'bf4028abbb1859ed63c603ccf220b6e45aa806a92a1a119210c33f686bfeb409','0ae08761f35a329d9dd8fdec5313261ee27ce667abe8d15aaf4029259b7ffad1','pro_pinball_timeshock','pro_pinball_timeshock','https://www.gog.com/game/pro_pinball_timeshock',0,'Cunning Developments','Barnstorm Games','Simulation',0,0,0),(1207658738,'Earth 2140 Trilogy',0,0,0,0,0,'9b7580c83e838a96291e926389e9b1c01ced09e00373d7c0f620bc318dce8421','ba557ef3bc721d16cb72abf9dcfe3328da5a55e20c17bb781c8a780456e1e1e3','earth_2140_trilogy','earth_2140_trilogy','https://www.gog.com/game/earth_2140_trilogy',0,'Reality Pump Studios','TopWare Interactive','Strategy',0,0,0),(1207658740,'Earth 2160',0,0,0,0,0,'9a4822585b3df8d8ab78c7a8f5b1ac948e722f64160743bb876d6b0b02538505','bfb02523b14aa3589d5324f11033828d084c8ec1593ea9516184edd00a7b61b3','earth_2160','earth_2160','https://www.gog.com/game/earth_2160',0,'Reality Pump Studios','TopWare Interactive','Strategy',0,0,0),(1207658741,'Jack Orlando: A Cinematic Adventure - Director\'s Cut',0,0,0,0,0,'58e6e0afd41d0b4e47aa6273d0bf3a54dcbe24a7c8da20ee6eca6b890bab97f3','f6a09416396b18e0a3f78f9f1dd00e7872cf0638b9148e899be24bd20c0a8ee8','jack_orlando_a_cinematic_adventure_dc','jack_orlando_a_cinematic_adventure_dc','https://www.gog.com/game/jack_orlando_a_cinematic_adventure_dc',0,'Toontraxx','TopWare Interactive','Adventure',0,0,0),(1207658742,'Septerra Core: Legacy of the Creator',0,0,0,0,0,'3226aaf02bef74be2e2e04ff376c36053c032b71a7cf332af335fff48ee63a2e','bc7f55620332f6c84f228ee026747888e1e6fe218aecfabc832d8973e1f56f20','septerra_core_legacy_of_the_creator','septerra_core_legacy_of_the_creator','https://www.gog.com/game/septerra_core_legacy_of_the_creator',0,'Valkyrie Studios','TopWare Interactive','Role-playing',0,0,0),(1207658743,'Jagged Alliance 2: Wildfire',0,0,0,0,0,'745f8c9502255717fbf15578919c2f864a08e18b3dab45d71f5cf9a5f0451025','7cbed42a4f953c0fe1f34ad00464a331b0a2d789f945d5593f97cbd1da324eae','jagged_alliance_2_wildfire','jagged_alliance_2_wildfire','https://www.gog.com/game/jagged_alliance_2_wildfire',0,'I-Deal Games Studios','TopWare Interactive','Strategy',0,0,0),(1207658744,'Gorky 17',0,0,0,0,0,'6b9d6bda64c88a262733aa2c0990bcd60468b68641c49adfe7dda2a2e8ee4bc2','75742662021ac27634ec96afc43ff7316219c0694160cc19a9f480712068ea30','gorky_17','gorky_17','https://www.gog.com/game/gorky_17',0,'Metropolis Software','TopWare Interactive','Role-playing',0,0,0),(1207658745,'Cannon Fodder',0,0,0,0,0,'29d7c12a5d04178a8553717966e0e93ed8498ab6ffdec59b7d694591971c2d91','ef879c08f3acd3aaba6b28826c8b14ada034b349fd7774b4f9177f2300a13c04','cannon_fodder','cannon_fodder','https://www.gog.com/game/cannon_fodder',0,'Sensible Software','Codemasters','Action',0,0,0),(1207658746,'Beyond Good & Evil™',0,0,0,0,0,'30e9f0f572e965b8431a79d99d6e5ebb348ae9a6c77e28b0788cfcfd563aa4e6','1f09c6c848caece3cb1e4d95c8159b1e0292d35aedb4e88c3a960c44d2a62c8e','beyond_good_and_evil','beyond_good_and_evil','https://www.gog.com/game/beyond_good_and_evil',0,'Ubisoft','Ubisoft','Action',0,0,0),(1207658747,'Prince of Persia®: The Sands of Time',0,0,0,0,0,'b39f745aea99e997ec9eb2052761bdb3e93985e8eb07c23b54c86c448350da9f','8245f0754d29a5ab52f735050b15973941219f4e157ab71e4d496a965c6380b1','prince_of_persia_the_sands_of_time','prince_of_persia_the_sands_of_time','https://www.gog.com/game/prince_of_persia_the_sands_of_time',0,'Ubisoft','Ubisoft','Action',0,0,0);
INSERT INTO `games` VALUES (1207658748,'Heroes of Might and Magic®',0,0,0,0,0,'d97605f23832afa87c2f6dffaa91e135ab7124ef6f115dfe17a2179db3cbc54f','98f6b8e5853e9880aee5b32c907d2481a443e5f702c63a8b46ca3aefe3dbd88c','heroes_of_might_and_magic','heroes_of_might_and_magic','https://www.gog.com/game/heroes_of_might_and_magic',0,'New World Computing, Inc.','Ubisoft','Strategy',0,0,0),(1207658749,'IL-2 Sturmovik™: 1946',0,0,0,0,0,'525bbb438fbf58262dd3766fd1c1827a0cf308e441f0a3b9f1330149ee950aa2','083717c875d9680ccdaee9cda6df1a7c5d42d9433d8cca32859b035d85253d8c','il_2_sturmovik_1946','il_2_sturmovik_1946','https://www.gog.com/game/il_2_sturmovik_1946',0,'1C:Maddox Games','1C Online Games','Simulation',0,0,0),(1207658750,'Far Cry®',0,0,0,0,0,'cd587d720d85c97fdfe8a6863925eb494050061e8451d76a3c77aa0c761b7edc','ec9511e5d06786be8fff27264b3a431924a4478193ef64bef050700c1bf27fa0','far_cry','far_cry','https://www.gog.com/game/far_cry',0,'Crytek Studios','Ubisoft','Shooter',0,0,0),(1207658751,'Tom Clancy\'s Ghost Recon®',0,0,0,0,0,'4f0ce624e272b3ef7aeeac53cfd210fd59cc56b1f41f6ee49a636c2caf4e3b30','b0a2442d1588388e9f2580040f1c88a4a9b873adfa7a090624a71749853f2736','tom_clancys_ghost_recon','tom_clancys_ghost_recon','https://www.gog.com/game/tom_clancys_ghost_recon',0,'Red Storm Entertainment','Ubisoft','Shooter',0,0,0),(1207658752,'Tom Clancy\'s Rainbow Six®',0,0,0,0,0,'eeef55fbde07676b7c9570b0fad4ba38a9a41c17b9575d5b24c69d503c87affa','64f4ce14baeaec1e04406ebf5e7238106219799f580cda3c9313ab32eec60821','tom_clancys_rainbow_six','tom_clancys_rainbow_six','https://www.gog.com/game/tom_clancys_rainbow_six',0,'Red Storm Entertainment','Ubisoft','Shooter',0,0,0),(1207658753,'Teenagent',0,0,0,0,0,'83440dfe39a478e559a6c71d70ba33b66a28796a822d6c4d7f8de28368339b62','0e7de44790cbea50b65cf41ce52b05ca5bcf27fd3c46a54543fc9434d292aeb5','teenagent','teenagent','https://www.gog.com/game/teenagent',0,'Metropolis Software','Metropolis Software','Adventure',0,0,0),(1207658754,'POSTAL: Classic and Uncut',0,0,0,0,0,'859da396cf61f1782c600b9b07cabb3f8965d17b5611eed3435174a151de2ff4','59c3180687cc6525256bb61ad013cb7952f6ccff393c89ac56aedd74c365fe74','postal_classic_and_uncut','postal_classic_and_uncut','https://www.gog.com/game/postal_classic_and_uncut',0,'Running With Scissors','Running With Scissors','Shooter',0,0,0),(1207658755,'POSTAL 2',0,0,0,0,0,'d852a13d79875678614aee8b5f534cd391eafcc51d443053d42b8210f1cb1d2a','e9670eeaf2562dcde3cded6b641688365ffbfea340964422bcef59b0ad40102d','postal_2','postal_2','https://www.gog.com/game/postal_2',0,'Running With Scissors','Running With Scissors','Shooter',0,0,0),(1207658756,'Chessmaster® 9000',0,0,0,0,0,'41ee7b959f53a7a043179e34617bcf37c80d39171f64ebd310db1922a4e491a7','cd06fbb9922713c7676e2a52726cca0a162ba08f627bbe74d685765e3d505861','chessmaster_9000','chessmaster_9000','https://web.archive.org/web/20120815030844/https://www.gog.com/gamecard/chessmaster_9000',0,'Ubisoft','Ubisoft','Strategy',0,0,0),(1207658760,'ObsCure',0,0,0,0,0,'2201b9b87e1bd2dcc4263a4cc64ff219c25eabcf1d36995db91795a885b75c45','28acae6b3ff021f14148df1634cc3a051d2ec70bb03ac63ac6447431a60d9f89','obscure','obscure','https://web.archive.org/web/20091107191440/http://www.gog.com/en/gamecard/obscure',0,'Hydravision Entertainment','Microids','Adventure',0,0,0),(1207658761,'Enemy Engaged: Comanche vs Hokum',0,0,0,0,0,'2f168ab4be9107dfa254b56de952dc69631e358eeb48666c76c43b788c9f7f74','1160e8bc9e0ddb0ecc864b5315a0696c612edb1fb03d0936a0a4ff9d078e59df','comanche_vs_hokum','comanche_vs_hokum','https://www.gog.com/game/comanche_vs_hokum',0,'Razorworks','Strategy First','Simulation',0,0,0),(1207658762,'Celtic Kings: Rage of War',0,0,0,0,0,'f90c8825149af5c59bd3f73fba359f2fa03294fcadc4f489996c7719f521f26e','1087b178debfbbf82f90932a46364e7318343af2fef66fd9db52a9b06c8310b5','celtic_kings_rage_of_war','celtic_kings_rage_of_war','https://www.gog.com/game/celtic_kings_rage_of_war',0,'Haemimont Games','Haemimont Games','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207658763,'Iron Storm',0,0,0,0,0,'20eb983dc1d3ee003f4e1afd6e8f94bceaa0da52bd16651d305a33a8adbdcdd5','f5fefbef08180e05667d52ed3596b0046c3e1e40133228795ea99737b3d8ffbb','iron_storm','iron_storm','https://www.gog.com/game/iron_storm',0,'4X Studio','Anuman Interactive','Shooter',0,0,0),(1207658764,'MegaRace 3',0,0,0,0,0,'f199d05f2a20657e4405b5c7f9b9064f3dd2a13a64425ce4a14c5331090a7f6d','99e8e22918916c305ad6e26d5cd11146512b518cd6487822aaafa282bebf78dd','megarace_3','megarace_3','https://www.gog.com/game/megarace_3',0,'Cryo Interactive','Anuman Interactive','Racing',0,0,0),(1207658767,'Tex Murphy: Under a Killing Moon',0,0,0,0,0,'7531e3615073cbbfc6f3279b7acdaf356e50af55a482b7f2b364fadc838733ee','720dcd2c0c423b68b1f9287fdaaefbc8dc4abfb821c8c917619299c2626ca515','tex_murphy_under_a_killing_moon','tex_murphy_under_a_killing_moon','https://www.gog.com/game/tex_murphy_under_a_killing_moon',0,'Access Software','Wordplay LLC','Adventure',0,0,0),(1207658768,'Tex Murphy: The Pandora Directive',0,0,0,0,0,'d088a0ebbfbd2151421952e0a411e5aa1a3b75fd1dfc3b0a3ba60f379c5b2c89','12654b9889905c9436d27df09bb1f0e5f1b4b313babdb87a4938aa5758d23cfd','tex_murphy_the_pandora_directive','tex_murphy_the_pandora_directive','https://www.gog.com/game/tex_murphy_the_pandora_directive',0,'Access Software','Wordplay LLC','Adventure',0,0,0),(1207658769,'Tex Murphy: Overseer',0,0,0,0,0,'05d3459f8f6cf035a9d365294df30efa607bf714bda4a89164457f1e972d86d5','83bc627593bf6ceb74ea2860ee6ddc105ab78a37ab3c4b3fb3cf693c607e2c4e','tex_murphy_overseer','tex_murphy_overseer','https://www.gog.com/game/tex_murphy_overseer',0,'Access Software','Wordplay LLC','Adventure',0,0,0),(1207658770,'Silent Hunter® 2',0,0,0,0,0,'ccac5977b7ed09b60a9d18d3fb7ded6b4b9b9e42fc7f8ebfeb40b0014566715b','bcd935f2b92ef192109f0a6e9ab61f592d5344647d8f33a587b03de1a2b83103','silent_hunter_2','silent_hunter_2','https://www.gog.com/game/silent_hunter_2',0,'Ultimation','Ubisoft','Simulation',0,0,0),(1207658772,'Knights and Merchants: The Peasants Rebellion',0,0,0,0,0,'9bd4750a4d94ff7e45a6416747ae8b49935fb746e4d6b0d045811a81ce72de70','89eefd26d47a4bd3a032429cf9d434248c6cf6b8003939eefdf6771a2a8599a1','knights_and_merchants_the_peasants_rebellion','knights_and_merchants_the_peasants_rebellion','https://www.gog.com/game/knights_and_merchants_the_peasants_rebellion',0,'Joymania Development','TopWare Interactive','Strategy',0,0,0),(1207658773,'Personal Nightmare',0,0,0,0,0,'4ae8f11e287489a31297928db6cb48d9dc7958771142868de5285a374c04befc','0f537057a9c605d9f3d67a24d52e21e6ba5c56a97552638b157e02be85160a67','personal_nightmare','personal_nightmare','https://www.gog.com/game/personal_nightmare',0,'Horrorsoft','Adventure Soft','Adventure',0,0,0),(1207658774,'Nations Gold Edition, The ',0,0,0,0,0,'742cc5c34e7d51bb4359880b2d3ce3ab606a12545caa60ffaad43c202f69a8ed','490c3b0d758a994c02333feb9936912a61936d39343ef8c810866a18bd516640','the_nations_gold_edition','the_nations_gold_edition','https://www.gog.com/game/the_nations_gold_edition',0,'JoWooD Productions Software','THQ Nordic GmbH','Strategy',0,0,0),(1207658775,'Evil Genius',0,0,0,0,0,'a31c8e219cd071597f81151f7c3f4bac3344e722a4fcf270078b20170f4bb0ad','3393a87b75774fe7f5cc794488acbcc55df99b3d851dfa948623f9b499f6b6f6','evil_genius','evil_genius','https://www.gog.com/game/evil_genius',0,'Elixir Studios','Rebellion','Strategy',0,0,0),(1207658776,'Ground Control Anthology',0,0,0,0,0,'080e916e2f33f7dc3beaea3c065c326c678f08c7a4336f3fdf679f6a2c66c887','05c1ffb8f67b767aa388dbbc950f139471ece42903ce294095dbe24f0d798131','ground_control_expansion','ground_control_expansion','https://www.gog.com/game/ground_control_expansion',0,'Massive Entertainment','Rebellion','Strategy',0,0,0),(1207658777,'Empire Earth Gold Edition',0,0,0,0,0,'cd854c414c43990805edc033824882dedf492ace8402289e5a8a86dbcc777cfb','1c3a6cb577735f9df5b63dc3d550981b2be69f400c19cd8ec999e7ef5a160ef2','empire_earth_gold_edition','empire_earth_gold_edition','https://www.gog.com/game/empire_earth_gold_edition',0,'Stainless Steel Studios','Rebellion','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207658778,'Lords of Magic: Special Edition',0,0,0,0,0,'34cb918280f08fb40a3faba48f74a9fc61a704809a285915b8f55bfd4693707d','3cef5dc36be59c0515c200a8bb7eb9c6d5e9701a179cb6647e9c3b95d903fb0f','lords_of_magic_special_eddition','lords_of_magic_special_eddition','https://www.gog.com/game/lords_of_magic_special_eddition',0,'Impressions Games','Rebellion','Strategy',0,0,0),(1207658779,'Judge Dredd: Dredd vs Death',0,0,0,0,0,'9a9b3f8ea84d5c9a9d370d5c87cb74e806984c69a388a43971f7caafeb2f2b87','07af4f902e8c4793bf31d151ce02585f8523f4f23e296a27736b9311ba7553a7','judge_dredd_dredd_vs_death','judge_dredd_dredd_vs_death','https://www.gog.com/game/judge_dredd_dredd_vs_death',0,'Rebellion','Rebellion','Shooter',0,0,0),(1207658781,'Republic: The Revolution',0,0,0,0,0,'080a36960b0368b0302e9c3063e2d57d89b112ecf001a50f1a715d36956da9a6','993c19f0569a9e88370c2b5e86ecdfe661b0ee2159fd8a5cc2881f4bcc179581','republic_the_revolution','republic_the_revolution','https://web.archive.org/web/20110103220046/https://www.gog.com/en/gamecard/republic_the_revolution',0,'Elixir Studios','Rebellion','Strategy',0,0,0),(1207658782,'Ground Control 2: Operation Exodus Special Edition',0,0,0,0,0,'d761f3f021b98e27054ecbaebf69f9c2d69b8e6db3f492cbeff7a629a0bfa1f5','0a01e867c22207bad356f1ca8ce4733b95b9d4cab745c5c7726216d1326e1194','ground_control_2_operation_exodus','ground_control_2_operation_exodus','https://www.gog.com/game/ground_control_2_operation_exodus',0,'Massive Entertainment','Rebellion','Strategy',0,0,0),(1207658783,'VR Soccer \'96',0,0,0,0,0,'23cef1bbad35fff715ebc92597047c5678ac262113859f85f48ddd0d2f17d869','4efdc43bdfc92a9d23418f00fa7e7d02fef279436d5e89761db8e95f4b294974','vr_soccer_96','vr_soccer_96','https://www.gog.com/game/vr_soccer_96',0,'Gremlin Interactive Ltd.','Interplay','Sports',0,0,0),(1207658784,'Lords of the Realm 3',0,0,0,0,0,'4d36253cdd3a0e90af69f44847d4f087c6455557018322bf80a3e70b2b7b38d3','b8f35486671deaf85ca8f07b8c7cd49f42e6111ce21fef109f564e1f54bf324a','lords_of_the_realm_3','lords_of_the_realm_3','https://www.gog.com/game/lords_of_the_realm_3',0,'Impressions Games','Rebellion','Strategy',0,0,0),(1207658785,'Heroes of Might and Magic® 2: Gold',0,0,0,0,0,'80940c3b71947fd3d83e7e53faf3c232089986188947b3f116f1f3069a534056','a287840ad1e619245053cc9056f08897f5c9644594d1dea9dc4887b2048c5940','heroes_of_might_and_magic_2_gold_edition','heroes_of_might_and_magic_2_gold_edition','https://www.gog.com/game/heroes_of_might_and_magic_2_gold_edition',0,'New World Computing, Inc.','Ubisoft','Strategy',0,0,0),(1207658786,'The Settlers® 2: Gold Edition',0,0,0,0,0,'df8399dd08c66cee193241b63a74cc8c786ab677f6ec3f2101eb96cb222e5d71','10263c5baa7438d56eedca20627f4be61e4d24a3a99d559652cad9080387e6f3','the_settlers_2_gold_edition','the_settlers_2_gold_edition','https://www.gog.com/game/the_settlers_2_gold_edition',0,'Blue Byte Studio','Ubisoft','Strategy',0,0,0),(1207658787,'Heroes of Might and Magic® 3: Complete',0,0,0,0,0,'a18a7017bdca7bdd14fb003a46522e320051d3e9c1fb939559a4517d90f86170','cd47dd7a5938c4db4f9cd161746a362ec72c07a0f9bd253d423ad5af5f87a988','heroes_of_might_and_magic_3_complete_edition','heroes_of_might_and_magic_3_complete_edition','https://www.gog.com/game/heroes_of_might_and_magic_3_complete_edition',0,'New World Computing, Inc.','Ubisoft','Strategy',0,0,0),(1207658789,'Expendable',0,0,0,0,0,'ea589a231f279164744de9ba97696b34f1c1ff3cff923ca6d3f558d4164cca1d','1ebc659217b5e8317305aa79686820fc48fc9aea2cbbb3fe2a82919b78a78900','expendable','expendable','https://www.gog.com/game/expendable',0,'Rage Software','Blue Moon Red Owl','Shooter',0,0,0),(1207658791,'Port Royale',0,0,0,0,0,'acfcd99913998f03387d4b9e0e5774b12f91c1bda7d5d588982e8ac9d6742ce0','a9fa0aa2d9a479a569efb3ab796a655c2d58510f99154b009a654b1eb465b930','port_royale','port_royale','https://www.gog.com/game/port_royale',0,'ASCARON Entertainment','Kalypso Media Digital','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207658792,'Mobile Forces',0,0,0,0,0,'1ca9f7b4aa30781a5cc42d5d7c8b5345a6862c221e918d9ede0f441af370eff3','3fe94f0a66ec0f31b6637504aa7f3f62ac6982d5f23a574b174f841ff0dcf9e8','mobile_forces','mobile_forces','https://www.gog.com/game/mobile_forces',0,'Rage Software','Blue Moon Red Owl','Shooter',0,0,0),(1207658793,'Heritage of Kings: The Settlers™',0,0,0,0,0,'f6e5e6e33b35b422215b53e2a7ecf7c2482a074f035c8a39238519c4599b0eca','dd01f0cd36daf36669b344d39737bc94fac81e5b7576c234935f80e0bb9d03f9','heritage_of_kings_the_settlers','heritage_of_kings_the_settlers','https://www.gog.com/game/heritage_of_kings_the_settlers',0,'Blue Byte Studio','Ubisoft','Strategy',0,0,0),(1207658794,'The Longest Journey',0,0,0,0,0,'b509eebef606ff5cebde31c74e31b01352e9c347e60afaefacff8924b1111b42','b853fb5fd540784d92a808c0b081110894b69e548a1216219ddc6c4d5a3895b2','the_longest_journey','the_longest_journey','https://www.gog.com/game/the_longest_journey',0,'Funcom','Funcom','Adventure',0,0,0),(1207658795,'Praetorians',0,0,0,0,0,'cb82604b6a3a290522954a90daceb842c911cec0c8e9a31788b79d2bea3d9269','8190722975078d0e1eeebc936dbcdef09e8e6768e66399079230f49a18bcf8dc','praetorians','praetorians','https://www.gog.com/game/praetorians',0,'Pyro Studios','Kalypso Media Digital','Strategy',0,0,0),(1207658797,'Realms of Arkania 3',0,0,0,0,0,'4dbe0e029a8f3f1cf277a54e070f019f8a472b56ec8dfe562f47b08172a0968f','39e0f63e75862b9743ca2fc198a79b1f43b66a337379099ea0701fbfb050687a','realms_of_arkania_3','realms_of_arkania_3','https://www.gog.com/game/realms_of_arkania_3',0,'Attic Entertainment','Fantasy Productions','Role-playing',0,0,0),(1207658798,'Imperial Glory',0,0,0,0,0,'355564a3a06902c9b5167081121bf0ba0a7d4434843d6bc90f022b15cbec6eda','e0163bc6b6a2f872d1abca276393871344acb61fbb86fd428acd38b7fe5c11c1','imperial_glory','imperial_glory','https://www.gog.com/game/imperial_glory',0,'Pyro Studios','Kalypso Media Digital','Strategy',0,0,0),(1207658804,'Dark Fall: The Journal',0,0,0,0,0,'9168e2221652d7e478934275e894ad67661c1ba32b162a97d0359f1dd689a347','5eea0af8910923c0762f24798f5480437af76407cc04a40e962332f51d307803','dark_fall_the_journal','dark_fall_the_journal','https://www.gog.com/game/dark_fall_the_journal',0,'XXv Productions','THQ Nordic GmbH','Adventure',0,0,0),(1207658805,'Divine Divinity',0,0,0,0,0,'370d03749313745491bc54aeaf84fbd5537cc0077309dfd11fb90231246fa3d1','a6c84915056ac59457545d23d3bd2e430ee13b650e811b1e5fc923a7aaa42b02','divine_divinity','divine_divinity','https://www.gog.com/game/divine_divinity',0,'Larian Studios','Larian Studios','Role-playing',0,0,0),(1207658806,'Beyond Divinity',0,0,0,0,0,'74c8f633fdd91255eac9c51b47618593328791ba8656e7b411bfa8f3eafde99d','53576a9119e3abdde93f2ba509b61a2966d8a8747fd9896b1364a591c3aa58e8','beyond_divinity','beyond_divinity','https://www.gog.com/game/beyond_divinity',0,'Larian Studios','Larian Studios','Role-playing',0,0,0),(1207658807,'Psychonauts',0,0,0,0,0,'9cda8695e107d9ae7d12d91c1c338aa6dd70229627fc60a9625e2883f3d88190','db4d0a4594d8d070ffb13d1feb1882f1a3fa6ab5325323e2b86cbd69a160c797','psychonauts','psychonauts','https://www.gog.com/game/psychonauts',0,'Double Fine Productions','Double Fine Productions','Action',0,0,0),(1207658808,'BloodRayne',0,0,0,0,0,'3751570d978e0c9d1cb823c25eeda3a5a2e63f3832d2abbd8c971f4d37b9d83c','b37d70ce5632fb9e4471af6b288f3889f4046f9249cc78c8b3c72f0e04cac870','bloodrayne','bloodrayne','https://www.gog.com/game/bloodrayne',0,'Terminal Reality','Majesco','Shooter',0,0,0),(1207658809,'BloodRayne 2',0,0,0,0,0,'42b6496ef38d633735e194d89cb2a6b2b0923868413b269c0ae5243046061e1d','06f4677278534619977a8959c61d859895f5c889273d3271951023cd1a54fd6b','bloodrayne_2','bloodrayne_2','https://www.gog.com/game/bloodrayne_2',0,'Terminal Reality','Majesco','Shooter',0,0,0),(1207658810,'Advent Rising',0,0,0,0,0,'53a056e07c6f1ce0a76306dfcecb104d9b7f106605605f5c5aac8fb133b3cc73','8c90fb4f691aa4cc43f20db94d6068efe70bc3a69c81cca6d7bbaaff4f467ba5','advent_rising','advent_rising','https://www.gog.com/game/advent_rising',0,'GlyphX Games','Majesco','Action',0,0,0);
INSERT INTO `games` VALUES (1207658811,'Sanitarium',0,0,0,0,0,'098fae4f00b2c7d0d727fc55f997c80740e2ef2ed5df44cadc30f814da6af16b','46e1c6c1c7a33cca32c8cb702f94cf9a3c3772f161c989f1c821d6dbad03fddd','sanitarium','sanitarium','https://www.gog.com/game/sanitarium',0,'DreamForge Intertainment','XS Games','Adventure',0,0,0),(1207658812,'Creatures Exodus',0,0,0,0,0,'924d33e8abf30fd23b2834b498d907db3df48de05c24ac72d0e07f878b0c4659','41a1b77c400a650e7b350a420685293827c93f5b9f2cea55a0e5799c1ccab92f','creatures_exodus','creatures_exodus','https://www.gog.com/game/creatures_exodus',0,'Creature Labs','Merge Games','Simulation',0,0,0),(1207658814,'Creatures Village',0,0,0,0,0,'5ef8b5912fcc041445246fc78230c2caac9767956f1769275e65df33d68d0050','af11be323cb7209e196dc9d47dc401eff258c63d5ba24a6aaa765cfa23586447','creatures_village','creatures_village','https://www.gog.com/game/creatures_village',0,'Creature Labs','Merge Games','Simulation',0,0,0),(1207658815,'UFO: Aftermath',0,0,0,0,0,'18bed0cbd938d5eda597bdbeed18b33e442ae065488d604c07fb9e00440528d2','a62283c0bb0e7c9f37a0c18d0a4a4ee80e8843b156b1f836b9e4307eb14f7389','ufo_aftermath','ufo_aftermath','https://www.gog.com/game/ufo_aftermath',0,'Altar Interactive','1C Publishing','Strategy',0,0,0),(1207658816,'UFO: Aftershock',0,0,0,0,0,'bbb5e9db07acca286c861c9024fa7d0c591a9e05fb49914f5b3848b6a16441b6','dcc41fdbc9ab7d12142304aa13a4fd0cf91c47604cc2016d05094e3c2f242c25','ufo_aftershock','ufo_aftershock','https://www.gog.com/game/ufo_aftershock',0,'Altar Interactive','1C Publishing','Strategy',0,0,0),(1207658818,'Myst Masterpiece Edition',0,0,0,0,0,'6a424cec4ec7b63decb6adf4b54856c55eadd72b11c09f3f7dff561f1b717421','e870b9f6a80b66191cbd39156cf95021ea63a71861ef52e964205b8344a1d66a','myst_masterpiece_edition','myst_masterpiece_edition','https://www.gog.com/game/myst_masterpiece_edition',0,'Cyan Worlds','Cyan Inc','Adventure',0,0,0),(1207658819,'Riven: The Sequel to Myst',0,0,0,0,0,'641582eca7cfa68cc966bbef2071a9334121ab2b5c065f017a4720fc803a3a6e','c0b6389b75482cbcfa6a6cf99fa49c98beb0d7890f1f009702a2d7dd6b9f05d6','riven_the_sequel_to_myst','riven_the_sequel_to_myst','https://www.gog.com/game/riven_the_sequel_to_myst',0,'Cyan Worlds','Cyan Inc','Adventure',0,0,0),(1207658820,'Manhole: Masterpiece Edition, The ',0,0,0,0,0,'dbc7a90c88bd53cef5779cff44887d4ce99cd848ae18a6c58b1a2caf9dd8acbd','a61a47efedcdb2a5135f3adcae81ca6bf9795001e6e8d48db543574dfee2d8a3','the_manhole_masterpiece_edition','the_manhole_masterpiece_edition','https://www.gog.com/game/the_manhole_masterpiece_edition',0,'Cyan Worlds','Cyan Inc','Adventure',0,0,0),(1207658821,'Combat Mission: Beyond Overlord',0,0,0,0,0,'64cdb1ecae06c94169dc036c39ae3f6c4521c606485befa2bb593b7c57421ac3','49504111f883f214404550646e7bf690fc295bae81627d3dfacc175b291a0d5a','combat_mission_beyond_overlord','combat_mission_beyond_overlord','https://www.gog.com/game/combat_mission_beyond_overlord',0,'Battlefront.com','Strategy First','Strategy',0,0,0),(1207658822,'Strategic Command: European Theater',0,0,0,0,0,'c22c2fae39e1b70d35b4dcf2ca30cf5b48878302add766b0667e72efcb10b433','e94ee866a6e0b93fc09d0ef42baf3fbd80e6bb7c0f83fa35230199a57bad125c','strategic_command_european_theater','strategic_command_european_theater','https://www.gog.com/game/strategic_command_european_theater',0,'Battlefront.com','Strategy First','Strategy',0,0,0),(1207658823,'Restaurant Empire',0,0,0,0,0,'da1b3b489e018ae90ee4ef284b0fc8ed0256a840252a8bef5e4426a7539404a7','eb841de8dc8da7dd1e949e5c36acc14ef2fdfa8cfd47cbf15e14c8709d5b97cb','restaurant_empire','restaurant_empire','https://www.gog.com/game/restaurant_empire',0,'Enlight Software','Enlight Software','Simulation',0,0,0),(1207658824,'realMYST',0,0,0,0,0,'9bd7c1ac4eb938546e706d959143f5b6086bfaed627128624782e0053267ee50','e303e62457e9365c910a5ff9fe86867b3a2ad17d6879d28e6015544de82eed6f','real_myst','real_myst','https://www.gog.com/game/real_myst',0,'Cyan Worlds','Cyan Worlds','Adventure',0,0,0);
INSERT INTO `games` VALUES (1207658825,'Driver®: Parallel Lines',0,0,0,0,0,'9a62d00c1a369a6cb969b7a36b6cf36d9ff8ed91f0750cdb831b494e6cd599b8','062fc5c207e2cc87477d5e3b254e339c9ef459e1c41a23856342a50e95e06892','driver_parallel_lines','driver_parallel_lines','https://www.gog.com/game/driver_parallel_lines',0,'Ubisoft','Ubisoft','Racing',0,0,0),(1207658826,'Constructor Classic 1997',0,0,0,0,0,'f141827e5f7f2ea4349e1a5920c8df791ed534816e182020afed3613844944e6','9f28db557a64bb1f1a03cbebb5ec216403efb93fbaa01dc7317f79e79a3f25d5','constructor','constructor','https://www.gog.com/game/constructor',0,'System 3 Software','System 3 Software','Simulation',0,0,0),(1207658827,'Uru: Complete Chronicles',0,0,0,0,0,'e1c445212a76d58af144d193768305b5b602603e83504081c6c75743537d8b1c','7ba3d6656fbf2fe633d78ec46dca3ffcb3600a50c64a731516be15d3bd082675','uru_complete_chronicles','uru_complete_chronicles','https://www.gog.com/game/uru_complete_chronicles',0,'Cyan Worlds','Cyan Worlds','Adventure',0,0,0),(1207658828,'Gabriel Knight: Sins of the Fathers',0,0,0,0,0,'054bb2194b7c7da68f0a0bff1d77d908f47ea5ce3ba8c42e66d76d5ebc563be5','05875b13add43cbb2df25b60887d7d61bf56deeae595f09ef859c89a372f1f22','gabriel_knight_sins_of_the_fathers','gabriel_knight_sins_of_the_fathers','https://www.gog.com/game/gabriel_knight_sins_of_the_fathers',0,'Sierra','Activision','Adventure',0,0,0),(1207658829,'Arcanum: Of Steamworks and Magick Obscura',0,0,0,0,0,'a012231d00cbde6cd797b10d7341238db80f1441a621c294d459e5fd6bb47591','57e0135dfb1eb799a740cf4fb879659e688da568ee01375c0bbed63997370aac','arcanum_of_steamworks_and_magick_obscura','arcanum_of_steamworks_and_magick_obscura','https://www.gog.com/game/arcanum_of_steamworks_and_magick_obscura',0,'Troika Games','Activision','Role-playing',0,0,0),(1207658830,'Dark Fall 2: Lights Out',0,0,0,0,0,'ad87f223016e0ddd27dc921d2c77610b06efd2c394e83c12dbe8aaa33d671d19','a74460689f30081618e65795e5c9c261391cdf35b699a0f40377ffeece0a4bf8','dark_fall_lights_out','dark_fall_lights_out','https://www.gog.com/game/dark_fall_lights_out',0,'XXv Productions','THQ Nordic GmbH','Adventure',0,0,0),(1207658831,'Vampire: The Masquerade - Redemption',0,0,0,0,0,'61e3ea696575e73235140fcb093eb6804af9d42fedd83248a2a175a20a514b70','146c1c3715e842815841b7635c32119f2f3b5d9dc6778520c335af81e23a6a98','vampire_the_masquerade_redemption','vampire_the_masquerade_redemption','https://www.gog.com/game/vampire_the_masquerade_redemption',0,'Nihilistic Software','Activision','Role-playing',0,0,0),(1207658832,'Mob Rule Classic',0,0,0,0,0,'40744585805894e11c644f2443dd140e50d7d85e83b73558e3b83544c807675b','2791f4143488e7151e5d6157cd45badb3be74bd6d1ec42e8008f543443f3f41b','mob_rule','mob_rule','https://www.gog.com/game/mob_rule',0,'Studio 3 Interactive','System 3 Software','Simulation',0,0,0),(1207658834,'Phantasmagoria',0,0,0,0,0,'86a0c5ce3f24301b4093eff4d2be7a60ba2c3f6bbefb95fdad362d7e0c0d0dcd','3aed7298d70b4ef473f076c5cbf2ff984dfe82c48baeda16a9c59f08a99c0d07','phantasmagoria','phantasmagoria','https://www.gog.com/game/phantasmagoria',0,'Sierra','Activision','Adventure',0,0,0),(1207658835,'Caesar 3',0,0,0,0,0,'1fcf03dff9348d03a8e9f0b90ef9ac0133d93c0d794e0f0b7db0160c321fcb72','541cd6116f0e911fec7d25bb2bece822e3a6793da2ede3352f2555d8e8d019f5','caesar_3','caesar_3','https://www.gog.com/game/caesar_3',0,'Impressions Games','Activision','Simulation',0,0,0),(1207658837,'Gabriel Knight 2: The Beast Within',0,0,0,0,0,'f3e600b1a76e05d9a313b95c9ffa09688de151ba02b1359a3bdc09c3fc9ca173','7bdd9b83e2c0646db3aec76fb2ad023866c7e3bdb9a6d5cba03b22f694a04c79','gabriel_knight_2_the_beast_within','gabriel_knight_2_the_beast_within','https://www.gog.com/game/gabriel_knight_2_the_beast_within',0,'Sierra','Activision','Adventure',0,0,0),(1207658838,'Call to Power 2',0,0,0,0,0,'c3306f6986e3e93a4c839b36858558b31775004c41d9bcbbccb153bd6d909f86','807b219456d0e54e9d96ac0c7a2d94b40c5b8c220e5036b06d69968f6e4c1ac1','call_to_power_2','call_to_power_2','https://www.gog.com/game/call_to_power_2',0,'Activision','Activision','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207658840,'Return to Krondor',0,0,0,0,0,'8314e57a65b9d5a74b6423eaf3c50af6388980930fc3c35815d5c86a530f251e','07ad1b82163cfd41a9119f3950b8b291153b418b4a49fcc148026601327f5be4','return_to_krondor','return_to_krondor','https://www.gog.com/game/return_to_krondor',0,'PyroTechnix','Activision','Role-playing',0,0,0),(1207658841,'Phantasmagoria 2: A Puzzle of Flesh',0,0,0,0,0,'2316f140aeee4e6454df29e65f8c8225b96aebb1a7f32906d31380c48681c515','9c35921d4df42b8ddffbb99687d6992a25fa04cb61d9c6afbf81873b0e727502','phantasmagoria_2','phantasmagoria_2','https://www.gog.com/game/phantasmagoria_2',0,'Sierra','Activision','Adventure',0,0,0),(1207658842,'AquaNox',0,0,0,0,0,'85490e554de8a347b29241aa44ffe2ff8fe74bc673840960d77e4825807e7804','3929ef6c854f51a9e8f0a2907fdf712648b599151457f69ba203e1998394e842','aquanox','aquanox','https://www.gog.com/game/aquanox',0,'Massive Development','THQ Nordic GmbH','Shooter',0,0,0),(1207658843,'Gabriel Knight 3: Blood of the Sacred, Blood of the Damned',0,0,0,0,0,'349477f06a0febf61c0fd4d415ec11219c25a0cc7c134269786f46975bff2243','fdef46656083fb074958370d481e8e5b162cb1a65748301d85dd5ebadeda35ef','gabriel_knight_3_blood_of_the_sacred_blood_of_the_damned','gabriel_knight_3_blood_of_the_sacred_blood_of_the_damned','https://www.gog.com/game/gabriel_knight_3_blood_of_the_sacred_blood_of_the_damned',0,'Sierra','Activision','Adventure',0,0,0),(1207658844,'Empire Earth 2 Gold Edition',0,0,0,0,0,'eeee795ca6b3de1186ca8b0dc4d8cfadd293c5a6fe9a749434c823defbdfe940','9d90f9a7f76d8c8289591648cfcdfe697c4aacc3da6b1eb56f1bb4e79c63b729','empire_earth_2_gold','empire_earth_2_gold','https://www.gog.com/game/empire_earth_2_gold',0,'Mad Doc Software','Rebellion','Strategy',0,0,0),(1207658845,'Another World: 20th Anniversary Edition',0,0,0,0,0,'2cff003da730f1d47d120967a623abc24a15c7dfe2fb9adcda22a7dafd65acbe','b92c1e40c6a53b2abe9d5f3a732cb11bc5166ad5e0068dd763a3df9c0854c17c','another_world_20th_anniversary_edition','another_world_20th_anniversary_edition','https://www.gog.com/game/another_world_20th_anniversary_edition',0,'Eric Chahi','Digital Lounge ','Adventure',0,0,0),(1207658847,'Amerzone: The Explorer\'s Legacy',0,0,0,0,0,'e29ac9b86266a23005a0cb9b1f14924387868141e69090a0586568e43aab5d69','710508ed06ff3fe0e95e0a23cb5de56ffa7afed94e5a843c9ca21fe558ab1c24','amerzone_the_explorer_legacy','amerzone_the_explorer_legacy','https://www.gog.com/game/amerzone_the_explorer_legacy',0,'Microids','Anuman Interactive','Adventure',0,0,0),(1207658848,'Syberia',0,0,0,0,0,'562431b824d67e15a3b04930a4534292f7b60ac31cdd10f64a38f809d09e7aed','2e4cfaf657e0d12002113e612ad2326562c3933a86385de8aabed04d5098f26e','syberia','syberia','https://www.gog.com/game/syberia',0,'Microids','Anuman Interactive','Adventure',0,0,0),(1207658849,'Syberia 2',0,0,0,0,0,'0cdfa04271c7b1c5bea9e0b4d6cccb2111a5aa601337697ce9bd0c4f96a01e64','cbef78ade33a53151987e99a5c972e41d2aec8a54fb7a102a93ebe8df836d910','syberia_2','syberia_2','https://www.gog.com/game/syberia_2',0,'Microids','Anuman Interactive','Adventure',0,0,0),(1207658851,'AquaNox 2: Revelation',0,0,0,0,0,'a7999c0dcc6e4d206bb7894760fee4c3738dfbe162f7c84633d389f7584f758a','aaf6648afdac10be11a8399fa45043b093a61687b05e89360e0639dee380f306','aquanox_2_revelation','aquanox_2_revelation','https://www.gog.com/game/aquanox_2_revelation',0,'Massive Development','THQ Nordic GmbH','Shooter',0,0,0),(1207658852,'Sniper Elite: Berlin 1945',0,0,0,0,0,'698653bc05629f4da9abb3f6cda5d4cca77b277ec97ff17fd0a85195c58c1905','b00aea21909734ed25eb2f4b4d3ce3b760ceecdda14e634afc6703aea82fb9a0','sniper_elite_berlin_1945','sniper_elite_berlin_1945','https://www.gog.com/game/sniper_elite_berlin_1945',0,'MC2','Rebellion','Shooter',0,0,0),(1207658853,'Outcast 1.1',0,0,0,0,0,'1e3d93502fc5c23abf7f5a9bccf2878797a59965661e762f8e2452539a482e3c','f32c4f17530f315e7b22644ec3b76f0c8ec19c4d1f56dc21b0f1115bb39fc1ec','outcast','outcast','https://www.gog.com/game/outcast',0,'Fresh3D','Fresh3D','Action',0,0,0);
INSERT INTO `games` VALUES (1207658855,'Master of Magic',0,0,0,0,0,'7157673233ae560acb638936eda7cd56cf653761ac29f6713a884eb7777c6a14','0ebb76e0d3cd9d140847f3b8d265b323ba240b041ebd2f6434d4e4679960c508','master_of_magic','master_of_magic','https://www.gog.com/game/master_of_magic',0,'SimTex','Atari','Strategy',0,0,0),(1207658857,'Blood 2: The Blood Group',0,0,0,0,0,'f79b3396b39969bfd34bfdb6a00b648624fc161d0936b20e9750136a8fe16b6f','e1fc0da9f49579d1be82efe2780ae220d5338974533d3f526ca338fdc54a0c88','blood_2_the_chosen_expansion','blood_2_the_chosen_expansion','https://www.gog.com/game/blood_2_the_chosen_expansion',0,'Monolith Productions','Atari','Shooter',0,0,0),(1207658858,'Master of Orion 3',0,0,0,0,0,'decc18b3a1f079aaf76dafacaa1609f90a8514f98732205532569bfbb26b7f94','1e6f4ec550142c15872eb6baabeff7b203f3e7ba510b137b0945a9d4c1ca6665','master_of_orion_3','master_of_orion_3','https://www.gog.com/game/master_of_orion_3',0,'Quicksilver Software','Wargaming Labs','Strategy',0,0,0),(1207658859,'Empire Earth 3',0,0,0,0,0,'6b560e737c2feded135012af5dd31eb2dd4734f28cdcf5dbb8573b6e3894170b','588914d5120af1997533acc24ae19af999c774d8eb228ff8e2f4c787307fc144','empire_earth_3','empire_earth_3','https://www.gog.com/game/empire_earth_3',0,'Mad Doc Software','Rebellion','Strategy',0,0,0),(1207658860,'Enclave',0,0,0,0,0,'70db57fdc0d9f14047c6fd8ee0ffee18c0534c2429090ced86df2fb5cedf8b7e','e28cf9535ef812db54484c56245884529850584ae63c1783c2a8a61cc6d8df8c','enclave','enclave','https://www.gog.com/game/enclave',0,'Starbreeze Studios','TopWare Interactive','Action',0,0,0),(1207658861,'Two Worlds Epic Edition',0,0,0,0,0,'30fb125072e2bde261106686569392e8cb62b9000a3eee0184b217e43bd20981','756aac38cf1cf6ba6896d7e780e50aa151a587ef5ed2574efd96bb5d491741d0','two_worlds','two_worlds','https://www.gog.com/game/two_worlds',0,'Reality Pump Studios','TopWare Interactive','Action',0,0,0),(1207658862,'Sherlock Holmes: Secret of the Silver Earring',0,0,0,0,0,'43f1850febaf13b4185d9f31ffb7d63ee1e85b496bac723af2bffc7a832ab827','ce50a0877742ded0381204961d38bb5e3295407c4993d08a361c62397cb25ebc','sherlock_holmes_secret_of_the_silver_earring','sherlock_holmes_secret_of_the_silver_earring','https://www.gog.com/game/sherlock_holmes_secret_of_the_silver_earring',0,'Frogwares','Frogwares','Adventure',0,0,0),(1207658863,'Journey to the Center of the Earth',0,0,0,0,0,'cf5b312cdbd42d33f82e0e13c4c2057bfd009925409c3047e0e0bcbe01afbfa6','84b3e258c5fcdd9d58112e00107ee914c0d09868b854786edf5bca72e61c2f9d','journey_to_the_center_of_the_earth','journey_to_the_center_of_the_earth','https://www.gog.com/game/journey_to_the_center_of_the_earth',0,'Frogwares','Frogwares','Adventure',0,0,0),(1207658864,'Star Wolves',0,0,0,0,0,'ceec2495517278542ce8e48df60791fc8edf425890d0a264fc8d416aad7c1a7a','ea9979b09b65e61f0b341b968c83226e9396fe2160a700525a1215660c827ad3','star_wolves','star_wolves','https://www.gog.com/game/star_wolves',0,'X-bow Software','1C Publishing','Strategy',0,0,0),(1207658865,'Independence War Deluxe',0,0,0,0,0,'6b980eb890c700b49dab354d88263d3558c212e17ce01a78a69aab0d01b6429c','221c3dc5f42ad9e4fafaaef43601c6f506d575900eaf1ca7ce2d64d863f7fe2f','independence_war_deluxe','independence_war_deluxe','https://www.gog.com/game/independence_war_deluxe',0,'Particle Systems Ltd.','Atari','Simulation',0,0,0),(1207658866,'Panzer General 3D Assault',0,0,0,0,0,'507e28f5d0f060f29fb4a286ce174bca9face9ecaeddb05ce215b548f646ed3a','60dbeef76545b057622a21da080f167b0522c53f370c40a551d4290f42a0858e','panzer_general_3d_assault','panzer_general_3d_assault','https://www.gog.com/game/panzer_general_3d_assault',0,'Strategic Simulations','Ubisoft','Strategy',0,0,0),(1207658867,'King\'s Bounty: The Legend',0,0,0,0,0,'f43343ed27913f5749f5d517db907638bc0ff3461cffbb52ce8c1b910342e697','656a935e1fb4d3b7fb97c2e87fce1b77cfe45ffb1b33b8a9698e0ae8b8758b6c','kings_bounty_the_legend','kings_bounty_the_legend','https://www.gog.com/game/kings_bounty_the_legend',0,' Katauri Interactive','1C Publishing','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1207658868,'Fantasy Wars',0,0,0,0,0,'46a72bf6743a73810851d86f1372e352cfec9bb02b55111490c8ee6df5b6ca5d','63bdcbee8918a66aa64b89ff924ab70c6c81e78e414bcee89394e420a2afe526','fantasy_wars','fantasy_wars','https://www.gog.com/game/fantasy_wars',0,'1C: Ino-Co','1C Publishing','Strategy',0,0,0),(1207658869,'UFO: Afterlight',0,0,0,0,0,'771e5b51d3a316f10f2f66f1316b67ff332a52345b4dd8e4e2d40accfde04c74','16db3e3d0db3c74b8e03d471c700e60dee6fba654baf73feb095a91e170e6f02','ufo_afterlight','ufo_afterlight','https://web.archive.org/web/20111217092717/https://www.gog.com/en/gamecard/ufo_afterlight',0,'Altar Interactive','1C Publishing','Strategy',0,0,0),(1207658870,'Freedom Force vs. the 3rd Reich',0,0,0,0,0,'51194be6012d1f9d2b57655bd2104c9b1a7d69ab6d8313e3ed0ce1d636d8a3e5','6b8e2230c15db0a6e43eaac8101c10d3ed079ed8c612a2a66a7b580bb3e9e103','freedom_force_vs_the_3rd_reich','freedom_force_vs_the_3rd_reich','https://www.gog.com/game/freedom_force_vs_the_3rd_reich',0,'Irrational Games','2K Games','Action',0,0,0),(1207658871,'Panzer General 2',0,0,0,0,0,'b2f97b7aa633cc2cabea3f0d2b62a1030100107763f7d8c228056f3752a9ae04','85f400eb18d50a5d6192b44fabbe5f8fb748586f7760e26158cedc9b5b577284','panzer_general_2','panzer_general_2','https://www.gog.com/game/panzer_general_2',0,'Strategic Simulations','Ubisoft','Strategy',0,0,0),(1207658872,'Journeyman Project 2: Buried in Time, The ',0,0,0,0,0,'843a49914db2b186fd40ce4aebf5b259eb19ad8b2b9b216240dfacee2bc707d0','34fecea6c4dcf1456bf019230018e9318f739a8c1290378e57f954e2b73c3f7f','journeyman_project_2','journeyman_project_2','https://www.gog.com/game/journeyman_project_2',0,'Presto Studios','Presto Studios','Adventure',0,0,0),(1207658873,'Independence War 2: Edge of Chaos',0,0,0,0,0,'60269fb805b12ee56bf6e5ea5e585580587342d89a88d42b87546a9b210a19e9','b2015ca2d41dd731001768d8ad9010d7cb0ff170264558623b32bfb45920dff1','independence_war_2','independence_war_2','https://www.gog.com/game/independence_war_2',0,'Particle Systems Ltd.','Atari','Shooter',0,0,0),(1207658874,'Alone in the Dark: The New Nightmare',0,0,0,0,0,'4049aa48b618da7f9271e90f593c2e910bffa6cd9bcbbb1a3b5b2b454d9f62eb','4566e2ed1ba1e6fd79dbb852b61d281878bbfebe98e0539fbb6b2dc312fbe204','alone_in_the_dark_the_new_nightmare','alone_in_the_dark_the_new_nightmare','https://www.gog.com/game/alone_in_the_dark_the_new_nightmare',0,'DarkWorks S.A.','THQ Nordic GmbH','Adventure',0,0,0),(1207658876,'Serious Sam: The First Encounter',0,0,0,0,0,'cfc2af27c688c5c4f0d797f649a22d20a6f5ccfb370e409f41dcc1f25fac6145','c1a61cf6a6f1e636dc4f7c711e4e626b467a419120181897c014b666f16ff1ce','serious_sam_the_first_encounter','serious_sam_the_first_encounter','https://www.gog.com/game/serious_sam_the_first_encounter',0,'Croteam','Devolver Digital','Shooter',0,0,0),(1207658877,'Serious Sam: The Second Encounter',0,0,0,0,0,'ce80fcf1b31927a651023040ae995c5971209f0a018b3f63b83fcc4d70a53654','a152426c66345c23768453cc99ec8e03f83c1e3be396a2472365f072be82e128','serious_sam_the_second_encounter','serious_sam_the_second_encounter','https://www.gog.com/game/serious_sam_the_second_encounter',0,'Croteam','Devolver Digital','Shooter',0,0,0),(1207658879,'Raptor: Call of the Shadows 2010 Edition',0,0,0,0,0,'8767036ff0cccbd6b69883c21e9eda9393f7bc322bc843f73637b68e21937238','94922c13b0c364695879b40c7e725e7e2d7aa3c0f8623ff432698450c89753a2','raptor_call_of_the_shadows_2010_edition','raptor_call_of_the_shadows_2010_edition','https://www.gog.com/game/raptor_call_of_the_shadows_2010_edition',0,'Mountain King Studios','DotEmu','Shooter',0,0,0),(1207658880,'Total Annihilation: Commander Pack',0,0,0,0,0,'0de3da2683a5e8158d7ad44a8a92a29f79210563a23faeddd64d2a435caa1fba','d3c24e57f873cf7ec056132f207b46c99a04ebb2bb4107f666931074db74b165','total_anihilation_commander_pack','total_anihilation_commander_pack','https://www.gog.com/game/total_anihilation_commander_pack',0,'Cavedog Entertainment','Wargaming.net','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207658882,'Still Life',0,0,0,0,0,'74647a7080cd839570c040b31659eb708a55dfa6e8648d9a8040f3e890e73cb7','16bdfff58643702e2f94574d2c200b5ae0c7e1a81c3dd245efe39b6e10958f04','still_life','still_life','https://www.gog.com/game/still_life',0,'Microids','Anuman Interactive','Adventure',0,0,0),(1207658883,'Age of Wonders',0,0,0,0,0,'52bd00fa8067c97a25588eb24abb9a5651b0c11b44f35bed8c10b66df3bd8784','57bdae9be060d3fbfcfa62fec43e4f836edc3c6912657b7234997f1d19284d54','age_of_wonders','age_of_wonders','https://www.gog.com/game/age_of_wonders',0,'Triumph Studios','Paradox Interactive','Strategy',0,0,0),(1207658884,'Age of Wonders 2: The Wizard\'s Throne',0,0,0,0,0,'9d952fde3f28b1ed17834acba56d459f7db4209a332eec3d3db5a8ed93c0e4dc','555f6fe5898fb7a1f0ecdf51a84e3b63e61986ee1bc3df6db2145ed5a690aa25','age_of_wonders_2_the_wizards_throne','age_of_wonders_2_the_wizards_throne','https://www.gog.com/game/age_of_wonders_2_the_wizards_throne',0,'Triumph Studios','Paradox Interactive','Strategy',0,0,0),(1207658885,'Age of Wonders: Shadow Magic',0,0,0,0,0,'2515bc7a3156a84023606bfc66db86857a8d34e183f252b39e83fae365f8bd7d','228b18c99d4ae02b94da362d628564112d65e977f152f5838169135f97aec7aa','age_of_wonders_shadow_magic','age_of_wonders_shadow_magic','https://www.gog.com/game/age_of_wonders_shadow_magic',0,'Triumph Studios','Paradox Interactive','Strategy',0,0,0),(1207658886,'Baldur\'s Gate: The Original Saga',0,0,0,0,0,'cd7f35b06f0a5ca0d1c8b875cbe0ab9967e6cd02d565bd0d5c830b0fe5562c72','fd19a052f34766f8b341f9de41f5d744118a7f2356d3ee958d963fb460c994a0','baldurs_gate_the_original_saga','baldurs_gate_the_original_saga','https://web.archive.org/web/20111222191926/https://www.gog.com/en/gamecard/baldurs_gate_the_original_saga',0,'BioWare','Atari','Role-playing',0,0,0),(1207658888,'Icewind Dale Complete',0,0,0,0,0,'7a038b7fb3a0c6ecea93b26700f72f5efc95688ab8a64b5b954e3385a78450ea','35da0f39e9dc594a798779f2109b53669b2cb5e2b03c52da6d9060da16447e0c','icewind_dale_complete','icewind_dale_complete','https://web.archive.org/web/20160101054542/https://www.gog.com/game/Icewind_Dale_Complete',0,'Black Isle Studios','Hasbro Inc.','Role-playing',0,0,0),(1207658889,'Temple of Elemental Evil, The ',0,0,0,0,0,'734f8a229be127060b0fdf1227068f57f7b094d538b3abcfd8cc1582c6691c40','8479418a4f60437cfa22bf1601e124293f17f1bcee6818cdd7ce29fa176e59d2','the_temple_of_elemental_evil','the_temple_of_elemental_evil','https://www.gog.com/game/the_temple_of_elemental_evil',0,'Troika Games','Hasbro Inc.','Role-playing',0,0,0),(1207658890,'Neverwinter Nights Diamond',0,0,0,0,0,'690e76916523b140d297f86906c67e2816b27005ee1b6743b53332c9583b2654','a91f966894fe07ca97a93886277f1748da43e55129463aed8b78dda0683bf03a','neverwinter_nights_diamond_edition','neverwinter_nights_diamond_edition','https://www.gog.com/game/neverwinter_nights_diamond_edition',0,'BioWare','Hasbro Inc.','Role-playing',0,0,0),(1207658891,'Icewind Dale 2 Complete',0,0,0,0,0,'d0ccceaffdee7a90f57cb893cf2d5052c482fb2ebe5db81c0f97ab0f18278334','850ef8d0abbda36c007d2332e3c57b610d97c68e7b68d79bdaa64fb9be53ddd9','icewind_dale_2','icewind_dale_2','https://www.gog.com/game/icewind_dale_2',0,'Black Isle Studios','Hasbro Inc.','Role-playing',0,0,0),(1207658892,'Space Rangers',0,0,0,0,0,'3d22f48acfdcc9f16020fa777219255baeed48748e92fb8b457082d578e54aa6','4e7afd8111b8c492ac2b6670798f771dd6e34fe7f651dc0f813ad5f755fdd1fa','space_rangers','space_rangers','https://web.archive.org/web/20120815114113/http://www.gog.com/en/gamecard/space_rangers',0,'Elemental Games','1C Publishing','Action',0,0,0),(1207658893,'Baldur\'s Gate 2 Complete',0,0,0,0,0,'3906ba7129e42951a364a912fdf1b8b73dfcfd3771783e1caaa1345ce4642e4f','915306c00709d4b7fef98e9d644b80c188dd3b7eb0a63ea2b70ffaef11ea2400','baldurs_gate_2_complete','baldurs_gate_2_complete','https://web.archive.org/web/20121114103323/https://www.gog.com/en/gamecard/baldurs_gate_2_complete',0,'BioWare','Hasbro Inc.','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1207658894,'Chaser',0,0,0,0,0,'f282f292d416e088f5b714445f37af7fecf2a68da1bf2b646547c638ca3b19e0','75eaf6f5cb498367d84af31ff4cc752cffa3b8787c4adcfe75924eb0c5247a8a','chaser','chaser','https://www.gog.com/game/chaser',0,'Cauldron Ltd.','THQ Nordic GmbH','Shooter',0,0,0),(1207658895,'Moto Racer',0,0,0,0,0,'6f599a7dcc9b433949764e4f39d50c1bea07b590e730c3a3599275924b9347e3','71e7ee491640aad8b68a9a6d6e7a3197e0f40d6634f02892855b55a4b5039007','moto_racer','moto_racer','https://www.gog.com/game/moto_racer',0,'Delphine Software','Anuman Interactive','Racing',0,0,0),(1207658896,'Moto Racer 2',0,0,0,0,0,'3130a44427e07737bb32deadd777fce8931a59eec0c4200556e877a207a3cc9d','f400901039e714bb73c35b06b45f4b2cbd13127d54cb2c1f08038bc421d6c5e1','moto_racer_2','moto_racer_2','https://www.gog.com/game/moto_racer_2',0,'Delphine Software','Anuman Interactive','Racing',0,0,0),(1207658897,'Moto Racer 3 Gold Edition',0,0,0,0,0,'cbe7e0a814d430306d912d02127a8c1501cf2f278492d5b69fc47b0665d7efcd','d6512c923718a16d4d26dd1d244f85d48abb7f7ae2a9af1a0e8dec4432247d06','moto_racer_3','moto_racer_3','https://www.gog.com/game/moto_racer_3',0,'Delphine Software','Anuman Interactive','Racing',0,0,0),(1207658898,'Alien Shooter + Expansions',0,0,0,0,0,'ebb86168a52f50da357e07303887cd4c616a481a9f5d1b073bd500c94835c180','921ea0f796f340e87585ceafe27ae3a0b80a5bed67a2ee579712f503e063f710','alien_shooter_expansions','alien_shooter_expansions','https://www.gog.com/game/alien_shooter_expansions',0,'Sigma Team','Sigma Team','Shooter',0,0,0),(1207658899,'Dream Pinball 3D',0,0,0,0,0,'c5664406577ba742837f9c03c9ab41bcf37c46e19113073fa2fb4b5cb5001697','569bd5308f0b4672a7284ac8f4ba456d12c7a0b5ce4d9359c86cc5fa1a93e68c','dream_pinball_3d','dream_pinball_3d','https://www.gog.com/game/dream_pinball_3d',0,'A.S.K. Homework','TopWare Interactive','Simulation',0,0,0),(1207658900,'Broken Sword: Director\'s Cut',0,0,0,0,0,'5b0d3da8074c8dafb7c129fe4eac9feb47dce1f15fcaa325c1b420e21adc4273','ac34c684d96bec0816c67a8f693007fa50cf41702b3daa97854e2cccca14adad','broken_sword_directors_cut','broken_sword_directors_cut','https://www.gog.com/game/broken_sword_directors_cut',0,'Revolution Software','Revolution Software','Adventure',0,0,0),(1207658901,'Tyrian 2000',0,0,0,0,0,'346da67f4079d2d4e64ab0e7c310ee81218734d4bde4d74d3a3f074510cf6fa5','aea72115a9abe7e461a99756fd5936ad5fbd72641e46270a6499c869c9552cb8','tyrian_2000','tyrian_2000','https://www.gog.com/game/tyrian_2000',0,'Eclipse Productions','Eclipse Productions','Shooter',0,0,0),(1207658904,'Dark Reign + Expansion',0,0,0,0,0,'647ef1a9b0edda92365c2052e3ac95539f88945604a03ac284f4749f86a5fe53','7fb0087e6e25c54f6efb21f988e46275196cbe962bd725ac3c829a5dec2de669','dark_reign_expansion','dark_reign_expansion','https://www.gog.com/game/dark_reign_expansion',0,'Auran','Activision','Strategy',0,0,0),(1207658906,'Last Express, The ',0,0,0,0,0,'273b6f511cb0a305c390a5aa1bd75e0231f32d5cd119c517d91cd3e91e72447e','3152dafa7d96da8844b44d666e2972adcdf41e420c5cd660ad3c7f7920c79f0e','last_express_the','last_express_the','https://www.gog.com/game/last_express_the',0,'Smoking Car Productions','Phoenix Licensing','Adventure',0,0,0),(1207658907,'Return to Zork',0,0,0,0,0,'ff0781174faa3a662d01b8ca6d76ae7cc144364190644665c55de449e14648f4','1a5a281823fd893c06fba5de18cd1edcb9bc4ab515460ce22a80fd50eba180c0','return_to_zork','return_to_zork','https://www.gog.com/game/return_to_zork',0,'Infocom','Activision','Adventure',0,0,0),(1207658908,'Space Rangers 2: Reboot',0,0,0,0,0,'8bed03644946a46a1cef0ec16da992c582a87f07bd31b2a673026d385cce69ae','a0b3d32051099776486b819a67f5a9bfb44ef8e0147fbea020d6c0ba93d0fb47','space_rangers_2_reboot','space_rangers_2','https://web.archive.org/web/20120906022710/http://www.gog.com/en/gamecard/space_rangers_2_reboot',0,'Elemental Games','1C Publishing','Action',0,0,0);
INSERT INTO `games` VALUES (1207658911,'Dark Reign 2',0,0,0,0,0,'aec4bc2c69aefdd683597c49f94386459ab6bdb65c6c9bae424b87803115babe','f8d3897885b267de71c4af1aa0722b4521f19b625c515759684faeaac3ff6bf2','dark_reign_2','dark_reign_2','https://www.gog.com/game/dark_reign_2',0,'Pandemic Studios','Activision','Strategy',0,0,0),(1207658912,'Total Annihilation: Kingdoms + Iron Plague',0,0,0,0,0,'0435cea9f763332871fb3a088d4d3db5f18f92cb78991cb58d9f549b4fd5c950','3b6a2b7dbb5ee48c467bfe4538e9b2de5213d5d2c735469a6b2c34c0c3626870','total_annihilation_kingdoms','total_annihilation_kingdoms','https://www.gog.com/game/total_annihilation_kingdoms',0,'Cavedog Entertainment','Wargaming.net','Strategy',0,0,0),(1207658913,'Zork Nemesis: The Forbidden Lands',0,0,0,0,0,'c81c512da26ccc47f8181d70ced287da81a62011c30f74aecdf898f802907990','9af098085aedbb743451a334a1392237d0ba60b8027725ad5906356d55781a52','zork_nemesis_the_forbidden_lands','zork_nemesis_the_forbidden_lands','https://www.gog.com/game/zork_nemesis_the_forbidden_lands',0,'Zombie LLC','Activision','Adventure',0,0,0),(1207658914,'Shadowgrounds',0,0,0,0,0,'acd6dbf9301e1f6625134bea3d99054dba523af52b26e504f0110d91ddb79808','be75a74ed0c367a67de93cb13e52fa12f871fd199af83155118f774741fa2e53','shadowgrounds','shadowgrounds','https://www.gog.com/game/shadowgrounds',0,'Frozenbyte','Frozenbyte','Shooter',0,0,0),(1207658915,'Heroes of Might and Magic® 4: Complete',0,0,0,0,0,'3549b565446a62a7aa085620de0de02d2d587df6bf9a0f3fe6b8445a4f63c525','97a577b2a225e79f186bd45ab2639f9cd767c8d87b7aa6879fd586414085af5a','heroes_of_might_and_magic_4_complete','heroes_of_might_and_magic_4_complete','https://www.gog.com/game/heroes_of_might_and_magic_4_complete',0,'New World Computing, Inc.','Ubisoft','Strategy',0,0,0),(1207658916,'Might and Magic® 7: For Blood and Honor®',0,0,0,0,0,'2facf4324a1a31a413a0ff3ec541f1eb9eaf1c9da8dd340f11937f6378393e6e','ce4bd23881818849febcf8abe021e55789bf6a11042d7e1731144789b0f7659e','might_and_magic_7_for_blood_and_honor','might_and_magic_7_for_blood_and_honor','https://www.gog.com/game/might_and_magic_7_for_blood_and_honor',0,'New World Computing, Inc.','Ubisoft','Role-playing',0,0,0),(1207658918,'Might and Magic® 8: Day of the Destroyer™',0,0,0,0,0,'12e210a61798a8065cd39424f69b27b97d0d9e62287d28ce0441b985795fe584','f50f3c061929125323e07b168ff240c255537866a99f83d88f09c001b28212fa','might_and_magic_8_day_of_the_destroyer','might_and_magic_8_day_of_the_destroyer','https://www.gog.com/game/might_and_magic_8_day_of_the_destroyer',0,'New World Computing, Inc.','Ubisoft','Role-playing',0,0,0),(1207658919,'Rayman® Forever',0,0,0,0,0,'da28dfea86e08ae4c02ce73a6317b37833661c079898f02826b7475bbb685921','c3a4edb2ed6ed251e421ecd2a0a543fedaaf48313c9c82346bc9a60a4aaed1a2','rayman_forever','rayman_forever','https://www.gog.com/game/rayman_forever',0,'Ubisoft','Ubisoft','Action',0,0,0),(1207658920,'XIII',0,0,0,0,0,'79aad98dd69077ebe395aec9bb1d9bc0ecd26f2ca6153a1e82f45a864d9ae5d0','aecf7b5717c05dba42a4a731563617ad959e9b935568365d5195b585685275c6','xiii','xiii','https://web.archive.org/web/20121025131617/http://www.gog.com/en/gamecard/xiii',0,'Ubisoft Paris Studios','Ubisoft','Shooter',0,0,0),(1207658921,'Realms of the Haunting',0,0,0,0,0,'cf7781f15e1ac1715c78f295f367d0d5bc0d82dc296a9f1222e9189995e8103c','a367de51a1fb935936315e88b674f046a81d2ca855f0ba47763bc157786f70f8','realms_of_the_haunting','realms_of_the_haunting','https://www.gog.com/game/realms_of_the_haunting',0,'Gremlin Interactive Ltd.','Blue Moon Red Owl','Adventure',0,0,0),(1207658922,'Guilty Gear X2 #Reload',0,0,0,0,0,'ea7d2d5750d94374d07a21ea3afb07a19c42d0a5f467ad853932a6cce1333bfc','c75c56b05da9552c38a69b39346824f1cd17270ad702e31041b642ac37cb0646','guilty_gear_x2_reload','guilty_gear_x2_reload','https://web.archive.org/web/20121105121935/http://www.gog.com/en/gamecard/guilty_gear_x2_reload',0,'Arc System Works Co.','Blue Moon Red Owl','Action',0,0,0);
INSERT INTO `games` VALUES (1207658924,'The Witcher: Enhanced Edition',0,0,0,0,0,'37d4a208d1f5bb0e163da540ac894ba46a7d566ede31aaaefc74bbcd46ebd190','c73009d18e964448b9704ad9d69a7c68bab5f8a10df410254bb511f2f9198a3a','the_witcher','the_witcher','https://www.gog.com/game/the_witcher',0,'CD PROJEKT RED','CD PROJEKT RED','Role-playing',0,0,0),(1207658926,'Desperados: Wanted Dead or Alive',0,0,0,0,0,'0b40e134ecb92054867e9c70e99b21062b78d98f1b954ff0c24cda1cb341f099','986deeda7121c65e1f514ac63455ee747da9cf9a8f07e948d18835b54b612834','desperados_wanted_dead_or_alive','desperados_wanted_dead_or_alive','https://www.gog.com/game/desperados_wanted_dead_or_alive',0,'Spellbound Entertainment AG','THQ Nordic GmbH','Strategy',0,0,0),(1207658927,'Dragonsphere',0,0,0,0,0,'bc3757dfa649ab55df0677a47ede21308c332beeec408709ced006b28a76566b','163ae7f78c366d89b1eb97e3d6b6e55c801222891184f41197846b5c60f4a5f7','dragonsphere','dragonsphere','https://www.gog.com/game/dragonsphere',0,'MicroProse','Retroism','Adventure',0,0,0),(1207658928,'Dungeons & Dragons: Dragonshard',0,0,0,0,0,'d00a3c552a6a13b8329fe40b00cad1a3b7f1a0d2203b6b68dde21dc8515e912d','4e44e6e9aa9955fcc2a950145fffa8a7cea5606617da393ffa8938dcbec21100','dungeons_dragons_dragonshard','dungeons_dragons_dragonshard','https://www.gog.com/game/dungeons_dragons_dragonshard',0,'Liquid Entertainment','Hasbro Inc.','Strategy',0,0,0),(1207658929,'Forgotten Realms: Demon Stone',0,0,0,0,0,'beb69b41b422ee93951cf548fb00b1b82a888070f51d0f1589628c5988e505ca','cd8e5c30bf817646f93f36d3371c5ac634fd26477fb4922313babe43ca24a731','forgotten_realms_demon_stone','forgotten_realms_demon_stone','https://www.gog.com/game/forgotten_realms_demon_stone',0,'Stormfront Studios','Hasbro Inc.','Action',0,0,0),(1207658930,'The Witcher 2: Assassins of Kings Enhanced Edition',0,0,0,0,0,'8355e657a19311b158a3553a154e109199d6991c7791a20c3305af1f84d15ed7','0ddfe05d60dac0287f9cde5c31be4582db96a3f93c50a24d3dbed837ab7b7464','the_witcher_2','the_witcher_2','https://www.gog.com/game/the_witcher_2',0,'CD PROJEKT RED','CD PROJEKT RED','Role-playing',0,0,0),(1207658933,'Crusader: No Remorse™',0,0,0,0,0,'059151e32f6d55c841c002054426c7c47b5af70551ed4945e27cfab7062de3c9','8846c54913ba3fe214765dab4bc2ba4062ed3504b06136e6eab36dcb8c6b3082','crusader_no_remorse','crusader_no_remorse','https://www.gog.com/game/crusader_no_remorse',0,'Origin Systems','Electronic Arts','Action',0,0,0),(1207658934,'Dungeon Keeper Gold™',0,0,0,0,0,'b9570362298a313ecf116412deecdad66b681ed41f2c5d1d5b45ef7e0b856a1e','218c377eeccde116570c628fde584c960899584745a88d44fb9fdc3771582ade','dungeon_keeper','dungeon_keeper','https://www.gog.com/game/dungeon_keeper',0,'Bullfrog Productions','Electronic Arts','Strategy',0,0,0),(1207658935,'Magic Carpet Plus™',0,0,0,0,0,'047eda8e116ea233e1495118ce7d43e6b6baae3b81598dd22215e6b03183f9bf','06e2540c906c6df46f6e1d884ff3cc4bdefd616267cfe664e04f7ccd6e5d6140','magic_carpet','magic_carpet','https://www.gog.com/game/magic_carpet',0,'Bullfrog Productions','Electronic Arts','Shooter',0,0,0),(1207658936,'Sid Meier\'s Alpha Centauri™ Planetary Pack',0,0,0,0,0,'799e7f0895267fb3ba028fd57380757704f00744676541acafabdb4b2c924ddf','1f1333bcf476dca8eabd34757a0e2084696f06a3e2d459027e9089ba5ab87b6f','sid_meiers_alpha_centauri','sid_meiers_alpha_centauri','https://www.gog.com/game/sid_meiers_alpha_centauri',0,'Firaxis Games','Electronic Arts','Strategy',0,0,0),(1207658938,'Wing Commander ®: Privateer ™',0,0,0,0,0,'8bde3d490385c84945279abd0b757c80ad9386a6801e5dca48cee9ebdd34c015','346e9a4dde311f71423a90f9ccd937db77688d57b8c8cfbe924e82710cbb527b','wing_commander_privateer','wing_commander_privateer','https://www.gog.com/game/wing_commander_privateer',0,'Origin Systems','Electronic Arts','Shooter',0,0,0);
INSERT INTO `games` VALUES (1207658939,'Spellforce 2: Shadow Wars',0,0,0,0,0,'7b98733fd81babb66e2095f9064da4f010d491722c45b3251d90f73e3c94af76','2b8727d1d213ddd8db2b790ff6da25a443d1776479f8846e7618a82fedcf0f9a','spellforce_2_shadow_wars','spellforce_2_shadow_wars','https://web.archive.org/web/20111229062751/http://www.gog.com/en/gamecard/spellforce_2_shadow_wars',0,'Phenomic','Nordic Games','Role-playing',0,0,0),(1207658940,'Rayman 2: The Great Escape',0,0,0,0,0,'54523523db1de150060fa9ec4209a06f10741e77b21536baaa526051409547db','ce644d33f35560fc5fabdaa66f49abecf0b73e8ace518beba218594de988b931','rayman_2_the_great_escape','rayman_2_the_great_escape','https://www.gog.com/game/rayman_2_the_great_escape',0,'Ubisoft','Ubisoft','Action',0,0,0),(1207658941,'Litil Divil',0,0,0,0,0,'f85fca195d168cfd604309925ef3242d6b7ad2e0d45d45aff89fd8d1ef22f09e','10fd7ddc27e516445b745a744eff48e2250a774640f510c854232d5782bbcd32','litil_divil','litil_divil','https://www.gog.com/game/litil_divil',0,'Gremlin Interactive Ltd.','Blue Moon Red Owl','Adventure',0,0,0),(1207658943,'Spellforce 2: Dragon Storm',0,0,0,0,0,'0d4b130a9ec8430c1e144dc297f130c3d58eb92c9da5d752ae9a5ea4d4210141','7ddb56ff418573f9e327a5140ee899977dbba7a716e6c7baf530ba009f2612cf','spellforce_2_dragon_storm','spellforce_2_dragon_storm','https://web.archive.org/web/20111202081228/http://www.gog.com/en/gamecard/spellforce_2_dragon_storm',0,'Phenomic','Nordic Games','Role-playing',0,0,0),(1207658944,'Atlantis: The Lost Tales',0,0,0,0,0,'223ac0606a587de21f3521a2cf11c4e0379d11da5873d36d599c9bf15beac750','50524ac5cecedf0440b561bd9c8a138a8164a9c4d9c4dafffe3e661ae28f6384','atlantis_the_lost_tales','atlantis_the_lost_tales','https://www.gog.com/game/atlantis_the_lost_tales',0,'Cryo Interactive','Anuman Interactive','Adventure',0,0,0),(1207658945,'RollerCoaster Tycoon: Deluxe',0,0,0,0,0,'5c0031f87d2a511872c23733754bab8419f5af317fed38f58402ceab18958761','8410f8e880445a1f498703accba6297a1a0f2e290870fc7fe1a3961220b8a8ba','rollercoaster_tycoon_deluxe','rollercoaster_tycoon_deluxe','https://www.gog.com/game/rollercoaster_tycoon_deluxe',0,'Chris Sawyer Productions','Atari','Simulation',0,0,0),(1207658946,'SWAT 3: Tactical Game of the Year Edition',0,0,0,0,0,'13aaf1083697dd287ac8a7a3dcfa5b047a72e825798fa92b31ec4a185101cf24','84471502a968ec694822313d2734864096844dbba6fac73f1d6b823b5c40789a','swat_3_tactical_game_of_the_year_edition','swat_3_tactical_game_of_the_year_edition','https://www.gog.com/game/swat_3_tactical_game_of_the_year_edition',0,'Sierra','Activision','Action',0,0,0),(1207658947,'Rayman 3: Hoodlum Havoc',0,0,0,0,0,'295e45ab712909df42bb689520e9afde014b1e791673d6779f22db46cfe4b4f3','8e086e74ad8de5b8336f16d2959383619c849245abff494c6e5e1ccf147f141f','rayman_3_hoodlum_havoc','rayman_3_hoodlum_havoc','https://www.gog.com/game/rayman_3_hoodlum_havoc',0,'Ubisoft','Ubisoft','Action',0,0,0),(1207658948,'Zork: Grand Inquisitor',0,0,0,0,0,'e2d051192855ee7bd50597c524edaf67f654da072614c689f8ba18ba731ef805','4e349df96f6f11f35dbf4f2c9c7992200214bad968e2c1de58a1cb31a8f4da09','zork_grand_inquisitor','zork_grand_inquisitor','https://www.gog.com/game/zork_grand_inquisitor',0,'Activision','Activision','Adventure',0,0,0),(1207658949,'Normality',0,0,0,0,0,'abe5ec752d8885e13890b64d01ebf3690d6182efe8a883d0e0f05e9f78f31422','c4a754dac19e8ecaf5008ee4544fd41f0eaff64b8d07b5e5a7eff64c4a4f1098','normality','normality','https://www.gog.com/game/normality',0,'Gremlin Interactive Ltd.','Blue Moon Red Owl','Adventure',0,0,0),(1207658950,'Oddworld: Stranger\'s Wrath HD',0,0,0,0,0,'7b846f13c2511fd76405fa380996cbb38ef74630211a0de548f99391fbd98b01','ef75678e62383cc764fe74227d1f76b845ec54527aa4603089d5694be039f346','oddworld_strangers_wrath','oddworld_strangers_wrath','https://www.gog.com/game/oddworld_strangers_wrath',0,'Oddworld Inhabitants','Oddworld Inhabitants','Shooter',0,0,0);
INSERT INTO `games` VALUES (1207658951,'Atlantis 2: Beyond Atlantis',0,0,0,0,0,'013d479d6251cd314f563576b734799454842b665cfbe56ff457abafa5c0abc3','1dbca478621d53eafd65525423d91cde0160ee32a468c4fe4af126f63208fdd9','atlantis_2_beyond_atlantis','atlantis_2_beyond_atlantis','https://www.gog.com/game/atlantis_2_beyond_atlantis',0,'Cryo Interactive','Anuman Interactive','Adventure',0,0,0),(1207658952,'Scratches Director\'s Cut',0,0,0,0,0,'290e2c429d432d349e9e0102a188accb3e6c683a455015bc6739a6c08c60dc24','56991f4190d22f9d9d5dfab442fe6ea9cd0546d093e69299fe20f133e9f3708c','scratches_directors_cut','scratches_directors_cut','https://web.archive.org/web/20121029011000/http://www.gog.com/en/gamecard/scratches_directors_cut',0,'Nucleosys','Meridian4','Adventure',0,0,0),(1207658953,'Slipstream 5000',0,0,0,0,0,'fad3ae9a7039de6aa2626ba4c59ff8ce536e5740039eb78afb3328e535545c32','765e5872b9b7222fdc14a3330d8da96a2894fdd44347aaa6f714dddd44f28341','slipstream_5000','slipstream_5000','https://www.gog.com/game/slipstream_5000',0,'The Software Refinery ','Blue Moon Red Owl','Racing',0,0,0),(1207658954,'Battle Isle: The Andosia War',0,0,0,0,0,'5aacc55b4fbc634eb7d50b829d01fff90fb620f0b0d499e992599013582de5ec','a6ba3cee0b2dee27d2119aee4f48145bf18e92002146f2704dcf046cff4e2779','battle_isle_the_andosia_war','battle_isle_the_andosia_war','https://www.gog.com/game/battle_isle_the_andosia_war',0,'Cauldron Ltd.','Ubisoft','Strategy',0,0,0),(1207658955,'Locomotion, Chris Sawyer\'s',0,0,0,0,0,'bb1ede9901fa547d48d31f9ce6fdd347d4c597b3f8a496b412190ae2e2a357fb','311fd19f421b457e5fe826a20d29a0803d01ec833c0c03d0d566cf224ad0c953','chris_sawyers_locomotion','chris_sawyers_locomotion','https://www.gog.com/game/chris_sawyers_locomotion',0,'Chris Sawyer Productions','Atari','Simulation',0,0,0),(1207658956,'Crusaders of Might and Magic',0,0,0,0,0,'7c202e51adc8305b8b42d4d6a31fbdeed25eee35c8308c4831953cbffe76c9c4','c4101a177df87a13056f130b3d72f1ba372ada56a6d27ccf0a1faaf3dc4ae532','crusaders_of_might_and_magic','crusaders_of_might_and_magic','https://www.gog.com/game/crusaders_of_might_and_magic',0,'The 3DO Company','Ubisoft','Action',0,0,0),(1207658957,'RollerCoaster Tycoon 2: Triple Thrill Pack',0,0,0,0,0,'6995619d621f4b1f616449b664357a9f1ab89749ee3c182f43089a245ca9a2ef','3123b0c52d1f0b29db97648941672afcbdb88cee66e5f1a14141ec7ebfd5b86b','rollercoaster_tycoon_2','rollercoaster_tycoon_2','https://www.gog.com/game/rollercoaster_tycoon_2',0,'Chris Sawyer Productions','Atari','Simulation',0,0,0),(1207658958,'Atlantis 3: The New World',0,0,0,0,0,'d1ebe7406a9a9adc4f82c336022295a874d2e65cff0d51a3f9f7f35ee5ba6675','daf05e87b9c5ff0f1b2d2bf7538fe343b55d4454719c1f4c8e75b98cc57b3061','atlantis_3_the_new_world','atlantis_3_the_new_world','https://www.gog.com/game/atlantis_3_the_new_world',0,'Cryo Interactive','Anuman Interactive','Adventure',0,0,0),(1207658959,'Dungeon Keeper™ 2',0,0,0,0,0,'fd15181daa1a215c0d94740596b55dd930f592bc90ba88846f23c08edc52183b','fcf302b6e2fd1731af4c9b35f8784c95a924efbf10cb50adacd46d69ebcce2da','dungeon_keeper_2','dungeon_keeper_2','https://www.gog.com/game/dungeon_keeper_2',0,'Bullfrog Productions','Electronic Arts','Strategy',0,0,0),(1207658962,'Ultima™ 4: Quest of the Avatar',0,0,0,0,0,'cb10216b4721fc46db91a79af4bee55dc90123c13ebcc11a50980d384ca1a4a1','6348116efe880fb57f0a90e5fd4e998a1b8d51735acd3e23d996ab4a30dadc0e','ultima_4','ultima_4','https://www.gog.com/game/ultima_4',0,'Origin Systems','Electronic Arts','Role-playing',0,0,0),(1207658963,'Populous™',0,0,0,0,0,'aa28cb803e00033005cc3115bcafd4300b63aca5efa03ffc2b2ddba3660a99c9','b0cafd2d6af7ae0f5ea4a42035e97cc5a5fdf289f075d6c55ce820849e9020e8','populous','populous','https://www.gog.com/game/populous',0,'Bullfrog Productions','Electronic Arts','Strategy',0,0,0),(1207658964,'Nox™',0,0,0,0,0,'a3b79647df9e84ff6cfee59a7fbe100976c25cf9e7d3889ec3a3237336c283d7','0dcc7acc68597d8aecb9f0c6460a5faec5ae5366cd7ce2078923c2b0674575ed','nox','nox','https://www.gog.com/game/nox',0,'Westwood Studios','Electronic Arts','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1207658966,'Wing Commander™ 3 Heart of the Tiger™',0,0,0,0,0,'d9de56125d8001cb24fd1a94d97e691af7aa76c1880b7e7aaf0a104d8fbe083a','ed48284b3473ca6a993697a4de8aa06ec95d46750498f107bf76974036601db7','wing_commander_3_heart_of_the_tiger','wing_commander_3_heart_of_the_tiger','https://www.gog.com/game/wing_commander_3_heart_of_the_tiger',0,'Origin Systems','Electronic Arts','Shooter',0,0,0),(1207658967,'Star Control III',0,0,0,0,0,'48fc647a8a12cdd31fc12f99df127e58fa69f42f10ea35edae3b71afd8257bdd','37d53b9a35ded2ac853a56ad2a3cbef843159bdb9baa0147a9b38b8ef1b6fe3b','star_control_iii','star_control_iii','https://web.archive.org/web/20180503025300/https://www.gog.com/game/star_control_the_kessari_quadrant',0,'Legend Entertainment','Stardock','Adventure',0,0,0),(1207658968,'B-17 Flying Fortress: The Mighty 8th',0,0,0,0,0,'c3a0671eeff789bd38510e123c0b8ee5f0af4d388a275f41fc4de1c35afe9efd','f6162c2dbcc991e9d9e0f146e6dab4a8e5770f3752aee9d962c2132117a6a75d','b_17_flying_fortress_the_mighty_8th','b_17_flying_fortress_the_mighty_8th','https://www.gog.com/game/b_17_flying_fortress_the_mighty_8th',0,'Wayward Design Limited','Retroism','Simulation',0,0,0),(1207658969,'SimCity™ 2000 Special Edition',0,0,0,0,0,'6158456175ba7ca5a0a4951841e98282b3bcc5c1b48209c2215810fb40708204','47193dd3906aaa87da718ff67e5bdcba5c42ff070b498ad79f9f519646339124','simcity_2000_special_edition','simcity_2000_special_edition','https://www.gog.com/game/simcity_2000_special_edition',0,'Maxis Software Inc.','Electronic Arts','Simulation',0,0,0),(1207658970,'POD Gold',0,0,0,0,0,'a94a758c29362f27eb528b2a8f8b70f1d7e9dd3a6439d3ff7678782964116d37','106e941a263470d1484a9ceb5506734add49b09c95a4e40c7928807665c9be65','pod_gold','pod_gold','https://www.gog.com/game/pod_gold',0,'Ubisoft','Ubisoft','Racing',0,0,0),(1207658971,'Little Big Adventure (Relentless: Twinsen\'s Adventure)',0,0,0,0,0,'3ccc54989ae79646cfa034bf617b59114295429d037ed44f16f9895a786d0925','2f02e6437446ec21046a1fd62047daf751be1b560000bf86c0eadd48683e6d60','little_big_adventure','little_big_adventure','https://www.gog.com/game/little_big_adventure',0,'Adeline Software International','Didier Chanfray SARL','Adventure',0,0,0),(1207658972,'Darklands',0,0,0,0,0,'28c62606434d22b21e51059e5b53378e5346511dc3cd6f0bc75184fb8b4d9836','5bdff116605a15c0108a02a51d237af292163732e15acd24574d586d2ca4f263','darklands','darklands','https://www.gog.com/game/darklands',0,'MPS Labs','Retroism','Role-playing',0,0,0),(1207658973,'Broken Sword 4: The Angel of Death (Secrets of the Ark)',0,0,0,0,0,'6e364c627b511e88f2a8e55d94fbfeabb67ee2279098f4eda63882a752b64dea','9cf286c46bce036e915dc5d10931bec29befe20d4440c0779702a89e0f91b738','broken_sword_4','broken_sword_4','https://www.gog.com/game/broken_sword_4',0,'Revolution Software','Revolution Software','Adventure',0,0,0),(1207658974,'Little Big Adventure 2 (Twinsen\'s Odyssey)',0,0,0,0,0,'7551a8f91ba4cc59461de5e6817bb5c28affe12bc3776f2397fd32b2eb58e140','612cac897e7fae15c076a45c38023f77e21e455968d09ec92a58147969040833','little_big_adventure_2','little_big_adventure_2','https://www.gog.com/game/little_big_adventure_2',0,'Adeline Software International','Didier Chanfray SARL','Adventure',0,0,0),(1207658975,'Arma Gold Edition',0,0,0,0,0,'442681390acc21ffec08f9b4b35c2181e1ec77066a7db3de76f5600f30ccdc78','af2527a19ec2ceddc105fe92b05246c5c38d9e772009db87e4afcd700a896983','arma_gold_edition','arma_gold_edition','https://web.archive.org/web/20140223085628/https://www.gog.com/game/arma_gold_edition',0,'Bohemia Interactive','Bohemia Interactive','Simulation',0,0,0),(1207658976,'Speed Busters: American Highways',0,0,0,0,0,'3246c701898bc8e87617698d51396ab50e2dcb55f1aedef7b610e811ddf61467','394249c280f43f871fc762ad24c85f7136daf0598408b623941aa5ac73f7ba9a','speed_busters','speed_busters','https://www.gog.com/game/speed_busters',0,'Ubisoft','Ubisoft','Racing',0,0,0);
INSERT INTO `games` VALUES (1207658977,'Gangland',0,0,0,0,0,'312053957570809bb6de59ce01dadb738cb2153b9e9143d69b7d7323bdfeccf3','4cf70fca3a1d7bac196cc424bc0f4406f841a5a1a08d6794179e47cc2c28cd8c','gangland','gangland','https://www.gog.com/game/gangland',0,'MediaMobsters','Focus Home Interactive','Action',0,0,0),(1207658978,'Might and Magic® 9',0,0,0,0,0,'227585d78485a6acad1f20a6d17246bbaa7540ff720432371dbb5be4e7a3bbfd','a972b8a0fb85aadf36b4097436a66b483109150368ccde462937858d622e9898','might_and_magic_9','might_and_magic_9','https://www.gog.com/game/might_and_magic_9',0,'New World Computing, Inc.','Ubisoft','Role-playing',0,0,0),(1207658979,'Fahrenheit (Indigo Prophecy)',0,0,0,0,0,'a1d278359acd056028aefa67abc08542f28596a40587b0954eeb9f53e39b8d69','d39ce9ec01d8e11973c15fdc04bb905b2ea97b41a74d7b3e046af987ae7311e9','fahrenheit_indigo_prophecy','fahrenheit_indigo_prophecy','https://www.gog.com/game/fahrenheit_indigo_prophecy',0,'Quantic Dream','Quantic Dream','Action',0,0,0),(1207658981,'Populous™ 2: Trials of the Olympian Gods',0,0,0,0,0,'3fb19e0fb773db249b52e608e1a16a716bd0b7cec4db2c187d61bc72f66960cf','0dd5b5c293deaff48fc378b9be620ad965762af3b000dbf7d3d0c82b34d49192','populous_2','populous_2','https://www.gog.com/game/populous_2',0,'Bullfrog Productions','Electronic Arts','Strategy',0,0,0),(1207658982,'Crusader: No Regret™',0,0,0,0,0,'8ff2e224b333e1b302bdebbf3dede95398daad30f4390479c201cca359253ee6','43d81b0ed8eb4f37fc40927bee006dc903da85b6c66761426ec36f67e18ad16d','crusader_no_regret','crusader_no_regret','https://www.gog.com/game/crusader_no_regret',0,'Origin Systems','Electronic Arts','Action',0,0,0),(1207658985,'Desperados 2: Cooper\'s Revenge',0,0,0,0,0,'42b9c19fcf6aa78bd51963c98af3493bf93fb8278b8ac4e8ecbcd927550010a6','5899521ee22f6511191c4009252ec88affcf0cb462349e656ee4604dbd846e83','desperados_2','desperados_2','https://www.gog.com/game/desperados_2',0,'Spellbound Entertainment AG','THQ Nordic GmbH','Strategy',0,0,0),(1207658986,'Gothic 3',0,0,0,0,0,'0dcc515f787bbd150467691d6740401d4d44f3937558d04321ccde8cadf8af31','1aadf84e33f79b03d18dffaa8686ba6539b30e7fb005a3d3101c8b5c888f2476','gothic_3','gothic_3','https://www.gog.com/game/gothic_3',0,'Piranha Bytes','Piranha Bytes','Role-playing',0,0,0),(1207658987,'Time Commando',0,0,0,0,0,'89e51af1528c1c41cb6f4d005e13c32a5c0943a07ea4eb0db0095ff7e122cc1d','ad041183b0c9d022b86bf74d7bd3af8a712494b28cc542529ea430dc37ed15e6','time_commando','time_commando','https://www.gog.com/game/time_commando',0,'Adeline Software International','Didier Chanfray SARL','Action',0,0,0),(1207658989,'Superfrog',0,0,0,0,0,'6edc9a19a39cf3727ad794315fdca178c14adca1ee137a8882e71b7891e2f66e','ff42f498cb1f4d94754a71abffb4f75b47687fa57bb576b5eaa577ca5e7f7cac','superfrog','superfrog','https://web.archive.org/web/20121025133342/http://www.gog.com/en/gamecard/superfrog',0,'Team17 Software','Team17 Software','Action',0,0,0),(1207658990,'World Rally Fever: Born on the Road',0,0,0,0,0,'17ed7cc74ff2400aaeb9d2172509f45f169bc721ab7d1e20d68e7478af323371','7c1ecb43d8762a8fc997b680476bea523e97ff48cfadffd35d8016e2715d5366','world_rally_fever_born_on_the_road','world_rally_fever_born_on_the_road','https://www.gog.com/game/world_rally_fever_born_on_the_road',0,'Team17 Software','Team17 Digital LTD.','Racing',0,0,0),(1207658991,'Worms United',0,0,0,0,0,'2668f11aed328bd8803a6411d732e8c930b8cf9f23710db5811e640a1c1d5f8b','05609813a3a09a91f0eeb54d83821d6d34475d9a6a113e672f02ab64c52ad100','worms_united','worms_united','https://www.gog.com/game/worms_united',0,'Team17 Software','Team17 Digital LTD.','Strategy',0,0,0),(1207658992,'Syndicate Plus™',0,0,0,0,0,'45925dad486da5071535ff6da335ac4c58a7062e70926d2c6a79eb1a430282dd','a2fd18ad3203eaa4135bbfe461f283cc2383c3057f3495f041bca1c67ed8ab9a','syndicate','syndicate','https://www.gog.com/game/syndicate',0,'Bullfrog Productions','Electronic Arts','Action',0,0,0);
INSERT INTO `games` VALUES (1207658993,'Gothic 3: Forsaken Gods Enhanced Edition',0,0,0,0,0,'20de82c21dc5507926968d04ef8de74d68dd895237f47ba9ee03892b6781f50e','9fde081a2ff25422c099e1a5c65b9464bd0dd6c07f4803d658f3cac368eb4780','gothic_3_forsaken_gods','gothic_3_forsaken_gods','https://www.gog.com/game/gothic_3_forsaken_gods',0,'Trine Games & G3 Community Patch Team','Piranha Bytes','Role-playing',0,0,0),(1207658995,'Deus Ex™ GOTY Edition',0,0,0,0,0,'79429e097ac499290497415f13c0a1747a07659fc7b53f8cc07f1b0afd569333','dc3c4cfbc9ec2fae5c5e1be6956fb926fc0028df2854c8447c73ac0b8807126c','deus_ex','deus_ex','https://www.gog.com/game/deus_ex',0,'Ion Storm Inc.','Square Enix','Role-playing',0,0,0),(1207658996,'Hitman: Codename 47',0,0,0,0,0,'e2f458e5d9f469a604aeb9438df998f74f78bc39c38b77b4c6f05e463ce800d8','cdabd4710e6bcdd13763487a91c36c293d708cc573bf91aa5caf24881d15752b','hitman','hitman','https://www.gog.com/game/hitman',0,'IO Interactive','Square Enix','Action',0,0,0),(1207658997,'Thief™ Gold',0,0,0,0,0,'ad68a58a4dcc05edbe97edc0370cc4865ba09327cf47a68e47d214c6e4f4a1d4','0a511e680f92361d0e4104ff1ae826615d78cb537a69a68e7819d29947cab36d','thief_gold','thief_gold','https://www.gog.com/game/thief_gold',0,'Looking Glass Studios','Square Enix','Action',0,0,0),(1207658998,'Conflict: Desert Storm',0,0,0,0,0,'e8e33a3134abee7e85f9c9ca3ecbaec3573305ce694e49e66779b95cbbd92bb3','d890f8afe18347c367bf9c25cbdafae8b797a41f5e031211a1391b7b9b1132e6','conflict_desert_storm','conflict_desert_storm','https://www.gog.com/game/conflict_desert_storm',0,'Pivotal Games','Square Enix','Shooter',0,0,0),(1207659000,'The 11th Hour',0,0,0,0,0,'14089b8ab3272d7740eceeb3d68ad1f595fc268726adb53392c544e25f34d3d5','24c9f23fb58d2a7d2746c0955ab8752deb94759a112b37e09bc9824f4142b2dc','the_11th_hour','the_11th_hour','https://www.gog.com/game/the_11th_hour',0,'Trilobyte Games','Trilobyte Games','Adventure',0,0,0),(1207659001,'Thief™ 2: The Metal Age',0,0,0,0,0,'9fee86856dec591d46e81ee8eba47c4945a980ce9730549581eae646330629d5','d49ae23fe00de3dacaa570a1b7708e81a74aeb493f369f40f8083b38f56e811e','thief_2_the_metal_age','thief_2_the_metal_age','https://www.gog.com/game/thief_2_the_metal_age',0,'Looking Glass Studios','Square Enix','Action',0,0,0),(1207659002,'Hitman 2: Silent Assassin',0,0,0,0,0,'a2b90a3c1e0ebc0d294d862ee9992fd9b48f74e3adde6453b76145c7ca413776','e2b81571f54fdfef4b0adabf8493c65184e9f8aa576c4fc479a419c42be10671','hitman_2_silent_assassin','hitman_2_silent_assassin','https://www.gog.com/game/hitman_2_silent_assassin',0,'IO Interactive','Square Enix','Action',0,0,0),(1207659003,'Soulbringer',0,0,0,0,0,'7dd63ed2d660f2815a8f78bf2a5a47990fe8adb8a4a25161a48c56cc69fc888e','65a830e83614ebeca9de974febbded038313cd26224501e5a285063b109eedb3','soulbringer','soulbringer','https://www.gog.com/game/soulbringer',0,'Infogrames Europe SA','Blue Moon Red Owl','Role-playing',0,0,0),(1207659006,'Apache Longbow',0,0,0,0,0,'9abaa67655f32458dd1b965222366e0a7426a033d4c525c4accfc4e4438f0fa5','3ca8d107c51d9c6c1ede3689f9fb5190f55ab10356bbdfc030316811f1803d1b','apache_longbow','apache_longbow','https://www.gog.com/game/apache_longbow',0,'Digital Integration','iEntertainment Network Inc.','Simulation',0,0,0),(1207659007,'Still Life 2',0,0,0,0,0,'15c3fd0eee7e549a1df8f37b4906ebeec807067c3e4337c1606fa31b731f2847','3c49a6d8030bc136773d1f56c27a54546e50d608825246724c05d420cece78a8','still_life_2','still_life_2','https://www.gog.com/game/still_life_2',0,'GameCO Studios','Anuman Interactive','Adventure',0,0,0),(1207659008,'Robin Hood: The Legend of Sherwood',0,0,0,0,0,'e560ba4796e8ef8528e0aec533765c84e37d0574dd22557be4694d7213791f34','568f9e231616cc8e3cc6de4359c38c8fddc7e1188120aa754a8e5f0b58a08ce1','robin_hood','robin_hood','https://www.gog.com/game/robin_hood',0,'Spellbound Entertainment AG','Anuman Interactive','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207659009,'Journeyman Project 3: Legacy of Time, The',0,0,0,0,0,'b2dda4d7631f9813467e67796925f9bffd31c9a7e11b43cf4d670acb396f7a1f','6aed0c3f662c3d43dc112af48d0259ba6ceae7df3420aa0dc1afe428993cdb50','journeyman_project_3','journeyman_project_3','https://www.gog.com/game/journeyman_project_3',0,'Presto Studios','Presto Studios','Adventure',0,0,0),(1207659010,'Hind',0,0,0,0,0,'b49c65282f5f25d20a076cdca171f4ba2968fb610c30052c368973cba0e50641','3477b0aeb87ba5cf99282ae95bdc94e842d16f072f45ced2de39698dd5982dcb','hind','hind','https://www.gog.com/game/hind',0,'Digital Integration','iEntertainment Network Inc.','Simulation',0,0,0),(1207659011,'Cryostasis',0,0,0,0,0,'432db389b1055265e1cb282fdae969978e1b3002a47c5a98cbbe0b9c9a0c0302','df6639873a673d9ad85b97ba16e490c94d8e4945aa9bf7b6c842a6351cfcd5f5','cryostasis','cryostasis','https://web.archive.org/web/20120329193401/http://www.gog.com/gamecard/cryostasis',0,'Action Forms','1C Publishing','Action',0,0,0),(1207659012,'Anachronox',0,0,0,0,0,'cdb979a144ddf74f47eae8955d821b6be6c279bac822f595962e9a91f462ea6f','9e2ce2b73bfd804db1e1b0bea060c591613be315c0b2877555c05459f8e1421f','anachronox','anachronox','https://www.gog.com/game/anachronox',0,'Ion Storm Inc.','Square Enix','Role-playing',0,0,0),(1207659013,'Treasure Adventure Game',0,0,0,0,0,'e966b44b9f146d21bc835a2f0785693116422778e4e112020d3add98046141c9','8329c71b93ba2a231ad8e947b72af529580b428065ec9bed98e73f1acd51ef2b','treasure_adventure_game','treasure_adventure_game','https://www.gog.com/game/treasure_adventure_game',0,'Robit Studios','Robit Studios','Adventure',0,0,0),(1207659014,'Darwinia',0,0,0,0,0,'0d5c2cdd9c1f2c3fb1e719be185441b040b875f5ad7aa264320c9473d5e5eaea','e571a8172285f05fc0eeac1b4b0fa3016350fe581ea7c6a1a849598b0778c214','darwinia','darwinia','https://www.gog.com/game/darwinia',0,'Introversion Software','Introversion Software','Strategy',0,0,0),(1207659015,'Ultima™ 8 Gold Edition',0,0,0,0,0,'4dab7e128c02e2024887b33afed7583f6212b7dacb93640b296491d6d2b706d6','977fd7446fa7bebab3a2efe00863d44f07b3776cdff4c854bfb1a5417bd186da','ultima_8_gold_edition','ultima_8_gold_edition','https://www.gog.com/game/ultima_8_gold_edition',0,'Origin Systems','Electronic Arts','Role-playing',0,0,0),(1207659016,'Legend of Grimrock',0,0,0,0,0,'794ccea9c7d34d5e7346581752bb4c16a7997e43373545f57ccf82f275aebfb6','0cd1b7596177f597f745c9d794160ca1c3d80ee0ac2f67ccae10ed3c2fa478bc','legend_of_grimrock','legend_of_grimrock','https://www.gog.com/game/legend_of_grimrock',0,'Almost Human','Almost Human','Role-playing',0,0,0),(1207659017,'Machinarium Collector\'s Edition',0,0,0,0,0,'8b366742ddbf8191dde3d6a1c2a490b45860c4e2014c2fac7ebd1160464a9292','4588d014389576ef83208d8befb5e487c0fdcc33ee264873a0caa6202b6433c0','machinarium_collectors_edition','machinarium_collectors_edition','https://www.gog.com/game/machinarium_collectors_edition',0,'Amanita Design','Amanita Design','Adventure',0,0,0),(1207659018,'Spacechem',0,0,0,0,0,'b3b2805c929385ceb0dd99594d24adeb91973874b40de2eabdbcefd00ca78f07','370f4c5b8ea9339837dbbb3bc0ca0cb0ff1c43d1750565d7846306769d025bd3','spacechem','spacechem','https://www.gog.com/game/spacechem',0,'Zachtronics','Zachtronics','Strategy',0,0,0),(1207659019,'The Whispered World: Special Edition',0,0,0,0,0,'edb6a64af4bf97e540bfce7cca178b11a05b7f15572d369a577d54046e220f2c','2e77336f10d7efd9f0e655695ce9c93088f39482e0d7954723a3457b5818a8e6','the_whispered_world_special_edition','the_whispered_world_special_edition','https://www.gog.com/game/the_whispered_world_special_edition',0,'Daedalic Entertainment','Daedalic Entertainment','Adventure',0,0,0),(1207659020,'Trine Enchanted Edition',0,0,0,0,0,'e03d77574b811baeff006ca44afde98cf02d6187a182180417aacfa8d4250b16','38b3ec4ffba58d5d2111921ed928eb41ab39c94ad142b956139bf691678b6974','trine_enchanted_edition','trine_enchanted_edition','https://www.gog.com/game/trine_enchanted_edition',0,'Frozenbyte','Frozenbyte','Action',0,0,0);
INSERT INTO `games` VALUES (1207659021,'Wing Commander™ 4: The Price of Freedom',0,0,0,0,0,'d53beebb5229f92ed76a6df60bf4d1088c7b760947a3c0ab9b75c67ea3057d06','994908f7b7220b80be3806236dd97cdabdc4730911438ec2f44cf364d4b827da','wing_commander_4_the_price_of_freedom','wing_commander_4_the_price_of_freedom','https://www.gog.com/game/wing_commander_4_the_price_of_freedom',0,'Origin Systems','Electronic Arts','Shooter',0,0,0),(1207659023,'Assassin\'s Creed®: Director\'s Cut',0,0,0,0,0,'792fd887d9b8b773c6ee33d60626f39d4b82440374f733e53cbc6e36e4eb2609','f6a2c82cf482b75454200e7ce909624ce250ec064387a712fa8efb2d22ec6838','assassins_creed_directors_cut','assassins_creed_directors_cut','https://www.gog.com/game/assassins_creed_directors_cut',0,'Ubisoft Montreal','Ubisoft','Action',0,0,0),(1207659024,'Botanicula',0,0,0,0,0,'9ac211952dfe6e93cfc529cd8bad06748a03a98cbf5faad941e5f1c625e34b76','089d694050d2861afcf766af1ee012cc04ffd4b343bc5761cfaf62afc0bae406','botanicula','botanicula','https://www.gog.com/game/botanicula',0,'Amanita Design','Amanita Design','Adventure',0,0,0),(1207659025,'Darkstone',0,0,0,0,0,'f5c6961f344856a00f2f5f65c111af7e2eb1c18d2e5585fbcc28b348c5521cbf','3166bc6c45c5e7e636025353751957df500feab52cadeb0528606e5c54ea2c80','darkstone','darkstone','https://www.gog.com/game/darkstone',0,'Delphine Software International','VectorCell','Role-playing',0,0,0),(1207659026,'Theme Hospital',0,0,0,0,0,'e179e3bc09e944c3d148c439b4d4af579ed24d4b3a7fbd16c1be108c8450a0af','e4c3461737eed20948cb84089d716694782584beba983fb09f36c14212b75afb','theme_hospital','theme_hospital','https://www.gog.com/game/theme_hospital',0,'Bullfrog Productions','Electronic Arts','Strategy',0,0,0),(1207659027,'Populous™: The Beginning',0,0,0,0,0,'8067ff6435995c70702fb915067b537c9bed433d0df3520c892b8d704e2c8401','33da836de65e35d6f2769622e9f6e2475214c11b88704f109955dc8045f2beae','populous_the_beginning','populous_the_beginning','https://www.gog.com/game/populous_the_beginning',0,'Bullfrog Productions','Electronic Arts','Strategy',0,0,0),(1207659029,'Myst V: End of Ages Limited Edition',0,0,0,0,0,'8b8f1411fecc89935338a0525b7f6c045a5fb0db1a938d820d682ae5d79288c3','05085087fb1accfe2599a97eb28a647e081b4a6a3009a657bff5eaedeeac247d','myst_5_end_of_ages','myst_5_end_of_ages','https://www.gog.com/game/myst_5_end_of_ages',0,'Cyan Worlds','Cyan Worlds','Adventure',0,0,0),(1207659030,'Legacy of Kain: Soul Reaver',0,0,0,0,0,'8d380ce9dc2ee0d5a62025f70a866c4ef23e823007b375e87773e4eedd3c7b44','1bc90c616c80febfb69c40f7abc15a7680c536dd8e6fbeed92ccbb700f4e2329','legacy_of_kain_soul_reaver','legacy_of_kain_soul_reaver','https://www.gog.com/game/legacy_of_kain_soul_reaver',0,'Crystal Dynamics','Square Enix','Action',0,0,0),(1207659032,'Rollercoaster Tycoon 3: Platinum!',0,0,0,0,0,'cbd19d58be6554df04d688f78bcd2b351ce15eaa6eeef965c3dcc95b43d8a7b4','356dd8efd8bdb3de7677e22d80f643ffc91b71e488d72913549c8af060b46161','rollercoaster_tycoon_3','rollercoaster_tycoon_3','https://www.gog.com/game/rollercoaster_tycoon_3',0,'Frontier Developments','Atari','Simulation',0,0,0),(1207659033,'Uplink: Hacker Elite',0,0,0,0,0,'d7f2e68314ba6bf198f369ef0eb816f1a11d6f1e5955526fa95f366d8cb962ac','3e8b14a21cba919859ddc8b306b991b5cb507055cd8649407b66afb793ab3abf','uplink_hacker_elite','uplink_hacker_elite','https://www.gog.com/game/uplink_hacker_elite',0,'Introversion Software','Introversion Software','Strategy',0,0,0),(1207659034,'Tom Clancy\'s Splinter Cell®',0,0,0,0,0,'67bdc9c77a58c7a5eadd3a36fd39588a13012422bf7185b0f48b8b9061b4e639','26082a7a220b77937cd31d4e74764e9fed841b026c68925d29dd5166a8b862b4','splinter_cell','splinter_cell','https://www.gog.com/game/splinter_cell',0,'Ubisoft Montreal','Ubisoft','Action',0,0,0),(1207659035,'Anomaly Warzone Earth',0,0,0,0,0,'a58fb41c7d426ce7e440d10d4debfec79da78bfad76d5b35951dfc3bafb06d53','45d15c3e58dcaee41b678e350ee9d550dd28c885e27f399900e688c56c158de5','anomaly_warzone_earth','anomaly_warzone_earth','https://www.gog.com/game/anomaly_warzone_earth',0,'11 bit studios','11 bit studios','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207659036,'Thief™ 3: Deadly Shadows',0,0,0,0,0,'30c6d68f5d0c8bbe9c2eb47f8781ec621a2f0ce40704c7dfe510533ca3a29f9e','19569d05c9a93498e3b22a290cf9a5879c048bff1753a7f4b177576200d4d823','thief_3','thief_3','https://www.gog.com/game/thief_3',0,'Ion Storm Inc.','Square Enix','Action',0,0,0),(1207659037,'Alan Wake',0,0,0,0,0,'668c29a416dba4a030547179927b8d8abf3bc473fa642c743f05020480598180','bdf9b35485e888464978e3003a7eabdee3fe96a8a142e1fa5fdc7e4e567e910b','alan_wake','alan_wake','https://www.gog.com/game/alan_wake',0,'Remedy Entertainment','Remedy Entertainment','Action',0,0,0),(1207659038,'Alan Wake\'s American Nightmare',0,0,0,0,0,'1323bcda2a34500fca2a710dabd0646e457bed1dca6b291b42f123d1ab027f32','b5d38dc47f14bd0a749e69aff2e1813658736532b68cfd254f7227573e8d5b6a','alan_wakes_american_nightmare','alan_wakes_american_nightmare','https://www.gog.com/game/alan_wakes_american_nightmare',0,'Remedy Entertainment','Remedy Entertainment','Action',0,0,0),(1207659039,'Zeus + Poseidon (Acropolis)',0,0,0,0,0,'d6080d661b878ddd8ab45b18edbaed473b0a472f53b6ad0f7feef11142f24c07','426c8e3225caf5cb360d44f636c0df40ff2b88c99a0b420bd1203711bdefe4b7','zeus_poseidon','zeus_poseidon','https://www.gog.com/game/zeus_poseidon',0,'Impressions Games','Activision','Strategy',0,0,0),(1207659041,'Silver',0,0,0,0,0,'1bc8406b54f919272a049b1b1cdc6065bc33319653a718c94cfcc01125f6b422','36037bf5a8e094e5467f72da93ec46af2f095589a1bcef516f9669b454cd65fd','silver','silver','https://www.gog.com/game/silver',0,'Infogrames Europe SA','THQ Nordic GmbH','Role-playing',0,0,0),(1207659042,'Far Cry® 2: Fortune\'s Edition',0,0,0,0,0,'c6c61caa45125a5dc7916436004f5146999e52bf078aceb16ed0a07b0ecef33a','0481a8f2af7c1be72e269cd27fcdf59c9cfc4f9c4ca3c89e1bda233eed54ef88','far_cry_2_fortunes_edition','far_cry_2_fortunes_edition','https://www.gog.com/game/far_cry_2_fortunes_edition',0,'Ubisoft Montreal','Ubisoft','Shooter',0,0,0),(1207659043,'Resonance',0,0,0,0,0,'f5fdea9e92b28e600971396caf3d31a6fc37d540d1e652ea5a212ea0a2e7c57d','ab5d8923be111895061d32bb962d9fc3756145e78627b7ceb9e69f421b479dcf','resonance','resonance','https://www.gog.com/game/resonance',0,'xii games and Wadjet Eye Games','Wadjet Eye Games','Adventure',0,0,0),(1207659044,'Torin\'s Passage',0,0,0,0,0,'63da946df7e7e0b4d2017967e05a61c6ebcb62f2be95bbcef0abc0c9722928dd','35e5c4619dc7e7b83f929f3b07e26641354ca5ea7cc4fed2d6336e499970a647','torins_passage','torins_passage','https://www.gog.com/game/torins_passage',0,'Sierra','Activision','Adventure',0,0,0),(1207659045,'Dreamfall: The Longest Journey',0,0,0,0,0,'7dd033988976c6023c910386a3b72c735768a182c4c234602d724f98957f5071','ff7fe4df8a1e1e32d3eb9971ca334f6cf7b9a59e9c7ea4d9dcf3f43eb4009834','dreamfall_the_longest_journey','dreamfall_the_longest_journey','https://www.gog.com/game/dreamfall_the_longest_journey',0,'Funcom','Funcom','Action',0,0,0),(1207659046,'Pharaoh + Cleopatra',0,0,0,0,0,'73a64f8982f42eabebf452d88fc863e38e09658c4a2768eb566dfb04aa888c5f','947a87f4c89c1d1d0ad89288f7b9604bb6059bd4559cef7f4afdf6644051ef13','pharaoh_cleopatra','pharaoh_cleopatra','https://www.gog.com/game/pharaoh_cleopatra',0,'Impressions Games','Activision','Strategy',0,0,0),(1207659047,'Carmageddon Max Pack',0,0,0,0,0,'9598650c71ad5ad4f185dcdb881a5c864bacc422bda9d3eafaf011389052ebcc','718ea934437ef627bbfc7f55e68741e831df157618deafa58d9c02c0c0973083','carmageddon_max_pack','carmageddon_max_pack','https://www.gog.com/game/carmageddon_max_pack',0,'Stainless Software','THQ Nordic GmbH','Action',0,0,0),(1207659048,'Tiny and Big: Grandpa\'s Leftovers',0,0,0,0,0,'962f9ac9289aa51bbe833816a4ec2eb0ef76a0dc10eff5d4a99b6cb3ca2312f1','027beca3221ed6f353fdc6b4e5856b1498e3b158664acabac4b1dc0421bf3ab5','tiny_and_big_grandpas_leftovers','tiny_and_big_grandpas_leftovers','https://www.gog.com/game/tiny_and_big_grandpas_leftovers',0,'Black Pants Studio','Black Pants Studio','Action',0,0,0);
INSERT INTO `games` VALUES (1207659049,'Retro City Rampage DX',0,0,0,0,0,'bc5ae730cbc903872ef026da6a293b249b60fc76bc2084ef65781ad3b9085a3f','603704a352f147068e9a48b93d9ebbf24aa5f9a76eb3c5bd22554ecdc079ca70','retro_city_rampage_dx','retro_city_rampage_dx','https://www.gog.com/game/retro_city_rampage_dx',0,'Vblank Entertainment Inc.','Vblank Entertainment Inc.','Action',0,0,0),(1207659051,'Colonization, Sid Meier\'s',0,0,0,0,0,'1833a4832ae03cdc2e0fe9b0d0c5e6ee626a1402324fb00476fee4a1781b91c0','b7b997313a5644ecae32b12858e402854da74944c038a70280368d2a188befde','sid_meiers_colonization','sid_meiers_colonization','https://www.gog.com/game/sid_meiers_colonization',0,'MPS Labs','Retroism','Strategy',0,0,0),(1207659053,'Heroes of Annihilated Empires',0,0,0,0,0,'2e2e25b6f2bbd929cbfd13fe60e095dcd0bf434b12474cec3f3c5c9943f4eada','a5dce23ef684f36e4b46e763ef4a68536d48d2442e70478e89432ee569b44c12','heroes_of_annihilated_empires','heroes_of_annihilated_empires','https://www.gog.com/game/heroes_of_annihilated_empires',0,'GSC Game World','GSC Game World','Strategy',0,0,0),(1207659054,'Pandemonium!',0,0,0,0,0,'6cd2e06b5d401273e0ba898884823c3e3e5724d17bd870f38276f14eb1b4e25b','9b650265d16f0ff3d52719ee3f688b141951a8f6544bc82de39afb29a952b33e','pandemonium','pandemonium','https://www.gog.com/game/pandemonium',0,'Crystal Dynamics','Square Enix','Action',0,0,0),(1207659056,'Tropico 3 Gold Edition',0,0,0,0,0,'eb8e346c9cace53404e7517aafebb0ded8d7f7444825de209fafcffa318cbc52','424de7d10fe39a8b071896a27befa6f0fc772b146560f0ba2b8ade4435f2d4c1','tropico_3_gold_edition','tropico_3_gold_edition','https://www.gog.com/game/tropico_3_gold_edition',0,'Haemimont Games','Kalypso Media Digital','Strategy',0,0,0),(1207659057,'Runaway 2: The Dream of the Turtle',0,0,0,0,0,'30892f2c6e1f73a687a8b3c4b9f79f1dd774e0c81fa63f8da90fcbd462700ce3','e701ddb47e55e63b6f5165f8aed3ed74d30f05cdc08a2465e6442910bf48f3c0','runaway_2_the_dream_of_the_turtle','runaway_2_the_dream_of_the_turtle','https://www.gog.com/game/runaway_2_the_dream_of_the_turtle',0,'Pendulo Studios','Focus Home Interactive','Adventure',0,0,0),(1207659058,'S2: Silent Storm Gold Edition',0,0,0,0,0,'b463930a55e9b9799af0c636834f90562c56a49ddae51fbe37b36d06291b0720','963b6105edd1d405fc0b0491bbb294f26787b6618820eea870b4e614c1822696','silent_storm_gold','silent_storm_gold','https://www.gog.com/game/silent_storm_gold',0,'Nival Interactive ','Nival Interactive','Strategy',0,0,0),(1207659059,'Fragile Allegiance',0,0,0,0,0,'385fd0442dc01b0e70f1ddde4b6e1d04e341ced2ccabe6be5063a05fea856adb','4f96621b2cdd077ce368ef7942e93e7706e2c05ae3297a6f05b58c77b58bf0c0','fragile_allegiance','fragile_allegiance','https://www.gog.com/game/fragile_allegiance',0,'Gremlin Interactive Ltd.','Urbanscan ','Strategy',0,0,0),(1207659061,'Worlds of Ultima™ : The Savage Empire',0,0,0,0,0,'07c86c0a10902cd350ff5476ed7f27f5290246016bd1a3ab3d52cda5759663ce','fa5dcc51e0dfeb3fac32f8bb1efe3875cdf12f3c800814971c6fe18153565bfd','worlds_of_ultima_the_savage_empire','worlds_of_ultima_the_savage_empire','https://www.gog.com/game/worlds_of_ultima_the_savage_empire',0,'Origin Systems','Electronic Arts','Role-playing',0,0,0),(1207659062,'Ultima™ Worlds of Adventure 2: Martian Dreams',0,0,0,0,0,'10f120bcf0bf4b9bbd7552a413c084f891ed3cd5f7e3e562f9e856271fd98bc2','8b37cbaabd2e79fc6310cc0b6294ced828f62b97e4e953117977abf1f780ae6b','ultima_worlds_of_adventure_2_martian_dreams','ultima_worlds_of_adventure_2_martian_dreams','https://www.gog.com/game/ultima_worlds_of_adventure_2_martian_dreams',0,'Origin Systems','Electronic Arts','Role-playing',0,0,0),(1207659063,'Legacy of Kain: Soul Reaver 2',0,0,0,0,0,'6cc8fe0484d1764a96b20b5861e8d219efd0b9db44bac0d886105bcd200c22e4','e164d0319563fb2b3eb76a61a8c42b38e02215fbfc23fdbd24d7333247fad729','legacy_of_kain_soul_reaver_2','legacy_of_kain_soul_reaver_2','https://www.gog.com/game/legacy_of_kain_soul_reaver_2',0,'Crystal Dynamics','Square Enix','Action',0,0,0);
INSERT INTO `games` VALUES (1207659064,'Sam & Max Beyond Time and Space',0,0,0,0,0,'68041749125af1dede8a12073c0509331b264fb08dacd4a9c312578535cdf614','074d2d9d862532fc1fb6ccc1e8f2eb511205cafa765182315a631437dcb38994','sam_max_beyond_time_and_space','sam_max_beyond_time_and_space','https://www.gog.com/game/sam_max_beyond_time_and_space',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1207659065,'Sam & Max Save the World',0,0,0,0,0,'404efc8ccc8afb1f1268fb1718d51d7b2d487a12c8619aecc5c423ced9df944d','a71f0871eb62869f7d77f2f81c652465f9447f5266781bc651482ab574ff7a07','sam_max_save_the_world','sam_max_save_the_world','https://www.gog.com/game/sam_max_save_the_world',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1207659066,'Tales of Monkey Island',0,0,0,0,0,'8aed6fb519a0ebd7dc56dcb78586b52e3ea4b9a55a6b897d3f0f674d1b5aed9d','cfe33e60253b67b9cae2e20475f90600ee7780317564a9534fc2993495e38a1c','tales_of_monkey_island','tales_of_monkey_island','https://www.gog.com/game/tales_of_monkey_island',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1207659068,'Deus Ex 2: Invisible War',0,0,0,0,0,'3f580ea4bcf6f4df3b9a1a460c056a6a83420b07298751d65771f424d823068a','13fa720efcad4e6d7f99781c7e03f2eb78dc0e2a795fd851dc22899abe277fd9','deus_ex_invisible_war','deus_ex_invisible_war','https://www.gog.com/game/deus_ex_invisible_war',0,'Ion Storm Inc.','Square Enix','Action',0,0,0),(1207659069,'Torchlight',0,0,0,0,0,'395336bf671bf508dbc0adcf7ae55e1f6cb7763bb1aba000074a1193ae293f82','51a5d1be8c50b36655a0f057b12a0e13c9412de0c921a3b3f4aa753198bbd364','torchlight','torchlight','https://www.gog.com/game/torchlight',0,'Runic Games Inc.','Runic Games Inc.','Role-playing',0,0,0),(1207659070,'Chronicles of Riddick: Assault on Dark Athena, The',0,0,0,0,0,'b1d40a8fc2f8acc4a1008586f86928bdebb125a1d2bd1909b4c9e788a41cc236','b6404d770b83c15dd28fc8a55a9153d505908061122cf997d6346f899e8db12c','the_chronicles_of_riddick_assault_on_dark_athena','the_chronicles_of_riddick_assault_on_dark_athena','https://web.archive.org/web/20160828020852/https://www.gog.com/game/the_chronicles_of_riddick_assault_on_dark_athena',0,'Starbreeze Studios and Tigon Studios','Atari','Action',0,0,0),(1207659072,'To The Moon',0,0,0,0,0,'cd54b25656da4fc24f2faa9a19dab4eea575d52d33cce11727c8721c25a127d2','5cf3dc9d1adc5ea698a0219983b501db2bb7006a4bf127d5ef78090d0240a9ff','to_the_moon','to_the_moon','https://www.gog.com/game/to_the_moon',0,'Freebird Games','Freebird Games','Adventure',0,0,0),(1207659073,'Gemini Rue',0,0,0,0,0,'195f3d8d944b20c63ecd13d0e7835c6662be13264b6e367d8b084e2fccf7449c','b31cb9334ecf2111da4491b05956b6062607c3a82fd2503ab82ee8eb5526ac04','gemini_rue','gemini_rue','https://www.gog.com/game/gemini_rue',0,'Wadjet Eye Games','Wadjet Eye Games','Adventure',0,0,0),(1207659074,'Multiwinia',0,0,0,0,0,'bac4bc7625d78e767a9f02324b86bbd0dbd7c8031f594de099319cfa7b261ac6','ab193a0c00592702f809ffefd6e563d77e16ef0409138355e8ccec35d00e2dfa','multiwinia','multiwinia','https://www.gog.com/game/multiwinia',0,'Introversion Software','Introversion Software','Strategy',0,0,0),(1207659075,'DEFCON',0,0,0,0,0,'ba063f93ed42c9fbcfca7f2c9d309d2db0adb0510e2a399a668bd3b512d2decc','87445847744dfc07ac4f6a8824850007341ef1ef2e3d08d1bd59ae28491e47de','defcon','defcon','https://www.gog.com/game/defcon',0,'Introversion Software','Introversion Software','Strategy',0,0,0),(1207659076,'Interstate \'82',0,0,0,0,0,'dd9f1227fb2968282e2af6bb512c05b33b560ced690a81e3380be7b2bb5b7579','b66cf68a9dbf997c9ec914a1e6bed7265bb1484cbfbade35f210593928de7d75','interstate_82','interstate_82','https://www.gog.com/game/interstate_82',0,'Activision','Activision','Racing',0,0,0),(1207659078,'Ceville',0,0,0,0,0,'3aa7490558bfe724abd3f8eda308f8b45525e3c02116b1118819c78b51f6e461','7b01e02d6dd64c859060abc959512e341fc8d90477d741b77f567e23ea8bc2b5','ceville','ceville','https://www.gog.com/game/ceville',0,'Realmforge Studios','Assemble Entertainment','Adventure',0,0,0);
INSERT INTO `games` VALUES (1207659079,'Symphony',0,0,0,0,0,'0dfb3c90a16f807104c161f635c701158c9743eb8ec8b4e573b241cbdeb90a9c','9c18e373f2f94f7d5988466e2129b9c476fdb51dd2244f9c2e1231a12608a6df','symphony','symphony','https://www.gog.com/game/symphony',0,'Empty Clip Studios','Empty Clip Studios','Shooter',0,0,0),(1207659080,'Nexus: The Jupiter Incident',0,0,0,0,0,'4b6319ff49eebd71f908ff622a83f3c68f28bf80999a53e0224f0678865439f3','bfdb60cee990ce4bbbdf706ff34b3ce0bf7e248a9c286102ff73d5ba85aabeab','nexus_the_jupiter_incident','nexus_the_jupiter_incident','https://www.gog.com/game/nexus_the_jupiter_incident',0,'Mithis Entertainment','HandyGames','Strategy',0,0,0),(1207659081,'The Book of Unwritten Tales',0,0,0,0,0,'4b0224f6e27d0854f07c047f8630c4e7e6cc54e13e39b415adf8cfb77b0022c6','cb58ea78a79f19abdd286497903533c6fbf46bcbb6410fc013112c0a02f7af92','the_book_of_unwritten_tales','the_book_of_unwritten_tales','https://www.gog.com/game/the_book_of_unwritten_tales',0,'KING Art','THQ Nordic GmbH','Adventure',0,0,0),(1207659082,'Prince of Persia: Warrior Within',0,0,0,0,0,'80b9c3f18cb3c38c0afe796a43e3eadf5482b2388f09ea5a5102adc70a90dd7e','a5cf8fa39040b93fb46061ab32102418e99f159480b8eb2a1831fd20b6c22236','prince_of_persia_warrior_within','prince_of_persia_warrior_within','https://www.gog.com/game/prince_of_persia_warrior_within',0,'Ubisoft','Ubisoft','Action',0,0,0),(1207659083,'Runaway 3: A Twist of Fate',0,0,0,0,0,'57c47b956bb4b01ae588581bba6b114f086834ea89c7f164d424d482198b923a','d9906c8276e6d90cc4ac2e5518c7980582054f0c44c572100dbb385e8f185b75','runaway_3_a_twist_of_fate','runaway_3_a_twist_of_fate','https://www.gog.com/game/runaway_3_a_twist_of_fate',0,'Pendulo Studios','Focus Home Interactive','Adventure',0,0,0),(1207659084,'Return to Mysterious Island',0,0,0,0,0,'caae902752a0cc599c0d089d511f5e65608c94f45ed88d8eaaf8485fe63fce83','e806251343da547cde71a1863563a0d6ff27cc9c9eab0a27388e3988373aa568','return_to_mysterious_island','return_to_mysterious_island','https://www.gog.com/game/return_to_mysterious_island',0,'Kheops Studio','Anuman Interactive','Adventure',0,0,0),(1207659085,'Mutant Mudds',0,0,0,0,0,'59c240bc71504c088a3d18bba63488aaa07f174a31f8fc870b0d5aed2366dff6','f6dcb525e50006258d940445525de3aada87ee7f3ed1b0f649a7bd2261d518e6','mutant_mudds','mutant_mudds','https://web.archive.org/web/20121020045507/http://www.gog.com/en/gamecard/mutant_mudds',0,'Renegade Kid','Renegade Kid','Action',0,0,0),(1207659086,'Ball, The',0,0,0,0,0,'5d35da96de4fd00baf17375375559c51c4d9d43fc1617fc0a9902659d96e384e','c78d0c581cee90578ce74cfc79aeecc25478fe44361ffbf50a0026f02ef728ee','the_ball','the_ball','https://www.gog.com/game/the_ball',0,'Teotl Studios','Tripwire Interactive','Action',0,0,0),(1207659087,'Unmechanical: Extended',0,0,0,0,0,'41824ad5fe5d95bae6b7c991d77d88b9f2400cdb23da1bca853b952b6eb1ec34','c64c7ba00c211fdc9b908c70337663373b009746c3bd031d77893bf25e708dc4','unmechanical','unmechanical','https://www.gog.com/game/unmechanical',0,'Talawa Games','Teotl Studios','Action',0,0,0),(1207659088,'Legacy of Kain: Defiance',0,0,0,0,0,'6170378108ebc443e2d5befd470d000c70552b0941144df9c0107ac204acb4ac','5323465f0dd69c393b2e046f24124be4abe9236c73d7622cb3b93cf1954f50f7','legacy_of_kain_defiance','legacy_of_kain_defiance','https://www.gog.com/game/legacy_of_kain_defiance',0,'Crystal Dynamics','Square Enix','Action',0,0,0),(1207659089,'Tomb Raider: The Angel of Darkness',0,0,0,0,0,'4c115fa5034d309a1e01968bf063cb479090b704b9dbd512df8a24d1f4b7162f','c985681722dfded39b950bdde264c43201de2ed08fecd26ba367c78b4fc137ce','tomb_raider_the_angel_of_darkness','tomb_raider_the_angel_of_darkness','https://www.gog.com/game/tomb_raider_the_angel_of_darkness',0,'Core Design','Square Enix','Action',0,0,0);
INSERT INTO `games` VALUES (1207659090,'Guilty Gear Isuka',0,0,0,0,0,'17b6436d67889a65b14e8538b5274a07da9fc661f56cd20fb4a1c91a5604b6fc','ce01495cb2f41409f5133ea25bf839babccbb82b03ca21af9b6906b6a70d97ea','guilty_gear_isuka','guilty_gear_isuka','https://web.archive.org/web/20121022075014/http://www.gog.com/en/gamecard/guilty_gear_isuka/',0,'Arc System Works Co.','Blue Moon Red Owl','Action',0,0,0),(1207659091,'Prince of Persia: The Two Thrones',0,0,0,0,0,'dbff543e65d4b28e73efca18e0c395a1d3bffadee59513fff00ea3d83735f6c8','1637156b47156bf3df433b99ca2ca6eb0bda2b0bda9b61dcca231ea927ea0c74','prince_of_persia_the_two_thrones','prince_of_persia_the_two_thrones','https://www.gog.com/game/prince_of_persia_the_two_thrones',0,'Ubisoft Montreal','Ubisoft','Action',0,0,0),(1207659092,'Arma 2: Combined Operations',0,0,0,0,0,'105ed44649d77f620a092c4be8198bdd322953c8df26ccc23525073c83149af5','b3430a601963a461197ceea6b08340158f4464301a0e96f3a0f7ee7851222448','arma_2_combined_operations','arma_2_combined_operations','https://web.archive.org/web/20140122094103/https://www.gog.com/game/arma_2_combined_operations',0,'Bohemia Interactive','Bohemia Interactive','Simulation',0,0,0),(1207659093,'Ultima™ 9: Ascension',0,0,0,0,0,'c1b9ab8a4bf96544aaa2c19605a7b8f5a3a031fb96c812399554a93e6584c160','21e06cd486904215ea0ec17a13ddff47977ccea00eb334f47b42922bed456d1c','ultima_9_ascension','ultima_9_ascension','https://www.gog.com/game/ultima_9_ascension',0,'Origin Systems','Electronic Arts','Role-playing',0,0,0),(1207659094,'Lands of Lore 3',0,0,0,0,0,'be04bb43ebd975632580b38906e2b2bf922a1c07fc5f664c46e39ec8abda6e45','e805ec5adc544fba257a1e85eefa77d7911988740faf193c26caaa97424941e7','lands_of_lore_3','lands_of_lore_3','https://www.gog.com/game/lands_of_lore_3',0,'Westwood Studios','Electronic Arts','Role-playing',0,0,0),(1207659095,'Inquisitor',0,0,0,0,0,'7c3cca9f4514504cec21f1ef1147612c089f2a6bc68f95eedf45749d6dacba57','4e01c5090d33bade49cc9385a02a448fe5b4a566b2a64d37a08b444c2ebf7dc6','inquisitor','inquisitor','https://www.gog.com/game/inquisitor',0,'Cinemax','Cinemax','Role-playing',0,0,0),(1207659096,'King of Dragon Pass',0,0,0,0,0,'2439c6471b353200dce8da2072b6701c52c3d4de81aaea0fd843c5a7bf77db7c','22067fa1f3a00876c07d73319271b08939b9a8cbd01c08d4c415be1ed14d7f71','king_of_dragon_pass','king_of_dragon_pass','https://www.gog.com/game/king_of_dragon_pass',0,'A Sharp','HeroCraft','Strategy',0,0,0),(1207659097,'Back to the Future: The Game',0,0,0,0,0,'8a71765351baa5475ef7d8d90fe233d8c9e583c36be75ed0404f65cbadf4f030','7bd2b0a56b70efc31b8521db8c704f892abeb5da6335f0341463b24db5e0cbb4','back_to_the_future_the_game','back_to_the_future_the_game','https://www.gog.com/game/back_to_the_future_the_game',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1207659098,'Sam & Max: The Devil’s Playhouse',0,0,0,0,0,'5d9618e7bc6d18971b370a97d016ced6121ef8c8abd45ec5a0ee02a8d034c367','520123d1a329b3ffe946e93ea376848d9ac676d87b892c6e84ba45a836107982','sam_max_the_devils_playhouse','sam_max_the_devils_playhouse','https://www.gog.com/game/sam_max_the_devils_playhouse',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1207659100,'Startopia',0,0,0,0,0,'addd0023833d97e06524c6ab3c8504bc590ab67602d8bb399a1519b03fe8fa63','ae27dae40c7ae2d5dabbf00d32316b45134a7074c4faabf1489efa9b8d538831','startopia','startopia','https://www.gog.com/game/startopia',0,'Mucky Foot Productions','Square Enix','Strategy',0,0,0),(1207659101,'Legacy of Kain: Blood Omen 2',0,0,0,0,0,'7ac78966e4f6ff659e56b8847c9e146c0624526542a2db57f734d865b768b83c','cc15502c7ed4dd978be8a8e9b6c5edc097731ab06d44e466aa17c7e370850329','legacy_of_kain_blood_omen_2','legacy_of_kain_blood_omen_2','https://www.gog.com/game/legacy_of_kain_blood_omen_2',0,'Crystal Dynamics','Square Enix','Action',0,0,0);
INSERT INTO `games` VALUES (1207659102,'FTL: Advanced Edition',0,0,0,0,0,'fe90dedf8152977f2bfd50a3484502fe656dea81c8a9d6b95771c1bb8da91f88','0d26a7620af0420c9ddf181039c7b2735f4e4ba356cf040009e907672aa9bb13','faster_than_light','faster_than_light','https://www.gog.com/game/faster_than_light',0,'Subset Games','Subset Games','Strategy',0,0,0),(1207659103,'Deponia',0,0,0,0,0,'55bad7c5bb1a9bdfb34e9ae97e13e674f7d1756ded14370e69a8ebfb561837d7','e11295899365ce57254dde1ca2fb530f9b2407f37b16fa3775326e6fb2360f30','deponia','deponia','https://www.gog.com/game/deponia',0,'Daedalic Entertainment','Daedalic Entertainment','Adventure',0,0,0),(1207659104,'Worms 2',0,0,0,0,0,'7103755aa983cf884cdc537088e3aec55595b53a9224acdb9344768d65e9d2a9','22eff4e7bb6017409daf2f973df524356cb489647b6c6fe37d98f63e989c49b1','worms_2','worms_2','https://www.gog.com/game/worms_2',0,'Team17 Software','Team17 Digital LTD.','Strategy',0,0,0),(1207659105,'Divinity 2: Developer\'s Cut',0,0,0,0,0,'9002921c8dbe2d727793f78e2f483a953c252b87ace018f0ae44f508f8b50c10','a94fd4b0f40e3def851692c17710262324a75ace930d43285449860d3d7772db','divinity_2_developers_cut','divinity_2_developers_cut','https://www.gog.com/game/divinity_2_developers_cut',0,'Larian Studios','Larian Studios','Role-playing',0,0,0),(1207659106,'Urban Chaos',0,0,0,0,0,'cf33aa2ada010607d020d4e15aadfe7dfa8141efb844cec8bfe8c20713b777c3','4443421b65c5d2a2ed775cb3730c6c339545cc20240354aabbf7c4b5e5cd1bd7','urban_chaos','urban_chaos','https://www.gog.com/game/urban_chaos',0,'Mucky Foot Productions','Square Enix','Action',0,0,0),(1207659107,'Krush Kill \'N Destroy Xtreme',0,0,0,0,0,'2918e4ffcfd0605413290ee935f11c50dd5dc59a5edcc0ba446faddb9b63b797','d6375c155d41f6b23a4ad068d6b9fdf103638d87565883600f67e3f5e0fc8f91','krush_kill_n_destroy_xtreme','krush_kill_n_destroy_xtreme','https://www.gog.com/game/krush_kill_n_destroy_xtreme',0,'Beam Software','Atari','Strategy',0,0,0),(1207659108,'Gangsters: Organized Crime',0,0,0,0,0,'13f883f908198ea2127e87c9eb1f23caaf6b219eee536a8d9970deac69e34e39','4e791f9579cd547e839eb0ea74b8e2fa6905133d26b61d0776f89a45db4219ce','gangsters_organized_crime','gangsters_organized_crime','https://www.gog.com/game/gangsters_organized_crime',0,'Hothouse Creations','Square Enix','Strategy',0,0,0),(1207659109,'Prince of Persia',0,0,0,0,0,'465413237cb962d9b0ded6b3eaaaa96ea78d029c39b68f00e10f3727fad7f7e3','2f3c58954e4a25d5be2c81faf23066bcc917dffc05b3c12b6aa0e207eb2c6284','prince_of_persia','prince_of_persia','https://www.gog.com/game/prince_of_persia',0,'Ubisoft Montreal','Ubisoft','Action',0,0,0),(1207659110,'Warlords Battlecry',0,0,0,0,0,'25d058cc4564c109fc62f00ffd2037e8004333a5cd9aff0661b901a6611d8fd6','a1e39278143bda3da8099df7c0c8fbc8f5cd8e0b71b8e03f73432b05c8bf7747','warlords_battlecry','warlords_battlecry','https://www.gog.com/game/warlords_battlecry',0,'Strategic Studies Group','Ubisoft','Role-playing',0,0,0),(1207659111,'Battle Realms + Winter of the Wolf',0,0,0,0,0,'66580bf05b16bd9881d4e6aff8f2c6fa9a9aa6a74a2012f1a80e79ad0edbe397','ca6fbe948a42320995c097ab5e12dc76d1eabf750ba43031df096a24505d4872','battle_realms_winter_of_the_wolf','battle_realms_winter_of_the_wolf','https://www.gog.com/game/battle_realms_winter_of_the_wolf',0,'Liquid Entertainment','Liquid Entertainment','Strategy',0,0,0),(1207659112,'Etherlords',0,0,0,0,0,'8ce1146fece722232f425b81683403181b140e81f8bcac27e683d0f28c04e0d9','7cc2929add0af228ddf243f2f7b7ffefa6b4364d6155fbadd81e13e86dc7a58f','etherlords','etherlords','https://www.gog.com/game/etherlords',0,'Nival Interactive ','Nival Interactive','Strategy',0,0,0),(1207659113,'Post Mortem',0,0,0,0,0,'8cb2d8b7f184556ee6c3497797e550334bd857694f31ae4c3bd7c84b0e0a3d29','59b346b3070ebd655d0316a9eb03bac5407cd1868ea35ae8601d168f40eb7b5e','post_mortem','post_mortem','https://www.gog.com/game/post_mortem',0,'Microids','Anuman Interactive','Adventure',0,0,0);
INSERT INTO `games` VALUES (1207659114,'Moonbase Commander',0,0,0,0,0,'6c8bb01126de4c5437716674bce6d1ded8490248f23f3eed7b71109fba0cf887','dcf6bf41535357a538339ee3ad18c74b979e36df29f890940afc116d0beb828c','moonbase_commander','moonbase_commander','https://www.gog.com/game/moonbase_commander',0,'Humongous Entertainment','Rebellion','Strategy',0,0,0),(1207659115,'Spycraft: The Great Game',0,0,0,0,0,'301d2a2c65628a82f823514e6a3ba8feabc249092710f95e8c72933fbe8cc0b4','57df899e056a6c4ded3f4e478a27f6185362f85a8702981361237ade48d2c3bf','spycraft_the_great_game','spycraft_the_great_game','https://www.gog.com/game/spycraft_the_great_game',0,'Activision','Activision','Adventure',0,0,0),(1207659116,'Powerslide',0,0,0,0,0,'c298754b1af141722f016f9bccb3e8ec1ef5ec1b9ebf917b9f8643238821cab9','a3b5848011f603bf22188d26fc70a3d873757f271e0eab0f1c20cd85c4bbef9f','powerslide','powerslide','https://www.gog.com/game/powerslide',0,'Ratbag Games','Atari','Racing',0,0,0),(1207659117,'La-Mulana',0,0,0,0,0,'d2deba2d034f5bb5dfb124e543f101caee00ead80b7d472d2524428316466c6a','23f63220775effe14b0da4041aafc85eab0c88947d4dff262054904b25d2461d','la_mulana','la_mulana','https://www.gog.com/game/la_mulana',0,'NIGORO','Active Gaming Media','Action',0,0,0),(1207659118,'Hotline Miami',0,0,0,0,0,'0d5e192fb850a4403fe5072f8b9415cac1ae398a2b87093f5b2824b6758698f0','a0932087cab5186daed6485e022bf9f997dad97fb32b8ef83cd3df3a6d7f5eff','hotline_miami','hotline_miami','https://www.gog.com/game/hotline_miami',0,'Dennaton Games','Devolver Digital','Action',0,0,0),(1207659121,'Warsow',0,0,0,0,0,'541398e891bdb948292a8e04d08b6e29af03a30b255acd02a574c3e2256b261e','526f240f3b9ce254777210dc5ca515a610ebd8b517fcb76ab1f904e9b71a690c','warsow','warsow','https://web.archive.org/web/20171001062343/https://www.gog.com/game/warsow',0,'Chasseur De Bots','Chasseur De Bots','Shooter',0,0,0),(1207659122,'Puddle',0,0,0,0,0,'776cfd2709b1c6da2f36128eb3d5706059127a6d1ec5bbeacfd3ec30bced60a7','ebace6d383fbbca34084d20c993d91e3e283f0ff1c14d690d20e4b88cbe8bb85','puddle','puddle','https://www.gog.com/game/puddle',0,'Neko Entertainment','Neko Entertainment','Strategy',0,0,0),(1207659123,'Giana Sisters: Twisted Dreams',0,0,0,0,0,'311a30cb79b3fe74462104556a3a96facdce581fb9b2b48b2ce13633b3babc1a','d44db23d52c40a16bb085aea14f1cd9d10a6bf0f63d879877ecf18fe5b40d3cc','giana_sisters_twisted_dreams','giana_sisters_twisted_dreams','https://www.gog.com/game/giana_sisters_twisted_dreams',0,'Black Forest Games','HandyGames, Black Forest Games','Action',0,0,0),(1207659124,'Deponia 2: Chaos on Deponia',0,0,0,0,0,'1116e5b988a9f7e566858f0e2cbcc25e11b4c924f0658594a9ae05cb0ce1521d','cb0d99f9b07b6d05d21c9b42c4cde0ddee71eb1b61fd4f19e3647ef8bf201415','deponia_2_chaos_on_deponia','deponia_2_chaos_on_deponia','https://www.gog.com/game/deponia_2_chaos_on_deponia',0,'Daedalic Entertainment','Daedalic Entertainment','Adventure',0,0,0),(1207659125,'Bioforge',0,0,0,0,0,'05e898e55053432a2e776eefdf9f676f6bf577dd7df32381215631a3ad7f5445','a5a1bcc6f60bbd46ec0dad3205cbc34572b701ec2fe5d9936f3460ff390bc60a','bioforge','bioforge','https://www.gog.com/game/bioforge',0,'Origin Systems','Electronic Arts','Action',0,0,0),(1207659126,'Medal of Honor: Allied Assault War Chest',0,0,0,0,0,'61cb29f780b557e2eb41931462fa8f0709b5e4d22ca8d4fefbd9d02c74554691','f56f447aa69b09a0b1a4f19df5c3a330a2d3f21706b2d642d05fc7ed71248c4b','medal_of_honor_allied_assault_war_chest','medal_of_honor_allied_assault_war_chest','https://www.gog.com/game/medal_of_honor_allied_assault_war_chest',0,'Electronic Arts','Electronic Arts','Shooter',0,0,0),(1207659127,'Incredipede',0,0,0,0,0,'78c586755872dde66bd25a112112aec3159e439d6e6a366149d6f4e5afc8b4ec','639bb4efcc41bc1b42bd58f2cf7bb25f875a277beda106051aca7213809a33b5','incredipede','incredipede','https://www.gog.com/game/incredipede',0,'Northway Games','Northway Games','Adventure',0,0,0);
INSERT INTO `games` VALUES (1207659128,'Lucius',0,0,0,0,0,'05388776ee02859db223cb16b8d6d2e553997ad43220cf264b6401792a613d15','c2ba963a4ede96b7c7573460f7cac1a9cca5fb67f875bd848a833879afc1d7f9','lucius','lucius','https://www.gog.com/game/lucius',0,'Shiver Games','Shiver Games','Adventure',0,0,0),(1207659129,'Defender\'s Quest',0,0,0,0,0,'d822c74168fda3451747cdad1f5cc188ed1c75f11945dfb866a3e1d546a96f13','8066caa1472780393630a9131c05b37a1a0828f1ec7e42190f8e4b24e752f761','defenders_quest','defenders_quest','https://www.gog.com/game/defenders_quest',0,'Level Up Labs','Level Up Labs','Strategy',0,0,0),(1207659130,'Dangerous Dave Pack',0,0,0,0,0,'6ec51486cdf41bc6a439cd666ff21abf97574d0d9a661b59875f4bf85df3bbc7','fa31c7d9d4322dfa0574415d82f5d7d3d85c65f79ce14b6211de6d7af1858769','dangerous_dave_pack','dangerous_dave_pack','https://www.gog.com/game/dangerous_dave_pack',0,'Softdisk Publishing','John Romero','Action',0,0,0),(1207659131,'Pid',0,0,0,0,0,'52e81eeff4ca5df0d81743f264016b1deb7a925beec41e653c1747bb1dfd9fdd','fd3e45c6abac86193649b7d741ed6440f086020331bf73a486b197a5d293f80b','pid','pid','https://www.gog.com/game/pid',0,'Might and Delight','Might and Delight','Action',0,0,0),(1207659132,'Costume Quest',0,0,0,0,0,'bf86b942e9b063b43007f713ca74943f03a461f9e351e6aacfdc82679aabfea5','799a1b63bd7888360588a44e90a1588b418eebe422d8714a784104f9fc686424','costume_quest','costume_quest','https://www.gog.com/game/costume_quest',0,'Double Fine Productions','Double Fine Productions','Role-playing',0,0,0),(1207659133,'The Dark Eye: Chains of Satinav',0,0,0,0,0,'0328bcc4508ca255268ffd457d439ec1cc99db0faf52edab788fddda09bbc3cb','7ec631e3df4b5d504b9081832c9f67188a24ee379009d9b39a78d84cef96037f','the_dark_eye_chains_of_satinav','the_dark_eye_chains_of_satinav','https://www.gog.com/game/the_dark_eye_chains_of_satinav',0,'Daedalic Entertainment','Daedalic Entertainment','Adventure',0,0,0),(1207659134,'Street Fighter Alpha 2',0,0,0,0,0,'f23a0ebcdfd3e43c82444f1c2864818fb7d78eebc0fe6bb352259804ae9c4cc5','10ca90dd2c09b7016c03de4d0a120c3808ecc0ee48c6ddc7e37497d102f1fa0a','street_fighter_alpha_2','street_fighter_alpha_2','https://www.gog.com/game/street_fighter_alpha_2',0,'Capcom','Capcom','Action',0,0,0),(1207659135,'Space Colony HD',0,0,0,0,0,'bb8934825b85abe002c168445dc747c81044725ce27f2a8198b7b343478df207','d8b0c8d60c18cf56801502c4150205989f787affa6f8189cad7e9f2b4593d54a','space_colony_hd','space_colony_hd','https://www.gog.com/game/space_colony_hd',0,'FireFly Studios','FireFly Studios','Strategy',0,0,0),(1207659136,'Terminal Velocity',0,0,0,0,0,'2971f999e05b284408e954f7ac204c2fe42b9712e710c6dc40e209de055a37d3','e98c46bfce0de882d50cdc8577277f5633d6849ad2d005d16167d4ab043cbcb1','terminal_velocity','terminal_velocity','https://www.gog.com/game/terminal_velocity',0,'Terminal Reality','Apogee Software','Action',0,0,0),(1207659137,'Warlords Battlecry 2',0,0,0,0,0,'213d180f40a6b5fd42dbd36b81c7ad3c5c9e1d298cdf5fb3585a069106a04952','1ea2a1ee2d010709c41204d10822aa3018f82db5b1f8cef76b28349512bb226c','warlords_battlecry_2','warlords_battlecry_2','https://www.gog.com/game/warlords_battlecry_2',0,'Strategic Studies Group','Ubisoft','Role-playing',0,0,0),(1207659139,'Imperialism',0,0,0,0,0,'524b5380904505b10a551e2f9a7ff44cfe43972507aed1397286adf7b224b06f','f859ca54451fe59f55c2746bcdf3a6ff619fb228da38fe8634f5a884903c286d','imperialism','imperialism','https://www.gog.com/game/imperialism',0,'Frog City Software','Ubisoft','Strategy',0,0,0),(1207659140,'The Real Texas',0,0,0,0,0,'6142008224699d6e73d516d2b09e8f7210a26495e32bb2c9af80b9d600ca32c1','3c39675d98bcc4795336ecb5e3e9f123f3443cad133d2a6ae8f7b8a56f6e3329','the_real_texas','the_real_texas','https://www.gog.com/game/the_real_texas',0,'Kitty Lambda Games','Kitty Lambda Games','Action',0,0,0),(1207659141,'Screamer 2',0,0,0,0,0,'a0b34abd5c2b5fcc290e990f4b085425a7f5931d1f67920ec92d4a494cbb656e','867a2aacd990e860745e29a555d6826a8f08dd3d704b32de0109167a769975a6','screamer_2','screamer_2','https://www.gog.com/game/screamer_2',0,'Graffiti','Interplay','Racing',0,0,0);
INSERT INTO `games` VALUES (1207659142,'Shadow Warrior Classic Complete',0,0,0,0,0,'68242319701d590dce72be3f0e2fe7fd716c98e958e69dda7ea9f9c8eb6e09f2','88595401bf6bb944f31da4cd685394fe5b11e1845f62c6c42f7daed90cde701a','shadow_warrior_complete','shadow_warrior_complete','https://www.gog.com/game/shadow_warrior_complete',0,'3D Realms Entertainment','Devolver Digital','Shooter',0,0,0),(1207659143,'Snapshot',0,0,0,0,0,'62f681e8bb63d2a9bcfaca69699569929cfb57c4ccc8c953627ebc3a412746e9','2741f5fb79ad18030fb2a444b2965316b09388e62c4e7dd04fd6019b5b26ec55','snapshot','snapshot','https://www.gog.com/game/snapshot',0,'Retro Affect','Retro Affect','Adventure',0,0,0),(1207659144,'Primordia',0,0,0,0,0,'fae2a98995099d6460704772c64d3aa2f42e13ab75bdf90ee7cca88abe1633f2','a44c50315ad1d59e4019deffe244e64001a9f26107f8bd49ba0853553a2be82a','primordia','primordia','https://www.gog.com/game/primordia',0,'Wormwood','Wadjet Eye Games','Adventure',0,0,0),(1207659145,'Stacking',0,0,0,0,0,'f464909580fa200164473afe33edb3000b9035c203adae616c1a6e5056d1bea2','82b00a824425e0f9c3428e5399d8d2eeb65488ef7e8e1ec07a889e9b552931ba','stacking','stacking','https://www.gog.com/game/stacking',0,'Double Fine Productions','Double Fine Productions','Adventure',0,0,0),(1207659146,'Miasmata',0,0,0,0,0,'5644c220e0ac1469a2da0fdfbafa32bd43fc68755a222aee9f535fa37d6e534b','42a10c58c1efe006982e8fabe820a3e465912c50dcba3af156f0fc94eebb33eb','miasmata','miasmata','https://www.gog.com/game/miasmata',0,' IonFX Studios',' IonFX Studios','Adventure',0,0,0),(1207659147,'Eador: Genesis',0,0,0,0,0,'8a45f3fd0ff642a327dbfa7d7e11844e969117065d20020cfa00721377ddda20','8a3cb2eaf81663cf5d70af6d96e7d3d50b7c1e318b2ea453b0f3220b2bc49f33','eador_genesis','eador_genesis','https://www.gog.com/game/eador_genesis',0,'Alexey Bokulev','Snowbird Games','Strategy',0,0,0),(1207659148,'The Book Of Unwritten Tales: The Critter Chronicles',0,0,0,0,0,'b316d618f1894eb7b268ec416223b8be921862100c7739c2892bec96ac8c3c13','e41431e098560bdd4d4e82274ddfdd0d13bcae69ce29f020d66ae455504ea08f','the_book_of_unwritten_tales_critter_chronicles','the_book_of_unwritten_tales_critter_chronicles','https://www.gog.com/game/the_book_of_unwritten_tales_critter_chronicles',0,'KING Art','THQ Nordic GmbH','Adventure',0,0,0),(1207659150,'A New Beginning: Final Cut',0,0,0,0,0,'89b5917e554aa64633003fe9da2f8f9425a2cfdc9cb4972a61b4ee57ed09a8ed','4f3a4895ee4506f7635b06d2fececf5012cf3692c6c6f7d75299249e0c3fbfbb','a_new_beginning','a_new_beginning','https://www.gog.com/game/a_new_beginning',0,'Daedalic Entertainment','Daedalic Entertainment','Adventure',0,0,0),(1207659151,'Capsized',0,0,0,0,0,'4523fc2e51e62cce7c22efec62a2d27f29a96bfdea371d70c907b4649e358a46','995dfc911f959a76619a49c20f36d26a9462ccc4d8a7846818bb3a27b045e289','capsized','capsized','https://www.gog.com/game/capsized',0,'Alientrap Games','Alientrap Games','Action',0,0,0),(1207659153,'Imperialism 2: The Age of Exploration',0,0,0,0,0,'7510772f0a5fea2154e4a5d92a826f9ba310f6d58fa8c95dfe40271f755cd36a','d244a26353b5bf58a688db2fa2c878b0ecfb96af0ed477a4fafd34388233a31c','imperialism_2_the_age_of_exploration','imperialism_2_the_age_of_exploration','https://www.gog.com/game/imperialism_2_the_age_of_exploration',0,'Frog City Software','Ubisoft','Strategy',0,0,0),(1207659154,'King\'s Bounty: Crossworlds GOTY',0,0,0,0,0,'97ff57f3a7b183e3b16444302e87aa9561dcb0e71acace15967f6a09a9998edf','1187b22cd3c65e7899c565425ad5bd3630dc3dd8463a7910194b1537fc001201','kings_bounty_crossworlds_goty','kings_bounty_crossworlds_goty','https://www.gog.com/game/kings_bounty_crossworlds_goty',0,' Katauri Interactive','1C Publishing','Strategy',0,0,0),(1207659155,'O.R.B.: Off-World Resource Base',0,0,0,0,0,'256376158ca5a375c1b1e4fae5a4bde426758dda4f47dfc29066214a9a52165f','e0ff51f52fbe79db736836b5d3f099ada6993caec694a9961156a67227172bad','orb_offworld_resource_base','orb_offworld_resource_base','https://www.gog.com/game/orb_offworld_resource_base',0,'Strategy First','Strategy First','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207659157,'Omerta: City of Gangsters (4 DLCs included)',0,0,0,0,0,'0a91a1a5d4fa465a455a18bf2673427bbd25bd9f942820c0cb69bab53e0e6b3d','81685b635852a250109ea79237a1d817e29c7f40c39635548eff882b26b399ae','omerta_city_of_gangsters','omerta_city_of_gangsters','https://www.gog.com/game/omerta_city_of_gangsters',0,'Haemimont Games','Kalypso Media Digital','Strategy',0,0,0),(1207659159,'Conquest: Frontier Wars',0,0,0,0,0,'63fd3b0d0152531e58897dec9ed68d262a8de763a5e5209f56aab7160002b53d','ab0734b6ff924188e9beccdee0602ac7aa50794f05a30ee27210f0f4069befbb','conquest_frontier_wars','conquest_frontier_wars','https://www.gog.com/game/conquest_frontier_wars',0,'Fever Pitch Studios','Fever Pitch Studios','Strategy',0,0,0),(1207659160,'Shattered Haven',0,0,0,0,0,'bb9df1c8e18fcf91f57e2543d355ecc14946c46b049c1f896d6986ee3b25a8a9','08f7d7788f96c4ef52dc06562b15aa10b9621d3a56d8fbba13fa01ca465cf57f','shattered_haven','shattered_haven','https://www.gog.com/game/shattered_haven',0,'Arcen Games','Arcen Games','Action',0,0,0),(1207659162,'Neverwinter Nights 2 Complete',0,0,0,0,0,'6765258c586b4397ea7e05273f20b59693cdbea84a7d96af102c35cab07c6339','2b391829353c28aa5613dc04216298a7de2899296ba821b2ab462f55eebbc6d8','neverwinter_nights_2_complete','neverwinter_nights_2_complete','https://www.gog.com/game/neverwinter_nights_2_complete',0,'Obsidian Entertainment','Hasbro Inc.','Role-playing',0,0,0),(1207659163,'The Settlers® 2: 10th Anniversary',0,0,0,0,0,'643eba0da5f6d566d9700b4761b1354927fe20f1a2ec4e682d9d9d534a508ad0','20d33eb3d5bd3a5e763eaa84be3cdaba5effa3ccafff8f1bdb4c806c11a8cd1d','the_settlers_2_10th_anniversary','the_settlers_2_10th_anniversary','https://www.gog.com/game/the_settlers_2_10th_anniversary',0,'Blue Byte Studio','Ubisoft','Strategy',0,0,0),(1207659164,'The Bard\'s Tale',0,0,0,0,0,'221848d8ea3e23064e666d9a73acac43b0be25f3d456b805f5c276a4a67b662e','61f7b0292dab919a372cda9b7fb4339ad07c5ca0ab98de0192017bc4e2fb605d','the_bards_tale','the_bards_tale','https://www.gog.com/game/the_bards_tale',0,'inXile Entertainment','inXile Entertainment','Action',0,0,0),(1207659165,'Balls of Steel',0,0,0,0,0,'9caa57e2e5dfd8a0fb639d8049c89d753344ebacd76461bc3b947868fb1d0c8f','123919558da5ec860a7c72be1e6c46d5e6aa95fe68387a2a115d012948c740ac','balls_of_steel','balls_of_steel','https://web.archive.org/web/20160101060924/https://www.gog.com/game/balls_of_steel',0,'3D Realms Entertainment','3D Realms','Simulation',0,0,0),(1207659166,'Avadon: The Black Fortress',0,0,0,0,0,'b8c0f65c0c4bbfd13132fc1048c16ae3f60764d7496fd08b1accb65594eeef05','51a7105c9d9b2371fc683a78cc9ce5caa792b9f8c3403a3af7d17baf723b4de8','avadon_the_black_fortress','avadon_the_black_fortress','https://www.gog.com/game/avadon_the_black_fortress',0,'Spiderweb Software','Spiderweb Software','Role-playing',0,0,0),(1207659167,'Etherlords 2',0,0,0,0,0,'ed02765777e869d7a10702d14d884fc2e9a1d8558eb848fdcac8ff256a2a3360','7fb350774cb1d7334b6966dee9b5dca45a4ad9a6b1be0bc5e8e9228cc1711009','etherlords_2','etherlords_2','https://www.gog.com/game/etherlords_2',0,'Nival Interactive ','Nival Interactive','Strategy',0,0,0),(1207659168,'Daikatana',0,0,0,0,0,'df57f5fb6d934a1536446eeb600897ea8de6ea128263fe33d95823fbe0792657','3c2d44814591efef986938e0e465439844c66002a1986ab1a370b52bffa4b296','daikatana','daikatana','https://www.gog.com/game/daikatana',0,'Ion Storm Inc.','Square Enix','Action',0,0,0),(1207659169,'Cannon Fodder 2',0,0,0,0,0,'513141cb4997845906ee7c6143194f45fc5b65bfa40d8ccff6312bb755027932','14574355e2bdc668a89566204d2e332719cd3315df779b7454cf4e6f7bd4b7d4','cannon_fodder_2','cannon_fodder_2','https://www.gog.com/game/cannon_fodder_2',0,'Sensible Software','Codemasters','Action',0,0,0),(1207659170,'Worms Forts: Under Siege',0,0,0,0,0,'7b3843eff89ff559d703bcacf2c49e5b4afffac4dbd2916e0dbda0feda2761bf','1ef88b4159be9b596895882dc0e6cae10042675a5a4fc5bf570e7da0c36b812c','worms_forts_under_siege','worms_forts_under_siege','https://www.gog.com/game/worms_forts_under_siege',0,'Team17 Software','Team17 Digital LTD.','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207659171,'Zafehouse: Diaries',0,0,0,0,0,'0d6e6cdaaed72afbde8cf9d8b0826e740936715cf157abb9496b6fde75f8364f','2cb5e4a0325a5d7091e09a52f1843095f8150cc9eedd64893fe732bb74c0bcbd','zafehouse_diaries','zafehouse_diaries','https://www.gog.com/game/zafehouse_diaries',0,'Screwfly Studios','Screwfly Studios','Strategy',0,0,0),(1207659172,'System Shock™ 2',0,0,0,0,0,'5256f14e991169a1d50abf30b35fa99b2afe3d5e807a99aa1d9d3c4327741a84','f784dc66a015b47b4d021430ac9f2767373f6f6b5eb5c781c2a7632cc12893eb','system_shock_2','system_shock_2','https://www.gog.com/game/system_shock_2',0,'Irrational Games and Looking Glass','Night Dive Studios','Role-playing',0,0,0),(1207659173,'Hocus Pocus',0,0,0,0,0,'1800e3bb88f376e36d255d72cbe010b8aca2670b5b54c7e5170f7df5550acbfd','485ab4a4575cf2c90d47f4447bfd4db9e0aa95c29a8ac236734cd2cec58bb462','hocus_pocus','hocus_pocus','https://www.gog.com/game/hocus_pocus',0,'Moonlite Software','3D Realms','Action',0,0,0),(1207659174,'Leisure Suit Larry: Love for Sail!',0,0,0,0,0,'ae86988f6c3049e921c6ec74f443033abd37f8d879c98682263f95dece22d0cb','73bb0427a0f610d84fadf3a3fba07e07a35e4607dccc42a32b3d7b59979a81ea','leisure_suit_larry_love_for_sail','leisure_suit_larry_love_for_sail','https://www.gog.com/game/leisure_suit_larry_love_for_sail',0,'Sierra','Codemasters','Adventure',0,0,0),(1207659175,'Richard & Alice',0,0,0,0,0,'9e465fb263e666e7afd54c8714e5ac0307ecddb917a2edf42d38cef628cf26cc','db0e099741ddb675ef04c6422c0579932964b2b04542d66c76e8afa647f364da','richard_alice','richard_alice','https://www.gog.com/game/richard_alice',0,'Owl Cave','Owl Cave','Adventure',0,0,0),(1207659176,'Sensible World of Soccer 96/97',0,0,0,0,0,'44245179eddb526519c2cba329fa46dc50890fec30966cfccd055752a45947c7','ac5e29bf14e1fb739dde91f0f9a565ce0ba8932d3fd58ad1aac50f7439abf845','sensible_world_of_soccer_9697','sensible_world_of_soccer_9697','https://www.gog.com/game/sensible_world_of_soccer_9697',0,'Sensible Software','Codemasters','Sports',0,0,0),(1207659177,'Driftmoon',0,0,0,0,0,'5981081f79be7aeb23f9f4fdf0b9de84690c861a37c205e1d7817d3fd603c079','605e531d9c09caf0c5a7cb275867ac1613e6f500c480a9cc40232050e8890c30','driftmoon','driftmoon','https://www.gog.com/game/driftmoon',0,'Instant Kingdom','Instant Kingdom','Role-playing',0,0,0),(1207659178,'99 Levels to Hell',0,0,0,0,0,'17188b8ffcc141796081999fe548d614ea60d066e9ebacbfe0934698993055f8','0ac1c8b9ff58f263276b3c383d79ba6a0c829b510256debe08e4bf7bc6f0ac2b','99_levels_to_hell','99_levels_to_hell','https://www.gog.com/game/99_levels_to_hell',0,'B-evil','Zaxis Games','Shooter',0,0,0),(1207659179,'Total Overdose: A Gunslinger\'s Tale in Mexico',0,0,0,0,0,'85b9493a7f6f533468b25d171716b9f2e0b8c9dffd53ca2b11aedc70a6bb5dfd','1eb59747a38b4b3496f7301bb22cff11a86ddbd226f5784dc9a9f63264fc6681','total_overdose_a_gunslingers_tale_in_mexico','total_overdose_a_gunslingers_tale_in_mexico','https://www.gog.com/game/total_overdose_a_gunslingers_tale_in_mexico',0,'Deadline Games','Square Enix','Action',0,0,0),(1207659180,'Ultimate Body Blows',0,0,0,0,0,'f6c9382359fc3c4c137c680c56fc3fec2f6a306c0169c266a9fb543e5899e867','1da6dab2ad8c884cbd201ad8ec6a606e81755f86b16be4c5567871f3ffbf068d','ultimate_body_blows','ultimate_body_blows','https://www.gog.com/game/ultimate_body_blows',0,'Team17 Software','Team17 Digital LTD.','Action',0,0,0),(1207659181,'Waking Mars',0,0,0,0,0,'b18b89d09f52ea1724a8c138e587ff2434549e1d980b46e0842be0f5c406d550','a299c9a31be5348de02910f22b2a56690bf2bc9c3c2d6c0eafa997c461d7dce1','waking_mars','waking_mars','https://www.gog.com/game/waking_mars',0,'Tiger Style Games','Tiger Style Games','Action',0,0,0),(1207659182,'Realms of Chaos',0,0,0,0,0,'62f91adf7e5205477436aad9bc83861b5acc3929e4a9d0ab71c1f331d6db9246','daa2aa30e756185d7d7be1b295c787a407bfac60d02c3f91be41889cd346e6e1','realms_of_chaos','realms_of_chaos','https://www.gog.com/game/realms_of_chaos',0,'Apogee Software, Ltd.','3D Realms','Action',0,0,0);
INSERT INTO `games` VALUES (1207659184,'Blade of Darkness',0,0,0,0,0,'fc3934db22fb812128937541a5b2d4e0c9ea31be32911ba8cbd46a23cab7d1be','75686d82818f5910a0304a3b0ffeb56a0685db2a981d8305ef671d7a6de0381b','blade_of_darkness','blade_of_darkness','https://www.gog.com/game/blade_of_darkness',0,'Wadjet Eye Games','Wadjet Eye Games','Adventure',0,0,0),(1207659185,'Settlers® 3: Ultimate Collection',0,0,0,0,0,'4359ca2ce063d4c20fd75747b600101f19bd7ef98195a91ee15fd435d60a59f0','49a55d20ad2e0626b57104b8c257bc95e602b7278fc2e3a70d7492cab97d5ee2','the_settlers_3_ultimate_collection','the_settlers_3_ultimate_collection','https://www.gog.com/game/the_settlers_3_ultimate_collection',0,'Blue Byte Studio','Ubisoft','Strategy',0,0,0),(1207659187,'Magic Carpet™ 2: The Netherworlds',0,0,0,0,0,'09f1108a95b4333f85afbb97b6b053ef426ab807e5ad3cb4f21a868c7faba54a','8fd0df35b75f717c4bff3437198fa89993ef46c9bc9d88558d26b92eea02b709','magic_carpet_2_the_netherworlds','magic_carpet_2_the_netherworlds','https://www.gog.com/game/magic_carpet_2_the_netherworlds',0,'Bullfrog Productions','Electronic Arts','Shooter',0,0,0),(1207659188,'Secret Agent',0,0,0,0,0,'659917dbbf5555e7bab199a649fd9e51c425b24056538c7f8d101bbd02c14efd','e0a8cd259e2a3fd98de3af64596664b70edb63573722bc8ecf48021016c7e504','secret_agent','secret_agent','https://www.gog.com/game/secret_agent',0,'Apogee Software, Ltd.','3D Realms','Action',0,0,0),(1207659189,'Catacombs Pack',0,0,0,0,0,'317549470735177f3cef0d0e474f6c944f471af9532796351e16182776060a00','2b6f26c01e182c3c318dd784d344284ec40312b02e27de0902d72662c5682f62','catacombs_pack','catacombs_pack','https://www.gog.com/game/catacombs_pack',0,'id Software, Softdisk Publishing','Catacomb Games','Shooter',0,0,0),(1207659190,'Omikron: The Nomad Soul',0,0,0,0,0,'56d8a2c71f7770232662ecbc777690f01e5c0a483964eca1cc8d14559467cab9','1a3ba2b679c97557ce8067f5072000e2fe0ae470ca124150137230839d49429b','omikron_the_nomad_soul','omikron_the_nomad_soul','https://www.gog.com/game/omikron_the_nomad_soul',0,'Quantic Dream','Square Enix','Role-playing',0,0,0),(1207659191,'Clive Barker\'s Undying',0,0,0,0,0,'be0b1a8316b89cb7c28c61226ed3a6f6c3f3ea1b403bafed39d4ff2b8f5478b2','0b77509a7ba35f832be09b6abdc0ba8c89c07af1d67a885a1a671192832538ad','clive_barkers_undying','clive_barkers_undying','https://www.gog.com/game/clive_barkers_undying',0,'DreamWorks Interactive','Electronic Arts','Shooter',0,0,0),(1207659192,'Anodyne',0,0,0,0,0,'ab50c89d216b9a43109c147a34bc12dff3c2dff8b27d12f428720326e3f75de0','006ff30e9821a2dcf68745aef3bb434bc67ca55ccf5bf482754b96793892d606','anodyne','anodyne','https://www.gog.com/game/anodyne',0,'Analgesic Productions LLC','Analgesic Productions LLC','Action',0,0,0),(1207659193,'Syndicate Wars™',0,0,0,0,0,'36cd03a163a3ccc97cbdc5638810c74434f70336fc522f3863a4ebb1e5cfab09','04052e3f3aa4f2e2b5a778434196dc3ab42a4b32c949565b9e50f95e0209320b','syndicate_wars','syndicate_wars','https://www.gog.com/game/syndicate_wars',0,'Bullfrog Productions','Electronic Arts','Action',0,0,0),(1207659194,'Eador. Masters of the Broken World',0,0,0,0,0,'0de3eb76863ea54f4e48888bfd616805e23e1464de1be67da1a83aba96f6869e','7117d0e16128b51e4d57ca5a998355c9d41ee572136783d5cbede37ece05997c','eador_masters_of_the_broken_world','eador_masters_of_the_broken_world','https://www.gog.com/game/eador_masters_of_the_broken_world',0,'Snowbird Games','Snowbird Games','Strategy',0,0,0),(1207659195,'Strike Commander',0,0,0,0,0,'80bc0dfd248fbf7fda9bc50eb33ff7eac542828d4f8133888d8657ea3d1379a3','d459fa2946958006e8e467988b0108ff67fde97e03138b30be56249ff1615cdd','strike_commander','strike_commander','https://www.gog.com/game/strike_commander',0,'Origin Systems','Electronic Arts','Simulation',0,0,0),(1207659196,'Krush Kill ‘N Destroy 2: Krossfire',0,0,0,0,0,'8599f2c32749a8bb24bced51cafb1dea530a305d6d0e9d0a9e68594ad840ea43','083356030d82a8784c97f6506f6c377aec4cbd225aedf5fcd323e7d0c9187ac0','krush_kill_n_destroy_2_krossfire','krush_kill_n_destroy_2_krossfire','https://www.gog.com/game/krush_kill_n_destroy_2_krossfire',0,'Beam Software','Atari','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207659197,'Pathologic',0,0,0,0,0,'69d241d3e14ebed5bec184bd119953c37d5892f29d964af16eea2cd1fbb3b3bc','208f9343944fc03dee1fdbedebb2be2e637b477a822ae9a07539ddf4f40eca29','pathologic','pathologic','https://web.archive.org/web/20130705163653/http://www.gog.com/gamecard/pathologic',0,'Ice-Pick Lodge','Ice-Pick Lodge','Action',0,0,0),(1207659198,'Signal Ops',0,0,0,0,0,'115ccab5384d2d4a2d172e007523c1ad61b8f72b7613d98b9352a351e52b471a','f669c11b12f608d59d76dba1d3c23f5cdb859d9341fffde972c682edbb9c108e','signal_ops','signal_ops','https://www.gog.com/game/signal_ops',0,'Space Bullet Dynamics Corp.','Space Bullet Dynamics Corp.','Action',0,0,0),(1207659200,'Evoland',0,0,0,0,0,'328f64d901b4604a2a56c696639ecc3fff0760386bd187589009b0b3b478ade1','40d3976553fb63ffd1e410d907d6a869982371feeab99f04e7659761b55d2d4d','evoland','evoland','https://www.gog.com/game/evoland',0,'Shiro Games','Shiro Games','Action',0,0,0),(1207659201,'The Cat Lady',0,0,0,0,0,'1e3162c51f7a7089c7f875ab2cac236f2e184be6c2ce1700121871a27f25c294','b7f26cb1cbe9906251603161d8494d7efd1be97429b93b225925e2da65dc86f7','the_cat_lady','the_cat_lady','https://www.gog.com/game/the_cat_lady',0,'Harvester Games','Screen 7','Adventure',0,0,0),(1207659203,'Slender: The Arrival',0,0,0,0,0,'878189f55aeaea75c6e39c3edd8884eae3983b2943ac86ae1bbc4b08ec813132','671ae74f4cdcb0dd0935228375764e6325efd23e911fc3b7cf35b2fa2aa4c60d','slender_the_arrival','slender_the_arrival','https://web.archive.org/web/20171027174912/https://www.gog.com/game/slender_the_arrival',0,'Blue Isle Studios','Blue Isle Studios','Adventure',0,0,0),(1207659204,'Children of the Nile Complete',0,0,0,0,0,'39daca7251628e95efc972a8b899d3e9fb980c37ab8dcf911ad6afbe680d1abb','437a6d7efa1c5c51194735e1f2447e4d4528bc586ae5c1c97e19080fbf58678c','children_of_the_nile_complete','children_of_the_nile_complete','https://www.gog.com/game/children_of_the_nile_complete',0,'Tilted Mill Entertainment','Tilted Mill Entertainment','Strategy',0,0,0),(1207659205,'Nancy Drew: Curse of Blackmoor Manor',0,0,0,0,0,'1a9f17750b5bd79551d4753b03333b61f14b2dbe26f356c36c95fc3dae237178','bcbde6562ddb34067f674ce0d776c66929e1b96ab5cdebb4e1c4475eed5b1219','nancy_drew_curse_of_blackmoor_manor','nancy_drew_curse_of_blackmoor_manor','https://www.gog.com/game/nancy_drew_curse_of_blackmoor_manor',0,'Her Interactive','Her Interactive','Adventure',0,0,0),(1207659206,'Galactic Civilizations I: Ultimate Edition',0,0,0,0,0,'f0b3b5b22f46eb107fd1cface7acde7c1516e6f35629c2b536cef80cc5bb0659','abf105c5688caa779ce816b7fedf4193fd99732d2ff485123a7a918f73e37688','galactic_civilizations_i_ultimate_edition','galactic_civilizations_i_ultimate_edition','https://www.gog.com/game/galactic_civilizations_i_ultimate_edition',0,'Stardock','Stardock','Strategy',0,0,0),(1207659207,'Overlord + Raising Hell',0,0,0,0,0,'dd0d5c8dda0053647d8fbd4c6c433d66f01e8938212a430df2bbc2aafac635da','0d1ce56c6e0823594bad99db2fdae182cce5b47af1e0643262fa658adae56a48','overlord_raising_hell','overlord_raising_hell','https://www.gog.com/game/overlord_raising_hell',0,'Triumph Studios','Codemasters','Strategy',0,0,0),(1207659209,'Papers, Please',0,0,0,0,0,'020a8d7a03e349d8beb1d80f9f52babb54a6059dd0b7145676d906cc081bbbfd','a1ac0db953aa01ad227712378e4cb2f613ce4cc77a1d3a18d3b80c2f3b633259','papers_please','papers_please','https://www.gog.com/game/papers_please',0,'Lucas Pope','3909 LLC','Simulation',0,0,0),(1207659210,'Don\'t Starve',0,0,0,0,0,'5e9bff20c57e3cb48babd47546b936508ef3aa801a0f49cbf64c390136374208','0b83d6db90343a788803fa38f17bc8044f243124245bee17bac7d1bbf2d69223','dont_starve','dont_starve','https://www.gog.com/game/dont_starve',0,'Klei Entertainment','Klei Entertainment','Action',0,0,0),(1207659211,'FEZ',0,0,0,0,0,'a90c6957fb3fac1f02d98eaab10a993f37ba749025bb9a5a88121759972ccd0c','b0d45e9d4c7f98a486c4339cdc8aaa84c368cc5c6380f4047b11bf851e5106cd','fez','fez','https://www.gog.com/game/fez',0,'Polytron Corporation','Polytron Corporation','Action',0,0,0);
INSERT INTO `games` VALUES (1207659213,'Dyad',0,0,0,0,0,'ba37f61f554ca119dca27e31dc1a124c6c4a17588fb9935f480bdf281eca5041','f625e6605e091e76d34bc8af08b9e93d1ab466eb49a6a3078f632d502f001e3d','dyad','dyad','https://web.archive.org/web/20150703161401/http://www.gog.com/game/dyad',0,'][ Games Inc','][ Games Inc','Shooter',0,0,0),(1207659215,'Space Empires IV Deluxe',0,0,0,0,0,'362b62c4205353d1bb79b0d94f1691a3fda7989f5f3c28b8c3e677656209bcbd','9ecfc63ae6b9e99255b23509a86f87b94f27aa28ab0644a2617afd88c655e7b9','space_empires_iv_deluxe','space_empires_iv_deluxe','https://www.gog.com/game/space_empires_iv_deluxe',0,'Malfador Machinations','Strategy First','Strategy',0,0,0),(1207659217,'Subwar 2050 Complete',0,0,0,0,0,'a33811b375df2467a28df9f52f6997c7242da3cd1293b12258b1cd7995f9d4f6','9bd29258e8aef24bec51423d20c4fc0472a1199b3d6c480334f4673dfb8170c8','subwar_2050_complete','subwar_2050_complete','https://www.gog.com/game/subwar_2050_complete',0,'Particle Systems Ltd.','Interplay','Simulation',0,0,0),(1207659218,'Night of the Rabbit, The',0,0,0,0,0,'f56d3261eac9291076d63afea4f246957f23a80c8d257813d2b17bb0e6fcf286','c614e9acf2f791cc63c084686f9e760c3a5824107ff622d587a48fd938b4a0e1','the_night_of_the_rabbit','the_night_of_the_rabbit','https://www.gog.com/game/the_night_of_the_rabbit',0,'Daedalic Entertainment','Daedalic Entertainment','Adventure',0,0,0),(1207659220,'Eschalon: Book II',0,0,0,0,0,'421c9dd5a89bc53a26dd792204e25c9407dfda1f657160c2bc1a69316a4fa9b9','1a41fdfdcb88757baa55449fb99a1a018cfa2224f09f000a51bfee63df30cb6c','eschalon_book_ii','eschalon_book_ii','https://www.gog.com/game/eschalon_book_ii',0,'Basilisk Games','Basilisk Games','Role-playing',0,0,0),(1207659221,'Eschalon: Book I',0,0,0,0,0,'cf9a191ba37d07a3a932ef2568a8e1bc81c88eaedcc343e3a02b5fa8c4ad125c','3dcb4c6f179227731f80ea5d0dcf231ebb0212d65dce44826c22779ab4d9dbca','eschalon_book_i','eschalon_book_i','https://www.gog.com/game/eschalon_book_i',0,'Basilisk Games','Basilisk Games','Role-playing',0,0,0),(1207659222,'Deathtrap Dungeon',0,0,0,0,0,'f8f1a6c73b14bac5e9244b8b847a7126f70b44733507139bfb314a8f3cd33d80','9a582c766bcd312b3ace1edcd074d6f4787e5e238f03380e4e2399513baac046','deathtrap_dungeon','deathtrap_dungeon','https://www.gog.com/game/deathtrap_dungeon',0,'Asylum Studios','Square Enix','Action',0,0,0),(1207659223,'Reus',0,0,0,0,0,'357a5b76b184a2a888b21723578ce11db29d9cf952598bce3d098929b1aab68d','44ba0525c9bc7282640b8a2616374ca53e582d454b924d76b1059c3d831db53a','reus','reus','https://www.gog.com/game/reus',0,'Abbey Games','Abbey Games','Strategy',0,0,0),(1207659224,'Anvil of Dawn',0,0,0,0,0,'2d9f3d3764b0132325867b26f769a9598d126266541318fa5b863b92174f1a59','aef775aa7f2899a888d40db3a52e40f281fa2c1bce7afeb320935c8b91d39f41','anvil_of_dawn','anvil_of_dawn','https://www.gog.com/game/anvil_of_dawn',0,'DreamForge Intertainment','Ubisoft','Role-playing',0,0,0),(1207659225,'Leisure Suit Larry: Magna Cum Laude: Uncut and Uncensored!',0,0,0,0,0,'e6efe1b94372cc0b002a940aafd871973cb058bcca07994469e7c2f1f47492d3','4092536af740b7ae58f2180ef04370e83f60a8f0d56951eab333642264ecf1e8','leisure_suit_larry_magna_cum_laude_uncut_and_uncensored','leisure_suit_larry_magna_cum_laude_uncut_and_uncensored','https://www.gog.com/game/leisure_suit_larry_magna_cum_laude_uncut_and_uncensored',0,'Sierra','Codemasters','Adventure',0,0,0),(1207659226,'Raiden Legacy',0,0,0,0,0,'b66bfd026b476e8c5f29acef334104bc741578bd3dfda5c65373129470a91253','e8485ce54b7e3df4973af8fbd3e93febeaa8b8e717edd42922c5b564eb64cb17','raiden_legacy','raiden_legacy','https://www.gog.com/game/raiden_legacy',0,'DotEmu','DotEmu','Shooter',0,0,0),(1207659227,'Unepic',0,0,0,0,0,'7639ad440c2da179b9d3e623a7d3d97294c1ab64cd7bb89918365864e9eb2a17','6cd8fd7a0adcb17d25c1a8062126204189458d2dcfc860f90559464ed5c76251','unepic','unepic','https://www.gog.com/game/unepic',0,'Francisco Téllez de Meneses','Francisco Téllez de Meneses','Action',0,0,0);
INSERT INTO `games` VALUES (1207659228,'Chaos Overlords',0,0,0,0,0,'520a2f816ac3c0fab6aded3ce1073fc96fb63ab8b219994134945948b431a197','7388145501e6360a9ca54b9a637d48ab8373a628e4ccabd51ad2db226725bb94','chaos_overlords','chaos_overlords','https://www.gog.com/game/chaos_overlords',0,'Stick Man Games','Evolution Interactive','Strategy',0,0,0),(1207659230,'Wizardry 8',0,0,0,0,0,'dada9bcfc95e378843dafc9428fcab42e9b44b04f0d97dd59afdb29260a3f4b4','18f67e13d62157b60fc5f4a7a5749de1d743ab4435a48127d252a7567bcca58f','wizardry_8','wizardry_8','https://www.gog.com/game/wizardry_8',0,'Sir-Tech Software','Gamepot Inc.','Role-playing',0,0,0),(1207659231,'Inherit the Earth',0,0,0,0,0,'b41a9b621c67b3f6fc65e5a6827e03f8b05d0296e2078ea83bc3e2bee5049b8b','820240cd0117b35a8a3e72aa1a80e40548b5ff6f5bda9ba03e012050ba48abee','inherit_the_earth','inherit_the_earth','https://www.gog.com/game/inherit_the_earth',0,'The Dreamers Guild','The Wyrmkeep Entertainment Co.','Adventure',0,0,0),(1207659232,'Expeditions: Conquistador',0,0,0,0,0,'b260001eb786606aadd983f7e5e70a6a671c148f41a7461eee871312270dcffe','d783c4133cf921418a00aebe8d270eb7c7a5ddf84ac6a8e19bed958517093137','expeditions_conquistador','expeditions_conquistador','https://www.gog.com/game/expeditions_conquistador',0,'Logic Artists','Logic Artists','Strategy',0,0,0),(1207659233,'Race Driver: GRID',0,0,0,0,0,'d804945d9f937294a513e5f59831fe59e40a69618d801e32b27e8e7a73decdcb','4e6d602677997284fcc4d6cd97c870d343437415524bc4403d4fb67af6c6f194','race_driver_grid','race_driver_grid','https://web.archive.org/web/20130913022047/http://www.gog.com/game/race_driver_grid',0,'Codemasters','Codemasters','Racing',0,0,0),(1207659234,'Rayman Origins',0,0,0,0,0,'e6d3961aa89d2e9a297e40aea8a23b2ea9a82b7c9b6ceee345140d6133a665b4','3c015e635c0f53f5c77c0abd3884aedc737dd6bf374760588b2c30759910dc97','rayman_origins','rayman_origins','https://www.gog.com/game/rayman_origins',0,'Ubisoft','Ubisoft','Action',0,0,0),(1207659235,'Project Eden',0,0,0,0,0,'ca425062769ef8ed4a3ef2655496787ecaa33c9cb2e2ef1471f84bdaebb37b84','472b597fe54a7fdbae18290c2f611063429115cbe3f27c034eb29b4aa94a9129','project_eden','project_eden','https://www.gog.com/game/project_eden',0,'Core Design','Square Enix','Action',0,0,0),(1207659236,'Magrunner: Dark Pulse',0,0,0,0,0,'8f46ca309dfc8e91444bf9f442667b0f9e7367fb47e822d71859e6ec30371b9d','c73cc1e34b0203763f2f771f2ea04135f69999e2c0d311a6c7467e2b8d07a731','magrunner_dark_pulse','magrunner_dark_pulse','https://www.gog.com/game/magrunner_dark_pulse',0,'Frogwares','Frogwares','Adventure',0,0,0),(1207659237,'Jade Empire: Special Edition',0,0,0,0,0,'010661d2c6213d65106f9f71c19baa2738e15b17dedee19b27a028e87e82f6e7','ce7a5690454407381b19967a49e582b189b03b335b5de57daf7d1f33df18f8ec','jade_empire_special_edition','jade_empire_special_edition','https://www.gog.com/game/jade_empire_special_edition',0,'BioWare','Electronic Arts','Action',0,0,0),(1207659238,'Pandemonium 2',0,0,0,0,0,'abda1b793dee28424243b90dfb3ba93001cb004104853b62dfa6967ea99bcdf0','841a09fe74636a9259b32566484a8e4f5218a5dd192ec5c30deb4d4c288df5fb','pandemonium_2','pandemonium_2','https://www.gog.com/game/pandemonium_2',0,'Crystal Dynamics','Square Enix','Action',0,0,0),(1207659239,'Singularity™',0,0,0,0,0,'d8af01c57060aead6a5e661c28dcf9ee85e2a84bee223f9d97f201a09b4e8cd0','208feec679a60358973f8668494bac5cce61bc13242d2f861d58616c304db98c','singularity','singularity','https://www.gog.com/game/singularity',0,'Raven Software','Activision','Shooter',0,0,0),(1207659240,'Vampire®: The Masquerade - Bloodlines™',0,0,0,0,0,'8bbb356c33d8a97cd6ec70793c81aa29d55680f38e93688d61d69fe3fa831719','6149bf4331decb630de8b414edf102ed9ff1d328dea6ad5eb9efa790c1138f00','vampire_the_masquerade_bloodlines','vampire_the_masquerade_bloodlines','https://www.gog.com/game/vampire_the_masquerade_bloodlines',0,'Troika Games','Activision','Action',0,0,0);
INSERT INTO `games` VALUES (1207659241,'Jack Keane 2: The Fire Within',0,0,0,0,0,'d82c7e942bf940f765ffd8a253bf2bebf713220c31bb9df6b34d252758b714d2','62c1578b8b5a4c04c2f1fef9107111c7f8367d3583c467c8e535e93257062697','jack_keane_2_the_fire_within','jack_keane_2_the_fire_within','https://www.gog.com/game/jack_keane_2_the_fire_within',0,'Deck13 Interactive','Astragon Entertainment','Adventure',0,0,0),(1207659242,'Rogue Legacy',0,0,0,0,0,'c614fb2ab596ba0b66311cf54cb713b2ec4659b82c9477e1bcdbecccd1468125','5ba636bb8cf737efb231e211dfe502df771ef2811dce0ff32a1ff8508ec38e44','rogue_legacy','rogue_legacy','https://www.gog.com/game/rogue_legacy',0,'Cellar Door Games','Cellar Door Games','Action',0,0,0),(1207659243,'Leisure Suit Larry: Reloaded',0,0,0,0,0,'48b818a3641ff97239784f6f1937a8cc5997d39b5f0b9eb0cfff2a009e867e9c','3237467afa26a707adb980fe1f08f076f2498228cd8fdeb7cb506fbb53b8912d','leisure_suit_larry_reloaded','leisure_suit_larry_reloaded','https://www.gog.com/game/leisure_suit_larry_reloaded',0,'Replay Games','Replay Games','Adventure',0,0,0),(1207659244,'Rise of the Triad (2013)',0,0,0,0,0,'ef85f1a24e3e91ab320c864e705da06fe1956ab88609a667075b18acbd713c13','ebe382a3b136f7c423833dea5c7798abccf0f04c3af506063da673290c105bb5','rise_of_the_triad','rise_of_the_triad','https://www.gog.com/game/rise_of_the_triad',0,'Interceptor Entertainment','Apogee Software','Shooter',0,0,0),(1207659247,'Wargame: European Escalation',0,0,0,0,0,'df8be14d48a19f08e2d7d44594306602d5766e49099b18bfc5e8fe1faa7f9434','6fca5fdf84a66190d6459ef4865415a73e83068e01882ce4021cae73fcef3c97','wargame_european_escalation','wargame_european_escalation','https://www.gog.com/game/wargame_european_escalation',0,'Eugen Systems','Focus Home Interactive','Strategy',0,0,0),(1207659248,'Humans Must Answer',0,0,0,0,0,'a50d4f7608eeabe69a5dd7fda9f2d6ca76694a4e754b3ef2b1d4f2f97c49d16b','c3285aa56d89d7f1303162ba332e6604bd020c00801314226e4e512124241c00','humans_must_answer','humans_must_answer','https://www.gog.com/game/humans_must_answer',0,'Sumom Games','Sumom Games','Shooter',0,0,0),(1207659249,'Ring Runner: Flight of the Sages',0,0,0,0,0,'24f4d5fcf90617604c12c8961a1c2e63e865dc66279e7e354068edcb27280a32','f49899ef8197966cd07aa093ea0e6ad2b4f9cf18e9ed1e62c89032d55f8c04ad','ring_runner_flight_of_the_sages','ring_runner_flight_of_the_sages','https://www.gog.com/game/ring_runner_flight_of_the_sages',0,'Triple-B-Titles','Triple-B-Titles','Shooter',0,0,0),(1207659252,'Tzar: The Burden of the Crown',0,0,0,0,0,'e0618679363b68f5bd23f28e09e16d419e7b923c9ecd64b9d56e86d09740481f','afdb2f6d32451fddded88e2ec19614a1903d53db8c2fb0dd518cee6863db3645','tzar_the_burden_of_the_crown','tzar_the_burden_of_the_crown','https://www.gog.com/game/tzar_the_burden_of_the_crown',0,'Haemimont Games','Haemimont Games','Strategy',0,0,0),(1207659253,'Brutal Legend',0,0,0,0,0,'7476c5c06f7967d3009efd2cc5bc1209ab879eff2b2178b819e58b35a3590c93','59f124a01ee9c97f73abd6aa9ceb55ac4b1a4442eca41c0728468ff5ecc77df5','brutal_legend','brutal_legend','https://www.gog.com/game/brutal_legend',0,'Double Fine Productions','Double Fine Productions','Action',0,0,0),(1207659254,'Settlers® 4: Gold Edition, The',0,0,0,0,0,'ec17bc980b3f67c8318cb8b92807b42381b2061c076ecf12ca10d6b240bc311a','720d6e3c823e9f6daea6daf327063297ceea2c8815d990558827cef397aab166','the_settlers_4_gold_edition','the_settlers_4_gold_edition','https://www.gog.com/game/the_settlers_4_gold_edition',0,'Blue Byte Studio','Ubisoft','Strategy',0,0,0),(1207659256,'InFlux',0,0,0,0,0,'f397ae817c3b359ae81bea86f86e4fba7a46d49c8bfcb7b9a01372e552177c8b','38afd7f8044c236d44905dc12fee286f9415c4e29da2db259c73d971905fabb7','influx','influx','https://www.gog.com/game/influx',0,'Impromptu Games','Impromptu Games','Action',0,0,0),(1207659257,'Spelunky',0,0,0,0,0,'f907b55b7d0a98b9c0c5ae1c82cd52a4b4fd6b2cf9a38dfd25e69bf8fc9a00f5','c106c8cce0339de7f67c15305b938ff22241c9d4fd30c7212ce1c22e382dabb7','spelunky','spelunky','https://www.gog.com/game/spelunky',0,'Mossmouth','Mossmouth','Action',0,0,0);
INSERT INTO `games` VALUES (1207659258,'Ittle Dew',0,0,0,0,0,'804c8f0d5f6008142fcd167646aa85599dfca0a39c23cda033816c0259c2c630','656f358b3f83243f86cb548a70c384ffba1dcab9bcab0a283d7658def38cff06','ittle_dew','ittle_dew','https://www.gog.com/game/ittle_dew',0,'Ludosity','Ludosity','Action',0,0,0),(1207659259,'Amnesia: The Dark Descent',0,0,0,0,0,'41ce75275bcb835c46f3fbcb5aa8d811edc24fce500b340d23033f103f55ee38','247fc8f02be88a9bbc1dde9222b1771270a34ffb3c6407a12539d0d673145a76','amnesia_the_dark_descent','amnesia_the_dark_descent','https://www.gog.com/game/amnesia_the_dark_descent',0,'Frictional Games','Frictional Games','Adventure',0,0,0),(1207659260,'Jack Keane',0,0,0,0,0,'50869817e74a6ab46722e94706ff613fb329d4680ec642537b2fa5ff7ca36dcc','b639c7b2d7a51d7cffea58e02b8cc6787b9611d03845e506c0ce6c9016d4ed46','jack_keane','jack_keane','https://www.gog.com/game/jack_keane',0,'Deck13 Interactive','Kiss','Adventure',0,0,0),(1207659263,'Divinity: Dragon Commander',0,0,0,0,0,'5c9650a8455f6dcb2bc9c84d79c017e82a307b377a868a453b259093474287dc','7c01c37e8e0f1ed6e06cedc376e9a2f4f7b837a08e3d2cce64564bb940b28374','divinity_dragon_commander','divinity_dragon_commander','https://www.gog.com/game/divinity_dragon_commander',0,'Larian Studios','Larian Studios','Strategy',0,0,0),(1207659333,'Lords of Midnight, The',0,0,0,0,0,'0cc8a987884c525bd57c5ac9f3fefc4eb85a6ec11d2ecfc618be5b100269ec5f','0f009193594c97954c29e024804b4bb7f0afc57319b3c5de14cce50d483498b5','the_lords_of_midnight','the_lords_of_midnight','https://www.gog.com/game/the_lords_of_midnight',0,'Mike Singleton and Chris Wild','Chilli Hugger Software','Role-playing',0,0,0),(1207659443,'Amnesia: A Machine For Pigs',0,0,0,0,0,'b6a69dfb11bb12ba5f9c75d9c3be6f3801c2ba3a4beefeab58fefb3b32f51996','4f9242b74401e692ee29a846ecdacd1e06283c18e0a7346acbb681dae3f77127','amnesia_a_machine_for_pigs','amnesia_a_machine_for_pigs','https://www.gog.com/game/amnesia_a_machine_for_pigs',0,'The Chinese Room','Frictional Games','Adventure',0,0,0),(1207659453,'Shadowgrounds Survivor',0,0,0,0,0,'f61a8c1b384888c07219a70b82727803162028e999303e4da5820ec67d884453','6372bbf4f0fbc4641e3e6ca77159db918756912359ce4a64ed7b80933afd58f8','shadowgrounds_survivor','shadowgrounds_survivor','https://www.gog.com/game/shadowgrounds_survivor',0,'Frozenbyte','Frozenbyte','Shooter',0,0,0),(1207659463,'Thunderscape',0,0,0,0,0,'da0ced116a7945e880cf92a9d6e7e02510099692ddf49c15365d7e72a22bb545','256076dde1592b66f96b78c62d510a6f335730b6c344097b942ff598be098031','thunderscape','thunderscape','https://www.gog.com/game/thunderscape',0,'Strategic Simulations','Kyoudai Games','Role-playing',0,0,0),(1207659473,'Wing Commander™: Academy',0,0,0,0,0,'f806482b0bc5835d2589b18497f0357a0020d5adc6c4c85eea103989ecc4d0a8','2e60f6480f5d76bb3c5791fecbf9a80e97c925d630fcd76ae18b91f7c8313ba9','wing_commander_academy','wing_commander_academy','https://www.gog.com/game/wing_commander_academy',0,'Origin Systems','Electronic Arts','Shooter',0,0,0),(1207659483,'Hammerwatch',0,0,0,0,0,'8547bfa84fc2bb48ad8866d11572711dfb3ef494be9e9ef4798c3393de15d460','cbc711cd60b33b6a4a507d46c093679117f6002800269758c4fc3b667ee7b3c3','hammerwatch','hammerwatch','https://www.gog.com/game/hammerwatch',0,'Crackshell','Crackshell','Action',0,0,0),(1207659503,'Shelter',0,0,0,0,0,'71d2667188f68d94510f2c398c1464df9fe90bf4758054e2c3df276d39ac8a8f','22478bbd9021fb7da6d8872edda1a531c44db61ea543f6bd5c6ce6787e7ca379','shelter','shelter','https://www.gog.com/game/shelter',0,'Might and Delight','Might and Delight','Adventure',0,0,0),(1207659513,'Guacamelee! Gold Edition',0,0,0,0,0,'b5c378eff177f052b9fa197338dcfd237bd0ca367515e574a8068cc1df14e636','f81b1e60be835c0bb06aa036389a6bb9313c299d8b9207e004d9a4783e09026b','guacamelee_gold_edition','guacamelee_gold_edition','https://www.gog.com/game/guacamelee_gold_edition',0,'DrinkBox Studios','DrinkBox Studios','Action',0,0,0);
INSERT INTO `games` VALUES (1207659523,'Tales From Space: Mutant Blobs Attack',0,0,0,0,0,'b987021ac65ca526c62d1558aa4c278442da1ab60dd3358865d3dbdb52cd46b8','55aceb225e5e7fd603e1fe017a173cecff1caa6a280c35819a05270bd314a048','tales_from_space_mutant_blobs_attack','tales_from_space_mutant_blobs_attack','https://www.gog.com/game/tales_from_space_mutant_blobs_attack',0,'DrinkBox Studios','DrinkBox Studios','Action',0,0,0),(1207659543,'The Chaos Engine',0,0,0,0,0,'68dc54323c76e711efd6c82936a448bb0993debc165219d53811d67c938a59cf','c43395f2f63989699ae216afd3bd0c6027c6a245ed219a108a3464b0837d54f2','the_chaos_engine','the_chaos_engine','https://www.gog.com/game/the_chaos_engine',0,'Abstraction Games and The Bitmap Brothers','The Bitmap Brothers','Shooter',0,0,0),(1207659583,'Megabyte Punch',0,0,0,0,0,'3564ce50ff239bf35bb5ea9219a02408f6e05aa17f24be92d363638af63d65fd','7a4057bde2367c2c6c4168c20c374286adcdd452e5c44d6fca0587001b791abc','megabyte_punch','megabyte_punch','https://www.gog.com/game/megabyte_punch',0,'Reptile Games','Reptile Games','Action',0,0,0),(1207659593,'I Have No Mouth And I Must Scream',0,0,0,0,0,'30901ac72be00f081ec474f970ee56f9c9126781d3e309311cec83641689bca5','a2361765a5f52a7b7bafbec28e721c7ba3effcc85821b7dfb248d496454ebdcf','i_have_no_mouth_and_i_must_scream','i_have_no_mouth_and_i_must_scream','https://www.gog.com/game/i_have_no_mouth_and_i_must_scream',0,'The Dreamers Guild','Night Dive Studios','Adventure',0,0,0),(1207659603,'Wing Commander™: Armada',0,0,0,0,0,'dc26647bd0ffcc1ab2886f565821c9cf1a9123badffeb97476ee3ecaa485d9ab','1678daa133755d205e960fb5ecf17e9e077bba815955369352c73a26d0cc2400','wing_commander_armada','wing_commander_armada','https://www.gog.com/game/wing_commander_armada',0,'Origin Systems','Electronic Arts','Shooter',0,0,0),(1207659613,'Privateer 2: The Darkening',0,0,0,0,0,'7d71a896ff4318613f2d9e33a82b7125a6bd3ef24b87c7f082c59c1a96c8f579','747d3f35b1ace3a29ed3e6da678a406ccb0e607011e699c82f83da5e98b81c92','privateer_2_the_darkening','privateer_2_the_darkening','https://www.gog.com/game/privateer_2_the_darkening',0,'Origin Systems','Electronic Arts','Shooter',0,0,0),(1207659623,'Volgarr the Viking',0,0,0,0,0,'54e9b9504af871d5a6ed67f9a9c439fc3a889ecd4e84d24173b10e49971db9c7','73241434200fe223a888182956f5be3a26e53e173c38dacc574bedd0b08c9015','volgarr_the_viking','volgarr_the_viking','https://www.gog.com/game/volgarr_the_viking',0,'Crazy Viking Studios','Crazy Viking Studios','Action',0,0,0),(1207659643,'Cognition Episode 1: The Hangman',0,0,0,0,0,'d8795771c2bd0a0005fa15edfb814b4ad0ccfc09111686b62159e99f66aad8d4','9b558d61a6a66b8da5c0ef2ff16165c70f38790e0998f297e0e41b2375fc4954','cognition_episode_1_the_hangman','cognition_episode_1_the_hangman','https://www.gog.com/game/cognition_an_erica_reed_thriller',0,'Phoenix Online Studios','Phoenix Online Studios','Adventure',0,0,0),(1207659653,'Cognition Episode 2: The Wise Monkey',0,0,0,0,0,'a7550d7ae4a87a2b4dd8e62a581bf35e80e574d84ec4269dbbd5cb63229e46d8','bb229b1349bfc450b38a12e524698afde3dc2bb63f94a416c38b43188b155800','cognition_episode_2_the_wise_monkey','cognition_episode_2_the_wise_monkey','https://www.gog.com/game/cognition_an_erica_reed_thriller',0,'Phoenix Online Studios','Phoenix Online Studios','Adventure',0,0,0),(1207659663,'Cognition Episode 3: The Oracle',0,0,0,0,0,'f199b21e1acaaedac83a4e402412392dc5a6871d3247c297ff34b228f4d43968','672f4a64aa896a5cf58adca5d74db8f2b07d312330bb30fa98879c586dab02e4','cognition_episode_3_the_oracle','cognition_episode_3_the_oracle','https://www.gog.com/game/cognition_an_erica_reed_thriller',0,'Phoenix Online Studios','Phoenix Online Studios','Adventure',0,0,0),(1207659673,'Cognition Episode 4: The Cain Killer',0,0,0,0,0,'ccce2b7b89d67a02c2acebc393feeb5c7a49b3fcea7bfb031e2008788360040d','e83b8bb3c4a636a1d1e22b58ece32e8246c0ec23caac2158b1a465e2210345e3','cognition_episode_4_the_cain_killer','cognition_episode_4_the_cain_killer','https://www.gog.com/game/cognition_an_erica_reed_thriller',0,'Phoenix Online Studios','Phoenix Online Studios','Adventure',0,0,0);
INSERT INTO `games` VALUES (1207659683,'The Legend of Kyrandia (Book One)',0,0,0,0,0,'1076d1256ebd600a6926ea1124a4c1976aad9f41c0ca9436abce147dcf141be6','39cdb35e7c546e1592a80ff405b210002fa428cee0d7232cd129d9e251e2a334','legend_of_kyrandia','legend_of_kyrandia','https://www.gog.com/game/legend_of_kyrandia',0,'Westwood Studios','Electronic Arts','Adventure',0,0,0),(1207659693,'Stargunner',0,0,0,0,0,'8921d6e3d1a8aed517fa5fc183a2d09c3f44339b54458125c2e293d02a9ecbb6','92bff88f40a1a6ca5ac99f190fe528f579ee2bab26b9d327509933229c57d7f1','stargunner','stargunner','https://www.gog.com/game/stargunner',0,'Apogee Software, Ltd.','3D Realms','Shooter',0,0,0),(1207659713,'Shadow Man',0,0,0,0,0,'7ca9f09722b5af2d1469595be84fc9c7266471f6a5b82ed5a808125759e1b9fe','9414c79c9299612ddef39f7fce00375558a9d54529d83c9184cfab588e54dc71','shadow_man','shadow_man','https://www.gog.com/game/shadow_man',0,'Acclaim Studios Teesside','Valiant Entertainment','Action',0,0,0),(1207659723,'Flight of the Amazon Queen',0,0,0,0,0,'23f2b3ea51d94d412516374660aa231561f5d25bd99947c5b49e8f255119a185','038d14d296d74aca6f5793de063cfdfba2becfa2e97d4413a622b0604397d720','flight_of_the_amazon_queen','flight_of_the_amazon_queen','https://www.gog.com/game/flight_of_the_amazon_queen',0,'Interactive Binary Illusions','Red Sprite Studios','Adventure',0,0,0),(1207659733,'Gateways',0,0,0,0,0,'3c8b66d7d96e3ec7a77b749555da1bf7f70cb904f911578192de0f3ebc14ef4f','bfd24e62441edec77fc6eba8793d345ddc45a743bfb5f61bbc32321717bfc244','gateways','gateways','https://www.gog.com/game/gateways',0,'Smudged Cat Games','Smudged Cat Games','Action',0,0,0),(1207659753,'VVVVVV',0,0,0,0,0,'5ddc4d73252aa805e7e9d9d0d2b65b9a5f4af53eeb5d80e6ac0a899c003680b9','dcf4ca8e2381ab89a185fd3d16bb9f6ad847d4f93d658273e528a9d8f20de351','vvvvvv','vvvvvv','https://www.gog.com/game/vvvvvv',0,'Terry Cavanagh','Terry Cavanagh','Action',0,0,0),(1207659763,'Adventures of Shuggy, The',0,0,0,0,0,'0198575fe9f8a3146fa8d62ee470d164b822ffa4337fa488b6659ce3db56a94a','adeaefceb3b49cfe2d4bcd7ccb2f5913d3439b550f6abb9dbdc54bbf0c622db6','the_adventures_of_shuggy','the_adventures_of_shuggy','https://www.gog.com/game/the_adventures_of_shuggy',0,'Smudged Cat Games','Smudged Cat Games','Action',0,0,0),(1207659773,'Escape Goat',0,0,0,0,0,'691b1f2ecd90347ef76fb32915936094fc6919302dda34a4213abbd82cd84203','a78cd1f4daf66f61e12891e9c5849b589dca5449ed7cdbf211c5385c2271795a','escape_goat','escape_goat','https://www.gog.com/game/escape_goat',0,'MagicalTimeBean','MagicalTimeBean','Action',0,0,0),(1207659783,'The Raven: Legacy of a Master Thief',0,0,0,0,0,'b8def14e5fae3875c8092bb563d67c149168fed60a04d58235098f05ea9550eb','d92989551c9f442092ad58625246b8a8870972669f341376c83c7abb5b400d70','the_raven_legacy_of_a_master_thief','the_raven_legacy_of_a_master_thief','https://www.gog.com/game/the_raven_legacy_of_a_master_thief',0,'KING Art','THQ Nordic GmbH','Adventure',0,0,0),(1207659793,'The Inner World',0,0,0,0,0,'0aa917c241a298a96b31a5bcdf5929e3d5f37571907ca0f7106647e7695648e8','82c8cf9bd29945cd27dc95735062f5d298fdaa382d38ee29fbdb7ec0521c4be7','the_inner_world','the_inner_world','https://www.gog.com/game/the_inner_world',0,'Studio Fizbin','Headup Games','Adventure',0,0,0),(1207659803,'Memoria',0,0,0,0,0,'8cd8ee0340dc6ef06126ad97dadeb91206fde33fadc1371f26fe917c1e76d3e3','bddbe2dee183acf12a4f6486ed912107d4984ff404b18b54aac9bc507ef66f09','memoria','memoria','https://www.gog.com/game/memoria',0,'Daedalic Entertainment','Daedalic Entertainment','Adventure',0,0,0),(1207659813,'The Legend of Kyrandia: Hand of Fate (Book Two)',0,0,0,0,0,'79109616ba1c4dd17390249e43b1724d6771c0ea36c5c758491ad607998b4f71','e5756ff74a441bf36781ed07bdca71855684ca3bf0c85f1f87f4bd8c9429336d','legend_of_kyrandia_hand_of_fate','legend_of_kyrandia_hand_of_fate','https://www.gog.com/game/legend_of_kyrandia_hand_of_fate',0,'Westwood Studios','Electronic Arts','Adventure',0,0,0);
INSERT INTO `games` VALUES (1207659823,'The Legend of Kyrandia: Malcolm\'s Revenge (Book Three)',0,0,0,0,0,'cc25e3aa94736cf409d3e3daeab4a396f3847f637f7eadaed64f81277e19f65c','ef8360359dcd77b71e25105f6dd623a4a98a1e753929127b4e5294ab6d0f524a','legend_of_kyrandia_malcolms_revenge','legend_of_kyrandia_malcolms_revenge','https://www.gog.com/game/legend_of_kyrandia_malcolms_revenge',0,'Westwood Studios','Electronic Arts','Adventure',0,0,0),(1207659833,'Surgeon Simulator 2013',0,0,0,0,0,'ec1fc2d951afd68ed21d1abb968387ba98a7ea62cea4d0d756260fe7bb2a2d87','b338f1eab490997f1eb1e1778015d00f454f251910c7b5d3b3d2de3b1c720adb','surgeon_simulator_2013','surgeon_simulator_2013','https://www.gog.com/game/surgeon_simulator',0,'Bossa Studios','Bossa Studios','Simulation',0,0,0),(1207659843,'Giana Sisters: Rise of the Owlverlord',0,0,0,0,0,'80fcd2b966e413eac94eda2179200f0388483e4d6336e7e62f772b7bca9df4ac','ec76105699aa248c5721ee60b27f4c2d955dd476ee8addc82fca28fbf33b0417','giana_sisters_rise_of_the_owlverlord','giana_sisters_rise_of_the_owlverlord','https://www.gog.com/game/giana_sisters_rise_of_the_owlverlord',0,'Black Forest Games','HandyGames, Black Forest Games','Action',0,0,0),(1207659853,'Montague\'s Mount',0,0,0,0,0,'bf5b2db05fcab6fa2dfe884f676734992c65623dbe686c9ec750b3829b61a538','ee051e139971e5d73fca78741f7948f29e1fc034798f41d9c861cd0c4029febe','montagues_mount','montagues_mount','https://www.gog.com/game/montagues_mount',0,'Polypusher Studios','Polypusher Studios','Adventure',0,0,0),(1207659863,'Re-Volt',0,0,0,0,0,'628c8db841d26c879dbd94a66b9b83471c89e636eec89faa4dde29f1400f0101','a5c68b032cffd83fd5f748539e3b8eb8f50d7a0736da30def3f0fa0d632852e0','revolt','revolt','https://web.archive.org/web/20131209162331/http://www.gog.com/game/revolt',0,'Acclaim Studios Teesside','H2 Interactive','Racing',0,0,0),(1207659873,'Smugglers V',0,0,0,0,0,'ab58528893bc27cd9e9b87120ae8ddf860302a6f49ae046ed45f0179e0995650','f262078eb18ebea009de3bd4565ef1b1f9e5308fae1c3ae5578a4bd32aa02163','smugglers_v','smugglers_v','https://www.gog.com/game/smugglers_v',0,'Niels Bauer Games','Highcliffe Media Publishing','Role-playing',0,0,0),(1207659883,'PixelJunk Monsters HD',0,0,0,0,0,'ef79aba6e08c58a7446b04010c449c45b3fd5d7258fe138246f66d5ea9165e51','3eac6e848480801963250d4cc4b8a45a5c4ad012eae4836a506175e3dae0fbcc','pixeljunk_monsters_hd','pixeljunk_monsters_hd','https://www.gog.com/game/pixeljunk_monsters_hd',0,'Double Eleven Ltd.','Double Eleven Ltd.','Strategy',0,0,0),(1207659893,'Rogue Trooper',0,0,0,0,0,'ccc59cb53fb728c07b7035cc0d403ee04286c5cba01261685905be37e9d207cb','7473cee8116a90ec17122fb47d9ecdc744ecef402997acb9c451c1c399cefc74','rogue_trooper','rogue_trooper','https://www.gog.com/game/rogue_trooper',0,'Rebellion','Rebellion','Shooter',0,0,0),(1207659903,'Lilly Looking Through',0,0,0,0,0,'0e83cfb8b5cee3d65f79a2461c08cf21675e3609197c00647ecdbb70e232a7d2','d14d183349d551f53a923125a4e3f334662f484f33571112b096bafb4e494b97','lilly_looking_through','lilly_looking_through','https://www.gog.com/game/lilly_looking_through',0,'Geeta Games','Geeta Games','Adventure',0,0,0),(1207659913,'Ethan: Meteor Hunter',0,0,0,0,0,'c4f01dc7f47dec500d7aa01d3288f0033c778c4a62b7a30d84a5e1fb5e670ebd','9506d063d11b5e4493baabde75ba60da5b3eb500a367cc369f911f3b6731f0f5','ethan_meteor_hunter','ethan_meteor_hunter','https://www.gog.com/game/ethan_meteor_hunter',0,'Seaven Studio','Seaven Studio','Action',0,0,0),(1207659923,'Knock-Knock',0,0,0,0,0,'faaa0d24ee4ca73170fde3c590231d91d2a5b9d1a59a8ffe9036da23ac5f75c8','abb9c0c9e9e6c550fd74b1a97e60ec64f14ad9194ef273858fa8599aaa416c0f','knock_knock','knock_knock','https://www.gog.com/game/knock_knock',0,'Ice-Pick Lodge','Ice-Pick Lodge','Action',0,0,0),(1207659933,'Long Live the Queen',0,0,0,0,0,'d94f7a68192f88259bfad7eef38f547d1059c2557b51be54d8eb1ac8fcb299be','505a6ca7325570010b096cee319459abe93839f4cc71ae8e5ad81d4dc996b9de','long_live_the_queen','long_live_the_queen','https://www.gog.com/game/long_live_the_queen',0,'Hanako Games','Hanako Games','Adventure',0,0,0);
INSERT INTO `games` VALUES (1207659943,'Corsairs Gold',0,0,0,0,0,'28755bb7d75495c8709cf768981a9de1869a9b5081385d9ba5133ac1e96a3f33','fbda1c6b6e83abd6f2da4f9abaef8055255cd8683d19c0a97cbf9690f5914462','corsairs_gold','corsairs_gold','https://www.gog.com/game/corsairs_gold',0,'Microids','Anuman Interactive','Strategy',0,0,0),(1207659953,'Democracy 3',0,0,0,0,0,'3182e20df573a8868203f57ec419311e7037be9af0d2831b17a49d267d922126','40ffcc17f50d62973c6f033b3bc48e54da7d4d8a7d28e6ecee065febf34dfd75','democracy_3','democracy_3','https://www.gog.com/game/democracy_3',0,'Positech Games','Positech Games','Strategy',0,0,0),(1207659963,'Carmageddon 2: Carpocalypse Now',0,0,0,0,0,'1d3dde3965076c3acf9638e3c9e4c1e03865083719fda3ffadb1f77fc94ae17b','e90c179a9bc6586613a9a70a219db10829b24ddff3fa41dc62104e41949fa87a','carmageddon_2_carpocalypse_now','carmageddon_2_carpocalypse_now','https://www.gog.com/game/carmageddon_2_carpocalypse_now',0,'Stainless Software','THQ Nordic GmbH','Action',0,0,0),(1207659973,'Dark Matter',0,0,0,0,0,'b00b2476219ead9dee94cacecc82fe39979126f48d01704d2938d0c75daddb26','89fc5f0317e015177447f2f476ebc5e7a276fe342eb67f655caf9d9c6c53d319','dark_matter','dark_matter','https://web.archive.org/web/20131021065610/https://www.gog.com/game/dark_matter',0,'InterWave Studios','Iceberg Interactive','Action',0,0,0),(1207659983,'Aarklash: Legacy',0,0,0,0,0,'63656c70b7b1743c0e0b2db3a5a2d9d7b3cf5afe24dfab194cf38213dca7392c','6021b0b39f72536aec270b9e63c75d497d974c23920dfe1bc4cbc245d0dababe','aarklash_legacy','aarklash_legacy','https://www.gog.com/game/aarklash_legacy',0,'Cyanide Studios','Cyanide Studios','Role-playing',0,0,0),(1207659993,'Entomorph: Plague of the Darkfall',0,0,0,0,0,'c9a3f5b7150fd21a9cf86da5cac6af737c26549b7bc276e965d8b98123b9bb1b','379fb7d34725d44e4091a91cc209dfc0f4f3829730bec0bd564e8cb7bee78fe6','entomorph_plague_of_the_darkfall','entomorph_plague_of_the_darkfall','https://www.gog.com/game/entomorph_plague_of_the_darkfall',0,'Strategic Simulations','Kyoudai Games','Action',0,0,0),(1207660003,'The Swapper',0,0,0,0,0,'500d9dcde05635cf15fd91516aa5a2460a95543e5b652e59aa9f55a525e3b9bc','07e79a5fdb930fd730d9992bfbe3c5547fd2d3f60e59a1932691c0ce10775c32','the_swapper','the_swapper','https://www.gog.com/game/the_swapper',0,'O. Harjola, O. Hantula, T. Jubert, C. Castellano','Facepalm Games','Action',0,0,0),(1207660013,'Rune Classic',0,0,0,0,0,'aaba7de32452f6cba243f80ac597e08e404913db90084b6a7bf817f12e5c01e5','41c3540f781ff8e223e54e1c2ac3b3a5bf406a98af7869e315ae5e2b5376e646','rune_classic','rune_classic','https://www.gog.com/game/rune_classic',0,'Human Head Studios','Nine Realms','Action',0,0,0),(1207660023,'Triple Town',0,0,0,0,0,'402833db058bb81e414651037657ea58c912fddc50b660d0c510c5996cba3e76','fbf7aec0e8e305759107e64b4b95b4dd2cddaaf21ea2235713ce56059a0a108d','triple_town','triple_town','https://www.gog.com/game/triple_town',0,'SpryFox','SpryFox','Strategy',0,0,0),(1207660043,'Deadly Premonition: Director\'s Cut',0,0,0,0,0,'88596fa3a3f1456f25d85496c4e7f2e9998dcc9278f4e1a1ed1cba096a31dd32','e9f2017b55cdb7923e66e63c65cc701824fb15d5b6a55217f3f6c9d7ba8eac9e','deadly_premonition_directors_cut','deadly_premonition_directors_cut','https://www.gog.com/game/deadly_premonition_directors_cut',0,'Access Games','Rising Star Games','Action',0,0,0),(1207660053,'Aqua Kitty: Milk Mine Defender',0,0,0,0,0,'fa51cee492f292573b88e28f1ccba9ef3eb5e1035284abd4f9f36d9dad4e2b29','44b672557d6c367edf2f948b0659ab26a78a349238f7fdc8653249705c1ca5db','aqua_kitty_milk_mine_defender','aqua_kitty_milk_mine_defender','https://www.gog.com/game/aqua_kitty_milk_mine_defender',0,'Tikipod','Tikipod','Shooter',0,0,0),(1207660054,'Avadon 2: The Corruption',0,0,0,0,0,'db7af34213ecf34b9228a33486232edf05b697c23de4d3f287d3f9199226550e','2e0f0b17cb1437402a05a5c691d3ee259369f7235fcbbc7ad8ddb649e14093b8','avadon_2_the_corruption','avadon_2_the_corruption','https://www.gog.com/game/avadon_2_the_corruption',0,'Spiderweb Software','Spiderweb Software','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1207660064,'Outlast',0,0,0,0,0,'01f30d7e58567757353953d17654a9812ce460c35cd6e9f3b96897c0d7cbfeb6','1ae7e786a0cf9963273b0824259da621072cf520be128ed8708b0ff501962534','outlast','outlast','https://www.gog.com/game/outlast',0,'Red Barrels','Red Barrels','Action',0,0,0),(1207660084,'Lone Survivor: The Director\'s Cut',0,0,0,0,0,'81b86bcea25ed24f95035a80145c71056d347591ece894b21a6d4546b663d76e','1dcceee0e38842433976469fb70434423670e80953605709341d0e2de0b686b4','lone_survivor_directors_cut','lone_survivor_directors_cut','https://www.gog.com/game/lone_survivor_directors_cut',0,'Superflat Games','Superflat Games','Action',0,0,0),(1207660094,'Dust: An Elysian Tail',0,0,0,0,0,'0d679a5b5e297d129221362d41370871c433f9573ad857fbd53a0b9bc09d2303','62b91190a44a7d38334b50e23ed5b1999e78a31122e6f4515b53aee2df1e360e','dust_an_elysian_tail','dust_an_elysian_tail','https://www.gog.com/game/dust_an_elysian_tail',0,'Humble Hearts LLC','Humble Hearts LLC','Adventure',0,0,0),(1207660104,'PixelJunk Shooter',0,0,0,0,0,'e6aa403f136a1f7d97b23c8b8ff61d4f1ed2038f8e37f255cfc72b1895d1f343','c8e4b95414ec21156b5eb6ae8db8d69095cf44d7cb33fb48217c5659b50baa74','pixeljunk_shooter','pixeljunk_shooter','https://www.gog.com/game/pixeljunk_shooter',0,'Double Eleven Ltd.','Double Eleven Ltd.','Shooter',0,0,0),(1207660124,'Battle Worlds: Kronos',0,0,0,0,0,'89174927b2aa5d9447e4b16f179eb1ac0d70b9524496ff4b3b5f1c3372b7c1ad','3323984aedb1d96b10b181224a3c84cc56d4373feddbf9ff24cd1844cbc55909','battle_worlds_kronos','battle_worlds_kronos','https://www.gog.com/game/battle_worlds_kronos',0,'KING Art Games','THQ Nordic GmbH','Strategy',0,0,0),(1207660134,'Race the Sun',0,0,0,0,0,'239a04be23e6e9a7e541157ffb16a6b89f567d31387d940088e41bc1966c7b3f','b8872c918ad821648413dd69e2ca5c77a71ecf8fa82cdcc3c01efdaf8eb7cb49','race_the_sun','race_the_sun','https://www.gog.com/game/race_the_sun',0,'Flippfly','Flippfly','Racing',0,0,0),(1207660143,'Valdis Story: Abyssal City',0,0,0,0,0,'d0eacb52a28ddf049be287ad2d8de70f99eacfd4b2fa476e54ccde60a532e2f3','08b22770a94261759883c90b5486cf9430ad3089ce8d1c3015efe7c714361034','valdis_story_abyssal_city','valdis_story_abyssal_city','https://www.gog.com/game/valdis_story_abyssal_city',0,'Endlessfluff Games','Endlessfluff Games','Action',0,0,0),(1207660163,'Wasteland 1: The Original Classic',0,0,0,0,0,'d5cb52b81a93191d7beed3e3847e00abc51a7d41e332167d14fed3320ffa5bed','533220e6f90e2187e6cc96baf6850182370da676283d85e735fd63b9a4c916db','wasteland_the_classic_original','wasteland_the_classic_original','https://www.gog.com/game/wasteland_the_classic_original',0,'inXile Entertainment','inXile Entertainment','Role-playing',0,0,0),(1207660173,'Redshirt',0,0,0,0,0,'7233284d41a4926040a16bd5ddb262d16c9e0b635316cd254c9522d8d57345f9','465868ac409bf5bc47366c8f71bf5401a9d158343eaaa5413f88fc3a48dbd7c9','redshirt','redshirt','https://www.gog.com/game/redshirt',0,'The Tiniest Shark','Positech Games','Adventure',0,0,0),(1207660183,'Sword of the Stars: The Pit Osmium Edition',0,0,0,0,0,'cc7cba210f0ff7043a2a4d3c17f8ce36360ea4ecdb0235c74579b9088eb2481c','efabfd67e25e04c12d7781ddfe0ac6816b995fb90eaaafeef02349ff4705f241','sword_of_the_stars_the_pit_osmium_edition','sword_of_the_stars_the_pit_osmium_edition','https://www.gog.com/game/sword_of_the_stars_the_pit_osmium_edition',0,'Kerberos Productions','Kerberos','Role-playing',0,0,0),(1207660203,'Sang-Froid: Tales of Werewolves',0,0,0,0,0,'2fac31a23345078c613285fcd4e0a9cb3bba931d0eade3656a8ad099f292e3ec','1814ceb98ff446019aa431cdd5a866a850f2fd1e7cddc65a3633ee700511c370','sangfroid_tales_of_werewolves','sangfroid_tales_of_werewolves','https://www.gog.com/game/sangfroid_tales_of_werewolves',0,'Artifice Studio','Artifice Studio','Action',0,0,0),(1207660213,'Super Hexagon',0,0,0,0,0,'88bdfa014e18492e4b94e5911058e2832ba24ea1ce09f55be8aae36b04c8fe12','e8ba6d5b86bd63ea16241e130b0b7a02b9ecffd96e601b4728e1698053b82980','super_hexagon','super_hexagon','https://www.gog.com/game/super_hexagon',0,'Terry Cavanagh','Terry Cavanagh','Action',0,0,0);
INSERT INTO `games` VALUES (1207660223,'Dragon Lore: The Legend Begins',0,0,0,0,0,'9ef0f822fcc19c3567ed52891dc1ba941ddf8eaab824b1b4eb12485cb4cd7938','87ba53b148fb7a4e7b27d017e8bf761d8c892b55180f2e3993a6e09b77cfd700','dragon_lore_the_legend_begins','dragon_lore_the_legend_begins','https://www.gog.com/game/dragon_lore_the_legend_begins',0,'Cryo Interactive','Anuman Interactive','Adventure',0,0,0),(1207660233,'Deponia 3: Goodbye Deponia',0,0,0,0,0,'a44f8e592f5b9d8dcb77e7c48eb15533eaa8b1d550af328f9075dd999f62c06e','36413835a395037239133f8a07caaf47213afb02b7d7dbdaae87dd0cdab45d77','goodbye_deponia','goodbye_deponia','https://www.gog.com/game/goodbye_deponia',0,'Daedalic Entertainment','Daedalic Entertainment','Adventure',0,0,0),(1207660253,'Dustforce DX',0,0,0,0,0,'2acfa2baffa0b6c6cc87ea8deaa675e2df4114b7172d1681e06b31f920acef09','4ac44fc2d08684492b71fadaf6143894743ad600c2135a94de95cf5b7f94de32','dustforce_dx','dustforce_dx','https://www.gog.com/game/dustforce_dx',0,'Hitbox Team','Digerati','Action',0,0,0),(1207660263,'Shivah, The',0,0,0,0,0,'9078dd5d14b10b6eafbf9ebc254dae1a9f32ee6fdf05d97b7c3992ddf40b6abc','71ebbdd2f1b93589dad383111e8181dfc28eebf5326d5bb29163e6db62c00f82','the_shivah','the_shivah','https://www.gog.com/game/the_shivah',0,'Wadjet Eye Games','Wadjet Eye Games','Adventure',0,0,0),(1207660283,'Heretic Kingdoms: The Inquisition',0,0,0,0,0,'efe56e8261cb5b1e8c41c01e5a05ab22824443d96b863a59b46a40fe8fc4f924','8f1d126bae4b453c7f078078df66c9d3b8470597a54ac7194c355afaf9efabdc','heretic_kingdoms_the_inquisition','heretic_kingdoms_the_inquisition','https://www.gog.com/game/heretic_kingdoms_the_inquisition',0,'3D People','Games Farm','Role-playing',0,0,0),(1207660293,'Mr. Bree+',0,0,0,0,0,'0cadb3125f2d8b0f9aa31726376b782b5f54277a9026b116d5775451fc1cac1b','171b639b7ff5ef3362c0ded303b7f34267e764f9ed909f6f0bcd4388b5502cfe','mr_bree','mr_bree','https://www.gog.com/game/mr_bree',0,'TawStudio Entertainment','TawStudio Entertainment','Action',0,0,0),(1207660303,'Fist Puncher',0,0,0,0,0,'11b70058af485da7173971d911524601fdd50246ce4c1f24ce17f4490c3c89e2','fe04da3d960d21dc387d94e2e416e9f609bcde4392883e71748051588cafbe17','fist_puncher','fist_puncher','https://www.gog.com/game/fist_puncher',0,'Team2Bit','Team2Bit','Action',0,0,0),(1207660323,'Broken Sword 5 - The Serpent\'s Curse',0,0,0,0,0,'710c2901bdf3d228a64e3c7e7bb9e62cc54e6c49c076573d7907f71129fe2441','0ca2f60d4f1ee22f190c3026a21f7dc44ab20a90089efc55ff44f69633b3e9e2','broken_sword_5_the_serpents_curse_episode_1','broken_sword_5_the_serpents_curse_episode_1','https://www.gog.com/game/broken_sword_5_the_serpents_curse',0,'Revolution Software','Revolution Software','Adventure',0,0,0),(1207660343,'SiN Gold',0,0,0,0,0,'ed6e1d793c7966cc24f528d2c835e5f7e4cbe6ffdf6b8906aa2eab89479177da','a9a4cbd15d30384a702ee6a605292084efe69b087855edca0567cf6d50b80080','sin_gold','sin_gold','https://www.gog.com/game/sin_gold',0,'Ritual Entertainment','Ritual Entertainment','Shooter',0,0,0),(1207660353,'Trine 2: Complete Story',0,0,0,0,0,'1a275c22a39d5c2799e8c7f948ee0a3570db279231fbc8c596c1d354e18602b4','07c385199386a60efbbaaea266868a28135dcaf2c050865db36f8226de8877eb','trine_2_complete_story','trine_2_complete_story','https://www.gog.com/game/trine_2_complete_story',0,'Frozenbyte','Frozenbyte','Action',0,0,0),(1207660363,'Zombie Shooter',0,0,0,0,0,'6f68f00bb1dc415f17a83abdfc63be9be886f66344a74cc3d2901340003f29f5','c8aef0aa21fb78b446d169707d0fdd05570e01b1520bfa5cdb865d29bd6a1421','zombie_shooter','zombie_shooter','https://www.gog.com/game/zombie_shooter',0,'Sigma Team','Sigma Team','Shooter',0,0,0),(1207660373,'Ballads of Reemus, The: When The Bed Bites',0,0,0,0,0,'17162616bc683a703e1ef4a82813f0d3124f907054cdf57c28874237d215f82b','e55a39224898c14986d1e4d9ef93f3391156a4617f09c1175b68a240c675f7ab','the_ballads_of_reemus_when_the_bed_bites','the_ballads_of_reemus_when_the_bed_bites','https://web.archive.org/web/20150928073158/http://www.gog.com:80/game/the_ballads_of_reemus_when_the_bed_bites',0,'ClickShake Games','Zeebarf','Adventure',0,0,0);
INSERT INTO `games` VALUES (1207660393,'Speedball 2 HD',0,0,0,0,0,'58d9621865834cebb2b29499b1ac4a55100832564c1e7887c0eb7ad9a5398741','133fe8b2057af908558d4725ec5412ccc9065b0f2021d006fe7cfec7a20e1ce5','speedball_2_hd','speedball_2_hd','https://www.gog.com/game/speedball_2_hd',0,' The Bitmap Brothers','Mastertronic','Sports',0,0,0),(1207660403,'Gomo',0,0,0,0,0,'17b6a65103a2fe76c133082b05f7c059c24b5a64edda26c88e30b27b72d7b0f6','4e3ec22ba63c44e0247518dd806cfcd0eb82cbd1ef81f609b75c175c94ff16c4','gomo','gomo','https://www.gog.com/game/gomo',0,'Fishcow Studio','Daedalic Entertainment','Adventure',0,0,0),(1207660413,'Shadowrun Returns',0,0,0,0,0,'6c35ecb988f57725cc0f385acf860241082da16eda9fab66115f4da883dae3d1','a6ee88aed8f046df9993b96a6aec9d1d48e9bbada856c994700a8a4f28172e60','shadowrun_returns','shadowrun_returns','https://www.gog.com/game/shadowrun_returns',0,'Harebrained Schemes','Paradox Interactive','Role-playing',0,0,0),(1207660423,'Theme Park',0,0,0,0,0,'589e922d519d450f5fa876426dcc93a5727d23b92acd353ec63a52a89db233af','f4a715ef18b11a4aa4c2c48daf113b1814ee4d86c737e4af74bfbb7803d08b5e','theme_park','theme_park','https://www.gog.com/game/theme_park',0,'Bullfrog Productions','Electronic Arts','Simulation',0,0,0),(1207660433,'Teslagrad',0,0,0,0,0,'6d458f3325383c56dc82d5556efef1c2fba05afb6fd816f7a2c508501bb58697','215cbd6db77d14f758e9d7040e8ce633993ee88839c57fbbe2252750a7663f43','teslagrad','teslagrad','https://www.gog.com/game/teslagrad',0,'Rain Games','Rain Games','Action',0,0,0),(1207660463,'Sid Meier\'s Covert Action',0,0,0,0,0,'c175ef241058581f41a0c5bdb1372cd169909d3aac6870fa4795612ac09cbce0','c4a9026ab62544c14899cfd20faddff9e2ab2f6bce1156200f7c044da0cca952','sid_meiers_covert_action','sid_meiers_covert_action','https://www.gog.com/game/sid_meiers_covert_action',0,'MicroProse','Retroism','Simulation',0,0,0),(1207660473,'SpellForce 2: Demons Of The Past',0,0,0,0,0,'92f04a6686f70e63fc2ef2c7967dae73210a2f733aa8a4c024308b8fed3a4d3a','c3b87b7aee2c68810313d46c1ef75e1adef0c55b8260af09e5b870ba8e26f213','spellforce_2_demons_of_the_past','spellforce_2_demons_of_the_past','https://www.gog.com/game/spellforce_2_demons_of_the_past',0,'THQ Nordic GmbH','THQ Nordic GmbH','Strategy',0,0,0),(1207660483,'Banner Saga',0,0,0,0,0,'4a859fbfed259c499317f1f13b9666abac37b01dcfb752fc81bb484f26ed0af2','7450531eb36ffabc522793ff115a207f66d4bec20047ff20668152a7938046d0','the_banner_saga','the_banner_saga','https://www.gog.com/game/the_banner_saga',0,'Stoic','Versus Evil','Strategy',0,0,0),(1207660493,'Blackguards Special Edition',0,0,0,0,0,'6f6ee6eb2aff2e15778aeefadd352cd19e860abe47a696c8cb9a9918bbb311b6','4f3454e5ea27a639dd3544425ce0ec82aab1619a51b5fb77e39d0a1c8c66a4cc','blackguards_special_edition','blackguards_special_edition','https://www.gog.com/game/blackguards_special_edition',0,'Daedalic Entertainment','Daedalic Entertainment','Role-playing',0,0,0),(1207660503,'Zombie Shooter 2',0,0,0,0,0,'2da63ea684d7ee47d30d4f32434eef85ab0db1e9046d428aed261fd074bb2b9c','005d93137f46182ccab6089e881637673cbda5d6f1336d5fe3699af21cc113a0','zombie_shooter_2','zombie_shooter_2','https://www.gog.com/game/zombie_shooter_2',0,'Sigma Team','Sigma Team','Shooter',0,0,0),(1207660523,'FlatOut 2',0,0,0,0,0,'9d6a9522550d2b2e7c73d883fb8cfd73473d5f7d41278e0455958a156307bdac','53c3b8b195580cb94463fc6068138d64bd102b04aa2a449c0be077ad8ac8b748','flatout_2','flatout_2','https://www.gog.com/game/flatout_2',0,'Bugbear Entertainment','Strategy First','Racing',0,0,0),(1207660533,'Deadlock: Planetary Conquest',0,0,0,0,0,'f04369b9e61a31d6f05691c07c0a8e686778ec309cb08d755436dcfe97781d48','b7085135b9cdeec864c51d34dd86f72ea53f148df5e02851ca8521fbaeb601f3','deadlock_planetary_conquest','deadlock_planetary_conquest','https://www.gog.com/game/deadlock_planetary_conquest',0,'Accolade','Retroism','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207660543,'Deadlock 2: Shrine Wars',0,0,0,0,0,'5f5eba4ea3c26f48474f112c9a349b60084c9a5e07855db964b8fb2be317058c','9f221724e4c96d54913756db9792a26cc7b1d5426bf8d30b33996b1661bed18c','deadlock_2_shrine_wars','deadlock_2_shrine_wars','https://www.gog.com/game/deadlock_2_shrine_wars',0,'Cyberlore Studios','Retroism','Strategy',0,0,0),(1207660553,'Octodad: Dadliest Catch',0,0,0,0,0,'7844c3b0297ff7830a524c2b278e99ec50baec179dd278890afe924efa180fe8','59c1240ac47ff23313205e86cda4d2fbdba54ce0bea6020c1b039142015fcd1b','octodad_dadliest_catch','octodad_dadliest_catch','https://www.gog.com/game/octodad_dadliest_catch',0,'Young Horses','Young Horses','Adventure',0,0,0),(1207660563,'Risk of Rain',0,0,0,0,0,'8635618289182b5b5f05d49f4a23bbc782aef19c9f4aad13c68de4b9ba9bd686','d1b54ab18006e4e8accdc75262eae126afccf5dbb0f30b7c9c5d7bce7f24cfc9','risk_of_rain','risk_of_rain','https://www.gog.com/game/risk_of_rain',0,'Hopoo Games','Chucklefish','Action',0,0,0),(1207660573,'S.T.A.L.K.E.R.: Shadow of Chernobyl',0,0,0,0,0,'384064881c0c18cbd2b7ebc076c0d905f0a6b5c17e6c37814cc52287e1cc46c3','9b12040f2c46cd8b5b1935ec22b4f3a835c18944927d6512253eb892c590d06a','stalker_shadow_of_chernobyl','stalker_shadow_of_chernobyl','https://www.gog.com/game/stalker_shadow_of_chernobyl',0,'GSC Game World','GSC Game World','Shooter',0,0,0),(1207660583,'S.T.A.L.K.E.R.: Call of Pripyat',0,0,0,0,0,'34fb4652664cd6633a74fa2037d1d61d3833b45fd6ac34dfa6296dd62ae0053d','31dff32ca198130bb6f90f537d29cf23df92430556f6c46298d17b3d191b119d','stalker_call_of_pripyat','stalker_call_of_pripyat','https://www.gog.com/game/stalker_call_of_pripyat',0,'GSC Game World','GSC Game World','Shooter',0,0,0),(1207660593,'Depths of Peril',0,0,0,0,0,'16aa324aeb2473869b26b05bc9af5b92dce75190b6306954773c9a8f7d1ea82b','9bb2148aa0ff43c59ba49783130c4cd406e00b9d48e5c30d44e92c4e75114a7f','depths_of_peril','depths_of_peril','https://www.gog.com/game/depths_of_peril',0,'Soldak Entertainment','Soldak Entertainment','Action',0,0,0),(1207660603,'S.T.A.L.K.E.R.: Clear Sky',0,0,0,0,0,'f5554c0ae3da78912a982c981c410498cf9a207a19ee132feb8c53ec258c2e4e','db4c84faf1f7ad50eafaccbd38a6942db7513b5b4c4b95bd7126fc87bd473c93','stalker_clear_sky','stalker_clear_sky','https://www.gog.com/game/stalker_clear_sky',0,'GSC Game World','GSC Game World','Shooter',0,0,0),(1207660613,'Red Faction 2',0,0,0,0,0,'72a966f3a438e77d80df4a9f4721c6db5ffe3da20d5c02d7e21b737c6773b865','c8361e9bb685641aed6aea98a30d097a5009ededf21999083dd4f85d206c80a8','red_faction_2','red_faction_2','https://www.gog.com/game/red_faction_2',0,'Volition','THQ Nordic GmbH','Shooter',0,0,0),(1207660623,'Red Faction',0,0,0,0,0,'5f471e5cb59199254a41609ac279ca45f51d1dfeb0cd1e9ac5e69f7171dbb177','12db8df66958f27b29f6976e8a2e514f4e7c2aeca1b3a680933d4a9f5e79b259','red_faction','red_faction','https://www.gog.com/game/red_faction',0,'Volition','THQ Nordic GmbH','Shooter',0,0,0),(1207660633,'Full Spectrum Warrior',0,0,0,0,0,'69211e26804a4a267d6b8d889547a9bad149420504a3b1184e1ae78239a1a091','f29c84af2b530287c9368066f4fa19c08c7f4f77f4f4435f24da84efc8ae7435','full_spectrum_warrior','full_spectrum_warrior','https://www.gog.com/game/full_spectrum_warrior',0,'Pandemic Studios','THQ Nordic GmbH','Simulation',0,0,0),(1207660643,'Full Spectrum Warrior: Ten Hammers',0,0,0,0,0,'123db4b6ad9879a7d2d546c40747d1f9948932577cbe3a1ab12b6e550a8d3cdc','bc157c958f507e24ece60cf85e53bda7ccc84b6a8f882f75d11b10d177d48c0d','full_spectrum_warrior_ten_hammers','full_spectrum_warrior_ten_hammers','https://www.gog.com/game/full_spectrum_warrior_ten_hammers',0,'Pandemic Studios','THQ Nordic GmbH','Simulation',0,0,0),(1207660653,'Kentucky Route Zero Season Pass',0,0,0,0,0,'d8d98bf6fdacf87668ff33adc2294daa1bb2062fbfd618ef544c3ff9b74d5862','1b9b87a977983c216d436fb21c482435dd5cd637894a7a41017bc4f177af6b12','kentucky_route_zero_season_pass','kentucky_route_zero_season_pass','https://www.gog.com/game/kentucky_route_zero_season_pass',0,'Cardboard Computer','Cardboard Computer','Adventure',0,0,0);
INSERT INTO `games` VALUES (1207660673,'Jazzpunk: Director\'s Cut ',0,0,0,0,0,'7d059e45c8059b87e3fbd98be3e899918df0b6b362977a57e4f40569c8fa6cd6','b11bf3118172cc80ab3ed74697e4ebe8927a41f0beb37356f69c1b1cd6e7f261','jazzpunk','jazzpunk','https://www.gog.com/game/jazzpunk',0,'Necrophone Games','Necrophone Games','Adventure',0,0,0),(1207660683,'Eschalon: Book III',0,0,0,0,0,'9b1f917ec513339ba288f8a28fb135b950a2673edfe7c83a15d8887247155537','63b4822b909b25f80c7dd235efd05f86e83bf862bc4ec859237482c164d1bf13','eschalon_book_iii','eschalon_book_iii','https://www.gog.com/game/eschalon_book_iii',0,'Basilisk Games','Basilisk Games','Role-playing',0,0,0),(1207660693,'Doomdark\'s Revenge',0,0,0,0,0,'43b050c658e5c7c9757b15eee9b94f5800c27561aebd030e6a01e5b99ee83570','71303e7183daa70168b232086387b484b80c11bdd94ba217e434273d5c50eb6b','doomdarks_revenge','doomdarks_revenge','https://www.gog.com/game/doomdarks_revenge',0,'Mike Singleton and Chris Wild','Chilli Hugger Software','Role-playing',0,0,0),(1207660703,'Dark Fall 3: Lost Souls',0,0,0,0,0,'332e2747773dbbe1fe4037218e7610ed0583db5ee8fab835335757222fe8d904','b01e6016ddd5c30e8d4171562b1d5ae05841e4f7ce0bcd864916cb86c5ef720f','dark_fall_3_lost_souls','dark_fall_3_lost_souls','https://www.gog.com/game/dark_fall_3_lost_souls',0,'Darkling Room','Iceberg Interactive','Adventure',0,0,0),(1207660713,'Stick it to the Man!',0,0,0,0,0,'a649a4bc1019f59d9a1055c50967f1a9df1dc9efd04139ca00a215212396686e','c28f6f19df20fa848a03485447a45c7ecdb0b45f745920ab3e9f9e80dd2d4b69','stick_it_to_the_man','stick_it_to_the_man','https://www.gog.com/game/stick_it_to_the_man',0,'Zoink!','Ripstone','Action',0,0,0),(1207660723,'Downfall',0,0,0,0,0,'6096dcb77fb3d4bf9c778d970aa4a6ec65652724c792b15e5359d168bf5fafd0','1599749fd18fb79a276512e663f6af2c9626872e79cade17843a754feeaea4f5','downfall','downfall','https://www.gog.com/game/downfall_redux',0,'Harvester Games','Screen 7','Adventure',0,0,0),(1207660733,'SteamWorld Dig',0,0,0,0,0,'e5b50f88863f509aabea3a06ebe7a66b026b4d634291c205005c0b3c448500ec','04197e728a5468bb5f6a3c78f0d24814502fb72e1c4442e9c15cb20ea5677704','steamworld_dig','steamworld_dig','https://www.gog.com/game/steamworld_dig',0,'Image and Form','Image and Form','Action',0,0,0),(1207660743,'The Guild 2',0,0,0,0,0,'d94a5782c7b3f589a727da1730f576860ea21ef84c0313a85ff3b7e80c14b9c5','ecfece818b7ac42419604d755f7c55bf875bab59d4f1df1ecc761b474f2ff87f','the_guild_2','the_guild_2','https://www.gog.com/game/the_guild_2',0,'4HEAD Studios','THQ Nordic GmbH','Simulation',0,0,0),(1207660753,'The Guild 2: Pirates of the European Seas',0,0,0,0,0,'5d8456e8cfd6676e8d940ace20a9d21d2697181e3ae07e1a19384e0767d87aa9','33de7aaea1c4c31f2addeed2fade8b0111f2e499f61fc5217e7774a68409cab5','the_guild_2_pirates_of_the_european_seas','the_guild_2_pirates_of_the_european_seas','https://www.gog.com/game/the_guild_2_pirates_of_the_european_seas',0,'4HEAD Studios','THQ Nordic GmbH','Simulation',0,0,0),(1207660773,'7th Legion',0,0,0,0,0,'ceaf34ec612e8344d27878c0c1792389be2303bb22797b7efaaed6848d696e79','f9c802e33d6e51cf39061a1d44240be35320eaea564f49b1871ee80cbd313c46','7th_legion','7th_legion','https://www.gog.com/game/7th_legion',0,'Epic Games, Vision Software','Retroism','Strategy',0,0,0),(1207660783,'Banished',0,0,0,0,0,'8e305b37ccbec02dd0301e89c6ff63fd8e0e16d634ac38d2c08a695952675bf4','48fabd1668628a441826c0aa85a0a73fb983cc0513c1489c11c922f30f290567','banished','banished','https://www.gog.com/game/banished',0,'Shining Rock Software','Shining Rock Software','Strategy',0,0,0),(1207660793,'Super Puzzle Platformer Deluxe',0,0,0,0,0,'3c09f242d93928dd5845838e224257d71abb458a7669f1a41787871445fffa7a','ca8c826bdc80426db59d6aa05347f49989033d2bc07ee571f65f6dd61143456f','super_puzzle_platformer_deluxe','super_puzzle_platformer_deluxe','https://www.gog.com/game/super_puzzle_platformer_deluxe',0,'Andrew Morrish','Andrew Morrish','Action',0,0,0);
INSERT INTO `games` VALUES (1207660823,'Summoner',0,0,0,0,0,'3308cc8dd414a817c50f54d6de89b213afc9562e0665685379fa88edb2d49fa4','61c768b54bb06ac71bc5d08fa529ea0ff73ff983aaaa6a97ce181203c2926eab','summoner','summoner','https://www.gog.com/game/summoner',0,'Volition','THQ Nordic GmbH','Action',0,0,0),(1207660833,'Fractured Soul',0,0,0,0,0,'70c94c1f03cf816a7cebef8b75560cc04b220c01e45976b2a49486ec67b9dc73','d0b2e6f85279b41ff85cf1d02a2ce05f697840d3f274fb0bb109ca5a92982173','fractured_soul','fractured_soul','https://www.gog.com/game/fractured_soul',0,'Endgame Studios','Endgame Studios','Action',0,0,0),(1207660853,'Hitman 3: Contracts',0,0,0,0,0,'f4bd6ebdf1b3f3a6a298d0ef3cd12b476eb1a5961c4b54e57f988ecdbc7fbdf9','1245c29334013309aa7528d71f93182d4133164385c2ff2ddda464f198baf1f1','hitman_contracts','hitman_contracts','https://www.gog.com/game/hitman_contracts',0,'IO Interactive','Square Enix','Action',0,0,0),(1207660863,'Tower of Guns',0,0,0,0,0,'d545772984d678e42f5d4b3869ce3fdc108c8beee178dbabf824b15d503d8222','c5f49679c53ab80da07b483c826ea54a64c1ba573ff46a7e057fb93eca5bb770','tower_of_guns','tower_of_guns','https://www.gog.com/game/tower_of_guns',0,'Terrible Posture Games','Terrible Posture Games','Shooter',0,0,0),(1207660893,'Age of Wonders 3',0,0,0,0,0,'0eced878a0ec3f783e00f3cfc1d68d02e481a0d9b10161e7b1bc25fc7d56eb88','590864430354ab62aa902ec96659c990ec194abe8875918b8b6b025e17c3e45b','age_of_wonders_3','age_of_wonders_3','https://www.gog.com/game/age_of_wonders_3',0,'Triumph Studios','Paradox Interactive','Strategy',0,0,0),(1207660913,'Shadowrun: Dragonfall - Director\'s Cut',0,0,0,0,0,'3151b8deaeff59ad905af2bf37cfca592d615cd1615fbe48d893ac6f797140ad','ffe7b1ce6b01a8a97d6d343540a469062529416bd88935a0d8f14463ee1b3166','shadowrun_dragonfall_directors_cut','shadowrun_dragonfall_directors_cut','https://www.gog.com/game/shadowrun_dragonfall_directors_cut',0,'Harebrained Schemes','Paradox Interactive','Role-playing',0,0,0),(1207660923,'Alone in the Dark 1',0,0,0,0,0,'cc3623efccf2d4be01bb3364b23bb8710a4bdc323710ef72af6d7c1d72077b6c','de0e1abebac846bfe06f65a5fcd7069e0b6c7e0710ec6c9015102465c00b98de','alone_in_the_dark_1','alone_in_the_dark_1','https://www.gog.com/game/alone_in_the_dark',0,'Infogrames Europe SA','Atari','Action',0,0,0),(1207660933,'Tex Murphy 1 - Mean Streets',0,0,0,0,0,'fe741a74845706795c50702628687ef994dc285d2bac736c02b9b96970c442b9','17eecc945f7b2ec55030a2befafd31ee89912301d311af22554917cbe2cf8aba','tex_murphy_1_mean_streets','tex_murphy_1_mean_streets','https://www.gog.com/game/tex_murphy_1_2',0,'Access Software','Wordplay LLC','Adventure',0,0,0),(1207660943,'Tex Murphy 2 - Martian Memorandum',0,0,0,0,0,'724f2d428145453d3d705ab4a206e23045d004a53548c531a3e2b6cb8cf8f226','1f9fdc3bf2f2ee3e029e8d84c6c0b203acf06c231ed6b468d69e88f40bdc7b64','tex_murphy_2_martian_memorandum','tex_murphy_2_martian_memorandum','https://www.gog.com/game/tex_murphy_1_2',0,'Access Software','Wordplay LLC','Adventure',0,0,0),(1207660953,'Betrayal at Krondor',0,0,0,0,0,'3007b1ba0ca58ad7f5e469c8808247b83fc7a1c4a879fbbc699e1567596b70ec','482581618e7083ce69c81ec4a85ae2dd5952b78d952be0502c2d8c19f64aceec','betrayal_at_krondor_copy3','betrayal_at_krondor_copy3','https://www.gog.com/game/betrayal_at_krondor',0,'Dynamix','Activision','Role-playing',0,0,0),(1207660963,'Alone in the Dark 2',0,0,0,0,0,'fbeb7abd02b2582026d94dd029d70a915e0894fdf636e8fd7a83adbf754d4a39','341edd211e9be9e82ddfed1ff04faf9a9e3b8c421dfcf9e6d877f6c1c8b4740e','alone_in_the_dark_2','alone_in_the_dark_2','https://www.gog.com/game/alone_in_the_dark',0,'Infogrames Europe SA','Atari','Action',0,0,0),(1207660973,'Alone in the Dark 3',0,0,0,0,0,'92a2cbda2d08f3d411c65a22173d8dbe261aa0a69d70f6eeb3493884a0879556','df13b0da65f75765f46a77e224ea639eb2be9da907998618b49fd2434a5c882e','alone_in_the_dark_3','alone_in_the_dark_3','https://www.gog.com/game/alone_in_the_dark',0,'Infogrames Europe SA','Atari','Action',0,0,0);
INSERT INTO `games` VALUES (1207660983,'Betrayal in Antara',0,0,0,0,0,'bcbc7e10e374cc99fc02889f487f5e8f2312608f7594d5b58c39c9470aa50866','3baf6b4b8a32c2e9330ab518bcd5be09ee12a988d00913bce54d2a9fb0cca48b','betrayal_in_antara','betrayal_in_antara','https://www.gog.com/game/betrayal_at_krondor',0,'Dynamix','Activision','Role-playing',0,0,0),(1207660993,'Battle Isle',0,0,0,0,0,'509a37fb85445c3ead461e20c17d4f8391317eef2c603c71bc5295104b8730c9','cc1a16363bddc203ab1d4530808acdc528c6255d1409e792937ff2066eb73543','battle_isle','battle_isle','https://www.gog.com/game/battle_isle_platinum',0,'Blue Byte Studio','Ubisoft','Strategy',0,0,0),(1207661003,'Interstate \'76',0,0,0,0,0,'c1f5c18674c62b200fdd910148164e184f0a601e757c50f6d9e42adbb3565841','c85cd635a8238cec7bb7d78da74db9ee0f6425d5794e644bd0e51a651a69447a','interstate_76','interstate_76','https://www.gog.com/game/interstate76',0,'Activision','Activision','Racing',0,0,0),(1207661023,'Interstate \'76 Nitro Pack',0,0,0,0,0,'e1ad4255dd131400efe422579599df4206ad387f485580e0029b467d3ac372ce','2964c347e383d4eeecf382b9695c943436a0765c5a20714f97c0977e15ee1d7f','interstate_76_nitro_pack','interstate_76_nitro_pack','https://www.gog.com/game/interstate76',0,'Activision','Activision','Racing',0,0,0),(1207661043,'King\'s Quest 7 - The Princeless Bride',0,0,0,0,0,'a0092f75f3bbdb9d81cef546fcb16d96f7676c6ebb2dfd26563e464b93aefb7e','104f7d4d044131ca4aa2e87500b62473a55e7c2ca4362278bf69d3a766b3dcc2','kings_quest_7_the_princeless_bride','kings_quest_7_the_princeless_bride','https://www.gog.com/game/kings_quest_7_8',0,'Sierra','Activision','Adventure',0,0,0),(1207661053,'King\'s Quest 8 - Mask of Eternity',0,0,0,0,0,'362bf21fcb1a2c85599b9298024ac73d6d12aef02350f9c2822aa7810fea5146','d10b756c566d093efe843037249dd26323556e889b0d6b08c941a74a289c0b23','kings_quest_8_mask_of_eternity','kings_quest_8_mask_of_eternity','https://www.gog.com/game/kings_quest_7_8',0,'Sierra','Activision','Adventure',0,0,0),(1207661063,'Historyline 1914-1918',0,0,0,0,0,'328c67c3a4ffb38e30d3d5affa6a08aa03ac7bc801cc4558da07e322f7daf876','661b63ba4f7d975ca3c2f96be9ec58d43e9e5225f0d6a8d8f7a8dca3eaa216b0','historyline_1914-1918','historyline_19141918','https://www.gog.com/game/battle_isle_platinum',0,'Blue Byte Studio','Ubisoft','Strategy',0,0,0),(1207661073,'Battle Isle 2',0,0,0,0,0,'9b6668d700fd10e13858194b326ed6aba6773a9f343fa7343b121b0cd3940267','02586186c484f3c45310781b9296f451573eefafed9ea28d73b5c9e35f505bcb','battle_isle_2','battle_isle_2','https://www.gog.com/game/battle_isle_platinum',0,'Blue Byte Studio','Ubisoft','Strategy',0,0,0),(1207661083,'King\'s Quest',0,0,0,0,0,'f3ce159942b34e01c8a4bc7c79f2af8d6ed06eb791f78a5b6bfce50de1ba2454','62708a7bdb12e6c85494b7d0e38a92981533084c4cb5cb208a38b11f4fff80ef','kings_quest','kings_quest','https://www.gog.com/game/kings_quest_1_2_3',0,'Sierra','Activision','Adventure',0,0,0),(1207661103,'Battle Isle 3',0,0,0,0,0,'1f548588147f46197a74d1f75dd7abc5f73fc47b28866b46b8487e8fcebf1423','994912669a163f61abe9a3e03fe3e5bc5b9bf35c3fec2279df9bddb1fdabb321','battle_isle_3','battle_isle_3','https://www.gog.com/game/battle_isle_platinum',0,'Blue Byte Studio','Ubisoft','Strategy',0,0,0),(1207661113,'King\'s Quest 2 - Romancing the Throne',0,0,0,0,0,'43dd80fafa84424c3a221fcca358ef16f60e56f3184648e536cc643d0797684b','4128cd2e333400b18e156145e8eb30ac2387866d675c851c7eb033e0241bbbd6','kings_quest_2_romancing_the_throne','kings_quest_2_romancing_the_throne','https://www.gog.com/game/kings_quest_1_2_3',0,'Sierra','Activision','Adventure',0,0,0),(1207661123,'Incubation',0,0,0,0,0,'06d2a8ae56069e3b8008d7d8a9c8a0bd1cac508b1ea0dbdb1b3fc1c869ef7b1a','d27752e51cfbf666f3044ee3acf02c5dad211301cd0cfbee37b764225113182c','incubation','incubation','https://www.gog.com/game/battle_isle_platinum',0,'Blue Byte Studio','Ubisoft','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207661133,'King\'s Quest 3 - To Heir is Human',0,0,0,0,0,'59d8b7cfca371fc3bd5db7e485a185ab49ee2f94877b87485be2ac023c23934c','b71171f5cf85736234adfa7cf850f77d89fc22042e046a1480833d378048f4db','kings_quest_3_to_heir_is_human','kings_quest_3_to_heir_is_human','https://www.gog.com/game/kings_quest_1_2_3',0,'Sierra','Activision','Adventure',0,0,0),(1207661143,'Heroes of Might and Magic V + Hammers of Fate',0,0,0,0,0,'88c0e625b10b739743ea9f2ce1b05b087a677b2e7b68d6dcace81839a80ff79c','8e32f9785a9d8c48aadc35005d17a3d2914c24993d0d838f60ffd1f1c30c7645','heroes_of_might_and_magic_v','heroes_of_might_and_magic_v','https://www.gog.com/game/heroes_of_might_and_magic_5_bundle',0,'Nival Interactive','Ubisoft','Strategy',0,0,0),(1207661153,'King\'s Quest 4 - The Perils of Rosella',0,0,0,0,0,'8405dcd6f768755d49e201565b49c1414bc0afd701157b7046ac872ca9b23b62','e436c920c09ae1e8b68281dc82209ead768dc17571fcf3132ea7e527103443f9','kings_quest_4_the_perils_of_rosella','kings_quest_4_the_perils_of_rosella','https://www.gog.com/game/kings_quest_4_5_6',0,'Sierra','Activision','Adventure',0,0,0),(1207661163,'King\'s Quest 5 - Absence Makes the Heart Go Yonder',0,0,0,0,0,'895993278881822239b4afd5f174eb92561ec257a19adde79f1f64e69369b008','b476bf8dd9e280ed5a8efd6a3e1ff93992e0cbc0af7ba2746352d41b5c54c1ed','kings_quest_5_absence_makes_the_heart_go_yonder','kings_quest_5_absence_makes_the_heart_go_yonder','https://www.gog.com/game/kings_quest_4_5_6',0,'Sierra','Activision','Adventure',0,0,0),(1207661173,'King\'s Quest 6 - Heir Today, Gone Tomorrow',0,0,0,0,0,'653aaa37dbe57f124a0687ecd130ee9e9c22af5b35ba01a67d1748f23313ca1e','9bd53036c676d33794a647a6b01ed6e28b1c6aaf1dd8eb652655db6e0ccfc919','kings_quest_6_heir_today_gone_tomorrow','kings_quest_6_heir_today_gone_tomorrow','https://www.gog.com/game/kings_quest_4_5_6',0,'Sierra','Activision','Adventure',0,0,0),(1207661193,'Heroes of Might and Magic V - Tribes of the East',0,0,0,0,0,'e5dd3f9301aaa871b6d3d074d61a33d5299356ffe81af4a6863aaf997b7e2da1','136d5bea226e56066b16e54f4d2b2ffc64de6b110513df8677a5d6a335c4b68d','heroes_of_might_and_magic_v_tribes_of_the_east','heroes_of_might_and_magic_v_tribes_of_the_east','https://www.gog.com/game/heroes_of_might_and_magic_5_bundle',0,'Nival Interactive','Ubisoft','Strategy',0,0,0),(1207661203,'Might and Magic 1 - Book I',0,0,0,0,0,'6b89be9a2e91a7d18db0e58d008f15a6e988e4ef0eaeca53cd15c6d487972545','a669b268fffc8a53bbd06197c7d552f336e3adcd276e74c6de7ac32431dccf47','might_and_magic_1_book_i','might_and_magic_1_book_i','https://www.gog.com/game/might_and_magic_6_limited_edition',0,'New World Computing, Inc.','Ubisoft','Role-playing',0,0,0),(1207661213,'Might and Magic 2 - Gates to Another World',0,0,0,0,0,'fe16d24a029b7685a29da8c1bcdc462f10b8927dc598b474ee142ef05e7e5884','7bcbbf1c88acc7484f7dc8d0eb3b216f8549820c4a77a0e2f7147684cdaf46c5','might_and_magic_2_gates_to_another_world','might_and_magic_2_gates_to_another_world','https://www.gog.com/game/might_and_magic_6_limited_edition',0,'New World Computing, Inc.','Ubisoft','Role-playing',0,0,0),(1207661223,'Might and Magic 3 - Isles of Terra',0,0,0,0,0,'2a08ab8ad93deb8b6905fbf09603bfdf765771547be4d67aa964ab8ae39fc55b','dade2c1674b5ef5cd4118c706ab6848ed45fc1a8e47f03a53891484f40a2b20f','might_and_magic_3_isles_of_terra','might_and_magic_3_isles_of_terra','https://www.gog.com/game/might_and_magic_6_limited_edition',0,'New World Computing, Inc.','Ubisoft','Role-playing',0,0,0),(1207661233,'Might and Magic 4-5 - World of Xeen',0,0,0,0,0,'9a4faff3c6191a3bcbd246f2a62db5fdca98dea7ce9fe250a75fcf81f45f656f','57fa1a57646cef703d526a37be5a13a13b1ee4895a013af5f27f1faf88065287','might_and_magic_45_world_of_xeen','might_and_magic_45_world_of_xeen','https://www.gog.com/game/might_and_magic_6_limited_edition',0,'New World Computing, Inc.','Ubisoft','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1207661243,'Might and Magic - Swords of Xeen',0,0,0,0,0,'5585e488c51bf88391de04db1c61d5fe359dab630513bd86ca8c54e8701a4e85','0142a438eaf150208ac58f7f1e767bf42474c23a990ea0d3baa7595e1d396b30','might_and_magic_swords_of_xeen','might_and_magic_swords_of_xeen','https://www.gog.com/game/might_and_magic_6_limited_edition',0,'New World Computing, Inc.','Ubisoft','Role-playing',0,0,0),(1207661253,'Might and Magic 6 - The Mandate of Heaven',0,0,0,0,0,'452cdf193c8cd6a7e2ae5ce80e7ca3bd03b78899bee1b5e0e3351bdb75e89c42','531dbd4cf2f33642e9890a2de4effcc04df2c37ab270e992fc2e847ccec03b1d','might_and_magic_6_the_mandate_of_heaven','might_and_magic_6_the_mandate_of_heaven','https://www.gog.com/game/might_and_magic_6_limited_edition',0,'New World Computing, Inc.','Ubisoft','Role-playing',0,0,0),(1207661263,'Police Quest - In Pursuit of The Death Angel',0,0,0,0,0,'f326ad14dae1dc83896b2b50451345904d3f61b5312a8fe7cb3470248e9cf8fd','9986010074bd513d2a008e0ffcc5ae255b32043395ab246ed63033e30c4bd507','police_quest_in_pursuit_of_the_death_angel','police_quest_in_pursuit_of_the_death_angel','https://www.gog.com/game/police_quest_1_2_3_4',0,'Sierra','Activision','Simulation',0,0,0),(1207661283,'Police Quest 2 - Vengeance',0,0,0,0,0,'01952d9d2f43d647b04d824619c10d61c1abb1fba58f7326fccc603a86cfe39e','8b0dc6f172e92130d65a5dd2a728a38ae6f9326a8bf12f35cf2acffddc3cde6f','police_quest_2_vengeance','police_quest_2_vengeance','https://www.gog.com/game/police_quest_1_2_3_4',0,'Sierra','Activision','Simulation',0,0,0),(1207661293,'Police Quest 3 - The Kindred',0,0,0,0,0,'49c265b83e6736f5fcf41f89008017d536dc8b486757691c6c394d39133d0a88','ffeca25f3284d273084991c6bc240dbeb98aeb7612fefe3e4a185255464ad257','police_quest_3_the_kindred','police_quest_3_the_kindred','https://www.gog.com/game/police_quest_1_2_3_4',0,'Sierra','Activision','Simulation',0,0,0),(1207661303,'Police Quest 4 - Open Season',0,0,0,0,0,'06d13e23866764a9b96f7e464b0a7cb857050d31a81c0f393135f1fe15197b89','62319150bbf37bfc7a37779028904411a74d03129577b3bbd2c8eff6c52dba2c','police_quest_4_open_season','police_quest_4_open_season','https://www.gog.com/game/police_quest_1_2_3_4',0,'Sierra','Activision','Simulation',0,0,0),(1207661313,'Quest for Glory (includes VGA Remake)',0,0,0,0,0,'0cdd0a60d0ac3840e936ea06c8005d54c8bf8fa105db1ec7590178c3456971f4','c4fdae431ea8295cd12dd580d54aa127014299a3b69cdce09e5fce9f2b878ab0','quest_for_glory_vga_remake','quest_for_glory_vga_remake','https://www.gog.com/game/quest_for_glory',0,'Sierra','Activision','Adventure',0,0,0),(1207661323,'Quest for Glory 2',0,0,0,0,0,'0356c6db5863af0ac51ad3fd7157384aa035d3241a543e1e9e72a2c215212a74','30fa46d3120d0ae1152a489143c9685327ddb3ea1e93b1dffaa1876745323617','quest_for_glory_2','quest_for_glory_2','https://www.gog.com/game/quest_for_glory',0,'Sierra','Activision','Adventure',0,0,0),(1207661333,'1954 Alcatraz',0,0,0,0,0,'005222a9a49b3b47993b4e73f9b4a4c1d8306039a6ea205a437b23b2e73506d0','22bfdddfdd3020a8aba777405e0495f98181aa80608dafd36d45978380677353','1954_alcatraz','1954_alcatraz','https://www.gog.com/game/1954_alcatraz',0,'Irresponsible Games and Daedalic Entertainment','Daedalic Entertainment','Adventure',0,0,0),(1207661343,'Ether One Redux',0,0,0,0,0,'26bc90ed28a93ad9c839ca2748fe48405358baa4eb8cd816a85875a109fd89d9','35a5defa309819833a11565a04e80fd6a05c87319a671ebd5fc6b390a768ea6c','ether_one','ether_one','https://www.gog.com/game/ether_one',0,'White Paper Games','White Paper Games','Adventure',0,0,0),(1207661373,'Harvester',0,0,0,0,0,'51a3007dee12611681284e2e57e649c033a726caca7d73529b8fedba038bb663','6527405abae9b3e6888b0cbc9b6907f9a359140e7f427ec7f98df896220de3e4','harvester','harvester','https://www.gog.com/game/harvester',0,'DigiFX Interactive','Lee Jacobson','Adventure',0,0,0),(1207661383,'Quest for Glory 3',0,0,0,0,0,'2856f485a8d61a1c2b16bfec240acd0803fb1221ac3688f76f0de2b509cb67ba','61ee5374b2fc52c2a49ce0a8fb0207cee89bbcc18e62b96e5154299e6e54618a','quest_for_glory_3','quest_for_glory_3','https://www.gog.com/game/quest_for_glory',0,'Sierra','Activision','Adventure',0,0,0);
INSERT INTO `games` VALUES (1207661393,'Quest for Glory 4',0,0,0,0,0,'88725b0664c13dbc5f2ef003dfe25f3872865a71da07fd5ac30666fe29589705','5874b7a1a9ad02d79983a93f4e4ee31c81638ec21cde7d8648ab0aab221534c1','quest_for_glory_4','quest_for_glory_4','https://www.gog.com/game/quest_for_glory',0,'Sierra','Activision','Adventure',0,0,0),(1207661403,'Quest for Glory 5',0,0,0,0,0,'3cef405e9acc2c8177190b5a6203b5e8a9b42e663592877dc2ab1672c96dafca','f41f19d4b99e43dba30546151817c6f40ceec90c86f984124d9502be9798abb8','quest_for_glory_5','quest_for_glory_5','https://www.gog.com/game/quest_for_glory',0,'Sierra','Activision','Adventure',0,0,0),(1207661413,'Space Quest 1 - The Sarien Encounter',0,0,0,0,0,'8285bac38be8a6af9709d47c7d59a26eadaf1e8fb177d488464077c8395fdb62','912335c71556126c702cb74492ac2436640db9375f42eae03c1e321fa51dd157','space_quest_1_the_sarien_encounter','space_quest_1_the_sarien_encounter','https://www.gog.com/game/space_quest_1_2_3',0,'Sierra','Activision','Adventure',0,0,0),(1207661423,'Space Quest 2 - Vohaul\'s Revenge',0,0,0,0,0,'d447467210cabd0dc11c0789bd8657a6a13e64ceac9b49e76237c26cbcd15111','69d9cfacb46881984901b514e6011aca781ae3cac7298f93ac7aa8f01c7efa90','space_quest_2_vohauls_revenge','space_quest_2_vohauls_revenge','https://www.gog.com/game/space_quest_1_2_3',0,'Sierra','Activision','Adventure',0,0,0),(1207661433,'Space Quest 3 - The Pirates of Pestulon',0,0,0,0,0,'9b111bd7ff7500735634dd695cd7c750f46279a3d0b0160f39ac9c84b414a407','00cbfa2fcd3e82166f1d0917d08874773fbcf6dd7a7994e373ec66f9d8f05a59','space_quest_3_the_pirates_of_pestulon','space_quest_3_the_pirates_of_pestulon','https://www.gog.com/game/space_quest_1_2_3',0,'Sierra','Activision','Adventure',0,0,0),(1207661443,'Space Quest 4 - Roger Wilco and the Time Rippers',0,0,0,0,0,'a8b7bef5c1e9c5910a84f4c32ea6d139db8b734784c7e1357067a776fd7d624e','5542c47a664cb8c458edb3f85f5374e969d7b28723f336c08fc38cf0cb1eda19','space_quest_4_roger_wilco_and_the_time_rippers','space_quest_4_roger_wilco_and_the_time_rippers','https://www.gog.com/game/space_quest_4_5_6',0,'Sierra','Activision','Adventure',0,0,0),(1207661453,'Space Quest 5 - The Next Mutation',0,0,0,0,0,'52311fc70c1b52adf7185ba6211895c6f08422c005e4f057d7d6baa8b31da9ab','fae5b2dd0faf38d079704044085161a908b9aba62e3b983cdf95f9edcf8daece','space_quest_5_the_next_mutation','space_quest_5_the_next_mutation','https://www.gog.com/game/space_quest_4_5_6',0,'Sierra','Activision','Adventure',0,0,0),(1207661463,'Space Quest 6 - Roger Wilco in the Spinal Frontier',0,0,0,0,0,'7d6f2817c4573e64e85d5dd189f530336b4f438ba7ea26da2247c010f63b347b','2262565f4d5f5f7831b0c1ad705c41c4076f484f18a7f27c40e7294eb0413224','space_quest_6_roger_wilco_in_the_spinal_frontier','space_quest_6_roger_wilco_in_the_spinal_frontier','https://www.gog.com/game/space_quest_4_5_6',0,'Sierra','Activision','Adventure',0,0,0),(1207661473,'Police Quest - SWAT',0,0,0,0,0,'c1fabf0eb9ed8062b62297faa2897fefbfef087a34c23910d0b32081f8982b7f','0fb5c4a3bfb57c373f24c4f186d3101f1c6a9ad1520ba13fbf2a9306a07d8c21','police_quest_swat','police_quest_swat','https://www.gog.com/game/police_quest_swat_1_2',0,'Yosemite Entertainment','Activision','Simulation',0,0,0),(1207661483,'Police Quest - SWAT 2',0,0,0,0,0,'ef3262c9406513bb2c30e73bd874a6ea8e4a076a8ba3e9be47be3398c75a47cd','a92667baacca0af9cd7a82836d2a7867bcb51393a0e91696fa8dc009bca08b83','police_quest_swat_2','police_quest_swat_2','https://www.gog.com/game/police_quest_swat_1_2',0,'Yosemite Entertainment','Activision','Simulation',0,0,0),(1207661493,'Zork - The Great Underground Empire',0,0,0,0,0,'eb7a88bf380b8d50eb5f2cf8c63e6b506daeaca59928ad1735627d2290744665','6b7bf90f5a59efbed09c4e6216e63eec1e0d5f9934eb8f8ac9f53815b1aacd5e','zork_the_great_underground_empire','zork_the_great_underground_empire','https://www.gog.com/game/the_zork_anthology',0,'Infocom','Activision','Adventure',0,0,0);
INSERT INTO `games` VALUES (1207661503,'Zork II - The Wizard of Frobozz',0,0,0,0,0,'777340bc15ecda06443fc14c67ee3e2718ea0d2c568e3230d13d496754466c90','47a35e9158b6d2c6fb2d32f45fa72ccccc7c3ac2924d01789feba3e48433b30d','zork_ii_the_wizard_of_frobozz','zork_ii_the_wizard_of_frobozz','https://www.gog.com/game/the_zork_anthology',0,'Infocom','Activision','Adventure',0,0,0),(1207661513,'Zork III - The Dungeon Master',0,0,0,0,0,'b294f1ecc737754d2f920eaee0bca70e5e4bf09457570c1bf989171e88dfafe3','1714cf74165f426699d0e5932fde9194bea9cb3b5ef4d2eeac2c05660b0c4658','zork_iii_the_dungeon_master','zork_iii_the_dungeon_master','https://www.gog.com/game/the_zork_anthology',0,'Infocom','Activision','Adventure',0,0,0),(1207661523,'Zork Zero - The Revenge of Megaboz',0,0,0,0,0,'01039335187621a85fe00c74a5059b944b1f83d6c45860592937b37004975fe1','6103a63167a68dc1b64b5c849ee1f9e65711958d22cdbc706bf1bf00392feb2e','zork_zero_the_revenge_of_megaboz','zork_zero_the_revenge_of_megaboz','https://www.gog.com/game/the_zork_anthology',0,'Infocom','Activision','Adventure',0,0,0),(1207661533,'Beyond Zork - The Coconut of Quendor',0,0,0,0,0,'be2c5183c2515ab803c95fb212c875690b1f73e9d1395005bc699d672cebc0c1','c1626cfd2daf7b497e1a54fdf18eeaa001eceecc78b85a06f14bc87225a902a3','beyond_zork_the_coconut_of_quendor','beyond_zork_the_coconut_of_quendor','https://www.gog.com/game/the_zork_anthology',0,'Infocom','Activision','Adventure',0,0,0),(1207661543,'Planetfall',0,0,0,0,0,'bafb3439bf513d0144e6df87473343d6c9ed0cf097a852869ddb17c9074367e9','9125676d72584b9b844ae2db890225ece112f0862b57d1c143c79bedc4b3e60a','planetfall','planetfall','https://www.gog.com/game/the_zork_anthology',0,'Infocom','Activision','Adventure',0,0,0),(1207661553,'Dracula - The Resurrection',0,0,0,0,0,'93f9d4d72e6471a8495fa48e5fe3af32f4b2aa58dbab74a9937448b5f3db9103','9e77c193a9a8e813b544f79127dac1ab837a327b0fe5aa35bf949a7fbd72126e','dracula_the_resurrection','dracula_the_resurrection','https://www.gog.com/game/dracula_trilogy',0,'Anuman Interactive','Anuman Interactive','Adventure',0,0,0),(1207661563,'Dracula 2 - The Last Sanctuary',0,0,0,0,0,'310e00f311c0c3cfa04706c7de951ace441c230a292ec1bce640f9d7cb74e29a','a187d8ea8323086309f928c8b5256a4a8254eb2586daaff648e43537a30bb566','dracula_2_the_last_sanctuary','dracula_2_the_last_sanctuary','https://www.gog.com/game/dracula_trilogy',0,'Anuman Interactive','Anuman Interactive','Adventure',0,0,0),(1207661573,'Dracula 3 - The Path of the Dragon',0,0,0,0,0,'648ca22095fd550dc686b4bb43e74363a2bf0cb71685e42a49e7138b371e5173','ad503cdad24748edf5020c8c0e01cd012ec3efe1d91b21db722ff56076d5a1df','dracula_3_the_path_of_the_dragon','dracula_3_the_path_of_the_dragon','https://www.gog.com/game/dracula_trilogy',0,'Anuman Interactive','Anuman Interactive','Adventure',0,0,0),(1207661583,'Haegemonia - Legions of Iron',0,0,0,0,0,'6edc8522ed67406f3f401128be610cb34f40ab89e2ffa1c65e0b97ab62c82e19','98da62d5d2461ba79e3a6e4e6db755ab18b65db34e966f6f8ee45f17936ffd83','haegemonia_legions_of_iron','haegemonia_legions_of_iron','https://www.gog.com/game/haegemonia_gold_edition',0,'Digital Reality','Anuman Interactive','Strategy',0,0,0),(1207661593,'Haegemonia - The Solon Heritage',0,0,0,0,0,'7aad0255c776c0f837b391c7c10d326468fb6aa7574ef73039d7aeffca4df1ae','e7e5b2e8ebdec562768b15b33b4a1b8d8a56ffffbd03393766db200109286f49','haegemonia_the_solon_heritage','haegemonia_the_solon_heritage','https://www.gog.com/game/haegemonia_gold_edition',0,'Digital Reality','Anuman Interactive','Strategy',0,0,0),(1207661603,'Megarace',0,0,0,0,0,'131e1d592c742123e1768bebfad92b716f5f1d57f60deedc058578d2e64140e4','2f9882e49048965ec0cb80e952fc6d1688e1115b78118452db4c2d69d923340c','megarace','megarace','https://www.gog.com/game/megarace_1_2',0,'Cryo Interactive','Anuman Interactive','Racing',0,0,0),(1207661613,'Megarace 2',0,0,0,0,0,'051421acb8a29937c871e1e984f26cfd787aff0bd38b131fd436b902cae7c061','5c730b633351a85ac6aba18ab7470857ba414ceacb73579959237e5905054d1b','megarace_2','megarace_2','https://www.gog.com/game/megarace_1_2',0,'Cryo Interactive','Anuman Interactive','Racing',0,0,0);
INSERT INTO `games` VALUES (1207661623,'Master of Orion Classic',0,0,0,0,0,'b32a7e40965d2ae1149b87d8b553e811f1c8330dc4a9c5e75b85da88cc9b6ee2','ace4d6bf4a185d3261dfac386f68d9662fc13f036f746f46dee80cd907f8c8ca','master_of_orion_classic','master_of_orion_classic','https://www.gog.com/game/master_of_orion_1_2',0,'SimTex','Wargaming Labs','Strategy',0,0,0),(1207661633,'Master of Orion 2',0,0,0,0,0,'3fd40ec161e1452b5d028819c21483096d7aca9e80be2c0f5cd0cc8116564d1b','652a8fbe0965b4ee5100fd0143a0f7f26a851eea9473e5640ad74b3975e56d9a','master_of_orion_2','master_of_orion_2','https://www.gog.com/game/master_of_orion_1_2',0,'SimTex','Wargaming Labs','Strategy',0,0,0),(1207661643,'Pirates!',0,0,0,0,0,'872719371348a9728cd56a300d86ec14ff5c4e7b713104f5bd19cac8bc96185c','fcdd6a23f85b6af471c6b6cb8076cfccc9607f60d21be72b73c5446170ef2b4c','pirates','pirates','https://www.gog.com/game/pirates_gold_plus',0,'MicroProse','Retroism','Strategy',0,0,0),(1207661653,'Pirates! GOLD',0,0,0,0,0,'592fae9080b0e626f6083a0b4505c4da62fa0196a100b863316d4ed7f5955926','3f8f897116f7a9346bbbbec0bbef8f1bf9674ceb9e1640306916c61ff040bd56','pirates_gold','pirates_gold','https://www.gog.com/game/pirates_gold_plus',0,'MicroProse','Retroism','Strategy',0,0,0),(1207661663,'Star Control',0,0,0,0,0,'39bac073a826e126ea7ec5ebcec9047a5ef8b0f3cc9ef7651c588634185cae9d','eadc390bc6cacd56d8fc4c65ed7d364880a8b52c7deba74c009c67d533645cdf','star_control','star_control','https://web.archive.org/web/20111211230303/http://www.gog.com/en/gamecard/star_control_1_2',0,'Toys for Bob','Atari','Adventure',0,0,0),(1207661673,'Star Control 2',0,0,0,0,0,'c13600f13d918cf4e125ec90d91f6eb34bab502ee64c4a92c69987bafde37cbd','3537f3f4445f5701c6dbce6cac8fea316395668aa2b83df50f1728059b493afb','star_control_2','star_control_2','https://web.archive.org/web/20111211230303/http://www.gog.com/en/gamecard/star_control_1_2',0,'Toys for Bob','Atari','Adventure',0,0,0),(1207661723,'Journey of a Roach',0,0,0,0,0,'54b9d4d3e7c6714a2d4b97fec18330e6e217bcc5ecd87cb40eddd86198e92c49','4cefe9a0139be33b5ea99753d0815347146284c9a8f1db2562ca42f665ffb62a','journey_of_a_roach','journey_of_a_roach','https://www.gog.com/game/journey_of_a_roach',0,'Kobold Games','Daedalic Entertainment','Adventure',0,0,0),(1207661733,'Sword of the Samurai',0,0,0,0,0,'01534175643808d940318f8efb8a552feef716f5b7f8b4ac6f6553779d63c967','0add5185b40ace09b24590c7bb232987fe104db3d5ad7a102fc058fe5820e1aa','sword_of_the_samurai','sword_of_the_samurai','https://www.gog.com/game/sword_of_the_samurai',0,'MicroProse','Retroism','Action',0,0,0),(1207661743,'Heroes Chronicles [Chapter 1] - Warlords of the Wasteland',0,0,0,0,0,'f2d0607f3ebf9dddb84767273b72a74a350f7fc546200cd680a596a0b422f3f9','6d94a2ac83e4f7d2310d67246aecfd0338dd4107bf78b149f91e54bd43b09f03','heroes_chronicles_chapter_1_warlords_of_the_wasteland','heroes_chronicles_chapter_1_warlords_of_the_wasteland','https://www.gog.com/game/heroes_chronicles_all_chapters',0,'New World Computing, Inc.','Ubisoft','Strategy',0,0,0),(1207661753,'Heroes Chronicles [Chapter 2] - Conquest of the Underworld',0,0,0,0,0,'670fe7fc3d02c4db41afb249d4429595074808ea81f763b178f9c7701d23ba2f','60bec9f9a8ee93cac4e7c74b7e6d7d4cdfc3dfac7dec7e346b74c693448a8764','heroes_chronicles_chapter_2_conquest_of_the_underworld','heroes_chronicles_chapter_2_conquest_of_the_underworld','https://www.gog.com/game/heroes_chronicles_all_chapters',0,'New World Computing, Inc.','Ubisoft','Strategy',0,0,0),(1207661763,'Heroes Chronicles [Chapter 3] - Masters of the Elements',0,0,0,0,0,'b16393f6b349c26deba8a504aa7816f845393091488ef91d9af380f664d0e4c4','fd3fbdff5ee439dbe7257e409a99b089e5f7df87c74935697a0c565bf8afcbdd','heroes_chronicles_chapter_3_masters_of_the_elements','heroes_chronicles_chapter_3_masters_of_the_elements','https://www.gog.com/game/heroes_chronicles_all_chapters',0,'New World Computing, Inc.','Ubisoft','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207661773,'Heroes Chronicles [Chapter 4] - Clash of the Dragons',0,0,0,0,0,'7cc76783fbdf6da836a29dcf78c6895751674d2d6a2a47c2143eecc49cd24aaa','4dc28d7791a18c5f20118b52f7faff237abcd2f040fbd3c217022ec9353cb24d','heroes_chronicles_chapter_4_clash_of_the_dragons','heroes_chronicles_chapter_4_clash_of_the_dragons','https://www.gog.com/game/heroes_chronicles_all_chapters',0,'New World Computing, Inc.','Ubisoft','Strategy',0,0,0),(1207661783,'Heroes Chronicles [Chapter 5] - The World Tree',0,0,0,0,0,'cc66d18a57557b05e709753e1a53582d4f73a4ad3e10f903373139588411a234','9518c1413d061915d1b1f8486a5fa1fd2d853b693636f380c2510df008a5e46e','heroes_chronicles_chapter_5_the_world_tree','heroes_chronicles_chapter_5_the_world_tree','https://www.gog.com/game/heroes_chronicles_all_chapters',0,'New World Computing, Inc.','Ubisoft','Strategy',0,0,0),(1207661793,'Heroes Chronicles [Chapter 6] - The Fiery Moon',0,0,0,0,0,'85862e06fa7f802f32341141ce0730d472f7cecf97e153327581ec73bf5560a7','6977687a3d39c42b66dfc8ba5f44ba37e180c5e243eb919ebc52fe96133b553c','heroes_chronicles_chapter_6_the_fiery_moon','heroes_chronicles_chapter_6_the_fiery_moon','https://www.gog.com/game/heroes_chronicles_all_chapters',0,'New World Computing, Inc.','Ubisoft','Strategy',0,0,0),(1207661803,'Heroes Chronicles [Chapter 7] - Revolt of the Beastmasters',0,0,0,0,0,'a798c65f61da6825fb84ac3321bca11295fb267cc528886cccca92b1432239f5','081e136d294ebe13e7cf4dc026b19d04309587dadb5449c5d84f680e401d55e1','heroes_chronicles_chapter_7_revolt_of_the_beastmasters','heroes_chronicles_chapter_7_revolt_of_the_beastmasters','https://www.gog.com/game/heroes_chronicles_all_chapters',0,'New World Computing, Inc.','Ubisoft','Strategy',0,0,0),(1207661813,'Heroes Chronicles [Chapter 8] - The Sword of Frost',0,0,0,0,0,'21a7dc9cdd79476313308e2d84260dd0ff1d73180464e216781c605085cf5f4c','ef4d47f0459f866482bbb78988520f7d8fe25ec8ae72941a2838dd4798bad001','heroes_chronicles_chapter_8_the_sword_of_frost','heroes_chronicles_chapter_8_the_sword_of_frost','https://www.gog.com/game/heroes_chronicles_all_chapters',0,'New World Computing, Inc.','Ubisoft','Strategy',0,0,0),(1207661823,'Unholy Heights',0,0,0,0,0,'181bb50c4bb09764248419c78c907960eb78bdc2518a06b07c7d2ea1d823b01c','8f9d7977a8d22efcb68f6c783caf9e2f9485d06fc9ea6c4c50320a2816c366fe','unholy_heights','unholy_heights','https://www.gog.com/game/unholy_heights',0,'Petit Depotto','Active Gaming Media','Simulation',0,0,0),(1207661833,'Two Worlds II Velvet Edition',0,0,0,0,0,'db1ac6aed2fcddaef65afa8551bad463ec94fc8de7cf6b89f2dd1662578a2d59','7bb82f1b65f748b0df28c339c74d9e0fb1ca4ae0e4913b02c6ede8cec8630fb0','two_worlds_ii_velvet_edition','two_worlds_ii_velvet_edition','https://www.gog.com/game/two_worlds_2_epic_edition',0,'Reality Pump Studios','TopWare Interactive','Action',0,0,0),(1207661843,'Two Worlds II Castle Defense',0,0,0,0,0,'82723c677c894f87bd9be2d1c06dd8781b62417f353ad37e89bd0a35cfc2b3d5','1c772c31ec7031e40beef678a5dce04a5a4c8cfcf590a8f66d041a0055e12988','two_worlds_ii_castle_defense','two_worlds_ii_castle_defense','https://www.gog.com/game/two_worlds_2_epic_edition',0,'Reality Pump Studios','TopWare Interactive','Action',0,0,0),(1207661853,'Earth 2150 - Escape from the Blue Planet',0,0,0,0,0,'7401b47f9806f4f6b81fbbc6c471d2721ec8f9e465330fada47b236601d9028c','d05d9bbe608c9f375d36c9dcb33a07ea588c2c7badddd9cf9728ba1065d3d861','earth_2150_escape_from_the_blue_planet','earth_2150_escape_from_the_blue_planet','https://www.gog.com/game/earth_2150_trilogy',0,'Reality Pump Studios','TopWare Interactive','Strategy',0,0,0),(1207661863,'Earth 2150 - Lost Souls',0,0,0,0,0,'4a42a70ac85446a9a0118862fe3439d0f423a0ad86aa2055b62867a8038e5b08','f3d280b043a1dc69adae815443ac4bd2c4e9361a915a61bc918920b0ec657228','earth_2150_lost_souls','earth_2150_lost_souls','https://www.gog.com/game/earth_2150_trilogy',0,'Reality Pump Studios','TopWare Interactive','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207661873,'Earth 2150 - The Moon Project',0,0,0,0,0,'68e383dac23ede512de7d9edd947bde6dd1fded9659989993cc37b31d69b9b00','cfa0416f251c0ce25a6ae00d83a4c5c6e2dfd63ffda660a702ac832c31750245','earth_2150_the_moon_project','earth_2150_the_moon_project','https://www.gog.com/game/earth_2150_trilogy',0,'Reality Pump Studios','TopWare Interactive','Strategy',0,0,0),(1207661883,'Silent Service',0,0,0,0,0,'06c0b2363e6f1b8d31c6de0a8c5bdce2ba8ce77150b8ae1c0e7a3ce07ef380f7','aef386b7e453d95cf30f287cbb1993c7df96aa993d1aad13b82d028bed1e0dfa','silent_service','silent_service','https://www.gog.com/game/silent_service_12',0,'MicroProse','Retroism','Simulation',0,0,0),(1207661893,'Silent Service 2',0,0,0,0,0,'fb48cd5be800aae6735cd75660ddcbef9aca84ec272d2450b977bd574407f6b6','5f6c7478fc0a36909fd64a95f5d65623a5203ac3390da8ecd6482df15d03dc17','silent_service_2','silent_service_2','https://www.gog.com/game/silent_service_12',0,'MicroProse','Retroism','Simulation',0,0,0),(1207661903,'Windforge',0,0,0,0,0,'e93dca0176ce8c305a671891f924412fd224510cf00054578d75f59381ac7fcb','1ec023f063729fcc31b165575d1e731fb63c1e20020200ca31d2abefe7e23c67','windforge','windforge','https://web.archive.org/web/20170827212748/https://www.gog.com/game/windforge',0,'Snowed In Studios','Snowed In Studios','Action',0,0,0),(1207661913,'Bloodnet (CD version)',0,0,0,0,0,'47da367bc71402ff6580a10f150c401a1c2b450400d0a8723780140921459690','7c92675e2677cde80f80f7e9639872846939c936fad3a13ab776cde73c44ece2','bloodnet_cd_version','bloodnet_cd_version','https://www.gog.com/game/bloodnet',0,'MicroProse','Retroism','Adventure',0,0,0),(1207661923,'BloodNet (FDD version)',0,0,0,0,0,'caf373e635d39e4a3280342859d8fb6c834cc791602349c7dc918118babe2e2e','2c2cd551b4ba9e64894837401f3cec3d8a51e2e6a103d0fdfa1d8f23584ade30','bloodnet_fdd_version','bloodnet_fdd_version','https://www.gog.com/game/bloodnet',0,'MicroProse','Retroism','Adventure',0,0,0),(1207661973,'Realms of Arkania: Blade of Destiny',0,0,0,0,0,'18ff34c6e72133e56223f826000881e7227424e18ad2e61dbe54c59d1c6c05b3','4d7b6ef0c74674fed92ee62f8f32afdcea72cf72465629766e2b548f3f94ae7e','realms_of_arkania_blade_of_destiny','realms_of_arkania_blade_of_destiny','https://www.gog.com/game/realms_of_arkania_1_2',0,'Attic Entertainment','Fantasy Productions','Role-playing',0,0,0),(1207661983,'Realms of Arkania: Star Trail',0,0,0,0,0,'c9483c2002c79d5881358e5e265d015d672dc387eb5060a8de3534a57fa4347d','1df601620a926a8c0be2856375f195bc0d063cd99e20271cbd03a11b36d7adef','realms_of_arkania_star_trail','realms_of_arkania_star_trail','https://www.gog.com/game/realms_of_arkania_1_2',0,'Attic Entertainment','Fantasy Productions','Role-playing',0,0,0),(1207661993,'Luftrausers',0,0,0,0,0,'2cc6e99f5392a74c18e5cdb13e3b08bc67658d1d6653f18e9ac60b88d8a8bfdd','44561f49403ed996255cd22bce7cad9e24d6d10a55f9a19d007cdb81df5fb44b','luftrausers','luftrausers','https://www.gog.com/game/luftrausers',0,'Vlambeer','Devolver Digital','Action',0,0,0),(1207662003,'DROD: King Dugan\'s Dungeon',0,0,0,0,0,'aeadeb72de4b16b86ac53ceadf397fb15d2385a3b0d74045f5ebd0aafa820220','c40a12242628a03e79f1d39417cbb36f973e1d10cb74c04f517475c4668cc34d','drod_1_king_dugans_dungeon','drod_1_king_dugans_dungeon','https://www.gog.com/game/drod_1_2_3',0,'Caravel Games','Caravel Games','Role-playing',0,0,0),(1207662013,'DROD 2: Journey to Rooted Hold',0,0,0,0,0,'1d9dd2fa42bedbbf98d4ef9a669b43feb323dea8185236424f934c1bdb2e6cf6','3d17a2f9b5625a5623074d5d8cc1b2e62b890934e8b73064c385030e10f7a065','drod_2_journey_to_rooted_hold','drod_2_journey_to_rooted_hold','https://www.gog.com/game/drod_1_2_3',0,'Caravel Games','Caravel Games','Role-playing',0,0,0),(1207662023,'DROD 3: The City Beneath',0,0,0,0,0,'197342f31f669de6f0c94f98e723aade16711b45e2f8f51c692f0e6695a8fe42','08c9d5bef0ef21400c4e217a29886a901d714ff15f36f816502078b80964c5f9','drod_3_the_city_beneath','drod_3_the_city_beneath','https://www.gog.com/game/drod_1_2_3',0,'Caravel Games','Caravel Games','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1207662033,'Leisure Suit Larry 1 - In the Land of the Lounge Lizards',0,0,0,0,0,'0f8a35df28fa297e453f82204c977255e6556548b61d96c6f95b8997e4a65ad8','5d4868d0abfe20c76800e8085aec30de19217bc98d8f4de8c1ed61404c894496','leisure_suit_larry_1_in_the_land_of_the_lounge_lizards','leisure_suit_larry_1_in_the_land_of_the_lounge_lizards','https://www.gog.com/game/leisure_suit_larry',0,'Sierra','Codemasters','Adventure',0,0,0),(1207662043,'Leisure Suit Larry 1 (VGA) - In the Land of the Lounge Lizards',0,0,0,0,0,'4a29f9a33bf50c9aa1486f40b9fcd3afb467a2c0b9fb8aacd70c5fd82092d584','334a7da3933b8876010bc175f68965cc635ba1754641097313c830038b56c45b','leisure_suit_larry_1_vga_in_the_land_of_the_lounge_lizards','leisure_suit_larry_1_vga_in_the_land_of_the_lounge_lizards','https://www.gog.com/game/leisure_suit_larry',0,'Sierra','Codemasters','Adventure',0,0,0),(1207662053,'Leisure Suit Larry 2 - Looking For Love (In Several Wrong Places)',0,0,0,0,0,'7b0c8360eacbffa6a5a8380a15abb5d3f26d8a237c03691aadf332b287ff14ee','06925bd3aa03912ac3fc783c453f0d8eabe80970d1cb521429fb19ec0077f8b1','leisure_suit_larry_2_looking_for_love_in_several_wrong_places','leisure_suit_larry_2_looking_for_love_in_several_wrong_places','https://www.gog.com/game/leisure_suit_larry',0,'Sierra','Codemasters','Adventure',0,0,0),(1207662063,'Leisure Suit Larry 3 - Passionate Patti in Pursuit of the Pulsating Pectorals!',0,0,0,0,0,'decd9de49aab84673abb503a719aaebcbcd1fc68b88c061cee0dac8804e001fb','0fda403867f21c1214de04ace085c058725819758cc7250776f80cf66b734645','leisure_suit_larry_3_passionate_patti_in_pursuit_of_the_pulsating_pectorals','leisure_suit_larry_3_passionate_patti_in_pursuit_of_the_pulsating_pectorals','https://www.gog.com/game/leisure_suit_larry',0,'Sierra','Codemasters','Adventure',0,0,0),(1207662073,'Leisure Suit Larry 5 - Passionate Patti Does a Little Undercover Work!',0,0,0,0,0,'4b747988e028c8ba91b9e6315ba72b2223762445c605f0f543a9a8da8946cd6e','f7bd41c9bd68a6ccf00af1c3d39a5a0db2228db4f129a75a2fb11313f989378b','leisure_suit_larry_5_passionate_patti_does_a_little_undercover_work','leisure_suit_larry_5_passionate_patti_does_a_little_undercover_work','https://www.gog.com/game/leisure_suit_larry',0,'Sierra','Codemasters','Adventure',0,0,0),(1207662083,'Leisure Suit Larry 6 - Shape Up Or Slip Out',0,0,0,0,0,'32595f3aac24a02124937700589996a18838df7baefdc80c7392083d197f1bf2','950ebe00c08fc6025d9453d664170fb06cdc65e118c234d0e95c182a67bb13cf','leisure_suit_larry_6_shape_up_or_slip_out','leisure_suit_larry_6_shape_up_or_slip_out','https://www.gog.com/game/leisure_suit_larry',0,'Sierra','Codemasters','Adventure',0,0,0),(1207662093,'Leisure Suit Larry 6 (VGA) - Shape Up Or Slip Out',0,0,0,0,0,'78808de86465abb52dd6d2ce7f21f39ea19fab45bc4dbfd4e298ad4ec2319a41','3be8ca1ae704646ef9c5fc958cd4395c9eebda92881a4e4fd77eb152981c34a9','leisure_suit_larry_6_vga_shape_up_or_slip_out','leisure_suit_larry_6_vga_shape_up_or_slip_out','https://www.gog.com/game/leisure_suit_larry',0,'Sierra','Codemasters','Adventure',0,0,0),(1207662103,'Softporn Adventure',0,0,0,0,0,'78b0ac88cac77112b26549c7ba3c17a98ecf5a1bc81bdf00e32172cde5deb092','d12abbbd3b5b7296b9f7fb9fff21f7719248958449948eff4144190e3ef259b7','softporn_adventure','softporn_adventure','https://www.gog.com/game/leisure_suit_larry',0,'Sierra','Codemasters','Adventure',0,0,0),(1207662113,'Rex Nebular and the Cosmic Gender Bender',0,0,0,0,0,'c8156e8ddf7cd656f8fcd4e22bf321d68976d8f52267c2436d9c036bdc423ffc','d22b566307810ae8831086c6d3dc10b272136b44152b331194845910b512c9e2','rex_nebular_and_the_cosmic_gender_bender','rex_nebular_and_the_cosmic_gender_bender','https://www.gog.com/game/rex_nebular_and_the_cosmic_gender_bender',0,'MicroProse','Retroism','Adventure',0,0,0),(1207662143,'Braveland',0,0,0,0,0,'f16aac5f7c243e030ca0d8c38d23cfd3754bd4a91f0c217820f622fcd2ff2583','93547e9046d3092e2dcd95a2c7d744c5b41a6b555a38af970f72638843980487','braveland','braveland','https://www.gog.com/game/braveland',0,'Tortuga Team','Tortuga Team','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207662193,'Commandos - Behind Enemy Lines',0,0,0,0,0,'769bc477a07e42d57a24eb9c127c222c142fbd7fe5839559e389a03e6cbde870','2ff40ecb87277d09057fbf90a4c6a99e13db2fb146c063fef2742ee8cd9d899d','commandos_behind_enemy_lines','commandos_behind_enemy_lines','https://www.gog.com/game/commandos_ammo_pack',0,'Pyro Studios','Merge Games','Strategy',0,0,0),(1207662203,'Commandos - Beyond The Call Of Duty',0,0,0,0,0,'0cf68854720ee280177accf1df001e6441fa39f41ecacd899999d2dd6c23b4af','29b710d3ad265a2fe83b58b23537e12ed297e7f614b7ad8a9a470ea3f71d0c7c','commandos_beyond_the_call_of_duty','commandos_beyond_the_call_of_duty','https://www.gog.com/game/commandos_ammo_pack',0,'Pyro Studios','Merge Games','Strategy',0,0,0),(1207662213,'Commandos 2 - Men of Courage',0,0,0,0,0,'29635246c6e2ae404bdda844ce0b5cb718b44c22b39a20229290ecc077b09db2','e473584ecff6e89f4a3318717ae55dd1c21ddc459e34d4849f5ba7100c265aa9','commandos_2_men_of_courage','commandos_2_men_of_courage','https://www.gog.com/game/commandos_2_3',0,'Pyro Studios','Merge Games','Strategy',0,0,0),(1207662223,'Commandos 3 - Destination Berlin',0,0,0,0,0,'70c9ca379756e387fe1da2bb89a174de2a69439590c1cf7d16d27f115a63edca','8370adebf1e8b036573f2baf93ebd2c8cc4f677a23d8917e9333c94d9dbbaaa3','commandos_3_destination_berlin','commandos_3_destination_berlin','https://www.gog.com/game/commandos_2_3',0,'Pyro Studios','Merge Games','Strategy',0,0,0),(1207662233,'Creatures',0,0,0,0,0,'91575f5314aad787a65c9ebf4f9461c94d7bf6d6b168a0a4aaf90890d7d486f4','8dad1e40fc8ed64c9c545b0bb636e52c9aab29051fcfe4d8fe0172138c69e7de','creatures_1','creatures_1','https://www.gog.com/game/creatures_the_albian_years',0,'Creature Labs','Merge Games','Simulation',0,0,0),(1207662243,'Creatures 2',0,0,0,0,0,'5f808ff9ff8bfa8266f538c0bc1864d28592162526bbc4a313151fcba9afd830','f859eb04393f82b111db50b19312d14271b5d9235198abaaad3fbb0ab7164d64','creatures_2','creatures_2','https://www.gog.com/game/creatures_the_albian_years',0,'Creature Labs','Merge Games','Simulation',0,0,0),(1207662273,'Gobliiins',0,0,0,0,0,'eaa6795ab368358a9147db95fc360689978adffae881d9be6a115d40adfd685d','e666e235107b742cc58b52f87cd1ae0a6a4a152bbb87b1882a5005d033f6f751','gobliiins','gobliiins','https://www.gog.com/game/gobliiins_pack',0,'Coktel Vision','DotEmu','Adventure',0,0,0),(1207662293,'Gobliins 2 - The Prince Buffoon',0,0,0,0,0,'f1b8a11104007a071b3b6e4b3ca3a38cfff5de945a8d08bb5d87ed6000223b09','378e8e00e2bd34ad76d0974a5bc18fd3a465a919e0ad804cc3387027a4527021','gobliins_2_the_prince_buffoon','gobliins_2_the_prince_buffoon','https://www.gog.com/game/gobliiins_pack',0,'Coktel Vision','DotEmu','Adventure',0,0,0),(1207662313,'Goblins Quest 3',0,0,0,0,0,'a03cc5057ece5ad99f2bee7126822bdc3ad31fefbf4d8cd6c6d17a5712d277a3','da8be2f9bb66e3ff7e8e43c587ac0da269b4fc87f6e8fb0ef27e208571a1ac85','goblins_quest_3','goblins_quest_3','https://www.gog.com/game/gobliiins_pack',0,'Coktel Vision','DotEmu','Adventure',0,0,0),(1207662333,'Crystals of Arborea',0,0,0,0,0,'30808a385217ba34cfb5f4d093986c33904f840e96bd029ac164fcd3bb2823c7','e4de1d5bd2846b2f2fa164cc789bf1b8bf1e94c10c85de132727a811a43066fa','crystals_of_arborea','crystals_of_arborea','https://www.gog.com/game/ishar_compilation',0,'Silmarils','DotEmu','Role-playing',0,0,0),(1207662343,'Ishar - Legend of the Fortress',0,0,0,0,0,'f133e40870ec8f4664f418d4dda5dc402f4fee084357105a4b98e9ef50e668bf','7aa07d1174697e64abffafd5ff26d5eaaa9c763a29b8c6963a5b8b7b9801e027','ishar_legend_of_the_fortress','ishar_legend_of_the_fortress','https://www.gog.com/game/ishar_compilation',0,'Silmarils','DotEmu','Role-playing',0,0,0),(1207662353,'Ishar 2 - Messengers of Doom',0,0,0,0,0,'5dfd09b5e415f01ea0192f4b4cfa71fb3d42bfb8f9485e6f3df5015a50e654b5','84182cf455a1c1c404f3b7e93dddaa9f67a61a497fb9a5b550e19769d1514839','ishar_2_messengers_of_doom','ishar_2_messengers_of_doom','https://www.gog.com/game/ishar_compilation',0,'Silmarils','DotEmu','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1207662363,'Ishar 3 - The Seven Gates of Infinity',0,0,0,0,0,'15652f3db9178344ef6c872be7c9ccdc09d0a5f479bb15b73dada320434d8260','6ab30a18303b942245d8492374b0053f172ba3f2c56db449ded006b3c9c9d70a','ishar_3_the_seven_gates_of_infinity','ishar_3_the_seven_gates_of_infinity','https://www.gog.com/game/ishar_compilation',0,'Silmarils','DotEmu','Role-playing',0,0,0),(1207662373,'Robinson\'s Requiem',0,0,0,0,0,'6f630e037cc9b1df66e00e9481f72e3c0ac9874e58ac0acde0f5671c575c839c','2bb33ac5e500994e9dbeb0ea84f99bff71ed798d39f57cefe6554ffa88941e97','robinsons_requiem','robinsons_requiem','https://www.gog.com/game/robinsons_requiem_collection',0,'Silmarils','DotEmu','Role-playing',0,0,0),(1207662383,'Deus',0,0,0,0,0,'239a797ab38677456b9ddabcaa55afbbb779333f53ef381655c344712e56e12f','77f9438b9162e75ab2fd217d2af7710a8bc5ee29d34489ab83a57493959c8c69','deus','deus','https://www.gog.com/game/robinsons_requiem_collection',0,'Silmarils','DotEmu','Role-playing',0,0,0),(1207662393,'Starflight 1',0,0,0,0,0,'0aa29b31343e75d53da25a36a21a10f10c69d2c869cdf0f06bec6a8569c52295','b539a8f329050a4d389131f059e16c9bef28828740d7c5484c9118af89a04874','starflight_1','starflight_1','https://www.gog.com/game/starflight_1_2',0,'Binary Systems','Electronic Arts','Role-playing',0,0,0),(1207662403,'Starflight 2',0,0,0,0,0,'824bddfc9d770fe8d14e27b408a7964455112298b2f3e3801c1624fa87d709c6','b689d42755c2b8d1181a7794026b4d9d5febf6c9869a72328a7806087c5d0813','starflight_2','starflight_2','https://www.gog.com/game/starflight_1_2',0,'Binary Systems','Electronic Arts','Role-playing',0,0,0),(1207662433,'Ultima IV™ ',0,0,0,0,0,'d1fd0a83f1e60e31ba5bfdc001ab46c1a538f2bbdc876488fdfd656d20c84fa0','0166d8972d0a5cd2e6fde7351682bce02e4df7833578a56c41f6fc2e502fd40c','ultima_iv','ultima_iv','https://www.gog.com/game/ultima_456',0,'Origin Systems','Electronic Arts','Role-playing',0,0,0),(1207662443,'Ultima V™ ',0,0,0,0,0,'b87be595b898d95fd6fd0c16607e74728d3c857a8848af0c4ba952644844337a','22f59bb65af7fdc1151c3659f7b4b04b76015fa3e32f79475fd9126a8d025d13','ultima_v','ultima_v','https://www.gog.com/game/ultima_456',0,'Origin Systems','Electronic Arts','Role-playing',0,0,0),(1207662453,'Ultima VI™ ',0,0,0,0,0,'3f3464e28c806e2d66cb38d8f27518e8704b00386fba1590dbd905aa9b2e0b99','50980fb0350820f2081156f3a27af619d8728cff878cbc8646adc088300cf405','ultima_vi','ultima_vi','https://www.gog.com/game/ultima_456',0,'Origin Systems','Electronic Arts','Role-playing',0,0,0),(1207662463,'Ultima™ Underworld I',0,0,0,0,0,'aded25b118381e697e520542c45de23766a71425646db6a72b0e19ac574dd79d','ec45886c805697738cfc3bd8c5ea59f2c5dcf06e560a258c2815223e20a943c4','ultima_underworld_1','ultima_underworld_1','https://www.gog.com/game/ultima_underworld_1_2',0,'Blue Sky Productions','Electronic Arts','Role-playing',0,0,0),(1207662473,'Ultima™ Underworld II',0,0,0,0,0,'ccb50e17fe3af2ab43892f1821265020f962f33144c87d23446099cd00b2146f','8358d786bb9f599cae0a2becbf6cfc9594d4b5f9919d9be8a8850c4d45fa5be2','ultima_underworld_2','ultima_underworld_2','https://www.gog.com/game/ultima_underworld_1_2',0,'Blue Sky Productions','Electronic Arts','Role-playing',0,0,0),(1207662513,'Lands Of Lore - The Throne of Chaos',0,0,0,0,0,'24ce800a50dd5e9e3c6fc7987d0823a69c0290682eb145406f3a4e2c9c22d502','9954242ee087c68ba96d6951de4c389a8fc5617068d37c1329f466f1a39db568','lands_of_lore_the_throne_of_chaos','lands_of_lore_the_throne_of_chaos','https://www.gog.com/game/lands_of_lore_1_2',0,'Westwood Studios','Electronic Arts','Role-playing',0,0,0),(1207662523,'Escape Goat 2',0,0,0,0,0,'9d8379cf7c388c2a38076f31d4512f66d4e64352850e00f348bb0c92e33d2f90','29e039eaee66dc93aa9d4b45bb965889aa91d17d5984df3ed3f3e198fe424beb','escape_goat_2','escape_goat_2','https://www.gog.com/game/escape_goat_2',0,'MagicalTimeBean','MagicalTimeBean','Action',0,0,0);
INSERT INTO `games` VALUES (1207662533,'Beatbuddy: Tale of the Guardians',0,0,0,0,0,'5db881b7c6948527eb5616f374d491fddbba223c733347e2b77ebfcb8d1b8b95','035d191dfb6cb86d80a755f564b23841d697239ed03b77b1352630feca45367e','beatbuddy_tale_of_the_guardians','beatbuddy_tale_of_the_guardians','https://www.gog.com/game/beatbuddy_tale_of_the_guardians',0,'THREAKS','THREAKS','Action',0,0,0),(1207662553,'Slave Zero',0,0,0,0,0,'7b15bf4d01f024b66a4c5368ebfdc5afeef41ff8df072ee1abeea16ad65c6f7a','39589c34ad1b1494e81b83e10ce1d775f656efa7b617b58e8c99a94da3329b28','slave_zero','slave_zero','https://www.gog.com/game/slave_zero',0,'Accolade','Retroism','Shooter',0,0,0),(1207662563,'Lands Of Lore - Guardians of Destiny',0,0,0,0,0,'0de56f87c91959385282f4d00c38764b6b83f0a2a9b3cd2b856bdfa4465932e3','092b50b524afbbcee0cf71fc01c51bc98455702829753449b8a237a0a467a5ce','lands_of_lore_guardians_of_destiny','lands_of_lore_guardians_of_destiny','https://www.gog.com/game/lands_of_lore_1_2',0,'Westwood Studios','Electronic Arts','Role-playing',0,0,0),(1207662593,'Ultima I™ ',0,0,0,0,0,'88cdb144bf409b565d5ff643d336d5c1f4ac93cb085431fe68ab72878ccc50de','7c8014cf0ed9ce2e313810476379f6b2051c5bee8f7fc2d37bfa980bb84c26e5','ultima_1','ultima_1','https://www.gog.com/game/ultima_1_2_3',0,'Origin Systems','Electronic Arts','Role-playing',0,0,0),(1207662603,'Ultima II™ ',0,0,0,0,0,'446ae3b4d86f4bef22641945213858a4fd2fcb5bedc01d60f6ed160c23dcc44e','29a38b08dc975aff031ff7ba5746ca397cd4596fa82304628375019e88e4d9fb','ultima_2','ultima_2','https://www.gog.com/game/ultima_1_2_3',0,'Origin Systems','Electronic Arts','Role-playing',0,0,0),(1207662613,'Ultima III™ ',0,0,0,0,0,'c64149d7747039d957c02e7d6e56d60ad27ce38d3d1536aa50f231eea00f3df4','ff3608f399226d0da7b75bd9a64c3801980deaed166b2aa31282a4b46497aa35','ultima_3','ultima_3','https://www.gog.com/game/ultima_1_2_3',0,'Origin Systems','Electronic Arts','Role-playing',0,0,0),(1207662623,'Ultima VII™ - The Black Gate + The Forge of Virtue',0,0,0,0,0,'30ced861831be9ff57c5d48ba70b6aeba318d5ab7b596499ad73e05495ea8919','47d3c0bf4238953a402626c3dee56e8760bfb04db83375f81f2aef4a13524ca5','ultima_vii_the_black_gate_the_forge_of_virtue','ultima_vii_the_black_gate_the_forge_of_virtue','https://www.gog.com/game/ultima_7_complete',0,'Origin Systems','Electronic Arts','Role-playing',0,0,0),(1207662633,'Ultima VII™ - Serpent Isle + The Silver Seed',0,0,0,0,0,'4ebc27b7c4c9d1907159d3e2b2d0a61c60510006ab83222f3d79606ac7e26b3e','b90c9bb358f1030217396d55fb04c0eb316db8b859e52a8cdbb84307afe3ad92','ultima_vii_serpent_isle','ultima_vii_serpent_isle','https://www.gog.com/game/ultima_7_complete',0,'Origin Systems','Electronic Arts','Role-playing',0,0,0),(1207662643,'Wing Commander',0,0,0,0,0,'517aa71a8215ce0f784b15556cf35fe11c44aa38a2b0d9acdbb556d6dc14a86f','2082480d812ba92587b7530adc88e679409449f85f6c1561df0f077b2faca633','wing_commander','wing_commander','https://www.gog.com/game/wing_commander_1_2',0,'Origin Systems','Electronic Arts','Shooter',0,0,0),(1207662653,'Wing Commander II',0,0,0,0,0,'c9ad0b473e2f598cc42927bdf8e357dde9d18f9e024bb8123b6fabd8fa60325d','45b43d52e7c0d7df667e6f50747f8d10e96ac439ca5da7f057f48e53b370cfa4','wing_commander_ii','wing_commander_ii','https://www.gog.com/game/wing_commander_1_2',0,'Origin Systems','Electronic Arts','Shooter',0,0,0),(1207662663,'Wing Commander Prophecy',0,0,0,0,0,'6a510fdeefa68a62d720cd040f738bdba4225ba5004c21227f645119e02959a8','5581380ad7e8518292ded6ac53f3b5e8aec6cbedc7f86b01b069f66c879f073e','wing_commander_prophecy','wing_commander_prophecy','https://www.gog.com/game/wing_commander_5_prophecy',0,'Origin Systems','Electronic Arts','Shooter',0,0,0),(1207662673,'Wing Commander Secret Ops',0,0,0,0,0,'138b2f45a3d50feaab177387355a18b3144354e62df84011bc8967b1ce9adc9a','7909585b288328148add9bc0387bda42650aa4932eb0ad32919a7f9120421b7b','wing_commander_secret_ops','wing_commander_secret_ops','https://www.gog.com/game/wing_commander_5_prophecy',0,'Origin Systems','Electronic Arts','Shooter',0,0,0);
INSERT INTO `games` VALUES (1207662703,'Moebius: Empire Rising',0,0,0,0,0,'d68f4acddeb397ee9be67dd89fc47b4f5168b6958a973e53917225811339c298','d6150ee61b0405126945589442d12b82f57a118c0381f2eb0a8e6f5de0849b9a','moebius','moebius','https://www.gog.com/game/moebius',0,'Pinkerton Road','Pinkerton Road','Adventure',0,0,0),(1207662733,'Penumbra - Overture',0,0,0,0,0,'3b969c181d8de34e406faef044d7c2dd4a433e811a9f13f4c6d50b85cc0b9bf7','b328fcebeea2f2a38171f0b66b72c8261367a1d961955d9bd5cc0219c301ab70','penumbra_overture','penumbra_overture','https://www.gog.com/game/the_penumbra_collection',0,'Frictional Games','Frictional Games','Action',0,0,0),(1207662743,'Penumbra - Black Plague',0,0,0,0,0,'71162241c2bddcb26e2014d9699ee025ee4ac01f17870c005b2ac294a69c1af4','908e37e3284e1bb79203cccb55c48aebc96a8d3961743e07302a994ecff55753','penumbra_black_plague','penumbra_black_plague','https://www.gog.com/game/the_penumbra_collection',0,'Frictional Games','Frictional Games','Action',0,0,0),(1207662763,'Wizardry 6',0,0,0,0,0,'79fd6bec71d4b0404f820e839f9ca7c997c607180f0229fbfb75c142a4d572f0','c88da448268285d9f3fedaa176a753e020f446201d58c3849c82df406343b3f6','wizardry_6','wizardry_6','https://www.gog.com/game/wizardry_6_7',0,'Sir-Tech Software','Gamepot Inc.','Role-playing',0,0,0),(1207662783,'Wizardry 7 Gold',0,0,0,0,0,'64d8309c3c27648a3eafe0ea28d071f2391ffc6236b583c2e6b9b0bc08eea8aa','3301865075a5e1fc6c4a31e96d9b7cea057443c1ccf6008ae2ab5937041bc1e4','wizardry_7_gold','wizardry_7_gold','https://www.gog.com/game/wizardry_6_7',0,'Sir-Tech Software','Gamepot Inc.','Role-playing',0,0,0),(1207662803,'American Conquest',0,0,0,0,0,'3c3f28ba587dd0c4c94ca539845b40748287cc9b163d5a0d08b07f0e79dccc4f','f9f4df5b2b96c138eafb85e8318034a4348a7383f883c1ba0b7e1576c9e79f0b','american_conquest_game','american_conquest_game','https://www.gog.com/game/american_conquest',0,'GSC Game World','GSC Game World','Strategy',0,0,0),(1207662813,'American Conquest - Fight Back',0,0,0,0,0,'c59996ef078c65543ab14b8c0fa38808f9eb23878e732134bf42b4b71a04bfde','cf52d9da5491009274fade27696f8ab63debdd1cad58d8696aaf5a5953c724d1','american_conquest_fight_back','american_conquest_fight_back','https://www.gog.com/game/american_conquest',0,'GSC Game World','GSC Game World','Strategy',0,0,0),(1207662823,'Cossacks - Art Of War',0,0,0,0,0,'b8140a2b7cee549f1cec335dd87ce25e85ac99141716d5f38b29fbc705c4de76','15bba10f3eb6261fd222b37dd522ba26602e1d44f94e963fc58db5604aa85b19','cossacks_art_of_war','cossacks_art_of_war','https://www.gog.com/game/cossacks_anthology',0,'GSC Game World','GSC Game World','Strategy',0,0,0),(1207662833,'Cossacks - Back To War',0,0,0,0,0,'11772281ea4f9d607749ff3a183fc96aefa25b3024967ea5a74896ae4f6738ab','74a2c61b4293b010e2b195bf055084e4247733044f44de38b28312a3627051fd','cossacks_back_to_war','cossacks_back_to_war','https://www.gog.com/game/cossacks_anthology',0,'GSC Game World','GSC Game World','Strategy',0,0,0),(1207662843,'Cossacks - European Wars',0,0,0,0,0,'eb07a5379f46c39da346d828fea28d5bc07af6000dffbf973d49518b1d13d309','920e3d7c40813c0ab8b1d3b050989dbaf83fc91f19e2c4d7d0a38e0dd129a795','cossacks_european_wars','cossacks_european_wars','https://www.gog.com/game/cossacks_anthology',0,'GSC Game World','GSC Game World','Strategy',0,0,0),(1207662853,'The Great Battles of Alexander',0,0,0,0,0,'053c8fe6bd458304170642b924348b948dfbbf1b942708a8b0d5ad97db3270f1','53689513eee3511ab0d410eab47ffdc78d1a8e24135fdd792f6bf4018460f031','the_great_battles_of_alexander','the_great_battles_of_alexander','https://www.gog.com/game/great_battles_collectors_edition',0,'Erudite Software','iEntertainment Network Inc.','Strategy',0,0,0),(1207662863,'The Great Battles of Hannibal',0,0,0,0,0,'44fa8f4bdb2be8af473894f63f5c4675c700a43f83f33401f34f543ede2fc3ae','b7fa8ae2f24c8674dc38c6571169fcb3a3c00deb39b2c1b4de65402b559a5f39','the_great_battles_of_hannibal','the_great_battles_of_hannibal','https://www.gog.com/game/great_battles_collectors_edition',0,'Erudite Software','iEntertainment Network Inc.','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207662873,'The Great Battles of Caesar',0,0,0,0,0,'9fff4a1635d536aa1552d4f4b35bb173de185d65e78b92373140fe2e9f9d8620','1f45c05e01b02c477faf9fb96eb7e1cd5d32535553ad8b55abe44c159e0831a1','the_great_battles_of_caesar','the_great_battles_of_caesar','https://www.gog.com/game/great_battles_collectors_edition',0,'Erudite Software','iEntertainment Network Inc.','Strategy',0,0,0),(1207662883,'Blackwell Legacy',0,0,0,0,0,'1e5ae3df75c117c573bc993c3cfc098ac0c78151144fa504969ff1c8c9a6cfc5','12f6d9903351c201c13bf6fe2e1ebe6303c5ba0c5f6fe50ef7f1539330d24c7c','episode_1_the_blackwell_legacy','episode_1_the_blackwell_legacy','https://www.gog.com/game/blackwell_bundle',0,'Wadjet Eye Games','Wadjet Eye Games','Adventure',0,0,0),(1207662893,'Blackwell Unbound',0,0,0,0,0,'e9c9035ccdc5f52125c9c5305bea4d00bcd9fb22e6a58fc756a75ae80fad2be6','c52619722b5c04d6f1b2bf690dd0084e792a3e1d53f391b511fd961349c0e947','episode_2_blackwell_unbound','episode_2_blackwell_unbound','https://www.gog.com/game/blackwell_bundle',0,'Wadjet Eye Games','Wadjet Eye Games','Adventure',0,0,0),(1207662903,'Blackwell Convergence',0,0,0,0,0,'20850909386028bbe5fea232d3a7b80d5d67efdeb3921f2a97ef12246f29c616','f43dd84f7e0b1df770e511c68cf68234ce7312f86a7ffb59e415f253cabcb757','episode_3_blackwell_convergence','episode_3_blackwell_convergence','https://www.gog.com/game/blackwell_bundle',0,'Wadjet Eye Games','Wadjet Eye Games','Adventure',0,0,0),(1207662913,'Blackwell Deception',0,0,0,0,0,'75ec3ba5396a7d11a7173a7c82935a8987f9c01264d9df43316bfdb848147b25','791f29855f5effd94237b8630651efcb7bf517636d03970de898ce8a8e4f376f','episode_4_blackwell_deception','episode_4_blackwell_deception','https://www.gog.com/game/blackwell_bundle',0,'Wadjet Eye Games','Wadjet Eye Games','Adventure',0,0,0),(1207662923,'Geneforge 1',0,0,0,0,0,'2e26564d64b0dfe4f407a5c168401aa071594d21f92a971c23f6cb0aeda5facd','b431d65cb106a9a010e8e4e0b2f87245b51f23ee05038616eb077113f576171f','geneforge_1','geneforge_1','https://www.gog.com/game/geneforge_15',0,'Spiderweb Software','Spiderweb Software','Role-playing',0,0,0),(1207662933,'Geneforge 2',0,0,0,0,0,'3e29f301e23779a134220ac1066f5a68f5f95feb8cb6ec41a1e37c4e256b45f4','2c7dd089db3b0ced1a94159da9ca24c07f3e25e5762db9401b32ff5f2c024cc5','geneforge_2','geneforge_2','https://www.gog.com/game/geneforge_15',0,'Spiderweb Software','Spiderweb Software','Role-playing',0,0,0),(1207662943,'Broken Age: The Complete Adventure',0,0,0,0,0,'1873ab30ec891ad3ba17bf98a6d9ca10d51952dbf0d2f4966d899d5a83c9f5fc','97d1d12f956e02bf573922c8fd9b423b167357479d800853781c3905a9da9827','broken_age','broken_age','https://www.gog.com/game/broken_age',0,'Double Fine Productions','Double Fine Productions','Adventure',0,0,0),(1207662953,'Geneforge 3',0,0,0,0,0,'b119e3d958a646a96cb59efc72a0a9383bc2a8b7f467f68338ad93a01f17b9c5','7bb0246790b2ca6b1d76533c08b61667515c89ad17ae458ef5ae25ba36bd1976','geneforge_3','geneforge_3','https://www.gog.com/game/geneforge_15',0,'Spiderweb Software','Spiderweb Software','Role-playing',0,0,0),(1207662963,'Geneforge 4',0,0,0,0,0,'c8efeecf1f7cadcd4a23e9e33b1db907752363d2b359723cc3f2998d48a769b0','1f344e099e89c0c4861281ab4d09d75169cd5765478cbae3d27f54096e8a54c9','geneforge_4','geneforge_4','https://www.gog.com/game/geneforge_15',0,'Spiderweb Software','Spiderweb Software','Role-playing',0,0,0),(1207662973,'Geneforge 5',0,0,0,0,0,'722c1877b8959dcc2ad83921932fceabfac074f534a63137c21d69de24b5e5ea','77562faee3a4259b2f674d1bc2702f07e842b2ff8e7d9c86ea516d6681270cff','geneforge_5','geneforge_5','https://www.gog.com/game/geneforge_15',0,'Spiderweb Software','Spiderweb Software','Role-playing',0,0,0),(1207662983,'Ben There, Dan That!',0,0,0,0,0,'9ea3e77a6a83a6be2afee38d67246836093b32cf0dcbd43d9c657bc97165395f','27702f4201ce6cff7b706691f7486a3bd32be9d952f853a85b52e339c57b5088','ben_there_dan_that','ben_there_dan_that','https://www.gog.com/game/time_gentlemen_please_ben_there_dan_that',0,'Size Five Games','Size Five Games','Adventure',0,0,0);
INSERT INTO `games` VALUES (1207662993,'Time Gentlemen, Please!',0,0,0,0,0,'ae3abb41111e5acfcef824f12a4a1f5a1cb236cb1c91ebfec09fadaa00c4922b','df5c1334f729127d37eb9f3be8b33da1e2f700bef2c786faf824ef90352dc42d','time_gentlemen_please','time_gentlemen_please','https://www.gog.com/game/time_gentlemen_please_ben_there_dan_that',0,'Size Five Games','Size Five Games','Adventure',0,0,0),(1207663003,'American McGee\'s Grimm - Season 1',0,0,0,0,0,'db50916e6577709deaa883aba17bf246aa003bd129aced5d900f3dfc24ac43df','c6a87bd0faa3fabff8fc2d80760d6d8e4c3252ca2e3f35973af49a3b02d9a879','american_mcgees_grimm_season_1','american_mcgees_grimm_season_1','https://www.gog.com/game/american_mcgees_grimm',0,'Spicy Horse','Kiss','Action',0,0,0),(1207663013,'American McGee\'s Grimm - Season 2',0,0,0,0,0,'b4ba0b3652878ab186d1666ad468f1fe94ad487ed932493537036511916a37ec','982abaa803f6684a884576702cf6b3c571dd4be53433c5806eb21d9151ac0d2e','american_mcgees_grimm_season_2','american_mcgees_grimm_season_2','https://www.gog.com/game/american_mcgees_grimm',0,'Spicy Horse','Kiss','Action',0,0,0),(1207663023,'American McGee\'s Grimm - Season 3',0,0,0,0,0,'c43e1568dfa8f7663d4d64dee648cf70731cfd24484eeeb45742a1c24dc20134','5accc4d7f2706d4ac5c91b5b809bf7f4e6f72d944a718fc14752feb7dad17365','american_mcgees_grimm_season_3','american_mcgees_grimm_season_3','https://www.gog.com/game/american_mcgees_grimm',0,'Spicy Horse','Kiss','Action',0,0,0),(1207663033,'Battle Chess',0,0,0,0,0,'1ef4c6492ea8f7743f107d15928048f4b75691034c863acfe41f159478c4e2ea','0214c488a3b9c98e0a68fcae44c79761e84fed12db8fc3ac2de33c55390e5984','battle_chess','battle_chess','https://www.gog.com/game/battle_chess_special_edition',0,'Interplay','Interplay','Strategy',0,0,0),(1207663043,'Battle Chess II: Chinese Chess',0,0,0,0,0,'cc8d41382ff72d3a31ae9ab172f81beaf0b9885aea084c18df28c25b00eb6015','1817c265d033ce81f101d15d826279b3615898e9cc0f922e3d55c341e8c0210f','chinese_chess','chinese_chess','https://www.gog.com/game/battle_chess_special_edition',0,'Interplay','Interplay','Strategy',0,0,0),(1207663053,'Battle Chess 4000',0,0,0,0,0,'ca21b0e4d99ff63c7db25f866fa976e2d243c8e113c052deab4d6b815139e6c2','6654219297e0ae7fac9432ede9d7be53cf616df016e7526d9f81a5bc1060b88c','battle_chess_4000','battle_chess_4000','https://www.gog.com/game/battle_chess_special_edition',0,'Interplay','Interplay','Strategy',0,0,0),(1207663063,'Castles',0,0,0,0,0,'efcc29d1224f41d4abbaedacdb155e1a8ffdb7eacfa906105df33776a66c1be4','ff16d00a3c39fe3e2a85db4e2fb7106d8f9e03e02459518bc70cf3cab34084d8','castles','castles','https://www.gog.com/game/castles_castles_2',0,'Quicksilver Software','Interplay','Strategy',0,0,0),(1207663073,'Castles 2',0,0,0,0,0,'42b802a86cb0ad9d65de645fa51ebc4d840d2afe18387fb75331c93a6a82f47e','705524a5ba5bc4f0c7ffaf2c91a417b59504bcd91885104ca1b99402b6f2391a','castles_2','castles_2','https://www.gog.com/game/castles_castles_2',0,'Quicksilver Software','Interplay','Strategy',0,0,0),(1207663083,'Descent',0,0,0,0,0,'f79aa212c3088da17ecc8bd7ef70c0509404ace65e757d8d9c61f5082235fe11','269fce05c92eb36d85ec364638ab6682b9ad785ebf9ee961b5895e69f7d8ce32','descent','descent','https://www.gog.com/game/descent',0,'Parallax Software','Interplay','Shooter',0,0,0),(1207663093,'Descent 2',0,0,0,0,0,'e870752a22892f13b214f8ba852facc2d71f1185b995d141b3ac0d7b5c68eb7b','aebc1b2c133d8b2ec011c917820557e889d9c8d8543b900f82b52ada9980becf','descent_2','descent_2','https://www.gog.com/game/descent_2',0,'Parallax Software','Interplay','Shooter',0,0,0),(1207663103,'Earthworm Jim',0,0,0,0,0,'f830270fe5a0928e8540bcd5c0fa97327e703fe04a85d4dcf320abf424cadf95','e48e1f1a7601114a21d91d131febeee3cb6cc7bea70ccb0dd02e9ef7540708e2','earthworm_jim','earthworm_jim','https://www.gog.com/game/earthworm_jim_1_2',0,'Shiny Entertainment','Interplay','Action',0,0,0);
INSERT INTO `games` VALUES (1207663113,'Earthworm Jim 2',0,0,0,0,0,'b5fae3bacc1d165614e8bf397047133226d44e6d384f987c3039fa8277db14cf','dc92eb90ca50bc84fff11b93fe060448680c70e1f813db6206a7e0ce60e41caa','earthworm_jim_2','earthworm_jim_2','https://www.gog.com/game/earthworm_jim_1_2',0,'Shiny Entertainment','Interplay','Action',0,0,0),(1207663153,'Risen',0,0,0,0,0,'00c548e9f89355010d0bbbf0aaf4fac7948dc3297f47b4fa701afd3d2a7ef588','75063f2872f37d51f531cad9b549e8b042265144723bd4ee6fa3f07cf198d1a3','risen','risen','https://www.gog.com/game/risen',0,'Piranha Bytes','Deep Silver','Action',0,0,0),(1207663193,'Risen 2: Dark Waters',0,0,0,0,0,'6d002bb58762d1bf37d2fd6e9f46af305d322e5a7ed60e9e814472e388a10f32','0dbfff852e810f2b223f679e26c8339331aaba53fc2957a9c310fa7412431f36','risen_2_dark_waters','risen_2_dark_waters','https://www.gog.com/game/risen_2_dark_waters',0,'Piranha Bytes','Deep Silver','Action',0,0,0),(1207663203,'Wallace and Gromit\'s Episode 1 Fright of the Bumblebees',0,0,0,0,0,'61133a048bea8043920bb5ed43a7d8e5f477d45ea65cf469264053cbe61bf8a2','75ea4f041a255e016940f6fd7e6ead7fcec5cb9dc0b7a231b76d02c050aeab5e','episode_1_fright_of_the_bumblebees','episode_1_fright_of_the_bumblebees','https://web.archive.org/web/20121102182938/http://www.gog.com/en/gamecard/wallace_gromits_grand_adventures/',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1207663213,'Lords of the Realm',0,0,0,0,0,'7b9aded554fb39f3ae27ad1e3319536b0ada934d16d04464ccd405287a311ddd','6cd5e9cb48026ce376cf7320d0f2f4aa102ed4b2f5c27f97978d82077570e9cf','lords_of_the_realm','lords_of_the_realm','https://www.gog.com/game/lords_of_the_realm_royal_edition',0,'Impressions Games','Rebellion','Strategy',0,0,0),(1207663223,'Wallace and Gromit\'s Episode 2 The Last Resort',0,0,0,0,0,'ecb05f684c053af44b27a347913b07d0b34a63d273ef2ac34023eba4d603984c','61f7e16486db8ce5d3760f282a0ec43dd5cd8840c2f068830217858b06e32304','episode_2_the_last_resort','episode_2_the_last_resort','https://web.archive.org/web/20121102182938/http://www.gog.com/en/gamecard/wallace_gromits_grand_adventures/',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1207663233,'Lords of the Realm CD version',0,0,0,0,0,'6841a5917f30d41977714d203a311fc148a5fb90433a32eb6b56bf9a6705c142','557deed718c93fac95bb77b000c9bcc712a6629081e511159fa5d2dab63f2caa','lords_of_the_realm_cd_version','lords_of_the_realm_cd_version','https://www.gog.com/game/lords_of_the_realm_royal_edition',0,'Impressions Games','Rebellion','Strategy',0,0,0),(1207663243,'Wallace and Gromit\'s Episode 3 Muzzled',0,0,0,0,0,'7132de73a8a6f04b41ec1366ed1ff7b3ffaaabc7c81f1ebc62ad0f9c209802c9','60803a86d7293bcf9621ee237f7fd5c8d2eca97be4c4df4c01f4694b5a016fa9','episode_3_muzzled','episode_3_muzzled','https://web.archive.org/web/20121102182938/http://www.gog.com/en/gamecard/wallace_gromits_grand_adventures/',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1207663253,'Wallace and Gromit\'s Episode 4 The Bogey Man',0,0,0,0,0,'617635cfec50983fc9a7d2488550eb05a30f4dba5d3cc022d370d7f5b8136377','d6ed779952a46604b88116bac15fa4f5e0a6c4b2afe66478f140a0cc256851fa','episode_4_the_bogey_man','episode_4_the_bogey_man','https://web.archive.org/web/20121102182938/http://www.gog.com/en/gamecard/wallace_gromits_grand_adventures/',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1207663263,'Lords of the Realm II',0,0,0,0,0,'73b6f72f3abb9f76927c7ca65f9d0cd5e5c5a940a8822fe03e66fda78254f390','59a46c4aea1e249cd94b961c3a4ce197404f411986f1350dffb6430121962426','lords_of_the_realm_ii','lords_of_the_realm_ii','https://www.gog.com/game/lords_of_the_realm_royal_edition',0,'Impressions Games','Rebellion','Strategy',0,0,0),(1207663333,'Avernum',0,0,0,0,0,'b2da30fbb219b9ede94327848aa2ceed9c6ae0ecf15b4c11d8aab7654134b80e','151a22d0f05a23dcf2c7a7b5c2652984431a709c084b5237111c9366d2b07c94','avernum','avernum','https://www.gog.com/game/avernum_the_complete_saga',0,'Spiderweb Software','Spiderweb Software','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1207663353,'Avernum 2',0,0,0,0,0,'65d66672df5e52f2c7b0f36c4d73283ad2a95b9711dddceb831e27d5881e85dc','e30d34487daf4b0780475f18471bb780b808f674c43aef8825ee3ccf83bb1238','avernum_2','avernum_2','https://www.gog.com/game/avernum_the_complete_saga',0,'Spiderweb Software','Spiderweb Software','Role-playing',0,0,0),(1207663373,'Avernum 3',0,0,0,0,0,'58a3512a31c0c251e02e68145cd34147743f08752320df9a3a16ffc295079447','7bd71621ebbf5206aae01ea01497c6287d80d7899a1f50a441c9ad42d20f68f4','avernum_3','avernum_3','https://www.gog.com/game/avernum_the_complete_saga',0,'Spiderweb Software','Spiderweb Software','Role-playing',0,0,0),(1207663383,'Blades of Avernum',0,0,0,0,0,'607501bbc390ca920221abc2ee7fdd13934d42d80b065b9f6ae990cc1d991607','f0ab6c4f0d25bd4bc26ca879c6c4e23a1eb3c6ea47a718294a398049d6de9633','blades_of_avernum','blades_of_avernum','https://www.gog.com/game/avernum_the_complete_saga',0,'Spiderweb Software','Spiderweb Software','Role-playing',0,0,0),(1207663403,'Avernum 4',0,0,0,0,0,'6e6064ef8aebf467e45f567000ecc9b772d62d3156667f5dcb25eb7a43b13668','8ab23304155711f5cec715bd787875e1b46681aeab35420b7c64775e7bd0b343','avernum_4','avernum_4','https://www.gog.com/game/avernum_the_complete_saga',0,'Spiderweb Software','Spiderweb Software','Role-playing',0,0,0),(1207663423,'Avernum 5',0,0,0,0,0,'3cc5e38f33da50eb8201a34cb32c295d67088f1073e8fca9f0777e124ab7ce22','2afb2d1fcff84dbfc7bf131696014e535041439ce4efc63d7553665b0061dc72','avernum_5','avernum_5','https://www.gog.com/game/avernum_the_complete_saga',0,'Spiderweb Software','Spiderweb Software','Role-playing',0,0,0),(1207663443,'Avernum 6',0,0,0,0,0,'643a3a5ef350760f62750f3dcfd04694d3974ced5ea467b4bbde113d366fb924','afb87856cd1126fbcf6501dc4e76f1c7dec3e4c674423ab93dfff3babd3605ea','avernum_6','avernum_6','https://www.gog.com/game/avernum_the_complete_saga',0,'Spiderweb Software','Spiderweb Software','Role-playing',0,0,0),(1207663463,'Tomb Raider 1',0,0,0,0,0,'e6d7203221477b5d04bc2084d8f2033235c020bd00533c49b794f2669e536c18','3d4f9590913671675d5851ad9b776d40978ec4eb1bab149b27cdd778a95e97ba','tomb_raider_1','tomb_raider_1','https://www.gog.com/game/tomb_raider_123',0,'Core Design','Square Enix','Action',0,0,0),(1207663483,'Tomb Raider 2',0,0,0,0,0,'8f509b1e499ae2cbed2915d7481f02dbb7705a3623b435864b30ac0554f46d75','3d753418cfcb7464e6c559464550f863a5ad4276ab9abd1132eda727714e783a','tomb_raider_2','tomb_raider_2','https://www.gog.com/game/tomb_raider_123',0,'Core Design','Square Enix','Action',0,0,0),(1207663493,'Tomb Raider 3',0,0,0,0,0,'d2736ccbbb31d85b4e44fbe436f3e4bb5c073f5c7c4a8a81067824bc84737e87','6b45a83b94cc27e57a8a08ac036374295b7a70b96a1f486f6759ff3a2f84d66c','tomb_raider_3','tomb_raider_3','https://www.gog.com/game/tomb_raider_123',0,'Core Design','Square Enix','Action',0,0,0),(1207663513,'Tomb Raider - The Last Revelation',0,0,0,0,0,'d0c69608e1023e8dc4eb4c7e5aaa453406a9fe59e3ddf7b71909706854d88dc9','a0976e19405e5a4f1b2f1e4fe7101b1616924fa99d52f889793d1e1d1467aec8','tomb_raider_the_last_revelation','tomb_raider_the_last_revelation','https://www.gog.com/game/tomb_raider_the_last_revelation_chronicles',0,'Core Design','Square Enix','Action',0,0,0),(1207663523,'Tomb Raider Chronicles',0,0,0,0,0,'05750641e3178b5a22c93e756c9efbf08a4356b48ef01f576122fad567acec01','d3ed2aa6aa4e491ce3f0a960356226ab10160a416ad80e762b5a197a14ea6a9d','tomb_raider_chronicles','tomb_raider_chronicles','https://www.gog.com/game/tomb_raider_the_last_revelation_chronicles',0,'Core Design','Square Enix','Action',0,0,0),(1207663703,'Disciples 2 - Dark Prophecy and Gallean\'s Return',0,0,0,0,0,'7e15610dadc17be7915e295bd6ab514f6b87465e54345d31917008e7756db5e3','7e17fb290bcdfc2c757db7afa09d2d287e1e03faf27a7a0267101d0b03da5cea','disciples_2_dark_prophecy_and_galleans_return','disciples_2_dark_prophecy_and_galleans_return','https://www.gog.com/game/disciples_2_gold',0,'Strategy First','Strategy First','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207663713,'Disciples 2 - Rise of the Elves',0,0,0,0,0,'181fa95481e68fd90f12596356d9e1e242615df7db6217a5e3ec9abb8534f566','19b59ca8db3ebcbda0b3ed09020e74d7a42db105c7d9b63aa0d5236be0dd5b09','disciples_2_rise_of_the_elves','disciples_2_rise_of_the_elves','https://www.gog.com/game/disciples_2_gold',0,'Strategy First','Strategy First','Strategy',0,0,0),(1207663733,'Alien Breed',0,0,0,0,0,'543b53836f1cc8a8027d2fb358885c7db797f99ed575f7acaf2a726a6e24e343','a731e7248ef4b293ff0e80615c0228e0cbce39ff6867c8b8a67c90d39f92959b','alien_breed','alien_breed','https://www.gog.com/game/alien_breed_tower_assault',0,'Team17 Software','Team17 Digital LTD.','Action',0,0,0),(1207663753,'Alien Breed: Tower Assault (Game)',0,0,0,0,0,'6d58e32c1524882e736f5a7512a5c4965cb33f253232db93fd922e90605bfb6a','d6d6c48a74f5c31fa2dae5a6b5dc0a3d9bb1aef83a62f7ca752357080a92b67e','alien_breed_tower_assault_game','alien_breed_tower_assault_game','https://www.gog.com/game/alien_breed_tower_assault',0,'Team17 Software','Team17 Digital LTD.','Action',0,0,0),(1207663773,'M.A.X.',0,0,0,0,0,'c0362bb51880585ccefcc8cec32305491da05b67d6b708241a4e2170961a9a8d','e318c3deea75967133fe6625cd901d07581eb7e1fa4fe85744cbfece192d98ac','max','max','https://www.gog.com/game/m_a_x_m_a_x_2',0,'Interplay','Interplay','Strategy',0,0,0),(1207663783,'M.A.X. 2',0,0,0,0,0,'a721d5a6b18caa38a678d591ba8a060c4d31f15d0b57c0d17a00fabd0f60d407','328b55311e4c740c994a4c5ab31f0ac8c5337545d208c8394fe182e5981b3cd3','max_2','max_2','https://www.gog.com/game/m_a_x_m_a_x_2',0,'Interplay','Interplay','Strategy',0,0,0),(1207663793,'Cultures',0,0,0,0,0,'5502834dbb29fee04aa2038b3abdd0a366dbf9193609193d4ffef9583a31bfd1','1a114f1870b03cadfed4d82512f0f73f9e6d0f37131e990392848a29ab860e6a','cultures','cultures','https://www.gog.com/game/cultures_12',0,'Funatics Development','Kalypso Media Digital','Strategy',0,0,0),(1207663813,'Cultures 2',0,0,0,0,0,'d08ee59f79c0c32f95afda8eef66aae70c238b2f45013d72441e83d8a2502917','f416bd8b5f0c8c3ba55558a9f4ce429c93eb045b93f544f9600237eff3d1a253','cultures_2','cultures_2','https://www.gog.com/game/cultures_12',0,'Funatics Development','Kalypso Media Digital','Strategy',0,0,0),(1207663833,'Cultures: Northland',0,0,0,0,0,'83556422058c0603cc7b7070edd96215761c43bb06e15ea1ec78216b6852ac91','a1febee0c38e7ee940a892bf49fcb925dd6ecbcb31c4318640cf1c3f174df58f','northland','northland','https://www.gog.com/game/cultures_34',0,'Funatics Development','Kalypso Media Digital','Strategy',0,0,0),(1207663853,'Cultures: 8th Wonder of the World',0,0,0,0,0,'b82fe0f7c9057423d496cbb114d8b9053ceee50274feef99cb34977284b17c7f','018124522ecca2c9af7c92d61bc0dd6f088169326ca3cf239c4af8ff33f5c729','8th_wonder_of_the_world','8th_wonder_of_the_world','https://www.gog.com/game/cultures_34',0,'Funatics Development','Kalypso Media Digital','Strategy',0,0,0),(1207663863,'Incoming',0,0,0,0,0,'4df77bcd10c9a357511dd377baba4aba0548c4df82820f2c136449cb7051a0eb','940c754e439fe8b9c0b3e435efa8c8714213c4db82f68033e18afb70b5a61e29','incoming','incoming','https://www.gog.com/game/incoming_incoming_forces',0,'Rage Software','Blue Moon Red Owl','Shooter',0,0,0),(1207663873,'Incoming Forces',0,0,0,0,0,'8831d14562a0590717201e220afe4648c6b2f1346fd27a0eb86a46caf8f1f82b','74a426f34f48792bd4bedc980f2e74466f1a8f9812a7c45586a1387d5b710679','incoming_forces','incoming_forces','https://www.gog.com/game/incoming_incoming_forces',0,'Rage Software','Blue Moon Red Owl','Shooter',0,0,0),(1207663903,'Neighbours From Hell 1',0,0,0,0,0,'121870b3b51d7f73085455c4b080640c47c69d1b1162a57c2d60ba73d461e3c5','004f80e221562f3afd3f895c124234d803241b0d808d3880a9108cc6a21d7853','neighbours_from_hell_1','neighbours_from_hell_1','https://www.gog.com/game/neighbours_from_hell_compilation',0,'JoWooD Productions Software','THQ Nordic GmbH','Adventure',0,0,0);
INSERT INTO `games` VALUES (1207663913,'Patrician',0,0,0,0,0,'4b579331bb3d9e55a0f275adb637280fac88256f28c4001f26a095e83074aad0','c393779ac1a94f79b6664d7d7be3d9bdad9d2b1270bbb38627b681a8f10aa0db','patrician','patrician','https://www.gog.com/game/patrician_1_2',0,'ASCARON Entertainment','Kalypso Media Digital','Strategy',0,0,0),(1207663923,'Neighbours From Hell 2',0,0,0,0,0,'8040c93ea2bd226aef6b169e2254ed3eecbbdb1c866a6489d1f055a73e2b9181','eaa76961feaac5dbbbcce92d70a7ae587721b203e72f8feaef3a42eaf5520f48','neighbours_from_hell_2','neighbours_from_hell_2','https://www.gog.com/game/neighbours_from_hell_compilation',0,'JoWooD Productions Software','THQ Nordic GmbH','Adventure',0,0,0),(1207663933,'Patrician II - Quest for Power',0,0,0,0,0,'6ae388b3eb39639f6e6dfa2468eaba817634cb8b834bb81e6896b00e182f2209','aa9dbc8e3187bb6c014774ce39d8c4015cdcd7c8b9c4a725ea93b3cb7b5aa862','patrician_ii_quest_for_power','patrician_ii_quest_for_power','https://www.gog.com/game/patrician_1_2',0,'ASCARON Entertainment','Kalypso Media Digital','Strategy',0,0,0),(1207663943,'Return of the Incredible Machine Contraptions',0,0,0,0,0,'46e434912b993b04e337137f05318ddf547803ed8040c16e64915edbcccc677e','32f08d64c8dcfae2849a56585ac58db957e978a9169446336403a6a30c4d66b0','return_of_the_incredible_machine_contraptions','return_of_the_incredible_machine_contraptions','https://www.gog.com/game/the_incredible_machine_mega_pack',0,'Dynamix','Disney','Strategy',0,0,0),(1207663953,'Tropico',0,0,0,0,0,'0d63f0e95dd114db651e80935f6e47accdc1af32733ff4a8be8d7eceee3c0d6e','714153b2aebf3dbc1c1e24f195f87d08d370bba242e30417c1403bcaace5c1a4','tropico','tropico','https://www.gog.com/game/tropico_reloaded',0,'PopTop','Kalypso Media Digital','Strategy',0,0,0),(1207663963,'Tropico 2',0,0,0,0,0,'9f932d349c0c41c0fdde813f54220a6d2da74471e6287c7570e9e5cf42b39a01','eb7697478b99a56abac0e81f67a78134a4f4e793f5ff6a159215a3d9712f962d','tropico_2','tropico_2','https://www.gog.com/game/tropico_reloaded',0,'PopTop','Kalypso Media Digital','Strategy',0,0,0),(1207663973,'Red Baron 1',0,0,0,0,0,'f91528f60f883b234d4630620988725e2dbd7884549ea2e6034c23758a069a9b','8995af6840ba0a6bbaf729544e29a6fc3f2c74416ecf21bfbe9122aebce9bb28','red_baron_1','red_baron_1','https://www.gog.com/game/red_baron_pack',0,'Dynamix','Mad Otter Games','Simulation',0,0,0),(1207663983,'Red Baron 3D',0,0,0,0,0,'331308dd80480a191d13503e62101da01d4504bd05dbc1294b036f12ef5d3a03','07d720ac3c8d2b227f5579053d16e56ef40ea642ac37330c0dff052282600ea2','red_baron_3d','red_baron_3d','https://www.gog.com/game/red_baron_pack',0,'Dynamix','Mad Otter Games','Simulation',0,0,0),(1207663993,'Blitzkrieg',0,0,0,0,0,'ba3e222325ec32cd097b143b228bf81437a1193b27f4b49c583ab6ca5e62ccc8','84cd314dbb072fd201a40cbb9ea039c9c410e79e926eeedf5ef698efce62d1c4','blitzkrieg','blitzkrieg','https://www.gog.com/game/blitzkrieg_anthology',0,'Nival Interactive','Nival Interactive','Strategy',0,0,0),(1207664003,'Blitzkrieg: Burning Horizon - Rolling Thunder - Iron Division',0,0,0,0,0,'a1f3be2f2f8fc56c56ffb1281e4aeb4dbb3857ac0e8e9873f3fad60ccd24001a','592c4d3736a2990f52b0b1e7e2478b2f7834ae8b231ac26dd7c4083f821d3cb3','blitzkrieg_burning_horizon_rolling_thunder','blitzkrieg_burning_horizon_rolling_thunder','https://www.gog.com/game/blitzkrieg_anthology',0,'Nival Interactive','Nival Interactive','Strategy',0,0,0),(1207664013,'Blitzkrieg 2',0,0,0,0,0,'27f2e976ef5b20655301404c8f2895188a594735f1cfac6f1c574534f3dc2fdb','85ab0ccf26d4beaf79bf9982c37bd6df76758272a1dd6a6830246d526e1b214c','blitzkrieg_2','blitzkrieg_2','https://www.gog.com/game/blitzkrieg_2_anthology',0,'Nival Interactive','Nival Interactive','Strategy',0,0,0),(1207664023,'The Even More Incredible Machine',0,0,0,0,0,'cb32fadbbef6d2ce0549a75dabee84576d351674450c490f90990a36fb06b3a6','dc837d5f4c7bf1ac6969bff755a8e66da30556cd5ce47dc45eb01103d37376d9','the_even_more_incredible_machine','the_even_more_incredible_machine','https://www.gog.com/game/the_incredible_machine_mega_pack',0,'Dynamix','Disney','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207664033,'Blitzkrieg 2 - Liberation',0,0,0,0,0,'b1d8fee2b4fb7827ee8659c6623bbd2e7511dde50d2f20b0f673e945d5dc7d0f','d94de22f1dc60f8bb64e0ef0d7ec988a6dec76130bc1b8809c4774d4347a9ba4','blitzkrieg_2_liberation','blitzkrieg_2_liberation','https://www.gog.com/game/blitzkrieg_2_anthology',0,'Nival Interactive','Nival Interactive','Strategy',0,0,0),(1207664043,'The Incredible Machine - Even More Contraptions',0,0,0,0,0,'291ab52b13ad5f1e6a898c9829ea5fa7f5a59b932cce243cdaed35e55134371b','ec19679584b45fb432b38e6d31b79a35a03bda65ff4b681d12d8d2dc2580f93a','the_incredible_machine_even_more_contraptions','the_incredible_machine_even_more_contraptions','https://www.gog.com/game/the_incredible_machine_mega_pack',0,'Dynamix','Disney','Strategy',0,0,0),(1207664053,'The Incredible Machine 3',0,0,0,0,0,'0a9c16c5c4a39637c585c610dce5c9121ac3918c5bb55927b24bb8475996d984','e31b455b08a1a78123cf27b872bdcd5736cdd654a73af7f40d80c17ca8d58337','the_incredible_machine_3','the_incredible_machine_3','https://www.gog.com/game/the_incredible_machine_mega_pack',0,'Dynamix','Disney','Strategy',0,0,0),(1207664063,'Blitzkrieg 2 - Fall of the Reich',0,0,0,0,0,'3077af9ba3e242625f24457b8bb23bc5534604e096cccad44162a6bd8101ccdd','e7389fd8bacf733b17bcb756a2b5fd27296014816af4c630a42c90b9f1b63280','blitzkrieg_2_fall_of_the_reich','blitzkrieg_2_fall_of_the_reich','https://www.gog.com/game/blitzkrieg_2_anthology',0,'Nival Interactive','Nival Interactive','Strategy',0,0,0),(1207664093,'Pinball Dreams Deluxe',0,0,0,0,0,'113b18e1ab57cf91f4b821870daafc2c54f40b59e32d800a500347876a5b2584','78df19da69d7835f5b68313bdc73a1c5c65582769c7da9bf7debe145cec8f275','pinball_dreams_deluxe','pinball_dreams_deluxe','https://www.gog.com/game/pinball_gold_pack',0,'Digital Illusions','Rebellion','Simulation',0,0,0),(1207664103,'Pinball Fantasies Deluxe',0,0,0,0,0,'245b44547884ee83b880fe06d1f71fc24a272541bdef6bd65b619d383dc50ac6','358e8a7e1571ab23bd1fd9c31f9c902fb56f253d132cdc2eb3e9363a4aacda87','pinball_fantasies_deluxe','pinball_fantasies_deluxe','https://www.gog.com/game/pinball_gold_pack',0,'Digital Illusions','Rebellion','Simulation',0,0,0),(1207664113,'Pinball Illusions',0,0,0,0,0,'5dc21406257347f5ccf92ee9cdf866f6e118b7c6993179f6e7a06c767f1f90ab','28ce7bf4928e0a15293a7c16d9816fe1950ddcc607159ac1ed849010419b7468','pinball_illusions','pinball_illusions','https://www.gog.com/game/pinball_gold_pack',0,'Digital Illusions','Rebellion','Simulation',0,0,0),(1207664153,'FRACT OSC',0,0,0,0,0,'4014899f63289a0b2470594ac60ca6e1862c788ffc2c4e42fe585375844c244a','7d7aa30685728106d99bc800242a8f87d30f42787196c36ef0612851c58e7ae3','fract_osc','fract_osc','https://web.archive.org/web/20160722113728/https://www.gog.com/game/fract_osc',0,'Phosfiend Systems','Phosfiend Systems','Adventure',0,0,0),(1207664163,'BlazBlue Calamity Trigger',0,0,0,0,0,'597706d3a8b4ad03ea3001e117245ad2920abe6173fd655315f8f5b4c2bf180c','1fa3b5c50646e119064d7ca4a5bd4ebda65b44d3e44930db6a1130c096b48983','blazblue_calamity_trigger','blazblue_calamity_trigger','https://www.gog.com/game/blazblue_calamity_trigger',0,'Arc System Works Co.','H2 Interactive','Action',0,0,0),(1207664193,'Redline',0,0,0,0,0,'6e404bc295ba3bfc3412de5e9519263dc9f63ad7f4d7123043c3f7f0ad8b292d','8666fd961587fc63c4b9f050a74c6989e4b4d5589116d113e1b95d5b4de383c1','redline','redline','https://www.gog.com/game/redline',0,'Beyond Games','Retroism','Shooter',0,0,0),(1207664203,'Consortium 2019 REBALANCE',0,0,0,0,0,'9e2bb70130263dba2ba203f7ac70e87d0fc2b60d95cd19e3d4c2a4d06cbb6eb7','0207a263f7ecda907d59e2c348f95ecefe99505c017df981227368956ebeeb11','consortium_the_master_edition','consortium_the_master_edition','https://www.gog.com/game/consortium_the_master_edition',0,'Interdimensional Games Inc.','Interdimensional Games Inc.','Action',0,0,0);
INSERT INTO `games` VALUES (1207664213,'Journeyman Project 1: Pegasus Prime, The',0,0,0,0,0,'82e14899ee396dc859696108dc29019fb09fff70a7524809841e034bc05f853b','1c84e0688e254006d68d36918fd591976d397c6d530ce64f66cffe50d60b2e82','journeyman_project_1_pegasus_prime_the','journeyman_project_1_pegasus_prime_the','https://www.gog.com/game/journeyman_project_1_pegasus_prime_the',0,'Presto Studios','Presto Studios','Adventure',0,0,0),(1207664253,'The Last Federation',0,0,0,0,0,'43ac2a82981a353407e452d1346c287caaff7971d9912958f31826742e1f1d5f','66285d48a03e50514127d0cd01768e0cb88fb3da8d44ce784ca2cb624b6eaf7d','last_federation_the','last_federation_the','https://www.gog.com/game/last_federation_the',0,'Arcen Games','Arcen Games','Strategy',0,0,0),(1207664263,'Samaritan Paradox, The',0,0,0,0,0,'c8a45a5852726ade5f82791c4893bad9ee4a88db7452c0894516b296ef64d566','7e1ca3b4a8ae82f6e9db913104aee13077345a27dfa5544296f0fd17037d5dd3','the_samaritan_paradox','the_samaritan_paradox','https://www.gog.com/game/the_samaritan_paradox',0,'Faravid Interactive','Screen 7','Adventure',0,0,0),(1207664273,'Dracula 4: Shadow of the Dragon',0,0,0,0,0,'b6fb0e10d0003d425dfc6de39b3cee917c5e360a519deaf475061bc2faa34a09','058fc803cc037e643aa3a0549592cc282a76a15c7faaa8a7d709dead4980722c','dracula_4_game','dracula_4_game','https://www.gog.com/game/dracula_4_5',0,'Microids','Anuman Interactive','Adventure',0,0,0),(1207664283,'Dracula 5: The Blood Legacy',0,0,0,0,0,'c7d0a5501ab58ce0e1cbcf0f4a0d952569d1ea87e7718f3fdf2bacbabd69a809','e3e869ca960ec4aadd56aef3c9ad48df46caa2b6507a6a178a7aa8de12fb750c','dracula_5_the_blood_legacy','dracula_5_the_blood_legacy','https://www.gog.com/game/dracula_4_5',0,'Microids','Anuman Interactive','Adventure',0,0,0),(1207664303,'Sir, You Are Being Hunted',0,0,0,0,0,'aac0b029b17cd8248f1efb9e6a0b1a5ae36ced52a5794a0bd2ae316e2117d159','5dc5e7c9428ee9e1e462cfcffdbc0bb9199315fed6e09ff8267ccbe0e06b828f','sir_you_are_being_hunted','sir_you_are_being_hunted','https://www.gog.com/game/sir_you_are_being_hunted',0,'Big Robot','Big Robot','Adventure',0,0,0),(1207664313,'The Labyrinth of Time',0,0,0,0,0,'9990b56bd653b0e232ddc13ed36e7a184143f963a89102b565dd372bc7325590','496298722cad79efc7b8adfff806aeb3987f517bd0368fd12fc455f09c859736','labyrinth_of_time_the','labyrinth_of_time_the','https://www.gog.com/game/labyrinth_of_time_the',0,'Terra Nova Development','The Wyrmkeep Entertainment Co.','Adventure',0,0,0),(1207664333,'Edna & Harvey: The Breakout',0,0,0,0,0,'41534d29bac6ef66a672fbb87716bf1ef47e5d5a8f93d407066667c88fc0554a','156478082697abb5011f0313bc83841e47f52e22fec734bcd53ce0bb2386eadd','edna_harvey_the_breakout','edna_harvey_the_breakout','https://www.gog.com/game/edna_harvey_the_breakout',0,'Daedalic Entertainment','Daedalic Entertainment','Adventure',0,0,0),(1207664343,'Edna & Harvey: Harvey\'s New Eyes',0,0,0,0,0,'947291385c4cdb2130772881ed2d768103183b6b0d24e9b249b4be5a4eeec791','9bc84c2b33e11e715437a99b18fdf1d08d310430a6204291a2410ae45394cdd8','edna_harvey_harveys_new_eyes','edna_harvey_harveys_new_eyes','https://www.gog.com/game/edna_harvey_harveys_new_eyes',0,'Daedalic Entertainment','Daedalic Entertainment','Adventure',0,0,0),(1207664353,'Sudeki',0,0,0,0,0,'022d2efacc4a0c39a8977fe6c8d318b0e5244facded373c26e7f93ded0e1c854','3e7f1599a91bd1e6a3c6943628fd125a4c2be90d7b03e22f5aced97964a0ef51','sudeki','sudeki','https://www.gog.com/game/sudeki',0,'Climax Studios','Climax Group','Action',0,0,0),(1207664363,'Paper Sorcerer',0,0,0,0,0,'a4a383061a5622bc5b7e3a45c300b2eb8bfe065aec1487e276a964a4d838b23a','1afb9cb8eb5733bed18985e40972af77787d5d0cd47a9326068ef22ac3884b5c','paper_sorcerer','paper_sorcerer','https://www.gog.com/game/paper_sorcerer',0,'Ultra Runaway Games','Ultra Runaway Games','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1207664393,'Blackwell Epiphany',0,0,0,0,0,'4d9a7f3d72b9a4a45338f04d8a69b47d242fb5d240cccaed6f24fd32d723bbab','a8c1553cda9857048e0cbe3f748797bd553ea86c99d6d333143eaca7a36e7869','blackwell_epiphany_the','blackwell_epiphany_the','https://www.gog.com/game/blackwell_epiphany_the',0,'Wadjet Eye Games','Wadjet Eye Games','Adventure',0,0,0),(1207664403,'Pinball World',0,0,0,0,0,'b0d9db0a4e366751fedc01ab5bf9ec60139de9c8e39a503656cdb1926536ee0d','519d8d86e3d56d8254ffd63a84d022415ac5bb804ffa0ef2c5a5eff56729622f','pinball_world','pinball_world','https://www.gog.com/game/pinball_world',0,'Spidersoft','Rebellion','Simulation',0,0,0),(1207664413,'Vertical Drop Heroes HD',0,0,0,0,0,'3bc87e3964ab2f700cdcdd2326041ffc5b59130e60b07e696a744356e1027dd7','184bc69e3725d569e9901d24fef4be422ccca3660b4dda38e996f4f24fa1e367','vertical_drop_heroes_hd','vertical_drop_heroes_hd','https://www.gog.com/game/vertical_drop_heroes_hd',0,'Nerdook Productions','Digerati','Action',0,0,0),(1207664443,'realMyst: Masterpiece Edition',0,0,0,0,0,'2aadc834ff6a4ff8c6779739dfaaa71ad5e7a4ffcc83629a853c0984d8d024a6','cf590757571201f3679d5cecd6f7fd76a22121c740f7630a653b3c86bde84e09','real_myst_masterpiece_edition','real_myst_masterpiece_edition','https://www.gog.com/game/real_myst_masterpiece_edition',0,'Cyan Worlds','Cyan Worlds','Adventure',0,0,0),(1207664473,'F-117A Nighthawk Stealth Fighter 2.0',0,0,0,0,0,'a21bef4e0ea0e150ae1d091576370d256f0d156cf09f58fbeee1c7c53dad2da0','22472bae721f00b86c7d8a9e51a2955a0535631ab0cf441b6b32ceb492059198','f117a_nighthawk_stealth_fighter_20','f117a_nighthawk_stealth_fighter_20','https://www.gog.com/game/f117a_nighthawk_stealth_fighter_20',0,'MicroProse','Retroism','Simulation',0,0,0),(1207664483,'1849: Gold Edition',0,0,0,0,0,'74e03193d526c2c79d38e559c260ee36c1ae819e0d3b32827e74ef231dc3b704','7ec9a6b2db2bf5b175344bc0edd02d8bd4f491553cb8474f0184bf9176f2af58','1849_the_gold_rush','1849_the_gold_rush','https://www.gog.com/game/1849_the_gold_rush',0,'SomaSim','SomaSim','Simulation',0,0,0),(1207664503,'Tesla Effect: A Tex Murphy Adventure',0,0,0,0,0,'6983acea08cdd27aeee8a1a67af46986a7896f7cb9847da5c5f03659a53e30c2','7333752bc4e2a55afa7132f298aab4f816ae7d291dd6ced333bf03e1bd3fd3ea','tesla_effect_a_tex_murphy_adventure','tesla_effect_a_tex_murphy_adventure','https://www.gog.com/game/tesla_effect_a_tex_murphy_adventure',0,'Big Finish Games','ATLUS','Adventure',0,0,0),(1207664523,'Screamer 4x4',0,0,0,0,0,'34ce18c365451086b3519b7fff19aa9c9429eccdc82db56f4b4bfdd89e209c44','e3fb96ffe94b40d6fe3610fbd7bfc1ba4575764ea6cae4508bd1c4c66b635517','screamer_4x4','screamer_4x4','https://www.gog.com/game/screamer_4x4',0,'Channel 42 Software Developer','Mastertronic','Racing',0,0,0),(1207664533,'Strike Suit Zero: Director\'s Cut',0,0,0,0,0,'61891824d4c2f36fe89501b87a7b546c539e2ca35d65e7edf4a19a1a1e91d4b8','a979de74e98039998207bcc1d71ee6d3701e012fd898945d31e888b2ce88efdb','strike_suit_zero_directors_cut','strike_suit_zero_directors_cut','https://www.gog.com/game/strike_suit_zero_directors_cut',0,'Born Ready Games','Born Ready Games','Shooter',0,0,0),(1207664543,'Ascendant',0,0,0,0,0,'3d01fb154f70418e15db31139f2b51ecad8f145c61dcd5b9cb216eb02a5be40e','417656fcbae0c20deb254f4942ae6ec8ae4a6ef3592da6b1d88a8d392ce3178c','ascendant','ascendant','https://www.gog.com/game/ascendant',0,'Hapa Games','Hapa Games','Action',0,0,0),(1207664553,'The Last Door: Collector\'s Edition',0,0,0,0,0,'7d6c71f0936c9b63d592c688eb67cebba6332089002cddfc8b5bc0e8102095d3','2164612b56e3035fa4f2b54e33154b5c31e7b9d4982a803dbee272167e393512','last_door_collectors_edition_the','last_door_collectors_edition_the','https://www.gog.com/game/last_door_collectors_edition_the',0,'Game Kitchen','Phoenix Online Studios','Adventure',0,0,0),(1207664563,'CLARC',0,0,0,0,0,'cbe71654ff23d09092b9e5439cce3c319a8e7754824dc674dfd21e5bffc516e6','70e31c37dbada8b41136bf372d39eaf6b57050f7d709f62e967516828e57afbd','clarc','clarc','https://www.gog.com/game/clarc',0,'GoldenTricycle','Hahn Film AG','Adventure',0,0,0);
INSERT INTO `games` VALUES (1207664573,'Bionic Dues',0,0,0,0,0,'e267b7ea656ef09b9d35ed4a31c6eea93913a32b9af93f96e9e101f3d4ae29ce','e2e60de4211db627a83ef169329fe4fb8cd6fae8649b0f67a718ef77f17cfe63','bionic_dues','bionic_dues','https://www.gog.com/game/bionic_dues',0,'Arcen Games','Arcen Games','Strategy',0,0,0),(1207664583,'Always Sometimes Monsters',0,0,0,0,0,'74bd5b555aca5a396e0d0bc68707d82844fd0bb71153da9be2c2e28eec334697','ec5fdf5c2cad1e17d72a1db88ce6d83188f27483e6d054371f4376f7beedbf57','always_sometimes_monsters','always_sometimes_monsters','https://www.gog.com/game/always_sometimes_monsters',0,'Vagabond Dog','Devolver Digital','Adventure',0,0,0),(1207664593,'SimCity™ 4 Deluxe Edition',0,0,0,0,0,'2ba652a0c2b60e822d8bb0a3f4015a3f3ed577e2f2030f63b5011157442c23e8','2b7d9f921799915dd703170cd97ac798eb056e2a8445da7a0203aba58c5325d3','simcity_4_deluxe_edition','simcity_4_deluxe_edition','https://www.gog.com/game/simcity_4_deluxe_edition',0,'Maxis Software Inc.','Electronic Arts','Simulation',0,0,0),(1207664603,'Among the Sleep - Enhanced Edition',0,0,0,0,0,'a4fa945164b7fa0d77d4fc69a93c3b05f29ba2081375fad929ff37e3f116e8d3','2f4006357927f6517ce58ac809d76d21dba1a6b6616e23cdcbbba956fea96ddd','among_the_sleep','among_the_sleep','https://www.gog.com/game/among_the_sleep',0,'Krillbite Studio','Krillbite Studio','Adventure',0,0,0),(1207664613,'Chronology',0,0,0,0,0,'fbaac5d7ab3b0e6f3e6873ab1825ac1c3832b19a3badadc83d5a7d1ea3ee7766','f8d65ea92bcdd2275e5105edfdc359b1004c7ccaa9bd7b1bc85988d7cd7d3794','chronology','chronology','https://web.archive.org/web/20150228211817/http://www.gog.com/game/chronology',0,'Osao Games','Osao Games','Adventure',0,0,0),(1207664623,'Bad Mojo Redux ',0,0,0,0,0,'bac24e0826cb3c5ef97333da65628421841bb7d33e77ac6bfc95f86ad95957c4','a7a38514ad98628c1ea891a700b2fa84552afe391fbe186151881bad044817be','bad_mojo_redux','bad_mojo_redux','https://www.gog.com/game/bad_mojo_redux',0,'Pulse Entertainment','Night Dive Studios','Adventure',0,0,0),(1207664633,'Where Is My Heart?',0,0,0,0,0,'fe09a510e6da4b4d65e943566e23220c9fc3e99f89378ed87c09cc6917511a96','d6c34fa14dee0ca70bffcab134847370f02b0499939faec5e25f37b923222a98','where_is_my_heart','where_is_my_heart','https://www.gog.com/game/where_is_my_heart',0,'Schulenburg Software','Die Gute Fabrik','Action',0,0,0),(1207664673,'A Story About My Uncle',0,0,0,0,0,'b8b7c104fdff0270ca655559767a2538f17428110fcef099bdb4e1e2fac71dc3','b66ce6c825e2cb28027c5c31746c6ea61cdaf103afaeac318a6002cdb6adab3a','story_about_my_uncle_a','story_about_my_uncle_a','https://www.gog.com/game/story_about_my_uncle_a',0,'Gone North Games ','Coffee Stain Studios','Adventure',0,0,0),(1207664703,'Desktop Dungeons Enhanced Edition',0,0,0,0,0,'c5d6901bd17a95d2678f9c02df93e6080d3f09724ee09bbb16aed1ae4b5de214','d2ca9329f85407e06aa19ecf7b476c08a21bb28e3e1025d151b2e5e6ca97a71b','desktop_dungeons','desktop_dungeons','https://www.gog.com/game/desktop_dungeons',0,'QCF Design','QCF Design','Strategy',0,0,0),(1207664723,'Lifeless Planet Premier Edition',0,0,0,0,0,'3c45f16f69163e6a0b9cff18a3f14baccbeb38682eda78fb552f72299563c64c','93f7c47a47189d24b4fc0cc304d847e35af0fb3f6fb29651a5f06573eaaa0f87','lifeless_planet_premier_edition','lifeless_planet_premier_edition','https://www.gog.com/game/lifeless_planet_premier_edition',0,'Stage 2 Studios','Kiss','Adventure',0,0,0),(1207664743,'Gray Matter',0,0,0,0,0,'075e30080646db3361a64f4ed86848509e43fc796faca4e13a968f0c5517f5a4','533bdb0a4f900b7c39638faf72019a2fae0ec0292cef27d3ee2353e003cae1bb','gray_matter','gray_matter','https://www.gog.com/game/gray_matter',0,'WizarBox Production','Viva Media','Adventure',0,0,0),(1207664773,'Seven Cities of Gold: Commemorative Edition',0,0,0,0,0,'aec87baad5cf4582df58dfb9b50a594091c6b2d1fac81a264af123c72aa85ebe','19819791ed721347634984a8d1de81d59071a785fb294ffd5604d0e69e112758','seven_cities_of_gold_ce','seven_cities_of_gold_ce','https://www.gog.com/game/seven_cities_of_gold_ce',0,'Ozark Softscape','Ozark Softscape','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207664803,'Xenonauts',0,0,0,0,0,'56febf3ac5222f34bfdf9b4e8eae47fa9b25041cd5ef78e75e91dd62f2a49528','7c447037d5886bf89244b1b1aaae27203374bbe4f029ce82374214d9ac796a7a','xenonauts','xenonauts','https://www.gog.com/game/xenonauts',0,'Goldhawk Interactive','Goldhawk Interactive','Strategy',0,0,0),(1207664823,'Shovel Knight: Treasure Trove',0,0,0,0,0,'7c2859ff041fd2f93efa85242c32c1e133eb37a8af6e43fafd12935a7990c946','2bbdf08efd6017f5ad7d6411194249b917ae8e0c717a7ed39ae9a26978161458','shovel_knight','shovel_knight','https://www.gog.com/game/shovel_knight',0,'Yacht Club Games','Yacht Club Games','Action',0,0,0),(1207664833,'MouseCraft',0,0,0,0,0,'281f499102d06c471bfbac818587fd789d15794d85e5f35a04fcc34f60cb0c03','1b09f414c14820893e4976884a1c03586b661a27da1439ebf846abb77e4e6f5a','mousecraft','mousecraft','https://www.gog.com/game/mousecraft',0,'Crunching Koalas','Crunching Koalas','Strategy',0,0,0),(1207664843,'Space Pirates and Zombies',0,0,0,0,0,'e35a11cb483dc7cc029269432e694b2dcf3925e6ad5bb7233d7da9c78871e3e7','56e2ce4cba8709d11d0ebff431f9ac9bb237195ab3f6f3f334cc9918ace954fe','space_pirates_and_zombies','space_pirates_and_zombies','https://www.gog.com/game/space_pirates_and_zombies',0,'MinMax Games Ltd.','MinMax Games Ltd.','Action',0,0,0),(1207664863,'Anomaly Defenders',0,0,0,0,0,'94097d91dcf5c58fc403a69b50127436ef867737291b2c36d46722173e2dc6f0','3e6fc9e09dcc516073010f4ee540cb229bc88063d338eaae9f9dd334beab7472','anomaly_defenders','anomaly_defenders','https://www.gog.com/game/anomaly_defenders',0,'11 bit studios','11 bit studios','Strategy',0,0,0),(1207664873,'The Guild 2 Renaissance',0,0,0,0,0,'5cc2b35021f94689ab04ef2d0889cc094dfef3946a123b88278c329035e4c8ab','5b2a9b5e97423287a5c309925137d367b126e258c7f34cfceb1b14559c257da5','the_guild_2_renaissance','the_guild_2_renaissance','https://www.gog.com/game/the_guild_2_renaissance',0,'Runeforge','THQ Nordic GmbH','Simulation',0,0,0),(1207664883,'Gods Will Be Watching',0,0,0,0,0,'97ad5a2dc40b9c3a440c5b18bcab3cebe459f96c1954462a9994460dca6825d0','7ea1c77fa0a144ff4cac7f70e775272cbb3e215fddffa31ed3ffb701aa393cd4','gods_will_be_watching','gods_will_be_watching','https://www.gog.com/game/gods_will_be_watching',0,'Deconstructeam','Devolver Digital','Adventure',0,0,0),(1207664893,'Z: The Game',0,0,0,0,0,'04684beb5775a79ef06720c6a5e857a79440e6ddda91557ab24022c900f56c3e','5ce3429606f55c27e332547b395098d3945a721344a7480abc522d12c0c78975','z','z','https://www.gog.com/game/z',0,'TickTock Games','Kiss','Strategy',0,0,0),(1207664913,'The Black Mirror',0,0,0,0,0,'1163d3225e4f19d472ac03ee90f9dac5af4a87025525bc1008e55ff8ca6f3a98','7ec5407670cf479bd56ac9b0cacb14e12aed010097c95f68898d5d80981ef1aa','the_black_mirror','the_black_mirror','https://www.gog.com/game/the_black_mirror',0,'Future Games','THQ Nordic GmbH','Adventure',0,0,0),(1207664963,'Duke Nukem',0,0,0,0,0,'0a37df00d104340e700e8b2ab281e884acf515de22a55279e4a789c35d7236b8','f8f46032b63bd5a953add3b57c47c33c5d0aac15a7dc456cb0998011a1c4542b','duke_nukem','duke_nukem','https://web.archive.org/web/20151231054850/http://www.gog.com/game/duke_nukem_12',0,'3D Realms Entertainment','3D Realms','Action',0,0,0),(1207664973,'Duke Nukem 2',0,0,0,0,0,'f94f303182268007ef63eaf00a795204560c54f25a0be25a059b4b4b80951b42','bbf00c83e2d6593eca94ef2f53d9087e5c9a11f78bd65df3cd0f421b4e1346a3','duke_nukem_2','duke_nukem_2','https://web.archive.org/web/20151231054850/http://www.gog.com/game/duke_nukem_12',0,'3D Realms Entertainment','3D Realms','Action',0,0,0),(1207664983,'DROD RPG: Tendry\'s Tale',0,0,0,0,0,'00c67233ce76d0c6e2ed94ccb51f14e0b0a4fa4ef461e9176a9d3f5960e508a4','3b43a7dfc144fe25ba25a0413e587a9d5905a6ad89ddd18ee64854d8f84bdade','drod_rpg_tendrys_tale','drod_rpg_tendrys_tale','https://www.gog.com/game/drod_rpg_tendrys_tale',0,'Caravel Games','Caravel Games','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1207664993,'Quest for Infamy',0,0,0,0,0,'27be82b8b3e9cc20a6931bc56cbb117b28a68036316212f25cbd0c7b6d154092','01730d298f29dcea867717e7e607dc144d1d7c46d22565e3d445d39858457276','quest_for_infamy','quest_for_infamy','https://www.gog.com/game/quest_for_infamy',0,'Infamous Quests','Infamous Quests','Adventure',0,0,0),(1207665003,'Schein',0,0,0,0,0,'439fa728fcb671b7a73c494f89ed075d242e200702cb27acfea9171d27ccdcf6','c142740b2e2f2c36e674114e93ed0ec7c3b413e39a5234d037f5768687491b8c','schein','schein','https://web.archive.org/web/20170827213120/http://www.gog.com/game/schein',0,'Zeppelin Studio','Meridian4','Action',0,0,0),(1207665014,'Monster Bash',0,0,0,0,0,'b001b4f2b669bc18b7923b18c32197409ca16ddeb17ffbc2ee1aee03f4791c6b','7ac247cbfd9364a480d510daf76f8104ae611aa2ee7294c2288cfc4b7691ca20','monster_bash','monster_bash','https://www.gog.com/game/monster_bash',0,'Apogee Software, Ltd.','Apogee Software','Action',0,0,0),(1207665033,'OlliOlli',0,0,0,0,0,'7e2daa6d0039adbd7f3e36ec85de63266e34b52c9bc595c7a74dc00763619619','a5de2e23045b258edbd3fb6855f4a44cd5b4b2906d73cd20e6a9a3423ea315ce','olliolli','olliolli','https://www.gog.com/game/olliolli',0,'Roll 7 and General Arcade','Devolver Digital','Sports',0,0,0),(1207665043,'Black Mirror 2',0,0,0,0,0,'a36f8b1bf0f5de81baa0bf454ba6491f7bebdc8e73ec35805cf507c9faa9effc','3d77c8c1df1b1e4650ecff42f68e4703151ecd0f5b00f41a9d873f714760045e','black_mirror_ii','black_mirror_ii','https://www.gog.com/game/black_mirror_ii',0,'Cranberry Production','THQ Nordic GmbH','Adventure',0,0,0),(1207665053,'Unrest',0,0,0,0,0,'a7bd9b62daeaee5bfbe1d668f8aa1a230dacb8025ed5a5cf203867d15936dd15','7b4ac729e47652413a583d512d88f1ef63d0aaa2fbd180c6fe07b8862919f590','unrest','unrest','https://www.gog.com/game/unrest',0,'Pyrodactyl Games','Kiss','Role-playing',0,0,0),(1207665083,'The Legend of Heroes: Trails in the Sky',0,0,0,0,0,'a8d756078a63faff65d0964da16d38a98600dd5def90cc1daa9e4daa208721be','55e8d17b2d4dc2375da5975209a858581d6ffc7b1a43716daf57ff01b61808d9','the_legend_of_heroes_trails_in_the_sky','the_legend_of_heroes_trails_in_the_sky','https://www.gog.com/game/the_legend_of_heroes_trails_in_the_sky',0,'Nihon Falcom Corporation','XSEED Games','Adventure',0,0,0),(1207665123,'Mark of the Ninja',0,0,0,0,0,'f1ea18854e4198543f430c067d03e25f15b59c4caccf3316778896bca8a275c6','5b8da2189205e8a9361ae5399c135dcfc19104d68f2eaab7d4b50b8b95a4c47a','mark_of_the_ninja','mark_of_the_ninja','https://www.gog.com/game/mark_of_the_ninja',0,'Klei Entertainment','Klei Entertainment','Action',0,0,0),(1207665163,'Gone Home',0,0,0,0,0,'562116601bc84e3b9d0caf4ec0e6107cd8c240d58a98623fb9369c9a82c83a6a','c286f2b880a04885365291af4e55f9f074e4202b5a8bfc598c58b38c02f8559b','gone_home','gone_home','https://www.gog.com/game/gone_home',0,'The Fullbright Company','The Fullbright Company','Adventure',0,0,0),(1207665173,'Space Run: Fast and Safe Delivery',0,0,0,0,0,'1b7bf3a7fefbb4c254f432e8f7d5972beefd9187099f1593f47bae8da6ea641a','1ba5fd848dc48cf5a78e53337302b188274e511b3c4ce86ded63eac5d33184fd','space_run','space_run','https://www.gog.com/game/space_run',0,'Passtech Games','Focus Home Interactive','Strategy',0,0,0),(1207665183,'Tetrobot and Co.',0,0,0,0,0,'676349019ef41dd3535f2bd70cb20e43dbcabd02bef1e2b1217bc440451187c6','3684da4a877065a7b3b01401736f62e8c1985c08f2b1656db1f91d62f8dd9cad','tetrobot_and_co','tetrobot_and_co','https://www.gog.com/game/tetrobot_and_co',0,'Swing Swing Submarine','Swing Swing Submarine','Action',0,0,0),(1207665193,'Blocks That Matter',0,0,0,0,0,'203c6b54f0f349f45b40fe44acd03f2ff1ff2f8d0f5d5ddfed9dc6b0c016a603','723adb96945a9da7f3518701b1283f3f4e9efc01ee4977ba008105a8d7180f59','blocks_that_matter','blocks_that_matter','https://www.gog.com/game/blocks_that_matter',0,'Swing Swing Submarine','Swing Swing Submarine','Action',0,0,0);
INSERT INTO `games` VALUES (1207665233,'Sacred 2 Gold',0,0,0,0,0,'e5e17b2f1632062b06a5674564c0831c1d1f49ae6749f8d2bcf34aa5a8d24f07','d67f767c49f7b6feb210577b34238671c6783ec3a87264550baef2bace913489','sacred_2_gold','sacred_2_gold','https://www.gog.com/game/sacred_2_gold',0,'ASCARON Entertainment','Deep Silver','Role-playing',0,0,0),(1207665263,'Crawl',0,0,0,0,0,'7335a19965e10e84ce5330d9337078d404f2b29d13278e9a339e855e9ff1661e','afb74ed6cd2b015448514e8565d1acdd365d75893e1d0fa064f7355fe13ae269','crawl','crawl','https://www.gog.com/game/crawl',0,'Powerhoof','Fellow Traveller','Action',0,0,0),(1207665273,'Crystal Caves',0,0,0,0,0,'1f1893975063a12b4ca5062a1e69b6d4fadc1af7a7903117d2e724d8765d332c','272c4125f8c84d9ce49f77c3a8e83097d4f841b9bea2b261ddafcae331a21f9c','crystal_caves','crystal_caves','https://www.gog.com/game/crystal_caves',0,'Apogee Software, Ltd.','Apogee Software','Action',0,0,0),(1207665283,'Kingdom Rush',0,0,0,0,0,'c488bbc2a97bbf145760f6f26972441428f3a76d86cfd9a6887c83476b17103c','2744380b9ec2c1d54501ebe96c72d40d5db1ee46e73ea8676a5e3e113e558167','kingdom_rush','kingdom_rush','https://www.gog.com/game/kingdom_rush',0,'Ironhide Game Studio','Ironhide Game Studio','Strategy',0,0,0),(1207665293,'Crimsonland',0,0,0,0,0,'577882ff097949a1b16c88cee79f6d9cf8ec16b498b1ec71c2a5793d22f0a3e0','80f4adc10b876ec9dbbc959bc644b10feab1b9532a2368b941f547669ac6ae64','crimsonland','crimsonland','https://www.gog.com/game/crimsonland',0,'10 Tons','10 Tons','Action',0,0,0),(1207665313,'The Hugo Trilogy',0,0,0,0,0,'f49680369cf6cba8b407c33926bb7231737b1b55fd0e4c35d530bb065666eaa9','dabc11cebf185086a9bf1ed905694c7a716a32f7444480470049cefe1fddbc79','the_hugo_trilogy','the_hugo_trilogy','https://www.gog.com/game/the_hugo_trilogy',0,'Gray Design Associates','Gray Design Associates','Adventure',0,0,0),(1207665323,'AI War: Fleet Command',0,0,0,0,0,'44b893be51640110ad6a640811388f86330b014b70667713a53497346aa29fd1','672ed1e4ef68369b4bd07e83020735348ff1905ac9e3e272d18c104c0cad8721','ai_war_fleet_command','ai_war_fleet_command','https://www.gog.com/game/ai_war_fleet_command',0,'Arcen Games','Arcen Games','Strategy',0,0,0),(1207665363,'Challenge of the Five Realms',0,0,0,0,0,'223872b004513b80559fbd36b5d19829e399da7cedc20cfb844b283ee62637e6','65a0c0d8acb284d9836b498649a7358d53bff43f478745e74a955c61188c662a','challenge_of_the_five_realms','challenge_of_the_five_realms','https://www.gog.com/game/challenge_of_the_five_realms',0,'MicroProse','Retroism','Role-playing',0,0,0),(1207665483,'Wacky Wheels',0,0,0,0,0,'95400ccafacfad840b2ab7087938b871437808e6901e8d27c58fa3055681fcb3','594f961a7dc7d8263819aea18c089a539311845994c7117e17a87df376de1336','wacky_wheels','wacky_wheels','https://www.gog.com/game/wacky_wheels',0,'Beavis-Soft','3D Realms','Racing',0,0,0),(1207665503,'Terraria',0,0,0,0,0,'b34a334a6f4c621d71668c5483011a32bdef6c135e73dfa5f7a5c1c4517fee93','e635a84f91a1c7815c63e9a53e60c4dded2d0330ffa3f0e2ede20cd451631a5c','terraria','terraria','https://www.gog.com/game/terraria',0,'Re-Logic','Re-Logic','Action',0,0,0),(1207665513,'Q.U.B.E.: Director\'s Cut',0,0,0,0,0,'7676d14365344f543257b447691d412054053b28ebcbed687ba257c4974e7c45','5b39e83cf5bfe2d4c59aae8af9ed0a077a38d172831ed8b98874eddc37e53b15','qube_directors_cut','qube_directors_cut','https://www.gog.com/game/qube_directors_cut',0,'Toxic Games','Toxic Games','Adventure',0,0,0),(1207665523,'Astebreed Definitive Edition',0,0,0,0,0,'27cad771a414e505c872ed498aaefb37b0b3c039d8efb1fa32dceaa8d425dafb','0ea9133be1f4f1e4d09df6f7f7abcf6b3647acb2fcfb2b7b0324e487c44126fb','astebreed','astebreed','https://www.gog.com/game/astebreed',0,'Edelweiss','Active Gaming Media','Shooter',0,0,0),(1207665553,'Super Time Force Ultra',0,0,0,0,0,'15a1675da96c58e911a5bc5ddf0b8f1e06bc671ce4b354f42cc0126021fcfad6','435463abee070a3e4c862939cc0f5be1d01f1246452014693c7392275da06e71','super_time_force_ultra','super_time_force_ultra','https://www.gog.com/game/super_time_force_ultra',0,'Capybara Games','Capybara Games','Action',0,0,0);
INSERT INTO `games` VALUES (1207665563,'Cosmo\'s Cosmic Adventure',0,0,0,0,0,'c33186ea6d57c0ebf5acd5250f905f088f09b4d0bdaa2f4d6f57a467e70d33e8','fd34157d6bca32a850c5ef7a314d509ee1f2f96b8f3b19664e73fb46139c3b80','cosmos_cosmic_adventure','cosmos_cosmic_adventure','https://www.gog.com/game/cosmos_cosmic_adventure',0,'Apogee Software, Ltd.','3D Realms','Action',0,0,0),(1207665583,'MIND: Path to Thalamus Enhanced Edition',0,0,0,0,0,'202254c3bb5311ecf3d370e3ba031b79bb4a92d32718bd66c672b71afed49ad5','918a07e333d693ceda53675dd149400a5903e0df1bd6f444105c190485e71262','mind_path_to_thalamus','mind_path_to_thalamus','https://www.gog.com/game/mind_path_to_thalamus',0,'Carlos Coronado','Surprise Attack','Adventure',0,0,0),(1207665593,'Hogs of War',0,0,0,0,0,'f78e47c17696675b0de6f0c53c51eff690da3d5d5b7b0c595a2f3e49baf6bae2','f473c6e73bbd982fe841d7dedee8aa1fd8dc91abda78a52bec839cebca8ee5ee','hogs_of_war','hogs_of_war','https://www.gog.com/game/hogs_of_war',0,'Infogrames Studios','Urbanscan ','Strategy',0,0,0),(1207665623,'Hatoful Boyfriend',0,0,0,0,0,'b4cde31b723f168727631d0246d9ef0133b9259f9a77bd71ad25c98ba5dbbe7d','418503ccfe23195a73c9801e498dec5dd7923abbea88ceeed072913cd03fabc0','hatoful_boyfriend','hatoful_boyfriend','https://www.gog.com/game/hatoful_boyfriend',0,'Mediatonic','Devolver Digital','Adventure',0,0,0),(1207665653,'DROD 4: Gunthro and the Epic Blunder',0,0,0,0,0,'f562f7b53091e2da28e81933fdfc5040d751b29b5fb40b9e2b9cb2598e0e7f5b','49ca232eeaa6c84069f6f6e9a44803bf4e50018be5e4a136c977cddf4735c883','drod_4_gunthro_and_the_epic_blunder','drod_4_gunthro_and_the_epic_blunder','https://www.gog.com/game/drod_4_gunthro_and_the_epic_blunder',0,'Caravel Games','Caravel Games','Role-playing',0,0,0),(1207665663,'Superfrog HD',0,0,0,0,0,'d4b32a802ecae8dc713cb8ea8b7cc38bb2737a0f96367f4b3bed49c1bd6bcbee','67870178212345c0c6bd1e2aa96cdb9ddd8b0daa40e2708bb92265f567d56076','superfrog_hd','superfrog_hd','https://web.archive.org/web/20160313073604/http://www.gog.com:80/game/superfrog_hd',0,'Team17 Digital','Team17 Digital','Action',0,0,0),(1207665673,'Supreme Ruler 2010',0,0,0,0,0,'58eebadf7190259111248643afe8e58af9b01c64e9d887decf8d5c761320472e','d742dfd45aafba5b13bc444d6e6b2c984bf9015f7a908be7c07a78fe85d62ce3','supreme_ruler_2010','supreme_ruler_2010','https://www.gog.com/game/supreme_ruler_2010',0,'Battlegoat Studios','Battlegoat Studios','Strategy',0,0,0),(1207665683,'DROD: The Second Sky',0,0,0,0,0,'391d5b2ddc0be10ba7cddda99c83818d4dad18c5725ac486ebd054160703a29e','bc24c3c5510d8837f656d3707fa36a14a581998a31ed92b00ca433c05db5c7c5','drod_the_second_sky','drod_the_second_sky','https://www.gog.com/game/drod_the_second_sky',0,'Caravel Games','Caravel Games','Role-playing',0,0,0),(1207665703,'Defender of the Crown',0,0,0,0,0,'13c45267d98b310fcd8013f07fa02de321ad3e15ee6c90ec5baa6e6afe7e86a2','ff2a2aad4ac811264b68eb593f536857e1cc261e4e0d3555a3ab2bb2b7e543c6','defender_of_the_crown','defender_of_the_crown','https://www.gog.com/game/defender_of_the_crown',0,'Master Designer Software','Cinemaware','Strategy',0,0,0),(1207665733,'Guacamelee! Super Turbo Championship Edition',0,0,0,0,0,'5369b09aaaeac2798b73d8727aaf3f92a8b62903e199f3af2fb553f22f66a7d4','5b83f1f7ba53fc59a8595a9651543d34f4477b882f1b31d952061a67c41b7ad1','guacamelee_super_turbo_championship_edition','guacamelee_super_turbo_championship_edition','https://www.gog.com/game/guacamelee_super_turbo_championship_edition',0,'DrinkBox Studios','DrinkBox Studios','Action',0,0,0),(1207665803,'Revenant',0,0,0,0,0,'88d9c06c63b36084900053b0ab61b525584252a3d4b0b70abcb97bb4ec7a7f23','9ef2d2d6e795259126eb3e8be2d9987040fc670d16f478390efea4caa9ef5fa7','revenant','revenant','https://www.gog.com/game/revenant',0,'Cinematix Studios','Square Enix','Role-playing',0,0,0),(1207665813,'Reprisal Universe',0,0,0,0,0,'5cc9ddd9a6aad842dcb411bf5abb5ea49f0450903f503c7774415be914e1f0c2','b6ed7c08dcde2a273649d74daad8544464a4b1eedfe73ab4bfcdc84ba62b8926','reprisal_universe','reprisal_universe','https://www.gog.com/game/reprisal_universe',0,'Electrolyte','Last17','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207665823,'Shadowgate',0,0,0,0,0,'457e52099dc4c64ee7febc2e95cb8ed10a105f03790e0766e6fe20c0c79f1cab','b0c508932310d23d6d6bccaf647e548d4e3d38d8363c857c900a998c72b8ae89','shadowgate','shadowgate','https://www.gog.com/game/shadowgate',0,'Zojoi','Reverb Triple XP','Adventure',0,0,0),(1207665863,'Spacecom',0,0,0,0,0,'2b25d01a5c9e50981c09cf438d0e76161992370a8c4529bf63eecdab6d3bdb71','a2b6549d63f34549dcb15dffddec68441c16da7723c101f6e60e8da7d7905018','spacecom','spacecom','https://www.gog.com/game/spacecom',0,'Flow combine','11 bit studios','Strategy',0,0,0),(1207665873,'Vangers',0,0,0,0,0,'caeb7d5428193d202eeaa5ac951d291dc7f187f05d5dee7704b39a3d25488bdf','3348bfb3db7e41d40e8e237e517a729fa59320551c85ae90a987192c434b086b','vangers','vangers','https://www.gog.com/game/vangers',0,'K-D Lab Game Development','KranX Productions','Racing',0,0,0),(1207665883,'Aliens versus Predator Classic 2000',0,0,0,0,0,'d14e3610124e8231dcd70be67b00f7f668d676787422830d684533776f77afdc','e854105bd88512c8761651f44a4833ba7479fa5241bb9615eed79b6e005fa6a0','aliens_versus_predator_classic_2000','aliens_versus_predator_classic_2000','https://www.gog.com/game/aliens_versus_predator_classic_2000',0,'Rebellion','Rebellion','Shooter',0,0,0),(1207665903,'Drox Operative',0,0,0,0,0,'34ca9aefbd8a6d3bc3a99e3dddf041d9d867afa22a1fc69b18d2337066be7575','660ef5efbc4795996c7bec06264d858f0217b07adfc9ec8495d2ba0784c95469','drox_operative','drox_operative','https://www.gog.com/game/drox_operative',0,'Soldak Entertainment','Soldak Entertainment','Action',0,0,0),(1207665923,'Din\'s Curse',0,0,0,0,0,'b82ee3e96caf302125f67fe696e010cd64352c4039c1da0a1a04a842ba2017a1','b757564758e4b8f81f84c34a7dce621dc7712f760e9a366de5286d15e7a0bbe1','dins_curse','dins_curse','https://www.gog.com/game/dins_curse',0,'Soldak Entertainment','Soldak Entertainment','Action',0,0,0),(1207665973,'Magicmaker',0,0,0,0,0,'0fb6e21a6f1868783cd3490041c97e7ca06541b79ddb23d544c0b461793ea85b','fd09d6d39587e7a263ae4c1c2e41f3cf2602aee276aa6d998f345f913050ce34','magicmaker','magicmaker','https://www.gog.com/game/magicmaker',0,'Tasty Stewdios LLC','Tasty Stewdios LLC','Action',0,0,0),(1207665993,'Neverending Nightmares',0,0,0,0,0,'370aa7fd89fc5c386a0c028281ce8ade6b2cb0ce01f81d6b1930257c8ea3caa1','d7757bd6c83b7df73c3d54a869f5047dec71b9cf7e3bf06d03174e8391322e60','neverending_nightmares','neverending_nightmares','https://www.gog.com/game/neverending_nightmares',0,'Infinitap Games ','Infinitap Games','Action',0,0,0),(1207666003,'Meridian: New World',0,0,0,0,0,'324cebaecc86a29af6a180cb3337bf06202f5bd06a38eba4cf8588ae1629f655','dfcbd9e75986d3650699f8296e469cf2d8fe35203225bbe6272a43dee771a2e2','meridian_new_world','meridian_new_world','https://www.gog.com/game/meridian_new_world',0,'Elder Games','Headup Games','Strategy',0,0,0),(1207666023,'Raiden III Digital Edition',0,0,0,0,0,'cdc4456ec728717da0cc1c0482edbb9874a8af4dceb8c62f342fdb4d6d07a5d3','7e407e6a77d121da487aafe309aed36cdec89578c05b3d5ad8dc64b5f712178b','raiden_3_digital_edition','raiden_3_digital_edition','https://www.gog.com/game/raiden_3_digital_edition',0,'Moss Co., Ltd. ','H2 Interactive','Shooter',0,0,0),(1207666043,'Mitsurugi Kamui Hikae',0,0,0,0,0,'821c2396a9cd63f20c518d1df6f4277cbcc0c42d5adf93f010ec2e9fa61816ca','da04e688a989319b8bf35214be9e0ec40cadccdf2c5501dcc352374c2e979d94','mitsurugi_kamui_hikae','mitsurugi_kamui_hikae','https://www.gog.com/game/mitsurugi_kamui_hikae',0,'Zenith Blue','Active Gaming Media','Action',0,0,0),(1207666073,'Akalabeth: World of Doom',0,0,0,0,0,'56262850671fd7232b8ff46deba530007ff7a437fab0ddd67147f8d41aa6bca0','cea5455ba5381633e55b763dea6c2ea6acc996c14b0889bf0fe4a213ee91aaf6','akalabeth_world_of_doom','akalabeth_world_of_doom','https://www.gog.com/game/akalabeth_world_of_doom',0,'Richard Garriot','Richard Garriot','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1207666093,'Nosferatu: Wrath of Malachi',0,0,0,0,0,'2cde65d8982a5d4ee732bff1855e6e801bf56ebcb5df56e791093fa966f1b830','834ad85caa7bad0606d648796eff8d9fcd052d83e225e6f0400af46d7849a531','nosferatu_wrath_of_malachi','nosferatu_wrath_of_malachi','https://www.gog.com/game/nosferatu_wrath_of_malachi',0,'Idol FX AB','Blue Moon Red Owl','Shooter',0,0,0),(1207666113,'Gex',0,0,0,0,0,'cbf478a02d086e4c43fdece5550f8e67066ae467b3d67fa28f6b53eaa362978e','5db55f48afaac13ed083568f095303711c3c5700842b7e76ecbaf2133343024f','gex','gex','https://www.gog.com/game/gex',0,'Crystal Dynamics','Square Enix','Action',0,0,0),(1207666123,'Starpoint Gemini 2',0,0,0,0,0,'edc3a364fd9efcd9630d9151dda691e4a129b2be2a1b50c8137a485151604a38','034129fa3b9f4322218b24f6d649c21b54bf2a4c2a02423a7bc9e13d78a85bd1','starpoint_gemini_2','starpoint_gemini_2','https://www.gog.com/game/starpoint_gemini_2',0,'Little Green Men Games','Iceberg Interactive','Action',0,0,0),(1207666183,'The Void',0,0,0,0,0,'71be357a057077d55fe61826d0c588ee898bfe5bc0a71acbe37dcc934ee84ff4','24c271aad14e104f85b93a7fddf0f8ddcfb60366f172aba6d79f46d2e79c06a3','void_the','void_the','https://www.gog.com/game/void_the',0,'Ice-Pick Lodge','Ice-Pick Lodge','Adventure',0,0,0),(1207666193,'Legend of Grimrock 2',0,0,0,0,0,'703418927a91a3a95ee728489202963983a0e67beaaa0cd7212fdcba239b31a1','61396676df1fc178d369a77b62a04f7c916f137e744d91fb1451eaa3354cd049','legend_of_grimrock_2','legend_of_grimrock_2','https://www.gog.com/game/legend_of_grimrock_2',0,'Almost Human','Almost Human','Role-playing',0,0,0),(1207666213,'A Golden Wake',0,0,0,0,0,'6b8617b8cd6ce994130c16175140871089fceaa15772e0951a8f9e02655fa6c2','e7c0608f17b06dbfcceed3a71a4e49138ae654c666477da456010ab65d0ef70a','a_golden_wake','a_golden_wake','https://www.gog.com/game/a_golden_wake',0,'Grundislav Games','Wadjet Eye Games','Adventure',0,0,0),(1207666233,'Infested Planet',0,0,0,0,0,'36d52ae06322f4958e3b3b6401bab198048b738d515237d633503083261bca33','dc9fee548f5ffa6009ce6d6a1851b14312e52456a160775dbe1a3b1e8be96605','infested_planet','infested_planet','https://www.gog.com/game/infested_planet',0,'Rocket Bear Games','Rocket Bear Games','Strategy',0,0,0),(1207666243,'TRI: Of Friendship and Madness',0,0,0,0,0,'da4d59b312e19bb740c415b3c34875fc57427c4cdbb9a3036664dd27b6080107','05be6fd40f6109970ca05e112a9968155f52305055931719211c0b1964eb1a71','tri','tri','https://www.gog.com/game/tri',0,'Rat King Entertainment','Rising Star Games','Adventure',0,0,0),(1207666253,'Secret of Monkey Island™: Special Edition, The',0,0,0,0,0,'403b5d6a1ea47ea41969f8930ffb5b14a2edafb5ef1439303c06bb2559275825','c4942dcfae952344a6f6847019751274416fdc3c7946724d3ebf6b7dab80e9fd','the_secret_of_monkey_island_special_edition','the_secret_of_monkey_island_special_edition','https://www.gog.com/game/the_secret_of_monkey_island_special_edition',0,'Lucasfilm','Disney','Adventure',0,0,0),(1207666283,'STAR WARS™: Knights of the Old Republic',0,0,0,0,0,'61a5a59b9feb118d2e2b018de69976e6c0e3c10c5fa7c31a7f922c730b89d5a6','63481cf5d25ccdfa1dfa4e8734521f599e08555e9719f5cdee9cc1ca1e538b20','star_wars_knights_of_the_old_republic','star_wars_knights_of_the_old_republic','https://www.gog.com/game/star_wars_knights_of_the_old_republic',0,'Lucasfilm','Disney','Role-playing',0,0,0),(1207666293,'Indiana Jones® and the Fate of Atlantis™',0,0,0,0,0,'6f924e3ee726f1dc6cbcb981d247d7c5d89430c97347a11d1d49f66e6eb30890','ea8e9e5edcc36fa7c5c4566e113c5b6ba128e9a5181db6ff35df44ea7e13f2a7','indiana_jones_and_the_fate_of_atlantis','indiana_jones_and_the_fate_of_atlantis','https://www.gog.com/game/indiana_jones_and_the_fate_of_atlantis',0,'Lucasfilm','Disney','Adventure',0,0,0),(1207666303,'Sam & Max Hit the Road',0,0,0,0,0,'b1a7c721ba24609926c4d8456cbfed158bc3318696a549c989f32bdac3ab4e85','0f9dc5fedc50bb7e0ef06a7308ffc51a8fe8ccbeb05c726e5ab7e261b096c29f','sam_max_hit_the_road','sam_max_hit_the_road','https://www.gog.com/game/sam_max_hit_the_road',0,'Lucasfilm','Disney','Adventure',0,0,0);
INSERT INTO `games` VALUES (1207666333,'Dead State: Reanimated',0,0,0,0,0,'321e36cc880af5f107ed325fb158ca1ce90ca32fa69d0e011c458681800479b2','3bba56f021bb954aa0bf76d3a77dc499dd0a248775b41dbaedcf2678bfae372a','dead_state','dead_state','https://www.gog.com/game/dead_state',0,'DoubleBear Productions','DoubleBear Productions','Role-playing',0,0,0),(1207666353,'Baldur\'s Gate: Enhanced Edition',0,0,0,0,0,'90ba7463dae94110fd495957a6311648a6e1999bab1a0fcc2d5176b3f46141e8','1ca0d935dc9e2902b9a998957e0157928564989ac1b675ad29f626fa3170ea6e','baldurs_gate_enhanced_edition','baldurs_gate_enhanced_edition','https://www.gog.com/game/baldurs_gate_enhanced_edition',0,'Beamdog','Beamdog','Role-playing',0,0,0),(1207666373,'Baldur\'s Gate II: Enhanced Edition',0,0,0,0,0,'865e412024677b4594a91ea7cc3da75077ce8114adc26d5b92cb82c7f9b4509f','06d6af4f1a8763c26337760e436d2e709546fa680f72f96f6cd7ada7b3927ecd','baldurs_gate_2_enhanced_edition','baldurs_gate_2_enhanced_edition','https://www.gog.com/game/baldurs_gate_2_enhanced_edition',0,'Beamdog','Beamdog','Role-playing',0,0,0),(1207666383,'STAR WARS®: X-Wing (1993)',0,0,0,0,0,'6db5512ece23a89b47ca93fd34a52f1ec88710909e8b39b1b3fde50f5f85b67f','68f0d6dc82a4e69dd2f231b49d62ab51ecf91f8de18dc6e760bb386c08863cba','star_wars_xwing_1993','star_wars_xwing_1993','https://www.gog.com/game/star_wars_xwing_special_edition',0,'Lucasfilm','Disney','Action',0,0,0),(1207666393,'STAR WARS®: X-Wing (1998)',0,0,0,0,0,'fdf672380f7f23c87e2460c6f287c0964aa08fd317f60e7b064c56318e582545','ca6f8e1fdac61dd367daf5b7cfd011cf03fa36b35927606cd7852cd808113048','star_wars_xwing_1998','star_wars_xwing_1998','https://www.gog.com/game/star_wars_xwing_special_edition',0,'Lucasfilm','Disney','Action',0,0,0),(1207666403,'STAR WARS®: TIE Fighter (1994)',0,0,0,0,0,'4b0c9163f1336e3fd1c81fe291ec4d24ff3e7e93cdbcf0d8b41226e4fbb1c219','4939615d0d2857ecb579c831ec7c520fea690381674daf90b49d8895b87791b1','star_wars_tie_fighter_1994','star_wars_tie_fighter_1994','https://www.gog.com/game/star_wars_tie_fighter_special_edition',0,'Lucasfilm','Disney','Action',0,0,0),(1207666413,'STAR WARS®: TIE Fighter (1998)',0,0,0,0,0,'88e02470c364cdae77c8a1c9f6edf6d12d9f54180d803cadfdafe006ae4d45c9','f2da0f59de1c4a778802fcd86c7d91d3527c21aa58b94535a18fa8055c03c117','star_wars_tie_fighter_1998','star_wars_tie_fighter_1998','https://www.gog.com/game/star_wars_tie_fighter_special_edition',0,'Lucasfilm','Disney','Action',0,0,0),(1207666423,'Wings!™ Remastered Edition',0,0,0,0,0,'e2e917c4845629cc7f7d1f0fc4665d5ba7c189a1a104de03f77493c639d6d0e0','cb52b3498fd4067d51e182c29838b0662d408633da0f3786118e5747e9dd29e6','wings_remastered','wings_remastered','https://www.gog.com/game/wings_remastered',0,'Cinemaware','Kalypso','Action',0,0,0),(1207666433,'Gabriel Knight: Sins of the Fathers – 20th Anniversary Edition',0,0,0,0,0,'4cff1723252d45a5b5298b536607e7000eb020cd6d2bf674feae7e2800495675','40a0c136c6f83eb5fe5f670f2eaf66211c470b88764f23943ccf0137e5f721ad','gabriel_knight_sins_of_the_fathers_20th_anniversary_edition','gabriel_knight_sins_of_the_fathers_20th_anniversary_edition','https://www.gog.com/game/gabriel_knight_sins_of_the_fathers_20th_anniversary_edition',0,'Phoenix Online Studios','Pinkerton Road','Adventure',0,0,0),(1207666453,'Smugglers V: Invasion',0,0,0,0,0,'c8c29bd649c5eba344d5900fc93b36aa6be63e6b9d41f8007008efbd17ee5ade','309e761810b96c73aa06151eeac2d1975565a1227d6844972451325ebc464b28','smugglers_v_invasion','smugglers_v_invasion','https://www.gog.com/game/smugglers_v_invasion',0,'Niels Bauer Games','Highcliffe Media Publishing','Role-playing',0,0,0),(1207666463,'Door Kickers',0,0,0,0,0,'d3fe3a53a2b0599a0aa0991d076d9d40acbda2f2c33d1d472549bc9555e64ed0','becbf7f29d59c0a4571241beaebb000bc653f36d6ba7e44f64b09c3979e1c970','door_kickers','door_kickers','https://www.gog.com/game/door_kickers',0,'KillHouse Games','KillHouse Games','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207666473,'Wings (Emulated Amiga Edition)',0,0,0,0,0,'3b4ae08e729089a66c3f7a42481e85070da1ce1861edd75f35533a75cbd0cc01','b36ee5b9d9a41de919d168bba678be0f1c95715cbca4a119c11c38a5193c0bf7','wings_classic','wings_classic','https://www.gog.com/game/wings_classic',0,'Cinemaware','Cinemaware','Action',0,0,0),(1207666493,'Screencheat',0,0,0,0,0,'872ca41277ee3bf2057e573f28041d8800297dd40fea0e869f9ac82285d6dd0b','d6ca84fcbc6c5a0ef2e40db8fc18e9542fcbba7790eb371f7b1fb100e92cb782','screencheat','screencheat','https://www.gog.com/game/screencheat',0,'Samurai Punk','Fellow Traveller','Shooter',0,0,0),(1207666503,'Dreamfall Chapters: The Final Cut',0,0,0,0,0,'aa2b5959aa8416629672ebf27f79b78c8d44f24aab6670cadb77dd2127148d43','251f4923d479dbed5e8fbd674872a3a0be065064ca793b7242a0e04390a19000','dreamfall_chapters_season_pass','dreamfall_chapters_season_pass','https://www.gog.com/game/dreamfall_chapters_season_pass',0,'Red Thread Games','Red Thread Games','Action',0,0,0),(1207666523,'Tales of Maj\'Eyal',0,0,0,0,0,'99cdc5d3e0e6fb0bb96ef28dd9ed11f648c25e0967946cb30b62160dfea3dd6e','9d64d01726af3499298ce8035e748e12c87d93c7b89f7af4a0d60263604bd907','tales_of_majeyal','tales_of_majeyal','https://www.gog.com/game/tales_of_majeyal',0,'Netcore','Netcore','Role-playing',0,0,0),(1207666533,'Halfway',0,0,0,0,0,'53627131afe85ae02732f8c362a27e5109f6d9d1d22dc8caf05ba2205b151bf8','9babe3f910f1705cb6ef70b7070a74b076101fc3e740c730598c081497a68273','halfway','halfway','https://www.gog.com/game/halfway',0,'Robotality','Chucklefish','Strategy',0,0,0),(1207666553,'Randal\'s Monday',0,0,0,0,0,'f7ccdaceeec2584bbec1f4248186e39c5b8184b1abbadba91906fd953e56cb55','b69b030965cdd0021dfc9986f59b6d960b6f045ec7ba208115eaa5f67a88e4c4','randals_monday_base_game','randals_monday_base_game','https://www.gog.com/game/randals_monday',0,'Nexus Game Studios','Daedalic Entertainment','Adventure',0,0,0),(1207666563,'Pier Solar and the Great Architects',0,0,0,0,0,'d8ad93d5ffa7a86ea0577b4a1877d9c0e8e8db7e5abdd4d3cf80c54e725af143','9c53888b4a7190bd33d5a6191f483c3639e34aec3f3e88f7269c3fde4e13e3c0','pier_solar_and_the_great_architects','pier_solar_and_the_great_architects','https://www.gog.com/game/pier_solar_and_the_great_architects',0,'WaterMelon','WaterMelon','Role-playing',0,0,0),(1207666573,'Kromaia',0,0,0,0,0,'985e552928f5ba6d5d1d76c0dc92732ea9f06ce1b0164d11b5ba31006c22df3d','26b2ef9d6ff473079408b97ff1172322c070c67138da786b67809a0b5139a93f','kromaia','kromaia','https://www.gog.com/game/kromaia',0,'Kraken Empire','Rising Star Games','Shooter',0,0,0),(1207666623,'Supreme Ruler 2020 Gold Edition',0,0,0,0,0,'75d45d3f64c11cfef1b848e9a114e36ce96289a6ecbddbbf7459daab59a6d907','d5467681bfd9d89da22735e567637d0939827be6f421d8a594734fcb8ebcc6d8','supreme_ruler_2020_gold_edition','supreme_ruler_2020_gold_edition','https://www.gog.com/game/supreme_ruler_2020_gold_edition',0,'Battlegoat Studios','Battlegoat Studios','Strategy',0,0,0),(1207666633,'Toonstruck',0,0,0,0,0,'ea856a7a7d3e2f6e68e3dff58127424d3404173bf611264d5898450f57f0c360','4d433578ba5662dfdb2b5ebed5e66b0fea667b56799aecbf281d492fea05fcde','toonstruck','toonstruck','https://www.gog.com/game/toonstruck',0,'Burst','Interplay','Adventure',0,0,0),(1207666643,'Crimzon Clover: World Ignition',0,0,0,0,0,'93328318ed2be580672c118ef6c591e40a028106b58132771429858665da6cda','d22879886857c6e40d81b085b713f81a2e86839950db2b2b5c683aa35ff441c2','crimzon_clover_world_ignition','crimzon_clover_world_ignition','https://www.gog.com/game/crimzon_clover_world_ignition',0,'Yotsubane','Degica','Shooter',0,0,0),(1207666683,'Icewind Dale: Enhanced Edition',0,0,0,0,0,'07b99d39695f0b08d82487a86cfb784fe880da91dd53c0dc9269017a069c22f9','d880df28629714033f0244da528cf7585dab5354c9e4c9f7b1cd9868402fd567','icewind_dale_enhanced_edition','icewind_dale_enhanced_edition','https://www.gog.com/game/icewind_dale_enhanced_edition',0,'Beamdog','Beamdog','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1207666703,'Devil\'s Dare 悪魔の挑戦',0,0,0,0,0,'788e0bd0c2c929a857d3bf0f752ce587acb1f6ac63d800d7c3892e6edac349ec','cd648dcc7936fa7ce817bfc2aea49f351fd6abe9e42bb3f278e3eb2b48036f0a','devils_dare','devils_dare','https://web.archive.org/web/20160314082629/https://www.gog.com/game/devils_dare',0,'Secret Base Pte Ltd','Secret Base Pte Ltd','Action',0,0,0),(1207666713,'Dragon Wars',0,0,0,0,0,'37834464acb43b7aec3a4e1ce66cf50de1be1cad0cde6ad8236a468f8b3a301a','d5e0cc3b0a973e7eab50fbd166130fd14054a95db46eba2571973a3897e71e1b','dragon_wars','dragon_wars','https://www.gog.com/game/dragon_wars',0,'Interplay','Interplay','Role-playing',0,0,0),(1207666743,'Lovely Planet',0,0,0,0,0,'3d3ea0dfdd4aa1a3d5f1fd24d0fba20828733a6127e848e7365afd878bd21ab3','23770fa4db61cdfc661d95f97a062a84782332062e428087a4d5deb08805d02b','lovely_planet','lovely_planet','https://www.gog.com/game/lovely_planet',0,'QUICKTEQUILA ','tinyBuild','Shooter',0,0,0),(1207666773,'Rocket Ranger (Emulated Amiga Edition)',0,0,0,0,0,'770ce152eea58367088dc75fb2149161aa4fa43e1089d895c6dfb0149abe628b','ef8d1567f776176d01277c543a6f28c69d5c84d29c860927cbaebee260ebad23','rocket_ranger_emulated_amiga_edition','rocket_ranger_emulated_amiga_edition','https://www.gog.com/game/rocket_ranger_emulated_amiga_edition',0,'Cinemaware','Cinemaware','Action',0,0,0),(1207666783,'A Bird Story',0,0,0,0,0,'e0d58db9850a43fe73b057a13f0ea2d5f8be7f996d6a3f2a4a81647758a3bcaf','bf4b4e2fd1f382e106e65835e292d62c869cfca71fbe68f75d0a0206380e67f3','a_bird_story','a_bird_story','https://www.gog.com/game/a_bird_story',0,'Freebird Games','Freebird Games','Adventure',0,0,0),(1207666813,'Pillars of Eternity',0,0,0,0,0,'686ecf388cc275d5c6a16b40a57d80eaf50d5c887c7d3510b4a648d7a2d64285','a3ba8dd3e698c20183298bb60a9d126b39710886ab8298e24d764c3a1775d5cd','pillars_of_eternity','pillars_of_eternity','https://www.gog.com/game/pillars_of_eternity_definitive_edition',0,'Obsidian Entertainment','Paradox Interactive','Role-playing',0,0,0),(1207666873,'This War of Mine: Soundtrack Edition',0,0,0,0,0,'826af0f6b6c1375daf0c0fc80c2ef410fad35eaccb8399c5b5f8500e98a4b3d5','188d75b7ffb889380c393d4779b3a4acafd7ac5eac76b2d640964593549d48e5','this_war_of_mine','this_war_of_mine','https://www.gog.com/game/this_war_of_mine',0,'11 bit studios','11 bit studios','Action',0,0,0),(1207666883,'The Witcher Adventure Game',0,0,0,0,0,'5bc58089e14771de0c1b872c529c8b8b150b87fe28c7e4db1856389526849bb3','500832686c8d52e5567f1226b7785ef582efb8bf9d6b351f7a539f39c7fb3a9d','witcher_adventure_game','witcher_adventure_game','https://www.gog.com/game/witcher_adventure_game',0,'Can Explode','CD PROJEKT RED','Adventure',0,0,0),(1207666893,'Mount & Blade',0,0,0,0,0,'bced566d8b7737abffd69f7b200a99d0f9b6acb844d7746c54a940771a800534','c34b8c432c3778bf3ce3a3ce3222b4121491422ea7c98e6aa1a993cd8b4f575a','mount_blade','mount_blade','https://www.gog.com/game/mount_blade',0,'TaleWorlds Entertainment','TaleWorlds Entertainment','Role-playing',0,0,0),(1207666903,'Mount & Blade: With Fire & Sword',0,0,0,0,0,'58e5e0f96fe4c9ca2214aeddcb105d8530b5e0b44cc7c7d54f6936ccb986c947','1879234ccd0f3382e0cc3caf9b06e10a28a3616e38e58a4f4577d86c90bc31fc','mount_blade_with_fire_sword','mount_blade_with_fire_sword','https://www.gog.com/game/mount_blade_with_fire_sword',0,'TaleWorlds Entertainment','TaleWorlds Entertainment','Role-playing',0,0,0),(1207666913,'Mount & Blade: Warband',0,0,0,0,0,'f2f7906e9f14d1e804fa23b2e431cdf582879b79e72dc462e7edf95444215400','903f45d2ddaa90cae590159f525c7cbe3a2a9c5ea8eec96e5ce8585ac8c2fa53','mount_blade_warband','mount_blade_warband','https://www.gog.com/game/mount_blade_warband',0,'TaleWorlds Entertainment','TaleWorlds Entertainment','Role-playing',0,0,0),(1207666943,'Agarest: Generations of War',0,0,0,0,0,'c37704157d5e32d57e2f58c817a7bb783666cc4c10bdbc64b186760859cce1bf','385957e93090954f3817a28e1c17d32ebf96d57dce97dd3912aaef6e29c85f59','agarest_generations_of_war','agarest_generations_of_war','https://www.gog.com/game/agarest_generations_of_war',0,'Idea Factory','Ghostlight LTD','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1207666963,'Shadows: Heretic Kingdoms',0,0,0,0,0,'d000da7028b9f9e0f3b43123cad2235ba85b6680c043afe6cdd4067601c8f4ee','debb1184b61738e9c7f4c3a4a88f360f7485c84bcbb98088d4d9c807c890a94f','shadows_heretic_kingdoms','shadows_heretic_kingdoms','https://www.gog.com/game/shadows_heretic_kingdoms',0,'Games Farm','Kalypso Media Digital','Action',0,0,0),(1207666973,'Marvellous Miss Take, The',0,0,0,0,0,'47a37fd890130b2ead5b0b0709d94009ef9ef641fbb4669c433fb5ba1f927d33','5f3f45b55c72185d0107508a072bfb551fd136799194f244711c41380c9c4176','the_marvellous_miss_take','the_marvellous_miss_take','https://www.gog.com/game/the_marvellous_miss_take',0,'Wonderstruck','Rising Star Games','Action',0,0,0),(1207667013,'Freedom Planet',0,0,0,0,0,'77941728f2cd386aa3a3acd97e28fb4818e0004beb5b5d10c556aa643b00ad7f','767a21d9cacac8ef579e734b5e07cd2e4cdadc79f108d2ca74ebb5c6f84abca3','freedom_planet','freedom_planet','https://www.gog.com/game/freedom_planet',0,'Galaxy Trail','Galaxy Trail','Action',0,0,0),(1207667043,'Mortal Kombat 1',0,0,0,0,0,'e0d4f4e0f8267630efa11375b4223c9180082218dd3d26a3085fa75471b42867','85bc500fa4fb31b65d18c8845b079cdf105fe2d591fa930e965affc6a85eb5d3','mortal_kombat_1','mortal_kombat_1','https://web.archive.org/web/20150215220947/https://www.gog.com/game/mortal_kombat_123',0,'Midway Games','Warner Bros. Interactive Entertainment','Action',0,0,0),(1207667053,'Mortal Kombat 2',0,0,0,0,0,'68dca4bf4e144bac0d87c7f597df36a3bd7f9ae8c951a768f82c707581d5c295','12181a74aafd0c11c6846d2e94707cb5df30a8a7b61b94c20a2b151a9615c937','mortal_kombat_2','mortal_kombat_2','https://web.archive.org/web/20150215220947/https://www.gog.com/game/mortal_kombat_123',0,'Midway Games','Warner Bros. Interactive Entertainment','Action',0,0,0),(1207667063,'Mortal Kombat 3',0,0,0,0,0,'14d3a8f7c84d4eb446caf83071d5c98c99edf01452788086d382cf802c859fbd','33c3f9489bcc297ecffd08c2b53db57226363a262959e36ba3d6258ff8082365','mortal_kombat_3','mortal_kombat_3','https://web.archive.org/web/20150215220947/https://www.gog.com/game/mortal_kombat_123',0,'Midway Games','Warner Bros. Interactive Entertainment','Action',0,0,0),(1207667073,'Pixel Piracy',0,0,0,0,0,'2da965f7f3436fa4cb56d587ddc1304172703bc1a2124a993a294a5ab29ab642','464555f67b38b9836e25e3d715dbe94d949d4b254b73879be7575aab100e1e4a','pixel_piracy','pixel_piracy','https://www.gog.com/game/pixel_piracy',0,'Quadro Delta','Quadro Delta','Adventure',0,0,0),(1207667083,'King\'s Bounty: Warriors of the North',0,0,0,0,0,'8ffa6ec718ea6f412d09634fd04d1ff7ff83905a064a6ad331b70b2527c1daa6','bf5f4bffe0068cdedfca26f1ea90a14829e0c2fd07838fd78977f91cc6c62b61','kings_bounty_warriors_of_the_north','kings_bounty_warriors_of_the_north','https://www.gog.com/game/kings_bounty_warriors_of_the_north',0,'1C-Softclub','1C Publishing','Role-playing',0,0,0),(1207667103,'Lumino City',0,0,0,0,0,'1babfef91c60e86f82b44fa5cc5f55da261c997cc6ded026450cc40b4b4ab383','0dde5cc1ccfd8541a857eacd7fdb0276b8748a8510a5a5386abf98b32853db99','lumino_city','lumino_city','https://www.gog.com/game/lumino_city',0,'State of Play Games','State of Play Games','Adventure',0,0,0),(1207667113,'Space Rangers HD: A War Apart',0,0,0,0,0,'ef3dee73194d966492b1d1b422d1c9c11b18addf799bc1d074f40be93c80c6ca','82c9b0f3f4563b279457c2fec2a2334913d14f2c4194318bcb02a268ae222b6d','space_rangers_hd_a_war_apart','space_rangers_hd_a_war_apart','https://www.gog.com/game/space_rangers_hd_a_war_apart',0,'SNK-Games Ltd.','1C Publishing','Strategy',0,0,0),(1207667123,'Anomaly 2',0,0,0,0,0,'e3f54b2d0d8ac2348181f669331fcfa91a60de6c4684c9ab41c138c3fc02093c','8e27cbecb437b3f7e2cb23d8036e625af9c7b6d3fd5a57c7d3a811802677d0b7','anomaly_2','anomaly_2','https://www.gog.com/game/anomaly_2',0,'11 bit studios','11 bit studios','Strategy',0,0,0),(1207667133,'Anomaly Korea',0,0,0,0,0,'17ddf40657eef75ed824bd9721626dbcb0c1bedcabd8bcac6c46163c1e06480c','4610c5ab7997c309e036e79500cd7e66b4f26b0fe737f44be425c025166514d3','anomaly_korea','anomaly_korea','https://www.gog.com/game/anomaly_korea',0,'11 bit studios','11 bit studios','Strategy',0,0,0);
INSERT INTO `games` VALUES (1207667143,'Anomaly Warzone Earth Mobile Campaign',0,0,0,0,0,'2248acd9627e0d937704f54d45d2e4cf1cfab5f01f64bae2d76694e04f4604e2','0f6e93b4f01810f40bd65de77301b0d7e5303d522bc8c5fa9afe23e01507f1b7','anomaly_warzone_earth_mobile_campaign','anomaly_warzone_earth_mobile_campaign','https://www.gog.com/game/anomaly_warzone_earth_mobile_campaign',0,'11 bit studios','11 bit studios','Strategy',0,0,0),(1207667163,'The Way',0,0,0,0,0,'4f6c3d9fc73ac9cdad653ee0603d5f80dc11a9e74f12919dc238f6779e146998','a8b2ea331dacb83100fa8e00e3c17d8e008bae04d12553a0e3c5aa919897c08c','the_way','the_way','https://www.gog.com/game/the_way',0,'Puzzling Dream','PlayWay','Adventure',0,0,0),(1207667183,'Grim Fandango Remastered',0,0,0,0,0,'95910410e5529a2355205f99a459c2c5ef1186cb741d40eb41bf7dcaa9690823','8ce25a8cdbc73c34246fac31fd9a5f1a22c692baed8556835edcbad8d8146cb7','grim_fandango_remastered','grim_fandango_remastered','https://www.gog.com/game/grim_fandango_remastered',0,'Double Fine Productions','Double Fine Productions','Adventure',0,0,0),(1207667193,'Braveland Wizard',0,0,0,0,0,'1ef6eab305d252173128be6fa82d3c6dd680feb0f50df8840fd224e9ec556304','26e876ad2da7cce4ed63da88673a3c1d78208b52ea3d86e8011d7113c48dc7e6','braveland_wizard','braveland_wizard','https://www.gog.com/game/braveland_wizard',0,'Tortuga Team','Tortuga Team','Strategy',0,0,0),(1207667203,'Metrocide',0,0,0,0,0,'5982853801fbf81b120ae18f6c3030a29591f0aa7ebc94dacacc20738dcd51ed','6bb546e5c9ff787a2d09a3345897a6217be695be7499b7fc76ad4b8b91b0d026','metrocide','metrocide','https://www.gog.com/game/metrocide',0,'Flat Earth Games','Flat Earth Games','Shooter',0,0,0),(1207667213,'STAR WARS®: X-Wing Collector\'s CD (1994)',0,0,0,0,0,'561db77486dda36259bd805ad7f00baf2ca6bbd086f72ee0f71e9beca9a2a2a6','eb18d6b259d83f008e213e0e2e448d32ab72d07f8c74d819b5de4a88a6220e98','xwing_cdrom_placeholder','xwing_cdrom_placeholder','https://www.gog.com/game/star_wars_xwing_special_edition',0,'Lucasfilm','Disney','Action',0,0,0),(1207667223,'STAR WARS®: TIE Fighter Collector\'s CD (1995)',0,0,0,0,0,'1a661809cdf3d3b038c2a123a29afc02687aa3a269f8ad6630c3a3afae4d4335','a94097000d1bfd176805a0acffc659df01e6a8ffdece3f8818262146d6ef5cb7','tie_fighter_cdrom_placeholder','tie_fighter_cdrom_placeholder','https://www.gog.com/game/star_wars_tie_fighter_special_edition',0,'Lucasfilm','Disney','Action',0,0,0),(1207667233,'Blackguards 2',0,0,0,0,0,'a1c21181e8ba9132b9ad5dc39e495e2777b2070d2cd8edb8b3b00657ecab42fc','57b2a0c638c504b35bd29ea9561553b3a76a56f9e7583a3e3219e9749480e273','blackguards_2','blackguards_2','https://www.gog.com/game/blackguards_2',0,'Daedalic Entertainment','Daedalic Entertainment','Role-playing',0,0,0),(1207667263,'NEO Scavenger',0,0,0,0,0,'5041c2a0765eb07fe45542ed3a7debe930c2bc384a4132b6afa05c8acbb6085e','bf5e7daa28ac68425db941912b9d0a7427b4b216f9c908c4141224145e8ef365','neo_scavenger','neo_scavenger','https://www.gog.com/game/neo_scavenger',0,'Blue Bottle Games','Blue Bottle Games','Role-playing',0,0,0),(1209307763,'The Red Strings Club',0,0,0,0,0,'cb0d8d261888e17c70c05c66c95b2e641db60d5625f14328b6b5d8c4e6e0851d','34a3dca82e736841b8b9bd64ae6018a298d511cad359da57d79b9755761a1ba4','the_red_strings_club','the_red_strings_club','https://www.gog.com/game/the_red_strings_club',0,'Deconstructeam','Devolver Digital','Adventure',0,0,0),(1211269088,'Vaporum',0,0,0,0,0,'95b1b5a99e3bdb036d94b60bb74b18968922d7468cca2a749f85c32046e2920e','67b66064e0740e53964e86668286cd126492c0ecb9e727038bafbae63b83ff56','vaporum','vaporum','https://www.gog.com/game/vaporum',0,' Fatbot Games, s. r. o.',' Fatbot Games, s. r. o.','Role-playing',0,0,0),(1212103132,'Rusty Lake Hotel',0,0,0,0,0,'0976d59e44faaad01ee6aa107fdfdd3648d59580adbdfb02a092bcafc2447682','1bd5aa0ba525fc681761bb905c6489f231f6924dd47f93527d92c1a03cb24da9','rusty_lake_hotel','rusty_lake_hotel','https://www.gog.com/game/rusty_lake_hotel',0,'Rusty Lake','Rusty Lake','Adventure',0,0,0);
INSERT INTO `games` VALUES (1216103455,'Ankh - Anniversary Edition',0,0,0,0,0,'7918e715bf170ccf50441332a13382f26f0a55d95d16fe87fc136eeb8bfbfd0b','9c1c9c19ff238ca3c6b4e7e896b83096dd8d18c83a5f2025cf91bb8fec0aca75','ankh_anniversary_edition','ankh_anniversary_edition','https://www.gog.com/game/ankh_anniversary_edition',0,'Deck13','Deck13','Adventure',0,0,0),(1218352612,'Zombasite',0,0,0,0,0,'d42521271b9247e6f4da19609060f6dca967fa2c1b22e968d7f42d12cc0a09ef','25fa37a6a055531948c6a7a8c73779defbe5313c2f909f348a061efb7775e814','zombasite','zombasite','https://www.gog.com/game/zombasite',0,'Soldak Entertainment','Soldak Entertainment','Action',0,0,0),(1221699317,'NEO TURF MASTERS',0,0,0,0,0,'8f2cdf8c62e5ff581bb0baf9877803db81d04d650de13779b0a71139849cae11','3c058f9f9c6a4d1bd3b03dbb915770e6819926864f972a89f8fd0ecac8a684db','neo_turf_masters','neo_turf_masters','https://www.gog.com/game/neo_turf_masters',0,'SNK CORPORATION','SNK CORPORATION','Sports',0,0,0),(1223053864,'Overcooked: Gourmet Edition',0,0,0,0,0,'3de511f611d938f1a877fb2d244e1c9403ce41bc6007263fc440c80ecb75df9b','58c6abca58e500e68b0da216e365cb2cd1e1b7c7d70f6cf63d84506011173787','overcooked_gourmet_edition','overcooked_gourmet_edition','https://www.gog.com/game/overcooked_gourmet_edition',0,'Ghost Town Games Ltd.','Team17 Digital LTD.','Simulation',0,0,0),(1223700729,'Paradigm',0,0,0,0,0,'415ed850ed0919e94886a1dceff234b4907606691e03cbefef99cfe913370a18','4916d36ad8e5682aa89a0c5cc976df923fe29bb1a92861198b95cad0f887a39d','paradigm','paradigm','https://www.gog.com/game/paradigm',0,'Jacob Janerka','Jacob Janerka','Adventure',0,0,0),(1225157693,'Oriental Empires',0,0,0,0,0,'2e85cf3892473d377aaf9c512798ed9c85a4c0775b0be74de0d5cfaaf0b0533e','d86d842d31a18e0af7a8e02aceb8b1662fd2058d1eb739fc20c0bf98a6ea1517','oriental_empires','oriental_empires','https://www.gog.com/game/oriental_empires',0,'Shining Pixel Studios','Iceberg Interactive','Strategy',0,0,0),(1226193907,'Mutant Year Zero: Road to Eden',0,0,0,0,0,'03897643b71ff806a6578de0cd411f910d70680bbec116897bb2c3bafc69aeb2','3289fdf1418589fb6dc21e909397e55f3fd622c6ac40f681ec9615f8d133ff66','mutant_year_zero_road_to_eden','mutant_year_zero_road_to_eden','https://www.gog.com/game/mutant_year_zero_road_to_eden',0,'The Bearded Ladies','Funcom','Strategy',0,0,0),(1226880572,'FATAL FURY SPECIAL',0,0,0,0,0,'75e0fa44d8e08befe24bc1bf6a9d7099092eea1fbe883c9a9cdf24739f3d84d6','1db44f7b19f061b54d7865091faf98f7581f9e242d5e02fb460ac654291b02c6','fatal_fury_special','fatal_fury_special','https://www.gog.com/game/fatal_fury_special',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(1227508735,'Princess Evangile W Happiness',0,0,0,0,0,'e45b504155eed7482059d0c4f4c9e37c69192cb816a12816ff54e0038bc561e0','c9cd92dfbd66e618830637a65c1dd340ed08cb43ad3331ec125993ce5489a3c1','princess_evangile_w_happiness','princess_evangile_w_happiness','https://www.gog.com/game/princess_evangile_w_happiness',0,'MOONSTONE','MangaGamer','Adventure',0,0,0),(1228964594,'Soldier of Fortune II: Double Helix - Gold Edition',0,0,0,0,0,'9766f6e6a86f9d2b69eb6d2b305de862a57d7ec14fde83cbe837ea321e1d7028','6e6d0c3202a3f3bd5ff23af7705bbc514740b0a8805d05f0fe1f740d4a94c12c','soldier_of_fortune_ii_double_helix_gold_edition','soldier_of_fortune_ii_double_helix_gold_edition','https://www.gog.com/game/soldier_of_fortune_ii_double_helix_gold_edition',0,'Raven Software','Activision','Shooter',0,0,0),(1230154140,'Mother Russia Bleeds',0,0,0,0,0,'580ae9e51f8c4d57d874cb43cfe56032dd17c8c56a8389fa633481e8b2bff1ec','a44897cb8bff72f41297304c38065428a032a0354f554976eafbb158bb5f6cb4','mother_russia_bleeds','mother_russia_bleeds','https://www.gog.com/game/mother_russia_bleeds',0,'Le Cartel Studio','Devolver Digital','Action',0,0,0);
INSERT INTO `games` VALUES (1230412827,'Deadlight: Director\'s Cut',0,0,0,0,0,'e8785dec6b2029bdf87ec50174c4c960cd195a5296fe679178e3c39cd7c73b7d','9a9ea4bd4e2c659632cc3887704edd0e36dfa370a7e8b0403ee3b88a58205fa1','deadlight_directors_cut','deadlight_directors_cut','https://www.gog.com/game/deadlight_directors_cut',0,'Tequila Works / Abstraction Games','Deep Silver','Action',0,0,0),(1230646427,'Fossil Echo',0,0,0,0,0,'4c8e2350a960ff1c2dbed6af0ae21f9896e90a47161ec74b1f33b3c943b0e763','f367c60185beb571a93f1f4336d048cbbca2986c3a6b71a4de07770fbf34870c','fossil_echo','fossil_echo','https://www.gog.com/game/fossil_echo',0,'Awaceb','Awaceb','Adventure',0,0,0),(1231141443,'HYPERGUN',0,0,0,0,0,'886e56828ae2d67c8138e6274c7b495a5fc2fec07a3064299d458c9dcf52ddbd','0b9e27f3eaea12f1d3b69fa2bf989bae47d477931ecd0efdbd19c56a46a516a4','hypergun','hypergun','https://www.gog.com/game/hypergun',0,'NVYVE® Studios','NVYVE® Studios','Action',0,0,0),(1231448648,'Monolith',0,0,0,0,0,'5b32ae969b5f966b98861178cd520017a0b26904a93208ba76029a636ce5c607','a345950edefe34f29d65df5272a8ff2ac90daefe3b2f82760a55c15183800ccd','monolith','monolith','https://www.gog.com/game/monolith',0,' Team D-13',' Team D-13','Action',0,0,0),(1232053269,'Train Valley',0,0,0,0,0,'0bb9d2c06084024276aece8acdc908ff0fac7100888087cebd383cb2d9bdb8af','889f95412cc8da2c57f89e0eb0c052fe8747724948d424703127bc4ed9812421','train_valley','train_valley','https://www.gog.com/game/train_valley',0,' Alexey Davydov, Sergey Dvoynikov, Timofey Shargorodskiy','Flazm','Simulation',0,0,0),(1232664301,'Airships: Conquer the Skies',0,0,0,0,0,'bdfbdc1eee9c7ab19196722962c0a837c17fbca8708234509c983a514974bb87','5f5e927249b0c4e311594422f58be0a7156cd0e94e04b78abb1cb27a847faca0','airships_conquer_the_skies','airships_conquer_the_skies','https://www.gog.com/game/airships_conquer_the_skies',0,'David Stark','David Stark','Strategy',0,0,0),(1232677182,'Hegemony III: Clash of the Ancients',0,0,0,0,0,'a77e8d78bc197cc79461d29c782691d41f8934b5aeb2e5f06d7997c86a098f54','13cd23c9aa4297437bca92fa5001d160ac6fc2fd3ea393c636cc97d300193513','hegemony_iii_clash_of_the_ancients','hegemony_iii_clash_of_the_ancients','https://www.gog.com/game/hegemony_iii_clash_of_the_ancients',0,'Longbow Games','Longbow Games','Strategy',0,0,0),(1234975363,'Perception',0,0,0,0,0,'7f54330bd1bf16ff385e013942d664e1063f9d537f398c0d1cb9000e946d38ae','72828f1576a68ae68e25a2dc28cce34c9ce8fe25c23ab0888c2c12b008a920c2','perception','perception','https://www.gog.com/game/perception',0,'The Deep End Games','Feardemic','Adventure',0,0,0),(1235333794,'Nowhere Prophet',0,0,0,0,0,'99e5e18f0969092c1a145b1927049790b55e4eb08bc7d735b75f270942001adc','396c9fe39e8d61d0f07def02c08547415df2089a728e2a5b9327981f323d1290','nowhere_prophet','nowhere_prophet','https://www.gog.com/game/nowhere_prophet',0,'Sharkbomb Studios','No More Robots','Strategy',0,0,0),(1235934261,'Zombotron',0,0,0,0,0,'b8f047842ab8d4d2442d31ed68a2f111fd37b9c9b8d3c4fe016babbead7dd54d','f25c0b140d0e87ff852d320207b9366b0e15e964a06c423a6ada8e0ae9e1224c','zombotron','zombotron','https://www.gog.com/game/zombotron',0,'Ant.Karlov','Armor Games Studios','Action',0,0,0),(1236689966,'Party Hard',0,0,0,0,0,'62d0c3168f537c6681a1a2ce6f0d2c19ebb5d84369a1017e76310e2c4fa6ce89','94249e7a895f634a8743d8d802f30a7bd11fce30c5f547b2a473b40b8d640831','party_hard','party_hard','https://www.gog.com/game/party_hard',0,'Pinokl Games, Kverta','tinyBuild','Action',0,0,0),(1237807960,'Dead Cells',0,0,0,0,0,'0d0f7d38ec5227d8dfc2cf8a675ad644ce436b42b77484a95b735e91a34dcff1','3dc6e2c7267288c179ba9b452620de4e375d5e8247795db44b678a4f387b4159','dead_cells','dead_cells','https://www.gog.com/game/dead_cells',0,'Motion Twin','Motion Twin','Action',0,0,0),(1238653230,'Factorio',1,0,0,0,0,'fd1f632099404d13bb4a9c2ce3f1284e92058e00078b28baf5e6858887e5c505','41c9ceca520c1441d0d5596ed5ecc67d4f5184e1ac4608cd4ad6272a449c9b8d','factorio','factorio','https://www.gog.com/game/factorio',0,'Wube Software LTD','Wube Software LTD','Strategy',0,0,0);
INSERT INTO `games` VALUES (1239584357,'Brothers in Arms: Earned in Blood™',0,0,0,0,0,'cf5e05180a4798c99940835aafe73e681fe993fd3155f17048cbe800e35e600a','c1fb5f41018ccbd68458aef3a415189f5c8a93c929b0d36cec252973b73d4eda','brothers_in_arms_earned_in_blood','brothers_in_arms_earned_in_blood','https://www.gog.com/game/brothers_in_arms_earned_in_blood',0,'Gearbox Software','Ubisoft','Shooter',0,0,0),(1240786865,'Production Line',0,0,0,0,0,'d4d962b4a7b45e571937ed91ca44b3ba9df50f6179d0d467dc7287b0286d9ba5','ffa77e32bc593fa9f0e54576e015c2bb074ea75f796c9eed8d42c1fd06ee5f14','production_line','production_line','https://www.gog.com/game/production_line',0,'Positech Games','Positech Games','Simulation',0,0,0),(1241813850,'METAL SLUG 2',0,0,0,0,0,'9fc5b0c3b63f68f267cbc0799b166f890ffa6c91d9a4c6933bd9ec91c53f283f','cbd5c861e39e08a91fe1f617a582b737d96cd02fbe5ef84599e5189f583fa85c','metal_slug_2','metal_slug_2','https://www.gog.com/game/metal_slug_2',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(1242384383,'Dragon\'s Dogma: Dark Arisen',0,0,0,0,0,'584f5d8883c707f2c1c8a0e47c91174b4269b1c2748e2241d3df42739339d5af','c75d43d1ca6bbf8ee02addf8e4434c5622c64f0b28d75c2416413cf323055868','dragons_dogma_dark_arisen','dragons_dogma_dark_arisen','https://www.gog.com/game/dragons_dogma_dark_arisen',0,'Capcom','Capcom','Role-playing',0,0,0),(1244052225,'ArcaniA',0,0,0,0,0,'604fdd9371b7cb54a1ed66cd8674bf31ccfb7463637a9f20c696a96e3210101c','557b135677d3a39b3173c4da5a4c9435b5e9773facadb297e8e453a3dd3d6a2e','arcania','arcania','https://www.gog.com/game/arcania',0,'Spellbound Studios','THQ Nordic GmbH','Action',0,0,0),(1244373161,'The Darkside Detective',0,0,0,0,0,'5e26c5b2986213c5f98d22e05d7f063ebaf2b78f8e65992aee156b8cda8e3676','ac5bd21e2d4c4a8e9f53a29e44387ee36cbe5d5e6528eec4c14831fd6ed7a1a4','the_darkside_detective','the_darkside_detective','https://www.gog.com/game/the_darkside_detective',0,'Spooky Doorway','Spooky Doorway','Adventure',0,0,0),(1244437707,'WORLD END ECONOMiCA episode.01',0,0,0,0,0,'8c197316cf00fd826f86c3db55af5227dc29d1851c2f8a31a2a5618893e8b5fc','4eca827b4c9a85c5c068a2bf4698233b69336293f4bb6a51810d396feb9d3127','world_end_economica_episode01','world_end_economica_episode01','https://www.gog.com/game/world_end_economica_episode01',0,'Spicy Tails','Sekai Project','Adventure',0,0,0),(1246233780,'fault - milestone one',0,0,0,0,0,'621589870dd94e2c1feac4fc05af60f644891032e3994665a6198d9052e14a46','6a970573941ab8607e9764d51b26dcfe3d2ba970d0eeb26912e838dc4d188254','fault_milestone_one','fault_milestone_one','https://www.gog.com/game/fault_milestone_one',0,'ALICE IN DISSONANCE','Sekai Project','Adventure',0,0,0),(1246381210,'Pikuniku',0,0,0,0,0,'8a00026186a92125265f56006bab13eddf3ce4eab0dee74f4a81c429cda1fcbf','adafa47e9b87da5f7a4c6b8151d5fa9378d90c67601e418d653359ca0f1994f0','pikuniku','pikuniku','https://www.gog.com/game/pikuniku',0,'Arnaud De Bock, Rémi Forcadell, Alan Zucconi, Calum Bowen','Devolver Digital','Adventure',0,0,0),(1246703238,'Darksiders III',0,0,0,0,0,'dda744fe5709db9c6a5de973474c5e4d5f8dd1dd857031d94a9e936e445b5599','1d803c00c4f378affac454dab61da1de721f4c4ccd1e61618488aec6b838e694','darksiders_iii','darksiders_iii','https://www.gog.com/game/darksiders_iii',0,'Gunfire Games','THQ Nordic GmbH','Action',0,0,0),(1248282609,'Fallout 3: Game of the Year Edition',0,0,0,0,0,'ba4ee4cbc04910b91f58115d2dbb5a0fecb6819b7d8abe6176e6300e9200ca48','e00c83a1923a0a845901a899a9e83b0178bb2b48ead062c45388fc90831f29a4','fallout_3_game_of_the_year_edition','fallout_3_game_of_the_year_edition','https://www.gog.com/game/fallout_3_game_of_the_year_edition',0,'Bethesda Game Studios','Bethesda Softworks LLC','Role-playing',0,0,0),(1248581604,'Sudden Strike Gold',0,0,0,0,0,'704a820d99298028ed9b8cb36a0dafb2d94278cfc83f3243cbc3f5e6f8ca8bee','159fab96c14bcb25b5ffe0a3a6d4bcbdea4351788138f7f1c5c7b85a8a227a63','sudden_strike_gold','sudden_strike_gold','https://www.gog.com/game/sudden_strike_gold',0,'Fireglow','Kalypso Media Digital','Strategy',0,0,0);
INSERT INTO `games` VALUES (1249357357,'The Journey Down: Chapter Two',0,0,0,0,0,'33d3e2ce2e09d5f62f5800f8f31fe2f5a7b4a1b01b27ff5939415193d7bd0520','46621300541076d28e239f9125ef4cfc6ace66a59dfc4cbc8bbe8c7b1a8df552','the_journey_down_chapter_two','the_journey_down_chapter_two','https://www.gog.com/game/the_journey_down_trilogy',0,'SkyGoblin','SkyGoblin','Adventure',0,0,0),(1249629735,'Ne no Kami: The Two Princess Knights of Kyoto',0,0,0,0,0,'410a9675c90fc1d959681c3415816d218a54299e8fde81ced0836d5d9033edfb','c13a2dc2b0ef5dba7db7d082d0b6593a39fab934114bc28855469896fe53634e','ne_no_kami_the_two_princess_knights_of_kyoto','ne_no_kami_the_two_princess_knights_of_kyoto','https://www.gog.com/game/ne_no_kami_the_two_princess_knights_of_kyoto',0,'Kuro Irodoru Yomiji','Sekai Project','Adventure',0,0,0),(1250913100,'Feudal Alloy',0,0,0,0,0,'ec1bfbb2e68e87234d2b131279f4efdcdfdf853804dc1e8d4aae7985055e73a6','8a9909d0cc877c98d7a2c81ed507cbfc76c67fd2d2a37704557c8cc76f634484','feudal_alloy','feudal_alloy','https://www.gog.com/game/feudal_alloy',0,'Attu Games','Attu Games','Action',0,0,0),(1251397362,'Hidden & Dangerous Action Pack',0,0,0,0,0,'f66fc3949b1c619280129a52d52cb192f48a8c6ca4e7ea158263436da15f9356','9ed2adca3e0bef295f74dbee387dbb59f3b09cdbb412fc58c5ef86cf5d2c5f6d','hidden_dangerous_action_pack','hidden_dangerous_action_pack','https://www.gog.com/game/hidden_dangerous_action_pack',0,'Illusion Softworks','2K Games','Action',0,0,0),(1252295864,'CrossCode',0,0,0,0,0,'e2c6641351abb0bd4c9e97c3506cde372365a3efac06df0e9734624928dc3035','cc44e9d7553aed38d3d939dcf6bf89df2e059bbfccdae8e8dc3ccccca4dfef3c','crosscode','crosscode','https://www.gog.com/game/crosscode',0,'Radical Fish Games','Deck13','Action',0,0,0),(1252846125,'Infinium Strike',0,0,0,0,0,'5bbcf1bb196d8e4db188407be0e541425bd039d0d99e0608340dcb8676f2ef06','8c1e4a71b959bc8a6eaa47116715a7b8780b8152a88fea3ded9ec4fc321d491a','infinium_strike','infinium_strike','https://www.gog.com/game/infinium_strike',0,'Codex Worlds','1C Publishing','Action',0,0,0),(1253505782,'Marvel’s Guardians of the Galaxy: The Telltale Series',0,0,0,0,0,'88d53c69d08b94ded12075c4e7fbc2a3009c66eab832cfa8f957268dca60aeef','57b47fd0b68e5a678e7247a75600670928cd3ce347d4e0e3b2bf8f506e09c7cc','guardians_of_the_galaxy','guardians_of_the_galaxy','https://www.gog.com/game/guardians_of_the_galaxy',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1254027184,'Oddworld: Munch\'s Oddysee',0,0,0,0,0,'cc9985c6196cfbdf8e98fdc543f18f39e6c389c982e164d6880abe18140b8570','ed3d9e3d7c55f7c3048d4ccfaa13ff08207d3c9a913f5fbef78857e061f8a5f8','oddworld_munchs_oddysee','oddworld_munchs_oddysee','https://www.gog.com/game/oddworld_munchs_oddysee',0,'Oddworld Inhabitants','Oddworld Inhabitants','Action',0,0,0),(1254614904,'Imperium Galactica II: Alliances',0,0,0,0,0,'edbfe441d2140b075e90e6d7cd033b614a940d33ed33a5510675d2b13c8672e8','87127c25d5fa6ee25d85967a257fe199b08f8ce838f5fb0763dbfd2743fabc6a','imperium_galactica_ii_alliances','imperium_galactica_ii_alliances','https://www.gog.com/game/imperium_galactica_ii_alliances',0,'Digital Reality Software','THQ Nordic GmbH','Strategy',0,0,0),(1259063039,'Killing Time',0,0,0,0,0,'aee9275709afd678aae9cfe48c948b31bc60f04229e701f5820decb4a3156564','690ce4b767eb00ee5b1349fb0550f74c29bbdce4322932678494b19613779484','killing_time','killing_time','https://www.gog.com/game/killing_time',0,'The 3DO Company','Retroism, Prism Entertainment','Shooter',0,0,0),(1259329786,'Rise of Industry',0,0,0,0,0,'b2cc91c7d33eecca283c32b1517d56570624756cdede2ec33e6f2ece38581e25','299122470cf512215cb8445daabbea7aa2ff44c5767907ef189d1ec2e46f2c91','rise_of_industry','rise_of_industry','https://www.gog.com/game/rise_of_industry',0,'Dapper Penguin Studios','Kasedo Games','Strategy',0,0,0),(1263289061,'Nantucket',0,0,0,0,0,'74786cb80e3c77b67a432e259731e09e6fa80220e4d889c1ef35f4e5d5544304','a65966e28044632517c7486b67a0a5559cab10603f185b76e84745a7f95d6f19','nantucket','nantucket','https://www.gog.com/game/nantucket',0,'Picaresque Studio',' Fish Eagle','Strategy',0,0,0);
INSERT INTO `games` VALUES (1263414276,'SAMURAI SHODOWN II',0,0,0,0,0,'1964a15c347892dea6af3d9465046b8aa240124563dc041283e2f6458eea6d5d','8ba05b0296927d2f48cbc9b0f28e139f9de66e258a2d4504e252a3ecfd8d604a','samurai_shodown_2','samurai_shodown_2','https://www.gog.com/game/samurai_shodown_2',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(1264767742,'Serial Cleaner',0,0,0,0,0,'07071f3ac788fcc14de8961316fa5d3e110375637cd5c0e0898f6b9b6c722c57','64092e7413e3c823d046a00fa9a2dfe4655b4423f0b61a70358b9589add10fbd','serial_cleaner','serial_cleaner','https://www.gog.com/game/serial_cleaner',0,'iFun4All S.A.','Curve Digital','Action',0,0,0),(1266051739,'Tyranny',0,0,0,0,0,'7f048a38d31381c4217b957844cb14766aa4fca7008ffe13960c075feacb5eac','348b8815ba9eb4adc75f0d044a42df89499d702cc33c49f7ddbbfb9e5526da3b','tyranny_game','tyranny_game','https://www.gog.com/game/tyranny_commander_edition',0,'Obsidian Entertainment','Paradox Interactive','Role-playing',0,0,0),(1266995554,'Wizards & Warriors',0,0,0,0,0,'c15735c97e8ab1117ab2bbe3a152c8bde3ae3f75788667ee10d22d59a3bc9027','efadd8d10f8ad4e7a249c65345fe302b14c4ae226279e5ffd7119c3022d38b8b','wizards_warriors','wizards_warriors','https://www.gog.com/game/wizards_warriors',0,'Heuristic Park','Activision','Role-playing',0,0,0),(1268302405,'Jalopy',0,0,0,0,0,'eccabeb2ed31fa10c3b291dae28d7eba9af83899ccf84d77e578234ea42ea54f','d0bc346b682f981cbf3d66743b6225fdbd51d83847ad28e13b5add9104ccc2de','jalopy','jalopy','https://www.gog.com/game/jalopy',0,'Greg Pryjmachuk','Excalibur Games','Simulation',0,0,0),(1268478205,'The Suffering',0,0,0,0,0,'078055d917a1ccdbc56337e1ffd42428c0cec58f11ddc397c4e3f7ff570ce901','3dab82e7bcdbe97a34942bf6fdc3c55ce5dc1b07d51e788f7ef81de2fadbd2a0','the_suffering','the_suffering','https://www.gog.com/game/the_suffering',0,'Surreal Software','Warner Bros. Interactive Entertainment','Shooter',0,0,0),(1269268081,'BioShock™ Remastered',0,0,0,0,0,'d7c53ae24dda92505d853037f2f67c13dba40ab1d05a39ebb6c45ac96dd516e1','8cf1d52d72c164d53c1e47ac3f4033866471499c74bcc6c9acb299314d74b633','bioshock_remastered','bioshock_remastered_game','https://www.gog.com/game/bioshock_remastered',0,'2K Marin, 2K China, Digital Extremes, 2K Australia, Blind Squirrel','2K Games','Shooter',0,0,0),(1270716073,'The 7th Guest: 25th Anniversary Edition',0,0,0,0,0,'880ec43b6eefedcaabd667023f86279e3a8be58d10a88088c42617860edc97a7','3b2c73c5959342a207deef5998fc4afa5c8a2a299870c6e8b2d0aae7329e3166','the_7th_guest_25th_anniversary_edition','the_7th_guest_25th_anniversary_edition','https://www.gog.com/game/the_7th_guest_25th_anniversary_edition',0,'Mojo Touch, Trilobyte Games','MojoTouch','Adventure',0,0,0),(1271058609,'Crossing Souls',0,0,0,0,0,'2120962fc4038d8b7dfd26624b0d53a467d67b393fc74da9663eaad7b91dd309','0a566ebeb33dbe6d3fd7cfc3930705931dce7a5f5d4c2d98428b65adae08971f','crossing_souls','crossing_souls','https://www.gog.com/game/crossing_souls',0,'Fourattic','Devolver Digital','Action',0,0,0),(1271998194,'Herald: An Interactive Period Drama - Book I & II',0,0,0,0,0,'df42b81f12f6ac6905d519675176903435443793dd95167cc5349bff55c91710','f00709e5045791fa3c14817058b5fbfe8b05259c880aecf06abf8f315cac9f61','herald_an_interactive_period_drama_book_i_ii','herald_an_interactive_period_drama_book_i_ii','https://www.gog.com/game/herald_an_interactive_period_drama_book_i_ii',0,'Wispfire','Wispfire','Adventure',0,0,0),(1272721020,'The Last Leviathan',1,0,0,0,0,'55a6359bb7c6558c366dba84bb814b181e3eb944ed7c70fa800ee2751b8e06ef','8f06047e2d5b26c16009fa7c4eeeb98c0cc64536432dc368cf249774cdffe1c6','the_last_leviathan','the_last_leviathan','https://www.gog.com/game/the_last_leviathan',0,'Super Punk Games','Super Punk Games','Simulation',0,0,0),(1273513892,'Rescue HQ - The Tycoon',0,0,0,0,0,'82b524026813bfdbcedaf35d8b3b14da572ce7489d3cb51b49c467e3e447a2b4','0d6e41775959a21015007ed7b7c3d01327d106ab020d5f9edf8640c64df9b2e9','rescue_hq_the_tycoon','rescue_hq_the_tycoon','https://www.gog.com/game/rescue_hq_the_tycoon',0,'stillalive studios','Aerosoft GmbH','Simulation',0,0,0);
INSERT INTO `games` VALUES (1275264927,'The Humans 3',0,0,0,0,0,'7db3a7917cf8956d3e0f62f176f56eda6188a143e38e157dbd465754a0c4e427','c02d18ef32d0fe66448a03984ac964315e9758ae2290bc8c63e5b49a478a84d1','the_humans_3','the_humans_3','https://www.gog.com/game/the_humans_bundle',0,'Imagitec Design','Piko Interactive','Adventure',0,0,0),(1276452005,'Startup Company',1,0,0,0,0,'3111adbba31c4e44d295ca971bbbebf7cd463463d2e93b7f66ef7ffaa7f9d207','a9dbb7de08f73fc2acc3b3a35a758d95777f4e6f1c8378d01db397a09d04745c','startup_company','startup_company','https://www.gog.com/game/startup_company',0,'Hovgaard Games','Hovgaard Games','Simulation',0,0,0),(1276856962,'Seven: Enhanced Edition',0,0,0,0,0,'b348fe42263e61de5801f4306a90a931c13d557bd2078145c7bc9a40d407ec81','0c477ee1260e15a3afec26ee63ed67b50cced33973a0ae0a8397f8bfef013f21','seven_the_days_long_gone','seven_the_days_long_gone','https://www.gog.com/game/seven_the_days_long_gone',0,'Fool\'s Theory','IMGN.PRO','Action',0,0,0),(1276899051,'Diluvion: Resubmerged',0,0,0,0,0,'886658e7e78587ad66b4dc4902aac9adf3763a63826a91c4c1354580bb668540','ed0f64cde3a587a1002b6afa177d863fbe79d1f6dcaefa167bc8518c52d45947','diluvion','diluvion','https://www.gog.com/game/diluvion',0,'Arachnid Games','Good Shepherd Entertainment ','Action',0,0,0),(1277886679,'Shantae: Half-Genie Hero Ultimate Edition',0,0,0,0,0,'cc059406cde1ca1ea367cc76341fb48ff58b564f4d125cfb40b65e0a2a397a20','b8b4964cbbe9eba608eb42616b7cf19b7f6fbba746a394f8de47c810948f1db5','shantae_halfgenie_hero_ultimate_edition','shantae_halfgenie_hero_ultimate_edition','https://www.gog.com/game/shantae_halfgenie_hero_ultimate_edition',0,'Wayforward Technologies','Wayforward Technologies','Adventure',0,0,0),(1281575146,'PULSTAR',0,0,0,0,0,'a3d77d4fd92f1b53080113bff3d237ccf72f219aa7aa3a4be02fe7ff543cf5b3','73ac21a6cac4faa55e5caa00408e04b10789c3f65aaabe0fa290907a3a547c26','pulstar','pulstar','https://www.gog.com/game/pulstar',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(1281766827,'The Dream Machine',0,0,0,0,0,'166727aca1cc9f8b76afc4962b529c6116bc4c3c448212a118282e2f70539851','db364338105404bc7968f054f16359f8d4d34bb517c8547bbc512e1835f2d91f','the_dream_machine','the_dream_machine','https://www.gog.com/game/the_dream_machine',0,'Cockroach Inc.','The Sleeping Machine','Adventure',0,0,0),(1282350952,'The Colonists',0,0,0,0,0,'9394cd2637dc2e9ff9812b0d03cd97f2780651a396a666f6e09c2ee400787420','46d1c80af0cfdcdab83f4069a59baffdc12b834810cbcd78cb4f3068e995f84e','the_colonists','the_colonists','https://www.gog.com/game/the_colonists',0,'Codebyfire','Mode 7','Simulation',0,0,0),(1282519889,'ArcaniA: Fall of Setarrif',0,0,0,0,0,'8d18c61a04643de0f68e2e05bc9f7d4d82dba1361ecc92144819f9b1d0d156fe','84d2603b081fbee83f94d52321871eeeb025d469cb4472538dac47d4592b6902','arcania_fall_of_setarrif','arcania_fall_of_setarrif','https://www.gog.com/game/arcania_fall_of_setarrif',0,'Spellbound Studios','THQ Nordic GmbH','Action',0,0,0),(1284364409,'Caravan',0,0,0,0,0,'00ec45850c93ee0c913c36ba600601f6a87f898b10ed1d676720fa27b5d42039','8535d5a809cd4e7f049143efa943b22086097302ac3ac5330dcb1cbe56e1834a','caravan','caravan','https://www.gog.com/game/caravan',0,'it Matters Games','Daedalic Entertainment','Strategy',0,0,0),(1284895531,'Xanadu Next',0,0,0,0,0,'455fd38e6ecdd9deb58de97c97b0a8e1356a6519aa754bb5ad972d35b05d73ba','38d764e1354469094b6ee505c8d91370b2839d6e2c763658372ba3d68caf7bf0','xanadu_next','xanadu_next','https://www.gog.com/game/xanadu_next',0,'Nihon Falcom Corporation','XSEED Games','Role-playing',0,0,0),(1287972541,'Hearthlands',0,0,0,0,0,'8050179a043c4858d1a76e7840a510262f38cc95aee444a7257395a6728ed4a1','3f5c3e2a0c341d261118d9462eb9106c8590df79a4b3d852b33cbec9d7b0733b','hearthlands','hearthlands','https://www.gog.com/game/hearthlands',0,'Sergio & Simon','Sergio & Simon','Strategy',0,0,0);
INSERT INTO `games` VALUES (1288119483,'STAR WARS™ Episode I: Racer',0,0,0,0,0,'21f893cfee38e15ee385d4c75fbeb54d439c774bffe5716882b4de43328cb7ad','55376a8abe3c96d5876e0e1a73075f5eba388965383e19cee51e7f89db7db990','star_wars_episode_i_racer','star_wars_episode_i_racer','https://www.gog.com/game/star_wars_episode_i_racer',0,'LucasArts','Disney','Racing',0,0,0),(1288288255,'60 Seconds!',0,0,0,0,0,'b73f553385aa447c26599d3ff0be1f115c42a18dccdf8af50bc4e56ede479362','8dd355165f7493a34167dd06c1a407bb2774c7ffb54c8f7b35f0df0c703516c1','60_seconds','60_seconds','https://www.gog.com/game/60_seconds',0,'Robot Gentleman','Robot Gentleman','Strategy',0,0,0),(1289701346,'Trüberbrook',0,0,0,0,0,'4227c9a7f7e4da2e5cd378ddfb79a0ce2317ebc1725e1d2f10e0acd354c695c0','b13f4a095485d9656c4a14b015cc1bc91a121808f41cfb4073f40807f933d3e0','truberbrook','truberbrook','https://www.gog.com/game/truberbrook',0,'btf','Headup Games','Adventure',0,0,0),(1290147220,'Fenimore Fillmore: 3 Skulls of the Toltecs',0,0,0,0,0,'9102126074b511cbfdfa1a15a087696227ae662a78272b1b2f5248fdc542d9b3','6b87b89eff90cd60a04ca6c8ae228a8807b3f15e0f612208967cfa308b3d670b','fenimore_fillmore_3_skulls_of_the_toltecs','fenimore_fillmore_3_skulls_of_the_toltecs','https://www.gog.com/game/fenimore_fillmore_3_skulls_of_the_toltecs',0,'Casual Brothers','Casual Brothers','Adventure',0,0,0),(1291537992,'Oniken: Unstoppable Edition',0,0,0,0,0,'638c8d8ba7093017751fcb7153df3bfd7573308356fc9336e12e79f44cc61086','ebd7c72b95adde134222de03144b5a74f6a36290c0bfa53dc89bcb82b8bc6457','oniken','oniken','https://www.gog.com/game/oniken',0,'JoyMasher','JoyMasher','Action',0,0,0),(1295076499,'IRONCLAD',0,0,0,0,0,'69c576fd7378f72c9c4ee529b5d0f73fe11d62b3bf750f144faadaa994448ce6','2f68abacef349b8365849156790731bc31aa82bc17661629057ae04af042cfff','ironclad','ironclad','https://www.gog.com/game/ironclad',0,'SNK CORPORATION','SNK CORPORATION','Shooter',0,0,0),(1297352383,'Thronebreaker: The Witcher Tales',0,0,0,0,0,'8ad695136c08bc4ebb229bb7ed8b29b05a00aab72400329f8bd3592c7e41682a','16acafa5e3e3121f5376abf12abe262ea4a810a41b0e16ee26e308ab7848f6b2','thronebreaker_the_witcher_tales','thronebreaker_the_witcher_tales','https://www.gog.com/game/thronebreaker_the_witcher_tales',0,'CD PROJEKT RED','CD PROJEKT RED','Role-playing',0,0,0),(1297443605,'Godhood',1,0,0,0,0,'aaed4a70c8ceff01bfaac3269194bc5a569b91b247cd86cdfefa3310e8014fee','0e777ab848bc3eff83d9ff3bccee7aec8cef4e000b9e9bd977e8a73ca18bd354','godhood','godhood','https://www.gog.com/game/godhood',0,'Abbey Games','Abbey Games','Simulation',0,0,0),(1297501772,'Bad Dream: Fever',0,0,0,0,0,'b232f1356a845450ba784c3ed0142be7d7084e0fac1f46cc43d7d921c78e6bc6','eda3183703a9eeeb8d4aa675c28863179724fb6d57a93654957a7030c3cd7441','bad_dream_fever','bad_dream_fever','https://www.gog.com/game/bad_dream_fever',0,'Desert Fox','PlayWay S.A., Ultimate Games S.A.','Adventure',0,0,0),(1297948342,'Sudden Strike 3: The Last Stand',0,0,0,0,0,'daf7dd48e0fe60cb65ffad8a79a368a647c7898613d145c0b45c6b5497ecbe09','0e6d512594d8228fb5ea6662aa28788a2411ee6e015214b208be8f6105e2e808','sudden_strike_3_the_last_stand','sudden_strike_3_the_last_stand','https://www.gog.com/game/sudden_strike_3',0,'Fireglow','Kalypso Media Digital','Strategy',0,0,0),(1297999995,'Overcooked! 2',0,0,0,0,0,'a6018412f72922cd6d3832bab269361ce098f45b04749048c58d57cc04f49aad','e48e1ba31c4334e53f11fff393df84a1264fbda28a6a48cf963ba90c829a998f','overcooked_2','overcooked_2','https://www.gog.com/game/overcooked_2',0,'Ghost Town Games Ltd., Team17','Team17 Digital LTD.','Simulation',0,0,0),(1299369265,'Highway Blossoms',0,0,0,0,0,'ca7a46e7652e683459f987311168327bd5761e4d9eecc7f33be2c7444ff7bbad','01dcfc0d821f2d125c7675e1903e2836c7c4d6f30ce14c4abe8bfabf8925d893','highway_blossoms','highway_blossoms','https://www.gog.com/game/highway_blossoms',0,'AlienWorks','Sekai Project','Simulation',0,0,0);
INSERT INTO `games` VALUES (1300178735,'The Falconers: Moonlight',0,0,0,0,0,'879c034b32023d2d45e31d857673cbd1a13448ff515a20fe2d45d14fc69f66db','da22c1b675fa3d2e0c80cc57b2657facb21d9c78b0a8e11424b449fbd0f81a18','the_falconers_moonlight','the_falconers_moonlight','https://www.gog.com/game/the_falconers_moonlight',0,'Bionic Penguin','Sekai Project','Adventure',0,0,0),(1300281766,'Hob',0,0,0,0,0,'b9904714523f866b95316bc5fb2da14bbb07ab12bab137fc5731bccb3ff70a9c','f8a01cde24d58b327c1f344a3a06bade6d4e70e0053c78351e0e1bc72168a9a9','hob','hob','https://www.gog.com/game/hob',0,'Runic Games Inc.','Runic Games Inc.','Action',0,0,0),(1300381715,'Tokyo 42',0,0,0,0,0,'e80d8564145eefd309c68c896fd2f725806d982c0752b23276efa98ec4d8bf66','54ad539a061c93466b69a6b7994b59912f5972cc08b796b2e8e17f537d565639','tokyo_42','tokyo_42','https://www.gog.com/game/tokyo_42',0,'SMAC Games','Mode 7','Shooter',0,0,0),(1301333630,'EARTHLOCK',0,0,0,0,0,'08ab1e5d2a6d868efd54769dec8385cebd3ce66b500ff51bc8c2f7e7d6af9907','fadff1b5602f3b191ce61edbb96c797d8728c4e620f22978479343d20de32c99','earthlock','earthlock','https://www.gog.com/game/earthlock',0,'Snowcastle Games','Snowcastle Games','Adventure',0,0,0),(1302307241,'Mana Spark',0,0,0,0,0,'debcb1bc75fc2cc9535ed419f76efeab2e76c3d03892e1312be7a9e52875a442','c6c7f54f89053a6fab94ae93176023f291897d8871ae4a6955c5a3197582431a','mana_spark','mana_spark','https://www.gog.com/game/mana_spark',0,'BEHEMUTT, Kishimoto Studios','Plug In Digital','Role-playing',0,0,0),(1305464490,'Dear Esther: Landmark Edition',0,0,0,0,0,'edb8472cffbeb0bfa0af648c9cb9fa0416a53b56b3a607119b56e8346028cb66','7f3893d76cf52673924d3eb12c92e5edd09b4f67006eba246a7ba4673b2a0803','dear_esther_landmark_edition','dear_esther_landmark_edition','https://www.gog.com/game/dear_esther_landmark_edition',0,'The Chinese Room','The Chinese Room','Adventure',0,0,0),(1306536711,'Regalia: Of Men and Monarchs',0,0,0,0,0,'f57ef027d9ea802d94d851724e4c2f640131e8d2064531d95f42fbf58aed9fca','d8677985634bc7d2da98906adf20ff1692e572519ab44a6ef9b12b97e6df65cd','regalia_of_men_and_monarchs','regalia_of_men_and_monarchs','https://www.gog.com/game/regalia_of_men_and_monarchs',0,'Pixelated Milk','Klabater','Role-playing',0,0,0),(1308320804,'Hollow Knight',0,0,0,0,0,'0f8f8798c4512cc9aa1881a1f8672bc9598c7afb523e0e6120223d3dc697ddfe','262d05c117b6ff642536bfe02dc997a090ca84a1e409d64292d5d8153db63b9a','hollow_knight','hollow_knight','https://www.gog.com/game/hollow_knight',0,'Team Cherry','Team Cherry','Adventure',0,0,0),(1309632191,'Overload',0,0,0,0,0,'86021784ec0e8e811590312c8d1d1d387094ec7b5559262fc3a0621a428efb58','e9ebee34d0a917ca53fcab9f62e9ecbcc5fba4fe6ae51c3c646c54f5420830e6','overload','overload','https://www.gog.com/game/overload',0,'Revival Productions, LLC','Revival Productions, LLC','Action',0,0,0),(1310542797,'Sunrider: Liberation Day - Captain\'s Edition',0,0,0,0,0,'332be64708e1c72d7a63ae68df00fffa93844a41e25fa7feae3bfb310be0dadf','5534750ab2c2dd3f59a54dae3621677c39696a04a28d751ef5bada1fdc207b34','sunrider_liberation_day_captains_edition','sunrider_liberation_day_captains_edition','https://www.gog.com/game/sunrider_liberation_day_captains_edition',0,'Love in Space','Sekai Project','Strategy',0,0,0),(1312818781,'Dead Space™',0,0,0,0,0,'f6a6cf23a00f92de03a4a47b7aab46ee06b81d9287703eb71faf7a152f515a62','37bedec8b82daf8c104cde87774fa357f92cf063f029ad5b6b0bb147272c31cb','dead_space','dead_space','https://www.gog.com/game/dead_space',0,'Visceral Games','Electronic Arts','Shooter',0,0,0),(1312824873,'Fallout: New Vegas Ultimate Edition',0,0,0,0,0,'d18b14716866d6edda0361a30661f25a4e326698561e03d3b5ac1ce15d97e884','0d0b8100fad7d0554a549052958294ed044b4dc50d4ed16a2a83601793e1ebc9','fallout_new_vegas_ultimate_edition','fallout_new_vegas_ultimate_edition','https://www.gog.com/game/fallout_new_vegas_ultimate_edition',0,'Obsidian Entertainment','Bethesda Softworks LLC','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1316908698,'Guacamelee! 2',0,0,0,0,0,'1cf2a6e2358df93b8078914e359be9e211791ca85751b43012df79ae27f514df','e8e241241e9f66d79034092cffe2f4533563278a6da5551c3838c62edb6b226a','guacamelee_2','guacamelee_2','https://www.gog.com/game/guacamelee_2',0,'DrinkBox Studios','DrinkBox Studios','Action',0,0,0),(1317709786,'Army Men: Toys In Space',0,0,0,0,0,'273562323010b987037110eb7ab3a306751fd4f46e9d32cf246ac401acf92adc','84b5b7bc4075c7b5f84a204ffb9ad31234cd604911b4e3bdb2ef3d718afbb7ff','army_men_toys_in_space','army_men_toys_in_space','https://www.gog.com/game/army_men_toys_in_space',0,'The 3DO Company','2K Games','Strategy',0,0,0),(1318673719,'Okhlos: Omega',0,0,0,0,0,'d872bad3ad2bb1205e20082fc4d799a32739e8cc0fb01b96ff357ea904d3e2dc','f43c5dabdb949f90f24f528eab19e7545752a78ca00ba71edacad0438e9e2ac2','okhlos','okhlos','https://www.gog.com/game/okhlos',0,'Coffee Powered Machine','Devolver Digital','Action',0,0,0),(1319851840,'Flower',0,0,0,0,0,'7a0676ac5d5d8d1a2eadf7caaa627fe4f3d287c106dc0e427456c2f01983ccd5','81fd27909df800f2d8e8dc4963f94a9a310eb8ed1a3c8b5e15b65c9c63e86984','flower','flower','https://www.gog.com/game/flower',0,'thatgamecompany ','Annapurna Interactive','Simulation',0,0,0),(1320675280,'Knights of Pen and Paper +1 Edition',0,0,0,0,0,'c4e1585c7780eee5e1d0e43c5976cf892e45d6d4e8e8029c7b7418081f393281','de6d9edd77e71fb10cd53a0e338de8a499fe4e1808afd9c65f1b0ba936f009ab','knights_of_pen_and_paper_1_edition','knights_of_pen_and_paper_1_edition','https://www.gog.com/game/knights_of_pen_and_paper_1_edition',0,'Behold Studios','Paradox Interactive','Role-playing',0,0,0),(1321528002,'Close Combat: Gateway to Caen',0,0,0,0,0,'a33276ddc986b974e0343e00eefb29dc419993483df6caa5bb6aaff65b1bd9b9','06fbba8e24559cb313b9b38f2d25d9347214b6ac3a8c103ff261ceb0cdd72009','close_combat_gateway_to_caen','close_combat_gateway_to_caen','https://www.gog.com/game/close_combat_gateway_to_caen',0,'Slitherine Ltd.','Slitherine Ltd.','Strategy',0,0,0),(1321564059,'Finding Paradise',0,0,0,0,0,'351c4daed0f35235938aa3cdbf137fd6274d3b142a32bfb69e4466901fb33a56','fd4b46c33386298d4a247060976b1862053056264b585921b14ea7eef3268ad3','finding_paradise','finding_paradise','https://www.gog.com/game/finding_paradise',0,'Freebird Games','Freebird Games','Adventure',0,0,0),(1322165223,'Lighthouse: The Dark Being',0,0,0,0,0,'f10387b092284c827e2a2cd9e817bad3b4d7412f59f78585d622fe4e60388731','0429c214a51c1b9cf5737f16dc2de708e22d24baaa37304f315cc40359416402','lighthouse_the_dark_being','lighthouse_the_dark_being','https://www.gog.com/game/lighthouse_the_dark_being',0,'Sierra','Activision','Adventure',0,0,0),(1325415523,'Full Throttle Remastered',0,0,0,0,0,'ac3fdfa98a006fd65d359c9746fa2dc101fe6b384f8faa4f3e4a7ac9411bd19d','2a56394fabc52e2b89f6654c722299f7da67b104c181cdeaf4cff57579a1d97f','full_throttle_remastered','full_throttle_remastered','https://www.gog.com/game/full_throttle_remastered',0,'Double Fine Productions','Double Fine Productions','Adventure',0,0,0),(1325444998,'Never Give Up',0,0,0,0,0,'054a26460cffcae3611ea0685f99a597f812edbbe9e65eb7e2d8edd9573cd0e1','2d5f9a628e3ba48c5012be73e62822ea37b90d85efe9bc0b36081884f6e6ec0a','never_give_up','never_give_up','https://www.gog.com/game/never_give_up',0,'Massive Monster, Tasselfoot','Armor Games Studios','Action',0,0,0),(1325604411,'Thimbleweed Park',0,0,0,0,0,'31e65bb51db85cdf0415a350eab784240a8490c7c0857aeba2a35c2f269c646f','27246c40117d2beb0fd4fd40293408935c4a55e3a666a5e3542e3021fcc2b19c','thimbleweed_park','thimbleweed_park','https://www.gog.com/game/thimbleweed_park',0,'Terrible Toybox','Terrible Toybox','Adventure',0,0,0),(1327823064,'Frozen Cortex',0,0,0,0,0,'5805fc004a0347be22801144db29e2f17b607a020563df1b7e556b11de28c549','2db835aa3e16df28d2085db550baac33996d932d3710b98080b85325f5b055bd','frozen_cortex','frozen_cortex_game','https://www.gog.com/game/frozen_cortex',0,'Mode 7','Mode 7','Strategy',0,0,0);
INSERT INTO `games` VALUES (1330135151,'Pandora: First Contact - Gold Edition',0,0,0,0,0,'253e3609a54c352ed5c0648089fa81bad8ece456169798721dfd74e32cdb1ca5','34098d1c7f190572b21242a41111bc7af00be5b794118d8b4ff458526599bcd6','pandora','pandora','https://www.gog.com/game/pandora',0,'Proxy Studios','Slitherine Ltd.','Strategy',0,0,0),(1330400591,'Night in the Woods: Weird Autumn Edition',0,0,0,0,0,'3e42851a85a6b6f901771cbbbeaa50855f0f8da14168d2fd8bfe9fcddbf83556','68ec2c635c8ff6f0fd55e9d0c2ce911403ed622201d99f1b152bca7a19e1873b','night_in_the_woods','night_in_the_woods','https://www.gog.com/game/night_in_the_woods',0,'Infinite Fall','Finji','Adventure',0,0,0),(1330723846,'A Kiss For The Petals - Remembering How We Met',0,0,0,0,0,'02aee1f04078b1b5a5d335df7f181b0b09b1b321960fd323e15f56cc0b08002a','5268533b24a6f196f9ee1756fcc201155d0a64305b5157181eac28591b4cc0c0','a_kiss_for_the_petals_remembering_how_we_met','a_kiss_for_the_petals_remembering_how_we_met','https://www.gog.com/game/a_kiss_for_the_petals_remembering_how_we_met',0,'St. Michael\'s Girls School','MangaGamer','Adventure',0,0,0),(1331575837,'Pharaonic',0,0,0,0,0,'b0074e20844f632feeea73bfbeb16b82bb4c7f94aed144d01b5f8eafd59e83ea','63414a8a883d138c62d7c63c4f2d36574a448c87fc2e3977d112e98b78b4c406','pharaonic','pharaonic','https://www.gog.com/game/pharaonic',0,'Milkstone Studios','Milkstone Studios','Action',0,0,0),(1333227204,'Double Kick Heroes',1,0,0,0,0,'4f88b8cc5f28ec87fb2515fe84fc77fc2045a6a3556ca8dc5c679e3aedea7b0f','f5b3a1b78b92215e07869061baf337226f71e0f7466e2c7b17cdbe2ec8176f8f','double_kick_heroes','double_kick_heroes','https://www.gog.com/game/double_kick_heroes',0,'Headbang Club','Headbang Club','Action',0,0,0),(1333602811,'Parkan: Iron Strategy',0,0,0,0,0,'a8d65d1b492a42a3fcd4952985b74ceca44a6db2338317e89a8d888ec9c7f38e','ed74f13f2698b13200d6b91ff7d1604e05c9dee4e92f0f40eb2176e40af11b8a','parkan_iron_strategy','parkan_iron_strategy','https://www.gog.com/game/parkan_iron_strategy',0,'Nikita','NIKITA Online','Action',0,0,0),(1335936125,'LEGRAND LEGACY: Tale of the Fatebounds',0,0,0,0,0,'8a5d9d08430eebedf100c4165c5b7759c02c7cea4ade9149f9ee506040c48c04','32145e699e1d48b050ed83e347a28abea77b6a77ec4ca550a923e1d429655c31','legrand_legacy','legrand_legacy','https://www.gog.com/game/legrand_legacy',0,'SEMISOFT','Another Indie/Mayflower Entertainment [KR]','Action',0,0,0),(1337763972,'Army Men',0,0,0,0,0,'fa499be0cbc7fb9ac568bac761b959becfe29b7851c1591eeb4fe6b9e25c7e97','124c5435c1950647a074f329b5936937d16e4883d11781396053b4319ce416e9','army_men','army_men','https://www.gog.com/game/army_men',0,'The 3DO Company','2K Games','Strategy',0,0,0),(1338132110,'SimplePlanes',0,0,0,0,0,'77b5de69bd53f6b41c127f8a238a7d8c4cbd5b3c1db7eb126eb5871d067c61a8','295eb1a97d900a082aa966ec9bbead00e92b1192f1bc2bf6e8b73f54bb302199','simpleplanes','simpleplanes','https://www.gog.com/game/simpleplanes',0,'Jundroo, LLC','Jundroo, LLC','Simulation',0,0,0),(1341288701,'Eternam',0,0,0,0,0,'c8be0f5a538a3378b92e044f6c418a29661a9bd4c9508731194ad41365ccd2fc','d219e1ccb448dbb2cd60715d7fecebfaa5ca6714b391b76f22a6f9e12c3dda12','eternam','eternam','https://www.gog.com/game/eternam',0,'Infogrames Studios','Piko Interactive','Adventure',0,0,0),(1343222065,'Umineko When They Cry - Question Arcs',0,0,0,0,0,'3dee9fdc8e61f6322f562b832451489c8c2998b4ed9771ceec1b60650724dfa2','fea1fb89bf87647436a87d937bbb354902e5c4d982139b66bedb1519aac3986c','umineko_when_they_cry_question_arcs','umineko_when_they_cry_question_arcs','https://www.gog.com/game/umineko_when_they_cry_question_arcs',0,'07th Expansion','MangaGamer','Adventure',0,0,0),(1344050778,'Conquests of the Longbow: The Legend of Robin Hood',0,0,0,0,0,'1ddc7c8f5e0b7f7bab95207eeab632f9d16ecf916ab341a23e69282c53cf71be','edaf7dde66e279c67d907dc3d2fb8a4648184d550848ed060cf06857522c8cdc','conquests_of_the_longbow','conquests_of_the_longbow','https://www.gog.com/game/conquests_of_the_longbow',0,'Sierra','Activision','Adventure',0,0,0);
INSERT INTO `games` VALUES (1344324173,'Ys SEVEN',0,0,0,0,0,'4bb612727c3f55e5d6032a7fdea407e1c5a811a264fbf3ac8ad11a8f333470ed','762eb792fc9d52eef69d04a551fbb9c9b379e2f483704b74f4d82ef6f110c1ae','ys_seven','ys_seven','https://www.gog.com/game/ys_seven',0,'Nihon Falcom Corporation','XSEED Games','Role-playing',0,0,0),(1345182195,'Venetica - Gold Edition',0,0,0,0,0,'39ee0faef6dc014d96dffa267c11ebb940e71f7df1120a4e4ab5123ab0ee30cf','0114942e849c022ef42c88e31f7102d3994c2f5521e2aa8b1ada0e7548637956','venetica','venetica','https://www.gog.com/game/venetica',0,'Deck13','Deck13','Action',0,0,0),(1345854066,'Battle Chasers: Nightwar',0,0,0,0,0,'161a1085d92e60ec81f82b907d538f35dec9b934c61115a024f32f9b6b314c05','7aa74520c6f457f1338ba255020d287944e388038ad9c807451a394f3b349e06','battle_chasers_nightwar','battle_chasers_nightwar','https://www.gog.com/game/battle_chasers_nightwar',0,'Airship Syndicate','THQ Nordic GmbH','Role-playing',0,0,0),(1346232158,'Dungeons 3',0,0,0,0,0,'73d9eef44ccbfeb1fd5fc2d81fca8bf449c42f76fdb0425a2753ba5a1068de7a','7c2f1d1041a02d0cfdc5da4196c9190038ad19f1172cebdeb8a5a3dec65aca41','dungeons_3','dungeons_3','https://www.gog.com/game/dungeons_3',0,'Realmforge Studios','Kalypso Media Digital','Strategy',0,0,0),(1351624781,'Planetbase',0,0,0,0,0,'e5e7d724b2a069925b7a1bd868c06ad8b75464a4d8ba80d9117ba8bd7d7275a9','cdf14528fcaff3e04c877cd71e8a34f0a40873624b77bb5110e0437b1ee43192','planetbase','planetbase','https://www.gog.com/game/planetbase',0,'Madruga Works','Madruga Works','Strategy',0,0,0),(1351891846,'Jazz Jackrabbit 2',0,0,0,0,0,'33586aa0d3f347dbc393f5c1ea9cf3d937a063755ea572f0fe9c40326b52af87','c49daa7ef2e785272beb6ec8f10fa5132bd109d8e04f4bfb3e66089bf84e537c','jazz_jackrabbit_2_secret_files','jazz_jackrabbit_2_secret_files','https://www.gog.com/game/jazz_jackrabbit_2_collection',0,'Epic Games','Epic Games','Adventure',0,0,0),(1352176936,'JYDGE',0,0,0,0,0,'827572cbd9e709c9f38a52d27b95c28f28950708b134c54c8aa8ae27b2f45371','f137838eff574481d21c0d14498d204487eb99476fa66d2a362a2e0112243ac9','jydge','jydge','https://www.gog.com/game/jydge',0,'10tons','10tons','Shooter',0,0,0),(1353845909,'Where The Water Tastes Like Wine',0,0,0,0,0,'20b2f38277674c138be4dc58afe3e4c6b6c4d4ee7ab891db15b5ff0dff8971d7','8a2b6d68c32e697869d067e3484b6b066e1b621c4aece5ffecd2070e413b7e9c','where_the_water_tastes_like_wine','where_the_water_tastes_like_wine','https://www.gog.com/game/where_the_water_tastes_like_wine',0,'Dim Bulb Games, Serenity Forge ','Good Shepherd Entertainment ','Adventure',0,0,0),(1354640203,'Mafia III',0,0,0,0,0,'6c1715d4321e2b9ac4d71dd5245de4db0205cc4d34a54067e122198e0a080888','28ed20ae1a03a51eb4a473c1978538d2c695abd8f6219eb1682889bcb018c7b0','mafia_iii','mafia_iii','https://www.gog.com/game/mafia_iii',0,'Hangar 13','2K Games','Action',0,0,0),(1356485086,'Brigador: Up-Armored Edition',0,0,0,0,0,'ca092aceddbb2743b394a366f421f5b91a8a18c48c7b420c7cfa3897557fa94d','d59e168cd7ebec9c34429f7ec3e6001ce8fa07980fce1822ec25f39f7e8f46bb','brigador','brigador','https://www.gog.com/game/brigador',0,'Stellar Jockeys, Gausswerks','Stellar Jockeys','Action',0,0,0),(1358826905,'The Journey Down: Chapter One',0,0,0,0,0,'1a90d818daf4e9319350006d68fa4030ada5bdb82f7c11c6e6521b4f702322fb','7a444ec0144d0ed39121bf6517c2ecaca86637797c9412fbad34f00ddcc2fde8','the_journey_down_chapter_one','the_journey_down_chapter_one','https://www.gog.com/game/the_journey_down_trilogy',0,'SkyGoblin','SkyGoblin','Adventure',0,0,0),(1359042189,'Ember',0,0,0,0,0,'7627f6ac62a3e78a62a41f9ef7a0c7bcdfbb340e5b750909cc21aa943972dc67','956aee6cf2cc580ebaa077b10af671252c9a24544d740449bc2d9dd238007022','ember','ember','https://www.gog.com/game/ember',0,'N-Fusion Interactive','505 Games','Action',0,0,0),(1360549960,'Cossacks II: Napoleonic Wars',0,0,0,0,0,'b5419c05f50883c4f6e8515e65c7d2c4429fae2458515e58379406bd60607c27','4e9eaf3824895e2d42599ec6f6c0143cf0e124e9423db1047840a1effde719c6','cossacks_ii_napoleonic_wars','cossacks_ii_napoleonic_wars','https://www.gog.com/game/cossacks_ii_anthology',0,'GSC Game World','GSC Game World','Strategy',0,0,0);
INSERT INTO `games` VALUES (1362698324,'Bear With Me: The Complete Collection',0,0,0,0,0,'380b534687af9623bc602e1804eab38b2043a26de69700fd4428a1ee02c8ff81','14562c9c0b92cbac3cebf9a906c943f2795757efe8f5887cdad5cbca343b254b','bear_with_me_the_complete_collection','bear_with_me_the_complete_collection','https://www.gog.com/game/bear_with_me_the_complete_collection',0,'Exordium Games','Modus Games','Adventure',0,0,0),(1364995551,'Disney Aladdin',0,0,0,0,0,'535891167e26a00c98739a2ffe9bd7589fcde746c17f35008c276e9ae43955db','af4e5b10fe6d7f77e4d8a162555bfedef31f95099b93e31b41b19eb63433a330','disney_aladdin','disney_aladdin','https://www.gog.com/game/disney_aladdin',0,'Virgin Games','Disney','Action',0,0,0),(1365195229,'True Fear: Forsaken Souls Part 2',0,0,0,0,0,'878fa42d86465d6da8e8070d210adeaed7a54ea623cd63ec9a29ccbef6c18080','6057bad806660a4535a054cc0df58913f15c40a9cdf91005b8eb0675bd6ec8bf','true_fear_forsaken_souls_part_2','true_fear_forsaken_souls_part_2','https://www.gog.com/game/true_fear_forsaken_souls_part_2',0,'Goblinz','Digital Lounge ','Adventure',0,0,0),(1366835470,'Stunt Island',0,0,0,0,0,'7d32c08fe5d1c59546e26728cad6de691ba078575387e85aa6113fd820002d88','8e56b34ac75e0fe96cb9cb9912f042bbc4bc80618115622e0100df45c7e0fcc0','stunt_island','stunt_island','https://www.gog.com/game/stunt_island',0,'The Assembly Line','Disney','Simulation',0,0,0),(1367477034,'CivCity: Rome',0,0,0,0,0,'1204ca3a74b19022d2d99251953aac3db69748b41bb57371ef0ae16c65616f31','f3c3b6c75499a315ae613ee9f1e726e6ffaaed0148abe729a8eff5b25513a190','civcity_rome','civcity_rome','https://www.gog.com/game/civcity_rome',0,'Firaxis Games','2K Games','Strategy',0,0,0),(1370519273,'Ultimate Fishing Simulator',0,0,0,0,0,'e488da66ffdffccb3304366b8c2c8f754e9d4a4ea895b6639a5d074a5480f0c9','e8516eabea3ab190de08365c72f32574995a4e889c9310d74e940c039240e091','ultimate_fishing_simulator','ultimate_fishing_simulator','https://www.gog.com/game/ultimate_fishing_simulator',0,'Bit Golem','PlayWay S.A., Ultimate Games S.A.','Simulation',0,0,0),(1370911530,'METAL SLUG 3',0,0,0,0,0,'98e7f3ee763cd2e1f78c66fd6c014a70c52ff85fdf338ac6f88d3bf5f92682dd','b88658311ae627ba7385e3d27cfcb877514d9f67d52cf38adad4da7c0fa3476c','metal_slug_3','metal_slug_3','https://www.gog.com/game/metal_slug_3',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(1374469660,'Blood: Fresh Supply',0,0,0,0,0,'babecb9bed321fab4928676c2f619b3e7d2b5f108c6ee28b59e3c36b46dcc0ac','fa3d0f5424ba69fc270a1954bc8802cc4da55a0287f5b91dc150487a5aba7209','blood_fresh_supply','blood_fresh_supply','https://www.gog.com/game/blood_fresh_supply',0,'Monolith Productions','Nightdive Studios','Shooter',0,0,0),(1376056537,'Gibbous - A Cthulhu Adventure',0,0,0,0,0,'47b7cca296d19217ff5044d44c5d42ae579e1d8120f327174fd8179aee863c94','253296cd5e0f70c2ce1b955fc814aea913426000c9cf6299622501ba89561771','gibbous_a_cthulhu_adventure','gibbous_a_cthulhu_adventure','https://www.gog.com/game/gibbous_a_cthulhu_adventure',0,'Stuck In Attic','Stuck In Attic','Adventure',0,0,0),(1376475724,'For The King',0,0,0,0,0,'373c0c7f124134429d62f54bd93da7e3ea9c0b699797c89d4b4175e745a1e62c','b3169bdb47e3db52480ddbefa9fe61303f7a6c4c586dad86d4e2b5405fb447bb','for_the_king','for_the_king','https://www.gog.com/game/for_the_king',0,'IronOak Games','Curve Digital','Strategy',0,0,0),(1378946365,'Unforeseen Incidents',0,0,0,0,0,'659f6dce4d28d935c90c034dae497e771e3052a117a5fae7d8cfb9dba594fdae','1d38fbe196584a277d723c5cca5a45667b63d8f4be5f5bd9bee447c352e60d77','unforeseen_incidents','unforeseen_incidents','https://www.gog.com/game/unforeseen_incidents',0,'Backwoods Entertainment, Application Systems Heidelberg','Application Systems Heidelberg','Adventure',0,0,0),(1383775419,'Space Rogue',0,0,0,0,0,'6a8ecb1c58d2016696f927769c864f5dfd373d25d84a99db058c4fa2d290e4ad','1e49904013bc9b1e5b93c53edb45fe74929127a18b66020d0017246ead74f992','space_rogue','space_rogue','https://www.gog.com/game/space_rogue',0,'Red Beat','Red Beat','Simulation',0,0,0);
INSERT INTO `games` VALUES (1384944984,'Ori and the Blind Forest: Definitive Edition',0,0,0,0,0,'08ecff4e7f0cf8b0041d8e5fc32a5d45bf6da3587c21d4d12eac815d18cffb6b','dd88ebc0aac9c1b87cf2335bc2c424f29567a1d62b61a8b2504c49e9e7177ed6','ori_and_the_blind_forest_definitive_edition','ori_and_the_blind_forest_definitive_edition','https://www.gog.com/game/ori_and_the_blind_forest_definitive_edition',0,'Moon Studios GmbH','THQ Nordic GmbH','Action',0,0,0),(1386577474,'Caesar II',0,0,0,0,0,'eb6e82698b0355eb549105017d935b2c8b470642ba5b091bdd17bbbbe05e6dc7','d2b346fa6112d6efbb086c36bbdaabb6c7fad6f7aba1ee7e03da5779540a12f2','caesar_ii','caesar_ii','https://www.gog.com/game/caesar_ii',0,'Impressions Games','Activision','Strategy',0,0,0),(1387286368,'Worms W.M.D',0,0,0,0,0,'ae0951aa24a7876752eb3fc68bc0d84748d012d9ac432fe268426a306c39fa64','1e8fd2e5316a5dde0c24f888a689e36cb634c6555d360a985a6d2f9ea8d151f3','worms_wmd_game','worms_wmd_game','https://www.gog.com/game/worms_wmd',0,'Team17 Digital Ltd.','Team17 Digital LTD.','Strategy',0,0,0),(1387720706,'Higurashi When They Cry Hou - Ch.2 Watanagashi',0,0,0,0,0,'e97678a06de382cfeaf889d3657458acd7e52864c940582ae924388b6ef662dd','9d96c6a0b37a8d96b87013f002ef03204cd50902e81381747a206b3091290c95','higurashi_when_they_cry_hou_ch2_watanagashi','higurashi_when_they_cry_hou_ch2_watanagashi','https://www.gog.com/game/higurashi_when_they_cry_hou_ch2_watanagashi',0,'07th Expansion','MangaGamer','Adventure',0,0,0),(1388656427,'Irony Curtain: From Matryoshka with Love',0,0,0,0,0,'1a7af367269ca1af4f1f595f2fdb7b0e8854c0315addbafbb005f6c03482122d','6c4102f8026f61fee8f9deb9baf6014483ce1ed9cc8cefb75835da425de7c30c','irony_curtain_from_matryoshka_with_love','irony_curtain_from_matryoshka_with_love','https://www.gog.com/game/irony_curtain_from_matryoshka_with_love',0,'Artifex Mundi','Artifex Mundi','Adventure',0,0,0),(1389096948,'Shadowhand',0,0,0,0,0,'d51f2f20a4c4cde26358b0a1a5d2749292bda5aa6b98a38b194d24c329464aa0','11cb03e23719faae6b9f1bc7777e9416ecfd04b7cad090c49066b906df71dff5','shadowhand','shadowhand','https://www.gog.com/game/shadowhand',0,'Grey Alien Games','Positech Games','Role-playing',0,0,0),(1391062119,'The Humans 2',0,0,0,0,0,'1096ad3e6ce66872097d43ba21b5692369219f24357e45f446e3a9e55d6ec3f3','327f46b0247acf3f62cdd1c53472df9dbffbad4a42c2c3e5202a4fa56ea27a41','the_humans_2','the_humans_2','https://www.gog.com/game/the_humans_bundle',0,'Imagitec Design','Piko Interactive','Adventure',0,0,0),(1391063890,'Bastard',0,0,0,0,0,'ae88d7dda9b6372777bc97253c8411cbb0519fdc843af2cab294a85dc38c497e','24549b61499ec738a13844205de0ccc80f4d65556d020d3d270c18daa972b737','bastard','bastard','https://www.gog.com/game/bastard',0,'Aterdux Entertainment','Aterdux Entertainment','Role-playing',0,0,0),(1391555008,'The Adventure Pals',0,0,0,0,0,'e817ad044e00b170e6f1431cb543a1024050efcc6f19b6b888e438f90d0ecaf0','84aea3ef0cfa6bd268f85fd4137b0bd3e05c2815e3d7baa47e539cce3717fb34','adventure_pals','adventure_pals','https://www.gog.com/game/adventure_pals',0,'Massive Monster','Armor Games Studios','Action',0,0,0),(1392989695,'Warhammer 40,000: Armageddon - Da Orks',0,0,0,0,0,'e3fff9b2dbc1081f98cd889f46355da57d40327b9af94c4bf156c3d84fd2ee1c','649e90507ebb56ad54c05df677d49ee9ffed7f9213bcae6ba56781848b63fac4','warhammer_40000_armageddon_da_orks','warhammer_40000_armageddon_da_orks','https://www.gog.com/game/warhammer_40000_armageddon_da_orks',0,'Flashback Games/The Lordz Games Studio','Slitherine Ltd.','Strategy',0,0,0),(1393433855,'Knights of the Sky',0,0,0,0,0,'79f0db997762d1bf9fdd646bfd6aff55025fe7140f696e4c64ab7cdc55e14ab4','11a333f8408f51d9d9f139bec0c25dbbddef6c84c35b3220dfb713b0b1458b38','knights_of_the_sky','knights_of_the_sky','https://www.gog.com/game/knights_of_the_sky',0,'MicroProse','Night Dive Studios, Retroism','Simulation',0,0,0);
INSERT INTO `games` VALUES (1394309375,'Bright Memory',1,0,0,0,0,'d00cf907999bbb00fb192359980e03858bf297bc17badf5f57f674f57dc306c2','13d4f996010e0753a4cd4524b41d0e46ab03de9635d303cc6d556ae0d81649ec','bright_memory','bright_memory','https://www.gog.com/game/bright_memory',0,' FYQD-Studio',' FYQD-Studio','Action',0,0,0),(1394528466,'Warhammer 40,000: Fire Warrior',0,0,0,0,0,'aee5c75ab5ade634f3af24df724a33e0ce54e7f0edc0030571e3b8421168a92d','0c474441adc3ea55332d1b39a812f649ae8143d48591f33a5fbeaba3801955b6','warhammer_40000_fire_warrior','warhammer_40000_fire_warrior','https://www.gog.com/game/warhammer_40000_fire_warrior',0,'Kuju','Chilled Mouse','Shooter',0,0,0),(1395669635,'X4: Foundations',0,0,0,0,0,'ff1138896a060b13a50092aad41538bb6b679d8d7f714d45986aed6ce1765705','9413d4ad0826886406bb2b222bcb0fb8a8f3e87c73fc2052a7704a2cc1a869a2','x4_foundations','x4_foundations','https://www.gog.com/game/x4_foundations',0,'Egosoft','Egosoft','Simulation',0,0,0),(1397277197,'Depth of Extinction',0,0,0,0,0,'17f033163267a1c8f73e76c744628be29d68a197bb00b355e84b7f7ec1bf8968','d39ef1da527a299f74cefdb1fa39e2595781a5ab13b5577a6d7ef10d1e3a2800','depth_of_extinction','depth_of_extinction','https://www.gog.com/game/depth_of_extinction',0,'HOF Studios','HOF Studios','Strategy',0,0,0),(1398417576,'Nightmares from the Deep 2: The Siren\'s Call',0,0,0,0,0,'06e3800f7c37dc55488ca36606a1b5c0ca6fe1c32f1bd3e0c41c37ef31e6a9d0','9e11f32c125cf013985d197dd4ebd0e0fda13b7f2236f3447b0930b848719440','nightmares_from_the_deep_2_the_sirens_call','nightmares_from_the_deep_2_the_sirens_call','https://www.gog.com/game/nightmares_from_the_deep_2_the_sirens_call',0,'Artifex Mundi','Artifex Mundi','Adventure',0,0,0),(1401438095,'The Walking Dead: A New Frontier',0,0,0,0,0,'da80fbe0f9378450f32e63983bdeddcdc047968a869593be8562e41643ae2eaa','96d4a5e2be16af6dd6cee66215a8dae2b8722705481a32ca7947c1e2aaa33ee4','walking_dead_a_new_frontier_the','walking_dead_a_new_frontier_the','https://www.gog.com/game/walking_dead_a_new_frontier_the',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1402984756,'Donut County',0,0,0,0,0,'0e9bd43f8d6a2134c00e197e7a067f338e548d63f2b267c133f2c5431f302c88','e6d559f28a61fd7604163be5225f98041ed318151b9acfdd96f76617fa3e57c0','donut_county','donut_county','https://www.gog.com/game/donut_county',0,'Ben Esposito','Annapurna Interactive','Adventure',0,0,0),(1403000599,'The Saboteur™',0,0,0,0,0,'aef9a577405b01be6fc8b1e7a71062c4a1140baa71d147749a002a11e2663130','ffacb580c8ef7c0e32c1304e4914f0e10b320a470047fb556a41536767397a7d','saboteur','saboteur','https://www.gog.com/game/saboteur',0,'Pandemic Studios','Electronic Arts','Action',0,0,0),(1403945378,'Planet Nomads',0,0,0,0,0,'38f182e09437a2495aa199a28a81c68eaf5ce9fa16f0404160d8e49810b2768b','2a8d2a8f8b975e4a8a7a45ac14e54b5d9ff190b7f7d2f4decfe3b2f2430118d7','planet_nomads','planet_nomads','https://www.gog.com/game/planet_nomads',0,'Craneballs','Craneballs','Action',0,0,0),(1405562076,'The Adventures of Willy Beamish',0,0,0,0,0,'ab64ead8dbc576891d5d2ba0ec55fc193d4010d314765ce8fae38a6c24bde8c3','ea786e42c8c6cae041c7c17593d5596d7b2d7811be5012b00fe715adad2b85af','the_adventures_of_willy_beamish','the_adventures_of_willy_beamish','https://www.gog.com/game/the_adventures_of_willy_beamish',0,'Dynamix','Activision','Adventure',0,0,0),(1405735336,'Age of Civilizations II',0,0,0,0,0,'56db7b6634819492ded27dc6997542f0a2a302782cf9e8c5bf8f91aa4aa07aaf','b58593f9ede40139da080304d2bee5b8bad9ae868f73afc10e51d43cc61c3f2d','age_of_civilizations_ii','age_of_civilizations_ii','https://www.gog.com/game/age_of_civilizations_ii',0,'Łukasz Jakowski','Łukasz Jakowski Games','Strategy',0,0,0),(1405883093,'Codename: ICEMAN',0,0,0,0,0,'23c098f4c55b253aebf6763052626ebd99ff1c19db3e5c586cc8f4bc0c95937e','7747956c3214ed890605de7baf8eb5c17619cc8492cdd329b8c9c1e9c8b8d121','codename_iceman','codename_iceman','https://www.gog.com/game/codename_iceman',0,'Sierra','Activision','Action',0,0,0);
INSERT INTO `games` VALUES (1405976071,'Reservoir Dogs: Bloody Days',0,0,0,0,0,'e0e90e1fe48a342a227a3c3733a1b2d6b456c28b08562cca5b6218e6f9cbe261','e70a68f4caecc22335cfa602ac98e4ae631ea05b3646b10def4c50ff50034086','reservoir_dogs_bloody_days','reservoir_dogs_bloody_days','https://web.archive.org/web/20170518214404/https://www.gog.com/game/reservoir_dogs_bloody_days',0,'Big Games','Big Star Games','Shooter',0,0,0),(1406444467,'Demetrios - The BIG Cynical Adventure',0,0,0,0,0,'0bfc98c6130c5f6060c8f24b938fee6f01f1ada2edfe4c76a0fc08165a681ad7','821a72c02c614c7b2a4aa526038b40cc0937103e5a5c7204dae62b00b04bb76b','demetrios_the_big_cynical_adventure','demetrios_the_big_cynical_adventure','https://www.gog.com/game/demetrios_the_big_cynical_adventure',0,'COWCAT','COWCAT','Adventure',0,0,0),(1407126652,'Heart of the Woods',0,0,0,0,0,'78db2a1fe44e718f35925aac792f5d6798b185d09613c87c0547eb674ff68c4c','905fae246e06499b429e146061a83a49e4d47059bad3163daebc2fce7883f149','heart_of_the_woods','heart_of_the_woods','https://www.gog.com/game/heart_of_the_woods',0,'Studio Élan','Sekai Project','Adventure',0,0,0),(1407917236,'Of Light and Darkness: The Prophecy',0,0,0,0,0,'b51b2ff24af4e01089397608e23f7aeb093d798a96508144f25957a22680826a','231652112cbb3efdbae5c814e58bd398febbb3138b6d539a306c0a89cada691c','of_light_and_darkness_the_prophecy','of_light_and_darkness_the_prophecy','https://www.gog.com/game/of_light_and_darkness_the_prophecy',0,'Tribal Dreams','Interplay','Adventure',0,0,0),(1408852789,'Pyre',0,0,0,0,0,'c205a62b2d24dddb2a3ef812ee0eab28df842b279864b8e36039cbdd49f4680f','b2e0e58d683998d0b0766e9fe76efeef75c3d1b62bea3a0a148c33a287136842','pyre','pyre','https://www.gog.com/game/pyre',0,'Supergiant Games','Supergiant Games','Action',0,0,0),(1408897127,'Remothered: Tormented Fathers',0,0,0,0,0,'20070863531b0be56d4118c3c92cfe670b64e1bb63872e87862c2cbb826e6164','8729cbdf539a6dd2b3c766daa138a53dd4f0307b1a9b54165bd5a827ee17df1c','remothered_tormented_fathers','remothered_tormented_fathers','https://www.gog.com/game/remothered_tormented_fathers',0,'Stormind Games','Darril Arts','Action',0,0,0),(1409316604,'The Park',0,0,0,0,0,'7564c7c6d087f59f01210578911147b872aae1edb9c9f79c9e3ef4f037f3620b','992076b27a92e27236dcbc6a2f96fcd2f977c2577599a3ea63184dcd42702216','the_park','the_park','https://www.gog.com/game/the_park',0,'Funcom','Funcom','Adventure',0,0,0),(1409524666,'THE KING OF FIGHTERS 2002 UNLIMITED MATCH',0,0,0,0,0,'8e8fb5792046cc6596e819646737ab514b856e2b9e83a1bb3611680f5cc12d9b','a85d2ce98c6744b883db194e498e735368c42e3bdb928112bb49750eac297996','the_king_of_fighters_2002_unlimited_match','the_king_of_fighters_2002_unlimited_match','https://www.gog.com/game/the_king_of_fighters_2002_unlimited_match',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(1409964317,'SWAT 4: Gold Edition',0,0,0,0,0,'8aedca783fb59e220e652474143af83b4eb537bb0f77da5a8de8c5d52285db90','2cda02b6cb1fad518b6000c27b53006fd9bb0b0a124b16062f8ae105901cc250','swat_4_gold_edition','swat_4_gold_edition','https://www.gog.com/game/swat_4_gold_edition',0,'Irrational Games','Activision','Action',0,0,0),(1410768011,'Turok 2: Seeds of Evil',0,0,0,0,0,'932dad0aef406eb86604be77c6e466504eaab5535b65d9e31352c41c8440500a','bf1eb47ca11d35d29b5ff0758be703cd49ff5a7a2121e6c26d7c8ce727c306b4','turok_2_seeds_of_evil','turok_2_seeds_of_evil','https://www.gog.com/game/turok_2_seeds_of_evil',0,'Iguana Entertainment, Nightdive Studios','Night Dive Studios','Shooter',0,0,0),(1411619402,'Candle',0,0,0,0,0,'3285b4eeb47310f44e208d8c13834d3ee185e9586550e67eaed42aff557a3e0e','8b92fa71ff03103760e0373e98051c333b0d3d94d9897f3a9b95ffde490d8bf8','candle','candle','https://www.gog.com/game/candle',0,'Teku Studios','Daedalic Entertainment','Adventure',0,0,0),(1411626324,'Tower of Time',0,0,0,0,0,'c3ef2332c0b7274735c0c75239a49f22fd42bff695b9457ecb6ca792c0c16c05','131430d8da3f91b57928a853f52cff34b57fe3d70f4259b50fb2cc5c6dd903e5','tower_of_time','tower_of_time','https://www.gog.com/game/tower_of_time',0,'Event Horizon','Event Horizon','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1412553022,'Grim Legends 2: Song of the Dark Swan',0,0,0,0,0,'0f76094e3d5644de1b03005b1edc6ffb0eba45664662a144370c1da75f89de8e','8979223e99834d78540d3095933a72d5a411bd07417ed8859c57ae74e23a4392','grim_legends_2_song_of_the_dark_swan','grim_legends_2_song_of_the_dark_swan','https://www.gog.com/game/grim_legends_2_song_of_the_dark_swan',0,'Artifex Mundi','Artifex Mundi','Adventure',0,0,0),(1412601690,'Diablo + Hellfire',0,0,0,0,0,'2a351ec2315d2b082c120a1499434480758e56603d2cf21a93e544300c0f3829','5edc48110ce3b84fcf36933cd88c41e53b343359c630f81c44efaaf8be105972','diablo','diablo','https://www.gog.com/game/diablo',0,'Blizzard Entertainment, Inc.','Blizzard Entertainment, Inc.','Role-playing',0,0,0),(1413035173,'Etherborn',0,0,0,0,0,'3d844ab2ec6b6a116f07ec2df7d31c3b8611d6040633e9ded22f455b186a21b8','93e424e8f45bd9908bc80c63c3706cbbeaba650a7ebe5c08e65a91f097b210ec','etherborn','etherborn','https://www.gog.com/game/etherborn',0,'Altered Matter','Altered Matter','Adventure',0,0,0),(1417678837,'Antihero',0,0,0,0,0,'47e001e95c2eeda6a9f87080563b534356bfc2d9e84a0cc8d37f87e8ee2168bc','9053ad47aa8d892ee0d40ae2fd31c170c9ef3d887e608a3f5c04552f5e7abf08','antihero','antihero','https://www.gog.com/game/antihero',0,'Tim Conkling','Versus Evil','Strategy',0,0,0),(1418669891,'Warcraft II Battle.net Edition',0,0,0,0,0,'f3c7299d04f3a32ca4a961eb7cf2ac7248c7ba5499395c296a8fac296a5e1190','bcdb286fc40c20a7ee28fd8aa9d4d8a7cba71c8df6590cf6d50dc16a75adb43c','warcraft_2_battlenet_edition','warcraft_2_battlenet_edition','https://www.gog.com/game/warcraft_2_battlenet_edition',0,'Blizzard Entertainment, Inc.','Blizzard Entertainment, Inc.','Strategy',0,0,0),(1419313792,'SpellForce 3',0,0,0,0,0,'e5b889ddcd0acec729ed30a82b3fd525a22e327a2bcf0f335a5bd3f6d6c67e11','b55f37d0a770f6c44e2c62043faedb697c512d217315d267ad831d3697c32900','spellforce_iii','spellforce_iii','https://www.gog.com/game/spellforce_iii',0,'Grimlore Games, THQ Nordic ','THQ Nordic GmbH','Role-playing',0,0,0),(1420469009,'Scanner Sombre',0,0,0,0,0,'871416bfc0c6293f10e691da0e20bfc792bc8854ead16315229b1285796358ca','e607ebeb717910ba93f86c411128a4a5ef387c9bfffa39a454b9041628027d4c','scanner_sombre','scanner_sombre','https://www.gog.com/game/scanner_sombre',0,'Introversion Software','Introversion Software','Adventure',0,0,0),(1420630484,'Avernum: Escape From the Pit',0,0,0,0,0,'307a9ebc17fa18cafda5c8244e9d81484e2b2800c75a036bca9696ad1dabac87','1c97544c9480449519ed182bf7c6149176920d1e37125736846b3250f90be4e8','avernum_escape_from_the_pit','avernum_escape_from_the_pit','https://www.gog.com/game/avernum_escape_from_the_pit',0,'Spiderweb Software','Spiderweb Software','Role-playing',0,0,0),(1420634392,'Cyberia',0,0,0,0,0,'f6226a4668e352907cdb87d0cfd41bdf6f21e06443dfc3cc0ff3175d88254ebc','28fddac463376e62be4c9f753508a38d8ad0e4b8a09299ae206466cea0309b22','cyberia','cyberia','https://www.gog.com/game/cyberia',0,'Xatrix Entertainment','Interplay','Shooter',0,0,0),(1420648167,'Lords of Xulima',0,0,0,0,0,'ffe7f98e98bfc8c9585cc44f125953ef782f253dd81c7d10e7006891e436a223','1a3f5c71d284bc1551e2df98d46d2952e00c48d6bdeb5afa4329c4ec85c0086d','lords_of_xulima','lords_of_xulima','https://www.gog.com/game/lords_of_xulima',0,'Numantian Games','Numantian Games','Role-playing',0,0,0),(1420648479,'Ultimate General: Gettysburg',0,0,0,0,0,'1379abf166b135e212cc696d4575943b89e2b0587095e2999daa9a4c3ecf5961','72bfe4f821a14d7dc016cb083d3dd459a49a0d4bae5e88dac77a7e93565111ab','ultimate_general_gettysburg','ultimate_general_gettysburg','https://www.gog.com/game/ultimate_general_gettysburg',0,'Game-Labs','Game-Labs','Strategy',0,0,0),(1420648480,'King Arthur\'s Gold',0,0,0,0,0,'06015c740970e3733c44c238d077a0d5574899affdafbd6ca3604ef98d7594b5','5cd0c20d9b78b441d35be0b0cc3d319fe749b82c98d7f28ab41590beec7c8d4f','king_arthurs_gold','king_arthurs_gold','https://www.gog.com/game/king_arthurs_gold',0,'Transhuman Design','Transhuman Design','Action',0,0,0);
INSERT INTO `games` VALUES (1420648481,'Avernum 2: Crystal Souls',0,0,0,0,0,'db95bcaf2f4f657b79c070c5b085fafd6169427aec44c564f60113917c0f9c9d','44df49285627462aa3cfc9453b1802136cad013320baf297806bdac53e7a27fd','avernum_2_crystal_souls','avernum_2_crystal_souls','https://www.gog.com/game/avernum_2_crystal_souls',0,'Spiderweb Software','Spiderweb Software','Role-playing',0,0,0),(1420716694,'Double Dragon Trilogy',0,0,0,0,0,'d7f9057727bf25e3ea670154b614017f9534e85c6edd5b3e4e5727e5113460a9','5386a8d4d04b226350fa524a1fae2370b69841b7094b42ca704e9bb2b70908ef','double_dragon_trilogy','double_dragon_trilogy','https://www.gog.com/game/double_dragon_trilogy',0,'DotEmu','DotEmu','Action',0,0,0),(1420812121,'King\'s Bounty: Dark Side',0,0,0,0,0,'90290c5416eaf6ce50f44662b9202ebf49bd1ab35389f4b7d0306a67cc7508b2','99360cf915297b7a7250453afde575bfba78874687d522158b320a642e853afc','kings_bounty_dark_side','kings_bounty_dark_side','https://www.gog.com/game/kings_bounty_dark_side',0,'1C-Softclub','1C Publishing','Role-playing',0,0,0),(1421064427,'Sunless Sea',0,0,0,0,0,'0e30cf119a490e2b2ccf182367e2fa4bb12f56d57fb5075b48003785acd1e846','b535828512f28c2ec291bc8cceaebf53eeaa38a586646aab494b035cea08d160','sunless_sea','sunless_sea','https://www.gog.com/game/sunless_sea',0,'Failbetter Games','Failbetter Games','Adventure',0,0,0),(1421404433,'STAR WARS™: Dark Forces',0,0,0,0,0,'16c50681ec29263466cd3e69c71be5434dc759cd15c178ebded1657e29f7d891','d9036926d6e38a432eeb0fc1eba8dc047e82bbda3edadf94dc2e3ed3ab570b47','star_wars_dark_forces','star_wars_dark_forces','https://www.gog.com/game/star_wars_dark_forces',0,'Lucasfilm','Disney','Shooter',0,0,0),(1421404508,'STAR WARS™: X-Wing vs. TIE Fighter',0,0,0,0,0,'09864968e1e1fcab2ed96909ea21ef2cc2cf8f75334252bcda7bc09aba2f5962','2a70c0be65acffe4576f9dc9ae13ff66ac9ee133522e20252195a950547e617b','star_wars_xwing_vs_tie_fighter','star_wars_xwing_vs_tie_fighter','https://www.gog.com/game/star_wars_xwing_vs_tie_fighter',0,'Lucasfilm','Disney','Action',0,0,0),(1421404581,'STAR WARS™ Knights of the Old Republic™ II: The Sith Lords™',0,0,0,0,0,'a5764bc4f089ed5616cfa22c1426f3f808b58e2d48f6a7b8f61ab774531a2643','263a1d7629ae7d1f8f5b095c54ae4c979615af20dd7b740641fb680cae1dcc18','star_wars_knights_of_the_old_republic_ii_the_sith_lords','star_wars_knights_of_the_old_republic_ii_the_sith_lords','https://www.gog.com/game/star_wars_knights_of_the_old_republic_ii_the_sith_lords',0,'Lucasfilm','Disney','Role-playing',0,0,0),(1421404646,'STAR WARS™ Galactic Battlegrounds Saga',0,0,0,0,0,'59602aacf196b109d70801ed36fded6dbe9305b8ad56041d8712cb05ed2f9f26','822e42b71ba4f83f7ab093ea50980ed614bd5681ce48b3c6208404987e4b41a1','star_wars_galactic_battlegrounds_saga','star_wars_galactic_battlegrounds_saga','https://www.gog.com/game/star_wars_galactic_battlegrounds_saga',0,'Lucasfilm','Disney','Strategy',0,0,0),(1421404701,'STAR WARS™ Battlefront™ II (Classic, 2005)',0,0,0,0,0,'458d6b963755ce3b0afa93f9976e2c05360f569826b00f0c91442f8a892f19a9','8fdd99b88dcac8dd80b2dbd188f957ce7e93dd23dffc847885ba4de6365a7c9e','star_wars_battlefront_ii','star_wars_battlefront_ii','https://www.gog.com/game/star_wars_battlefront_ii',0,'Lucasfilm','Disney','Shooter',0,0,0),(1421404763,'STAR WARS™: X-Wing Alliance™',0,0,0,0,0,'0485e8ca4aa0c4f9fd7a8e561c2f804af0702bbe5f36c48ef899242246d40255','f4cc4fcdb0e2b74333e75cc17f53ff7606d00e39945c84f442ff61263fdc583c','star_wars_xwing_alliance','star_wars_xwing_alliance','https://www.gog.com/game/star_wars_xwing_alliance',0,'Lucasfilm','Disney','Shooter',0,0,0),(1421404828,'STAR WARS™ Rebellion',0,0,0,0,0,'4d7f5160a916c856a85ece512235dbe4ec4612ba1ef1bf6207e2b97028f24c67','50ffc4be2997151e2b12a1049862a8307b6749f41d5782d8de10b7f9179fc55f','star_wars_rebellion','star_wars_rebellion','https://www.gog.com/game/star_wars_rebellion',0,'Lucasfilm','Disney','Strategy',0,0,0);
INSERT INTO `games` VALUES (1421404887,'STAR WARS™ Empire at War: Gold Pack',0,0,0,0,0,'3443da3fe23e15691d70236b5d439782341fc17ab195ff6151e8163450661de8','346d502db417d457d45dd939ecd2ca3172b16a3e9ab70ffd3ea310679850b22c','star_wars_empire_at_war_gold_pack','star_wars_empire_at_war_gold_pack','https://www.gog.com/game/star_wars_empire_at_war_gold_pack',0,'Lucasfilm','Disney','Strategy',0,0,0),(1421404950,'STAR WARS™: Rogue Squadron 3D',0,0,0,0,0,'8dd56f72d814178c250ce1346686216c816f05b7ae76f7307f75b6d7db1c3b39','551b9f2c14a592b15bb58ab2ed9a6d125da423b85a6d8851104273b78d9a21b6','star_wars_rogue_squadron_3d','star_wars_rogue_squadron_3d','https://www.gog.com/game/star_wars_rogue_squadron_3d',0,'Lucasfilm','Disney','Action',0,0,0),(1421404999,'STAR WARS™ Starfighter™',0,0,0,0,0,'954d681f969eb1ec8d723c671637ed5f2f42bffffd9016ae97d9e9de457b6807','c5f822a28a0a87217a3cd9fbd44a9c12897c1a368845f4f785fc66ec59b915a2','star_wars_starfighter','star_wars_starfighter','https://www.gog.com/game/star_wars_starfighter',0,'Lucasfilm','Disney','Shooter',0,0,0),(1421405135,'STAR WARS™ Republic Commando',0,0,0,0,0,'3f82c58b03c0ccd8c47989813cabd22268fe2ff6366729dc3c500babf1acb307','35faac649e1fecc9767f8d25155119b17dd19a561acdea61e4f57b42fd6fc695','star_wars_republic_commando','star_wars_republic_commando','https://www.gog.com/game/star_wars_republic_commando',0,'Lucasfilm','Disney','Action',0,0,0),(1421848741,'Haimrik',0,0,0,0,0,'2f4f5e9fb7e16f059a31dcb9973bba13f8c262a7e013c2b8071b0ba6516e859f','2ab4ad9d9d8f93362fd7a3ed715c94fbde244f9b3f96d76ae1be06d11699c02e','haimrik','haimrik','https://www.gog.com/game/haimrik',0,'Below the Game','1C Publishing','Action',0,0,0),(1421855536,'World of Goo',0,0,0,0,0,'fddb2b2639c4d4f7900f2626bc1da3f3e2cbd9c0ca704bc29b2e9c2cbebdd634','f3bbbbf38e44ee04642a40460835b700f008cb50864b4fb5b06ec67d9c5e36e2','world_of_goo','world_of_goo','https://www.gog.com/game/world_of_goo',0,'2D BOY','2D BOY','Strategy',0,0,0),(1421993477,'Pizza Connection 3',0,0,0,0,0,'5e6cbfec2ae2f4c6e0026db76b45ca153e72d6d2349b92ba5363658bfe7036e4','f8c3622a958f9d3a4820d9d1f47fe558b1175c56f16180083dfab3792f076ac2','pizza_connection_3','pizza_connection_3','https://www.gog.com/game/pizza_connection_3',0,'Gentlymad Studios, Assemble Entertainment ','Assemble Entertainment','Strategy',0,0,0),(1422285784,'STAR WARS™ Jedi Knight: Dark Forces II - Mysteries of the Sith',0,0,0,0,0,'9167e6c841f5a5803e0876454dd2fb0bf0a42d9564edd69a19fea409b0674da9','d172da40974ad2988e799be946c1310de7308101b92df234c99d4f26144efe17','star_wars_jedi_knight_dark_forces_ii_copy3','star_wars_jedi_knight_dark_forces_ii_copy3','https://www.gog.com/game/star_wars_jedi_knight_dark_forces_ii',0,'Lucasfilm','Disney','Shooter',0,0,0),(1422286819,'STAR WARS™ Jedi Knight: Dark Forces II',0,0,0,0,0,'59e36f6eebad61a5dc10c5c385767d7f564bad4f5d76ea2b46a5615f01cc4aae','abb1a5a2227f7021378fa53c33071ebf7ce07492d49d848c461ad210f1101c4a','star_wars_republic_commando_copy3','star_wars_republic_commando_copy3','https://www.gog.com/game/star_wars_jedi_knight_dark_forces_ii',0,'Lucasfilm','Disney','Shooter',0,0,0),(1422288780,'Massive Assault',0,0,0,0,0,'9315341a907036b0628b537a7edd59bcd25ab448d9a356e505024a60adafc850','308cb8e4f45fcc5797651e66f2e10e50c03e8ff965b5fa43bbd9847d6d7fe63e','massive_assault','massive_assault','https://www.gog.com/game/massive_assault',0,'Wargaming.net','Wargaming.net','Strategy',0,0,0),(1422357636,'Supreme League of Patriots - Episode 1',0,0,0,0,0,'bedfedbd0396879310c52bd5f93be4849a4ac01abf8aecd6e545e791c42b3468','3b8de0483b5ebfda93485e3b55d5189874d27eb912ad33a17458f8fd968f2528','supreme_league_of_patriots_episode_1','supreme_league_of_patriots_episode_1','https://www.gog.com/game/supreme_league_of_patriots_season_pass',0,'No Bull Intentions','Phoenix Online Studios','Adventure',0,0,0);
INSERT INTO `games` VALUES (1422357706,'Supreme League of Patriots - Episode 2',0,0,0,0,0,'a4a36c5d241361ec9083ebe72f8431ba45b33c3370431ed3e582082c0f851321','cb8fb562aa57c01d0556985035c21aaa5b604aea14decbe19dac6c2fe76ad265','supreme_league_of_patriots_episode_2','supreme_league_of_patriots_episode_2','https://www.gog.com/game/supreme_league_of_patriots_season_pass',0,'No Bull Intentions','Phoenix Online Studios','Adventure',0,0,0),(1422357761,'Supreme League of Patriots - Episode 3',0,0,0,0,0,'7f50a4d73103226f00ddc1b2a7c06c97309f73703f534d73459ddded786b997e','a0f2af1da4685616b50ffafc4a89629692e86d9f8c9cadd476ffa4c1ce4c00ae','supreme_league_of_patriots_episode_3','supreme_league_of_patriots_episode_3','https://www.gog.com/game/supreme_league_of_patriots_season_pass',0,'No Bull Intentions','Phoenix Online Studios','Adventure',0,0,0),(1422357788,'Ys: The Oath in Felghana',0,0,0,0,0,'20b86d46683deff4f5db647ae87880abee15c7972a1f333a6d0de2e6deb9b4dd','f67eb15795e64e05a867e8fcab81fa934fe965a9f7ebda0ef29e1b3dfd5b2908','ys_the_oath_in_felghana','ys_the_oath_in_felghana','https://www.gog.com/game/ys_the_oath_in_felghana',0,'Nihon Falcom Corporation','XSEED Games','Role-playing',0,0,0),(1422357892,'Ys Origin',0,0,0,0,0,'ece9c04b10be499f431cf50e1348f45c710ec009f0d686b95fa63351b17c953c','08d56c8b91d17e34f68d63a6c19664d28ef33d54e835880a2524bf6a928321f0','ys_origin','ys_origin','https://www.gog.com/game/ys_origin',0,'Nihon Falcom Corporation','XSEED Games','Role-playing',0,0,0),(1422440106,'Ys I',0,0,0,0,0,'3723317a1e222cce1e7fd355a18c281d2d092b33fe3c160f8bb777c87958a7cd','1d7f474306025c23af87669dfefdf86e840d807c21c10c8c2492b22b166d01a3','ys_i','ys_i','https://www.gog.com/game/ys_i_ii_chronicles',0,'Nihon Falcom','XSEED Games','Role-playing',0,0,0),(1422440145,'Ys II',0,0,0,0,0,'22a841a4d30547dcf0b1b314ffc12326468f96f535c20b3e31b571ceaa2be306','ec77658f30f7d97fb7c1184eb607a7cea28d5a48cdc8609d0258b24445ddbc9d','ys_ii','ys_ii','https://www.gog.com/game/ys_i_ii_chronicles',0,'Nihon Falcom','XSEED Games','Role-playing',0,0,0),(1422452702,'Massive Assault: Phantom Renaissance',0,0,0,0,0,'e4601ee0aff763083dc7cb59238926198c40df65060d60b13603c72f8619cbd9','f7995b106327594ee7f789f288bac08e359ee0716dc8827215fdfe91d3c331a2','massive_assault_phantom_renaissance','massive_assault_phantom_renaissance','https://www.gog.com/game/massive_assault_phantom_renaissance',0,'Wargaming.net','Wargaming.net','Strategy',0,0,0),(1422618200,'Paranautical Activity Deluxe Atonement Edition',0,0,0,0,0,'889b8ded2dbad0fd6b42b6677a5282296cdb99a766769a5d408c7fd7dd81d8d7','3e1b8c00de6b5c8f0f5782b9c0b88b5685cb01171f254e31887c336a9d61413d','paranautical_activity','paranautical_activity','https://www.gog.com/game/paranautical_activity',0,'Digerati','Digerati','Shooter',0,0,0),(1422630762,'Sokobond',0,0,0,0,0,'4be6903739e526bb945028baa64cbe356a4771089d96252eedfc9702938822b3','fc8d3611b1c36a8f4de091e798b8cc36b88b9ec728e5e674547b861e50fbc540','sokobond','sokobond','https://web.archive.org/web/20171025230404/http://www.gog.com/game/sokobond',0,'Alan Hazelden, Harry Lee and Ryan Roth','Draknek','Strategy',0,0,0),(1422781192,'Egypt: Old Kingdom',0,0,0,0,0,'4f96bd915b484ca4a1f698f756a43bdb8fa0c983fb19ee64485ad1f52268c01f','131b7b305f5ed18c61b1a2fb1978046db7a0288e76d55efe34b318b10b16ab97','egypt_old_kingdom','egypt_old_kingdom','https://www.gog.com/game/egypt_old_kingdom',0,'Clarus Victoria','Clarus Victoria','Strategy',0,0,0),(1422870624,'Apotheon',0,0,0,0,0,'64515e743af795a8ef1522b8562f89e9be264b399b98747ae2c6e42db2287447','8c7e287b04b47fc494bab4f25dea39b45bfbc19f0cf21468cc36c795ae295d4b','apotheon','apotheon','https://www.gog.com/game/apotheon',0,'Alientrap Games','Alientrap Games','Action',0,0,0),(1422911599,'Timespinner',0,0,0,0,0,'3f67395625d4ac35cec5c54be578e251baf590d928c911fce9c0a287e016ab8f','bcb8e13d97fe109067aba3f6b491569b35ca9019c653a9f47d005efedd3b6968','timespinner','timespinner','https://www.gog.com/game/timespinner',0,'Lunar Ray Games','Chucklefish','Adventure',0,0,0);
INSERT INTO `games` VALUES (1422912124,'WORLD END ECONOMiCA episode.03',0,0,0,0,0,'780453e013753096aa9381eb29a22d3d12a676f0c62699a5ef87f644662003d9','7656616f25088159fff1888bc032ec1e4abbea1e0f40688b9b4b46c63a23e699','world_end_economica_episode03','world_end_economica_episode03','https://www.gog.com/game/world_end_economica_episode03',0,'Spicy Tails','Sekai Project','Adventure',0,0,0),(1423058311,'Bastion',0,0,0,0,0,'173419362b2b23c35bf5d8098c4a825508e5c1612abef9330cb985cb84a1a454','ff3dc181836af109e9dc83dca70ebdeb07c620719cda83c963fc8650e3712c2d','bastion','bastion','https://www.gog.com/game/bastion',0,'Supergiant Games','Warner Bros. Interactive Entertainment','Action',0,0,0),(1423058413,'F.E.A.R. Platinum',0,0,0,0,0,'e3e7689d4d4c5ff69aeb41dba25a0b0e3586cfdfe51319040d313c3d991321b7','baa43cb9f91e97be2bc22b85f398bed3b85edd37618ac20e41818c33bc4df967','fear_platinum','fear_platinum','https://www.gog.com/game/fear_platinum',0,'Monolith, TimeGate Studios, Inc.','Warner Bros. Interactive Entertainment','Shooter',0,0,0),(1423058542,'LEGO Batman: The Videogame',0,0,0,0,0,'581a3af024aa0ca30451595c96098536733aa99ddb68aa8041efaa5dbbde9775','750b641570e80236059bd95c9312e4a039af0799f004e56bd273efa8ce659ce4','lego_batman_the_videogame','lego_batman_the_videogame','https://www.gog.com/game/lego_batman_the_videogame',0,'Traveller\'s Tales','Warner Bros. Interactive Entertainment','Action',0,0,0),(1423058817,'LEGO Harry Potter: Years 1-4',0,0,0,0,0,'90af98e9b45e0be22c0fa96e3ee9d3cfae8cc31cb837b44f79707919a77e5bd8','5edfea0929e5e35a16c54451fafea05b42f711ee55198863d78176d6e4c4304a','lego_harry_potter_years_14','lego_harry_potter_years_14','https://www.gog.com/game/lego_harry_potter_years_14',0,'TT Games','Warner Bros. Interactive Entertainment','Action',0,0,0),(1423058931,'LEGO Harry Potter: Years 5-7',0,0,0,0,0,'2707853cd00850fa3325e4e91f2c650c733df9a52378fc919b36ce29b62bae13','974eb9ae6087e58f44e4d6428181d3c11215f9ce860bb884819bc7902b23e8c1','lego_harry_potter_years_57','lego_harry_potter_years_57','https://www.gog.com/game/lego_harry_potter_years_57',0,'TT Games','Warner Bros. Interactive Entertainment','Action',0,0,0),(1423080728,'Republique',0,0,0,0,0,'9ed1e6c81480fec9662b4501ac9541ca40394c2556aabbbf03c4c59308b26206','3e8af4b7206955518e0a5756f12a918f0e8498ed8922d6fa62566a3e4c557d2d','republique','republique','https://www.gog.com/game/republique',0,'Camouflaj','GungHo America','Action',0,0,0),(1423218604,'Victoria Complete',0,0,0,0,0,'6ce1fd3d84769f0dda5c2bde224f20a5e1929afda25e1410e954a0404efeb13f','64ec6511aee5b3cd23065342d17bc75173ce69474e26520df64aaf7af126fa2d','victoria_complete','victoria_complete','https://www.gog.com/game/victoria_complete',0,'Paradox Development Studio','Paradox Interactive','Strategy',0,0,0),(1423221839,'The Escapists',0,0,0,0,0,'8c022ecde553b76debaa238dcd3dea6df2bae952f2a9b6a8c558a3e0934a0ac6','b445e179fc69c1b3dc387596daa8ff24f7110005345c0def6d3d5b4f7b8356fc','the_escapists','the_escapists','https://www.gog.com/game/the_escapists',0,'Mouldy Toof Studios','Team17 Digital LTD.','Action',0,0,0),(1423228477,'Europa Universalis',0,0,0,0,0,'20d290066230a9509eefc03cd718003dfafb5797fc89872db2d1242f311058bb','302757695e96d24643c800f6807ae1fcef67e1a1d994e7f6a1b0339ef0c6f901','europa_universalis','europa_universalis','https://www.gog.com/game/europa_universalis',0,'Paradox Development Studio','Paradox Interactive','Strategy',0,0,0),(1423233026,'Crusader Kings Complete ',0,0,0,0,0,'b58bac02edb438cde975fdd76dd7b5aea4e851701376d732e98192b883336b34','93a4454b35c78e20f3e99b03a794127d3c7846ef29574068d86dd83b252aff46','crusader_kings_complete','crusader_kings_complete','https://www.gog.com/game/crusader_kings_complete',0,'Paradox Development Studio','Paradox Interactive','Strategy',0,0,0),(1423477291,'Hearts of Iron',0,0,0,0,0,'2f12420fe57ce0e7bcdc91dd6e81a208e43fe92bc7fbe73d78b0f73195a98038','b307047477a8b683e89d87503f8d0dc57b0da2dffec472313601b6f120f7b09c','hearts_of_iron','hearts_of_iron','https://www.gog.com/game/hearts_of_iron',0,'Paradox Development Studio','Paradox Interactive','Strategy',0,0,0);
INSERT INTO `games` VALUES (1423481910,'Majesty Gold HD',0,0,0,0,0,'eb78e3012f129d2dbe2ff0a6969ff073b044d4f652085459ac55c3aa53a3c274','51e00116961982790bdbcabf874cd6519f4aa7f5eca4c43d3bf7d65b3e9a80d2','majesty_gold_hd','majesty_gold_hd','https://www.gog.com/game/majesty_gold_hd',0,'Cyberlore Studios','Paradox Interactive','Strategy',0,0,0),(1423487549,'Sanctuary RPG: Black Edition',0,0,0,0,0,'e33eccebc323fa7760309cb8a15065bc09070d37a5f35b3f83d238e9f3552324','cc7d7f62ee8defe21c172368c37d6cbc99cef786c166890cc8af4ec3522a3da7','sanctuaryrpg_black_edition','sanctuaryrpg_black_edition','https://www.gog.com/game/sanctuaryrpg_black_edition',0,'Black Shell Games','Black Shell Media','Role-playing',0,0,0),(1423758554,'The Book of Unwritten Tales 2',0,0,0,0,0,'ffaceddd8271f013f0736fa52f0d4a78f8b0dbacc95d168e932b3dc5e7c17f8f','6eeeffac80e7ec8f302e8e072d71c2ddd2b4dbbda2f7442adc067fb12cca710e','the_book_of_unwritten_tales_2','the_book_of_unwritten_tales_2','https://www.gog.com/game/the_book_of_unwritten_tales_2',0,'KING Art','THQ Nordic GmbH','Adventure',0,0,0),(1423826709,'Majesty 2 Collection',0,0,0,0,0,'2244f9fdd028cc580e3a69de7d6f96f2ef876f71602df380c8f86ec3f97f3fce','9c99f6201fb62104f0a67bc1d8a5c9ab8831a67aa41170a0f90eb11dcb8fc7e5','majesty_2_collection','majesty_2_collection','https://www.gog.com/game/majesty_2_collection',0,'1C Ino-Co','Paradox Interactive','Strategy',0,0,0),(1424100574,'Hand of Fate',0,0,0,0,0,'5854681364a47cf8eb568807690b955989ce05d78766c61b888fff406f5d3c50','a4bb35b720a59aa8c3a7e449bb7698a710601280886c6338b97463d3662841d9','hand_of_fate','hand_of_fate','https://www.gog.com/game/hand_of_fate',0,'Defiant Development','Defiant Development','Adventure',0,0,0),(1424250504,'Caribbean!',0,0,0,0,0,'0f1b6875905c795f804c2e35eff356d222e37d00e993da6d5bcf2021f1203556','c50a07165031f4e84ee875a9c34ac1601ef3569721427033706c4c60111e5de3','caribbean','caribbean','https://web.archive.org/web/20150222122851/http://www.gog.com/game/caribbean',0,'Snowbird Games','Snowbird Games','Role-playing',0,0,0),(1424254701,'Last Tinker™: City of Colors, The',0,0,0,0,0,'474e045c2494b0eb8f907e7617f2c2fb8d2c3bed32b9e2c1a97e5c820d049373','1e2300f1f07c8f2009b770ce7d2801419376a40d27faa249a431c22c5f5e749b','the_last_tinker_city_of_colors','the_last_tinker_city_of_colors','https://www.gog.com/game/the_last_tinker_city_of_colors',0,'Mimimi Productions ','Daedalic Entertainment','Action',0,0,0),(1424258777,'Train Fever',0,0,0,0,0,'253024ff070290c4fa868699fa2cad4b40ad65806e5ed668010179e5eacdb50c','c105a796e713782d6aae6a7473aa37b3cc0e88b9f5622cebbe1d47bf99f41ae3','train_fever','train_fever','https://www.gog.com/game/train_fever',0,'Urban Games','Good Shepherd Entertainment ','Simulation',0,0,0),(1424442317,'Hot Tin Roof: The Cat That Wore A Fedora',0,0,0,0,0,'84757573d59ac8cd1d0b40254fdb0fe81680422b443e4dce9386d76dd9f1c573','05d52a536ff46f2228a297ccd530eb222249ccac6855eb244e624aeb52e71ed8','hot_tin_roof_the_cat_that_wore_a_fedora','hot_tin_roof_the_cat_that_wore_a_fedora','https://www.gog.com/game/hot_tin_roof_the_cat_that_wore_a_fedora',0,'Glass Bottom Games','Glass Bottom Games','Adventure',0,0,0),(1424773427,'Hotline Miami 2: Wrong Number',0,0,0,0,0,'f016524416499a85f9c5ee41bb983ff18d69c10a31442810e0018ab12c520bde','f2afc20b2888beb38098e8202903045a464fd044b710dc888482bf78f3f151ed','hotline_miami_2_wrong_number','hotline_miami_2_wrong_number','https://www.gog.com/game/hotline_miami_2_wrong_number',0,'Dennaton Games','Devolver Digital','Action',0,0,0),(1424782569,'Oddworld: New ’n’ Tasty',0,0,0,0,0,'4ca56e8aff9bc8197130fa267a40fee25519ea28f6af4a41acb1ae5dbaf09db0','5aadfd2b1416b00d218c8b4fbe55407950bed8adb05f8f86a8a278729d294ae0','oddworld_new_n_tasty','oddworld_new_n_tasty','https://www.gog.com/game/oddworld_new_n_tasty',0,'Just Add Water Ltd.','Oddworld Inhabitants','Action',0,0,0);
INSERT INTO `games` VALUES (1424868751,'Shelter 2',0,0,0,0,0,'cd2b9be6a8ec3383a5992ca8a7e7347729c96e6b8ade6b5683bd76202862d6f5','3b847aa2e11877fb6952fbc44b3820b9aa526ace24e7e488bccc8268d510b97a','shelter_2','shelter_2','https://www.gog.com/game/shelter_2',0,'Might and Delight','Might and Delight','Adventure',0,0,0),(1425034773,'Indiana Jones® and the Emperor\'s Tomb™',0,0,0,0,0,'2afe0af47c9dddf82a4a90f0788d54266dd00da2494e5f7b0d7d20359cf7afc7','7624ea5baa19b2be09ea40d6b627aea0257fb97a62655a8621303d15f82fd444','indiana_jones_and_the_emperors_tomb','indiana_jones_and_the_emperors_tomb','https://www.gog.com/game/indiana_jones_and_the_emperors_tomb',0,'Lucasfilm','Disney','Action',0,0,0),(1425039730,'Monkey Island™ 2 Special Edition: LeChuck’s Revenge™',0,0,0,0,0,'fd744d74f545f19869455f9e2080651178dd1acff78e136e50f1ac65b202c24c','326e4d9107bb9a8d83d690fbfc31595885634b35d59d2ba78e2e7cbded597c26','monkey_island_2_special_edition_lechucks_revenge','monkey_island_2_special_edition_lechucks_revenge','https://www.gog.com/game/monkey_island_2_special_edition_lechucks_revenge',0,'Lucasfilm','Disney','Adventure',0,0,0),(1425040088,'Zak McKracken and the Alien Mindbenders',0,0,0,0,0,'11f31951533be214e7cc1a199f855fbe8cace4168bdd72e425bee0904b2e92a5','64f3cf3fd42cab4915047e04efae9d23e6f45349e3949c2a2d4a7fa65d4c7139','zak_mckracken_and_the_alien_mindbenders','zak_mckracken_and_the_alien_mindbenders','https://www.gog.com/game/zak_mckracken_and_the_alien_mindbenders',0,'Lucasfilm','Disney','Adventure',0,0,0),(1425293328,'LOOM™',0,0,0,0,0,'b2f038a55cb9c35a28bee435c471c44c04972311d0aa7eedf534db5e39fa5635','10a903bdbdb18cc3d1c635c404a80da85f205813ee25151d662c99f2556a49ce','loom','loom','https://www.gog.com/game/loom',0,'Lucasfilm','Disney','Adventure',0,0,0),(1425299904,'The Dig®',0,0,0,0,0,'8013f6a5c1cd41df6b9f97c629b2c6ccd162bebfc99f2b9c0b6eb76c06d25582','b6e607d2514dfbe1c0443f880fd4dffaa4ef44ca555c002d8f87225b3c863d6d','the_dig','the_dig','https://www.gog.com/game/the_dig',0,'Lucasfilm','Disney','Adventure',0,0,0),(1425302464,'Outlaws + A Handful of Missions',0,0,0,0,0,'cb2a94e496a41edebd5792c52a17d65447f97ff6860084c82f6af5bfba03c8e6','cbc147bcb92f4dd8ea8a543eafb78846b2c0521466e0bff26bef88ace0c86b03','outlaws_a_handful_of_missions','outlaws_a_handful_of_missions','https://www.gog.com/game/outlaws_a_handful_of_missions',0,'Lucasfilm','Disney','Shooter',0,0,0),(1425308948,'Afterlife',0,0,0,0,0,'a9ac4c11716ea0c79440ddfc41993ef3a971bb3d21b7737cf0522312d347d05b','eecb22be8ce3b96b46e061012d41e88e4985ed8e370efcec2e18403572515aed','afterlife','afterlife','https://www.gog.com/game/afterlife',0,'Lucasfilm','Disney','Simulation',0,0,0),(1425364326,'The Universim',1,0,0,0,0,'fef987e6d0a3e38cd1f534c09e248f9097dce8754a917cc83bad5540577d11ac','31231e600b85c3960b0bc8200f14d2a8f5d70a090209aaca4eb1a06fc04d5a5b','the_universim','the_universim','https://www.gog.com/game/the_universim',0,'Crytivo Games','Crytivo Games','Simulation',0,0,0),(1425479123,'F.E.A.R. 2: Project Origin + Reborn',0,0,0,0,0,'97d1098aadfb627bde444919eed5ee080bdddb39186738c8f562bd5d9031284a','4d18254beb44acf4ec3406928a9725fae1e3040cdc16a6ace6c3d97eab164acd','fear_2_project_origin_reborn','fear_2_project_origin_reborn','https://www.gog.com/game/fear_2_project_origin_reborn',0,'Monolith','Warner Bros. Interactive Entertainment','Shooter',0,0,0),(1425559795,'Deadnaut',0,0,0,0,0,'38a74f82a7607ebcdb52167ea423958c6f5f96665ac07085291b5626d0c1d4e8','fe56dcff724ae06116f293f4830bea2f2a099f83860c98818a655dd128fd3e46','deadnaut','deadnaut','https://www.gog.com/game/deadnaut',0,'Screwfly Studios','Screwfly Studios','Strategy',0,0,0),(1425568340,'The Fall',0,0,0,0,0,'9076b1e0c32744846af73129577db02f90438233da08c4ff4034dedcaea30063','5015cad86d1cd63a1bb3996fdacb816c49e77534be258208e40ecaab7ab68768','the_fall','the_fall','https://www.gog.com/game/the_fall',0,'Over The Moon Games Inc','Over The Moon Games Inc','Action',0,0,0);
INSERT INTO `games` VALUES (1425609977,'Last Day of June',0,0,0,0,0,'5f8705f07a91568cdd622e0961e6a4526e7035bc4bfef5ce440d41c4e2e7f563','4f9ed71c262e854e5356bfa3c867f30b9250bd7a2cddc1ba89b873404b72a5a9','last_day_of_june','last_day_of_june','https://www.gog.com/game/last_day_of_june',0,'Ovosonico','505 Games','Adventure',0,0,0),(1425657908,'Skulls of the Shogun: Bone-A-Fide Edition',0,0,0,0,0,'c1533150ecdb3f70a95a6912e33e1608d7ac1229a3e9d149ab342f4babe9eec4','9f9a48aab2b45bba52e040bd93e8ab5b2d722f3ed1e4a25c5c9ed766dc0544ba','skulls_of_the_shogun','skulls_of_the_shogun','https://www.gog.com/game/skulls_of_the_shogun',0,'17-BIT','17-BIT','Strategy',0,0,0),(1426001985,'Lake Ridden',0,0,0,0,0,'557424ce69196afd147e311d4c71a23f88d4171603f37680e59ca572d167c43e','1d20e06e449eea6ca940fc4834a1b2cb3f93be706a0bf8828af48c3a38445999','lake_ridden','lake_ridden','https://www.gog.com/game/lake_ridden',0,'Midnight Hub','Midnight Hub','Adventure',0,0,0),(1426246476,'Men of War™',0,0,0,0,0,'6a9c008719534ff7298b8a527709f5e6651c095eb30bd5415793a8b7289de550','73b5ceebb7eafc38d36090fa8c74696ad3c46be58280a1d8d6dbf50c0e897ca2','men_of_war','men_of_war','https://www.gog.com/game/men_of_war',0,'Best Way','1C Publishing','Strategy',0,0,0),(1426249888,'Death to Spies',0,0,0,0,0,'5b987d10acd35e72da55db7b2d71f07a63fc2585a69788f4821c1f1f9b4b95ce','f08ebf7983a096c5da38cbc13e07b1267a422d04730d514894f4c274b55becca','death_to_spies','death_to_spies','https://www.gog.com/game/death_to_spies',0,'Haggard Games','1C Publishing','Action',0,0,0),(1426250716,'Death to Spies: Moment of Truth',0,0,0,0,0,'17338c3e287774f2e842c5dcbe07722d7aa2676f0323f8b3b5ca3fa22371d72d','567f57ec845479b2686772dfcefa0b0ce3f6c91a3aaf1e5e21aebc213db990a4','death_to_spies_moment_of_truth','death_to_spies_moment_of_truth','https://www.gog.com/game/death_to_spies_moment_of_truth',0,'Haggard Games','1C Publishing','Action',0,0,0),(1426251021,'Pilot Brothers',0,0,0,0,0,'c7fa11ee04c4e3aa1543f38cd951e55acf74da8f4b6a6576ec6be9061a0609f5','aaa0f39c2fc5ff95e24ba9ba6f08f9b4be8f38eac4f70757f597315e49f585da','pilot_brothers','pilot_brothers','https://www.gog.com/game/pilot_brothers',0,'1C Wireless','1C Online Games','Adventure',0,0,0),(1426251362,'Pilot Brothers 2',0,0,0,0,0,'462c8897c3444fdaa2f0fc9ec9b89787adb1cf1b6d9c7616aac64eff4ecf0241','afa86d572043548abcc6af6d832f126be813c1884da28ad0e6f86644f35cae52','pilot_brothers_2','pilot_brothers_2','https://www.gog.com/game/pilot_brothers_2',0,'1C Wireless','1C Online Games','Adventure',0,0,0),(1426251500,'Pilot Brothers 3: Back Side of the Earth',0,0,0,0,0,'26e8dad0a5121926a50a5f1c0a778a68a49c28829ca16bbc78111cda105da4de','ee9aa016a15fff310142cacb3312032c0e83b9c65e8ca9eab68980d7ad78742d','pilot_brothers_3_back_side_of_the_earth','pilot_brothers_3_back_side_of_the_earth','https://www.gog.com/game/pilot_brothers_3_back_side_of_the_earth',0,'1C Wireless','1C Online Games','Adventure',0,0,0),(1426251705,'Sea Dogs',0,0,0,0,0,'6cbc783732ffb1b440c1b28f7bba7f1b00c0c6d43bc50eaf3a04ab16cc4910ec','c01eab832583c29d8056f6567353b18e72d706ca1689bb48995ef9233291b879','sea_dogs','sea_dogs','https://www.gog.com/game/sea_dogs',0,'Akella','Akella','Action',0,0,0),(1426252678,'Wings of Prey: Special Edition',0,0,0,0,0,'ab94cd2efd1ab54de1ceb54e4d53dfe08ae12e9087fbe2372d079262b93289c4','c7f76c2ae03f53478ef27009f8b6267b3f624d70920f7fe9a56bcc465485a084','wings_of_prey_complete','wings_of_prey_complete','https://www.gog.com/game/wings_of_prey_complete',0,'Gaijin Entertainment','Gaijin Entertainment','Simulation',0,0,0),(1426253010,'Galactic Assault: Prisoner of Power',0,0,0,0,0,'e81fc9ff136a83e286720c57da6375d223c6e51a25a170ccde38d2087492049f','b767c0f708dee54977b73d3c0a4fc1bf150f61c56b819506391e1e90711c28d1','galactic_assault_prisoner_of_power','galactic_assault_prisoner_of_power','https://www.gog.com/game/galactic_assault_prisoner_of_power',0,'Wargaming.net','Akella','Strategy',0,0,0);
INSERT INTO `games` VALUES (1426253436,'Star Wolves 3: Civil War',0,0,0,0,0,'6a21e544243cf7d6e3c4b1752df886ea5de03c6b40a0a5420534b0ca7a1118c8','11afbccab3f35bcbe5df380d467ff07103cd76b3d8e347c38bc826733486c972','star_wolves_3_civil_war','star_wolves_3_civil_war','https://www.gog.com/game/star_wolves_3_civil_war',0,'Elite Games Team','1C Publishing','Strategy',0,0,0),(1426499435,'Oceanhorn: Monster of Uncharted Seas',0,0,0,0,0,'7b56bdd91530d2d5af64af0d21d6897f5f270666cb1822792d537fdd6ce17845','d18642b78589fddb0a70cd973d4536365df90a079e6f34755b57a79b66c71768','oceanhorn_monster_of_uncharted_seas','oceanhorn_monster_of_uncharted_seas','https://www.gog.com/game/oceanhorn_monster_of_uncharted_seas',0,'Cornfox & Bros','Cornfox & Bros','Action',0,0,0),(1426519399,'Airline Tycoon Deluxe',0,0,0,0,0,'30979f6641329b76f4321917b1c5fabc63ce2f70112a0d54733d7d396fc54dc8','fae63e5ef6c1baa595a851f2a58d170c2870587b44ae819c2b610987e1979cc5','airline_tycoon_deluxe','airline_tycoon_deluxe','https://www.gog.com/game/airline_tycoon_deluxe',0,'Spellbound Entertainment AG','HandyGames, Black Forest Games','Strategy',0,0,0),(1426762679,'Agarest: Generations of War Zero',0,0,0,0,0,'3a36cbaf5ca08208fb406225fafe5463f90969ce2a5796aeb75367ae48d0cd26','5759a0da665c6c067b23668ba73709bc4b103839a73ffdecf77409bd78ce4ec5','agarest_generations_of_war_zero','agarest_generations_of_war_zero','https://www.gog.com/game/agarest_generations_of_war_zero',0,'Idea Factory','Ghostlight LTD','Role-playing',0,0,0),(1426765313,'Lichdom: Battlemage',0,0,0,0,0,'16fad6364447d058604f3ae58501ff60b4d2cd8289b2ddcc482659a0c393b85f','9077d605f31fc6c19b29dfaf070d28dab136c0dcbf0188fb242d04cd11b91b23','lichdom_battlemage','lichdom_battlemage','https://www.gog.com/game/lichdom_battlemage',0,'Xaviant','Xaviant Games','Role-playing',0,0,0),(1427103890,'Gurumin: A Monstrous Adventure',0,0,0,0,0,'0d27050643fade448f4bfb3f93aa4ef2da8b2ae604be3b1947428cb013816e5c','d3a2911f3dad8df5563c63b53aed6c52277d32c11c8af3543c63341d58be0be0','gurumin_a_monstrous_adventure','gurumin_a_monstrous_adventure','https://www.gog.com/game/gurumin_a_monstrous_adventure',0,'Nihon Falcom Corporation','Mastiff','Role-playing',0,0,0),(1427108887,'Star Trek™: 25th Anniversary',0,0,0,0,0,'cb66a6c6860c7cc6c66bcbe7572b42321525b1ff945fbc51c48bd2274a0dd734','86d286ad3d5ac1b709e02f937d32a7ebc181d22867edf10342ba2d7e14151fff','star_trek_25th_anniversary','star_trek_25th_anniversary','https://www.gog.com/game/star_trek_25th_anniversary',0,'Interplay','Interplay','Adventure',0,0,0),(1427129887,'Armello DRM Free Edition',0,0,0,0,0,'fb173238ac52a85bb59e24eabe33f827cbe6ca66a77da008a39a5e50c1dd47cb','379a2dd91f2026c7469094532318b25d08d1f9178654858795380a10a32b22a6','armello','armello','https://web.archive.org/web/20150602190447/https://www.gog.com/game/armello',0,'League of Geeks','League of Geeks','Strategy',0,0,0),(1427188253,'Dead Synchronicity: Tomorrow Comes Today',0,0,0,0,0,'e67a221d13978d708fef3742c086d4c8144de8ba4bb767d7dfb479dd78a6725e','108e5f7f273f7d11f8cd091aa19e4a9d365e20ecefe1a616b3871c083a38867d','dead_synchronicity_tomorrow_comes_today','dead_synchronicity_tomorrow_comes_today','https://www.gog.com/game/dead_synchronicity_tomorrow_comes_today',0,'Fictiorama Studios','Daedalic Entertainment','Adventure',0,0,0),(1427704538,'Act of War: Direct Action',0,0,0,0,0,'6e97feac9d9538db4200580a83671fd1ef8b5f8227ed9c3381a3b6ff9f4c547e','00d66caebf7173242005b492c52fa66c86f175bc9af12b680f5fcf090709a066','act_of_war_high_treason','act_of_war_high_treason','https://www.gog.com/game/act_of_war_gold_edition',0,'Eugen Systems','Atari','Strategy',0,0,0),(1427704705,'Act of War: High Treason',0,0,0,0,0,'fb31b14dea6b1207f89be919315afc9220b4c204a80114a785f0aa4ac0824ece','7179e623c894c0f8f5c939909cbbb2b628b3c7a94169ca6f6fb880571219fc6e','act_of_war_high_treason_copy3','act_of_war_high_treason_copy3','https://www.gog.com/game/act_of_war_gold_edition',0,'Eugen Systems','Atari','Strategy',0,0,0);
INSERT INTO `games` VALUES (1427876514,'Elminage Gothic',0,0,0,0,0,'7c72026168240e79c05f89dc9b7346fc78827d7eb5431ae8c857bbbb7e6fb8f6','79578ea59b5cc4440975caced49ce187e0f8c9376c476a94656e23bce0e85228','elminage_gothic','elminage_gothic','https://www.gog.com/game/elminage_gothic',0,'Starfish-SD Inc','Ghostlight LTD','Role-playing',0,0,0),(1427876902,'Star Ruler 2',0,0,0,0,0,'c01c27474a2787b54b6fb79545c0e9d6a0a9668f5c43e96e74a27ce1f7bcd233','28fc0adb5ed7474cd50ea0c6c0b88426b1cd8d6ec6857e857ddd50228009d0a8','star_ruler_2','star_ruler_2','https://www.gog.com/game/star_ruler_2',0,'Blind Mind Studios & Glacicle','Blind Mind Studios','Strategy',0,0,0),(1427891789,'Passpartout: The Starving Artist',0,0,0,0,0,'7f45d6c1aa3a494a08aeceec1f1bf5fc3f836df1d667ada877d4e0d5b713e707','285f62d7af8cb8306c16e948ee36e4018e40f0c2c77f808efeb4919ee95aa63d','passpartout_the_starving_artist','passpartout_the_starving_artist','https://www.gog.com/game/passpartout_the_starving_artist',0,'Flamebait Games','Flamebait Games','Adventure',0,0,0),(1427964976,'REVOLVER360 RE:ACTOR',0,0,0,0,0,'a9f46db5e658b3a7b680c152b7854f0c7264eefb72e938f900465ac2b403620c','0987185fcecf3efcd0583de85f72d540bbcd6341fb7b7b910101af1739b50c5c','revolver360_reactor','revolver360_reactor','https://www.gog.com/game/revolver360_reactor',0,'Cross Eaglet','Active Gaming Media','Shooter',0,0,0),(1427985242,'Titan Souls',0,0,0,0,0,'71edd827390257738c51a8de0a07cc285cbb65fe39899d523fa45e6d0b094cc2','dfead59d545407dee720aa63e089c803f958a9eeb744a9b79265b0e29ac65410','titan_souls','titan_souls','https://www.gog.com/game/titan_souls',0,'Acid Nerve','Devolver Digital','Action',0,0,0),(1428054996,'Satellite Reign',0,0,0,0,0,'e1f0315c59afcd3ba8d767ef84886090ddd1fb19b9c3cb65df6a8a963156d098','56022c47cb3b7a14ed59b0f2917b374f7df4d012ac02af12629836bf1e1ebe77','satellite_reign','satellite_reign','https://www.gog.com/game/satellite_reign',0,'5 Lives Studios','5 Lives Studios','Action',0,0,0),(1428071176,'Albedo: Eyes from Outer Space',0,0,0,0,0,'d53ac85ba00f6103d47a11cf22b0b2070ca8dd8c2c373758650a5fe02670f56d','2870eb79807a27342b907a455aa1c28d1a2c5aeb5c02b268c2249fabae4c607c','albedo_eyes_from_outer_space','albedo_eyes_from_outer_space','https://www.gog.com/game/albedo_eyes_from_outer_space',0,'Z4g0 and Ivan Venturi Productions','Merge Games','Action',0,0,0),(1428580803,'Men of War: Assault Squad',0,0,0,0,0,'a6ce48bb1dbd40316227b2e91f473bd10890eec8e2c780499b94f763596d9762','7a26b1ca4056daa3f9ed76832fce94309f2e7f6191ed862172848658dcaea585','men_of_war_assault_squad','men_of_war_assault_squad','https://www.gog.com/game/men_of_war_assault_squad',0,'DigitalMindSoft','1C Publishing','Strategy',0,0,0),(1428586504,'Faces of War',0,0,0,0,0,'f7dbeaa4f9c7ccad1f8daf873239a0b2c97633e201bbd1a9682ab268538670ae','b86f3252aa4f87344d258b6f3e044b9a8378bad81f6c2c8b4f6592b02a26c44e','faces_of_war','faces_of_war','https://www.gog.com/game/faces_of_war',0,'Best Way','1C Publishing','Strategy',0,0,0),(1428587439,'Men of War: Vietnam',0,0,0,0,0,'ee96be6d047eb271f974f7673aeefcfc2a6ba24b9d76486ad5e54f74f8080291','244d276940704993fbed5d0aa0cf28b97878468bd7cb52704b6b166097d1357e','men_of_war_vietnam','men_of_war_vietnam','https://www.gog.com/game/men_of_war_vietnam',0,'1C Company','1C Publishing','Strategy',0,0,0),(1428589210,'Men of War: Red Tide',0,0,0,0,0,'6175c2e9e587921c0f8d90e43f1b02ea1889759a68f4cd70c8fc4c739098f812','bad82c0c6f48bae0770e51b15d319487a8b32eb7d4e65ff69b74c94e556db300','men_of_war_red_tide','men_of_war_red_tide','https://www.gog.com/game/men_of_war_red_tide',0,'1C Company','1C Publishing','Strategy',0,0,0),(1428918226,'Telepath Tactics',0,0,0,0,0,'b6b4b9f7e30c4ed8df5c2101f020bd0517cee17e5aa2876c52570a0e51a3c723','af2cddcadef8718f8e53c8e4643abfe88c6e26f2c9d9951d2674776dc77cfa11','telepath_tactics','telepath_tactics','https://www.gog.com/game/telepath_tactics',0,'Sinister Design','Sinister Design','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1428922775,'Europa Universalis II',0,0,0,0,0,'7de6b91815baa3c6ab37c18d40e0f6e94437b3455c5cb34f84627cbcb3411f67','fab5378ab3159e9409e5185600aa34ae44bfa0d03289f7571b612476b7033924','europa_universalis_ii','europa_universalis_ii','https://www.gog.com/game/europa_universalis_ii',0,'Paradox Development Studio','Paradox Interactive','Strategy',0,0,0),(1428928921,'Europa Universalis: Rome Gold',0,0,0,0,0,'5486ee8cac0e61b2ed119a60cf8f0fbb17e4f5694c1d2374d50a49553172a993','ccbb00a00895b89f4bdecfc7514b2b5bb22a1c0868de365b980be62d79d12ff9','europa_universalis_rome_gold','europa_universalis_rome_gold','https://www.gog.com/game/europa_universalis_rome_gold',0,'Paradox Development Studio','Paradox Interactive','Strategy',0,0,0),(1428935726,'Star Wars™: Jedi Knight™ - Jedi Academy™',0,0,0,0,0,'52b19c33e912370d1328c29323180a439f7782a4e0519471b2b664d6c9a64038','41dd489a2c9ebdd139c569d2416b361353adf09716082b98c25fbbb7246fa8c6','star_wars_jedi_knight_jedi_academy','star_wars_jedi_knight_jedi_academy','https://www.gog.com/game/star_wars_jedi_knight_jedi_academy',0,'Lucasfilm','Disney','Shooter',0,0,0),(1428935917,'Star Wars™: Jedi Knight™ II - Jedi Outcast™',0,0,0,0,0,'e6284fdd15ef2ec6dd27b65e91be7e25ccbc8bfd981cb7624d69c365ecdd14e4','ede6fad47102913890c590165f8a433e43ccbc36ad2955b9b6b4f8f2c8397d76','star_wars_jedi_knight_ii_jedi_outcast','star_wars_jedi_knight_ii_jedi_outcast','https://www.gog.com/game/star_wars_jedi_knight_ii_jedi_outcast',0,'Lucasfilm','Disney','Shooter',0,0,0),(1429007120,'Gratuitous Space Battles 2',0,0,0,0,0,'1968c6a5605bc55e3828f688cbcb639d63f1dbce3db072a94761a024bb7c0f0c','b38c3d301cd051c2b2d3e004bd4088fa4ce4b1970c98dee1f08315a8a9664ff6','gratuitous_space_battles_2','gratuitous_space_battles_2','https://www.gog.com/game/gratuitous_space_battles_2',0,'Positech Games','Positech Games','Strategy',0,0,0),(1429023691,'Hearts of Iron II',0,0,0,0,0,'add46e4cb75d20ab4b30c38a90f933d83a7ce2560830ccf7bc05089d9b445081','dcb45a0b9e81f507576c4d72098e9c4e6997a65baaddde4451a6733e1b95749f','hearts_of_iron_2','hearts_of_iron_2','https://www.gog.com/game/hearts_of_iron_ii_complete',0,'Paradox Development Studio','Paradox Interactive','Strategy',0,0,0),(1429024026,'Hearts of Iron II: Doomsday',0,0,0,0,0,'9fc96871002e4e8d81db1c4c45e2b9894e9e684f6007ff942126a282a8a042e8','9b40898b5d1fad27f61243d2cdb0387d1c0787cecca1fd33a5fdcb5acac05386','hearts_of_iron_ii_doomsday','hearts_of_iron_ii_doomsday','https://www.gog.com/game/hearts_of_iron_ii_complete',0,'Paradox Development Studio','Paradox Interactive','Strategy',0,0,0),(1429089605,'Star Trek™: Judgment Rites',0,0,0,0,0,'366d0314795ac9aa49d44adf9cdddbd7d2325324c60ef42467dce50c1f82a742','5ffbdd1ca072a6d6408974bfc46d8b839399a829d6cfeddcdce7d9efcc805d68','star_trek_judgment_rites','star_trek_judgment_rites','https://www.gog.com/game/star_trek_judgment_rites',0,'Interplay','Interplay','Adventure',0,0,0),(1429104954,'Star Wars™: Rebel Assault 1',0,0,0,0,0,'6bfae37e968bf07c92b1a3d22f4e8a6ecfb65a625fa462d39b6b498432097787','1c58d8a2116b62e41dc2024e8086eecd16782f5679dbcf46bfa5edaa758bb447','star_wars_rebel_assault_1','star_wars_rebel_assault_1','https://www.gog.com/game/star_wars_rebel_assault_1_2',0,'Lucasfilm','Disney','Shooter',0,0,0),(1429105182,'Star Wars™: Rebel Assault 2',0,0,0,0,0,'8dd6c6972ff9442bc0ce537213d040995d077e624704f4724f42822ca83eda1d','f258e32687d149b44211772bc6937b2ec6c1a89f897ab87fbff818cf38bdd50a','star_wars_rebel_assault_2','star_wars_rebel_assault_2','https://www.gog.com/game/star_wars_rebel_assault_1_2',0,'Lucasfilm','Disney','Shooter',0,0,0),(1429170550,'Star Trek™: Starfleet Academy',0,0,0,0,0,'49fa890853a23fea55b0a720fd930b6d6be7023f4cea3ba7148abd931372afaa','3605bb4a0d8876d5195c89caa4e779b82f777f611a52a5dd59be4a2ffc864f72','star_trek_starfleet_academy','star_trek_starfleet_academy','https://www.gog.com/game/star_trek_starfleet_academy',0,'Interplay','Interplay','Simulation',0,0,0);
INSERT INTO `games` VALUES (1429172763,'Star Trek™: Starfleet Command Gold Edition',0,0,0,0,0,'42714e1e2890b1e116a3d3327788255f981063d059a4a150778d4ae7e545c9d5','18e9dd7ce230589abcd0e38b620d15c79f961235daf2a95708a7b4981ccbd619','star_trek_starfleet_command_gold_edition','star_trek_starfleet_command_gold_edition','https://www.gog.com/game/star_trek_starfleet_command_gold_edition',0,'14° East','Interplay','Strategy',0,0,0),(1429178878,'Ys VI: The Ark of Napishtim',0,0,0,0,0,'de27f13f6757f183181a5a7637ec91aa70e16194614832ee953d2277353a22ac','afaee1db72be5dc682b0cb646e4641f3fb8b5bfe02312eb1c9b876d2ae5deb35','ys_vi_the_ark_of_napishtim','ys_vi_the_ark_of_napishtim','https://www.gog.com/game/ys_vi_the_ark_of_napishtim',0,'Nihon Falcom Corporation','XSEED Games','Role-playing',0,0,0),(1429612159,'Transistor',0,0,0,0,0,'feb32493c82fb0006cd458f6ca1600d7ba834d7f23ed5f9a8019c8aaf2dbe738','45cfa69ce5afab23e2d85b425228814f051c30f9797dfed065e13acad5667942','transistor','transistor','https://www.gog.com/game/transistor',0,'Supergiant Games','Supergiant Games','Action',0,0,0),(1429698467,'Not a Hero',0,0,0,0,0,'6e0a68fb0dc35fa7dc237e488f4194ca8a0abd15771582ca853b4df91c28dbbe','817e5f76120d16be502576ea69584f895250452fa475ec765364a132e05ba91e','not_a_hero','not_a_hero','https://www.gog.com/game/not_a_hero',0,'Roll 7','Devolver Digital','Shooter',0,0,0),(1429723205,'ART OF FIGHTING 2',0,0,0,0,0,'d5f6c4fd125be5bdfb6404b9d005d1505705da69f214d60fa3f927de14c79078','4d62a33499c49a369077dba417f6e96f7dceeec5c1fde7138125c4eb63a42881','art_of_fighting_2','art_of_fighting_2','https://www.gog.com/game/art_of_fighting_2',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(1429864849,'Kerbal Space Program',0,0,0,0,0,'6d049200e23f35fd288419ab16955a63f2b749cd1a80e8121c4737ffdc4848c1','58deffdc21c293f4cd404b594d593be9bda17d063dd65254c8d826faa13ca4c6','kerbal_space_program','kerbal_space_program','https://www.gog.com/game/kerbal_space_program',0,'Squad','Private Division','Simulation',0,0,0),(1429865580,'Toren',0,0,0,0,0,'9d704acdf78bd8d0b03a03f9f720b0026acf3cf9ec7ad0d45e33f88ebffef437','a671c63bfdb4ac8b2a1f03aa309bf0d24690e539196b6c0b9528954dc4c7a8dc','toren','toren','https://www.gog.com/game/toren',0,'Swordtales','Versus Evil','Adventure',0,0,0),(1429878383,'Shadow Warrior (2013) DirectX 11 Version',0,0,0,0,0,'ff32122ba7b29078b383140481048ade33b38a3f87156d6c1202ed8d29292c95','69ada36bb2ea9d5401773c2b8dfea68bfae7735fa24f918399aa54cb15ee487c','shadow_warrior_2013_directx_11_version','shadow_warrior_2013_directx_11_version','https://www.gog.com/game/shadow_warrior',0,'Flying Wild Hog','Devolver Digital','Shooter',0,0,0),(1430123043,'Chroma Squad',0,0,0,0,0,'59bdf2ef4466f9d53dad0d755130882afa6e4a91e72e82df74f0e09f456f2950','d2ae3dae3e962fb2adf36ef079c53866d0e1e780a51778e7d23a28cefe158f43','chroma_squad','chroma_squad','https://www.gog.com/game/chroma_squad',0,'Behold Studios','Behold Studios','Role-playing',0,0,0),(1430136184,'Pacific General',0,0,0,0,0,'a2e3760fb97f54abb82c88d8e717753b415826ed7e89eed79226280723bfb742','973020b0204ab43f80b314247d19054c016345df10905d7d8b2106a5c9ec9362','pacific_general','pacific_general','https://www.gog.com/game/pacific_general',0,'Strategic Simulations','GOG','Strategy',0,0,0),(1430136345,'Fantasy General',0,0,0,0,0,'ae0dd2346e947205e49491fa53915906789cd83a1e537eadd616677becfde044','49e1013d06cc1a0c3d6358a95033868571015cb519f8abe9bdac14fe8adba496','fantasy_general','fantasy_general','https://www.gog.com/game/fantasy_general',0,'Strategic Simulations','GOG','Strategy',0,0,0),(1430183808,'Gauntlet™ Slayer Edition',0,0,0,0,0,'098f4d20e011126231f8ade5135ea5251f98a16bdf5f4dd60c1bdbfa5fd3c2fa','43632719cb211ecf1b6fd1ec3d4bcda4a2b49d6c429a67cc0794cce1ce5ec9f5','gauntlet_slayer_edition','gauntlet_slayer_edition','https://www.gog.com/game/gauntlet_slayer_edition',0,'Arrowhead Game Studios','Warner Bros. Interactive Entertainment','Action',0,0,0);
INSERT INTO `games` VALUES (1430234218,'Technobabylon',0,0,0,0,0,'5cf86ca2335eeed7fbf4846f6ea5dd7e41fea2474f1c27ede25af189eabba564','26767f8374711b324d48980bb681da0f82ef716bbfd6e5a7f1602485f23fdfeb','technobabylon','technobabylon','https://www.gog.com/game/technobabylon',0,'Technocrat','Wadjet Eye Games','Adventure',0,0,0),(1430239690,'Stealth Bastard Deluxe Complete Edition',0,0,0,0,0,'570a1c999502aafa4ddc5986bbed76cac5ce7b074b24bd0e465c8beccaa1fd0c','e6f8e8a15ed5b8ee90af27a1830cecc36c9715e8373ee21a347c02f49a4015ba','stealth_bastard_deluxe_complete_edition','stealth_bastard_deluxe_complete_edition','https://www.gog.com/game/stealth_bastard_deluxe_complete_edition',0,'Curve Digital','Curve Digital','Action',0,0,0),(1430297341,'Stealth Inc. 2: A Game of Clones',0,0,0,0,0,'b9eecbea61f6396d1ddc1c34fc5de3663a4a98a722aaee9546d9104ee7ceb472','4c09bf77d7a167d878dcd3b76e57b422401b45a8b3415fe8b9d5db2e4cad3c15','stealth_inc_2_a_game_of_clones','stealth_inc_2_a_game_of_clones','https://www.gog.com/game/stealth_inc_2_a_game_of_clones',0,'Curve Digital','Curve Digital','Action',0,0,0),(1430388542,'Cyberia 2: Resurrection',0,0,0,0,0,'3d767d26d46a32462b10f996184078548e7a125b75675c46ddbfb2e65b827d6e','68b1270f6df3f12ad8be30ef3188dc568cfe38aaebc12380662de56afc9e5a8e','cyberia_2_resurrection','cyberia_2_resurrection','https://www.gog.com/game/cyberia_2_resurrection',0,'Xatrix Entertainment','Interplay','Shooter',0,0,0),(1430392753,'Shadow Warrior (2013)',0,0,0,0,0,'5ca2180a21dc19727710631ac55518897e8d375a21908675d97a8871c9b7b155','9ead5cecebdd900445e817242327140f7b5fff683fe004d6fb02ea40757659cc','shadow_warrior_2013_dx_9_version','shadow_warrior_2013_dx_9_version','https://www.gog.com/game/shadow_warrior',0,'Flying Wild Hog','Devolver Digital','Shooter',0,0,0),(1430398832,'Aquaria',0,0,0,0,0,'f4dfa68c53024ce3524d6b85ba107e9311f97bdd6a3f204fb4d1a80273ce6594','d5fd90c0ba928d5f063f4bb181c19c5a4839066b53fce7fcf3a8f5fa92a05e08','aquaria','aquaria','https://www.gog.com/game/aquaria',0,'Bit Blot, LLC','Bit Blot, LLC','Action',0,0,0),(1430740172,'Metro: Last Light Redux',0,0,0,0,0,'278c4ae8d21c5a975fedabcfadc739ed46ca308d6dfb7ea56484d2b82aa22612','35be2168ce35c5ad2fdb01b72ecfa0ff5a23db52285ec8e8fcc24075a8f379e0','metro_last_light_redux','metro_last_light_redux','https://www.gog.com/game/metro_last_light_redux',0,'4A Games','Deep Silver','Shooter',0,0,0),(1430740458,'Saints Row 2',0,0,0,0,0,'e5054aacbe4d66cc91783dfe5d2eb996e49d08523f8ed6f2cb07bd9cc747aed2','8c43c91ccf0b6f50ec72cb8673bb73633499b1ebed6b89a327983da0d9c287ff','saints_row_2','saints_row_2','https://www.gog.com/game/saints_row_2',0,'Volition','Deep Silver','Action',0,0,0),(1430740694,'Saints Row: The Third - The Full Package',0,0,0,0,0,'6fd0eb85a8af7db131c228bd7dd93707a8c69d3cdcbaee470c3ecdca393f4b51','e5c27c980df2ba2df51a08316cdecafc25bb932921eb9d1b8609f69476b91187','saints_row_the_third_the_full_package','saints_row_the_third_the_full_package','https://www.gog.com/game/saints_row_the_third_the_full_package',0,'Volition','Deep Silver','Action',0,0,0),(1430743890,'Black Mirror 3',0,0,0,0,0,'9d3b55af30676aeb24c1fd90f6accc9f7cd4666cbfc0c09992a77498d08a1cfa','8d8a99a04f13a0e915486aa3be224172d09aace17bc0a96c647a971195387026','black_mirror_3','black_mirror_3','https://www.gog.com/game/black_mirror_3',0,'Cranberry Production','THQ Nordic GmbH','Adventure',0,0,0),(1430744353,'Invisible Inc.',0,0,0,0,0,'250c57400226613e6222773fa088266f8a7bb43d487ffeb97f1ba84c7a54e2e9','4109bc27ee2e434a3da0a5e967531f241bcaa92f2ac1b391f165db870803b2ad','invisible_inc','invisible_inc','https://www.gog.com/game/invisible_inc',0,'Klei Entertainment','Klei Entertainment','Strategy',0,0,0),(1430901154,'Darksiders Warmastered Edition',0,0,0,0,0,'712e4dd9026743e5ab52f21d2608e40bad5b6d703f3817df7177af2522676b77','8ce9d3abac5d771861370b574d2c1af3a7c4fd0f8807ffb7d8eb4364fc27651c','darksiders_warmastered_edition','darksiders_warmastered_edition','https://www.gog.com/game/darksiders_warmastered_edition',0,'KAIKO, Vigil Games','THQ Nordic GmbH','Action',0,0,0);
INSERT INTO `games` VALUES (1430912792,'Prehistorik',0,0,0,0,0,'1df6b3c401817b86bc6ca64984d1ab0a94c03576b2f4e4276ea2406d8e3fa2f0','f23511e8e3b27f0dbd404b348e46af68939a5b3954413eb6cb8af414fff50aa0','prehistorik','prehistorik','https://www.gog.com/game/prehistorik_12',0,'Titus Interactive','Interplay','Action',0,0,0),(1430913246,'Prehistorik 2',0,0,0,0,0,'a022719eea1b2ce9ce95cc392803ec5d6de04dcd1a0f9e47d7bfd3f33c621a71','b7675f1275614d69cacfd839ce144af8ba3bf779c054017946be6decc7862357','prehistorik_2','prehistorik_2','https://www.gog.com/game/prehistorik_12',0,'Titus Interactive','Interplay','Action',0,0,0),(1430924174,'Towerfall: Ascension',0,0,0,0,0,'4c5f1b6b1a8919a3714e2be7b4f42bfb371e920165f0586f1f6435954bbc63fb','d77dd667a5a51917005653bcd98b345216376b143ce2799690500b3b70086394','towerfall_ascension','towerfall_ascension','https://www.gog.com/game/towerfall_ascension',0,'Matt Makes Games','Matt Makes Games','Action',0,0,0),(1431448986,'Solo',0,0,0,0,0,'979273cf26ed68580ca92c17747cfcbb6defb703e51a7cc95b6e469c53515d39','bf0c49e985755f7c6aa89192ac47ee166bda33bf344d41f7321c1169fe182a73','solo','solo','https://www.gog.com/game/solo',0,'Team Gotham','Team Gotham','Adventure',0,0,0),(1431599567,'Trine 3: The Artifacts of Power',0,0,0,0,0,'decb11bc6930e94b0f65da2850aa27a56035f20144c3c196a620223926719515','3a3f998d2a32d4ff294237f786ac4bf7c3f88df75176b20d6bc7d173fc216987','trine_3_the_artifacts_of_power','trine_3_the_artifacts_of_power','https://www.gog.com/game/trine_3_the_artifacts_of_power',0,'Frozenbyte','Frozenbyte','Action',0,0,0),(1431941262,'Serpent in the Staglands',0,0,0,0,0,'c13028ed4a1526b80845a2a47c8e7c76247c02decc222f0a982de49900504f61','845ee8e01d819f3c083affd0e59dd03852d2b69c417dd027178b284b9d137009','serpent_in_the_staglands','serpent_in_the_staglands','https://www.gog.com/game/serpent_in_the_staglands',0,'Whalenought Studios','Whalenought Studios','Role-playing',0,0,0),(1431942210,'Call of Cthulhu: Shadow of the Comet',0,0,0,0,0,'97e1ba60ad31dfb65475aa3794393596f573a531cf938868d337a0c556864a4a','f488d42e6f3720b8345f2af824308aba58f0252aad00abdb185d55172ca6a058','call_of_cthulhu_shadow_of_the_comet','call_of_cthulhu_shadow_of_the_comet','https://www.gog.com/game/call_of_cthulhu_shadow_of_the_comet',0,'Infogrames Europe SA','Atari','Adventure',0,0,0),(1431943502,'Masterplan, The',0,0,0,0,0,'4f0ab015b0f03acf9d174f444296aa9a1e848f7e180d50d84889e2ce50554f94','4d6e5b59ebb574d16b5a660b234e6555c211c975e36cfa04ce9ac4d6066afdaa','the_masterplan','the_masterplan','https://www.gog.com/game/the_masterplan',0,'Shark Punch','Shark Punch','Action',0,0,0),(1432039876,'StarCrawlers',0,0,0,0,0,'2584d41c505bcfd0b166685d72cd6249d2275ac314c9190fa1ba6806170da8b7','604aba9be172a4cf1cb0904fec982737c3459d4480a79978a7022568350bc7bf','starcrawlers','starcrawlers','https://www.gog.com/game/starcrawlers',0,'Juggernaut Games','Juggernaut Games','Role-playing',0,0,0),(1432207977,'The Walking Dead: Season 1',0,0,0,0,0,'b0db92340570056f1c811992cb38c56ee32d61976a7eeb0a4d2287d15d0a2b0a','d56a3ec7ee68e167de4c8836feb34602f4034746592b09b5f9e6afbddf86da95','walking_dead_season_1_the','walking_dead_season_1_the','https://www.gog.com/game/walking_dead_season_1_the',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1432208050,'Game of Thrones: A Telltale Games Series',0,0,0,0,0,'14ea771142c5abdc512cb3d8efda54a4229947ced9c9259e90e817813a663694','29ae31027379174cdcb1e11f8abc30afd6f94a91d4934e5367ada4ebae0d5dea','game_of_thrones_season_1','game_of_thrones_season_1','https://www.gog.com/game/game_of_thrones_season_1',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1432208124,'The Walking Dead: Season 2',0,0,0,0,0,'c58cb5f9974532d9e22cdd3e7032ac064d1fd74fc510b059446979a0ee905130','c9f75d06c2bbcc0468ad6981deeb8d539f7fc797d2731ed93fd5ae10c26dd344','walking_dead_season_2_the','walking_dead_season_2_the','https://www.gog.com/game/walking_dead_season_2_the',0,'Telltale Games','Telltale Games','Adventure',0,0,0);
INSERT INTO `games` VALUES (1432213337,'Tales from the Borderlands',0,0,0,0,0,'0789da79f5afa14a2cec8e5137b0d13df2b16cd2d78d0b1d630118b8cec316c5','2c72f01cce1664570bf0f58541224eade43152f599a5b8506e0816a250970867','tales_from_the_borderlands','tales_from_the_borderlands','https://www.gog.com/game/tales_from_the_borderlands',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1432213513,'Wolf Among Us, The',0,0,0,0,0,'96b43bf80a3c9c65b7a2b98545b11406fd405cd37c3d488a5305f5f2ba0a3676','97263d9a6e0bf0549afa95a4eeca403c9ac99e72dbf31bc8f4799c260f95a303','wolf_among_us_the','wolf_among_us_the','https://www.gog.com/game/wolf_among_us_the',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1432222749,'Call of Cthulhu: Prisoner of Ice',0,0,0,0,0,'be82f4da5ad3ed31e9ccb66c92472c9560a73fb8e6e3967f64cce25a5154ee82','abf08177ca11476858992b0bf1d00121d06c62af865eb92a1adff8d187c23da2','call_of_cthulhu_prisoner_of_ice','call_of_cthulhu_prisoner_of_ice','https://www.gog.com/game/call_of_cthulhu_prisoner_of_ice',0,'Infogrames Europe SA','Atari','Adventure',0,0,0),(1432285342,'Rebuild 3: Gangs of Deadsville',0,0,0,0,0,'fd86580ddf9b58bd7e8752c3480ba2761bc1b94d87d06c1f3bb63361fb2a9920','78c18cef12cb18a96731bec502ee78da6d52aeae6279ed83eafee116c2b4e2ed','rebuild_3_gangs_of_deadsville','rebuild_3_gangs_of_deadsville','https://www.gog.com/game/rebuild_3_gangs_of_deadsville',0,'Northway Games','Northway Games','Strategy',0,0,0),(1432297044,'Crypt of the NecroDancer',0,0,0,0,0,'d7db9becbad8a234b1676ab3f705ea4479b58cbd63c791786d0206e33fb8be00','63453c10594be286c38a6a5e8a4aae5b633b1e2e2e66e155530067bb96025806','crypt_of_the_necrodancer','crypt_of_the_necrodancer','https://www.gog.com/game/crypt_of_the_necrodancer',0,'Brace Yourself Games','Brace Yourself Games','Role-playing',0,0,0),(1432538826,'Convoy',0,0,0,0,0,'0cdf937fabb48de1bd66cc5747b068b6e0c7db37b45a21ac4c31f0d093179541','cb8a5c663a18dcce5035ec6f6141a9a775f4d581b61c6895cd36278e67f63b74','convoy','convoy','https://www.gog.com/game/convoy',0,'Convoy Games','Indietopia Games','Role-playing',0,0,0),(1432565635,'Subject 13',0,0,0,0,0,'24abd77530a7ba0bb56a936b10c6be2f34c22c418533f01d6fca243551278a10','c3e70f682c9434faed868556b17eb6c56f50b649bcc6df3c86da76394660ea49','subject_13','subject_13','https://www.gog.com/game/subject_13',0,'Paul Cuisset, Microids','Anuman Interactive','Adventure',0,0,0),(1432575012,'Eye of the Beholder',0,0,0,0,0,'41913e60dc67ff1e17ca631592d1531ec378fdcc2299289ea3bf2ccf3f998197','032dac056ce532918ce608c13e6424ee83891cf8be8b9c2706d7ca496fb15bd3','eye_of_the_beholder','eye_of_the_beholder','https://www.gog.com/game/forgotten_realms_the_archives_collection_one',0,'Westwood Associates & Strategic Simulations Inc.','GOG','Role-playing',0,0,0),(1432576039,'Eye of the Beholder II: The Legend of Darkmoon',0,0,0,0,0,'04d1dcc7c9fd3bfd123d08e4b117092092cba625899ac38512f52b3cfc3f13bb','d5f116c4f97d82206fb24c848257f2eb53bc8bbc4c2504af63914a3f070f5c79','eye_of_the_beholder_ii_the_legend_of_darkmoon','eye_of_the_beholder_ii_the_legend_of_darkmoon','https://www.gog.com/game/forgotten_realms_the_archives_collection_one',0,'Westwood Associates & Strategic Simulations Inc.','GOG','Role-playing',0,0,0),(1432576327,'Eye of the Beholder III: Assault on Myth Drannor',0,0,0,0,0,'93aa23a0b7cfa99814760dfd7484aceb503a239bd5fd005f4ffceddc24f811bf','d6f4706b0dedc28c86dceb428494076a5b4c51146fa61b2a93abd297a4d0d731','eye_of_the_beholder_iii_assault_on_myth_drannor','eye_of_the_beholder_iii_assault_on_myth_drannor','https://www.gog.com/game/forgotten_realms_the_archives_collection_one',0,'Westwood Associates & Strategic Simulations Inc.','GOG','Role-playing',0,0,0),(1432578339,'Menzoberranzan',0,0,0,0,0,'ec5385d33a4330ed58b26171ae34d0edc6fd3f0d3c5caa2880c8c416de49d635','4834a188027ea499a4460584687233a91f2026fb3c0f4bfe57a6c5b86beff63f','menzoberranzan','menzoberranzan','https://www.gog.com/game/forgotten_realms_the_archives_collection_three',0,'DreamForge Intertainment','GOG','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1432579019,'Dungeon Hack',0,0,0,0,0,'95ffd3349a00875ec3dd087657db604c617e3db65d2fe04c2b33931352aadfef','297e1e18e821d0e019e6a5a10ddb22446344ed58fcf3c5825c9977a9940c3ebb','dungeon_hack','dungeon_hack','https://web.archive.org/web/20150821001040/http://www.gog.com/game/forgotten_realms_the_archives_collection_three',0,'DreamForge Intertainment','GOG','Role-playing',0,0,0),(1432640506,'Hillsfar',0,0,0,0,0,'d54661e1bf956f972c42aa50671b75a347d8720289e69d0cd90396e2f76b8775','6a8cba63c60fa77d2c475325df1c413e6118b0bf79dc01474c723e0aac1ec700','hillsfar','hillsfar_copy3','https://www.gog.com/game/forgotten_realms_the_archives_collection_two',0,'Stormfront Studios & Strategic Simulations Inc.','GOG','Role-playing',0,0,0),(1432640961,'Pool of Radiance',0,0,0,0,0,'63f00fc319f2c57cf69639a9ff4d62c31c39289f5e7c2aa48e005c233da3e2fc','4d17369032ae48037a3d9e5ff4e7e958228c1639d411ac5680167fc655f28bc1','pool_of_radiance','pool_of_radiance','https://www.gog.com/game/forgotten_realms_the_archives_collection_two',0,'Stormfront Studios & Strategic Simulations Inc.','GOG','Role-playing',0,0,0),(1432641528,'Secret of the Silver Blades',0,0,0,0,0,'4611082fa4785b46f2b5888fdecd7d379ce766f41d24235da27dbe47c2b98840','7a883e729f89a7fa3da279eb6676f256148c9f86dae680d171ec96780b8d4559','secret_of_the_silver_blades','secret_of_the_silver_blades','https://www.gog.com/game/forgotten_realms_the_archives_collection_two',0,'Stormfront Studios & Strategic Simulations Inc.','GOG','Role-playing',0,0,0),(1432641771,'Treasures of the Savage Frontier',0,0,0,0,0,'cb09bdc9f733431c9720c79d2d4275ac4d4e0738760fe02554531cbf9ff129e1','6bf3dc2ab2ef7365e526db666d10b2113b4cf6df37f44782090ab872d418ac05','treasures_of_the_savage_frontier','treasures_of_the_savage_frontier','https://www.gog.com/game/forgotten_realms_the_archives_collection_two',0,'Stormfront Studios & Strategic Simulations Inc.','GOG','Role-playing',0,0,0),(1432642138,'Curse of the Azure Bonds',0,0,0,0,0,'157c1915e528261987c0f711a19cd87c3042f3c51c85b6127d4bb150dbfa05db','d5b4693d96ec99b7125c0810b3f877bd876496f346398708d5be8dc6fff39025','curse_of_the_azure_bonds','curse_of_the_azure_bonds','https://www.gog.com/game/forgotten_realms_the_archives_collection_two',0,'Stormfront Studios & Strategic Simulations Inc.','GOG','Role-playing',0,0,0),(1432643408,'Pools of Darkness',0,0,0,0,0,'bd5c81114998eb0cccdd5ea9bb056356cab68f96337b9d0cdc8596b5ee4d3af3','0e7fb9d2a61d29966db91016e26741f3311205d5eae1356540fa7637ae0d3937','pools_of_darkness','pools_of_darkness','https://www.gog.com/game/forgotten_realms_the_archives_collection_two',0,'Stormfront Studios & Strategic Simulations Inc.','GOG','Role-playing',0,0,0),(1432649588,'Gateway to the Savage Frontier',0,0,0,0,0,'493b8f4cdd1ac3b9b53bbc80014989904a3a17b52bb31c7f47def0578ff9bed9','37cfb7b810815a4aa8a943bceb4d4f35736d48067cf9b68bf8f0c106d03cb3b7','gateway_to_the_savage_frontier','gateway_to_the_savage_frontier','https://www.gog.com/game/forgotten_realms_the_archives_collection_two',0,'Stormfront Studios & Strategic Simulations Inc.','GOG','Role-playing',0,0,0),(1432650732,'Forgotten Realms - Unlimited Adventures',0,0,0,0,0,'105315d52a96ac2dc98c9de77c99f90734a30cd9f02b64b4d035906613c8a4d3','d94b0f43c0d9bdf426f2ca02a5a4642163ca65263bcee766015b5e39d0f5a3e4','forgotten_realms_unlimited_adventures','forgotten_realms_unlimited_adventures','https://www.gog.com/game/forgotten_realms_the_archives_collection_two',0,'Stormfront Studios & Strategic Simulations Inc.','GOG','Role-playing',0,0,0),(1432715627,'Black Moon Chronicles',0,0,0,0,0,'88078867348badc2735fe5f948dc8f5eff7414c300d8c59673a7cf00bc304918','b59dd705a79851456bef406c6320f67d16e01df9b05cee9173b82a0cdc65bd6b','black_moon_chronicles','black_moon_chronicles','https://www.gog.com/game/black_moon_chronicles',0,'Cryo Interactive','Anuman Interactive','Strategy',0,0,0);
INSERT INTO `games` VALUES (1432722131,'Champions of Krynn',0,0,0,0,0,'54760d35b31ec401a4ab899eb8c92c79647e9f330d92e4df752ca13a86a20806','dd2ffda12211680ae81e9bff798555648116ddbee5368c4cf2e77ecb5baa5bee','champions_of_krynn','champions_of_krynn','https://www.gog.com/game/dungeons_dragons_krynn_series',0,'Strategic Simulations Inc. & MicroMagic inc.','GOG','Role-playing',0,0,0),(1432722599,'Death Knights of Krynn',0,0,0,0,0,'70e15aed710a57bbee44ce39d30e946ae382f6f50de2d8e213d459d9a3f26943','4b7471ff72eb152e96ad9cafc2a8a4fd68e02ceaeaaac861b2b5ec84a73efbe1','death_knights_of_krynn','death_knights_of_krynn','https://www.gog.com/game/dungeons_dragons_dark_sun_series',0,'Strategic Simulations Inc. & MicroMagic inc.','GOG','Role-playing',0,0,0),(1432722998,'Dark Queen of Krynn, The',0,0,0,0,0,'e02607a5dc050231b78c4dc2088e252de1f1884f65e35b45656f035cf246b8eb','99d71ca87d8217ec54e96be4c421c7a33c6befaf724d8add5558b9725e8ce8e7','dark_queen_of_krynn_the','dark_queen_of_krynn_the','https://www.gog.com/game/dungeons_dragons_krynn_series',0,'Strategic Simulations Inc. & MicroMagic inc.','GOG','Role-playing',0,0,0),(1432723859,'Dark Sun: Shattered Lands',0,0,0,0,0,'9bedd2361677c7daa67f0d84307db761027444cfd1b03ae48ed71eaf92850591','27d851ec581aac2f951a1c97781aa8d2b55d9663e24fa1535de5c46db8ef4afd','dark_sun_shattered_lands','dark_sun_shattered_lands','https://www.gog.com/game/dungeons_dragons_dark_sun_series',0,'Strategic Simulations Inc. & MicroMagic inc.','GOG','Role-playing',0,0,0),(1432809186,'Guild of Dungeoneering',0,0,0,0,0,'bfb5e9b220656a764cb2ef6e8f16674f145279ef3243f3dc11bb68fe03411ba8','a8d24e57977d6637f577930cd4274b93d3912e4a7702e9441e711146fe2776cf','guild_of_dungeoneering','guild_of_dungeoneering','https://www.gog.com/game/guild_of_dungeoneering',0,'Gambrinous','Versus Evil','Role-playing',0,0,0),(1432894004,'Massive Chalice',0,0,0,0,0,'5ca35df9e482589c2ae0e0a9653b4ab2e8acbc1127ee2b22562e068fe3545a24','e290282cb1d5fe7da9bf4e5967c75d32baea1afcccdc615ea9627751830e9739','massive_chalice','massive_chalice','https://www.gog.com/game/massive_chalice',0,'Double Fine Productions','Double Fine Productions','Strategy',0,0,0),(1432899949,'The Original Strife: Veteran Edition',0,0,0,0,0,'8532f24c9e18a776b0da7fb5ae72c50c6720aa098de7efc21289107da0d19ce9','9f6fbe50bebc243285453a13eba5f8059b8de4a7dee03f03e7bc81b15f95b6f8','strife_veteran_edition','strife_veteran_edition','https://www.gog.com/game/strife_veteran_edition',0,'Rogue Entertainment','Night Dive Studios','Shooter',0,0,0),(1432903719,'Dark Sun: Wake of the Ravager',0,0,0,0,0,'32e51fa3fa24965946aaf3fc69034fb5cc995ba8fad86d9a5bdaeb998a463956','fa959400a5e8ccf971d2ea69e3743aedeaa908efc713bded3d5d8db2d208cd2a','dark_sun_wake_of_the_ravager','dark_sun_wake_of_the_ravager','https://www.gog.com/game/dungeons_dragons_dark_sun_series',0,'Strategic Simulations Inc. & MicroMagic inc.','GOG','Role-playing',0,0,0),(1432905053,'Ravenloft: Strahd\'s Possession',0,0,0,0,0,'09ac11d61f3b628de59a22cb4f0ee80343767a8c343700b49c708bdb8d1c7675','4b487accfb6368b3dc9712fc46399673195d97d6357d90b58899220ed3dcc7db','ravenloft_strahds_possession','ravenloft_strahds_possession','https://www.gog.com/game/dungeons_dragons_ravenloft_series',0,'DreamForge Intertainment','GOG','Role-playing',0,0,0),(1432906190,'Ravenloft: Stone Prophet',0,0,0,0,0,'d92b8ec6c16ee140651189bda9a0623e0080205351f55fb93aa16544a213e3ca','9f755b74be37404e022097f620f1524102df1581e01c720e16deadf97cb8df52','ravenloft_stone_prophet','ravenloft_stone_prophet','https://www.gog.com/game/dungeons_dragons_ravenloft_series',0,'DreamForge Intertainment','GOG','Role-playing',0,0,0),(1432943043,'LEGO® Indiana Jones™ 2: The Adventure Continues',0,0,0,0,0,'74f9656e4d03d5808637bc6e2fa95cc7078c8cc8a33a13f0df26ec290dc787f1','6c598e936e1857972adb76017635d29d786f95fb5af3328abbc9cc6c42cb2b03','lego_indiana_jones_2_the_adventure_continues','lego_indiana_jones_2_the_adventure_continues','https://www.gog.com/game/lego_indiana_jones_2_the_adventure_continues',0,'Traveller\'s Tales','Disney','Action',0,0,0);
INSERT INTO `games` VALUES (1433116924,'The Messenger',0,0,0,0,0,'817371f8c4ab44acb6781b4424b60c093cbb34b5b7346da949caa6bdc1417a2d','c3196bf0f6ae8730e286c988e2401bf18a14924eb8ec54fe47c7f2e7e05b40a7','the_messenger','the_messenger','https://www.gog.com/game/the_messenger',0,'Sabotage','Devolver Digital','Action',0,0,0),(1433153796,'D4: Dark Dreams Don\'t Die - Season One',0,0,0,0,0,'10f4a0fea82af893e24ed9572a6c51e5f108307f49716117c417bf64bf4b7ab3','47b0d4e915f714bd56a51e383c903c638d424d1d2b917e36f04ff431522fcf3f','d4_dark_dreams_dont_die','d4_dark_dreams_dont_die','https://www.gog.com/game/d4_dark_dreams_dont_die',0,'Access Games','Active Gaming Media','Adventure',0,0,0),(1433157800,'Armikrog',0,0,0,0,0,'aa34fb86bbee0ec99a8cde6591df16340e5ed05fcb1d37926b4a969865a1994b','36934012a4c8507756a3ef371617d9d8a2a80265cc46596c5a320faa89441d08','armikrog','armikrog','https://www.gog.com/game/armikrog',0,'Pencil Test Studios','Versus Evil','Adventure',0,0,0),(1433238834,'Worms World Party Remastered',0,0,0,0,0,'a8c52f52e705a3d7505ad1040098a8913922b413e4b12abb32a40d39efb5058a','6e4985d9edcfa69420466f5eb93e051a24183929e02fa042a3c340062a1cf0ae','worms_world_party_remastered','worms_world_party_remastered','https://www.gog.com/game/worms_world_party_remastered',0,'Team17 Software','Team17 Software','Strategy',0,0,0),(1433331863,'Kholat',0,0,0,0,0,'12b767488cae96e824cd32fea398e28e2fe3f7eec1b84b59f294e88afcf0abe0','e5e1c1aab5c907034434f5533aa852fbec2ac4aee6d342b4761c63e84365ef4e','kholat','kholat','https://www.gog.com/game/kholat',0,'IMGN.PRO','IMGN.PRO','Adventure',0,0,0),(1433377508,'Little Nightmares',0,0,0,0,0,'f4afd788040ae359f4c8f42108144750ec1a10d06c6ad04ee80ea7475d21a216','58a24deca44a10f58e135bc1a325681a63a3e86bbcc8b9ebf193fa48abd36445','little_nightmares','little_nightmares','https://www.gog.com/game/little_nightmares',0,'Tarsier Studios','BANDAI NAMCO Entertainment','Action',0,0,0),(1433846206,'Kyn',0,0,0,0,0,'03b3f1780758bef5a1faa94b8c9ba26c904c2aaa6bf9cd635950d64e7234ed4e','204f4ebe4621f878c885e1f3937804a149eef7604fee9d1b2331163b1ea01f29','kyn','kyn','https://www.gog.com/game/kyn',0,'Tangrin Entertainment','Versus Evil','Action',0,0,0),(1433852499,'Stronghold Crusader 2',0,0,0,0,0,'59d5a75bee5366e118c3eaa3dab85cb7aa3599917475ef6809bfe3fc49b24a8b','96473b78fff2e217103635db069f797e8c545bc94052ae7b9886dc37d8e466d7','stronghold_crusader_2','stronghold_crusader_2','https://www.gog.com/game/stronghold_crusader_2',0,'FireFly Studios','FireFly Studios','Strategy',0,0,0),(1433856545,'Victor Vran',0,0,0,0,0,'a55162c9000904e84b13666c0711763e12ada202b91bc836992d41c3d0ccfa81','edd9afb9a681231b88fa3c52f6c08021b6c2518118d28c484bc32575991b1c1a','victor_vran','victor_vran','https://www.gog.com/game/victor_vran',0,'Haemimont Games','EuroVideo Medien','Action',0,0,0),(1433859761,'Simon the Sorcerer 4: Chaos Happens',0,0,0,0,0,'eb03621204efa7c4e55f5403c13d4ea7ffe989ff5682421bf1c39755582ffd5b','0df83521986fa37aa372a10075c459cc0a7912dfe095474ca5239c751a940eb5','simon_the_sorcerer_4_chaos_happens','simon_the_sorcerer_4_chaos_happens','https://web.archive.org/web/20151117033525/http://www.gog.com/game/simon_the_sorcerer_4_chaos_happens',0,'Silver Style Entertainment','Headup Games','Adventure',0,0,0),(1433928487,'Warhammer 40,000: Chaos Gate',0,0,0,0,0,'755e9bd1b3c50dda1739ea78bcf7b1d9e415a6529dd1ba3c4f472067529e8a5a','fe2275e05bc2114b98143a49f46c352d3b4c2d285e472ca2e104bd532903bb8e','warhammer_40000_chaos_gate','warhammer_40000_chaos_gate','https://www.gog.com/game/warhammer_40000_chaos_gate',0,'Random Games Inc. ','GOG','Strategy',0,0,0),(1433929853,'Warhammer: Shadow of the Horned Rat',0,0,0,0,0,'db1f7246128f4f37525e7d253204db6cc8a4d4b72dc9040cfce176f0e7527930','28d16646a8dca701afc22c94913262257986de27148552865ce20aa78e5b3848','warhammer_shadow_of_the_horned_rat','warhammer_shadow_of_the_horned_rat','https://www.gog.com/game/warhammer_shadow_of_the_horned_rat',0,'Mindscape ','GOG','Strategy',0,0,0);
INSERT INTO `games` VALUES (1434013541,'Breach & Clear',0,0,0,0,0,'ef861d32210bbe5876761681826918e349bf21e931de03857762c1a4db746424','a123781ca9f2e03c8eac1f8ca3ff23e5df9a359d919d8c84ef36b2b3cf43ac79','breach_and_clear','breach_and_clear','https://www.gog.com/game/breach_and_clear',0,' Mighty Rabbit Studios','Good Shepherd Entertainment ','Strategy',0,0,0),(1434021265,'Shadow Warrior 2',0,0,0,0,0,'01489a485d3b87c24561bf0d4e80c558ce6471dd897a9601bcf1db5d2bf4809a','9fe8cdb29b86fe7f2942b8d75c10a40ef7b00f5d001ad327f98bf9aa8133e1ff','shadow_warrior_2','shadow_warrior_2','https://www.gog.com/game/shadow_warrior_2',0,'Flying Wild Hog','Devolver Digital','Shooter',0,0,0),(1434036647,'Breach & Clear: DEADline Rebirth',0,0,0,0,0,'33a53a9f8ef54b09ee3f293af0d30ae45ce1e1e968215b976559333c496a38a9','7b6bc394c684e133ba8ac69c26be9adfdccab3dcdeb39d8bfcc5bc7a014fc2e0','breach_clear_deadline','breach_clear_deadline','https://www.gog.com/game/breach_clear_deadline',0,' Mighty Rabbit Studios','Good Shepherd Entertainment ','Strategy',0,0,0),(1434357748,'Venom. Codename: Outbreak',0,0,0,0,0,'47c1d422166e0f5514193c6daa634b4867127223f864d229bbb0ffb68a1e29da','b0d7a1a8a541e5a3939bd1f696b11c9e0036171485a5d53dbc7fbc9eccb341c2','venom_codename_outbreak','venom_codename_outbreak','https://www.gog.com/game/venom_codename_outbreak',0,'GSC Game World','GSC Game World','Shooter',0,0,0),(1434370838,'Windward',0,0,0,0,0,'513f2fd6f886174ef0c2116e51ba0e5d80f41e809216028e28dac948f106c252','84d681b6941184f3333372896413d5a57f394bbde034458b1d8a38c48bb6ca20','windward','windward','https://www.gog.com/game/windward',0,'Tasharen Entertainment Inc.','Tasharen Entertainment Inc.','Action',0,0,0),(1434372124,'FireStarter',0,0,0,0,0,'08bc3c13aa1940d3af9e0003c6cbd271f95acbfa0c37059623e21c7ebfa161a5','faa6b4e101e8a65986b3fda81c85290f6c2eba2cb408005fd3a4450f07ec6eeb','firestarter','firestarter','https://www.gog.com/game/firestarter',0,'GSC Game World','GSC Game World','Shooter',0,0,0),(1434378430,'Pax Imperia - Eminent Domain',0,0,0,0,0,'11730c1cc4468c21e8f7f9546b71be608e698905b3e954607559b3cd3c7a33c1','808206f15dd5538d7055cf4245da933f934fa3272f6ed6c9c777f5ee68e26ccd','pax_imperia_eminent_domain','pax_imperia_eminent_domain','https://www.gog.com/game/pax_imperia_eminent_domain',0,'Heliotrope Studios','THQ Nordic GmbH','Strategy',0,0,0),(1434445160,'Ironclad Tactics Deluxe Edition',0,0,0,0,0,'740466eb571f5637efa8292105fd1025c5188f1c03b0a40956da2a758608aa94','40e790e20cd492b7c7e49ae9ffb3d5970767d907cfe467ccb4ecc1fcf99dae05','ironclad_tactics_deluxe_edition','ironclad_tactics_deluxe_edition','https://www.gog.com/game/ironclad_tactics_deluxe_edition',0,'Zachtronics','Zachtronics','Strategy',0,0,0),(1434446017,'Niko: Through the Dream',0,0,0,0,0,'056514d99586be65aeb34f1dd98695a7bb98d9b67b8f22bbf71d5ee54a29b85e','01157f2e41a689a68dd491914d3ca1adb1b5ae2067c684854218be94af2591ac','niko_through_the_dream','niko_through_the_dream','https://www.gog.com/game/niko_through_the_dream',0,'Studio Paint','Studio Paint','Adventure',0,0,0),(1434460532,'Anna\'s Quest',0,0,0,0,0,'248fcfe9a1e4070de8ea98353f10330d9e6037fa915c775455ee2e53f276f4b2','c6eca7c4b036fac06da0291e38e3185384f63dbe187743aaf0d0793d6a739564','annas_quest','annas_quest','https://www.gog.com/game/annas_quest',0,'Daedalic Entertainment','Daedalic Entertainment','Adventure',0,0,0),(1434535097,'Pajama Sam 2: Thunder and Lightning Aren’t so Frightening',0,0,0,0,0,'db7175124846b4db760d74dd011f1c420de9c6771f612adf72926fc0b4555630','29b7282ff4b5ef1c02c82a93009ff8c880b8be3d9c1fe89cfb1c644ff7ea610b','pajama_sam_2','pajama_sam_2','https://www.gog.com/game/pajama_sam_vol_1',0,'Humongous Entertainment','Retroism','Adventure',0,0,0),(1434535284,'Pajama Sam’s Lost & Found',0,0,0,0,0,'9a5012ad426d0f1eff2540077ee74eb0f0293b537d2fb47ed73b19a13b661a85','29eaa3d678f1efdc53c00608f547114b0ade1e58ee56e08e52d72db9e78e0bd6','pajama_sams_lost_found','pajama_sams_lost_found','https://www.gog.com/game/pajama_sam_vol_1',0,'Humongous Entertainment','Retroism','Adventure',0,0,0);
INSERT INTO `games` VALUES (1434536205,'Pajama Sam 3: You Are What You Eat From Your Head To Your Feet',0,0,0,0,0,'60f00115183b7ec366b9ed38ed219c4b66813458b87b9428c52b402359fc82a4','eb98da26b626f054bd799b2a94f8cb7d910d7520b48d483e40f0457753bec572','pajama_sam_3','pajama_sam_3','https://www.gog.com/game/pajama_sam_vol_2',0,'Humongous Entertainment','Retroism','Adventure',0,0,0),(1434538201,'Pajama Sam 4: Life is Rough When You Lose Your Stuff',0,0,0,0,0,'fc9ce437e02da4af85e2093f51b88114729732c14e97fdea3d39113cc35d92f9','10cd80cfdaececba92ce59e91215c10df6d2eb55c82db53799bba5af864fe90d','pajama_sam_4','pajama_sam_4','https://www.gog.com/game/pajama_sam_vol_2',0,'Humongous Entertainment','Retroism','Adventure',0,0,0),(1434538373,'Pajama Sam’s Sock Works',0,0,0,0,0,'6121f981bcb8761aa98a2a4d1acd336927c925fb078efe4695c527b266f0e467','96034ef3cc80a8ac7204e278ad6c4c87e8f5380edf8ea3f762ce8cbc35a4fc1e','pajama_sams_sock_works','pajama_sams_sock_works','https://www.gog.com/game/pajama_sam_vol_2',0,'Humongous Entertainment','Retroism','Adventure',0,0,0),(1434554947,'Mini Metro',0,0,0,0,0,'67af998e886cef4bed4448580021c7f435122674c3366644ef41b574ce8f6b1c','7eed721bd30f9bcbb87856776b8abc5120eb6fc30d2064976709c77c18524290','mini_metro','mini_metro','https://www.gog.com/game/mini_metro',0,'Dinosaur Polo Club','Dinosaur Polo Club','Simulation',0,0,0),(1434623024,'Cosmonautica',0,0,0,0,0,'3b1a874bc7ade896fc7ffbc1967ca444dba3894117de6a27926e4abdd4d0eda4','98cc6748c3bbe1aaecadecce0f1fad042d4e7ccaae1c510846c011412a14829c','cosmonautica','cosmonautica','https://www.gog.com/game/cosmonautica',0,'Chasing Carrots','Chasing Carrots','Strategy',0,0,0),(1434634843,'SuperPower 2',0,0,0,0,0,'06ef695971f6f9b6e56a44912ab71fbd96dd5d4c40ea0247fdd91241860ee567','16daed907fb193db2f395d0ca883da764cc3632c6c3d70ae1c573d4dfd254801','superpower_2','superpower_2','https://www.gog.com/game/superpower_2',0,'GolemLabs','THQ Nordic GmbH','Strategy',0,0,0),(1434717372,'SpellForce 3: Soul Harvest',0,0,0,0,0,'73080695abe3f6832dbccf9563b03777599c4753203e53a71dacb1faf9f29d91','9eed5bdbbe1e39392a93a2dff576c08e38c15b58ba9242ceca1aeccccedd4f72','spellforce_3_soul_harvest','spellforce_3_soul_harvest','https://www.gog.com/game/spellforce_3_soul_harvest',0,'Grimlore Games','THQ Nordic GmbH','Role-playing',0,0,0),(1434984562,'Terra Nova: Strike Force Centauri',0,0,0,0,0,'ba72fe009f136b35a9bdd75af701c23bfb8c452661d86b1694924986dac296d3','990e7138d4ea1d03d7fbb04d1850edf71cbc29f54eb2dc5ae339b152fa63fa1c','terra_nova_strike_force_centauri','terra_nova_strike_force_centauri','https://www.gog.com/game/terra_nova_strike_force_centauri',0,'Looking Glass Studios','Night Dive Studios','Action',0,0,0),(1435068351,'Tropico 4 ',0,0,0,0,0,'300233865db32ae17ec06cb494151a20719d4eb080fe097340c40334a254139b','c3c30f1099d7110dfc004cc8e32fcdf3aaaf6ba558e1f8382ce464d216e20022','tropico_4','tropico_4','https://www.gog.com/game/tropico_4',0,'Haemimont Games','Kalypso Media Digital','Strategy',0,0,0),(1435140754,'Grandia II Anniversary Edition',0,0,0,0,0,'c05c751d25c2e2782271822559bb2145658df3b05012f7081832d91ec26412c6','c63d6307a93c2f6f776511cf339ac442533f528ac76ddb1f086a0642822dc6ed','grandia_ii_anniversary_edition','grandia_ii_anniversary_edition','https://www.gog.com/game/grandia_ii_anniversary_edition',0,'Game Arts, SkyBox Labs','GungHo Online Entertainment','Role-playing',0,0,0),(1435224812,'TrickStyle',0,0,0,0,0,'f6228959a9bbbbcbb1840ed7fe20442f0c438de6c7d4d47bf931e6abcf76e5bd','cb18d74bd58f6db8a82472598dade7ffe1df166acc901976c6244ce4314b4a0c','trickstyle','trickstyle','https://web.archive.org/web/20161223064631/http://www.gog.com/game/trickstyle',0,'Criterion Software','Throwback Entertainment','Racing',0,0,0),(1435240365,'Her Story',0,0,0,0,0,'588a148267a5dd6ae38034f7fab14d685b441e18cd82a28f736206ba99284535','4912be70eaaaa418f84c171023578db434e67149489115df30e36e488656ed20','her_story','her_story','https://www.gog.com/game/her_story',0,'Sam Barlow','Sam Barlow','Simulation',0,0,0);
INSERT INTO `games` VALUES (1435321049,'Samorost 2',0,0,0,0,0,'cb0c56738ba7e70bcced99f34a0b60c3a454bd4d8a9a2710b8c60f741c4b0874','b5fd29b1d062ff101464dcafd8456f1162b87deb3a2fcef4848fed22ca581d2f','samorost2','samorost2','https://www.gog.com/game/samorost2',0,'Amanita Design','Amanita Design','Adventure',0,0,0),(1435329098,'Renowned Explorers: International Society',0,0,0,0,0,'d556051f8ff37837459768d33e6a93570865e81bd8f77ce2159f46a0cb3919f7','6cd605da4053b7e99a8b9e0a58aa706f0081c666f93bf464007a9a19288e7ecd','renowned_explorers','renowned_explorers','https://www.gog.com/game/renowned_explorers',0,'Abbey Games','Abbey Games','Strategy',0,0,0),(1435570424,'Ronin',0,0,0,0,0,'4194eed945446fa8889d0b141e15a076e0c4ffc80efc53bf1ecd2efc03333617','c7bd037cc1ee25f0e076de49fb5caa679c7d395d5e023859582e489db2223fe4','ronin','ronin','https://www.gog.com/game/ronin',0,'Tomasz Wacławek','Devolver Digital','Action',0,0,0),(1435582019,'Rebel Galaxy',0,0,0,0,0,'e2184c0e8b86417e319c9a2154fab725abc46d04febcb5b6135916bb2eb37fd4','764f816a1fe014534ef9a76b33546e635b1bb33f2f2a0eb8a6a43326e57486d3','rebel_galaxy','rebel_galaxy','https://www.gog.com/game/rebel_galaxy',0,'Double Damage Games','Double Damage Games.','Action',0,0,0),(1435735429,'Pajama Sam: No Need to Hide When It’s Dark Outside',0,0,0,0,0,'aa84fbc1a059a3910d5dbcd8acd0675221da976f85feefd20d27fb8f54a766cb','9bb258fe28f3a870324ef9d2e61394fc7859191e329be0be3d7a669a61a8d929','pajama_sam_1','pajama_sam_1','https://www.gog.com/game/pajama_sam_vol_1',0,'Humongous Entertainment','Retroism','Adventure',0,0,0),(1435827232,'Ultimate Doom, The',0,0,0,0,0,'5175cf9ebd744a41f9ba0a2cca30ece6ba20281cafe72cce9fcf09e937f6867f','50484404fcbfd458cb47ed715ddeda5c4db97c71e42938e6ea0145eb57f0e08d','the_ultimate_doom_game','the_ultimate_doom_game','https://www.gog.com/game/the_ultimate_doom',0,'id Software','Bethesda Softworks LLC','Shooter',0,0,0),(1435828198,'Quake: The Offering',0,0,0,0,0,'3b664dfe416ffc660b131683ce701b3860a81ac5efa71c1f17499a53cad3cac6','4f3010b3133c124701da967097548ed114a656aa5a0ca9fec30540b4f7bc9b36','quake_the_offering_game','quake_the_offering_game','https://www.gog.com/game/quake_the_offering',0,'id Software','Bethesda Softworks LLC','Shooter',0,0,0),(1435828767,'Elder Scrolls III: Morrowind GOTY Edition, The',0,0,0,0,0,'e19e2055ee1d083793a4ea093872f15b749e3d75384bf8c0f3d81002a4a4fd47','acd75fb2d80f6271d99630a1a7c74547bb466148b86ac4dafa17d379f7174b3a','the_elder_scrolls_iii_morrowind_goty_edition_game','the_elder_scrolls_iii_morrowind_goty_edition_game','https://www.gog.com/game/the_elder_scrolls_iii_morrowind_goty_edition',0,'Bethesda Softworks LLC','Bethesda Softworks LLC','Role-playing',0,0,0),(1435828982,'Elder Scrolls: Arena, The',0,0,0,0,0,'8d44338ce97551e378650caa1bd7ce4a25fe115f3b46bd6845dae4a18c186512','fb3e5cd8192d561e16cc7d8e2625e3f2ecf7847509f032f595856985788e7ddd','the_elder_scrolls_arena','the_elder_scrolls_arena','https://www.gog.com/game/the_elder_scrolls_iii_morrowind_goty_edition',0,'Bethesda Softworks LLC','Bethesda Softworks LLC','Action',0,0,0),(1435829353,'Elder Scrolls: Chapter II - Daggerfall, The',0,0,0,0,0,'01ee2248da3b44a49fa268b61402e27766e26590e7a022f7863bfbef24c4ab95','d9e8fdc8a4a508136285a91d0b93ae8d1db64c01de08a0c552f2cba42eaf485f','the_elder_scrolls_chapter_ii_daggerfall','the_elder_scrolls_chapter_ii_daggerfall','https://www.gog.com/game/the_elder_scrolls_iii_morrowind_goty_edition',0,'Bethesda Softworks LLC','Bethesda Softworks LLC','Action',0,0,0),(1435829617,'Elder Scrolls Adventures: Redguard, The',0,0,0,0,0,'dfbac6c314accbdae6fd89276633857aed2cab3392754e34a2c879eef7ca3e66','faf00dd6d566f2b501aaf77eed6f320e809ced58c88c43d64072f084c0cb7fe4','the_elder_scrolls_adventures_redguard_game','the_elder_scrolls_adventures_redguard_game','https://www.gog.com/game/the_elder_scrolls_adventures_redguard',0,'Bethesda Softworks LLC','Bethesda Softworks LLC','Action',0,0,0);
INSERT INTO `games` VALUES (1435848742,'Final Doom',0,0,0,0,0,'366a67d13a260dbafbc0b07d7080b148825bde15814547ae38a631ccace111c0','d7de9738ebb3bb2ff18fb5196ff9336a5660f8eaf4c70a336730565faeaa0b80','final_doom_game','final_doom_game','https://www.gog.com/game/doom_ii_final_doom',0,'id Software','Bethesda Softworks LLC','Shooter',0,0,0),(1435848814,'DOOM II + Master Levels',0,0,0,0,0,'c1f0858b5d431d7ff13ea7e577d52959e8f832ea8066d66035f86cb5bd8c80ff','1b641557a3d4a5e0ee95a2a72770e86025360adcc1c9f18cfcc0cbffca3f8467','doom_ii_master_levels_game','doom_ii_master_levels_game','https://www.gog.com/game/doom_ii_final_doom',0,'id Software','Bethesda Softworks LLC','Shooter',0,0,0),(1435937720,'Odallus: The Dark Call',0,0,0,0,0,'494ea31e4c1b0a901d93c24ca7bf102aa57966d056209068a924bb2ff12795aa','8ebd9fb35c4214a61cfe9cddc2375fdd59621330dad802193c73d423286a6519','odallus_the_dark_call','odallus_the_dark_call','https://www.gog.com/game/odallus_the_dark_call',0,'JoyMasher','JoyMasher','Action',0,0,0),(1436434037,'Metro 2033 Redux',0,0,0,0,0,'5ce02a450ed46472f85e171fe3f8f6b09addb5c8b10e09cbe2e80a5ae9e5172b','e945e464cff5491ec16257545a8b3d0632b2e57e836cb1d9c2edfc9387dcb4f5','metro_2033_redux','metro_2033_redux','https://www.gog.com/game/metro_2033_redux',0,'4A Games','Deep Silver','Shooter',0,0,0),(1436435983,'Infinifactory',0,0,0,0,0,'5d120bb01d7149ed3448cf095e9ce06fd16f6dbd58aa20e7eccad050de043a7f','0e874a97c4b78ba9a1284e24948e381e49e33bc47ff4166d28a5eb6d035ff81d','infinifactory','infinifactory','https://www.gog.com/game/infinifactory',0,'Zachtronics','Zachtronics','Strategy',0,0,0),(1436454557,'Final Liberation: Warhammer Epic 40,000',0,0,0,0,0,'c31010260cba1178eb6d49668353b8b8c0793e1ad2a0fa339039309584cea599','fdeb0ec173c1c33d368649e8dc65f5e59284f17cb1c4a109f117b7027a908d3f','final_liberation_warhammer_epic_40000','final_liberation_warhammer_epic_40000','https://www.gog.com/game/final_liberation_warhammer_epic_40000',0,'Holistic Design Inc. ','GOG','Strategy',0,0,0),(1436866438,'Shadowrun Hong Kong - Extended Edition',0,0,0,0,0,'fcc90f964947d19b0bc49825d55cd181fea2389cd1312a5619ac731fc1c64208','faa22b78ee5d6597e8db233af73c5803184913ef262f86ef91b3c1b389814997','shadowrun_hong_kong_extended_edition','shadowrun_hong_kong_extended_edition','https://www.gog.com/game/shadowrun_hong_kong_extended_edition',0,'Harebrained Schemes','Paradox Interactive','Role-playing',0,0,0),(1436869408,'TIS-100',0,0,0,0,0,'5182618ea791339e7e6d0bc3e0c760e56d38345939518a9a70cf400faa410a0d','463faed6fa3eaef6c7c68bcc314de8e1ef1f20de69e6f392d8a14c723d0058dc','tis100','tis100','https://www.gog.com/game/tis100',0,'Zachtronics','Zachtronics','Simulation',0,0,0),(1436885062,'Tropico 5',0,0,0,0,0,'61da71d904eece7c60a104b36108964edc9ccbecacac61029ae64750c651aab2','f35ae43d4bba1d01ebcdaf739cff855e8dc2fefc598002c643c1b92135b1d36a','tropico_5','tropico_5','https://www.gog.com/game/tropico_5',0,'Haemimont Games','Kalypso Media Digital','Strategy',0,0,0),(1436885138,'Dungeons 2',0,0,0,0,0,'5c9a58c9f3c69783be75981c81acb1548032930acd8926328800d6053ca0804d','fa8d8bd2570504606add2da221fb7f2359da72574a3603120142ed482b99afc0','dungeons_2','dungeons_2','https://www.gog.com/game/dungeons_2',0,'Realmforge Studios','Kalypso Media Digital','Strategy',0,0,0),(1436885539,'Crookz - The Big Heist',0,0,0,0,0,'bb61ab1dc869f07956d395f5e3ac2b180eb1c6506a22a204601df03fd327c5e4','8202b1f129ba8e53ccd64b075b1a8fc0a26be600eeb07da395ee1b15882d5f8a','crookz_the_big_heist','crookz_the_big_heist','https://www.gog.com/game/crookz_the_big_heist',0,'Skilltree Studios','Kalypso Media Digital','Simulation',0,0,0),(1436951929,'Interstellaria',0,0,0,0,0,'cc718aef8861751785320a88a82edcea7904ffe5ab67a57d7a7675c64ff0a0f0','e92674998d38b7652b8d9e2e4e44b30e1d977c49f9673ac05346d93fdbc930cb','interstellaria','interstellaria','https://www.gog.com/game/interstellaria',0,'Coldrice Games L.L.C.','ChuckleFish LTD.','Strategy',0,0,0);
INSERT INTO `games` VALUES (1436955815,'Albion',0,0,0,0,0,'506ed31a51570ce29eeba48f2be908c4525047c4e253c005391652a3bb99a4a6','2197b205600b2a8b1702dfb8f13268913659a4210ee7a23d05c588a665c18f88','albion','albion','https://www.gog.com/game/albion',0,'Blue Byte Studio','Ubisoft','Role-playing',0,0,0),(1436955893,'Archimedean Dynasty',0,0,0,0,0,'9934e957cf31b287b843ed8c4535bbf9a4ecbfcf8ccf37b332ddece8f30de78f','55c35b268d7c0841f6de9306f7a85d950d430ea4c413dd93681982ba8c23b51d','archimedean_dynasty','archimedean_dynasty','https://www.gog.com/game/archimedean_dynasty',0,'Massive Development','Ubisoft','Simulation',0,0,0),(1436971395,'The Swindle',0,0,0,0,0,'cbaa183641d2c8a260c0fb18f36980f5208ec95e2100ae88d150a2fa243124e2','31af03baff526593de90eb761e4b863fd42494591e838e2859f88ed0dd614ad1','the_swindle','the_swindle','https://www.gog.com/game/the_swindle',0,'Size Five Games','Size Five Games','Role-playing',0,0,0),(1437043994,'Cities in Motion',0,0,0,0,0,'71062fea0ba0d870b649584192a990da28974d8c2b98a987f2bad69e66a028e5','32953bd5e24b81b62a7efd855b81b0e03c463d769d242e8ad7fd67ec9fbc85ed','cities_in_motion','cities_in_motion','https://www.gog.com/game/cities_in_motion',0,'Colossal Order','Paradox Interactive','Simulation',0,0,0),(1437060567,'Feist',0,0,0,0,0,'1211ea9d058d634908f71bfd7175b4099597ca89e2f6a49caa7748eb35d9e45e','920844232b42f67cfd0f4cffabd2b8bf08b31c8be711f27040f188cbf1842ea5','feist','feist','https://www.gog.com/game/feist',0,'Bits & Beasts','Finji','Action',0,0,0),(1437092023,'Ruin of the Reckless',0,0,0,0,0,'0d3bb4c43f72abfab6d9e2df969eccb5d8fc46c14471d1e4e9f4e38b248fa9bd','3a12e062e8a5a5b4f901a47b6433db51c82fdc73af982fc00bf090c41b735ac6','ruin_of_the_reckless','ruin_of_the_reckless','https://www.gog.com/game/ruin_of_the_reckless',0,'Faux-Operative Games','Faux-Operative Games','Action',0,0,0),(1437149977,'Bombshell ',0,0,0,0,0,'35f6d9e98cd72f40cdde6ac22a26f0d514a5997487d7a6a655577801d3b9184f','9399a4591ed99e52f9f05aeec12e6040cb3150b9bdb449ed2981e6d65580150a','bombshell','bombshell','https://www.gog.com/game/bombshell',0,'Interceptor Entertainment','3D Realms','Shooter',0,0,0),(1437401338,'Hearts of Iron III',0,0,0,0,0,'780c38f728d9fa1f3fa22e6cc2b3bf99c6b015e33be2517d4f17031d8d17b754','da357a857c7587c11217afcdfca0026228f30146b2f642facee8cced50249f8d','hearts_of_iron_iii','hearts_of_iron_iii','https://www.gog.com/game/hearts_of_iron_iii',0,'Paradox Development Studio','Paradox Interactive','Strategy',0,0,0),(1437553673,'Legend of Kay: Anniversary',0,0,0,0,0,'db292d59ddc06a1732b7e1c4981913c03503574017f77500def2b42a4ac82120','4f47d84a73966da181c9abdc3e5da0fdb4c88b138c16767d34b28851dbff66d1','legend_of_kay_anniversary','legend_of_kay_anniversary','https://www.gog.com/game/legend_of_kay_anniversary',0,'Kaiko','THQ Nordic GmbH','Action',0,0,0),(1437564865,'Ziggurat',0,0,0,0,0,'5e9c09af5337016b2b11adbbd29c14d4224605c551c113ab672e470f45e01d20','48c553f6bffd30feccae7280546a9d5b66cb0e192091c2f3cf5991953e9cb792','ziggurat','ziggurat','https://www.gog.com/game/ziggurat',0,'Milkstone Studios','Milkstone Studios','Shooter',0,0,0),(1437994027,'Dream',0,0,0,0,0,'cde63fe9bba14f54537ce7b09cf45177b59d1cdc42b2dccb7eaabc9fa1017bb7','af2ebebc7ca7f7956aca087779c8894236e81f397028359a4fa653fdc5463f94','dream','dream','https://www.gog.com/game/dream',0,'HyperSloth','HyperSloth','Adventure',0,0,0),(1438006945,'Warrior Kings',0,0,0,0,0,'a56d4cbab339538ba0e2b88ce98ccd6d9f9ac154cf8b57f46b8a0b2c2b9977e0','10e892b4f415f22e241b0874dfb564b2ae30c67736d232dd12728a4a66b825ff','warrior_kings','warrior_kings','https://www.gog.com/game/warrior_kings',0,'Black Cactus Games','Strategy First','Strategy',0,0,0),(1438007195,'Warrior Kings: Battles',0,0,0,0,0,'e78dbce8e8d40f46d83561da1ed5f30e720bcf8d3a2fd3d7dbc547c6a57e277d','08b3dc287a28e9e50ac5e63da6282f905526fad51ddf88d9a6e6b15c0ed475f8','warrior_kings_battles','warrior_kings_battles','https://www.gog.com/game/warrior_kings_battles',0,'Black Cactus Games','Strategy First','Strategy',0,0,0);
INSERT INTO `games` VALUES (1438074791,'Anno 1503 A.D.',0,0,0,0,0,'47966eb33f71fdf4df57c73b34f488415dd0af1e43384b1f0ed7259c97fd5325','d68dd9ebffeba3c3b14a0b09dfde885f75d64bd15c1bd69d03a4a18944fb45cf','anno_1503_ad','anno_1503_ad','https://www.gog.com/game/anno_1503_ad',0,'Max Design GesMBH','Ubisoft','Simulation',0,0,0),(1438075172,'Anno 1701 A.D.',0,0,0,0,0,'a0cd62b860084a083a48b606d0e7bc9ebe56b36fef881a73e16d8d9c43cdfcdd','3a5af9fd5ea21da598f8a497a33a326d9793327c7db51b00cd44c930fd09283c','anno_1701_ad','anno_1701_ad','https://www.gog.com/game/anno_1701_ad',0,'Related Designs','Ubisoft','Simulation',0,0,0),(1438076423,'Frozen Synapse',0,0,0,0,0,'91900dd4ed25b7338528a6805e1f9caf3bd8c9e7202c59dbc0e7f85265bd238f','db4c7ed9bffe03da92d1fce70baf1cbfd6011d10c6415b3b324600fed0bd0017','frozen_synapse_game','frozen_synapse_game','https://www.gog.com/game/frozen_synapse',0,'Mode 7','Mode 7','Strategy',0,0,0),(1438083997,'Agarest: Generations of War 2',0,0,0,0,0,'2ecae023b97b6f68fa0a7a51e710aca41d513be9ffd65bcc780e18448cdf10b7','b235d14bd888ce9505e99ff24c10ade7b58e33d756a344ef528772f6ae1fe9b7','agarest_generations_of_war_2','agarest_generations_of_war_2','https://www.gog.com/game/agarest_generations_of_war_2',0,'Idea Factory','Ghostlight LTD','Role-playing',0,0,0),(1438167237,'Deathtrap',0,0,0,0,0,'704828a1b84793c9479054d5bae0c29669adc57be7f5637c59d0d4d6a7487589','4a997729cc3fe2e3cb0980642045f50270a2fa30604dc5815dd6fcf9b1b1f0a1','deathtrap','deathtrap','https://www.gog.com/game/deathtrap',0,'NeocoreGames','NeocoreGames','Role-playing',0,0,0),(1438168222,'Anno 1602 A.D.',0,0,0,0,0,'1db8a603abf8305f210da1f9b9d2ecd3132354642a5baab1ac5feb773204262e','5ef4815700e6c01d8fcbcdf9f5788ef56316415c0d6c8f8a1929312c7c0c6cff','anno_1602_ad','anno_1602_ad','https://www.gog.com/game/anno_1602_ad',0,'Max Design GesMBH','Ubisoft','Simulation',0,0,0),(1438268682,'Settlers®: Rise of an Empire - Gold Edition, The',0,0,0,0,0,'ce5fd2520b71e8827f87a2499c7ecc07b1b575da374e8e8a0bf152228cf31400','afc4bda49e5765b8f96be03e0b639bd4a770166c6ecebbc05b76ecf895b77203','the_settlers_rise_of_an_empire_gold_edition','the_settlers_rise_of_an_empire_gold_edition','https://www.gog.com/game/the_settlers_rise_of_an_empire_gold_edition',0,'Blue Byte Studio','Ubisoft','Strategy',0,0,0),(1438332414,'World in Conflict: Complete Edition',0,0,0,0,0,'bbb520e2f55feecea836472b938e5ad31ad2834e00a4449500ca479385eb8c44','3a894db592db6a118306b1a72f879b9916b999142c8f2763ac5ffc9384637cc4','world_in_conflict_complete_edition','world_in_conflict_complete_edition','https://www.gog.com/game/world_in_conflict_complete_edition',0,'Massive Entertainment','Ubisoft','Strategy',0,0,0),(1438596389,'Timelapse',0,0,0,0,0,'fe3cdde324de36baf217ff3e2174fd1982290a77a41c290cd476b7f1f5aceac6','7c28772a5db878fe0bc347c4db4b14e7de7216acd6b20dc6d424ad42a6f75cc2','timelapse','timelapse','https://www.gog.com/game/timelapse',0,'GTE Entertainment','Night Dive Studios','Adventure',0,0,0),(1438597128,'Celestian Tales: Old North',0,0,0,0,0,'79f57eff5e791f2d5f9418939098956ed2d2ea87d9e468b6a68193c3e708c7e8','15dcee0aab59a70d36dbb64482b16d47219aed49b4e5146fc13662501c82d833','celestian_tales_old_north','celestian_tales_old_north','https://www.gog.com/game/celestian_tales_old_north',0,'Ekuator Games','Digital Tribe Games','Role-playing',0,0,0),(1438597383,'Shadow Watch',0,0,0,0,0,'611244d55232d16a850bcdd4dc13ff5e4a30a1dee362f11abde327efca7dbadd','05958761cdd3c78bbf27f0869eb77d958a4ed41366965f6d9507d45f8cba75b1','shadow_watch','shadow_watch','https://www.gog.com/game/shadow_watch',0,'Red Storm Entertainment','Ubisoft','Strategy',0,0,0),(1438603531,'OlliOlli2: Welcome to Olliwood',0,0,0,0,0,'ee528e999fc4944e6e6774c33152358daa2ef7d88f68f2897eccad3c0e7d1ffc','ed13b1fe3276a6d0bf4920cd36ecf1b255f38e7471e25a1306f05b26c032ef00','olliolli2_welcome_to_olliwood','olliolli2_welcome_to_olliwood','https://www.gog.com/game/olliolli2_welcome_to_olliwood',0,'Roll 7','Devolver Digital','Sports',0,0,0);
INSERT INTO `games` VALUES (1438770870,'Overclocked: A History of Violence',0,0,0,0,0,'fb019256dc5372861f1a97ade5637c6b894418f9f8bc5edcee22400d5ee55d24','fb5a4da8efab85280ca8cb3af1c4b3f313e0bd62452bee3d38ac6f1583581338','overclocked_a_history_of_violence','overclocked_a_history_of_violence','https://www.gog.com/game/overclocked_a_history_of_violence',0,'House of Tales','HandyGames','Adventure',0,0,0),(1438948561,'Fran Bow',0,0,0,0,0,'acb9198e1eb32a675c7e049b1cf98249590e0b9c3832dbce9ec86e3b80091d77','ca9b9b0447d6c3c3092402d03d8234143f7397c79aec39fb9f271e6a532a3394','fran_bow','fran_bow','https://www.gog.com/game/fran_bow',0,'Killmonday Games','Killmonday Games','Adventure',0,0,0),(1439275574,'Evoland 2, A Slight Case of Spacetime Continuum Disorder',0,0,0,0,0,'f0b35b123a7a775abca16c585b8e70a72ff53f2cd4938a89edc8aca25223c644','64cceb10d7874238d4bdbbc86f6e0bf0f6343642bded2b37b3291658418f2171','evoland_2','evoland_2','https://www.gog.com/game/evoland_2',0,'Shiro Games','Shiro Games','Role-playing',0,0,0),(1439474400,'Hacknet',0,0,0,0,0,'b81a44ea287fe6226c26f321fcee7ae9fe8ea679ed8357b9a2a348552450d1d1','bcc8ca2e55b29bf2d65e048a7134eb7928e2695ac26b8ad9067830a156ec73f7','hacknet','hacknet','https://www.gog.com/game/hacknet',0,'Team Fractal Alligator','Fellow Traveller','Simulation',0,0,0),(1439487606,'SOMA',0,0,0,0,0,'04171b58c59c02140ce3327a3f769b8f06b2c948949331afa17130fd98f26605','9c0baeb82783cb5645721e162d70dd7dc17bb96f7b368078d4c720b15c0528ba','soma','soma','https://www.gog.com/game/soma',0,'Frictional Games','Frictional Games','Adventure',0,0,0),(1439548178,'STASIS',0,0,0,0,0,'2470f1b7f6a94b35303ee395e859a00954790bea38049423c06f201979166852','166c561bd6af10ed71ac13de07fa0238f51c957da2d824695a54f9de058e7983','stasis','stasis','https://www.gog.com/game/stasis',0,'The Brotherhood','The Brotherhood','Adventure',0,0,0),(1439608799,'Polaris Sector - Gold Edition',0,0,0,0,0,'6de7dfca44b8bf35c431a3f2f6d124b1391b55af1cb246237cb52afc55ff5482','fc6802cb290dd28dc72130c0f1529404e27f905b0e24a6d79d785284d2b0c7e6','polaris_sector','polaris_sector','https://www.gog.com/game/polaris_sector',0,'SoftWarWare','Slitherine Ltd.','Strategy',0,0,0),(1439647354,'Sorcerer King – Rivals',0,0,0,0,0,'cda679920e6573a8713ada5e52fd5262a40e3b8fa7931dca4667ad7e27c8da11','21be487b1c4870b17731c91b6b6e6b9651d58febb789409bd702963e6aefa94e','sorcerer_king_rivals','sorcerer_king_rivals','https://www.gog.com/game/sorcerer_king_rivals',0,'Stardock Entertainment','Stardock Entertainment','Strategy',0,0,0),(1439969610,'Deponia 4: Deponia Doomsday',0,0,0,0,0,'0227764b25d04eab1b8d6f63f89c7abdab3adc8357405693e5af1e973b2e4716','456ddbd50c6bc282efc6c5a06d188ebb990e11b72fb6901ea84eb0f6dfcbbda3','deponia_doomsday','deponia_doomsday','https://www.gog.com/game/deponia_doomsday',0,'Daedalic Entertainment','Daedalic Entertainment','Adventure',0,0,0),(1439995156,'System Shock: Enhanced Edition',0,0,0,0,0,'ebfafc5f1fc112fdfe21e223b550c478e1018e8239d54dc65c5112cc174f897d','27248bff38578c9166bd358bf3a4dd2f5a8830231c67bbcfcede7774828c6cb0','system_shock_enhanced','system_shock_enhanced','https://www.gog.com/game/system_shock_enhanced_edition',0,'Looking Glass Studios','Night Dive Studios','Shooter',0,0,0),(1440133968,'SYMMETRY',0,0,0,0,0,'003a6de64649367ad41794d8de3d969a472636a92aba5a1ce90cc7db32bdbba3','c043fbe70c46a2e8f4d282ad7dc18a1faf4b55ae26a7dffdd6f062a2796de75a','symmetry','symmetry','https://www.gog.com/game/symmetry',0,'Sleepless Clinic','IMGN.PRO','Simulation',0,0,0),(1440152251,'The Age of Decadence',0,0,0,0,0,'d7f30cc219d1322cefa6ea85bbdfd1fbfc4e879c8a0c7a77099a98edd1ee0bb5','657970c1f3794c0049c7e405b2b8fee0831fb53ddf2226484b6cfe0975bb6a86','the_age_of_decadence','the_age_of_decadence','https://www.gog.com/game/the_age_of_decadence',0,' Iron Tower Studio',' Iron Tower Studio','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1440163341,'An Elder Scrolls Legend: Battlespire',0,0,0,0,0,'c10aec64456480ed277a16cf9a31ed06ca4ea08a9e4fe5e0752ff24abc8b06f5','e8188aaf06e9c64b9bcf3cd7045085c346a2e4042e10a91fe938504dee0131ab','an_elder_scrolls_legend_battlespire','an_elder_scrolls_legend_battlespire_game','https://www.gog.com/game/an_elder_scrolls_legend_battlespire',0,'Bethesda Softworks','Bethesda Softworks LLC','Role-playing',0,0,0),(1440214117,'Downwell',0,0,0,0,0,'66cfcf829474ed80f35f3dcc602b3faf32378331b409df0449db78013eb08733','56ef4f7d5c1655fa79cedade56d5d180e693fd8e0f2840400098c84f18164bc8','downwell','downwell','https://www.gog.com/game/downwell',0,'Moppin','Devolver Digital','Action',0,0,0),(1440407371,'Big Pharma',0,0,0,0,0,'c9ae6d26013daefaafa4406bd02bb1a8ec46c76f26bbedc7f4a0b5f3761e9c27','c7a9cd2cc241ed4fb0101218172328b8ad5805cd3599a9eb87789ad0a22cca6f','big_pharma','big_pharma','https://www.gog.com/game/big_pharma',0,'Twice Circled','Positech Games','Simulation',0,0,0),(1440410681,'Armed and Dangerous',0,0,0,0,0,'4343bfbdcf180894023cf9ce1ce0242a18426181d6608858196eb387bd358ba2','ae45e5fd6d8b00ef7382c9f89148ddf47fd6023d0c5fe608b0cafcae266457b4','armed_and_dangerous','armed_and_dangerous','https://www.gog.com/game/armed_and_dangerous',0,'Lucasfilm','Disney','Shooter',0,0,0),(1440410803,'Indiana Jones® and the Last Crusade™',0,0,0,0,0,'bc919d8b172d506ef9c6a30d3e705bf5b9f5edf77ac6e3455adac72024e5eedc','0414c13cf16cf7c9b63e5310e440765846002586ce366ebf8a7bd106302f0f5c','indiana_jones_and_the_last_crusade','indiana_jones_and_the_last_crusade','https://www.gog.com/game/indiana_jones_and_the_last_crusade',0,'LucasArts','Disney','Adventure',0,0,0),(1440426004,'Anno 1404: Gold Edition',0,0,0,0,0,'37083c95f959a69801aada2d765817592e7802111e04e924c61c7cd5cb605d63','ade5f7eceaab16efd88ebc740afe271aae65eef994e5ad198da801563938fe7b','anno_1404_gold_edition','anno_1404_gold_edition','https://www.gog.com/game/anno_1404_gold_edition',0,'Blue Byte, Related Designs','Ubisoft','Simulation',0,0,0),(1441029515,'Master of Orion',0,0,0,0,0,'76f607dde45823528c78b2a1d76b16e51bc1d98608ede743d68dca39e10d9239','791b8d13ad8a91510077518c5714b9262d38da8da0485182fa30d53216d74489','master_of_orion','master_of_orion','https://www.gog.com/game/master_of_orion',0,'NGD Studios','Wargaming Labs','Strategy',0,0,0),(1441032629,'X2: The Threat',0,0,0,0,0,'e428f14d832e56abe704feb3806b42e9302308353eafe97c426c21bd8d5bf5d2','5424a5cbd6f265b756c980f4e784fddb5812a54e4057bc6957ff85c74c79f50a','x2_the_threat','x2_the_threat','https://www.gog.com/game/x2_the_threat',0,'Egosoft','Egosoft','Simulation',0,0,0),(1441038404,'X3: Reunion',0,0,0,0,0,'e8f32f99a0f4759871c853fab0aa0824ff5dcace40757f83b1e1d7d82745d8ac','bb8617f91bdcdf63014ee61620758cfc0f9dd1a752c5ba0e46d605daf64722a1','x3_reunion','x3_reunion','https://www.gog.com/game/x3_reunion',0,'Egosoft','Egosoft','Simulation',0,0,0),(1441039322,'X3: Terran War Pack',0,0,0,0,0,'7c492d6849ae3ca00955918e1adeae19d3c6f78e44ccb5e4cc0605fe9906a936','8d2d95aff0b934a7bed80fe3923f4451c4657689d658e7f231e413fce5106895','x3_terran_war_pack','x3_terran_war_pack','https://www.gog.com/game/x3_terran_war_pack',0,'Egosoft','Egosoft','Simulation',0,0,0),(1441039631,'X: Beyond the Frontier',0,0,0,0,0,'c1562d426657834243693d6abe09ae96b16fd08d78acd2859da80814d645c124','9d5ee50ca6051c184289937e522a57a9e1f383f99947eaecd87ba7bf8adaee44','x_beyond_the_frontier','x_beyond_the_frontier','https://www.gog.com/game/x_gold',0,'Egosoft','Egosoft','Simulation',0,0,0),(1441039809,'X: Tension',0,0,0,0,0,'d09867e65efffa9e31cfd2082dbefdb9a8dce2a94344377f45282857a5e8b778','5de78cede9a40d8bfbb68db6d2ee31b4dd9031731c3b4976e007575a92aa7fdc','x_tension','x_tension','https://www.gog.com/game/x_gold',0,'Egosoft','Egosoft','Simulation',0,0,0);
INSERT INTO `games` VALUES (1441096843,'Al-Qadim: The Genie\'s Curse',0,0,0,0,0,'adb2c17df2c3e578bb279fedd6e92616345f786acddde3675b4a5590b19a3040','93cb84e103ba787d779fc50ec95171e8fd301da1ce0bfddacec4bb77403aa5b8','alqadim_the_genies_curse','alqadim_the_genies_curse','https://www.gog.com/game/alqadim_the_genies_curse',0,'Cyberlore Studios','GOG','Role-playing',0,0,0),(1441096928,'D&D Stronghold: Kingdom Simulator',0,0,0,0,0,'e329f224694547ec95f6bcb67b8148ff16eae0c939d9daf1495922246fb016f5','c284f6794fd8f38f2356f175f51cffd7a727fc4d213854387249b11419d69c93','dd_stronghold_kingdom_simulator','dd_stronghold_kingdom_simulator','https://www.gog.com/game/dd_stronghold_kingdom_simulator',0,'Stormfront Studios','GOG','Strategy',0,0,0),(1441098222,'War Wind II: Human Onslaught',0,0,0,0,0,'322bf185802a52875a67db23f2a0ab12e68a9164973a0efea7031ce4374cde5f','f3caa5d3b69a278f51e60c7a331000f02f44556a6c7561ef2b3458a1d2723195','war_wind_ii_human_onslaught','war_wind_ii_human_onslaught','https://www.gog.com/game/war_wind_ii_human_onslaught',0,'DreamForge Intertainment','GOG','Strategy',0,0,0),(1441102382,'Starship Titanic',0,0,0,0,0,'a8735033f626f5db8a108437e00d7583870fd7109de769079142775674247ec7','e492ac35c7adc8815ae277c251ac8314f4197c18cfc06b5aeb420646790b94d5','starship_titanic','starship_titanic','https://www.gog.com/game/starship_titanic',0,'The Digital Village','Completely Unexpected Productions','Adventure',0,0,0),(1441144583,'Princess Evangile',0,0,0,0,0,'e24387a0c20d0313c043b2eecdb22beb8d1100f8dd01626f4fce7e701cbeb9d5','05b3934d3ea349a80378d61c2820652b97621e70912b3a26a55b3458def1caff','princess_evangile','princess_evangile','https://www.gog.com/game/princess_evangile',0,'MOONSTONE','MangaGamer','Adventure',0,0,0),(1441229340,'Legends of Eisenwald',0,0,0,0,0,'66c40ed706e0b7ac02efd5711ad41d61c47af284ec94e67acf36ad87ed37907c','4a28272fc98f36b1a4cfbdbf446f6779148716284322f34ba2f25881b093410f','legends_of_eisenwald','legends_of_eisenwald','https://www.gog.com/game/legends_of_eisenwald',0,'Aterdux Entertainment','Aterdux Entertainment','Role-playing',0,0,0),(1441269533,'80 Days',0,0,0,0,0,'e98bb2e4d3e28c8d0292f923fb742e3ab742aa9bedfebf0564caaf475cb7d935','33cd3f02e438bf859dd02a18418116a2e69fb641d2e59fd66b420ec83fb3bb98','80_days','80_days','https://www.gog.com/game/80_days',0,'Inkle Studios & Cape Guy','Inkle Studios','Strategy',0,0,0),(1441290254,'Lovers in a Dangerous Spacetime',0,0,0,0,0,'388b4f296bffcfbbe7c090a695fe03807df5536d55505063cc4b4572c25e5df6','cbcd0bb385c26bc906acda5e97a66c4df38e0d7517cca77c5fc09a6ae1a59a24','lovers_in_a_dangerous_spacetime','lovers_in_a_dangerous_spacetime','https://www.gog.com/game/lovers_in_a_dangerous_spacetime',0,'Asteroid Base','Asteroid Base','Shooter',0,0,0),(1441704824,'Quake II: Quad Damage',0,0,0,0,0,'64abce6b7d9ba12c65c3a1d4f86fad1d15d441117dc4fe9b213d00538468e00b','7d6329755454471f648546e3112105caf02a16bcd29c9ca47292e1b2b2c72ac0','quake_ii_quad_damage_game','quake_ii_quad_damage_game','https://www.gog.com/game/quake_ii_quad_damage',0,'id Software','Bethesda Softworks LLC','Shooter',0,0,0),(1441704920,'Quake III: Gold',0,0,0,0,0,'96e6cb31aec88543d6f64ad82ab288ac12febac56f049341593fb91b85d1bb8f','0d02a21fe7d67f970501d2869d67c6024a14ad01700cac145696f0c7b4f76ce4','quake_iii_arena_and_team_arena','quake_iii_arena_and_team_arena','https://web.archive.org/web/20171101201146/https://www.gog.com/game/quake_iii_gold',0,'id Software','Bethesda Softworks LLC','Shooter',0,0,0),(1441704976,'Return to Castle Wolfenstein ',0,0,0,0,0,'a76e7f5cbd80d6c6b490657ddcd3fafb40ae3b368dc950ceba23a95f3e2dcd1e','5612bf8d35883639c0990a97ee758347c2b6c8336340002a1dcee1e72faf85a6','return_to_castle_wolfenstein_game','return_to_castle_wolfenstein_game','https://web.archive.org/web/20171221001322/http://www.gog.com/game/return_to_castle_wolfenstein',0,'id Software','Bethesda Softworks LLC','Shooter',0,0,0);
INSERT INTO `games` VALUES (1441705046,'Wolfenstein 3D',0,0,0,0,0,'02d8916e201675ce28e26c579e98184c40349387c0160732979d8601434e578b','47b80932adae57dc5e12a4693c55dbec828af7259bdaa60aa39fd22ed2e0835d','wolfenstein_3d','wolfenstein_3d','https://www.gog.com/game/wolfenstein_3d_and_spear_of_destiny',0,'id Software','Bethesda Softworks LLC','Shooter',0,0,0),(1441705126,'Wolfenstein: Spear of Destiny',0,0,0,0,0,'afd4aa539c08859313e85ff8338d0c5a98078817c4484f769892ab748433f354','9a82e8d651fba0a6d02661edeb82d24ab70edf674db0bb4bde4d1c3173b4fa63','wolfenstein_spear_of_destiny','wolfenstein_spear_of_destiny','https://www.gog.com/game/wolfenstein_3d_and_spear_of_destiny',0,'id Software','Bethesda Softworks LLC','Shooter',0,0,0),(1441707255,'Strong Bad\'s Cool Game for Attractive People',0,0,0,0,0,'b34eff7ae2f5d572d0c42f0a2827c64fd8836c8ad825a02276bd8ebfdf924331','0047509ffae907ef5c91bf768995d324bb40ee2cd61a952e17ce3f0cdcc8020c','strong_bads_cool_game_for_attractive_people','strong_bads_cool_game_for_attractive_people','https://www.gog.com/game/strong_bads_cool_game_for_attractive_people',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1441711248,'Hector: Badge of Carnage',0,0,0,0,0,'ce91b89a426edbdf6b6bf00cf8359d10d08a5f44e2efcb9989a6654c34ca74d7','bea53473ba225e9ec994adaddc87001e038517637464ecfbbdbcbd83bb781347','hector_badge_of_carnage','hector_badge_of_carnage','https://www.gog.com/game/hector_badge_of_carnage',0,'Straandlooper','Telltale Games','Adventure',0,0,0),(1441715179,'Puzzle Agent',0,0,0,0,0,'26bbadd2d820481326bff617849047cee7f951d6c67ba1af91020095d33dea43','f5d5c79e92b9cda1ea83fba852d459f82d6b496005cc2bcfa420bafabc4b404e','puzzle_agent','puzzle_agent','https://www.gog.com/game/puzzle_agent',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1441715815,'Puzzle Agent 2',0,0,0,0,0,'8aaf6a1240905f7a635aa06d3b3a6e668e78f2a936263e21bfc691412ecc9e91','3d1d3ec7027b676db0468aae56d97e3551cf35b256b819db1c87d0fecbc579e9','puzzle_agent_2','puzzle_agent_2','https://www.gog.com/game/puzzle_agent_2',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1441717336,'The Escapists: The Walking Dead',0,0,0,0,0,'9187a630f546cbc2015f5d8691d159594de536a81d4d5dbf127213e6b6f5b033','e4648b9cdfa8f5d1cb8dea34728576e29abc8b32ffa37ce156ad90671d36f15d','escapists_the_walking_dead_the','escapists_the_walking_dead_the','https://www.gog.com/game/escapists_the_walking_dead_the',0,'Team17 Digital','Team17 Digital LTD.','Action',0,0,0),(1441801923,'MX vs. ATV Unleashed',0,0,0,0,0,'df25187675bfbcf2030f99a72d4643518bd8ff2b46feff9add446bdc517f43e1','a001977a002030ce2dcd152c3c2ec8a78ad3566cc9a1f0380b92d4dc313bea46','mx_vs_atv_unleashed','mx_vs_atv_unleashed','https://www.gog.com/game/mx_vs_atv_unleashed',0,'Rainbow Studios','THQ Nordic GmbH','Racing',0,0,0),(1441869560,'Dropsy',0,0,0,0,0,'146f4238388fa4b833156f8621a43c8c0350c3b1f589e83bcef98ff952c1ceff','8dfbe3ea431cf6e58d79c282cd1b31b61a8f7d07eb9835a9f21371a8c4defe1d','dropsy','dropsy','https://www.gog.com/game/dropsy',0,'Tendershoot, A Jolly Corpse','Devolver Digital','Adventure',0,0,0),(1441875464,'Chantelise - A Tale of Two Sisters',0,0,0,0,0,'243576f63e46599200f916c5dc1c1206699d86bb16791dc5e24701a0fdf89f51','a9727934844d03a443c61cf8209491d3349969cf5a8503f8724821762115a838','chantelise_a_tale_of_two_sisters','chantelise_a_tale_of_two_sisters','https://web.archive.org/web/20160314104047/http://www.gog.com/game/chantelise_a_tale_of_two_sisters',0,'EasyGameStation','Carpe Fulgur LLC','Action',0,0,0),(1441875624,'Recettear: An Item Shop\'s Tale',0,0,0,0,0,'98983ba905ec02dbb1b291bac2651b990242e3429b00da7c887c7eebb6b54c5b','157b42c57ba846504bd4a18d9738e6aeec813d8138711bf9ec882d32459621f0','recettear_an_item_shops_tale','recettear_an_item_shops_tale','https://web.archive.org/web/20151018155353/http://www.gog.com:80/game/recettear_an_item_shops_tale',0,'EasyGameStation','Carpe Fulgur LLC','Action',0,0,0);
INSERT INTO `games` VALUES (1441875985,'Europa Universalis III Complete',0,0,0,0,0,'ba504cb8d222c56c6a6a145aa1a4e70fd9d6ca0dd70b1c64e2e4268801c90389','e4e79d50b19e6a4270c09f5ae3c3427d3af4a0f9ffed4c1fef9ce076e81ce248','europa_universalis_iii_complete','europa_universalis_iii_complete','https://www.gog.com/game/europa_universalis_iii_complete',0,'Paradox Development Studio','Paradox Interactive','Strategy',0,0,0),(1441974651,'Prison Architect',0,0,0,0,0,'4e9b7576b55ed38f60e6bb179c09547b1c5849cc5912c90fe5a546a8b6a90faf','45b42b968dcb663afd612cbfc7ebb1c87f0e16831ca958a8c601fc117bdf73e8','prison_architect','prison_architect','https://www.gog.com/game/prison_architect',0,'Introversion Software','Introversion Software','Simulation',0,0,0),(1442218265,'The Vanishing of Ethan Carter Redux',0,0,0,0,0,'b42831d5769569f7a22bae002f4777bb37fc88846b41ac176585fb9fc5f7bc6a','fee9c14bba5119ddf7405653d6fce782f33cb6b43d0165c2c1937b580a5a61f3','the_vanishing_of_ethan_carter_redux','the_vanishing_of_ethan_carter_redux','https://www.gog.com/game/the_vanishing_of_ethan_carter',0,'The Astronauts','The Astronauts','Action',0,0,0),(1442285576,'Shadows: Awakening',0,0,0,0,0,'5f8cba7a7a088af20ece417986347b40b3e9d0ada4d0972335702d06aa6e642e','a3f74491e5f2503b551409b4ef308eb5295d24a39b0f8eae9da2743ce0373356','shadows_awakening','shadows_awakening','https://www.gog.com/game/shadows_awakening',0,'Games Farm','Kalypso Media Digital','Action',0,0,0),(1442473063,'System Shock: Classic Edition',0,0,0,0,0,'e9605054a689acefef7ccd75c3c9387e540d68dbf0030efeec354706c6168be5','fe250da409b80c03bd2d706c6cb1816228e1063ffe61f177bfe14dc88fe2d11c','system_shock_classic','system_shock_classic','https://www.gog.com/game/system_shock_enhanced_edition',0,'Looking Glass Studios','Night Dive Studios','Shooter',0,0,0),(1442485613,'else Heart.Break()',0,0,0,0,0,'a5f48e2823b9b460c56f13ad84e751cf21761f22b592af541d8f93a00c47e16b','a4a93d8007648d3c881ca093e1178ac5140860d0dff95d091081bf25eafa3745','else_heartbreak','else_heartbreak','https://www.gog.com/game/else_heartbreak',0,'Erik Svedäng AB','Erik Svedäng AB','Adventure',0,0,0),(1442498547,'Grand Ages: Medieval',0,0,0,0,0,'6dcbea43d0d965ac5deb167ed10c06a00b730065f175f3c89cb9b244295ddf9b','8bd69c8b90dd2f1f57e4c5d8440957b9326771c53944aa2518f0e13026302700','grand_ages_medieval','grand_ages_medieval','https://www.gog.com/game/grand_ages_medieval',0,'Gaming Minds Studios','Kalypso Media Digital','Strategy',0,0,0),(1442576067,'For The Glory: A Europa Universalis Game',0,0,0,0,0,'20df4e542bd7da88e696646876c8bf1afe0edb544d88917c39b7b4eb5c5cd3ab','e732f68e209dda259f4702b8dc3a2193621adf6ad2b01276323f862ef6f03d57','for_the_glory_a_europa_universalis_game','for_the_glory_a_europa_universalis_game','https://www.gog.com/game/for_the_glory_a_europa_universalis_game',0,'Crystal Empire Games','Paradox Interactive','Strategy',0,0,0),(1442577441,'King Arthur II: The Role-Playing Wargame + Dead Legions',0,0,0,0,0,'bc0c69d78cb227bf1289d3bb618e13d531aa17e0a528ec8ae9ebc4a11c078a84','9bb9c26d23fa06179531968e8d83e267b89065eed1a05754f36f38d4a27ada7f','king_arthur_ii_the_roleplaying_wargame_dead_legions','king_arthur_ii_the_roleplaying_wargame_dead_legions','https://www.gog.com/game/king_arthur_ii_the_roleplaying_wargame_dead_legions',0,'Neocore Games','Paradox Interactive','Strategy',0,0,0),(1442578014,'Achtung Panzer: Kharkov 1943',0,0,0,0,0,'5db38ce033d7e42c3a46debd2fdda1df2a5189eac68e0b20141dc9dbc6e8e4f1','76e74c2db54cab6e54ec5e4269b0be564a47ff0ce0c6f6cf4572ef8178a28ec5','achtung_panzer_kharkov_1943','achtung_panzer_kharkov_1943','https://web.archive.org/web/20151214052151/https://www.gog.com/game/achtung_panzer_kharkov_1943',0,'Graviteam','Paradox Interactive','Strategy',0,0,0),(1442827661,'Hard West',0,0,0,0,0,'bee8b20b5423508e2c3a32b315bfbe9ba556cfb2817bde2675154241cb65df33','7e6f9939f07021d793a1c53042af7f73390873e866673ed7057ab3580830bf3d','hard_west','hard_west','https://www.gog.com/game/hard_west',0,'Creative Forge Games','Good Shepherd Entertainment ','Strategy',0,0,0);
INSERT INTO `games` VALUES (1442832029,'Shantae: Risky\'s Revenge - Director\'s Cut',0,0,0,0,0,'3ce21d6430ffb95ea57fd06ebd1c82096d8a5ed8fa78e6c786e8f8ab7077f49e','1dbd6fbb39fd059db5961190cf318136b80a3dd61455fc1a67aa723868e4e9d5','shantae_riskys_revenge_directors_cut','shantae_riskys_revenge_directors_cut','https://www.gog.com/game/shantae_riskys_revenge_directors_cut',0,'Wayforward Technologies','Wayforward Technologies','Adventure',0,0,0),(1442910587,'A Fistful of Gun',0,0,0,0,0,'a46ca721f2c477e1f13353b2040a2c089da4ed052a7ffc896a022e9fa665a291','cc793db2e8bd44113e9692504a7e3ce36c8936b56dc939d1198af156130a7d3f','a_fistful_of_gun','a_fistful_of_gun','https://www.gog.com/game/a_fistful_of_gun',0,'FarmerGnome','Devolver Digital','Shooter',0,0,0),(1443083988,'Way of the Samurai 4',0,0,0,0,0,'4f9ba446495b2004cf3562d508d718855fbf8ae9f6905ae18c33ce63cfd61e70','b8b9ad086c191cc070e7664ec4c7d5d952aa001d7c1e0c924fc2342284164289','way_of_the_samurai_4','way_of_the_samurai_4','https://www.gog.com/game/way_of_the_samurai_4',0,'ACQUIRE Corp.','Ghostlight LTD','Action',0,0,0),(1443160514,'Falcon',0,0,0,0,0,'6c55047018a37081fef2221b97e165970abe9231287d64c4e470701c840fd6c5','ea971252d690308a11b42373f560257f714b2d08ea5769e12f453d38e31ffc90','falcon','falcon','https://www.gog.com/game/falcon_collection',0,'Spectrum Holobyte','Retroism','Simulation',0,0,0),(1443160586,'Falcon A.T.',0,0,0,0,0,'567a428eb79cac0cd9a5c58e001a9c7075f83acbcab153080e043596c227ad60','33217430e29a5c0edf57f095ee479258a43eb1184f45cb67c0a7d96999780f93','falcon_at','falcon_at','https://www.gog.com/game/falcon_collection',0,'Spectrum Holobyte','Retroism','Simulation',0,0,0),(1443160656,'Falcon Gold',0,0,0,0,0,'a902fbbe71d0f1e209fe202e680976d6edf25ed46440e0acd318b1878f5efd69','2ec081dbf2bdd1ed8767c3835a574e8121db2effdba5cb40c2cca40c742a51e7','falcon_gold','falcon_gold','https://www.gog.com/game/falcon_collection',0,'Spectrum Holobyte','Retroism','Simulation',0,0,0),(1443428641,'HuniePop',0,0,0,0,0,'890d64606d943c000f47b7a028346cd3e863995eeb96628b8b724125a404d7f5','4aad46c8b69e97e51e573ae5ed001e269fe156b00e9114ccb6a1636f049f0197','huniepop','huniepop','https://www.gog.com/game/huniepop',0,'HuniePot','HuniePot','Simulation',0,0,0),(1443433575,'Lula: The Sexy Empire',0,0,0,0,0,'320e659f8fb298e6e7993c5844bb12f92a8a18f3a2fd14c5ced26b0d6b626dc8','52a10a2e2175a0ae6caeea8424b0484ee4465b79b1fb467ddd2c5b4dfd27c883','lula_the_sexy_empire','lula_the_sexy_empire','https://www.gog.com/game/lula_the_sexy_empire',0,'Interactive Strip','United Independent Entertainment GmbH','Strategy',0,0,0),(1443519435,'Sublevel Zero Redux',0,0,0,0,0,'155922e27afda1bf763df108bf75c2e4e4551f1061a219fb8c13c9f6e4eec7d0','7ee0d5cedd51a3f556fff1a2b0bb5c8d08ade65ab32dd549d2acfc8b47a2cd9b','sublevel_zero','sublevel_zero','https://www.gog.com/game/sublevel_zero',0,'Sigtrap Games','Sigtrap Games','Shooter',0,0,0),(1443550104,'Rise of the Dragon',0,0,0,0,0,'6fcbc6cb206820eea2b4c15aebb006fba692a9670a7539a4123acae59e67f2ed','f4b5b613663c9681bcca0e30dc162301dab7021dd4951fa5bac3764e00aba398','rise_of_the_dragon','rise_of_the_dragon','https://www.gog.com/game/rise_of_the_dragon',0,'Dynamix','Activision','Adventure',0,0,0),(1443606025,'Warhammer 40,000: Rites of War',0,0,0,0,0,'958a1e4668c50f72d2daffb9875bfa4437055f1b7507f16263654d96ceb29a60','de835a242c6ae6a268f02647963c19704142614d6edb97fd717dfce7dbc92d00','warhammer_40000_rites_of_war','warhammer_40000_rites_of_war','https://www.gog.com/game/warhammer_40000_rites_of_war',0,'DreamForge Intertainment','GOG','Strategy',0,0,0),(1443615249,'Mushroom 11',0,0,0,0,0,'fc5b84041cb555c15e5f3e6bb598382632569a7d300c95913679892d3d619984','67d4ed3d9c73100776f1b0181abf3c55ba1ff4a6bf14272c6e3426bb7973e50c','mushroom_11','mushroom_11','https://www.gog.com/game/mushroom_11',0,'Untame','Untame','Action',0,0,0);
INSERT INTO `games` VALUES (1443622961,'Craft The World',0,0,0,0,0,'fdc3e3584d3f74a23147259b462cff1a29456f3b2af05bffe5879b4c1b28a34b','638af21697793ec142c4c37de3b85425c6e579efec0a0baa79d5ae97985059da','craft_the_world','craft_the_world','https://www.gog.com/game/craft_the_world',0,'Dekovir Entertainment','Dekovir Entertainment','Strategy',0,0,0),(1443986935,'Sudden Strike 2',0,0,0,0,0,'886cd9b7a57a6fe42cecb0f812223eef70883b7edc03e1a264cd866a60bd20b5','8db2b652b023179b37cf1efbce5af55002da6946064c55b75f521a389f7b0b8c','sudden_strike_2','sudden_strike_2','https://www.gog.com/game/sudden_strike_2_gold',0,'Fireglow','Kalypso Media Digital','Strategy',0,0,0),(1444027604,'2064: Read Only Memories',0,0,0,0,0,'6ec3f742827b26cdf46b890c0f75a6151a86fa2989e87a741729d13e092c909a','ce7e2c15a40e632dfe46ebf520a6d9be8b6e0bfef99cff69ccb3072a1e750b99','read_only_memories','read_only_memories','https://www.gog.com/game/read_only_memories',0,'MidBoss','MidBoss LLC','Adventure',0,0,0),(1444038183,'Turok',0,0,0,0,0,'ca39e1b1ab2d51193868a6d5f96a6e604ca94d244701855681161df7d8cebaa3','29b3adf9337c8eaed52c4acfa89572f172ccab92a5c388ebef5eedb9ca1b2aa0','turok','turok','https://www.gog.com/game/turok',0,'Acclaim Entertainment','Night Dive Studios','Shooter',0,0,0),(1444053723,'Little Inferno',0,0,0,0,0,'9a4dbc2e9a599cbb3e4b69c885b0956e21344131816d0620e8b02f2707a6417b','ec3aae7912f7e89893ed3f77afa57d248c549182cd82b5ddfcf45a8bc86d3f5a','little_inferno','little_inferno','https://www.gog.com/game/little_inferno',0,'Tomorrow Corporation','Tomorrow Corporation','Adventure',0,0,0),(1444206831,'Noctropolis',0,0,0,0,0,'d7eb2d300f629e1a6fd852563bc8d7e002e5610bcb4ae8776bde0c0803e51f6a','b7465c641bcde05d3dbaa545c792d0640307736b9d44ec0a120feb6a97889c18','noctropolis','noctropolis','https://www.gog.com/game/noctropolis',0,'Flashpoint Studios, Night Dive Studios','Night Dive Studios','Adventure',0,0,0),(1444386007,'Wasteland 2 Director\'s Cut',0,0,0,0,0,'0a87e809c9d2f71df25a3850d58ec489df7a3fc069a3227e36f8a9a9e9330525','c77c4731b663f0c92de5ca8e3ced3e4a301bd88a629e9da7134ad8ad9d177274','wasteland_2_directors_cut','wasteland_2_directors_cut','https://www.gog.com/game/wasteland_2_directors_cut_digital_deluxe_edition',0,'inXile Entertainment','inXile Entertainment','Role-playing',0,0,0),(1444400283,'Minecraft: Story Mode - A Telltale Game Series',0,0,0,0,0,'c5d285ceeac9a1449894205642f86aaf021900be3ea5e03bbc77dd7e55e54699','af844b263539af01478e20bf056a1d40d3493e858434f5994b2d268141df03eb','minecraft_story_mode','minecraft_story_mode','https://www.gog.com/game/minecraft_story_mode',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1444400383,'Galactic Civilizations III',0,0,0,0,0,'64c03c4b369cd4bcfba421bbc0eaaa6552a417b441f06d4331ffb24cf4f7f4bf','dbd4a1c810e2da28e13ec7132de6894893c5f7e2022c75348298bdb041bb5f4c','galactic_civilizations_iii','galactic_civilizations_iii','https://www.gog.com/game/galactic_civilizations_iii',0,'Stardock Entertainment','Stardock Entertainment','Strategy',0,0,0),(1444400746,'Galactic Civilizations II: Ultimate Edition',0,0,0,0,0,'57315a780a186ac2f54e37b98c6f0fd2f7cb8fefa2fb8d8b4603075b58c51895','2c37a2d109622f3dc0fb93fbea3914a8fa6652b32c6f50084ec1af316896f5a1','galactic_civilizations_ii_ultimate_edition','galactic_civilizations_ii_ultimate_edition','https://www.gog.com/game/galactic_civilizations_ii_ultimate_edition',0,'Stardock Entertainment','Stardock Entertainment','Strategy',0,0,0),(1444731636,'King Arthur Collection',0,0,0,0,0,'bb9065cf9d42b77354d6fba09293e10bb4aadfda516ee928efdcc4716c587ce8','011eb1f2c266f390d0c92d925b26eaeb7586f1f3a23ddf5baeed3a0f314cbda6','king_arthur_the_roleplaying_wargame','king_arthur_the_roleplaying_wargame','https://www.gog.com/game/king_arthur_collection',0,'Neocore Games','Paradox Interactive','Strategy',0,0,0);
INSERT INTO `games` VALUES (1444731945,'King Arthur: Fallen Champions',0,0,0,0,0,'76b90f9bb8a3809110f79b849db62971ec778f33132187637bbb26d2dea92137','01394e40796c9fa10c8817e533feeed23f36a5f2056aeafc998ddd54f4dc66a1','king_arthur_fallen_champions','king_arthur_fallen_champions','https://www.gog.com/game/king_arthur_collection',0,'Neocore Games','Paradox Interactive','Strategy',0,0,0),(1444806723,'Sea Dogs: Caribbean Tales',0,0,0,0,0,'b287a4ac32581f77dbb2f81fda234a75424a0e78c0e101914292a686b97d64b2','a939c42ee9936d0fb306e3e28cbbdadac6d9c42919a4546c3fb045b88a0ca824','sea_dogs_caribbean_tales','sea_dogs_caribbean_tales','https://www.gog.com/game/sea_dogs_caribbean_tales',0,'Akella','Akella','Action',0,0,0),(1444812654,'Human Resource Machine',0,0,0,0,0,'d6fe0ebe40ef6117c1c8979c00777ce64f8a521302fd95ec13afdb8ebfa4349a','8fd087e4a3a5ce9c12e2399f06f9f8e3dfef1ceafe4de2085cd6e5f41699e6ff','human_resource_machine','human_resource_machine','https://www.gog.com/game/human_resource_machine',0,'Tomorrow Corporation','Tomorrow Corporation','Simulation',0,0,0),(1444826419,'The Legend of Heroes: Trails in the Sky SC',0,0,0,0,0,'640c1557fcfa44650c1a4d56aceb2a9329165f56e2aa0d8b53fcf7e3fa211b86','e5fca0f64f194626ff69464967ecbf5574c7aa45c98844230dfbebe4463f4932','legend_of_heroes_trails_in_the_sky_sc_the','legend_of_heroes_trails_in_the_sky_sc_the','https://www.gog.com/game/legend_of_heroes_trails_in_the_sky_sc_the',0,'Nihon Falcom Corporation','XSEED Games','Role-playing',0,0,0),(1444830704,'Order of the Thorne: The King\'s Challenge',0,0,0,0,0,'7cde342d3a3b878f3e8ce93340409ff87373797a82e5078d2137a977257d6112','604695634836dbb390f7b3fbbb04acd86f28e331e395a9891bfa5ca5d5dcf220','order_of_the_thorne_the_kings_challenge','order_of_the_thorne_the_kings_challenge','https://www.gog.com/game/order_of_the_thorne_the_kings_challenge',0,'Infamous Quests','Infamous Quests','Adventure',0,0,0),(1445170412,'Stars in Shadow',0,0,0,0,0,'ed601a3e3b164a1ad027f0dc15dc6cc442800bc65354352ae9e47a126cb2bc5c','3dc48e28051dd686d6bfd018bdc9bbe5bca11a893f5801e40f900f541edddab6','stars_in_shadow','stars_in_shadow','https://www.gog.com/game/stars_in_shadow',0,'Ashdar Games','Iceberg Interactive','Strategy',0,0,0),(1445249430,'X-Com: Apocalypse',0,0,0,0,0,'0fe7a2e9a64f960df760b1b5173ca5579e1622c8a6c9aa7593bb47b021b1d7b6','095cd9dfe0a042ed18ead8f393d97719494e1ec8f3e35bd1281759fd22e77775','xcom_apocalypse','xcom_apocalypse','https://www.gog.com/game/xcom_apocalypse',0,'MicroProse','2K Games','Strategy',0,0,0),(1445249599,'X-Com: Enforcer',0,0,0,0,0,'f9ffce328c7e3b9f5f221854c3149d82503fcb51398c395e00d98f648e73366a','b4bd5a7e49fcb4eaea18e2b298e74cd616078f099c287371320bd485e94f4de2','xcom_enforcer','xcom_enforcer','https://www.gog.com/game/xcom_enforcer',0,'MicroProse','2K Games','Shooter',0,0,0),(1445249671,'X-Com: Interceptor',0,0,0,0,0,'5b29939afa2375d7b71959f53abe504dd3b0b03c8b3851440a1207e9fc024c61','048dc9ff1f429367e7f48e0b786cb5bf0362247078e9fdc1d0669822b5e9dfd9','xcom_interceptor','xcom_interceptor','https://www.gog.com/game/xcom_interceptor',0,'MicroProse','2K Games','Action',0,0,0),(1445249983,'X-COM: Terror from the Deep',0,0,0,0,0,'cdce54ee23a2900314afc046449dfb7b4361f4410459248c70496a77f57daf24','4a8b7f774d9480c5a5292c384a4b872567e0622ff4bb515bfabd94aaeefbe9b6','xcom_terror_from_the_deep','xcom_terror_from_the_deep','https://www.gog.com/game/xcom_terror_from_the_deep',0,'MicroProse','2K Games','Strategy',0,0,0),(1445250340,'X-Com: UFO Defense',0,0,0,0,0,'90070c2d2dab6ab28c78a4c3acaf77e13ca7899b46b36c75dbf1959dbecea7d1','b27db123c241a7d09f97e6d955c7aaac3ca80ee13f9aaf74178a86a2c7496ebc','xcom_ufo_defense','xcom_ufo_defense','https://www.gog.com/game/xcom_ufo_defense',0,'MicroProse','2K Games','Strategy',0,0,0),(1445250539,'Sid Meier’s Railroads!',0,0,0,0,0,'5ababe642465d73bf5158884eb759a1b8b07820dba79ed310ba0174498858b8c','b8f942be04e91ca9940a8ab2b376d45604ea69e5d8375a12eb841a1566c6896b','sid_meiers_railroads','sid_meiers_railroads','https://www.gog.com/game/sid_meiers_railroads',0,'Firaxis Games','2K Games','Strategy',0,0,0);
INSERT INTO `games` VALUES (1445250653,'Sid Meier’s Pirates!',0,0,0,0,0,'523cb094ca9081506f7c77c3f64ea1ad5fb3cbaa0c0a3f40aecbbb9634e8f3ff','51b71e6f95ea44aa1b36863051073a7fcc0644309de10e4d1442962e1a1ba866','sid_meiers_pirates','sid_meiers_pirates','https://www.gog.com/game/sid_meiers_pirates',0,'Firaxis Games','2K Games','Action',0,0,0),(1445250806,'Freedom Force',0,0,0,0,0,'acf6eb63954f37d5420fc8feeb686362a0388758f8945905d1d7104787bd6051','4bd54877e8d214b53d614007df92b9b2e855d5f0d8b44fd8c705df966e4b4338','freedom_force','freedom_force','https://www.gog.com/game/freedom_force',0,'Irrational Games','2K Games','Role-playing',0,0,0),(1445250876,'Railroad Tycoon 2 Platinum',0,0,0,0,0,'056777bb7a20af23ba0553bc2805bd4177c994e6411e7a7ed7af77e43271ed18','0a5b88280def3c1ad9d2d13fb57eb757d06d5523549fafc4ca86247296d63142','railroad_tycoon_2','railroad_tycoon_2','https://www.gog.com/game/railroad_tycoon_2',0,'PopTop','2K Games','Simulation',0,0,0),(1445251062,'Railroad Tycoon 3',0,0,0,0,0,'b091915d126d98c2609939cecda98f56d86532337426cf85778d2d4e2515c082','bfe82c0dd6be1678050cf770d5fb79b7e7a54680d37fec88cc5bf977a4437cb5','railroad_tycoon_3','railroad_tycoon_3','https://www.gog.com/game/railroad_tycoon_3',0,'PopTop','2K Games','Simulation',0,0,0),(1445338941,'Hyperdimension Neptunia Re;Birth1',0,0,0,0,0,'a840534a85b5a27e1a43d6b502400f9c18297ec93925b9cedf5babb94704154d','e03ffbd7577284d7d0218bd8230164ddb5ad9597a5d67ae4c0428593b10cc08b','hyperdimension_neptunia_rebirth1','hyperdimension_neptunia_rebirth1','https://www.gog.com/game/hyperdimension_neptunia_rebirth1',0,'Idea Factory, Inc.','Retroism','Role-playing',0,0,0),(1445505773,'Darkest Hour: A Hearts of Iron Game',0,0,0,0,0,'07e8248f2b16008389c67516cdedec7261a85402216202efa48a4b64333b4791','12fe92ba6e6a82b4ce5d56585863d4443211d358cacf5d76257260de8ce90ff6','darkest_hour_a_hearts_of_iron_game','darkest_hour_a_hearts_of_iron_game','https://www.gog.com/game/darkest_hour_a_hearts_of_iron_game',0,'Martin Ivanov','Paradox Interactive','Strategy',0,0,0),(1445506889,'Sengoku',0,0,0,0,0,'ba9ac9ed82e21f475c9fe8e3e61a327470123fa40c84017df8ac5a5f8f07374a','d6f0f84878f46e5a5e1ceda4bbbc74d5e509cde25c648003296b09cfa2c68281','sengoku','sengoku','https://www.gog.com/game/sengoku',0,'Paradox Development Studio','Paradox Interactive','Strategy',0,0,0),(1445516929,'Divinity: Original Sin - Enhanced Edition',0,0,0,0,0,'848d214df130e1606052c2e1fda7f13199da21bf805544843ad0ff2bdfae146c','9b0c144887009fc55957f543d7f8afede4761b65f9c82e45a89314fcf354b127','divinity_original_sin_enhanced_edition','divinity_original_sin_enhanced_edition','https://www.gog.com/game/divinity_original_sin_enhanced_edition',0,'Larian Studios','Larian Studios','Role-playing',0,0,0),(1445524380,'Raiden IV: OverKill',0,0,0,0,0,'25a40437c9cfab08e8cd1ce3c6c42159746e5308739c5c6cb5c72d84e92acb1c','9112d67f44843d09ea14656350186637e0deac18cc216c495b195239d46db0be','raiden_iv_overkill','raiden_iv_overkill','https://www.gog.com/game/raiden_iv_overkill',0,'Moss Co., Ltd. ','H2 Interactive Co., Ltd.','Action',0,0,0),(1445528240,'Valhalla Hills',0,0,0,0,0,'ad361a51fd0f56532e33c7695d7b92159f08cf2c366775e6ea1970ffad18547a','0fbf152a3f965ca2a2b92bf048ab64792029c663aca68c2db1eb05e4796a19e7','valhalla_hills','valhalla_hills','https://www.gog.com/game/valhalla_hills',0,'Funatics Software','Daedalic Entertainment','Strategy',0,0,0),(1445591825,'Fallen Enchantress: Legendary Heroes ',0,0,0,0,0,'345b67f871b05b719fdbbb5caf81ca8a3db959372998a05328c59fc30e426d59','ebdaf1ac20453ed85f50d9f030efdda851515f7edfa79b2d101256685ee48b9e','fallen_enchantress_legendary_heroes_ultimate_edition','fallen_enchantress_legendary_heroes_ultimate_edition','https://www.gog.com/game/fallen_enchantress_ultimate_edition',0,'Stardock Entertainment','Stardock Entertainment','Strategy',0,0,0);
INSERT INTO `games` VALUES (1445608249,'Runestone Keeper',0,0,0,0,0,'0657ecbdc83c23b802a77963f15dbdc91c59f64b56b4e510f5c0cf001997dd73','99309672bdc87732ee9eccefcb02c8d68a857a87f777c23ac432d489147d0a9b','runestone_keeper','runestone_keeper','https://www.gog.com/game/runestone_keeper',0,'Blackfire Games','Blackfire Games','Role-playing',0,0,0),(1445609115,'Sorcerer King',0,0,0,0,0,'f867e20c66f6ff34b53471978f40f84f8c7ecc3bcf0266ab13b2fec7295068e6','425d148cd24a64df69de75995cd643853940da6a03f9a8403b4efd594c39ed82','sorcerer_king','sorcerer_king','https://web.archive.org/web/20160616054949/https://www.gog.com/game/sorcerer_king',0,'Stardock Entertainment','Stardock Entertainment','Strategy',0,0,0),(1445852217,'Pathologic Classic HD',0,0,0,0,0,'565b3be0a6514a0d1a17654d06f40fdfdbdd4545ec4d5e0b7ec7e5d644e3d200','84fa7c9de453ac42bc38686c39d221dabd41b079008725e121b4198b0957a873','pathologic_classic_hd','pathologic_classic_hd_game','https://www.gog.com/game/pathologic_classic_hd',0,'Ice-Pick Lodge, General Arcade','Good Shepherd Entertainment ','Action',0,0,0),(1445853962,'Yooka-Laylee',0,0,0,0,0,'9c3e695fbc36ced0737b0f3477904230378397a144f98b70233a759f0766a2d4','cc812b7cc3c0e0f8043aa8d77c1fcc505c2e823e4f0cd0b310e1df15c4fe0a95','yookalaylee','yookalaylee','https://www.gog.com/game/yookalaylee',0,'Team17 Digital','Team17 Digital','Action',0,0,0),(1446111517,'GALAK-Z',0,0,0,0,0,'73eafc5f841f4ef5606bae52f60d59c4903c701b6b4c7820cf94c49385d95fea','1b6ab6b267e196ed05a9bb597cd68f1ce4c6770de782404a460c7abb49a49fe0','galak_z','galak_z','https://www.gog.com/game/galak_z',0,'17-BIT','17-BIT','Shooter',0,0,0),(1446112277,'Never Alone Arctic Collection',0,0,0,0,0,'c217661f02f6c79fb1d27f81d4437e038126807dc216b38dfdca789bec466061','cfa0db1e1f5ddb2bd4d87714f885c671b34d41374c6f58543e8a5fc329537942','never_alone_arctic_collection','never_alone_arctic_collection','https://www.gog.com/game/never_alone_arctic_collection',0,'Upper One Games','E-Line Media','Adventure',0,0,0),(1446213994,'No Man\'s Sky',0,0,0,0,0,'dadce0166552f15649e2ab6eba627f49c3e276db4d0e8aa630c16dd53edb7ae4','e9d46ce54a1a0e2dffbe6715525d1ccbf83c41aff47431c08d502d02eccdd1ce','no_mans_sky','no_mans_sky','https://www.gog.com/game/no_mans_sky',0,'Hello Games','Hello Games','Adventure',0,0,0),(1446463013,'Darksiders II: Deathinitive Edition',0,0,0,0,0,'8dff680dc27647b20501444ebdd620a3232c8ca031a6df7a14d7517885623c8c','72f98ce73a61b62c7f0dea4378f8a51a996204f5c4e315c6f0a03e7cc9ddb9a5','darksiders_ii_deathinitive_edition','darksiders_ii_deathinitive_edition','https://www.gog.com/game/darksiders_ii_deathinitive_edition',0,'Vigil Games, Gunfire Games','THQ Nordic GmbH','Action',0,0,0),(1446636874,'Braveland Pirate',0,0,0,0,0,'cdef8ed92e37d99da5857882867bdc956d80639265af085ab393dc35bde0d376','383cbc02c30feae51e0dc278672c9503e74e52e6657823ff99b34171daaccaed','braveland_pirate','braveland_pirate','https://www.gog.com/game/braveland_pirate',0,'Tortuga Team','Tortuga Team','Strategy',0,0,0),(1446645514,'A Boy and His Blob',0,0,0,0,0,'b1860e6967a62867c74ec9b07d1d00a93cd03cb458e72f74275d341ebac765bb','25d4b13358bec1cf23827bd32c04d1c9f5b2c252e381de279db653d7be780d4c','a_boy_and_his_blob','a_boy_and_his_blob','https://www.gog.com/game/a_boy_and_his_blob',0,'Abstraction and WayForward Technologies','Majesco','Action',0,0,0),(1446645601,'Bloodrayne: Betrayal',0,0,0,0,0,'fcee788f47fba4f941711dd956eda0ef3c3b24fa272168b06d09da4cc32ae275','f4edff3ff2782f565cc617300d6367c8fe09cfccd10c5861aca2c1176abe8960','bloodrayne_betrayal','bloodrayne_betrayal','https://www.gog.com/game/bloodrayne_betrayal',0,'Abstraction and WayForward Technologies','Majesco','Action',0,0,0),(1446823701,'Card City Nights',0,0,0,0,0,'ff96372ceec8b1b750b61c17231b44c63ec91c27e1a87f795b6927e5157713bd','ff56b1717edb1c98c3235b8167088f2673991f9790809bda1b78fe56f33f5c05','card_city_nights','card_city_nights','https://www.gog.com/game/card_city_nights',0,'Ludosity','Ludosity','Adventure',0,0,0);
INSERT INTO `games` VALUES (1446930743,'Foundation',1,0,0,0,0,'103d69b55b19c43a9592f2a6d895f003426b5e7889fe87ce1cb7d691e8355bec','9dd60a970b7c0e6786dc497779aacfb0028b119cef73c27666f20e12e6857d99','foundation','foundation','https://www.gog.com/game/foundation',0,'Polymorph Games','Polymorph Games','Strategy',0,0,0),(1447688349,'UnderRail',0,0,0,0,0,'87ca1683e714cda0492dbf6fd56b3270eb5cd432c5f19ac3b3057896c6fb6766','84f8f199316f53d73e71cb55ed7b2071db1a482cdfae52afb42decdf08f52cfa','underrail','underrail','https://www.gog.com/game/underrail',0,'Stygian Software','Stygian Software','Role-playing',0,0,0),(1447763046,'The Long Dark',0,0,0,0,0,'3b62290d3c6caf8b5db54f9517fb69335350d782fe6ebec330231516255fca10','0b5bfff9dee063ddc08eda9bf62ff6086c8caaccc54b26889910345773abac37','the_long_dark','the_long_dark','https://www.gog.com/game/the_long_dark',0,'Hinterland Studio Inc','Hinterland Studio Inc','Simulation',0,0,0),(1447947499,'Besiege',1,0,0,0,0,'9086e259a293bed11ecd5dd3c9b5c85d28f4474b612795a1d29c286aab481217','558b915620e42dc68825639c57ad100baad72c86a36d76dfbd56aff79691c943','besiege','besiege','https://www.gog.com/game/besiege',0,'Spiderling Studio','Spiderling Studio','Simulation',0,0,0),(1448013298,'The Incredible Adventures of Van Helsing: Final Cut',0,0,0,0,0,'c8e18a5c4ceda0c83a62b9b5b3dacfe84e68cf81332a3cc3f121a569b240888e','de1cc1046a10354429884fbdc650b8b9df01347649467a1901ce691b60d68470','the_incredible_adventures_of_van_helsing_final_cut_game','the_incredible_adventures_of_van_helsing_final_cut_game','https://www.gog.com/game/the_incredible_adventures_of_van_helsing_final_cut',0,'NeocoreGames','NeocoreGames','Action',0,0,0),(1448275717,'Blood & Gold: Caribbean!',0,0,0,0,0,'1bcdc23d9456c4a84ea66824576a898d821a01b784ced50cb89c98507ba7c193','a56ebcef575bd634ca717b41b6c1ee124e8cfef27015e16c2d2f62cc84cf1b12','blood_gold_caribbean','blood_gold_caribbean','https://www.gog.com/game/blood_gold_caribbean',0,'Snowbird Games','Snowbird Games','Role-playing',0,0,0),(1448280389,'The Moment of Silence',0,0,0,0,0,'f9ec268f6daad63d71ae97891dd15c80bdf636a7c6691342d3c1d2c85e04941e','845d8d808b0e58ec887780aae141175e35d97d730d373d14da929a601ef2affe','the_moment_of_silence','the_moment_of_silence','https://www.gog.com/game/the_moment_of_silence',0,'House of Tales','HandyGames','Adventure',0,0,0),(1448280463,'Impossible Creatures',0,0,0,0,0,'f5684e6200a57ccba92c508a155c6f15ba08446e97a164f8b3d04867f35c3eb7','a2da3cdc23f364de76da3b52a8aeee0bb13a79634d94a416508fbc834c1b0747','impossible_creatures','impossible_creatures','https://www.gog.com/game/impossible_creatures',0,'THQ Nordic GmbH, Relic Entertainment','THQ Nordic GmbH','Strategy',0,0,0),(1448355943,'Man O\' War: Corsair - Warhammer Naval Battles',0,0,0,0,0,'94a5b6a025a92bf2a0e2ca9573eeb2bcb133667ea5ed607350f1dea0f410d522','bcc967221aaaed67d20b0eff4fd0a486a624ab68217812f228262bd2e53b8ff7','man_o_war_corsair','man_o_war_corsair','https://www.gog.com/game/man_o_war_corsair',0,'Evil Twin Artworks','Evil Twin Artworks','Action',0,0,0),(1448452156,'Dying Light: The Following – Enhanced Edition',0,0,0,0,0,'c8bf7ab6961467de104ceacaa45b3ef4cf703791642efd22840b27b0ea60a601','e83981436790cbbd741cd5c616f84631e8fc3cd394178e763f4955571181efa1','dying_light_the_following_enhanced_edition','dying_light_the_following_enhanced_edition','https://www.gog.com/game/dying_light_the_following_enhanced_edition',0,'Techland','Techland','Action',0,0,0),(1448617555,'Nuclear Throne',0,0,0,0,0,'ce6e4d7e978674ba915e3dcfb1094187ad4a2af7fbd9b9b2af36b1e9dc48a3b0','d4a110200a65b3f9a7ff42fb3fe91d8984ef5f4c532ce81482cdb7d694b6dec8','nuclear_throne','nuclear_throne','https://www.gog.com/game/nuclear_throne',0,'Vlambeer','Vlambeer','Shooter',0,0,0),(1448625945,'TerraTech',0,0,0,0,0,'39728b76efff3acf46b0e8886db9770455ba9379636d5bca2f7205975a7b358f','f2ca9ec8947a1f1caefe7101be81643b83f864ea378e63b17b34a6c83fcb139a','terratech','terratech','https://web.archive.org/web/20180613183927/https://www.gog.com/game/terratech',0,'Payload Studios','Payload Studios','Action',0,0,0);
INSERT INTO `games` VALUES (1448989420,'Fallen Enchantress',0,0,0,0,0,'5e14189e2c98e2a014c9b631c63a27c6328b59ffe625cabbf0eaa2c131695f4e','5b1c2c2032ef79e3b1e877066c5438f07a9ce236028e46e653cfe3b7bfbbf550','fallen_enchantress_legendary_heroes_the_dead_world_battlegrounds','fallen_enchantress_legendary_heroes_the_dead_world_battlegrounds','https://www.gog.com/game/fallen_enchantress_ultimate_edition',0,'Stardock Entertainment','Stardock Entertainment','Strategy',0,0,0),(1449139823,'Sins of a Solar Empire®: Rebellion Ultimate Edition',0,0,0,0,0,'f5e950308d617c7ba3c18ef07af4563ce60784f09663add52a8e793bf00405e5','2af01fb56c53de9fbb2d1ebadc19158a411f6029b6cdd0fbed91d9f5a4a944e2','sins_of_a_solar_empire_rebellion_ultimate_edition','sins_of_a_solar_empire_rebellion_ultimate_edition','https://www.gog.com/game/sins_of_a_solar_empire_rebellion_ultimate_edition',0,'Ironclad Games','Stardock Entertainment','Strategy',0,0,0),(1449227594,'Overfall',0,0,0,0,0,'ebe8adc3b2856ed81ed73b2a0735fce9ace15ad08f22b0f446567da31cde915d','cba6eafebd8ccae8fb33912592e63d7acc41491147ad6db0f0e25011ce367816','overfall','overfall','https://www.gog.com/game/overfall',0,'Pera Games','Pera Games','Strategy',0,0,0),(1449569170,'Bio Menace',0,0,0,0,0,'2d0cd253f7d22db29fd4c2e411f5ef39c9347771b58f385158a8ac58f198560d','b9c6ff24b9ff090f13e7ce6d34163f39c071e52b013933c2181e5fcc854629da','bio_menace','bio_menace','https://www.gog.com/game/bio_menace',0,'Apogee Software, Ltd.','3D Realms','Shooter',0,0,0),(1449581489,'Requiem: Avenging Angel',0,0,0,0,0,'b87f0e05c48ab853637ab9a486560b3f8e1d3bd56a4e944d1e29528cde80cbfe','66a46ca36cee8af5ff0ce49734cdadf092f9b5c2c98003b104efb2078776aeec','requiem_avenging_angel','requiem_avenging_angel','https://www.gog.com/game/requiem_avenging_angel',0,'Cyclone Studios','Retroism, Prism Entertainment','Shooter',0,0,0),(1449651388,'Grim Dawn',0,0,0,0,0,'73b321c80676bbe64152380376ca1693936a28613517aef1714ab308c40e46e8','a53bdca424fba9621161aaf428a0bc0a95809b4ffa3720056b890543d69ca50d','grim_dawn','grim_dawn','https://www.gog.com/game/grim_dawn',0,'Crate Entertainment','Crate Entertainment','Action',0,0,0),(1449669419,'STAR WARS™ Shadows of the Empire™',0,0,0,0,0,'c13e88bb3d0a6a36fdef13be54e0d9d552b386e1f842cd66d4d91c065c9726f2','ea05a56c0339d448c91a303068267cb8e46168972de9f4389fc5e304e65b10ef','star_wars_shadows_of_the_empire','star_wars_shadows_of_the_empire','https://www.gog.com/game/star_wars_shadows_of_the_empire',0,'Lucasfilm','Disney','Action',0,0,0),(1449856523,'>observer_',0,0,0,0,0,'500910d581534b6a81ac7551b04388d8f037d8dcfb4f8d7d3d55fa0cdaa35870','4b7f1a7542b8726a7e8c154006091cd92e79e1122941144ce670cf0f5b3b116c','observer','observer','https://www.gog.com/game/observer',0,'Bloober Team SA','Aspyr','Adventure',0,0,0),(1450092067,'Hatoful Boyfriend: Holiday Star',0,0,0,0,0,'c1213dafb7385c7d0d1f6c3c901b33a0f6276b6801746bafd1f0117f671e24e7','6a6b757fdbdb7d20f5fa5087764b5e699ceb8a0e816f33439b411c9aee17fa64','hatoful_boyfriend_holiday_star','hatoful_boyfriend_holiday_star','https://www.gog.com/game/hatoful_boyfriend_holiday_star',0,'Mediatonic','Devolver Digital','Adventure',0,0,0),(1450279740,'Sword of the Stars: Complete Collection',0,0,0,0,0,'e7ed6f671b6ebf6544c1d0df8a395729d14229e50c7a932ce6246e38cc13eb02','68178e0c4d9757e61b37042a68e30f609263d94009e263a96b60e212f68a674d','sword_of_the_stars_complete_collection','sword_of_the_stars_complete_collection','https://www.gog.com/game/sword_of_the_stars_complete_collection',0,'Kerberos Productions','Paradox Interactive','Strategy',0,0,0),(1450347751,'Chaos Reborn',0,0,0,0,0,'eb0d81122ce5b6d03048d502d237c23af8ec604f0cff909b6e9604c4d56f5bda','d2409e359a085744e6494e8aa06a648829d93eb988cf4c55e6bbf3cdf6e2c455','chaos_reborn','chaos_reborn','https://www.gog.com/game/chaos_reborn',0,'Snapshot Games','Snapshot Games','Strategy',0,0,0);
INSERT INTO `games` VALUES (1450363937,'Expeditions: Viking',0,0,0,0,0,'ac70d7aa894b0ef72836de47fde1fdf5b1daa0cdfedaef91cb021e0c1bf1aa6d','5ba6de5af59733d6fcda7b30488f80cf5ccefd1c971042ea89e4818d23253877','expeditions_viking','expeditions_viking','https://www.gog.com/game/expeditions_viking',0,'Logic Artists','Logic Artists','Strategy',0,0,0),(1450711444,'Darkest Dungeon®',0,0,0,0,0,'8e0fead3c6a2eeb7098c6a3c7672a51a8b386a7929c1fe087a4621d095d6cd6b','01ece2071eca95f96ce3eca81fc4bead80b2250cede8eea1527ddc583eee6ca9','darkest_dungeon','darkest_dungeon','https://www.gog.com/game/darkest_dungeon',0,'Red Hook Studios','Red Hook Studios','Role-playing',0,0,0),(1451215361,'Beholder 2',0,0,0,0,0,'d2b1530325d7853986a1869829303ea38eb3879edd24053450fb43c719028573','b976106fbf7cc8b95f860d064066e8e523b0c9d56575249978431f3d57e93996','beholder_2','beholder_2','https://www.gog.com/game/beholder_2',0,'Warm Lamp Games','Alawar Premium','Strategy',0,0,0),(1451952142,'The Legend of Heroes: Trails of Cold Steel II',0,0,0,0,0,'b29f8fe3d73d7f3746bab133a04ae2e7fe330b93a92357c5d3fe3beb992abc70','aa0b8cbc9d400a74c74ea1595073e501e1a2cdb7d6bb76135b4d132ada26d568','the_legend_of_heroes_trails_of_cold_steel_ii','the_legend_of_heroes_trails_of_cold_steel_ii','https://www.gog.com/game/the_legend_of_heroes_trails_of_cold_steel_ii',0,'Nihon Falcom Corporation','XSEED Games','Role-playing',0,0,0),(1451970551,'Supraland',0,0,0,0,0,'8855dea36694f1f83e613986c4eee86e8e15d9ce78a1cc9c8a2553ee87bd4de8','283dd36bf492cfc0354ae9438cc26939d664445003dec3d61218a27cc5ae7788','supraland','supraland','https://www.gog.com/game/supraland',0,'Supra Games','Supra Games','Adventure',0,0,0),(1452182173,'Caladrius Blaze',0,0,0,0,0,'de18e4ad137a71ea3f76b484b42f82245f0d6d3f6fd094a8fd156a51b50231a8','fb03182d6c4e8975b6e921db71787cf33a1be7effd78aded5602b7e2b850c469','caladrius_blaze','caladrius_blaze','https://www.gog.com/game/caladrius_blaze',0,'Moss Co., Ltd. ','H2 Interactive Co., Ltd.','Shooter',0,0,0),(1452257327,'Star Wolves 2',0,0,0,0,0,'1294a05bdc5c2e324ed9275d08cd8e22d0424785b5643957e7cc5e589e225909','35cadd422ba5731d20d5fdbb9ddeb83da6e898409bc0e452977d806e5c36ef30','star_wolves_2','star_wolves_2','https://www.gog.com/game/star_wolves_2',0,'X-bow Software','1C Company','Strategy',0,0,0),(1452577588,'Tacoma',0,0,0,0,0,'8fc4af937a0f0d9722921e6c1e274e91c9ddd231d22e8f74fceac5f2be257bb1','69260478af41d278d73c98b16bb23fb6da7c80722f08e2be55d3fac4d5306b83','tacoma_game','tacoma_game','https://www.gog.com/game/tacoma_game',0,'Fullbright','Fullbright','Adventure',0,0,0),(1452598881,'Starbound',0,0,0,0,0,'4bbee40495f385b3b4a944d958edbf631a27f3ea8cec04d68fd841a4b619cb2c','6f4c00e2af9ade4148e0076a3d50da7776fe4c1f33f31af8600bf3e0b45999ba','starbound','starbound','https://www.gog.com/game/starbound',0,'Chucklefish','Chucklefish','Action',0,0,0),(1452681468,'Fear Equation',0,0,0,0,0,'2b26ee4512c4ba029e58a34af7b8d87e9b29accc407cd5dc603a0a6fbc80b26d','bac1dd0db0d2bdf46d67da61974135f8fdb7befdfc570c345a7ab4e39a3602a3','fear_equation','fear_equation','https://www.gog.com/game/fear_equation',0,'Screwfly Studios','Screwfly Studios','Strategy',0,0,0),(1452682147,'Silence',0,0,0,0,0,'d52232cd694349166ac529cd8527d95b1e245d440bfcb47e222d46668b7a3338','7f325205d2220e3dd2c4b2f614645da38a80701b398533d397d053d46ae1590c','silence','silence','https://www.gog.com/game/silence',0,'Daedalic Entertainment','Daedalic Entertainment','Adventure',0,0,0),(1452686225,'Hybrid Wars',0,0,0,0,0,'337bd95aea9c9dcadad5a3899872f298e62b95e8c34b653e09ce86a815a78a9e','bcf93998ed80d7a373820cc9ae80a19c409d0889992bb50b9a24cc7d1cc871e7','hybrid_wars','hybrid_wars','https://www.gog.com/game/hybrid_wars',0,'WG Labs','Wargaming Labs','Shooter',0,0,0),(1452686647,'Samorost 3',0,0,0,0,0,'ee21bcd9a401cb620631d838715152535bb98fd0b631e12fbc556fa37a993d63','ac1a0513318b1c434dc5da5dd4e3d66a6ddedac3d261452e6bfb68fabc1c8433','samorost_3','samorost_3','https://www.gog.com/game/samorost_3',0,'Amanita Design','Amanita Design','Adventure',0,0,0);
INSERT INTO `games` VALUES (1452691186,'Agatha Christie - The ABC Murders',0,0,0,0,0,'145e0bae1f6dd2d9a1e408ed9a9d0080a2c568a867894bc77584938ab9dc9d21','f7066f1e5d11ff7a64d13af681b8898be23f1f35580f4ebfb27f7a38ab1a7fd5','agatha_christie_the_abc_murders','agatha_christie_the_abc_murders','https://www.gog.com/game/agatha_christie_the_abc_murders',0,'Microids, Artefacts Studios','Anuman Interactive','Adventure',0,0,0),(1452692111,'The Flame in the Flood',0,0,0,0,0,'3f83c9857515c4c685c0d9378c4ff4d3fcd8de0802204e69693ed7a408bd1e7a','4c7aef70729a5c5673798e32869a22caff712d3bfef36fc7005ddd27b06e0879','the_flame_in_the_flood','the_flame_in_the_flood','https://www.gog.com/game/the_flame_in_the_flood',0,'The Molasses Flood','Curve Digital','Adventure',0,0,0),(1452699415,'Thea: The Awakening',0,0,0,0,0,'4d00dd99f6bc3e1c252e9888f2ada92d0041652d2df294807cc8c9af7791d52c','044379aaaadd8f581aaa5ac6f3775a93122fbe23e6d77098bad1d3e2a6486b6e','thea_the_awakening','thea_the_awakening','https://www.gog.com/game/thea_the_awakening',0,'MuHa Games','MuHa Games','Strategy',0,0,0),(1452776767,'Moon Hunters',0,0,0,0,0,'80e1afb1e1c27847883c2ea5e4c68a979957ad1ddd84a25ca62a2d5d439e6879','4693b443c1093d09c6a5c9022d1c7e46d346362f65315db1269c02447b14e386','moon_hunters','moon_hunters','https://www.gog.com/game/moon_hunters',0,'Kitfox Games','Kitfox Games','Action',0,0,0),(1452777713,'Punch Club',0,0,0,0,0,'6e2d36efeb775e8cb5b00352c9967bdd1f17814a57a422b24feff6c42afab27c','d8b57fb2ed990587515500e96e4e2c6b5d47ff1b9f5f51fec1f1dfd7f1a9d399','punch_club','punch_club','https://www.gog.com/game/punch_club',0,'Lazy Bear Games','tinyBuild','Role-playing',0,0,0),(1452863102,'Aquatic Adventure of the Last Human, The',0,0,0,0,0,'30efdac623ba1e5295bd09cdb309ab591a6b0c96bfbb9b56dd2d2566efef7f21','df865bc7a67233d3c4e53da9950743779bd50fadf2af644b067934670c7af2d0','aquatic_adventure_of_the_last_human_the','aquatic_adventure_of_the_last_human_the','https://www.gog.com/game/aquatic_adventure_of_the_last_human_the',0,'YCJY Games','YCJY Games','Action',0,0,0),(1452863689,'Hyper Light Drifter',0,0,0,0,0,'fdc6ee70ba6aee36a86086a9391fbea1ac146ff15cfef037f19ea42046ffa1ca','6a10ed0f35babaafb326431bfba4523809bbede4b2666cba3745b42e3c164003','hyper_light_drifter','hyper_light_drifter','https://www.gog.com/game/hyper_light_drifter',0,'Heart Machine','Heart Machine','Action',0,0,0),(1452983471,'Steel Rats™',0,0,0,0,0,'2042e6953ba93d9e99641b020c6f514b3511af98fd0834ee1de15dce3c0cd636','9f864d34d5b6c12b2d415a3fda12fe536203522585a7c91f8008ac94266e7eaf','steel_rats','steel_rats','https://www.gog.com/game/steel_rats',0,'Tate Multimedia','Tate Multimedia','Racing',0,0,0),(1453126104,'FORCED SHOWDOWN',0,0,0,0,0,'8e0e301b041ff9cd52092b61d11ffede192a4c6851abc66e3be3d3cc84cb9613','a153727a9851c9a5772b750985d9e9ab410d838ef30cb73bd6539f750847bd75','forced_showdown','forced_showdown','https://www.gog.com/game/forced_showdown',0,'BetaDwarf','BetaDwarf','Action',0,0,0),(1453128328,'Curious Expedition',0,0,0,0,0,'e6244220f42eda46f49ac838d4c03306962f38e0a6f252e7c1ae57d096771a54','c5be355683d0067e2907b4a337727cae5dff1251b29254721a11a6feec96143e','curious_expedition_the','curious_expedition_the','https://www.gog.com/game/curious_expedition_the',0,'Maschinen-Mensch','Maschinen-Mensch','Adventure',0,0,0),(1453195863,'Uprising: Join or Die',0,0,0,0,0,'d6530350cd7508880df7c531d882b2b0f97a09d391b0f7d480aea75e24b17d2c','aaac62cb75396ec85ffe1fa0c4fb8bf57530feba775d36aabdd3f665436070f5','uprising_join_or_die','uprising_join_or_die','https://www.gog.com/game/uprising_join_or_die',0,'Cyclone Studios','Retroism, Prism Entertainment','Action',0,0,0),(1453197519,'Westport Independent, The',0,0,0,0,0,'26f71169cce6515d3560abbf93bb7c354977a9b93cf96024fd13bd27d066b659','694dede117b3278ffb2a6d9e6938e95bd14a2ce7891253172d8f078867bbae59','westport_independent_the','westport_independent_the','https://www.gog.com/game/westport_independent_the',0,'Double Zero One Zero','Coffee Stain Studios','Simulation',0,0,0);
INSERT INTO `games` VALUES (1453282796,'Necropolis: Brutal Edition',0,0,0,0,0,'aad521b6542f15b391935bcf90d868746cd2fb9cc8c3a8b55d66a62b005dfc68','574f0f334ba674a09e97d4742a8126399daee85531294ef96965122b51bf5148','necropolis','necropolis','https://www.gog.com/game/necropolis',0,'Harebrained Schemes','Paradox Interactive','Action',0,0,0),(1453298883,'Project Zomboid',1,0,0,0,0,'997a880a5624334e379dfe5bfc63191f8af379937de97d821c6ccba044899c2a','29b41f6506eafe4eba2eefc29b5771f4024fa4496713d1e2ae262518cbb09384','project_zomboid','project_zomboid','https://www.gog.com/game/project_zomboid',0,'The Indie Stone','The Indie Stone','Action',0,0,0),(1453301453,'Outlast 2',0,0,0,0,0,'409993ae05dfa48caa30943b3d2f97cd0f462e0da9fca81edff85cc6a957fe3d','43403daacd6b52936659e57977d4aa58e92fe532b1b7f48248267e270a557a72','outlast_2','outlast_2','https://www.gog.com/game/outlast_2',0,'Red Barrels','Red Barrels','Action',0,0,0),(1453374895,'Tharsis',0,0,0,0,0,'82c439814153e27bd04534ef6b9b516d83dbc190f998dd66ae70cd8f5cc382e7','c8af003b46d4fe33810e87add6d660f345ea78a422300fe7957fd9e4f1ba6a31','tharsis','tharsis','https://www.gog.com/game/tharsis',0,'Choice Provisions','Choice Provisions','Strategy',0,0,0),(1453375253,'Stardew Valley',0,0,0,0,0,'7a7aa0d1fd660f6b00631aebc8082c389e2af2701539c64030e808eaa7bde053','3bb825241a52e4c6217555db427af4182b2438312cf1a28b96aaba8bb0e4c3aa','stardew_valley','stardew_valley','https://www.gog.com/game/stardew_valley',0,'ConcernedApe','ConcernedApe','Simulation',0,0,0),(1453378371,'Future Unfolding',0,0,0,0,0,'3b679795a1168c527e39c9adadb62318ce5fb362099a7f512aecc3087793f2cb','5c663e37f94fd4e43140c79a0e239cbb7a384bbae91bcd2d30562f27debbb52a','future_unfolding','future_unfolding','https://www.gog.com/game/future_unfolding',0,'Spaces of Play UG','Spaces of Play UG','Action',0,0,0),(1453458005,'Uprising 2: Lead and Destroy',0,0,0,0,0,'bceb076358efdc550d7016096cd9ade3f161eeb96e64ec4aea2bf76a9b595810','4b2408b6f543f5b49952c30b3bcafcee03b2ea25612fc461f8080ea14a5e4471','uprising_2_lead_and_destroy','uprising_2_lead_and_destroy','https://www.gog.com/game/uprising_2_lead_and_destroy',0,'Cyclone Studios','Retroism, Prism Entertainment','Action',0,0,0),(1453474245,'Crashlands',0,0,0,0,0,'678ad1bedc31d3d9e926e217db11a62cd6f8dcaf8fc762ba3ede17ad6c8f1d6d','ee19a914e8a24dbb53bf23e2e2d88969cf965d6abe198e214686eb4fadafbbdc','crashlands','crashlands','https://www.gog.com/game/crashlands',0,'Butterscotch Shenanigans','Butterscotch Shenanigans','Action',0,0,0),(1453737805,'Rayman Raving Rabbids™',0,0,0,0,0,'7d8803a1a8514373c34d0be8d1cf3d7a5fa59764ec8d18c8233e56c83dd406a4','48a86b0767b81db708aec2db9f31f80ebcabc86766951a9a2f6d7a4d2b5bfb9a','rayman_raving_rabbids','rayman_raving_rabbids','https://www.gog.com/game/rayman_raving_rabbids',0,'Ubisoft Bulgaria, Ubisoft Montpellier','Ubisoft','Action',0,0,0),(1454067812,'BattleZone 98 Redux',0,0,0,0,0,'6d5f9b8caf133cc70104b810a1e87ba8b4e2d16a2c5e92ee8d4657a04ad4bb33','71e8d893ef327714ad01c4ad3a91f8533a2e34a1d6f03e22ae4c6f79ae4e4b66','battlezone_98_redux','battlezone_98_redux','https://www.gog.com/game/battlezone_98_redux',0,'Big Boat Interactive','Rebellion','Strategy',0,0,0),(1454068042,'Risen 3: Titan Lords',0,0,0,0,0,'488173a26cfbc3b8cccc6d3c504ef9a2340e3b8b379fef2cb6d64dc7dd5c89ef','396e6316559c670f300a5440a92da934899a3fbf2997b91e37549aadfe365b17','risen_3_titan_lords','risen_3_titan_lords','https://www.gog.com/game/risen_3_titan_lords',0,'Piranha Bytes','Deep Silver','Action',0,0,0),(1454313816,'Eradicator',0,0,0,0,0,'27104509bbcaa8ed6865ffc82e2597d655511d083b9b75c25a3bf2175fecb3c2','6f6ee7851d1355cadc7d48cedcf9d2251f021a63d551c9e5b28ef1d7df940e75','eradicator','eradicator','https://www.gog.com/game/eradicator',0,'Accolade','Tommo','Shooter',0,0,0),(1454319762,'Kona',0,0,0,0,0,'c07008285c3a3261b6e89a192a0ace38b81fbf2b66950bd5278f79ac17abfffc','f6b24d9c416caf4fa4a8ecb1f6975a9d8fa787a272233f525d35f582c8fcc483','kona_day_one','kona_day_one','https://www.gog.com/game/kona_day_one',0,'Parabole','Parabole','Adventure',0,0,0);
INSERT INTO `games` VALUES (1454498998,'Perimeter: Emperor\'s Testament',0,0,0,0,0,'0806bd4f43e39d7d247163fd964c53b741223baa8f4df2cec8ebcbf33ecd78c7','0972ff9369a04314d21264d23ab622ea6b0216101a3cb7f0625d63a13f4c55f1','perimeter_emperors_testament','perimeter_emperors_testament','https://www.gog.com/game/perimeter_emperors_testament',0,'K-D Lab Game Development','1C Publishing','Strategy',0,0,0),(1454499527,'Shardlight',0,0,0,0,0,'7c3a98ed72d1b4f3689ca4ea38fbdb0cd38222b391782b3e1b38528f0e089e9c','b943554c9ac52022033d0efbe335741a663e580393e3fa9f95ad661cd824305b','shardlight','shardlight','https://www.gog.com/game/shardlight',0,'Wadjet Eye Games','Wadjet Eye Games','Adventure',0,0,0),(1454499830,'The Dwarves',0,0,0,0,0,'d4395cfca9c5173c14dab2f69bba019abb12dec67f5fc2587cf00ffb8d094e9b','204767653aa857d9d8bacf22a3bce99440fd630cabd491d6a7543a1311c1e6d8','dwarves_the','dwarves_the','https://www.gog.com/game/dwarves_the',0,'KING Art','THQ Nordic GmbH','Role-playing',0,0,0),(1454576218,'Men of Valor',0,0,0,0,0,'83f1baba2dc7cb6f22d0dbbdb40b502c9ecab8304573dafc82da90d11b44da9b','738d99717840b2b95bd1b31a5747c121d95a415197f16f227b94934de67a3a10','men_of_valor','men_of_valor','https://www.gog.com/game/men_of_valor',0,'2015','THQ Nordic GmbH','Action',0,0,0),(1454596244,'Pony Island',0,0,0,0,0,'12c75d717ced8c5309ef54ab42eae237f5d73195ab92a988920df86ae33968e7','7266a0af04b2a02f70c6354c7dedc0e9a7b7e1c1319b02d79e6d70eef6c1d681','pony_island','pony_island','https://web.archive.org/web/20160301024835/http://www.gog.com/game/pony_island',0,'Daniel Mullins Games','Plug In Digital','Adventure',0,0,0),(1454602861,'Level22 Gary’s Misadventures',0,0,0,0,0,'2d403e9914451024bc907abbb5c78b81a6a799b084107147ecdaaadd8686334c','60bc0cd2e066a8cda62a7fe6ec3e25763ba3b02ca912dc7ed85c9265926c4bba','level22_garys_misadventures','level22_garys_misadventures','https://www.gog.com/game/level22_garys_misadventures',0,'Moving Player','Plug In Digital','Action',0,0,0),(1454930864,'Sheltered',0,0,0,0,0,'60cda7024433da2da6cee09843b883da49151ae23513a103c2ba61bc5f17b926','4a4d05775f8d60078b9b8dd7a461e9d4fe45e4a3643ccb3e450a7a8021b214d6','sheltered','sheltered','https://www.gog.com/game/sheltered',0,'Unicube','Team17 Digital LTD.','Strategy',0,0,0),(1455107123,'Layers of Fear',0,0,0,0,0,'f3b9e01ccca0999cf8a4f0b0350212a03a63e717131d820cc4c92ca74423e744','50ee64067a99ab0703459bcbd24e8c5ebb8bc3143c050c883be5dc694965e313','layers_of_fear','layers_of_fear','https://www.gog.com/game/layers_of_fear',0,'Bloober Team SA','Aspyr','Adventure',0,0,0),(1455119388,'Cornerstone: The Song of Tyrim',0,0,0,0,0,'19918665ff1afd288f690e44cf9f5788efec77982e99828420cb4cd1d7a09a43','27be187a216f7f4bab0263aea6419c9e0672856a9aafc52218440ff50025335a','cornerstone_the_song_of_tyrim','cornerstone_the_song_of_tyrim','https://www.gog.com/game/cornerstone_the_song_of_tyrim',0,'Overflow Game','Phoenix Online Studios','Role-playing',0,0,0),(1455191756,'Sea Dogs: City of Abandoned Ships',0,0,0,0,0,'9b64e5756b6c01d9a416d405da5ff4be2514f7bd5d8abca2297e4ac0885ffd90','d48d2b963961bbea32b78efc783a8db3b7622adf2eb2cc84699b17a8fbf84851','sea_dogs_city_of_abandoned_ships','sea_dogs_city_of_abandoned_ships','https://www.gog.com/game/sea_dogs_city_of_abandoned_ships',0,'Akella','Akella','Action',0,0,0),(1455194518,'No Pineapple Left Behind',0,0,0,0,0,'a51334253eac25d3e43d3915277d01cddf28f5b572b4844ef7d4d752761d120b','360cfa893c85ca3fafece00ec2eb22dd5f60d4d4880313c3fde5c50f453d20d4','no_pineapple_left_behind','no_pineapple_left_behind','https://www.gog.com/game/no_pineapple_left_behind',0,'Subaltern Games','Subaltern Games','Strategy',0,0,0),(1455194922,'Bounty Train',0,0,0,0,0,'415cc6938f3e0a0c38adf641bd3afd1f4890da0de08f56c80359d6e35ea415a6','c1a8f2e86f501c3dc6a9eca6b0ba8017be57c67d7984ebd26743401e281d0f68','bounty_train','bounty_train','https://www.gog.com/game/bounty_train',0,'Corbie Games','Daedalic Entertainment','Strategy',0,0,0);
INSERT INTO `games` VALUES (1455290088,'Konung: Legend of the North',0,0,0,0,0,'7e143d1242b62cf0ea7dfb5f40189971ba962d46b5deaf3c7f77104bdea5cee5','ae9c09cb6ec9f77138ca616d5f11be2df0b19ffee17c0301586ef20c6c06ce10','konung_legend_of_the_north','konung_legend_of_the_north','https://www.gog.com/game/konung_1_2',0,'1C Company','1C Publishing','Role-playing',0,0,0),(1455290259,'Konung 2: Blood of Titans',0,0,0,0,0,'b2dd6b9c3c4abc637738593a26e1d376abefddde921ec2dd467410fdab87ff58','a3901e25cd2ff8296e77fcba1f78c1347a75796f61994a737980eb23e054b488','konung_2_blood_of_titans','konung_2_blood_of_titans','https://www.gog.com/game/konung_1_2',0,'1C Company','1C Publishing','Role-playing',0,0,0),(1455298654,'Downfall: Redux',0,0,0,0,0,'27927fc658e55a5058e92298f1d58d939c62e6291227d51c12de67b286a958ed','02ef79235352a07d821f030f637cc21a6f1000fad65b17db9253414ffa486fbb','downfall_redux_copy3','downfall_redux_copy3','https://www.gog.com/game/downfall_redux',0,'Harvester Games','Screen 7','Adventure',0,0,0),(1455529924,'Californium',0,0,0,0,0,'d8ec7bb65e1f81fdfc2b303b40052512ee0ddc59c465675f1db106a413b98f20','46fd82103e3014465befd7069d5636c23b52700346f64cd454e0e68cb363316c','californium','californium','https://www.gog.com/game/californium',0,'Darjeeling, Nova Production','Neko Entertainment','Adventure',0,0,0),(1455545518,'War Wind ',0,0,0,0,0,'fb04b8c1e4536da657ab043b92c9199d57338297bfbca5f6f6079db115745fb2','39b3b465cfec874e6dcd161ac1123d3f431e482c8f29a717e35d28705886ee89','war_wind','war_wind','https://www.gog.com/game/war_wind',0,'DreamForge Intertainment','GOG','Strategy',0,0,0),(1455617752,'The Solus Project',0,0,0,0,0,'ed70a8c863c6ea03ebc327a31d5f9214124a8898a1635a39bc1093c3bb5bdca6','8d5d22e1a1a98a3921ac670cb5ce7dcfbadc9c47b510451526acba09ae6cf479','the_solus_project','the_solus_project','https://www.gog.com/game/the_solus_project',0,'Grip Games/Teotl Studios','Teotl Studios','Adventure',0,0,0),(1455645883,'X Rebirth',0,0,0,0,0,'cb93fa8698fc129a73dec64225917021dae70a668d2249acd1e476b699a81cba','7c6c1f8f55536b3831261274f547591161c2275bd5b1db0b7ab80e802d683a08','x_rebirth','x_rebirth','https://www.gog.com/game/x_rebirth',0,'Egosoft','Egosoft','Simulation',0,0,0),(1455701771,'Paws: A Shelter 2 Game',0,0,0,0,0,'f5f0b46fd45c5852e864af535aeceaa3a5028218235c0379890fa045d108ae25','3ee60ea7a7071340aa6107e80c06e48f02a99c873382049be10166a546b81abf','paws_a_shelter_2_game','paws_a_shelter_2_game','https://www.gog.com/game/paws_a_shelter_2_game',0,'Might and Delight','Might and Delight','Adventure',0,0,0),(1455704049,'Codename Panzers: Phase One',0,0,0,0,0,'82004c16a46b977622577edf60740aa67d084cc62c1b56aad348a10b4862df2c','5f3132a335dbade8d23256bfd5d2faf1fd27338fdf93672a9d521736f8b3fb67','codename_panzers_phase_one','codename_panzers_phase_one','https://www.gog.com/game/codename_panzers_phase_one',0,'Stormregion','THQ Nordic GmbH','Strategy',0,0,0),(1455704410,'Codename Panzers: Phase Two',0,0,0,0,0,'82bc9783bc6c819d8560629ecb2f89d1cc11e5b8b622cdc854249d4b73954def','989d8f4d752b21f493f7cf084dad3767bc783e959b93fc2d4e1b0c283fb08645','codename_panzers_phase_two','codename_panzers_phase_two','https://www.gog.com/game/codename_panzers_phase_two',0,'Stormregion','THQ Nordic GmbH','Strategy',0,0,0),(1455785261,'The Walking Dead: Michonne - A Telltale Miniseries',0,0,0,0,0,'4cbfd65907b06f8b9c40aab4cf4bd66d65d4581aef8f2ece2e62a6cf9037b6b5','06098185859aaa3bdb51e9120e7732a2457fdcfbce5ae5902af00a2ef955c3b9','the_walking_dead_michonne_a_telltale_miniseries','the_walking_dead_michonne_a_telltale_miniseries','https://www.gog.com/game/the_walking_dead_michonne_a_telltale_miniseries',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1455787562,'Into the Stars',0,0,0,0,0,'848ad781b2ba21c2b3bc57d2129700e4f2da0dc4d587a57099e56cc8518fe873','6b7a14446aaedd000589f300038923d683222d730784e30cdfada9095ee1031c','into_the_stars','into_the_stars','https://www.gog.com/game/into_the_stars',0,'Fugitive Games','Iceberg Interactive','Strategy',0,0,0);
INSERT INTO `games` VALUES (1455891732,'Elven Legacy Collection',0,0,0,0,0,'82f64f3f45fbccfa805aa50306b964ffcdb662602c3b8980d9ad2a73e53ffbac','308980f68ba5ada10d814e5e82cf3699a2745df5de663ec7eb383511ece1ba30','elven_legacy_collection','elven_legacy_collection','https://www.gog.com/game/elven_legacy_collection',0,'1C: Ino-Co','1C Publishing','Strategy',0,0,0),(1455998221,'MachiaVillain',0,0,0,0,0,'e5ac2d6b0d6023bc85070d3fe64557ace4f91177e05109d0d71a76659ed44cb3','d4840bcbb5b42e2302176412508971b11ade7c9343982df01e5b5c35eadf630a','machiavillain','machiavillain','https://www.gog.com/game/machiavillain',0,'Wild Factor','Good Shepherd Entertainment ','Simulation',0,0,0),(1456141287,'Shantae and the Pirate\'s Curse',0,0,0,0,0,'646dc0d893924086747e4498835f0f30f1c10576fecd2d38262396ea65762cbb','9cd444a77ca5ad69f9f4d5e5d40a82835ddbedb7280c3443536ab36e904380ee','shantae_and_the_pirates_curse','shantae_and_the_pirates_curse','https://www.gog.com/game/shantae_and_the_pirates_curse',0,'Wayforward Technologies','Wayforward Technologies','Action',0,0,0),(1456141688,'SUPERHOT',0,0,0,0,0,'e6cb71addbd92ab38421789cdabecd50b7b59f264b346acad024c2d8698a4d28','33973fbe904a70f4a6c216d28d59fc4e7565c8d8844b876fe755b81f07ea1aa6','superhot','superhot','https://www.gog.com/game/superhot',0,'SUPERHOT Team','SUPERHOT Team','Shooter',0,0,0),(1456487183,'Undertale',0,0,0,0,0,'1c53ba37fb09f2ef0484fa28e833ca0f1e15cfc24abf55a59bfac36faaee1874','3c6487ab40858ed088f0394c12a65d3c12ab91140a548a4c0dcf3524692fbd53','undertale','undertale','https://www.gog.com/game/undertale',0,'Toby Fox','Toby Fox','Role-playing',0,0,0),(1456702644,'Cultist Simulator',0,0,0,0,0,'2dc6528fe35d5d537f4e6e2643359c7c2507c68a212f0c60f903dc1894493e90','c7b6d58d230433bb8740f7fad7e5011012c0953c92239731d83fe2627e3caecd','cultist_simulator','cultist_simulator','https://www.gog.com/game/cultist_simulator',0,'Weather Factory','Weather Factory','Adventure',0,0,0),(1456754427,'Lethis - Path of Progress',0,0,0,0,0,'72d4f3194e8925109006b7048b96286ff5495be17f945c6d0b93114daef9dda6','9acad65444f146359ddf3f2007180db3dce7cf6abf9835948f39070f0efe0a3a','lethis_path_of_progress','lethis_path_of_progress','https://www.gog.com/game/lethis_path_of_progress',0,'Triskell Interactice','Triskell Interactive','Strategy',0,0,0),(1456837030,'Interactive Adventures of Dog Mendonça and Pizzaboy®, The',0,0,0,0,0,'c384ceddb2c4345eef2d1e8dbf9558c82bdc5ce4cd7309d70d5046e80b815532','ebf0cc2f821d4027d0eaf5aab8625a43a82a6a631295817c9c59aadeb30b4f90','the_interactive_adventures_of_dog_mendonca_and_pizzaboy','the_interactive_adventures_of_dog_mendonca_and_pizzaboy','https://www.gog.com/game/the_interactive_adventures_of_dog_mendonca_and_pizzaboy',0,'OKAM Studio','Ravenscourt','Adventure',0,0,0),(1456912569,'Enter the Gungeon',0,0,0,0,0,'e57d5c1d31fc4c1b89f8de4c440d6688eca7107d17c71d46f33ee9a991caeb62','b7d83406fd545f7636c010f47f7e4018bf7b215bdbe50f7b540b059357a0ba4b','enter_the_gungeon','enter_the_gungeon','https://www.gog.com/game/enter_the_gungeon',0,'Dodge Roll','Devolver Digital','Shooter',0,0,0),(1456922969,'Day of the Tentacle Remastered',0,0,0,0,0,'43a2a0623cd34a36b85b6c17ade499bfdd69481324c41dda0444ef8e46652b49','5f6bbebc1c2891a3aab165322bd015bdc3539434f862b9268ce04de6ca19955c','day_of_the_tentacle_remastered','day_of_the_tentacle_remastered','https://www.gog.com/game/day_of_the_tentacle_remastered',0,'Double Fine Productions','Double Fine Productions','Adventure',0,0,0),(1457085654,'J.U.L.I.A. Among the Stars',0,0,0,0,0,'ddb9e4f9ea4ba708272952f07b05c9683a2389799b1567e520048121d3b65ea5','565c859dadb806b5698557cac4681ae4efd421abf87c08ff756aff5910907dcf','julia_among_the_stars','julia_among_the_stars','https://www.gog.com/game/julia_among_the_stars',0,'CBE Software','CBE Software','Adventure',0,0,0);
INSERT INTO `games` VALUES (1457348075,'Industry Giant 2',0,0,0,0,0,'7b781e842b584d514b967f4bc08383877371e1a3c5a4fa9c18c4b8d89765f3e6','41d54469cbb0d2aec31af9801d96ec98def0537fd04e638c9d1a7bcaa3c85243','industry_giant_2','industry_giant_2','https://www.gog.com/game/industry_giant_2',0,'Fancy Bytes, Reactor','United Independent Entertainment GmbH','Strategy',0,0,0),(1457355665,'The Last Door: Season 2 Collector\'s Edition',0,0,0,0,0,'dd777f95f49c825f8e6414f9766405fcd0625380c82c57089c0b54e76be0d256','7686dfea968dd4a3f91cef509d7b0d9f259285675b88ca92f8a5b1cf03663fe3','last_door_season_2_collectors_edition_the','last_door_season_2_collectors_edition_the','https://www.gog.com/game/last_door_season_2_collectors_edition_the',0,'Game Kitchen','Phoenix Online Studios','Adventure',0,0,0),(1457427157,'Lumo',0,0,0,0,0,'d9b6bda72a1573fb4d1023894b3e3aac72cb11b758cdf50ac29b75164cedb49d','8d03f756bbf83adc38e8c5791ff3f00024f9c61e178ed7f3372c925d4eed88c3','lumo','lumo','https://www.gog.com/game/lumo',0,'Triple Eh?','Rising Star Games','Adventure',0,0,0),(1457453536,'DEADBOLT',0,0,0,0,0,'3523a668385cc1e9ef1a58d2d9dd7bde246f623688db3897a3e13f1841f15f95','2d9c0638141d6d424e0bc8690a48cabf3dc7b7c7ab6418baa43f74e6329a67c2','deadbolt','deadbolt','https://www.gog.com/game/deadbolt',0,'Hopoo Games','Hopoo Games','Action',0,0,0),(1457519353,'Oxenfree',0,0,0,0,0,'321b7922b42e5c88f91b34dbf09d09eedd455bfc3380872d438aff5913a3eb1e','5bea600d349bd45e7ec93ae7f88a171f1d8eaf043146b72d0df7f0cdf0493556','oxenfree','oxenfree','https://www.gog.com/game/oxenfree',0,'Night School Studios','Night School Studios','Adventure',0,0,0),(1457531523,'Block\'hood',0,0,0,0,0,'306a42f232d2826dee6b595458aaf88505fb2f9dd6bdff99ed1a31668f912b9d','60c9340d896afaa4da6d4941e7ee3cbd5b037e7e4a7fc8440ff3694893ce3628','blockhood','blockhood','https://www.gog.com/game/blockhood',0,'Plethora-Project LLC','Devolver Digital','Strategy',0,0,0),(1457539226,'Stories: The Path of Destinies',0,0,0,0,0,'f009e32ddd29c29bf8ff44622d26a59b4cb4ad3e328411b04df605c267c583bb','0e6032ab8389f97ae8161f71c1fff5f6ab68a8c543f36a3d6d9b961b09185caf','stories_the_path_of_destinies','stories_the_path_of_destinies','https://www.gog.com/game/stories_the_path_of_destinies',0,'Spearhead Games','Spearhead Games','Action',0,0,0),(1457610504,'Shadwen',0,0,0,0,0,'ad1ebe50fb0bdf5b0402fca26dd9048aa8c7e14c0e65d1b87773f1c652897691','cb1d4fc74fffcb9c24180481ad9b9658a413ebc858ad76f270699a3a87ac592d','shadwen','shadwen','https://www.gog.com/game/shadwen',0,'Frozenbyte','Frozenbyte','Action',0,0,0),(1457696008,'Obscuritas',0,0,0,0,0,'7d1b9c1cd9312ae40af876c028f2d0f599286c69d7a8f16b3bb30405b4539b22','e1163b4e192f05e0641ae88c26fdb3cdf760892d3075d6ee614e7699da70b975','obscuritas','obscuritas','https://www.gog.com/game/obscuritas',0,'VIS Games','Ravenscourt','Adventure',0,0,0),(1457696959,'Kim',0,0,0,0,0,'467e27b3e455c983693346f5140b29cecc656730335f72344a0fc7d3c724e20e','93130eaedff84c01450739a356693e76084eada8b16f3321f7706adeb746e821','kim','kim','https://www.gog.com/game/kim',0,'The Secret Games Company','The Secret Games Company','Adventure',0,0,0),(1457950224,'Evil Islands',0,0,0,0,0,'9ffbc8bcc8408292ce43a3f8b4f6792b80e565eea784867924f1174026df060e','bc36ab611ed17fd57e90eb1a5401a6e703cefae55778743e6327416daf445320','evil_islands','evil_islands','https://www.gog.com/game/evil_islands',0,'Nival Interactive ','Nival Interactive','Role-playing',0,0,0),(1458053826,'Slain: Back From Hell',0,0,0,0,0,'7e6e18a3faf8275d872bd03c6e5f266c47a713a34948a84eaa3948be10f4bfed','3330e0ff39872e75d8f57aad20c9625de9ca47a065ae07790a1838f37216e7ee','slain','slain','https://www.gog.com/game/slain',0,'Andrew Gilmour','Digerati','Action',0,0,0),(1458056008,'Subterrain',0,0,0,0,0,'b79bc751755cd44ccd8d4c93c40acb83885490e9278954d50bd776ed7d5380e4','b2f229b960f6410ae4b3545631ae71242f56dcbfd3d67efaef3deb2e34e47bfc','subterrain','subterrain','https://www.gog.com/game/subterrain',0,'Pixellore','Pixellore','Shooter',0,0,0);
INSERT INTO `games` VALUES (1458058109,'Elder Scrolls IV: Oblivion - Game of the Year Edition Deluxe, The',0,0,0,0,0,'5f4b39bb1c2e8718c3558d0ff3c159be194103f6dfbb3b1a13e378a5fb05b8e2','c2fe3c80a47810df98cca7a8dbf467d2f8fec1678da83a42ff43d233f396beea','elder_scrolls_iv_oblivion_game_of_the_year_edition_deluxe_the_game','elder_scrolls_iv_oblivion_game_of_the_year_edition_deluxe_the_game','https://www.gog.com/game/elder_scrolls_iv_oblivion_game_of_the_year_edition_deluxe_the',0,'Bethesda Softworks LLC','Bethesda Softworks LLC','Role-playing',0,0,0),(1458127099,'Jotun: Valhalla Edition',0,0,0,0,0,'be1a43f13afc0eee86d75ffb822b412b3540b757b28243c2a5389cb0cbedadd0','e6e4d4639793f9cc04201671cba69ca831c72194d348bfff05612d3fc0448aba','jotun','jotun','https://www.gog.com/game/jotun',0,'Thunder Lotus Games','Thunder Lotus Games','Role-playing',0,0,0),(1458655673,'Wolcen: Lords of Mayhem',1,0,0,0,0,'70e60ddd0966a5c10eb10981a6bff4d8860e8c989922649b4ef1a7059545de0f','b7e86ae568e979ed01e743203336d5207afb2c963af95da78c87df091a1dae84','wolcen_lords_of_mayhem','wolcen_lords_of_mayhem','https://www.gog.com/game/wolcen_lords_of_mayhem',0,'Wolcen Studio','Wolcen Studio','Action',0,0,0),(1458729425,'SKYHILL',0,0,0,0,0,'2f4d2daa2268041765af9c83fe853fc3bca26650eb969d0bfaa5559a564d5d8c','5c4c25cf00ef77d880f731a05c1326a10613b29d1b7065ef4d31f7a2b7199bcd','skyhill','skyhill','https://www.gog.com/game/skyhill',0,'Mandragora','Daedalic Entertainment','Action',0,0,0),(1458826738,'Deadly Tower of Monsters, The',0,0,0,0,0,'e5dde2b3db8c580e16a6a90d2de9c5a39693a8a071686db2d409c40783812f1e','8c72bcb676f1fa61181591a13fab2e22fb942055aaa0bcc43c0040db3c5537b8','the_deadly_tower_of_monsters','the_deadly_tower_of_monsters','https://www.gog.com/game/the_deadly_tower_of_monsters',0,'Ace Team','ATLUS','Action',0,0,0),(1459073823,'Project Warlock',0,0,0,0,0,'965a0b6f744516f82364b60ac9e6495608033bb326d1025f5114f10f538e0830','8d4aa9276ad1fe2bb140dcac1e2ae362ae641fa3fcfee1bf3c1b97ddf0aaad24','project_warlock','project_warlock','https://www.gog.com/game/project_warlock',0,'Buckshot Software','gaming company','Shooter',0,0,0),(1459256379,'Firewatch',0,0,0,0,0,'ea5dfc6d442698e70d3a5a0bf65ea17eb2703c4d727aa09f8b20f07bbc227b48','8fe192c5224b60d53cc0fb1cd756088344d5f599b8665dffce6152b28c09e8b7','firewatch','firewatch','https://www.gog.com/game/firewatch',0,'Campo Santo','Campo Santo','Adventure',0,0,0),(1459259227,'Slime Rancher',0,0,0,0,0,'7b379c67f964c72ce151226fbc3d5a5dcabfde89575a338996b0da82b19c0a78','97a7c909dd48568c26529d6113c64f3d500a01e9fff9034b2f02efe98ec98f1c','slime_rancher','slime_rancher','https://www.gog.com/game/slime_rancher',0,'Monomi Park','Monomi Park','Action',0,0,0),(1459422114,'8-bit Armies',0,0,0,0,0,'4600515eac281a4b492a7174883518ca390cc922655d56421d9daa037ffdbe0f','362a65a449c49989ea883c5e4fab04f853c745887cd0694b465c4f30695b6b20','8bit_armies','8bit_armies','https://www.gog.com/game/8bit_armies',0,'Petroglyph Games','Petroglyph Games','Strategy',0,0,0),(1459441475,'1979 Revolution: Black Friday',0,0,0,0,0,'c5cefc4ac8edca9cd0bc20bb1786e20d36e7537a7646d40de24ae4b739ae460b','ec04b018f1c1b8d3594e026564a75fc583016b2e25309586934332a106294c34','revolution_1979_black_friday','revolution_1979_black_friday','https://www.gog.com/game/revolution_1979_black_friday',0,'iNK Stories','iNK Stories','Adventure',0,0,0),(1459790972,'Hard Reset Redux',0,0,0,0,0,'77d6fa785e54001b38a8a091b4c8821a78cbf14bb5f4ef575685a885b339ec87','8129d00e08e1fc2926d6794fcbadd1f1ec1a6f910e69155c3829b85ca350b21f','hard_reset_redux','hard_reset_redux','https://www.gog.com/game/hard_reset_redux',0,'Flying Wild Hog','Good Shepherd Entertainment ','Action',0,0,0),(1459856053,'Rage of Mages',0,0,0,0,0,'8b8608628459247366410e3e937baf51cf868a7a60c54b360205101bbbbf8570','c6c801c7c1246ed34fee583d2f208d15a8369012496e48245e45061e9cc22220','rage_of_mages','rage_of_mages','https://www.gog.com/game/rage_of_mages',0,'Nival Interactive ','Nival Interactive','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1459856152,'Rage of Mages II: Necromancer',0,0,0,0,0,'a7ccf43eb581c1aa299a0006742be5225c7e31e80be645c5462022396cd9b605','1f7b4359f815fe99163d8609af06e241c2bcc88243dec81335661c22b9d92538','rage_of_mages_ii_necromancer','rage_of_mages_ii_necromancer','https://www.gog.com/game/rage_of_mages_ii_necromancer',0,'Nival Interactive ','Nival Interactive','Role-playing',0,0,0),(1459868439,'Democracy 3: Africa',0,0,0,0,0,'33e3e0f264fab0c1abe19ef5988c8e042339b8b75f772b7aaa20e851cf01e705','e04a0a21c8aedf54e41db62eeda963ff78913ccf5a12cae34d9d443ced869ba7','democracy_3_africa','democracy_3_africa','https://www.gog.com/game/democracy_3_africa',0,'Positech Games','Positech Games','Strategy',0,0,0),(1460032883,'TimeShift™',0,0,0,0,0,'36f7b00d6a011529b535a28e48df3dcc8380bd8bc83a0b69f4493255a813de67','ebc28af16c6b2e0e8011d32c479ca0fe3bf269a31097816aa3c3cf0df3279bc2','timeshift','timeshift','https://www.gog.com/game/timeshift',0,'Saber Interactive','Activision','Shooter',0,0,0),(1460036036,'GUN™',0,0,0,0,0,'f6d11c0326457630210bd5d760d97b4efbcf3e4e062d0e05b5b446d1225771fb','887759776e9b237d002f3c5d77e4c6402d203597a4ab9172c8031a6d99a9a37e','gun','gun','https://www.gog.com/game/gun',0,'Neversoft','Activision','Action',0,0,0),(1460037487,'Caesar™ IV',0,0,0,0,0,'9adeedb6473562719b594797d8ccb19e3fa50aaaadbbcfcba75f732a0421b3bf','78154904b4670fbf182d375411623377f7c68e7f15cca8ff05500db5a327c5e7','caesar_iv','caesar_iv','https://www.gog.com/game/caesar_iv',0,'Tilted Mill Entertainment','Activision','Strategy',0,0,0),(1460101597,'Gnomoria',0,0,0,0,0,'9c1c587d78515bdf1af183dc9e409e8d5722b26caab0efa4a52468d12f416951','c51e92a4bed08aa69d7a6b2337e73ca96e03c88195dff035b2ef0930ccb0e5dc','gnomoria','gnomoria','https://www.gog.com/game/gnomoria',0,'Robotronic Games','Robotronic Games','Strategy',0,0,0),(1460628458,'P·O·L·L·E·N',0,0,0,0,0,'4713de5ceafe8bd637c6d34d0692f3abdf23734b58ae1736b64a44e95849d22a','e257751b9ff59e3f0227ac0b7a8fdd459b952be23ff3d358e5f9f9f2f5bb4641','pollen','pollen','https://www.gog.com/game/pollen',0,'Mindfield Games','Mindfield Games','Adventure',0,0,0),(1460710709,'Kathy Rain',0,0,0,0,0,'27935bddb2e2315f7395a67d3961287c36ee67e6fddea9d43e98ae5ba8546d39','32fba9f9c1a71ce9ff219d63d05a69d28a3727f3d62f45f0c288f463b264e139','kathy_rain','kathy_rain','https://www.gog.com/game/kathy_rain',0,'Clifftop Games','Raw Fury','Adventure',0,0,0),(1460712231,'Corpse Party',0,0,0,0,0,'a04347d21c5dc8787002de8e27280b060f6d90a9c0e00ad01ba4087da5a3510a','25dcc1f9d39145b9ea7266d9585893202579b24934b08392fd4fa31e8c9acdaa','corpse_party','corpse_party','https://www.gog.com/game/corpse_party',0,'Team GrisGris','XSEED Games','Role-playing',0,0,0),(1460731213,'Sherlock Holmes: The Awakened - Remastered',0,0,0,0,0,'83af95950d7ca5d072954f22c3659f4653d13faf91b556a8ce9b7c8efa02fc18','318f611135ccab8b9670fa3ab35a4ad4e277a8e1eb9620b43ec9f018f33afa09','sherlock_holmes_the_awakened_remastered','sherlock_holmes_the_awakened_remastered','https://www.gog.com/game/sherlock_holmes_the_awakened_remastered',0,'Frogwares','Frogwares','Adventure',0,0,0),(1460731430,'The Testament of Sherlock Holmes',0,0,0,0,0,'341f707740eb4f61a7d8333280cd8edc293d388f68642e635660690c945869d9','ac088d0f2f91a0032859e88e561149f4c38cccd9437a650b27a8aef88da646d0','testament_of_sherlock_holmes_the','testament_of_sherlock_holmes_the','https://www.gog.com/game/testament_of_sherlock_holmes_the',0,'Frogwares','Frogwares','Adventure',0,0,0),(1460731635,'Sherlock Holmes versus Jack the Ripper',0,0,0,0,0,'ce2c327c3c6a13b64e68e5e63adebbb108d04a6782ebd2a9583cbc45cdd84208','e33ff8b84303b9b6223e5ed0ef36da52c14c1da7a30c554c6599fada37ac7474','sherlock_holmes_versus_jack_the_ripper','sherlock_holmes_versus_jack_the_ripper','https://www.gog.com/game/sherlock_holmes_versus_jack_the_ripper',0,'Frogwares','Frogwares','Adventure',0,0,0);
INSERT INTO `games` VALUES (1460731832,'Sherlock Holmes: Nemesis - Remastered',0,0,0,0,0,'52d6bb48274497ec65480299e976841513b9d62d6fca670bce13db629dd05a9c','44aa586b8cf646f899ab27987a0ebd78c872be5942e6c89271e3af7e2a6911d3','sherlock_holmes_nemesis_remastered','sherlock_holmes_nemesis_remastered','https://www.gog.com/game/sherlock_holmes_nemesis_remastered',0,'Frogwares','Frogwares','Adventure',0,0,0),(1460733072,'Little King\'s Story',0,0,0,0,0,'8ec1af8e084ffbacbc27a2aa94a37fb23c7f271fafaab082f14daf9e49ce76d3','cb2b872b323b753836ecf948d0872c86ed33301622eca315b1c2543371684390','little_kings_story','little_kings_story','https://www.gog.com/game/little_kings_story',0,'Marvelous Inc.','XSEED Games','Strategy',0,0,0),(1460734409,'BIT.TRIP Runner',0,0,0,0,0,'17341bc88c4aa6c1d34f42aa4c215ec21bb89905d8efd0dbb257e65b5a06d67b','0d5f274f6950cd91ce9bca7910f9f32142c2fd5fc43f9f2c0815185fcadda3c8','bittrip_runner','bittrip_runner','https://www.gog.com/game/bittrip_runner',0,'Choice Provisions','Choice Provisions','Action',0,0,0),(1460734831,'BIT.TRIP Presents... Runner2: Future Legend of Rhythm Alien',0,0,0,0,0,'1547cc45bca9538f1817fc5378b7d200c04d865392983e2fca3ae91766582b78','a8ed3d3719b165c899fb9c67f0fa8cb9cd65b427b364341467e063ecb3ad8517','bittrip_presents_runner2_future_legend_of_rhythm_alien','bittrip_presents_runner2_future_legend_of_rhythm_alien','https://www.gog.com/game/bittrip_presents_runner2_future_legend_of_rhythm_alien',0,'Choice Provisions','Choice Provisions','Action',0,0,0),(1460735408,'BIT.TRIP BEAT',0,0,0,0,0,'912249f1834c646585734c4b6e8316f0b6089d81633ecf7d3aa66d35725baf4d','797a346c232dccfd6ee6fdca534d7cb0d875941085da40f7c0560d8a9bb23817','bittrip_beat','bittrip_beat','https://www.gog.com/game/bittrip_beat',0,'Choice Provisions','Choice Provisions','Action',0,0,0),(1460735677,'BIT.TRIP CORE',0,0,0,0,0,'baa49ec51fb7f8d773fa0df8de2f5638291a106d5aec19ccd9b78a09d406cc75','c8397d1554b2eb3d318174eb9f7740b70d0dbdfbaf56e95e6798a57063167369','bittrip_core','bittrip_core','https://www.gog.com/game/bittrip_core',0,'Choice Provisions','Choice Provisions','Action',0,0,0),(1460735908,'BIT.TRIP VOID',0,0,0,0,0,'67215bdc6274519849beca7fe8c4e0f9f7e8bdba1725913056109474f77df41d','e8d2c8ac3fa30c5f65c80a6cc082773f1b5e944ad7daa74d2d95529dac16d716','bittrip_void','bittrip_void','https://www.gog.com/game/bittrip_void',0,'Choice Provisions','Choice Provisions','Action',0,0,0),(1460737449,'BIT.TRIP FATE',0,0,0,0,0,'ea3be82d84330abaf8b8ac2aba1cf45417f90776d6168bdc5ec5ebcaae42af29','dd6db0c89442f7727565fc583dcf5266511492f31cd438187484c9651b1d9927','bittrip_fate','bittrip_fate','https://www.gog.com/game/bittrip_fate',0,'Choice Provisions','Choice Provisions','Action',0,0,0),(1460737726,'BIT.TRIP FLUX',0,0,0,0,0,'4d12b216fd29743bbf0ae64a6b69d3d36602ba1f55d8253bb0762b69850ce310','421deb569894b4a4e04afb6a0bca4de5b67a56ac7c701a00b2fd2bdd81db71ee','bittrip_flux','bittrip_flux','https://www.gog.com/game/bittrip_flux',0,'Choice Provisions','Choice Provisions','Action',0,0,0),(1460948999,'Dreambreak',0,0,0,0,0,'121a945a99e8d5f3099e0217dd1365e76001b1fa54a95480aeca164884ee6789','862f7ed70b7f46c3615dd27f460b56e5f3c2693f3d1ef3f2f7aa68c5d93de8d5','dreambreak','dreambreak','https://www.gog.com/game/dreambreak',0,'Aist','Beatshapers / Digerati','Adventure',0,0,0),(1461060839,'The Witness',0,0,0,0,0,'1b3bfd1936a1ffb897068ad07a2b3ecfc85346abaff701d78dc1a35419bcfa3a','c36e92dc661f37d09f6d02188a082b792dfb61bc988180f204c06bac41c7f03f','the_witness','the_witness','https://www.gog.com/game/the_witness',0,'Number None','Number None','Adventure',0,0,0),(1461061433,'Braid',0,0,0,0,0,'98c3efa64b9ce51d165e8d4514e6eccfb7596ff376310ab71c396771e157e92a','1f11cd6eaa1c70a9fb66a7464dc7ac9d141a4d0a5d97632be95f5999c2ec9542','braid','braid','https://www.gog.com/game/braid',0,'Number None','Number None','Action',0,0,0);
INSERT INTO `games` VALUES (1462173886,'Worms: Armageddon',0,0,0,0,0,'45fb3610e3d518207f80971895a77c3d94563770ffea3eaaeb1b96db902ace22','4a82a6fc209d86b80921822d3f099fa31db97a11665148d30c46285a12a3c57c','worms_armageddon','worms_armageddon','https://www.gog.com/game/worms_armageddon',0,'Team17 Digital Ltd.','Team17 Digital LTD.','Strategy',0,0,0),(1462576795,'Raiden V: Director’s Cut',0,0,0,0,0,'a6a5840426b104f7518dda86122e52cd2d975c11cf7273bb6008dc1e67305d06','b1770e1c9b503e6ab5e09dde6ded7944cbfac3b09d3c3470037259ce038bf0c1','raiden_v_directors_cut','raiden_v_directors_cut','https://www.gog.com/game/raiden_v_directors_cut',0,'Moss Co., Ltd. ','UFO Interactive Games','Action',0,0,0),(1466230825,'Urban Empire',0,0,0,0,0,'db9453d3d5f58c7197b05def7d1bdfddd09ca5132816709fa69c64a2799d2449','dbf32d16bdd3eaff4652a413985d1bf1400bebe14092e1cd283ade17f73fff68','urban_empire_game','urban_empire_game','https://www.gog.com/game/urban_empire',0,'Reborn Interactive','Kalypso Media Digital','Strategy',0,0,0),(1466287699,'de Blob',0,0,0,0,0,'13c9c6b52c508b73ed2c482bed7e0b4bb0298a5dd83789c1289937bd56699657','f641b557bc822900fff1bd848a8dc0e3d5090390f6826abd666daeedf99cbe8f','de_blob','de_blob','https://www.gog.com/game/de_blob',0,'Blue Tongue Entertainment, Blitworks','THQ Nordic GmbH','Action',0,0,0),(1467789790,'Mainlining',0,0,0,0,0,'7795ed0e5de2e5dea1ebf5af49e1ef8c11d7bba6814d6a7377ee09d554357263','880592da8740eaed653d4e9af53569dae980c227281d63fd1a7b782202879ccf','mainlining','mainlining','https://www.gog.com/game/mainlining',0,'Rebelephant','Merge Games','Simulation',0,0,0),(1468566011,'Field of Glory II',0,0,0,0,0,'e842e40019399fcc0952947a30e8561681d72a5a9c4ecf4d7beca2ec9000f65b','38af18d3eb480b4b6edb48fb03f248ec5400d6d47e4884c1ff6b69a8dafa7466','field_of_glory_ii','field_of_glory_ii','https://www.gog.com/game/field_of_glory_ii',0,'Byzantine Games','Slitherine Ltd.','Strategy',0,0,0),(1469088725,'The House in Fata Morgana',0,0,0,0,0,'9a41c33ab00ec91a54da12a3e8e851c0320080e871a56bada6929523c796b2c7','2085e1f02b169d47f310dac72fbb1f176dfab50998ee0fc1310fdf71817b3fd6','the_house_in_fata_morgana','the_house_in_fata_morgana','https://www.gog.com/game/the_house_in_fata_morgana',0,'Novectacle','MangaGamer','Adventure',0,0,0),(1469336312,'Caesar',0,0,0,0,0,'f7789e6e94f03b242a85a7d5c778cfb991bfff7ad34ff73b1407db63704ae481','f1ce21545de98706472b5e48440fa34f3fe40309c92cf665509982c0f378b03e','caesar','caesar','https://www.gog.com/game/caesar',0,'Impressions Games','Activision','Strategy',0,0,0),(1469845437,'Mage\'s Initiation: Reign of the Elements',0,0,0,0,0,'d0c2e0805f91692843da8f9bfdefc2fdabbb8f6541c036400f94e972c5858b63','9ca6d6560e8685b17a815e1ea23bfa59461270a2ea0c4431203727fc7354444a','mages_initiation_reign_of_the_elements','mages_initiation_reign_of_the_elements','https://www.gog.com/game/mages_initiation_reign_of_the_elements',0,'Himalaya Studios','Himalaya Studios','Adventure',0,0,0),(1470490225,'Broforce',0,0,0,0,0,'96acffe3dce6891efcc844d2dd0cfa6a4c0b94925363989d12218520bc1dbbc6','fda1405bbf8471fda2f2f0e8b550524d24667da7ee39e03a0336cd6fcd3fea85','broforce','broforce','https://www.gog.com/game/broforce',0,'Free Lives','Devolver Digital','Action',0,0,0),(1470768488,'Exanima',1,0,0,0,0,'2fd8783e97f806bf3746cf4d6e2f46928c366f93368785e8ed7e1cfe3be77a8a','c1083dfb9b9e8566f9d809968c733f062df25347ce0cedb1a1e853fa1340f9cd','exanima','exanima','https://www.gog.com/game/exanima',0,'Bare Mettle Entertainment','Bare Mettle Entertainment','Role-playing',0,0,0),(1471405734,'Sid Meier\'s Civilization® III Complete',0,0,0,0,0,'65ca82dd9ec2282c864330530a3dfdf777f07759783ecddf9ed31e4560d11a2f','554bbfb62aa5ebd92db7f388d2c94a0c1dc0b0db1873529cb8dbbd91f6fdad89','sid_meiers_civilization_iii_complete','sid_meiers_civilization_iii_complete','https://www.gog.com/game/sid_meiers_civilization_iii_complete',0,'Firaxis Games','2K Games','Strategy',0,0,0);
INSERT INTO `games` VALUES (1471706990,'Schizm: Mysterious Journey',0,0,0,0,0,'aad85f97ed69ab6622fdf3649da8026c66b21ac76dbd326d6c388218e3aa8869','9091f95aedc452e744ea1dadd69793c11a4eb36f7a201d2f1c1abdcd42bd2880','schizm','schizm','https://www.gog.com/game/schizm',0,'Detalion','L.K. Avalon','Adventure',0,0,0),(1472214470,'Astrox Imperium',1,0,0,0,0,'290041cb56668237d03ef54216ce72b1cfee296bd914b1925d0a839319fe1656','95f789d43be0841d6e96f3f574c87c7ff05e26545c2d19e6f51684f87f39a343','astrox_imperium','astrox_imperium','https://www.gog.com/game/astrox_imperium',0,'Jace Masula','Jace Masula','Simulation',0,0,0),(1473737130,'Kingdom: New Lands',0,0,0,0,0,'5b8a92a56d4b79c9837acd6bf45589863453f79d56f317b562b42f9550874ea2','ac0cc76866274dcd8bc38bfe8fa5b5a029ec0f9e33aefd7bf9143a95b7b9a8c6','kingdom_new_lands','kingdom_new_lands','https://www.gog.com/game/kingdom_new_lands',0,'Noio','Raw Fury','Strategy',0,0,0),(1473980794,'Regions Of Ruin',0,0,0,0,0,'85985f07c83a76601cc93f2e82a7961229ad06ded8d35dd20436d1bd559a71d3','eacc735e43786bcbb17e576f58bf52f7ef819d95a93037f7b98b0676cffcdf1b','regions_of_ruin','regions_of_ruin','https://www.gog.com/game/regions_of_ruin',0,'Vox Games','Poysky Productions','Role-playing',0,0,0),(1475147927,'Milanoir',0,0,0,0,0,'90a7a6a59f410528ab22685fb5aad9d82b76fdbccb72461a664b517828f09136','21445036723c4b3bba09b88b28fc0f219504964d479a1e1238933b3c4396a0be','milanoir','milanoir','https://www.gog.com/game/milanoir',0,'Italo Games','Good Shepherd Entertainment ','Action',0,0,0),(1476323769,'Star Vikings Forever',0,0,0,0,0,'651b76c348d5a66439313d53c46d943b5a4beec7491a60e6400727a809ed42f7','d46618728f937807e0af1089c9b9cf63ea6b25976599b97117a6b04641c3f3a0','star_vikings_forever','star_vikings_forever','https://www.gog.com/game/star_vikings_forever',0,'Rogue Snail','Akupara Games','Strategy',0,0,0),(1476356259,'On Rusty Trails',0,0,0,0,0,'07300cb4448907827b3ec858493e1d11a7f050a13620269befde09b9321603e3','1e1d6a9ab6b5563f9bbdb545a9191fbac2e7043736bf7b1a6fdc9a66df618c15','on_rusty_trails','on_rusty_trails','https://www.gog.com/game/on_rusty_trails',0,'Black Pants Studio','Black Pants Studio','Action',0,0,0),(1479326226,'Re-Legion',0,0,0,0,0,'0a441ac2568dc0e66d2bfe8415dd895f4b0b6732951827586dd71c44b6a11f8b','b71e1a4f347e9124b53fc3bad2ce7fb850c47b32b6e45054fdcccde92894ce2c','relegion','relegion','https://www.gog.com/game/relegion',0,'Ice Code Games','1C Publishing','Strategy',0,0,0),(1480551779,'The Surge',0,0,0,0,0,'4f3d463d9a9e1d3416ed8313e7aded4325d0d0c26b1cbad037276248ffc7bcfa','f24f7cd009888261f7979a389d89d7ca2e29955f9d33f1d13eb35b49173dc6bd','the_surge','the_surge','https://www.gog.com/game/the_surge',0,'Deck13','Focus Home Interactive','Action',0,0,0),(1482783682,'BATTLETECH',0,0,0,0,0,'f3b9bf82794a1f12fb11c5843ee2f6f93d69dd89cf7dcc3ce7a688b972f6111e','1a071d4ced02c9153b8a9e05fef69717ac901c84b17a1b3f6854140b8eb20526','battletech_game','battletech_game','https://www.gog.com/game/battletech_game',0,'Harebrained Schemes','Paradox Interactive','Strategy',0,0,0),(1484448851,'Distrust',0,0,0,0,0,'960314181c628e51ab621dce0ae3a229915820322dcdcb280aa2528c76bf4650','092f8894ac8c4c816fe9a53ed5a2c8614fd20db2a764e2a1046fb671d4e19b75','distrust','distrust','https://www.gog.com/game/distrust',0,'Cheerdealers','Alawar Premium','Adventure',0,0,0),(1485600994,'Crime Cities',0,0,0,0,0,'9b844811b05e0dca1ca51fa89c770ac16ebb5984425bdfd5ed5700ab9f282bb7','ac709c6f01fa7bb39fca45a8d58ececd2a616344a141b9ea16f0f04ca079f9ad','crime_cities','crime_cities','https://www.gog.com/game/crime_cities',0,'Techland','Techland','Shooter',0,0,0),(1486377314,'Death\'s Gambit',0,0,0,0,0,'aeb972e90e7d4c287e877bbd8d76c2dfa0c1197c763f136b8323239d7103de16','507eac084a36e4f977401beb30d7f0b98856db044e53021e6e3f41bb711f9120','deaths_gambit','deaths_gambit','https://www.gog.com/game/deaths_gambit',0,'White Rabbit','Adult Swim','Action',0,0,0);
INSERT INTO `games` VALUES (1486529526,'Flashback™',0,0,0,0,0,'cfbb26f44012638c90b9649bda0359292cca1e04dd889b862614c232384eacfa','62b797928d09ff1a6005f79088347d15a1fed37ebda7dad3572924bd671f5cf5','flashback','flashback','https://www.gog.com/game/flashback',0,'Paul Cuisset','Anuman Interactive','Adventure',0,0,0),(1487278562,'Reassembly',0,0,0,0,0,'2fbffbd1e7366040e692c77e2f9b2ccc17dd0aebac08d92780a48dad48fdecc7','d5391beb63733b65107558a64c5f6b41778c554720d02d1b9b124e75595f76b0','reassembly','reassembly','https://www.gog.com/game/reassembly',0,'Anisoptera Games','Anisoptera Games','Simulation',0,0,0),(1487359513,'Dark Devotion',0,0,0,0,0,'103617e09cbbb1d9622b90caef9f5e02c6ffb97e82acb9b4f6766d0e1c6af995','239463bef757373418fdaf0f25d852593a33062dee49a9df78e54fa04ec69bb4','dark_devotion','dark_devotion','https://www.gog.com/game/dark_devotion',0,'Hibernian Workshop',' The Arcade Crew, Maple Whispering Co., Ltd.','Action',0,0,0),(1489253805,'NecroVisioN: Lost Company',0,0,0,0,0,'c92b3fb7b4ab474c7b0339bdfa0159c9aae53ff4f48b7d29083113d9217b0b1f','0a1b4597bb11936639e2fecfd98b6d3bb590a8e3da5c6243e14c09859369e3d4','necrovision_lost_company','necrovision_lost_company','https://www.gog.com/game/necrovision_lost_company',0,'The Farm 51','1C Publishing','Shooter',0,0,0),(1490050478,'REAL BOUT FATAL FURY 2: THE NEWCOMERS',0,0,0,0,0,'3f17fb58fcd0f402571c6c7a5b6ddc85e951bd1bbfcfa1d3c4af7a47129b0706','836485a415d3872b2a75d2375003e474c4288bb1cb89dcc5debdb2fe79ad5f00','real_bout_fatal_fury_2','real_bout_fatal_fury_2','https://www.gog.com/game/real_bout_fatal_fury_2',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(1490714826,'PLANET ALPHA',0,0,0,0,0,'79f74529b86445faf8ce1fcd751986b0f47a4da335396f255116234c2a7121f4','ac478162ffd6019d065da2571689b540e86d69d9fde77406d39665331bba10db','planet_alpha','planet_alpha','https://www.gog.com/game/planet_alpha',0,'Planet Alpha ApS','Team17 Digital LTD.','Adventure',0,0,0),(1491481233,'Delta Force: Task Force Dagger',0,0,0,0,0,'e31e52f86e3354073297e6487c2df7e1f91588a56c8a0bb15a5689989fe3f9eb','5a5e5674d5fc1a03e20e9b92e879ba59efe2726cba7b28254125348892ce7ad8','delta_force_task_force_dagger','delta_force_task_force_dagger','https://www.gog.com/game/delta_force_task_force_dagger',0,'NovaLogic Inc.','THQ Nordic GmbH','Action',0,0,0),(1491580335,'The Guest',0,0,0,0,0,'22b03970380e672e91ea1ded5a89cb7491e28e59641d21484083d14f59b3d26d','21ada052b25bb540eadce58f8ff5c1e727fc5b123ac92aaeea8d402b03038e5a','the_guest','the_guest','https://www.gog.com/game/the_guest',0,'Team Gotham','505 Games','Adventure',0,0,0),(1492171024,'We. The Revolution',0,0,0,0,0,'89945221c4dbdc36bc2eb83ced2d511f6156db3436a5046a674ea1d55485e773','4cedb7cbd7c9bd954af259e9e80e2d3c25e4dd4a76ccf36e3d322dae4bf3963d','we_the_revolution','we_the_revolution','https://www.gog.com/game/we_the_revolution',0,'Polyslash','Klabater','Strategy',0,0,0),(1492731608,'Da Capo 3 R',0,0,0,0,0,'0c0800e56808c51623067745619c95fdc11baa4f805f72c3a3f8ef3682f23420','ce6489e71ece772a3e9b2d4376f72dcfe2a3f68830ecebe404b79580c3dd31d7','da_capo_3_r','da_capo_3_r','https://www.gog.com/game/da_capo_3_r',0,'Circus','MangaGamer','Adventure',0,0,0),(1493047913,'STRAFE: Millennium Edition',0,0,0,0,0,'81f059fb4ad29c4122f130218a1e35b8620a883265bd418753dbd2fac0beaf8e','0a71663a1d6adf249e6e036783b9256f0fe70968c9873164a3fdd5884e14835f','strafe','strafe','https://www.gog.com/game/strafe',0,'Pixel Titans','Devolver Digital','Shooter',0,0,0),(1495020538,'Grim Legends 3: The Dark City',0,0,0,0,0,'005625e62576ebfafeb6a855f43a6b3fc6a5be9f65e2863ba3c49aeeade43de6','28ea80dc6b87450397a2fbf539fef5da1c895bcb110bbb48369ffbe16b4ffe49','grim_legends_3_the_dark_city','grim_legends_3_the_dark_city','https://www.gog.com/game/grim_legends_3_the_dark_city',0,'Artifex Mundi','Artifex Mundi','Adventure',0,0,0);
INSERT INTO `games` VALUES (1498045492,'Tesla vs Lovecraft',0,0,0,0,0,'fe6e329fb2670406b2d46d2bdeba18f06684da4336387029194a41a14f27bf9a','34ae1a19acdf0f54dc1637b881a5e0f59f960d7f10603cacebcccfed2387314e','tesla_vs_lovecraft','tesla_vs_lovecraft','https://www.gog.com/game/tesla_vs_lovecraft',0,'10tons','10tons','Shooter',0,0,0),(1499192955,'ADOM (Ancient Domains Of Mystery)',0,0,0,0,0,'51c6422f2b046ba0f9872b16ec935604b48de0676f83e8109f04e2b72a894bb2','188e27ccafd5fd4f612bb35062aa7be2a339e037060e46b14d07221117d09a5d','adom','adom','https://www.gog.com/game/adom',0,'Thomas Biskup, Jochen Terstiege','Thomas Biskup','Role-playing',0,0,0),(1499274528,'The First Tree',0,0,0,0,0,'f48610f676661db1cf5c05f36c1dfd4d95dad878003a0337a1b0435d771d8443','c496c913175f34c36014eb1a708495f52661e83c5bd7db9307edbf20accfee37','the_first_tree','the_first_tree','https://www.gog.com/game/the_first_tree',0,'David Wehle, LLC','David Wehle, LLC','Adventure',0,0,0),(1499957191,'Mulaka',0,0,0,0,0,'087f6875a67e064343669f9ca3cc318ed7eef3ff669f39455466bd701f0cfd83','8cbcf993bac65ce06b6cad661b75a8cbf724e0df36d79055f39adb10291efc14','mulaka','mulaka','https://www.gog.com/game/mulaka',0,'Lienzo','Lienzo','Action',0,0,0),(1500997207,'Slime-san: Superslime Edition',0,0,0,0,0,'5583d1fed1a8e88ae527669b83b65fbfb9d0e493dfbe81c8b942778ea965b3d3','0e61d206429dbba0e76ee823f49244cc3e9dc72462a7f75cb12b694b611b15e4','slimesan_superslime_edition','slimesan_superslime_edition','https://www.gog.com/game/slimesan_superslime_edition',0,'Fabraz','Headup Games','Action',0,0,0),(1502840468,'Delta Force: Black Hawk Down Platinum Pack',0,0,0,0,0,'ea21fcdc566c551ca4780e566cdcbedec753d5b9832569e0a07166336bdb7d7d','84e6678a3ba7e86f4bb2ff44c1d7ffbd5a1c19a7fc1842b63cad6749ad843acd','delta_force_black_hawk_down_platinum_pack','delta_force_black_hawk_down_platinum_pack','https://www.gog.com/game/delta_force_black_hawk_down_platinum_pack',0,'NovaLogic Inc.','THQ Nordic GmbH','Action',0,0,0),(1503191590,'Pinstripe',0,0,0,0,0,'b3c8337a61ea7e67212ff068ade0ed30081d35d1bc559d42975a7dc9e0c466b3','ec190d6250acaf7ca4447f32fd9fb93ff3e66ba03f73167be311086abdeb4eff','pinstripe','pinstripe','https://www.gog.com/game/pinstripe',0,'Atmos Games','Armor Games','Adventure',0,0,0),(1504039647,'Frozen Synapse 2',0,0,0,0,0,'b17f82bcec69488b83bd388e04b77bbcbf7de037cefad992bb845d518a2c315c','c9aa2a8f3c3a14bcfb13399d7364f0c8d0067b4a21bce701739d08e92c972e35','frozen_synapse_2','frozen_synapse_2','https://www.gog.com/game/frozen_synapse_2',0,'Mode 7','Mode 7','Strategy',0,0,0),(1507139900,'Monster Prom',0,0,0,0,0,'136218665de33cf9ec4e11c92c58f7431e9d017cc44cc21e033c2fcc3719eb14','f6bb2145807a71d0c3f93df763be369bd492996608badae10b03e12dfefdd304','monster_prom','monster_prom','https://www.gog.com/game/monster_prom',0,'Beautiful Glitch','Those Awesome Guys','Simulation',0,0,0),(1508702879,'Stellaris',0,0,0,0,0,'cc551cfcbf86b2b6ccfa4e28c4c68f3f5aaa720ea82d5e4c0f19b9062bd77d0c','df60511cf95135e3c5dbf497ab9d912147ff382c8d5c556a9e42e6de469295f1','stellaris','stellaris','https://www.gog.com/game/stellaris',0,'Paradox Development Studio','Paradox Interactive','Strategy',0,0,0),(1509324336,'AER – Memories of Old',0,0,0,0,0,'7e0d433d56c82dffa8157acc4dee5a7c8d00dda84be6ac45a6c293d28a991166','fafc29b8fc8a938e71b5285f16ef155ca4adcef58889fde8e72dcde2c0495063','aer','aer','https://www.gog.com/game/aer',0,'Forgotten Key','Daedalic Entertainment','Action',0,0,0),(1512372112,'Cold Waters',0,0,0,0,0,'5f5618e66472faa5bb86e52b37f3c7571f73b654f2b2d76126030881300c1734','7b83636070fc0dac33206ef6a580776ac9c9e8045b4b28e7f13c4784719f27c1','cold_waters','cold_waters','https://www.gog.com/game/cold_waters',0,'Killerfish Games','Killerfish Games','Simulation',0,0,0),(1513553405,'This Is the Police',0,0,0,0,0,'7b7136ab536473c03d5b4afee7eec6f312c68574c99f161a517b7bbe898913fe','b48b223094ce53b11e237d21dad4522ec6883fdfc4ac0b8ca3a467bcfa85526b','this_is_the_police','this_is_the_police','https://www.gog.com/game/this_is_the_police',0,'Weappy Studio','THQ Nordic GmbH','Strategy',0,0,0);
INSERT INTO `games` VALUES (1513949567,'EVERSPACE™',0,0,0,0,0,'e5aa16043bc1434164e51299695d6802909228943005f7c331bbe746db1845ac','cc07cb61dcd1e515b71aa0e92c14688b14dd9835f029cc57b4502733f81cd757','everspace','everspace','https://www.gog.com/game/everspace',0,'ROCKFISH Games GmbH','ROCKFISH Games GmbH','Action',0,0,0),(1514020096,'Goliath',0,0,0,0,0,'bc806071cd8ec0809b77dcca6e249f77ea82138657c4ff1594610a2c892f3222','f83007c185802a1c2cf94e35bb6816812f04a64e25908e902f0a110741e406cb','goliath','goliath','https://www.gog.com/game/goliath',0,'Whalebox','Octopus Tree','Action',0,0,0),(1516146567,'Conquests of Camelot: The Search for the Grail',0,0,0,0,0,'da9be27e5eec8a29825462cc169feb8cdebf5f76ff4afc6a1b80ac1a1c365caa','92f1089cedc8cd682216e5622fa7fe8ba314b118b448366ce62bca7c13eb848a','conquests_of_camelot','conquests_of_camelot','https://www.gog.com/game/conquests_of_camelot',0,'Sierra','Activision','Role-playing',0,0,0),(1516759579,'Close Combat: Last Stand Arnhem',0,0,0,0,0,'85c25144883bf386bb4524a194d81ebf647389a029335c7f1ec3c5c087dbaf91','767809f38fcfeb1a389c4c4b52381373b95fa4556da70b6ddfb3f00682ea1fb5','close_combat_last_stand_arnhem','close_combat_last_stand_arnhem','https://www.gog.com/game/close_combat_last_stand_arnhem',0,'Black Hand Studio','Slitherine Ltd.','Strategy',0,0,0),(1517967052,'Ape Out',0,0,0,0,0,'99279c6824aa0ab746fb594e83f41fba2fd1888317fb546d3a3ded02bebe1aca','54c2ad781525646618cab05f698ce84c8c5c8b51f56b39a3133582fdcab46403','ape_out','ape_out','https://www.gog.com/game/ape_out',0,'Gabe Cuzillo','Devolver Digital','Action',0,0,0),(1519221611,'Kingdom Rush Origins',0,0,0,0,0,'8fc17957eeb3c7dbe2d7bae906e79bf78eb06801952045f550c3dff4907fb6db','00c514ef89535074c34c7287fcf6c57acee9313eddd1630a4fec9f6e3f57596b','kingdom_rush_origins','kingdom_rush_origins','https://www.gog.com/game/kingdom_rush_origins',0,'Ironhide Game Studio','Ironhide Game Studio','Strategy',0,0,0),(1519364619,'Maize',0,0,0,0,0,'e8112e39067244b554346c7c57b8d4244007e6261c97c1d252c77f68fff80e28','2a99fa4a95c02a2dcbc364f13862ecba3dd45376deb1842f9e2e8b47f47b4ac8','maize','maize','https://www.gog.com/game/maize',0,'Finish Line Games','Finish Line Games','Adventure',0,0,0),(1520387024,'The Mystery of the Druids',0,0,0,0,0,'ef6a5658c4e6e1005d55439e5d1753a733ba9203670b727fddb218ed5f6608af','6da289190b56a6a9ae5c7f39aa0509558a5e10b253807c17940f20edbdf70151','the_mystery_of_the_druids','the_mystery_of_the_druids','https://www.gog.com/game/the_mystery_of_the_druids',0,'House of Tales','HandyGames','Adventure',0,0,0),(1520937970,'Children of Zodiarcs',0,0,0,0,0,'8164c469c1be5a997d4e8a5ff9c9ddbd416ba8ebe504b32c8db61b90f4f38fe6','837d0e9183666bb22efb739d71460ad21527a7998f1b147946843995ed09bd17','children_of_zodiarcs','children_of_zodiarcs','https://www.gog.com/game/children_of_zodiarcs',0,'Cardboard Utopia','Cardboard Utopia','Role-playing',0,0,0),(1525754046,'The 25th Ward: The Silver Case',0,0,0,0,0,'231ac537df9c904e8f3064803a6b597509c21ff6b0166ca14291ee065357c740','025d1e70695c1d83b83958c7514c8cc0de8184c50a62294359bcbf4f251391ed','the_25th_ward_the_silver_case','the_25th_ward_the_silver_case','https://www.gog.com/game/the_25th_ward_the_silver_case',0,'GRASSHOPPER MANUFACTURE INC. , Active Gaming Media Inc.','NIS America, Inc.','Adventure',0,0,0),(1526007082,'Parkan 2',0,0,0,0,0,'eb4d16440138b6f0f03b3f8341f9feb9e2149b21eb264348096b36142ddc2b35','d6ab08708abefd01c5275511ce1761fe5dd4230c07bf4781f4825806dc1104d7','parkan_2','parkan_2','https://www.gog.com/game/parkan_2',0,'Nikita','1C Entertainment','Simulation',0,0,0),(1526268080,'Age of Wonders: Planetfall',0,0,0,0,0,'11f185cfe0661b7e1311092b1070cdc604ad020461db466f7574a99cfe1a07b4','f9b252e5f1b7f033ba3649d054dfb8a2762e99d14a24faeae774e64b39d807ba','age_of_wonders_planetfall','age_of_wonders_planetfall','https://www.gog.com/game/age_of_wonders_planetfall',0,'Triumph Studios','Paradox Interactive','Strategy',0,0,0);
INSERT INTO `games` VALUES (1528148981,'The Curse of Monkey Island™',0,0,0,0,0,'a2664e3e4746bfaa705e1cc68b8015a2a0de4a8c76c56223c43274ffa78d7f21','c54960c22cda3c972d50a12cc6ab314aa117747e49d28ccf44550ce1e6ff7d8b','the_curse_of_monkey_island','the_curse_of_monkey_island','https://www.gog.com/game/the_curse_of_monkey_island',0,'LucasArts','Disney','Adventure',0,0,0),(1528332522,'Conarium',0,0,0,0,0,'551695e17c5124fe2023b92109c854d01e54a66bca0c340342f4ab4f26ad370d','8958643066f4ffaa7ac1a59599333504807c31098a0b0783cb8103a21380ab02','conarium','conarium','https://www.gog.com/game/conarium',0,'Zoetrope Interactive','Iceberg Interactive','Adventure',0,0,0),(1528859430,'Ghost 1.0',0,0,0,0,0,'f2c6c3adf7129606de70832fe12a4179598e5f45de5a89cc9f02d76656c1d5a0','d9787a3010b47f8d9073e6853079b40739d08ae5f85cd28d76e0ae3bab821db1','ghost_1_0','ghost_10','https://www.gog.com/game/ghost_1_0',0,'Francisco Téllez de Meneses','Francisco Téllez de Meneses','Action',0,0,0),(1531168671,'My Brother Rabbit',0,0,0,0,0,'8f63dc385febb3fff5c7935b3194fe6a62c99f3bc8ecba424cfd0cec96b5d938','a4c9c8d9a82edd5c8b8f5124b3d52cadb398326feb9d126e4a337b864c75ada0','my_brother_rabbit','my_brother_rabbit','https://www.gog.com/game/my_brother_rabbit',0,'Artifex Mundi','Artifex Mundi','Adventure',0,0,0),(1532671653,'Higurashi When They Cry Hou - Ch.1 Onikakushi',0,0,0,0,0,'3699de957c16c9d8e442243f81edde06b9356d0a27e8aa9f3b1ad82ede6e01ea','cad075a5677eb1e4da5a36906d086aa54b89835f3aab669da5ae7ef55fbbc6b1','higurashi_when_they_cry_hou_ch1_onikakushi','higurashi_when_they_cry_hou_ch1_onikakushi','https://www.gog.com/game/higurashi_when_they_cry_hou_ch1_onikakushi',0,'07th Expansion','MangaGamer','Adventure',0,0,0),(1533798723,'Mary Skelter: Nightmares',0,0,0,0,0,'00f6c0c0a1204516766b020f53525a5d382981446c90b98e51a0a448d0d29abd','5951b5277651a52acc82f43f76bab7292c664c27a0117de19b3d049b814339f9','mary_skelter_nightmares','mary_skelter_nightmares','https://www.gog.com/game/mary_skelter_nightmares',0,'Idea Factory','Ghostlight LTD','Role-playing',0,0,0),(1538068873,'Objects in Space',0,0,0,0,0,'178f13802135989ba34dcdb6c20f02e926d6f8a61c2ada18932f220e2ae904a1','79c49233dca23e3fcc3ce3b2823e776e12bfc37024b90cc1db5fc5765f617c78','objects_in_space','objects_in_space','https://www.gog.com/game/objects_in_space',0,'Flat Earth Games','505 Games','Action',0,0,0),(1541665964,'Rain World',0,0,0,0,0,'6910d41fb07e3ffabc89c9080294ff3496644d02f711862dc9a93aac725aebc9','c8f88ed590b5eebddc577ea51a85dfd2e0932efa4f7eb72a5d9d31fe711de9fe','rain_world','rain_world','https://www.gog.com/game/rain_world',0,'Videocult','Adult Swim','Action',0,0,0),(1542403976,'Predynastic Egypt',0,0,0,0,0,'cb44ecdec88406d2504864cce3bc0f3465a238f5b7a500a54dc73760fec27669','a3308c9ec8c3db47c7138155adbf1bf95768b4fd4a5efab97e95b43b82fdaca9','predynastic_egypt','predynastic_egypt','https://www.gog.com/game/predynastic_egypt',0,'Clarus Victoria','Clarus Victoria','Strategy',0,0,0),(1543567149,'SYNTHETIK: Legion Rising',0,0,0,0,0,'b18c10ac801eac53a434c5c9c149295b822ee59d211c4eb505771d4b7856accd','a132e054ae47c8ce0a11c41f580c2fe77f14192081a235380b9400d200e8d74b','synthetik_legion_rising','synthetik_legion_rising','https://www.gog.com/game/synthetik_legion_rising',0,'Flow Fire Games','Flow Fire Games','Shooter',0,0,0),(1544762955,'This Is the Police 2',0,0,0,0,0,'c48ad7b0438047a2f793b3a6565a6b952f2b5ecb16434370342ffc27c5ceef1c','4a2c1dfc95a15a6a226a6147912bde2823b7967569b3fe2a52729bfb952ef30c','this_is_the_police_2','this_is_the_police_2','https://www.gog.com/game/this_is_the_police_2',0,'Weappy Studio','THQ Nordic GmbH','Strategy',0,0,0),(1545282199,'Disney The Lion King',0,0,0,0,0,'d8ed7b59e9c61edc6bed0515cceff1ffdae7b929c8643a518c492ea658d4cd52','27f975a94234143605a6a52a7d0cd7b250284f44fcdf1fee09386c78459cdd48','disney_the_lion_king','disney_the_lion_king','https://www.gog.com/game/disney_the_lion_king',0,'Westwood Studios','Disney','Action',0,0,0);
INSERT INTO `games` VALUES (1549149082,'Everything',0,0,0,0,0,'59025560f2a9194656f2f8e43eb39ded464342e9c3b5f11467ab9312b1a652ab','975e97bf35e0ae0211f01a7ba7c0b5448e48ce4eb15a1228834b9aaeda54ffd4','everything','everything','https://www.gog.com/game/everything',0,'David OReilly','David OReilly, Double Fine Presents','Simulation',0,0,0),(1553712069,'RiME',0,0,0,0,0,'2406d32663d9ebc02e824e98dc1f1426463f2d871bf75644e39a39e47e243330','72eca5c95eefc16efeb1910c01b7972525b42a9fc67a2eddb8c40b47222d4643','rime','rime','https://www.gog.com/game/rime',0,'Tequila Works','Grey Box','Action',0,0,0),(1556481953,'Railway Empire',0,0,0,0,0,'a4f3d0581822b9b6244061cd6db8aa723b73025642ff7a295ec0a0fc3cf5f09e','3e08495a88299e4912b5fa4ecad8c998ddfd297b408017c47dd4b1b889a753ae','railway_empire','railway_empire','https://www.gog.com/game/railway_empire',0,'Gaming Minds Studios','Kalypso Media Digital','Simulation',0,0,0),(1557080015,'Katana ZERO',0,0,0,0,0,'22ef95ffcfe0bdcdd664fcacaffe15fd71475c64910e264614f4fb7de6f9d138','481c617fce99ac4c27fbb54ab823bef92bcae3718155da71efcd53222d08a4b0','katana_zero','katana_zero','https://www.gog.com/game/katana_zero',0,'Askiisoft','Devolver Digital','Action',0,0,0),(1557265213,'Call of Cthulhu: Dark Corners of the Earth',0,0,0,0,0,'07cd03167273e87564ff3914e2ef2087048070037ed9820c1f4f8cd399880a2c','976771f5a06f1a3c492029ff5e8591a52aacbfc5a918eddc34ed4826d8df71ef','call_of_cthulhu_dark_corners_of_the_earth_game','call_of_cthulhu_dark_corners_of_the_earth_game','https://web.archive.org/web/20171101194940/https://www.gog.com/game/call_of_cthulhu_dark_corners_of_the_earth',0,'Headfirst Productions','Bethesda Softworks LLC','Action',0,0,0),(1558688142,'XCOM: Enemy Unknown Complete Pack',0,0,0,0,0,'a4b4a072ce88cb4c8b8a34a45ed283e1a773955c1992f03a83531a66223c15cb','847b03a2827b0aed10bd23b19997afa5d7303d662e80fc71e2c79377721f72f0','xcom_enemy_unknown_complete_pack','xcom_enemy_unknown_complete_pack','https://www.gog.com/game/xcom_enemy_unknown_complete_pack',0,'Firaxis Games','2K Games','Strategy',0,0,0),(1559432711,'Morphopolis',0,0,0,0,0,'87e46c3ee97de33ef88ba153c2f4d3a14c4a3c8a1c8e6b2ffc67ba1daa04fd76','e94c4016493890382634039a9e2a3185bf780a5638e2d7765ccf8e9e08352479','morphopolis','morphopolis','https://www.gog.com/game/morphopolis',0,'Dan Walters, Ceri Williams','Dan Walters','Adventure',0,0,0),(1560654450,'Infectonator 3: Apocalypse',0,0,0,0,0,'6a592675176cb79aa420bbc23d1c27ed3b36cc5081b943e9ee7cfbf5c2b7aaf0','0ad19e3c9e1462ec49e93b1b9f616a659983d8b16a680f795ecf6e03c465487d','infectonator_3_apocalypse','infectonator_3_apocalypse','https://www.gog.com/game/infectonator_3_apocalypse',0,'Toge Productions','Armor Games Studios','Simulation',0,0,0),(1561716235,'Masquerada: Songs and Shadows',0,0,0,0,0,'72bb464a379bae31fbfece84b7c6de798f56fce02d42e676fdf822cb67378157','ebe6ee8e99b79683a428bdbf4a2934c19321c40e019aff7606b617594e2bcd19','masquerada_songs_and_shadows','masquerada_songs_and_shadows','https://www.gog.com/game/masquerada_songs_and_shadows',0,'Witching Hour Studios ','Ysbryd Games','Role-playing',0,0,0),(1566652906,'Headlander',0,0,0,0,0,'a020d1327a70f6e61c9be5e4e83b1518f7f1e1579780cb7fd988628b66f9a9b1','335852f6bf5ed2c363e2d0d5904d4a49fc76f08e63e7486d31dea5ea4c45555d','headlander','headlander','https://www.gog.com/game/headlander',0,'Double Fine Productions','Adult Swim','Action',0,0,0),(1566993364,'Holy Potatoes! A Weapon Shop?!',0,0,0,0,0,'7eda24322c18bb276ed65e400844aa46d31d39badb9c95dfaf2844ea007f1c41','b89c2fb80f7cc042f523a09602c7a63259eb73df00a683d55a44b9a9049070b3','holy_potatoes_a_weapon_shop','holy_potatoes_a_weapon_shop','https://www.gog.com/game/holy_potatoes_a_weapon_shop',0,'Daylight Studios','Daedalic Entertainment','Simulation',0,0,0),(1567038173,'Draugen',0,0,0,0,0,'296dc7e0f535e673beb203942a3340f953261a27f8da5128da75cc30609ba467','5c3c86094e3180e4f55856b699c8e8937c17f55ea032c61db491c5d3259d3a69','draugen','draugen','https://www.gog.com/game/draugen',0,'Red Thread Games','Red Thread Games','Action',0,0,0);
INSERT INTO `games` VALUES (1567381308,'Epic Tavern',1,0,0,0,0,'b01438773243eff2d29cc00a523b1a1f5cdef2249646e34c4686b65bd84a24ab','b9299711cfc279bd3e5f27a7526c965aacc54670bb4845ab61f98aba06fb98be','epic_tavern','epic_tavern','https://www.gog.com/game/epic_tavern',0,'Hyperkinetic Studios','Epic Tavern Holdings','Role-playing',0,0,0),(1569429547,'Black Mirror',0,0,0,0,0,'05ec7bfca2179f0eb6e58b2bc65827967320aeacdbfc064ec87cdbb79fcdcec3','a410342d219566d75ec8ba3e56c87b89e55052826fb33af6d555f5d0419b6dba','black_mirror','black_mirror','https://www.gog.com/game/black_mirror',0,'KING Art','THQ Nordic GmbH','Adventure',0,0,0),(1572922743,'Zwei: The Ilvard Insurrection',0,0,0,0,0,'8517a380aed13c9d11718ba4e2ea118580ad6b6d8d5e41205aae31e80db41d15','138ae90bb58900dc9dd3fe3924d18c9fcce1e768e4b8704f9f5702801eae0302','zwei_the_ilvard_insurrection','zwei_the_ilvard_insurrection','https://www.gog.com/game/zwei_the_ilvard_insurrection',0,'Nihon Falcom Corporation','XSEED Games','Role-playing',0,0,0),(1573355755,'Hellblade: Senua\'s Sacrifice',0,0,0,0,0,'afc9bb5ba49275e46cf020a4656b93347fd9e0e0d8ef1ce7e2d17674b3024147','db7f4da25156cbe0e53f64cffd9b9992b6b5a01df2775dcfeea3b7a64dcc7b13','hellblade_senuas_sacrifice','hellblade_senuas_sacrifice','https://www.gog.com/game/hellblade_senuas_sacrifice_pack',0,'Ninja Theory','Ninja Theory','Action',0,0,0),(1574464714,'Offworld Trading Company',0,0,0,0,0,'b71df9d34645418ab44fba18cb434a66b537bb8da36a913366a7f16475df820f','1b43142324cc53376ca9905317d359bb6ee81f2394e23d64d4794eba9589beff','offworld_trading_company','offworld_trading_company','https://www.gog.com/game/offworld_trading_company',0,'Mohawk Games','Stardock Entertainment','Strategy',0,0,0),(1574973992,'Higurashi When They Cry Hou - Ch.6 Tsumihoroboshi',0,0,0,0,0,'6b29de2bf5d42e3ded4e4ac6953ecf9ed4bf39724d9b059649cf25e151cdc2c6','589a05f477f42cecd8c60fde1c9180f5b4a2ee572457060cb84899d5bf470eb8','higurashi_when_they_cry_hou_ch6_tsumihoroboshi','higurashi_when_they_cry_hou_ch6_tsumihoroboshi','https://www.gog.com/game/higurashi_when_they_cry_hou_ch6_tsumihoroboshi',0,'07th Expansion','MangaGamer','Adventure',0,0,0),(1576137547,'Yoku\'s Island Express',0,0,0,0,0,'a8551f70913f96c52ec575ef5bb07bbe4ab9d7c28015efedc6f31bee415561ed','4bbd0bab2eb675d89965398ada5373aaa75a96f6698b521ac459389585b2180a','yokus_island_express','yokus_island_express','https://www.gog.com/game/yokus_island_express',0,'Villa Gorilla','Team17 Digital LTD.','Adventure',0,0,0),(1576666336,'Grimshade',0,0,0,0,0,'b9ec94e3e2a261dafe73e3c27a4fff4faad8560d66404e25a4b47fa74602bda5','ba7aab80f6f6eca7972fc965b939f5722f6f2535efa7d95b9feddb331ee61e7d','grimshade','grimshade','https://www.gog.com/game/grimshade',0,'TALEROCK','Asterion Games','Role-playing',0,0,0),(1576810170,'Hidden & Dangerous 2: Courage Under Fire',0,0,0,0,0,'e406c1fb1fc8cb7644dfbd245812f5c4976893f73af96bd7d207cbc682c85376','bd748e2af12cf7196108c4ca4f870646e229d7a2f715bf4c65ce1fa17018fe34','hidden_dangerous_2_courage_under_fire','hidden_dangerous_2_courage_under_fire','https://www.gog.com/game/hidden_dangerous_2_courage_under_fire',0,'Illusion Softworks','2K Games','Action',0,0,0),(1578481504,'The Suffering: Ties That Bind',0,0,0,0,0,'39ded4cf43e25d54af5efd816fe738113bf84d1e9d593a743a58d999b655fb94','6dc97aa6010df4125d66b75731ed4518fce66cad0ee74d1b581fa2b0d6896cf2','the_suffering_ties_that_bind','the_suffering_ties_that_bind','https://www.gog.com/game/the_suffering_ties_that_bind',0,'Surreal Software','Warner Bros. Interactive Entertainment','Shooter',0,0,0),(1578751181,'Darkwood',0,0,0,0,0,'d229654e383dd842314bfef21f6130c914c6569c184863116a02511abeb282ea','90fc3df54b96ad7fb097929baf72878e875e6618c70091c36154e5d03e952130','darkwood','darkwood','https://www.gog.com/game/darkwood',0,'Acid Wizard Studio','Acid Wizard Studio','Action',0,0,0);
INSERT INTO `games` VALUES (1578859173,'NeuroVoider',0,0,0,0,0,'b7a144b84961a34ca3b229db41486e80534d3d71738bf06829857f7def585dd7','6158e447e48dc751e674a613e45b836b683f200f54f393df7eca14727c6abc2b','neurovoider','neurovoider','https://www.gog.com/game/neurovoider',0,'Flying Oak Games','Playdius','Action',0,0,0),(1578931338,'Panzer Corps',0,0,0,0,0,'799a0756b8aafca275057677a794c766ceeba30e002dd090222862f2533ca376','16bef7c7f6e0dbb55bcdc886ac4bf3c286e7169945ac9cc36ab2009a151171d8','panzer_corps','panzer_corps','https://www.gog.com/game/panzer_corps',0,'Flashback Games/The Lordz Games Studio','Slitherine Ltd.','Strategy',0,0,0),(1580300418,'Book of Demons',0,0,0,0,0,'d9d03ff8ba239fc9bb49308ada8c734aee945b35426496d255157ab3ce37f581','ccd678d5fc317aa8e24d07cd958085c612b95cedc077c9df2188b0eec373dd26','book_of_demons','book_of_demons','https://www.gog.com/game/book_of_demons',0,'Thing Trunk','Thing Trunk','Action',0,0,0),(1580446481,'Overlord II',0,0,0,0,0,'63ef8c0fdffbaa583a498dafe19c26220f2092155f69187ec5603f9dd3287c6e','9d2f4b3687119e74392b9531a505cf05f1ce1b9953a32851579d687583941ffb','overlord_ii','overlord_ii','https://www.gog.com/game/overlord_ii',0,'Triumph Studios','Codemasters','Strategy',0,0,0),(1580842560,'The Final Station',0,0,0,0,0,'1f81235de2e65b7aadd95b8cd6410981aa41e35461f6b718160dcb7744cfb3fe','fa02378df1a546db1f10b0dab9925bb10edd20fb19c639c16e98a8dbc7a596ec','the_final_station','the_final_station','https://www.gog.com/game/the_final_station',0,'Oleg Sergeev, Andrey Rumak','tinyBuild','Action',0,0,0),(1581811358,'Ashes of the Singularity: Escalation',0,0,0,0,0,'27f348bff794bdd1ee315e757a1396c3cc0d7055f5585d085c8379beff756654','6a930891d6b6a4402c8b52828bbfa8d2df6a111371d3aad090c66ae3111c61ea','ashes_of_the_singularity_escalation','ashes_of_the_singularity_escalation','https://www.gog.com/game/ashes_of_the_singularity_escalation',0,'Oxide Games','Stardock','Strategy',0,0,0),(1582634950,'Evil Bank Manager',0,0,0,0,0,'b9c1f2c3d40deff87e228b05c0df573c1398fbb75aaf1c37bf326e54c1b64ebe','266740187a85821b373b095d5abfc8d34e70a77ad3b72c9015dae3003e779dbb','evil_bank_manager','evil_bank_manager','https://www.gog.com/game/evil_bank_manager',0,'Hamsters Gaming','Hamsters Gaming','Strategy',0,0,0),(1583197130,'Meridian: Squad 22',0,0,0,0,0,'fae58da0e818f912609f9115b898311d2bbbbc3165fd914a16cf57ea57de2c31','5c32ecc9eb6c430faf17eeecb7de7089a3e2e7f6dcf1a185dbcd7fd7d0f529f3','meridian_squad_22','meridian_squad_22','https://www.gog.com/game/meridian_squad_22',0,'Elder Games','Merge Games, Headup Games','Strategy',0,0,0),(1584560456,'The Guild 3',1,0,0,0,0,'0db544e9c2516104043a726ebc97082096d124388fc56f2170b88fd7cfff2908','d528e3d208bc77736834c330c6fcb03a1c3a88b79a7c8c9af611ff4e0d2bbc1c','the_guild_3','the_guild_3','https://www.gog.com/game/the_guild_3',0,'Purple Lamp Studios, GolemLabs','THQ Nordic GmbH','Simulation',0,0,0),(1584823040,'Divinity: Original Sin 2 - Definitive Edition',0,0,0,0,0,'126f60f164d9530b31226d7794719a505dbee4780c31f77673297b40d7c101df','64216a0d9106911f461858599460b504eec053a767298fe47f52e7e03194c571','divinity_original_sin_2','divinity_original_sin_2','https://www.gog.com/game/divinity_original_sin_2',0,'Larian Studios','Larian Studios','Role-playing',0,0,0),(1584866499,'Beat Cop',0,0,0,0,0,'eba9cabe9464b7c7f40476b7bec0c2807bf33134158059c2d556cdb228dc5016','5acee5231e48092ee2690f47814905e612efa773b0cfac77c7c8ffd930f3cdff','beat_cop','beat_cop','https://www.gog.com/game/beat_cop',0,'Pixel Crow','11 bit studios','Adventure',0,0,0),(1585259027,'The Sexy Brutale',0,0,0,0,0,'0cf60610c8b4700e43e28c2419194227680ef41465ffec2d552bfe9923d47823','08760759fb16f0920d4ffd53d8cef88c5191bf4a4fc341b7455741b2f597dafc','the_sexy_brutale','the_sexy_brutale_game','https://www.gog.com/game/the_sexy_brutale',0,'Cavalier Game Studios & Tequila Works','Tequila Works','Adventure',0,0,0);
INSERT INTO `games` VALUES (1586828906,'The World Next Door',0,0,0,0,0,'57bb0671ec6523e948433683bd2dcb61b72ff9760469cba92e28299c369c461d','59f9429f38f9aadf3c8e8a4f8c2afec684645db2972181d24a23b7d316cfd6ad','the_world_next_door','the_world_next_door','https://www.gog.com/game/the_world_next_door',0,'Rose City Games','VIZ Media','Action',0,0,0),(1588524889,'Fell Seal: Arbiter\'s Mark',0,0,0,0,0,'aba311a357840fdb0acaa112a8ea8dcb20c3a15e0a7cbcef88a389ff360077bb','0fce5d59e31977aa2461cbfde4b03db0ad3ed52c6da7c1df505e75c26b5ea8ab','fell_seal_arbiters_mark','fell_seal_arbiters_mark','https://www.gog.com/game/fell_seal_arbiters_mark',0,'6 Eyes Studio','1C Entertainment','Role-playing',0,0,0),(1589369222,'Eisenwald: Blood of November',0,0,0,0,0,'c44ade3e2e9f06b4484e70fd4e33c619eeee9eb275fec08f610e3df050bf2f24','287c1979f1edab5eecc1d671b03ef086223fc9fb7dd58aafa0ac7250b9d30ffa','eisenwald_blood_of_november','eisenwald_blood_of_november','https://www.gog.com/game/eisenwald_blood_of_november',0,'Aterdux Entertainment','Aterdux Entertainment','Role-playing',0,0,0),(1590012242,'Battle Brothers',0,0,0,0,0,'765038f5361c64f3950677d6579f8b4e8b09856e93287ba909976861abeeff70','81b6b55023c2d5d49980c750e97ad8736a2fb248f2d9af3f8e7dcb76b7a03d3b','battle_brothers','battle_brothers','https://www.gog.com/game/battle_brothers',0,'Overhype Studios','Overhype Studios','Strategy',0,0,0),(1591938132,'The Textorcist: The Story of Ray Bibbia',0,0,0,0,0,'64a1d8380ace8a732cc7651d98aaeef3fadae9c35b4024087661f2e241ccb304','1a4523492d07a809f02f9aabc175aec28d33aab1ecc453e8466b3f81fbd48e04','the_textorcist_the_story_of_ray_bibbia','the_textorcist_the_story_of_ray_bibbia','https://www.gog.com/game/the_textorcist_the_story_of_ray_bibbia',0,'MorbidWare','Headup Games','Action',0,0,0),(1592291898,'Not Tonight',0,0,0,0,0,'254f44f49e1517c9d193fcc364d61f72b9b2dac60b37bd46a1973dfdc31ab1bf','ba346c3023dcd337fb3dd0a65b676dcef28ebb0ad4743019023ce7c037dcbe7d','not_tonight','not_tonight','https://www.gog.com/game/not_tonight',0,'PanicBarn','No More Robots','Simulation',0,0,0),(1594591834,'Mutant Football League: Dynasty Edition',0,0,0,0,0,'91a70d887306cd188e292778845cc7008663e07f4569e2c6f2ceb884ce01bccb','b98379e81d48fab0e97e4185864a2a8321771a06898fcf5c1c114277e81e0d39','mutant_football_league_dynasty_edition','mutant_football_league_dynasty_edition','https://www.gog.com/game/mutant_football_league_dynasty_edition',0,'Digital Dreams Entertainment LLC','Digital Dreams Entertainment LLC','Sports',0,0,0),(1595659240,'Mafia',0,0,0,0,0,'13db1df4019ec23694c77d47da63d30f0e89dca33ab50ebdf0819fe3bc6272a8','a7e110a04342d9ed86e8df4306fc072feb29a172aa38265aaf58652846cd10fb','mafia','mafia','https://www.gog.com/game/mafia',0,'Illusion Softworks','2K Games','Action',0,0,0),(1597842603,'Jazz Jackrabbit 2 - The Christmas Chronicles',0,0,0,0,0,'536ece4995c6df5d66e5155b02195e2198d19313ee3d0182bf7009a4a6f85f93','4d1ae7444d2ac3b02bff2788763cf916605cfde0d105db0b9ff8a7ac04ce00c4','jazz_jackrabbit_2_christmas_chronicles','jazz_jackrabbit_2_christmas_chronicles','https://www.gog.com/game/jazz_jackrabbit_2_collection',0,'Epic Games','Epic Games','Adventure',0,0,0),(1598055675,'Emperor: Rise of the Middle Kingdom',0,0,0,0,0,'0f1868cfd40a25ddc24aaec3a3f9fd2c79c055b00bcb735ace97196108ec4371','9966227a5e8ad7911e8fbcd67889def57c783c6f70f3a1d620c67ab6fb1b47d2','emperor_rise_of_the_middle_kingdom','emperor_rise_of_the_middle_kingdom','https://www.gog.com/game/emperor_rise_of_the_middle_kingdom',0,'Sierra','Activision','Strategy',0,0,0),(1599295807,'Inked',0,0,0,0,0,'7668e8c733595f0e7a79ccf1e1b3f002331f2c31d47932c6cd54220dcbd6c0e9','50f35d190ed1f9ed588577fff0c28a84de68a2ff47d2447a854de503865e518f','inked','inked','https://www.gog.com/game/inked',0,'Somnium Games d.o.o.','Starbreeze Publishing AB','Adventure',0,0,0);
INSERT INTO `games` VALUES (1599390867,'Banner Saga 3',0,0,0,0,0,'d30024ae746fb0e24cd06d98ca5d2e2598ad1e88a57939a5a8429dc235b13b5d','65d118319e4ec404524c389bc593db11dd0369406f7739e6ff6b853038e79eea','banner_saga_3','banner_saga_3','https://www.gog.com/game/banner_saga_3',0,'Stoic','Versus Evil','Strategy',0,0,0),(1600722961,'Caveblazers',0,0,0,0,0,'ee37e0bb054cc9a65bc3a8f62efd4336b08aac05e8bbaafebc2f39499a015333','561f373a8589357c5b1babb4705058d55df809688926b33cd4212aa6dd0e79e9','caveblazers','caveblazers','https://www.gog.com/game/caveblazers',0,'Deadpan Games','The Yogscast','Action',0,0,0),(1601056795,'World to the West',0,0,0,0,0,'c47ea4b80c542718061a7e14fae574cba89da67e9e0e330a4584154282c52e17','78af5c2081d1ccce9c66f4d5fde49eddcdb6006d0eb791ad2a40885af97084ae','world_to_the_west','world_to_the_west','https://www.gog.com/game/world_to_the_west',0,'Rain Games','Rain Games','Action',0,0,0),(1601442230,'Shadow Tactics: Blades of the Shogun',0,0,0,0,0,'031975c83099286b46e50b7dfac67f3637fd8b884ca065315ba2ed04ddacc61b','0e38453713650d8d9d50f429e6a22bbf859099d5bb6c484ddf1e39686f89b156','shadow_tactics_blades_of_the_shogun','shadow_tactics_blades_of_the_shogun','https://www.gog.com/game/shadow_tactics_blades_of_the_shogun',0,'Mimimi Productions ','Daedalic Entertainment','Strategy',0,0,0),(1603513052,'Jupiter Hell',1,0,0,0,0,'52c0e973c6ebe97026433f5c59d73d38ec7302b1f87bcf45e35b390ced4c9a5b','d3f580534d25413382437bdb706b9ca6576bc0029f0c8c9229e365d196346be3','jupiter_hell','jupiter_hell','https://www.gog.com/game/jupiter_hell',0,' ChaosForge',' ChaosForge','Role-playing',0,0,0),(1604584366,'Enigmatis 2: The Mists of Ravenwood',0,0,0,0,0,'e97bf4c960f337e3bd25570b56e0750c84eac47ab233926905e7a8a13620ecbb','3e878186387c3407b631f3e711d75ab531ddce703c74322d5f2ca9aed22a8370','enigmatis_2_the_mists_of_ravenwood','enigmatis_2_the_mists_of_ravenwood','https://www.gog.com/game/enigmatis_2_the_mists_of_ravenwood',0,'Artifex Mundi','Artifex Mundi','Adventure',0,0,0),(1604634952,'Warhammer 40,000: Gladius - Relics of War',0,0,0,0,0,'9288b3cb813d652c48ca7e9a6e2002e8fc61792134471a4c3ca5a1695ffab04e','1751a94818e9140da424a2ee3107c766c0a4de314f6fc86e4c15e68ea619a3b0','warhammer_40000_gladius_relics_of_war','warhammer_40000_gladius_relics_of_war','https://www.gog.com/game/warhammer_40000_gladius_relics_of_war',0,'Proxy Studios','Slitherine Ltd.','Strategy',0,0,0),(1605197332,'In the Shadows',0,0,0,0,0,'b7e5c9269f6aba9a308077f6b4fa818dd11d4182b69121e4682632ae4deb85f7','17fd535bf76c19af052e2fa889cc04cf58d8a83a8d2501a4ae20375d476e78ca','in_the_shadows','in_the_shadows','https://www.gog.com/game/in_the_shadows',0,'Colorspace Studio','Colorspace Studio','Adventure',0,0,0),(1605427427,'The Inner World - The Last Wind Monk',0,0,0,0,0,'c2c08ce6d720956fb4521fd133944da2f128deaa9c5b6b58c7e4d1e35d107334','c1b39162a90a3d1dfe7cc8389fddd3e369ffc800034cfb36050dfc28280d0b50','the_inner_world_the_last_wind_monk','the_inner_world_the_last_wind_monk','https://www.gog.com/game/the_inner_world_the_last_wind_monk',0,'Studio Fizbin','Headup Games, Kalypso Media Digital','Adventure',0,0,0),(1605503821,'Superhero League of Hoboken',0,0,0,0,0,'dcdb9eaba2947c1de1264b0d8eeac0ff777ec94cd0b4a8b325e1649fb28a7609','b2883162b927845001a5c6cbc864d840d9650fcf1932aa9cece3d7df9528a137','superhero_league_of_hoboken','superhero_league_of_hoboken','https://www.gog.com/game/superhero_league_of_hoboken',0,'Legend Entertainment Company','Piko Interactive','Adventure',0,0,0),(1606234979,'Wonder Boy: The Dragon\'s Trap',0,0,0,0,0,'701e398df22525c77d88a279faf1fee332df8bfc8b63db6c2d136c3dcb955658','647a36b0288cd57d19119f440834a3a2878ed731212ac6cbd2b1e7875e6c7f30','wonder_boy_the_dragons_trap','wonder_boy_the_dragons_trap','https://www.gog.com/game/wonder_boy_the_dragons_trap',0,'Lizardcube','DotEmu','Action',0,0,0);
INSERT INTO `games` VALUES (1606709194,'FoxTail',1,0,0,0,0,'3379b88c896feb5ce18058cedb6c4d83dfd31733b69b4302b62a18e375f68f38','1f464a78530c9a0c3ff07df899df4599df1135d3f408f97710b70373d94f0594','foxtail','foxtail','https://www.gog.com/game/foxtail',0,'Gingertips Game Studio','Gingertips Game Studio','Adventure',0,0,0),(1608965204,'Fight\'N Rage',0,0,0,0,0,'cbd57ecab2e2f97bdd011588fdb34958a6f7e1db7993c192a5e611a31aec1033','c47679861f8660c2371d091e5b10c51533382314ee7db2a1ca24eb37b1a6a5d0','fightn_rage','fightn_rage','https://www.gog.com/game/fightn_rage',0,'sebagamesdev','sebagamesdev','Action',0,0,0),(1611106985,'Memory\'s Dogma CODE:01',0,0,0,0,0,'9a0fec079448221879ebb9ca0cb5725675542fe4e696b123522cca3079df5ed0','887c0c6b6767f3f8be2c3d11b92807f65be2b841e217a6a705d148664591f300','memorys_dogma_code01','memorys_dogma_code01','https://www.gog.com/game/memorys_dogma_code01',0,'Liz-Arts','Sekai Project','Adventure',0,0,0),(1614341910,'Minecraft: Story Mode - Season Two',0,0,0,0,0,'fea65df830fcab30165b055de8a9bbddded1453ed2e385fd63a0b6990413efeb','af48bae033cc43a2d40be1c9bf95fcb13400c9b0def2d074e08e99a8cbba873f','minecraft_story_mode_season_2','minecraft_story_mode_season_2','https://www.gog.com/game/minecraft_story_mode_season_2',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(1615328735,'Sniper Elite V2 Remastered',0,0,0,0,0,'ba41ac0c9e625d6b23bfd8b6951fb1f6eb8c0b70be90d9febfa2841c7d754d10','c4d18bf52086d53f3dc3f458e0fd7430d70bb61f50d4ccb6cf692b4c42f4f986','sniper_elite_v2_remastered','sniper_elite_v2_remastered','https://www.gog.com/game/sniper_elite_v2_remastered',0,'Rebellion','Rebellion','Shooter',0,0,0),(1615869028,'Gremlins vs. Automatons',0,0,0,0,0,'e8dcebad2ebadb6e9dd51f70bdb1e6928deffbe40c2cb17a890d10635364b804','56c9f6fd53a2567674fc26f42a2c4b1b2b330727501fcae843247a623be71dc9','gremlins_vs_automatons','gremlins_vs_automatons','https://web.archive.org/web/20170525220900/https://www.gog.com/game/gremlins_inc',0,'Alexey Bokulev, Sergei Klimov, Charlie Oscar Lima Tango Interactive Entertainment','Yukitama Creative Industries','Strategy',0,0,0),(1615872630,'Combat Mission: Barbarossa to Berlin',0,0,0,0,0,'c86f14753c4f898d37f5875a5be3fa423f9440e99fab028ff9aaded663cc0c7b','2b14076173199ec1fa0f51eb7351d93a41aac5a7fbe48a4ed259b50d7460df46','combat_mission_2_barbarossa_to_berlin','combat_mission_2_barbarossa_to_berlin','https://www.gog.com/game/combat_mission_2_barbarossa_to_berlin',0,'Battlefront.com','Battlefront.com','Strategy',0,0,0),(1617830436,'We Happy Few',0,0,0,0,0,'8006c5cc578e9b38b9057aeb620b8d9d6f35f69b8c436f3a2765e17a85688e44','d6f569c3bb30dc261d348666e30ec80ab7d72563a5f940563d97c8c1262688c3','we_happy_few','we_happy_few','https://www.gog.com/game/we_happy_few',0,'Compulsion Games','Gearbox Publishing','Adventure',0,0,0),(1618073558,'Shadow Warrior Classic Redux',0,0,0,0,0,'221aa3d2b11c1de54d1b9be9b359b0d990871e49eeda4a084a24c1c5f3cdcb1a','68549e17f52d07eae1fb6880d3521fff25b9db600fe9399f6aed9e9438a2f586','shadow_warrior_classic_redux','shadow_warrior_classic_redux','https://www.gog.com/game/shadow_warrior_classic_redux',0,'3D Realms, General Arcade','Devolver Digital','Shooter',0,0,0),(1618411515,'La-Mulana 2',0,0,0,0,0,'f9d90e146ddfbf72d24a7209fb4284f947bb17b86f5424b539fac5f2a71ed81c','ec6646d63c704573ddff807d8f72047a5d44319e633b8d95bf65fdf0aa5a584b','la_mulana_2','la_mulana_2','https://www.gog.com/game/la_mulana_2',0,'NIGORO','Active Gaming Media','Action',0,0,0),(1620157881,'Tooth and Tail',0,0,0,0,0,'fe443e00c9298e38c7c1829311805b818c113ad547777d2ea70328984d7a9d34','831cdf67ee455595d7f714d0a976e8e6d4b976a7a7878b1b8daceb3ccbcbe563','tooth_and_tail','tooth_and_tail','https://www.gog.com/game/tooth_and_tail',0,'Pocketwatch Games','Pocketwatch Games','Strategy',0,0,0);
INSERT INTO `games` VALUES (1620402149,'Cossacks II: Battle for Europe',0,0,0,0,0,'f5e9e8f74d32a4551a38dc1f2738c6579710d2a68c5d1a51f8e3ce9eecaa7296','ccd6b0c66ed4e6cef7636e98718de5c4123e5f5ba0ff923ccd394a8ff9056bf5','cossacks_ii_battle_for_europe','cossacks_ii_battle_for_europe','https://www.gog.com/game/cossacks_ii_anthology',0,'GSC Game World','GSC Game World','Strategy',0,0,0),(1622206415,'Ys VIII: Lacrimosa of DANA',0,0,0,0,0,'7dada89d01f4b1abdb3a958c54f179730e68cd255fe5b17ea1ca90ff7fb8817c','f9fb2486527d9fc70e2c6d3c1511f72ab32f8a1b254ef7b1e7b273d340c581f6','ys_viii_lacrimosa_of_dana','ys_viii_lacrimosa_of_dana','https://www.gog.com/game/ys_viii_lacrimosa_of_dana',0,'Nihon Falcom Corporation','NIS America, Inc.','Role-playing',0,0,0),(1622602219,'ABZÛ',0,0,0,0,0,'cdaebc906071de158ac300e47b60184f34c96a94134ec50086bbc622dd3e41ac','6af69957f232354bc95733f0cb0268407e7c11ad279e0fdbb6d34c32524ba5be','abzu','abzu','https://www.gog.com/game/abzu',0,'Giant Squid','505 Games','Simulation',0,0,0),(1623727353,'Strategic Command Classic: WWI',0,0,0,0,0,'b1284c2c1ac51c070da5595c31591eb6e29e26b108e1c928453d7a1e67fa49fa','280ef350c946e7d102561daa95bc30c739210957ad33332e9ef816fbd8d4bff1','strategic_command_classic_wwi','strategic_command_classic_wwi','https://www.gog.com/game/strategic_command_classic_wwi',0,'Fury Software','Slitherine Ltd.','Strategy',0,0,0),(1624457803,'NecroVision',0,0,0,0,0,'4a61ffa30fc343aefbf4b16acfab183c9c4de441a88acb000b348a7a8004acdd','7dafc61840608a667fc12f1ce360cfadbca30836ebf1e96f43650f369b243016','necrovision','necrovision','https://www.gog.com/game/necrovision',0,'The Farm 51','1C Publishing','Shooter',0,0,0),(1624591191,'Forsaken Remastered',0,0,0,0,0,'0ba97a4eec1456f57ac7cf4ebc964dd72789981efa66c4d567d94777871be217','f4c59f22368e690ebab968cbe07d64beda739959d8fade955c51291ba2d5da18','forsaken','forsaken','https://www.gog.com/game/forsaken',0,'Nightdive Studios, Probe Entertainment, Iguana Entertainment','Night Dive Studios','Action',0,0,0),(1625207125,'Caves of Qud',1,0,0,0,0,'1017356fe36345fcd47bcea5670420a40e1de5c593e5f98f7b9035920a12c149','69b2928b90997fdf512b8c5efe259763c4ffe70b7ce8cbcb52904757bc71c5a9','caves_of_qud','caves_of_qud','https://www.gog.com/game/caves_of_qud',0,'Freehold Games','Freehold Games','Strategy',0,0,0),(1625340469,'Circle Empires',0,0,0,0,0,'669488b4dde28b7b866ba292b61a28b4c87bc8e65f26fcfcc251da26cde68b4a','238504accc685fc867c09efb50a1f7aa113e02efa95e49566292b44019f9a145','circle_empires','circle_empires','https://www.gog.com/game/circle_empires',0,'Luminous','Iceberg Interactive','Strategy',0,0,0),(1628811838,'Druidstone: The Secret of the Menhir Forest',0,0,0,0,0,'fc8b59a976bcfb94c062e4463df00947f4a31d9982d8c56c39ecc37ff06eedf5','cf0e8e16a758926c89f608379138a05bfcedec8c4eae26910cc3b50c9885e5cd','druidstone_the_secret_of_the_menhir_forest','druidstone_the_secret_of_the_menhir_forest','https://www.gog.com/game/druidstone_the_secret_of_the_menhir_forest',0,'Ctrl Alt Ninja Ltd.','Ctrl Alt Ninja Ltd.','Role-playing',0,0,0),(1629258827,'Deep Sky Derelicts',0,0,0,0,0,'460e4b7f2d73d6dbe4c3993e76a28b1dc3401a2e028966e9f99c41b810b83eb3','789d6ed4d0d68429533eec9e7ed9dc632cda4f22743b3a836ada8e04a0906ad3','deep_sky_derelicts','deep_sky_derelicts','https://www.gog.com/game/deep_sky_derelicts',0,'Snowhound Games','1C Company','Strategy',0,0,0),(1632573677,'Higurashi When They Cry Hou - Ch.5 Meakashi',0,0,0,0,0,'f1912df12351c1b1ffaca0a2111302dbb0de68e674ae0cedd9659636596bf1a9','92a4ec5397fffece96d253dc1bc48406becbe7fa8527906228adb2576aa7f9bc','higurashi_when_they_cry_hou_ch5_meakashi','higurashi_when_they_cry_hou_ch5_meakashi','https://www.gog.com/game/higurashi_when_they_cry_hou_ch5_meakashi',0,'07th Expansion','MangaGamer','Adventure',0,0,0),(1633815479,'SHOCK TROOPERS',0,0,0,0,0,'1a75d5887b698147aca9803893106f0b2a34f36556b35a3298b4e3bba0a53b9c','1fae6a8785d07a310ceff58de2784fb8fa2c70db1566f1157fcd81f9f43527c8','shock_troopers','shock_troopers','https://www.gog.com/game/shock_troopers',0,'SNK CORPORATION','SNK CORPORATION','Shooter',0,0,0);
INSERT INTO `games` VALUES (1635019049,'SAMURAI SHODOWN V SPECIAL',0,0,0,0,0,'1a81bef249178d126c3c32f4c26deb1bc033bf0dabc02464e599890fc5497c8a','0443db54983039f1391c7617cca367223d33117c5dd733f27e2e38c398d74c31','samurai_shodown_v','samurai_shodown_v','https://www.gog.com/game/samurai_shodown_v',0,'Yuki Enterprise','SNK CORPORATION','Action',0,0,0),(1637485057,'Unavowed',0,0,0,0,0,'acc4ba0436e84b42ff5efbde5498801d97fe3adb863e0ab7111f815428308dbf','3073f6e14ebe1cad47a941bcd3744edde7d3ed1bc3d4fac984f2c072e014eb36','unavowed','unavowed','https://www.gog.com/game/unavowed',0,'Wadjet Eye Games','Wadjet Eye Games','Adventure',0,0,0),(1637713817,'Shining Song Starnova',0,0,0,0,0,'0b6f453f944102ebf244e27bdce3a768af0b4ea7674f63cd1768297bb6587c31','4df0b5c155e7ef04169fe14dd99fc217d3b2b8a6d2899fef8d087a70ea7df8fc','shining_song_starnova','shining_song_starnova','https://www.gog.com/game/shining_song_starnova',0,'Love in Space','Sekai Project','Simulation',0,0,0),(1637928515,'Ruiner',0,0,0,0,0,'5c0fbfea7c91d6798df592e6b5eb8051f8cd6f38834e4f7aff7bf02e61c2eeed','fc650abe181f5f8eac1c2ffd97e850efebe40d19ed0087473443ee10719a1215','ruiner','ruiner','https://www.gog.com/game/ruiner',0,'Reikon Games','Devolver Digital','Action',0,0,0),(1639866886,'WARTILE',0,0,0,0,0,'511c64aac06385efc71945252cbc1b52742a380100ae181fb61991733a31bac0','913c38d7c6748f9606f7b804f5380c34f5af0c561285a8f522ec5e4de5505c5b','wartile','wartile','https://www.gog.com/game/wartile',0,'Playwood Project','Deck13','Strategy',0,0,0),(1640205738,'SHENZHEN I/O',0,0,0,0,0,'6c5279c4f6c98aa38af02df46c42d915a1a7d2fcb7ec3f9f64360f14b4b563d5','df9971c75e9e1454ad1dc806a89c536f5c1460c7fc2427a816ac618c0f7d0008','shenzhen_io','shenzhen_io','https://www.gog.com/game/shenzhen_io',0,'Zachtronics','Zachtronics','Simulation',0,0,0),(1640424747,'The Witcher 3: Wild Hunt - Game of the Year Edition',0,0,0,0,0,'e34b4189894110990510f1334151555bd1c0ed45926c5c8cbc7e9b80aa6744d1','da1d48b939de89a5e43d1ff8c1e7bfaf2b2d4c1489d5b87f7ce70e4f8fc2c1c4','the_witcher_3_wild_hunt_game_of_the_year_edition','the_witcher_3_wild_hunt_game_of_the_year_edition_game','https://www.gog.com/game/the_witcher_3_wild_hunt_game_of_the_year_edition',0,'CD PROJEKT RED','CD PROJEKT RED','Role-playing',0,0,0),(1642230881,'Pray for Death',0,0,0,0,0,'eeafa9e82c6aa0928d99d3c2429d373851a71699d65f2d6160b491076575a10e','a978ed71cae6dd41a65ad1c6065755430c7363bec30d985f6a992455336a9891','pray_for_death','pray_for_death','https://www.gog.com/game/pray_for_death',0,'Light Shock Software s.n.c.','Interplay','Action',0,0,0),(1642319334,'Star Hammer: The Vanguard Prophecy',0,0,0,0,0,'94794fe3e20fdfced876a8557cb2dcc226f90b786df48bc2178b6bb269df1401','0a94b689f8483452e99250cfeb7d5d518afb59da2989cdd91548b74386e90381','star_hammer_the_vanguard_prophecy','star_hammer_the_vanguard_prophecy','https://www.gog.com/game/star_hammer_the_vanguard_prophecy',0,'Black Lab Games','Slitherine Ltd.','Strategy',0,0,0),(1642851094,'S.W.I.N.E. HD Remaster',0,0,0,0,0,'4d7c5c3addc03baab47b8fc9bce6a39ef372e471d1d541455e74fb2b51c7b712','30bd75e4ee7159d68e62ba78fb8bf3953f0c5aa569850df9da757ecf55c318ce','swine_hd_remaster','swine_hd_remaster','https://www.gog.com/game/swine_hd_remaster',0,'Kite Games','Assemble Entertainment','Strategy',0,0,0),(1645340422,'TSIOQUE',0,0,0,0,0,'630a44d553aeb83f0cf09b5a6b01b1eefa0db0f02f919efca74b01e7bda6bc0d','5c741d4572a6a706685e107114f18caae4db97ba766f6adbf342928cabcc2d97','tsioque','tsioque','https://www.gog.com/game/tsioque',0,'OhNoo Studio, Smile','OhNoo Studio','Adventure',0,0,0),(1646061575,'The Caligula Effect: Overdose',0,0,0,0,0,'62c46f0484b1da34313389bb41900e872bdf5388f6d7625c9d81b10aec701ccd','f7545424e0574f8a671efbe20230a58d1af4190b1739c798158fd2ce5cce2bb2','the_caligula_effect_overdose','the_caligula_effect_overdose','https://www.gog.com/game/the_caligula_effect_overdose',0,'FURYU Corporation, Engine Software BV','NIS America, Inc.','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1648559910,'Frostpunk',0,0,0,0,0,'5301f0691a8d54feb261a2d5161e4e4202774dabbad8d0147f2e59e98826731e','4958ee45542dc1b964dad9818fe36b235e243d1579991f700fd77630d299832d','frostpunk','frostpunk','https://www.gog.com/game/frostpunk',0,'11 bit studios','11 bit studios','Strategy',0,0,0),(1649028464,'COLLAPSED',0,0,0,0,0,'e76d114a3038922df9c3514b7fdef902887c8b24c1f17bb9a1d1d06bee2b4372','ccd524f1f2bb59d8c74f9ac5029806488202ae6687462366160d6772c140407c','collapsed','collapsed','https://www.gog.com/game/collapsed',0,'Glaive Games','Glaive Games','Action',0,0,0),(1649233263,'Close Combat 2: A Bridge Too Far',0,0,0,0,0,'b2ececd37d64b98462d369cab87663208efadc8fbc135fcbc0bd8b4f221707f7','e6eb629e3bf62b448aaf749d08f1f6f124ab95aba58443288f05ca548f349919','close_combat_2_a_bridge_too_far','close_combat_2_a_bridge_too_far','https://www.gog.com/game/close_combat_2_a_bridge_too_far',0,'Atomic Games, Inc.','Slitherine Ltd.','Strategy',0,0,0),(1650460968,'The Long Journey Home',0,0,0,0,0,'22c3fade05e20a2e527528e50529f1adae8327e48d24ae5b25affdda91c17f53','1cc8910c058811ebf53c4a431231630a548747486d01356ed46582bc2a2939df','the_long_journey_home','the_long_journey_home','https://www.gog.com/game/the_long_journey_home',0,'Daedalic Studio West','Daedalic Entertainment','Simulation',0,0,0),(1651927092,'What Remains of Edith Finch',0,0,0,0,0,'b55fc72410714d3b10a866de04462ad02a2f6ad86ae36eb27360d897a2402d1d','392d5f1b9c0f709c35e916012ec8c936399cb8532ac8284541de55c648f129b4','what_remains_of_edith_finch','what_remains_of_edith_finch','https://www.gog.com/game/what_remains_of_edith_finch',0,'Giant Sparrow','Annapurna Interactive','Adventure',0,0,0),(1652749096,'KING OF THE MONSTERS',0,0,0,0,0,'cf75370369f8bc874c504f7f859ff56b6a64ac1af029aa6b250948584e812d88','2b3484f850deefcf52c4c50ba16b5889d53a09f42f5655128fc79e7e59bb2722','king_of_the_monsters','king_of_the_monsters','https://www.gog.com/game/king_of_the_monsters',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(1654193651,'Umineko When They Cry - Answer Arcs',0,0,0,0,0,'a501142adefbae58b0e15c62fe4d946b1ebbd02f96aec6ff2068855c699df7d1','675e4a27b61f2d681bed6dde28497339e8851df443673d410da00a93e58e81ca','umineko_when_they_cry_answer_arcs','umineko_when_they_cry_answer_arcs','https://www.gog.com/game/umineko_when_they_cry_answer_arcs',0,'07th Expansion','MangaGamer','Adventure',0,0,0),(1655444396,'TRON 2.0',0,0,0,0,0,'55de04ec6037ef92aa54c7f85cf2bb7739ac0527b2c895088ddc198354a57448','949f77cecfadbaf353d6637c4f9a212a4e76b92b56132a7dfb6aacd636bce793','tron_20','tron_20','https://www.gog.com/game/tron_20',0,'Monolith Productions','Disney','Action',0,0,0),(1656388860,'Bad North: Jotunn Edition',0,0,0,0,0,'047c7d5ffdc5360f1bd5417cfba9cc6fda3d307770dd6c5e27c9e52b0e126d88','16b75d8803a7d17608121b457834f6191968f514468229bf7a3337a298a2d897','bad_north','bad_north','https://www.gog.com/game/bad_north',0,'Plausible Concept','Raw Fury','Action',0,0,0),(1658358203,'The Tiny Bang Story',0,0,0,0,0,'9f0c62725e6f41687136a51709d5c5426641043ba80efb0ce6ea7684bf58d643','ff9d62d32760ffa4d43a0b32e24042a715f8058e5227c5c9ec9211bb948ef911','the_tiny_bang_story','the_tiny_bang_story','https://www.gog.com/game/the_tiny_bang_story',0,'Colibri Games','Colibri Games','Adventure',0,0,0),(1659503863,'Desert Child',0,0,0,0,0,'a7145526663fbbe2b30cea69e1bf9305759f1358a49fcd54c95cc76a85392b7b','cb2ca2cee427a75f4867ffe89979cd3c7440e032546a561b630c53ed9f9cd52e','desert_child','desert_child','https://www.gog.com/game/desert_child',0,'Oscar Brittain','Akupara Games','Action',0,0,0),(1659642973,'Apsulov: End of Gods',0,0,0,0,0,'efc4f18ef11b94abcdd2794b5af457f63d5f392dbc6f332e9a32842f7de9ab08','a36fffd7ccdd534fa18497b7722de243733f874d57a1a22e6d2bed41f4f29345','apsulov_end_of_gods','apsulov_end_of_gods','https://www.gog.com/game/apsulov_end_of_gods',0,'Angry Demon Studio','Angry Demon Studio','Adventure',0,0,0);
INSERT INTO `games` VALUES (1660194629,'Project Hospital',0,0,0,0,0,'1f06f9c6cdf67340970822509bb6bbc84994b0d1dd6da24b233ac10458179add','082afe0e777a4734b1d39ed7fdd871e46af3d709e56743db2c511db2b2235d86','project_hospital','project_hospital','https://www.gog.com/game/project_hospital',0,'Oxymoron Games','Oxymoron Games','Simulation',0,0,0),(1660523159,'Lilycle Rainbow Stage!!!',0,0,0,0,0,'bf3e862c424dcabd9fa65d00c0b47d42129b3f873dae179f818e18c29d4daf01','5d2d0a96e9dad9adf0a3e526810278ca0fe2c5fb7a0eaafacd4dc34f34649983','lilycle_rainbow_stage','lilycle_rainbow_stage','https://www.gog.com/game/lilycle_rainbow_stage',0,'Particle','MangaGamer','Adventure',0,0,0),(1661530902,'Clustertruck',0,0,0,0,0,'c1b8e3b349eb01b5542c0d0ee7696a1920bcb71b6dfed56e240f9e269c5545db','2aa1e450d8e8e358201f62e7b7d93d5b77f2d2295f32bdd4a74065c44e4ed663','clustertruck','clustertruck','https://www.gog.com/game/clustertruck',0,'Landfall Games','tinyBuild','Action',0,0,0),(1661984551,'Goetia',0,0,0,0,0,'15aa557cee7e1141d879396cbc83ced3d6703ab62f474c15c25471be5a028e4e','d809f02007cc03f15c037371038e962f009c3daa2068a37bb83bf7d52731f5a0','goetia','goetia','https://www.gog.com/game/goetia',0,'Sushee','Square Enix / Forever Entertainment S. A.','Adventure',0,0,0),(1663581818,'State of Mind',0,0,0,0,0,'948360d0e110622fdbdab367732dc1a3004fd51bad991bada0e95a1f9acb8ccf','5b893ced19ace335a7d161875004dcc02fcd45ed79f5789882869c78e7aad6bf','state_of_mind','state_of_mind','https://www.gog.com/game/state_of_mind',0,'Daedalic Entertainment','Daedalic Entertainment','Adventure',0,0,0),(1665406546,'The Signal From Tölva',0,0,0,0,0,'8dd89ecab73fa622efb9061c33f08b44ac678ec0eca9ba46a78b4e8b3a41e78e','121ddbcdf6c6dc4c2d71ac7a8f98d15de8ec53ceeb00e67c1b27b670aa8c8a97','the_signal_from_tolva','the_signal_from_tolva','https://www.gog.com/game/the_signal_from_tolva',0,'Big Robot','Big Robot','Action',0,0,0),(1666511461,'Crysis Warhead',0,0,0,0,0,'1c8b4b40ab7d74067961093a43607f5747ba226c4606fe92478e6cb7a010d602','5313d6b42289724832bb0c613bb89037ad4d2fcace0d98de79f9abe498f04828','crysis_warhead','crysis_warhead','https://www.gog.com/game/crysiswarhead',0,'Crytek Studios','Electronic Arts','Shooter',0,0,0),(1668089272,'Undead Horde',0,0,0,0,0,'023ffdb584458f6f3b2d3d70450e2a3d1c19194fb55b5d002c531149ea8a414f','5a1e62e638bc876176aed7389415ee3293882c368358755639d6edb11428f1ad','undead_horde','undead_horde','https://www.gog.com/game/undead_horde',0,'10tons','10tons','Role-playing',0,0,0),(1668107107,'STAR WARS™ Battlefront (Classic, 2004)',0,0,0,0,0,'b981d7ca39b8fb05a038b652d104aaab06d38b47596a1e39b72c531729c973ce','31d250cd180e9641ee8447eb00b66c010fa523066af6816f1686747b3bf68be7','star_wars_battlefront','star_wars_battlefront','https://www.gog.com/game/star_wars_battlefront',0,'Pandemic Studios','Lucasfilm, LucasArts, Disney','Shooter',0,0,0),(1668986402,'SteamWorld Heist',0,0,0,0,0,'47e9483bf0fa6c44395c55ac29a44a6e28db8332c27ac665890c6c08a5b1305d','3572a4c44662c699a53b753103226340e3bccf3d54355e7eaa0a00fffcdd5311','steamworld_heist','steamworld_heist','https://www.gog.com/game/steamworld_heist',0,'Image and Form','Image and Form','Role-playing',0,0,0),(1669042393,'Empires: Dawn of the Modern World',0,0,0,0,0,'2adf968cf76ca08627864b462c36088cbf299d49ce553a0e1d6fa5a9a6f2ba0d','ff4f6eaef51ffff83cdc77f1ed94a1a067d6ab1aa0a3ad0f01ff7e15e5b480d0','empires_dawn_of_the_modern_world','empires_dawn_of_the_modern_world','https://www.gog.com/game/empires_dawn_of_the_modern_world',0,'Stainless Steel Studios','Stainless Steel Studios','Strategy',0,0,0),(1673367037,'ATOM RPG: Post-apocalyptic indie game',0,0,0,0,0,'8ace748c976e8cb92b3b854480d560b413ca6cad76f8ee0d0bdc5cac7b77d0fb','d920454cb024b90cf8367bc71a6e34b47e8ec0cbde54efcbbf97ef8255962f23','atom_rpg_postapocalyptic_indie_game','atom_rpg_postapocalyptic_indie_game','https://www.gog.com/game/atom_rpg_postapocalyptic_indie_game',0,'AtomTeam','AtomTeam','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1673521992,'The Swords of Ditto',0,0,0,0,0,'a4e97bfb5270565b982bdfea64f9d77601335e672811bcd371fbff2925c3e4dc','920e83b6e6b3654f26e402357bd1a84cf5cdb3ffa875b82ed4ccd61c6befb734','the_swords_of_ditto','the_swords_of_ditto','https://www.gog.com/game/the_swords_of_ditto',0,'onebitbeyond','Devolver Digital','Action',0,0,0),(1674669448,'Lovecraft\'s Untold Stories',0,0,0,0,0,'fd482347566b82b3bb2573f5e67fd07b6372c909098f61e6c158b9d2c84460de','a4b941feafcd8955d09cc2314c1fba3cc94c7ae3f0d54cca4becb6cef292d9c4','lovecrafts_untold_stories','lovecrafts_untold_stories','https://www.gog.com/game/lovecrafts_untold_stories',0,'LLC Blini Games','LLC Blini Games','Action',0,0,0),(1675237416,'Memoranda',0,0,0,0,0,'deed16481dd45e231ed45deea34c393d8857f500d5d9b30a974f04a658af82b6','a62f2c1df165933bf5a3efcea94a5cdea59fffc6d0e04cd74243430a80b9e5aa','memoranda','memoranda','https://www.gog.com/game/memoranda',0,'Bit Byterz','Digital Dragon','Adventure',0,0,0),(1675687984,'Eador. Imperium',0,0,0,0,0,'330859c39f44433f326b55dad5f659de77ba87aae187c53f320d716a708e3a3b','9d30be639e8bbad41eecd21cfd15bd71f9b8949a6e72f85cdb65aceaee81da17','eador_imperium','eador_imperium','https://www.gog.com/game/eador_imperium',0,'Snowbird Games','Snowbird Games','Strategy',0,0,0),(1676641473,'Don\'t Escape: 4 Days to Survive',0,0,0,0,0,'65357e4559495f2fef51a70c4fd74ceeb4201d9be7c8ebb383c855cb09562ff4','e3ded4b22f0ed2b6b8c3051643df854e8f46a9e0f607ed336250a516644c63b3','dont_escape_4_days_to_survive','dont_escape_4_days_to_survive','https://www.gog.com/game/dont_escape_4_days_to_survive',0,'scriptwelder','Armor Games Studios','Adventure',0,0,0),(1677885333,'Reigns',0,0,0,0,0,'fd6180987559c4861d0433ec6ccb40de741c06a98c48b1f3361064d35dadbea5','ceab49a67140544209a3c89f661c1f920e21baf16ca6558fc36e335d69541bd4','reigns','reigns','https://www.gog.com/game/reigns',0,'Nerial','Devolver Digital','Adventure',0,0,0),(1677919510,'Hero-U: Rogue to Redemption',0,0,0,0,0,'472e2b7544c4fea03dde8d131111ad73fb6db4852d444edec2dac2885c5f8275','9bc478aea1795f373bcd84f8e92888943a0b8cb9cfeedb67fbffa81a5a0292e3','herou_rogue_to_redemption','herou_rogue_to_redemption','https://www.gog.com/game/herou_rogue_to_redemption',0,'Transolar Games','Transolar Games','Adventure',0,0,0),(1679459761,'Rezrog',0,0,0,0,0,'5f7d9d9a9639d95836e1e0b7b1d486379dbce88e637ddab494c0d45c6f4b529a','d4c3950eee1bc0ba8d4e3183466188887d4bafc9977daf570340d6f358284ddf','rezrog','rezrog','https://www.gog.com/game/rezrog',0,'Soaphog','Kasedo Games','Role-playing',0,0,0),(1680239891,'Vikings - Wolves of Midgard',0,0,0,0,0,'faa4415a313210a20a0160aaf0aabc896394b91de017e5ead3c783000fc2cf7c','9843cffe9c1036dea49c5bbe285314a026ec5638e6086006612d0bc0d4b1ae30','vikings_wolves_of_midgard','vikings_wolves_of_midgard','https://www.gog.com/game/vikings_wolves_of_midgard',0,'Games Farm','Kalypso Media Digital','Role-playing',0,0,0),(1683385187,'Gekido Kintaro’s Revenge',0,0,0,0,0,'65329757cfe7622908b33b1fce313a485ef626a3b3696f52a9d4c5265f3da49d','0b0052029e418a52a3b5abdb896256cfc0553f2e23ad246377a5c9e6cc58de4e','gekido_kintaros_revenge','gekido_kintaros_revenge','https://www.gog.com/game/gekido_kintaros_revenge',0,'NAPS Team','NAPS Team','Action',0,0,0),(1685817496,'Galaxy of Pen and Paper',0,0,0,0,0,'b232b64c61daa55723b33db8a701056176d44a1abfe1f2ec532eca3c7ed6a618','566f110f4d1d74c341ac62996899bf4f50b3eb8e5aa513c81b1980807d2b8951','galaxy_of_pen_and_paper','galaxy_of_pen_and_paper','https://www.gog.com/game/galaxy_of_pen_and_paper',0,'Behold Studios','Behold Studios','Role-playing',0,0,0),(1686426343,'A Hat in Time',0,0,0,0,0,'8d18908bc07e6580a6e478eb09dc1622aeac014ede4c567ab94c76c5f7a6fe63','e1ffdc1e4b042cc9098c71807aa1c8be5182e86964d001386e4883cf61cf96bc','a_hat_in_time','a_hat_in_time','https://www.gog.com/game/a_hat_in_time',0,'Gears for Breakfast','Gears for Breakfast','Action',0,0,0);
INSERT INTO `games` VALUES (1687250736,'SIMULACRA',0,0,0,0,0,'e84e14b03a7b141a8cc348a75484870464f693a9e6dcc24691d1a286f171f25a','eca691e5e732e05a5b8c43f48baae7be28f3c45611fa32728369bb55164b1878','simulacra','simulacra','https://www.gog.com/game/simulacra',0,'Kaigan Games OÜ','Kaigan Games OÜ','Adventure',0,0,0),(1688206338,'Political Animals',0,0,0,0,0,'debb7cc2096bf8dcad22aab75956795031c038bf307e7a02e4b8c2cea41d98d5','0ab4b0dc1134112b30c3bfbf5f2dafeb2f8126d13266eeca8f09fe66959ef6f6','political_animals','political_animals','https://www.gog.com/game/political_animals',0,'Squeaky Wheel','Positech Games','Strategy',0,0,0),(1689871374,'Butcher',0,0,0,0,0,'d7ae5f18e4039ccd4f89d0dfcc8a0de328a6b120cff7e5153c78f916232fb06a','ade3750830fc25aaca50515a7fefa5cd92e5e5bf2d2e388b01564ca844a7bdb6','butcher','butcher','https://www.gog.com/game/butcher',0,'Transhuman Design','Transhuman Design','Action',0,0,0),(1690645681,'Between the Stars',1,0,0,0,0,'705e83fa4d6679745ee1fb5661d954ba65baf7952d33d819b138672283eac2b3','33fc4b75cde351bd695b73158ef2cb426d3ad7c95820c6bc4bc27dfac5c47c0b','between_the_stars','between_the_stars','https://www.gog.com/game/between_the_stars',0,'Isolated Games','Poysky Productions','Action',0,0,0),(1691943717,'Skylar & Plux: Adventure On Clover Island',0,0,0,0,0,'d57fdf2478e6d58737447f78c4e87d65f663b399e01f0cdd73c016b6cd9bca30','749234e6b943b76499fd00689f6a853fcd68cf694e0b3e4ca11d39b07f51c71a','skylar_plux_adventure_on_clover_island','skylar_plux_adventure_on_clover_island','https://www.gog.com/game/skylar_plux_adventure_on_clover_island',0,'Right Nice Games / Grip Digital','Grip Digital','Action',0,0,0),(1701588882,'The Humans',0,0,0,0,0,'f710090214e13a63fe8d542149b684c1fe0842045cef1d4422a406c1f73e6ead','ce2e0db181c079b62b6c52424a4692c40a253837a4bd0d84ba9d5354f6828619','the_humans','the_humans','https://www.gog.com/game/the_humans_bundle',0,'Imagitec Design','Piko Interactive','Adventure',0,0,0),(1703478259,'Tangledeep',0,0,0,0,0,'832ad4a13d2c9c816a62b64f474b9564dd9c69fe34b34db40727011a71e9b298','41fe38961559b49662ea408db7c4981925175a34f9bf62a51da1dd10429029a4','tangledeep','tangledeep','https://www.gog.com/game/tangledeep',0,'Impact Gameworks','Impact Gameworks','Role-playing',0,0,0),(1705092808,'Train Valley 2',0,0,0,0,0,'ec4cf418a1f9f607c8026158e07fa5558b1c9d2d50930c30b28e5b0fc1ff6838','3869b8e2030752edab7dd2696c82682f36165df2256b81dc4af2659badd2d1cf','train_valley_2','train_valley_2','https://www.gog.com/game/train_valley_2',0,' Alexey Davydov, Sergey Dvoynikov, Timofey Shargorodskiy','Flazm','Simulation',0,0,0),(1706049527,'Warcraft: Orcs and Humans',0,0,0,0,0,'a6fc8adbc23efc10821c9af3459a874e1c104b73f27aa0b88185be419752e79c','e0b9ec1aed6d47e32137900b91d90d52ec6b5edcbb766fc59bbe0f703a451458','warcraft_orcs_and_humans','warcraft_orcs_and_humans','https://www.gog.com/game/warcraft_orcs_and_humans',0,'Blizzard Entertainment, Inc.','Blizzard Entertainment, Inc.','Strategy',0,0,0),(1706509320,'Zenith',0,0,0,0,0,'e8f6d43a3d05dcdc8df4755b8f159fe94e4af5edee4bac13356bda648d2edd99','ceb94d37fba12851da41d1dab42afc870e8d1ebae34ce75508498f8b1548d94f','zenith','zenith','https://www.gog.com/game/zenith',0,'Infinigon','Plug In Digital','Role-playing',0,0,0),(1707144504,'Holy Potatoes! We\'re in Space?!',0,0,0,0,0,'68cf4699be700f8227f9173dafda3589259d62b7816cdc369f49198dc7c986a2','96f11f97a3a6ab669978216dbd2cef51ed2114b3c155b529819af967d201c0a7','holy_potatoes_were_in_space','holy_potatoes_were_in_space','https://www.gog.com/game/holy_potatoes_were_in_space',0,'Daylight Studios','Daedalic Entertainment','Simulation',0,0,0),(1707288232,'Sudden Strike: Resource War',0,0,0,0,0,'4b9fe946fae321358d49c34f67f042a561c12d99d35304edef4a28442052b495','eff2372106ef52218a8e7b1c89c2fc75770114824142c98979a2a3106dd396b9','sudden_strike_2_resource_war','sudden_strike_2_resource_war','https://www.gog.com/game/sudden_strike_gold',0,'Fireglow','Kalypso Media Digital','Strategy',0,0,0);
INSERT INTO `games` VALUES (1710761915,'Spec Ops: The Line',0,0,0,0,0,'7b1e0ac15607877fcdcb7f0d26c34d21ed252d6a7f3fdcee2b2565050333dc3b','edff1bb4a002a8f28adc55cd36376b3a7831d9396783a509a6723b72bb735f88','spec_ops_the_line','spec_ops_the_line','https://www.gog.com/game/spec_ops_the_line',0,'YAGER','2K Games','Action',0,0,0),(1712015558,'Underhero',0,0,0,0,0,'7b428d17b041ae65f599c2d641320b2735e4f673db275bf433a06f350919c924','2d9b39a7db337c0d1f44eb392683cfc4272df12ec39989bad001e572ea1348e8','underhero','underhero','https://www.gog.com/game/underhero',0,'Paper Castle Games','Paper Castle Games','Adventure',0,0,0),(1712729523,'Cook, Serve, Delicious!',0,0,0,0,0,'bccbb73a0dcf25c15da8aff79cad749cabfbfa13be070e58a16bf3cfb012cd3e','5b3000e70c762fc3769f9bf3c4fc686b442f47086059e1f3efa42b661bc3b1d5','cook_serve_delicious','cook_serve_delicious','https://www.gog.com/game/cook_serve_delicious',0,'Vertigo Gaming Inc.','Vertigo Gaming Inc.','Simulation',0,0,0),(1714577252,'Close Combat 4: The Battle of the Bulge',0,0,0,0,0,'8e83d67772dd8fafc6ab0da0ea562b68673a84e0567d2bbf71b1a9df1a4bf074','ae940be5166ae17ff000718ac1e1c34a2c77f988cff02f6338712a83489f0e9b','close_combat_4_the_battle_of_the_bulge','close_combat_4_the_battle_of_the_bulge','https://www.gog.com/game/close_combat_4_the_battle_of_the_bulge',0,'Atomic Games, Inc.','Slitherine Ltd.','Strategy',0,0,0),(1718630725,'Pan-Pan',0,0,0,0,0,'aab45e5ddb6de675191149bad5395e21758493b3e9e9484d17f091cffbd82b51','5e343dbd0c86dd4575051b16b82fa8e00d7da2e8da7564f05c461de188a2a462','panpan','panpan','https://www.gog.com/game/panpan',0,'Spelkraft','Might and Delight','Adventure',0,0,0),(1719198803,'Kingdom Come: Deliverance',0,0,0,0,0,'3d3a31a86183d7e6f9f31a160b7ee37810837746f0b64e0d3e8165bb38466894','576afe91e2a284fae85b5179687b58c7e91ed74f8611bec00280e6ba7a3df436','kingdom_come_deliverance','kingdom_come_deliverance','https://www.gog.com/game/kingdom_come_deliverance',0,'Warhorse Studios','Warhorse Studios','Adventure',0,0,0),(1719675091,'True Fear: Forsaken Souls',0,0,0,0,0,'a655eb5c230378fed02eb5747a7969fa31babb5468999c056c18a6209d1bafb0','696916f28eba17b924d0ca26f626644b1d896212a01ee9a0365cf737ddb147b9','true_fear_forsaken_souls','true_fear_forsaken_souls','https://www.gog.com/game/true_fear_forsaken_souls',0,'Goblinz','Digital Lounge ','Adventure',0,0,0),(1720767912,'Transport Fever',0,0,0,0,0,'2808b3989c282347c502210bbd067b2fd1520363bf42ccdf10804ce1f0e348c2','20700a0fcc80a371bcfc290745e817f108cfd4a26c75722e29fde23d2a4fbeff','transport_fever','transport_fever','https://www.gog.com/game/transport_fever',0,'Urban Games','Good Shepherd Entertainment ','Simulation',0,0,0),(1720779330,'Wandersong',0,0,0,0,0,'1567ba1dd62ca4e78fdd80193942df23450daa447e69e95ec39a19d3bed20b78','2372bdd03ab07dd611dde5c88b5bd35856eb580be254e0a07b0d616db87923e9','wandersong','wandersong','https://www.gog.com/game/wandersong',0,'Greg Lobanov','Greg Lobanov','Adventure',0,0,0),(1724299977,'LIMBO',0,0,0,0,0,'7f8f3e94471dd27e1c83e0b95cffd5e4d63a025ea3fbd0731efb5652066a8914','32d14bdf3f5b719ef06d9ae2d895d7c2bdd2896fa08cb56d25529753f3d0c899','limbo','limbo','https://www.gog.com/game/limbo',0,'Playdead','Playdead','Adventure',0,0,0),(1725796924,'Blazing Chrome',0,0,0,0,0,'a7264a09a83a98bb70ec777a40d8cc012b7dbb3d86ba136796755c7372837b02','37f7cf1356a95f63e67d2128b879006e87bc0fe2d736c495aa9b5ec304b98d8b','blazing_chrome','blazing_chrome','https://www.gog.com/game/blazing_chrome',0,'JoyMasher','The Arcade Crew','Shooter',0,0,0),(1727534143,'Gato Roboto',0,0,0,0,0,'f3a053b8ed0024c0f03263b90283bc434d8b11e891fb2981966a4d424338fa43','58b8888d40b0d7a0909fa3d9136b5f926c1fce15087024ecffe5f4c27185b429','gato_roboto','gato_roboto','https://www.gog.com/game/gato_roboto',0,'doinksoft','Devolver Digital','Action',0,0,0);
INSERT INTO `games` VALUES (1731168163,'Hard Truck 2: King of the Road',0,0,0,0,0,'3ae1e8b0e4e06272daa0a6c442100f76d4ceac3ffb9a55905a268a823b8c1d07','65ae97dc9c6b72b092b783f81a62d38d430aa62d302685b2788065755274c290','hard_truck_2_king_of_the_road','hard_truck_2_king_of_the_road','https://www.gog.com/game/hard_truck_2_king_of_the_road',0,'SoftLab-Nsk Ltd.','1C Entertainment','Racing',0,0,0),(1731318270,'LEGO® Star Wars™ - The Complete Saga',0,0,0,0,0,'de223675d11d6298a77cbc289c56096577f3fde8eb40a3f1a5a04ed319f61e95','097696be04631b57de39d650d8646c4e73348c1a02d40fbcb6173adaa51d7984','lego_star_wars_the_complete_saga','lego_star_wars_the_complete_saga','https://www.gog.com/game/lego_star_wars_the_complete_saga',0,'Traveller\'s Tales','Disney','Action',0,0,0),(1733124578,'Doom 3: BFG Edition',0,0,0,0,0,'7d4e446447a56f19775120ea16fea67dc184394b908149c441fbbc6021e12970','f69b5ee31cda273579f6a0fbf332b870ff834a17c5783aadcaff8314182a7553','doom_3_bfg_edition','doom_3_bfg_edition_game','https://www.gog.com/game/doom_3_bfg_edition',0,'id Software','Bethesda Softworks LLC','Shooter',0,0,0),(1733644340,'Blade & Bones',0,0,0,0,0,'f8c4aab1c68d8a2a42caced0c4414b75be47fb24320c6809b831b483902b2f6c','b345fc5e30a87cb6688ce04aa03a0708ac4c1bda469fd6595689880888555e48','blade_bones','blade_bones','https://www.gog.com/game/blade_bones',0,'Coffee Addict Studio','Coffee Addict Studio','Action',0,0,0),(1733684424,'Avernum 3: Ruined World',0,0,0,0,0,'3a965f94009d90bf53718a5d0ed5f873bfbb0138c4a0b5901ea76d1f132bfd01','c52b74f2239ce37c1d801b93d5ad90174b71337a6b69864c77d477bf075dc496','avernum_3_ruined_world','avernum_3_ruined_world','https://www.gog.com/game/avernum_3_ruined_world',0,'Spiderweb Software','Spiderweb Software','Role-playing',0,0,0),(1736537203,'FAR: Lone Sails',0,0,0,0,0,'d27152e79189024693bf67cc04995d80e1a2cad7a6ae232ae285a1b47a1fd815','2b28c62cc70c6a5724252b24b723e149f57b2d8483073d3a863a671c8b645cbe','far_lone_sails','far_lone_sails','https://www.gog.com/game/far_lone_sails',0,'Okomotive','Mixtvision','Adventure',0,0,0),(1739650883,'Battle Chef Brigade Deluxe',0,0,0,0,0,'85334af2d4e539571ed1fafdb90c4995b33520fb0474a22da4961a3080e7d168','c5cf1be13ea204695e360116ebc46db2de232886f80238aaeb718c9c68b249da','battle_chef_brigade','battle_chef_brigade','https://www.gog.com/game/battle_chef_brigade',0,'Trinket Studios','Adult Swim','Action',0,0,0),(1740490644,'The Lion\'s Song',0,0,0,0,0,'56516bae68dda7d8f2433a4835c36e1a046c0bcce049ae6a250461e7a3c2ee28','69ec49a4c68ae5b5f5ed3479f14c857114bba73fadf055083c0f91b23f76874d','the_lions_song','the_lions_song','https://www.gog.com/game/the_lions_song',0,'Mi\'pu\'mi Games','Mi\'pu\'mi Games','Adventure',0,0,0),(1741685922,'Swords & Souls: Neverseen',0,0,0,0,0,'5ff312df3850b04be9e3eb8ffdaa4e20f942d75759bf6306b805847f6e560c31','195b860a53d3254cdca08f7824e102085b65d8f93007c286bb41b0e96fa9c6c3','swords_souls_neverseen','swords_souls_neverseen','https://www.gog.com/game/swords_souls_neverseen',0,'SoulGame Studio','Armor Games Studios','Role-playing',0,0,0),(1744082009,'Order of Battle: World War II',0,0,0,0,0,'f7037f6ae49e69f8d3df88b35c631aeae49998b02afa5666eb9f730d641a5bae','97b8fa6a2baaa111d960bbccdbe417393342372214c5a0a8f376b8dda17ba7ba','order_of_battle_world_war_ii','order_of_battle_world_war_ii','https://www.gog.com/game/order_of_battle_world_war_ii',0,'The Artistocrats','Slitherine Ltd.','Strategy',0,0,0),(1745746005,'Detective Gallo',0,0,0,0,0,'a9a0766a59e1397a4fb270f74f2fe577153cc65e2228412de2e69b9fc7339dd1','a264bb5f56aa596db54033387cdb2718eb1a40ac4670454f2c41a884f24d6f7f','detective_gallo','detective_gallo','https://www.gog.com/game/detective_gallo',0,'Footprints Games','Adventure Productions','Adventure',0,0,0);
INSERT INTO `games` VALUES (1746700646,'Neverwinter Nights: Enhanced Edition',0,0,0,0,0,'661c042b4d2a6dbc9bd415a6c65455753e857bbce3b8b4122ab9af854fed8fe1','2a4c6f6c65d4f4850929a44056fe230e7e3131d0b6d53bd67676190891fb8be6','neverwinter_nights_enhanced_edition','neverwinter_nights_enhanced_edition','https://www.gog.com/game/neverwinter_nights_enhanced_edition_pack',0,'Beamdog','Beamdog','Role-playing',0,0,0),(1747559526,'Drive on Moscow',0,0,0,0,0,'ca2fbd9c87db52d65f19c6f22318f2597b0d722aae34f9a27c45e8c476e8753e','52460cf4bbc78101ac0ddaa198e6780ae57b69c67bc36eb3cd9d37ff88e14397','drive_on_moscow','drive_on_moscow','https://www.gog.com/game/drive_on_moscow',0,'Shenandoah Studio','Slitherine Ltd.','Strategy',0,0,0),(1748335600,'Oh...Sir!! The Insult Simulator',0,0,0,0,0,'ec6ca7163564516a1f3e877f26f30623ced54e98f5b3ff0ae6437f12ed5f1231','292f5cd4ac549818eebab24120d4f36505206c7d25c848a4a5fdbec476ae2de4','ohsir_the_insult_simulator','ohsir_the_insult_simulator','https://www.gog.com/game/ohsir_the_insult_simulator',0,'Vile Monarch','Good Shepherd Entertainment ','Simulation',0,0,0),(1748436321,'Warhammer 40,000: Armageddon',0,0,0,0,0,'3699d67a4a910fb11e5f1ab9b3f12b987e2c04dc4b84173e3a990d745db1f47c','c69ebd29e850902f4003efd4431cb0628238aca627e87d44f8f0dbb742817d82','warhammer_40000_armageddon','warhammer_40000_armageddon','https://www.gog.com/game/warhammer_40000_armageddon',0,'Flashback Games/The Lordz Games Studio','Slitherine Ltd.','Strategy',0,0,0),(1748855533,'Sunrider: Mask of Arcadius',0,0,0,0,0,'5ef5c4127eeade8aa1e26b878c05108b5e9b7fd338c2af88f0ece7dbbb99bdbb','b8f6e9c562a0ff889a1c6ea9abc664fd2df0fd92671a380eaf1b010deaed1132','sunrider_mask_of_arcadius','sunrider_mask_of_arcadius','https://www.gog.com/game/sunrider_mask_of_arcadius',0,'Love in Space','Sekai Project','Strategy',0,0,0),(1749614448,'The Raven Remastered',0,0,0,0,0,'2fde7ca8c3a6a9f10fd0ee1ce7a869e85cf67433a9caa7e2d21c99a40f3ae1ea','c877f90e10092450ee828398b3208e0baa58eab38698c6ff0d2c79cfc6639541','the_raven_remastered','the_raven_remastered_game','https://www.gog.com/game/the_raven_remastered',0,'KING Art','THQ Nordic GmbH','Adventure',0,0,0),(1751048018,'Bubsy: The Woolies Strike Back',0,0,0,0,0,'ec5923b2a51f35fa56c978bdbb67f0ed5a3208372c3b40ba01ea39e2bd08f080','22ab28595df212d2fb32ded3efe6b97f47d43c026ab759585a84cc3b74bf41e7','bubsythewooliesstrikeback','bubsythewooliesstrikeback_game','https://www.gog.com/game/bubsythewooliesstrikeback',0,'Black Forest Games','Accolade','Action',0,0,0),(1752654506,'BioShock Infinite Complete Edition',0,0,0,0,0,'35cd661ed60c46beb5a99a744f6e70ab12c0b4055a92028ef0b2460ff09e6962','9a77ce5645939a707c3f73788cff382832d4ffc9831ec175c2dbfdecaaabd1f0','bioshock_infinite','bioshock_infinite','https://www.gog.com/game/bioshock_infinite',0,'Irrational Games','2K Games','Shooter',0,0,0),(1752911333,'My Memory of Us',0,0,0,0,0,'ee9880d55bc527273f727844470d7b6c295b61d57edff2abff7d66e4bcc1d652','82ffdfdcedbd7edf1b226dafe8ab7bc7fdca98c2b555b9c3690ecbd6c26d131b','my_memory_of_us','my_memory_of_us','https://www.gog.com/game/my_memory_of_us',0,'Juggler Games','IMGN.PRO','Action',0,0,0),(1754618537,'TANGLEWOOD®',0,0,0,0,0,'0ade864ff2fccb84a010d630e550b6db8491c7afd1e79ab668ee15e3e0d1767d','75d6b93dd231ed03307c9f7292089854f5008d532d5ad653f9cfb929372c6078','tanglewoodr','tanglewood','https://www.gog.com/game/tanglewoodr',0,'Big Evil Corporation','Big Evil Corporation','Adventure',0,0,0),(1756411154,'Ash of Gods: Redemption',0,0,0,0,0,'cf66371c8170cdf6523d882c78fbe2b56c071a875cb48e58156a90cebacc05e7','512c100cf01ed3d5e1bcc127e7b47cad88507f52d12fa105d2c168db6197e1ca','ash_of_gods','ash_of_gods','https://www.gog.com/game/ash_of_gods',0,' AurumDust',' AurumDust, WhisperGames','Adventure',0,0,0),(1756630297,'Runner3',0,0,0,0,0,'2fdc1f52937259854e93dccf64a571bb01635fba9e93c3e4b090541761ec8195','0819d76c2744b583e2db34bb3ca6bebf5ce38ffc1d5f3a4a471b9694b534c324','runner3','runner3','https://www.gog.com/game/runner3',0,'Choice Provisions','Choice Provisions','Action',0,0,0);
INSERT INTO `games` VALUES (1757179626,'Hitman: Absolution',0,0,0,0,0,'6f11f7a9ddfa5aca0cdbdeaaa4200e691f2560432d6e9ab555007d0125ac8e77','bc1add71b0bffaddfccd6610b19c7497e45e14a959b5633604bb0bbdfb3aebd9','hitman_absolution','hitman_absolution','https://www.gog.com/game/hitman_absolution',0,'Io-Interactive','Io-Interactive','Action',0,0,0),(1758409215,'Need to Know',0,0,0,0,0,'a2ee54cd25888544b250d8a075ad641b60e7cf53928bd674a7605cd81505a7d3','d5cb49056c8105527340a979df09ee8d9a4c3ce3be67a1b05f8349485da47dff','need_to_know','need_to_know','https://www.gog.com/game/need_to_know',0,'Monomyth Games','Monomyth Games','Simulation',0,0,0),(1760463998,'The Dame Was Loaded',0,0,0,0,0,'a9f94e3ffeb148a0e40cfe8aecfc1bb7daf1b8485ab8090f4982d861b70474c1','3d20efeb1b0776a03b71a18d36479fb56ff7466d13a39d293ea238abfe9eab32','the_dame_was_loaded','the_dame_was_loaded','https://www.gog.com/game/the_dame_was_loaded',0,'Beam Software','Piko Interactive','Adventure',0,0,0),(1760534591,'Sid Meier\'s Civilization IV®: The Complete Edition',0,0,0,0,0,'37ac843afc2b6d5f3b3b600483948cfc0f849a7c20a95adfcefe5c2b73caa4e7','ba4c385be00d666b6818bc8fcf803638a37a3ba33f491ed87f3b8f2bb125db19','sid_meiers_civilization_iv_the_complete_edition','sid_meiers_civilization_iv_the_complete_edition','https://www.gog.com/game/sid_meiers_civilization_iv_the_complete_edition',0,'Firaxis Games','2K Games','Strategy',0,0,0),(1762800738,'Leo the Lion',0,0,0,0,0,'48dd6f2a32a094e19e65439f638f0c2affda99903c016cb3255453fca46d6b5f','7e00eed765eee8b73ae354832be2e64efdf67f519a2cfa4ebb14c51c57ff1d73','leo_the_lion','leo_the_lion','https://www.gog.com/game/leo_the_lion',0,'Leryx Longsoft','Xi4G','Adventure',0,0,0),(1765791028,'Asura',0,0,0,0,0,'c91f1cbc87537a8a2f7f3e8252d8aacf558947964bdd0b41e38c8dcaa4e9ad21','46c75ab6ef79f1b606fdde9cfadfbd543ebcc19a796ae3889154647640571eac','asura','asura','https://www.gog.com/game/asura',0,'Ogre Head Studio','Ogre Head Studio, Coconut Island Games','Action',0,0,0),(1766413869,'Homeworld: Emergence',0,0,0,0,0,'ea7dbc23ebbb95f201a6199ae914ba87e8fc9d984909180c3dcc08a265c84394','f14cd7ec4d987b2e1e1c131b037128faa8a7e441a12d84a2536f5cbc1039801b','homeworld_emergence','homeworld_emergence','https://www.gog.com/game/homeworld_emergence',0,'Gearbox Software','Gearbox Software','Strategy',0,0,0),(1766899243,'Myst III: Exile',0,0,0,0,0,'6c424621b7fc2b7e7dd1a761b7a0273d77f4606a963bb50beee8a5c021534988','2ba7c8c6634b7902aa47140bbae7f8292a569d2d65f170a2d6f20571fa6510a3','myst_3_exile','myst_3_exile','https://www.gog.com/game/myst_3_exile',0,'Presto Studios','Cyan Worlds','Adventure',0,0,0),(1767763090,'Golem',0,0,0,0,0,'68eb036a9597168b76828994ebdd4fd755a6f31d96c85c81930479c2bd4fb65e','0c1b6c5c24cad10d9e637377046eff7038904b081243bb4ad464ccb163729a9e','golem','golem','https://www.gog.com/game/golem',0,'Longbow Games','Longbow Games','Action',0,0,0),(1768228212,'Enigmatis 3: The Shadow of Karkhala',0,0,0,0,0,'64c26ef524cb37a6fe7fd52b1daa5dd5989d2be44e0e228f2b9fc49da69fc475','9dc409923a1f44b2e7a15f35e3b7a7d0bf9b8a65a31071a6d68b32c501c2dd67','enigmatis_3_the_shadow_of_karkhala','enigmatis_3_the_shadow_of_karkhala','https://www.gog.com/game/enigmatis_3_the_shadow_of_karkhala',0,'Artifex Mundi','Artifex Mundi','Adventure',0,0,0),(1769415595,'Balrum',0,0,0,0,0,'242e80f2210c5f938e6c3b95f4e70dc5d5eeb9551c8600d01534c97222cd5008','91f51a8126ed6bd55aee5b8fd965cf6e441592e489585d6e68f6e10da0debb0f','balrum','balrum','https://www.gog.com/game/balrum',0,'Balcony Team','Balcony Team','Role-playing',0,0,0),(1769957642,'Metal Fatigue',0,0,0,0,0,'b0242dccfa63a167487d230720182b8d2b9a9c5dca419279c29ff5a15fa9c147','a8325e63b51958c1f040f2d8e3ee82e00f8f0593b6067450e5b46661a56ba9a0','metal_fatigue','metal_fatigue','https://www.gog.com/game/metal_fatigue',0,'Zono Inc.','Night Dive Studios','Strategy',0,0,0);
INSERT INTO `games` VALUES (1770462332,'Monkey King: Master of the Clouds',0,0,0,0,0,'ba037635693d7ce12ebac1e3a9424636eb7f4ce72a3f7234cb02eacf7f6a4afd','c6ff149350d9475ff3600fe3f371f5a10b296443977727bb4909effe7b1c1664','monkey_king_master_of_the_clouds','monkey_king_master_of_the_clouds','https://www.gog.com/game/monkey_king_master_of_the_clouds',0,'Starfish-SD Inc','Retroism','Shooter',0,0,0),(1770939110,'Neon Chrome - Arena',0,0,0,0,0,'94c0cf144549bb665d00929dc4c0411b750ed4fd216246212e11634dd28e24bc','cbea49484f550b06e194711dcc593d47a1476302201d5ea3c5bee9e3af3f32e7','neon_chrome_arena','neon_chrome_arena','https://www.gog.com/game/neon_chrome_arena',0,'10tons','10tons','Shooter',0,0,0),(1771268779,'Sunless Skies',0,0,0,0,0,'810abe64dff4af0583ee22fcd0500087415eb74d489fb91b3d3ce71befd2b0e4','3b92780d1899de2fbc9a64f5bfa351707bbe2cd7bedd635f74a0fcfd313fda51','sunless_skies','sunless_skies','https://www.gog.com/game/sunless_skies',0,'Failbetter Games','Failbetter Games','Adventure',0,0,0),(1774970049,'Strategic Command WWII: War in Europe',0,0,0,0,0,'982b5bc9c070ce6cee8ad5fd545a4ecd14deac8c897182a8fe3cd426675697db','2cd37cf22035294e5c63cc450f3f6dfcc2af197dd04f90870fcfc11abe19662e','strategic_command_wwii_war_in_europe','strategic_command_wwii_war_in_europe','https://www.gog.com/game/strategic_command_wwii_war_in_europe',0,'Fury Software','Slitherine Ltd.','Strategy',0,0,0),(1775067436,'Banner Saga 2',0,0,0,0,0,'9c30d99504a47f8bfb6188f3b7330a10d158c96c61aa277724c4483e7114eff8','afbfff75f8f9488fb7deda935bde9515fb965349418d17de27a74e173708effe','banner_saga_2_the','banner_saga_2_the','https://www.gog.com/game/banner_saga_2_the',0,'Stoic','Versus Evil','Strategy',0,0,0),(1778055342,'Lords of the Fallen Game of the Year Edition',0,0,0,0,0,'2ea0c4180a881c4349c7b53377483760b18131f8672366e12701cd3c48edf5e6','76c86e93330698a6b683c700af8a165f2d330bc83e69bb679912c9b3110227bf','lords_of_the_fallen_game_of_the_year_edition','lords_of_the_fallen_game_of_the_year_edition','https://www.gog.com/game/lords_of_the_fallen_game_of_the_year_edition',0,'CI Games, Deck 13','CI Games','Role-playing',0,0,0),(1780262881,'Staxel',0,0,0,0,0,'80744886c162744651a894b4bf60aff12b78460cf16a9c32dcbe227ee8f3c153','edab6c97b3d31bba7a85350788c812c237258a85028c3dc64feada9416016883','staxel','staxel','https://www.gog.com/game/staxel',0,'Plukit','Humble Bundle','Simulation',0,0,0),(1780408621,'Graveyard Keeper',0,0,0,0,0,'966ee212bebcc4e4390a00a4ec769a3c3db09760b61c800ba1455df72d4185f1','7543b6bcc5cab1890181dcbaddd8702476e73d8cc043cab8f7d473d8017c0ff8','graveyard_keeper','graveyard_keeper','https://www.gog.com/game/graveyard_keeper',0,'Lazy Bear Games','tinyBuild','Adventure',0,0,0),(1781942763,'Swag and Sorcery',0,0,0,0,0,'ee652f6015b438a6fb5a61f1749bacc00531d6d5fd4fe745e2f352047191e54f','d8aa473068005fe92ca17f6af470e50e9c7f65280104ee1267ffd28256e0cf78','swag_and_sorcery','swag_and_sorcery','https://www.gog.com/game/swag_and_sorcery',0,'Lazy Bear Games','tinyBuild','Role-playing',0,0,0),(1786054782,'Attack of the Earthlings',0,0,0,0,0,'3e2d14238ce8622cc3f3c8974a3e669656b27432d00935011f0cb90cc7813832','b30bb88ee89964eb02f525d33aa16395f3105329dea79a05015d93ab859ef0c2','attack_of_the_earthlings','attack_of_the_earthlings','https://www.gog.com/game/attack_of_the_earthlings',0,'Team Junkfish',' Junkfish Limited','Strategy',0,0,0),(1788120505,'Descent: Underground',1,0,0,0,0,'7d6651cd6dcde85a305235ea573b84c5e6d43f0d1737782e35ab88f2f4f9a24c','1599d6dd824bb3fcedf207c6aae18980e9c26f04eda126359eccd25f87e40ea2','descent_underground','descent_underground','https://www.gog.com/game/descent_underground',0,'Descendent Studios','Descendent Studios','Shooter',0,0,0),(1788509829,'Pillars of Eternity II: Deadfire',0,0,0,0,0,'2e6a071865dabab3bb409e3c72bd4eee0a0d7255e721037c2ebb0e97d5f93ecc','efcedc73fe9813ce1934a9dcbe52fab0b4400339e27de0a64286d69a5b3e6cf0','pillars_of_eternity_2_game','pillars_of_eternity_2_game','https://www.gog.com/game/pillars_of_eternity_2_game',0,'Obsidian Entertainment','Obsidian Entertainment','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1792718486,'Titanic: Adventure Out of Time',0,0,0,0,0,'0ebde29ffe5bcd1427ec4905ba2a51e13375537613d82aa13698fa99d2cdbdae','4b9cb232a7a754185e48c530f142b62722afcd5736009cc265c83bb19ad14fc7','titanic_adventure_out_of_time','titanic_adventure_out_of_time','https://www.gog.com/game/titanic_adventure_out_of_time',0,'Cyberflix Incorporated','Night Dive Studios','Adventure',0,0,0),(1796017250,'Brothers in Arms: Hell\'s Highway™',0,0,0,0,0,'2c40ed9b5d199396d80153ad8c4e7200cfcfc23c0131650fec948420d6a95bba','68142abe7d50aeae492ea1949356d3533a83ed08de74ed55a1adcddf06de1e40','brothers_in_arms_hells_highway','brothers_in_arms_hells_highway','https://www.gog.com/game/brothers_in_arms_hells_highway',0,'Gearbox Software','Ubisoft','Shooter',0,0,0),(1797227701,'Cossacks 3',0,0,0,0,0,'287b5895cd23924f3425b91c983ef97361d4b4123d989a0d8acd5f301d377464','9d6e088159e4599647dc582c89f2e0435fc2ec96cf1ad4e9de4d810415073704','cossacks_3','cossacks_3','https://www.gog.com/game/cossacks_3',0,'GSC Game World','GSC Game World','Strategy',0,0,0),(1797331296,'Barony: Blessed Addition',0,0,0,0,0,'cf55d5db5c178c3cccdecd53e54d7281cb75023a5c5aec95703ba5cee03fd5f3','857c57972dc8f119b57c5e43ab3381403da39857d709dbce4290fdc66f75ef98','barony_cursed_edition','barony_cursed_edition','https://www.gog.com/game/barony_cursed_edition',0,'Turning Wheel LLC','Turning Wheel LLC','Role-playing',0,0,0),(1797575342,'Battlestar Galactica Deadlock',0,0,0,0,0,'0d0520debe9ee428cecb01a7b086d9e2dd456ba746a54b1e27e541650ee2d76f','08b4b45aeb407029d93cf62c1d80d27f326d529ef61030e4bfcdbaeabe35912c','battlestar_galactica_deadlock','battlestar_galactica_deadlock','https://www.gog.com/game/battlestar_galactica_deadlock',0,' Black Lab Games','Slitherine Ltd.','Strategy',0,0,0),(1797747105,'The Legend of Heroes: Trails in the Sky the 3rd',0,0,0,0,0,'71305b54c010c35cc9af300091b3e5bf6aca29d3f6b06015c81b499c769a90d4','96c0ee43a84b6d4e07a18aa86187d0b64c5514cd8289e69bd9054757e5fc82b9','legend_of_heroes_trails_in_the_sky_the_3rd_the','legend_of_heroes_trails_in_the_sky_the_3rd_the','https://www.gog.com/game/legend_of_heroes_trails_in_the_sky_the_3rd_the',0,'Nihon Falcom Corporation','XSEED Games','Role-playing',0,0,0),(1798624846,'Monster Jam Steel Titans',0,0,0,0,0,'27c3e7bbb0a77389dde04ce848f94e06e5bf62ef533bbefb6e809f1a1213ce82','48859b0d3a4ba9118881b9a8b79278568ea4c167183c97b5e8e301a30603b4e3','monster_jam_steel_titans','monster_jam_steel_titans','https://www.gog.com/game/monster_jam_steel_titans',0,'Rainbow Studios','THQ Nordic GmbH','Racing',0,0,0),(1799540958,'Lock\'s Quest',0,0,0,0,0,'d061de2bf068cb81799a6a5ad77181def7a4484fa9a36d38257f4f0f5cd2166d','975b30412c299183a0493d3e4087eb8cd5fb071219d81ec91a38cf2b8b5da5e7','locks_quest','locks_quest','https://www.gog.com/game/locks_quest',0,'Digital Continue','HandyGames','Strategy',0,0,0),(1801442545,'Conga Master',0,0,0,0,0,'bea9f2c27443884a878aad370a9e7a5b705a8230ab0314f24d2998d101bac4c5','18e49a030908d03e18369bf42bf0ba58bb084cfb7f1958539dcbd3509bb5666f','conga_master','conga_master','https://www.gog.com/game/conga_master',0,'Undercoders','Rising Star Games','Action',0,0,0),(1803808607,'Solstice',0,0,0,0,0,'46b0d7c15fe75a75b8385bfcbe8699b1f7ee984fd2a0b5931df0d792f78c65fd','27528a8d31fb4296ee96da8697ae1d7a0e4a18fd4c27fb8bb72cad936bfb15aa','solstice','solstice','https://www.gog.com/game/solstice',0,' MoaCube',' MoaCube','Adventure',0,0,0),(1804802122,'Fictorum',0,0,0,0,0,'14dfa893d38302a4f609f8cd9bea96bab640541565ea5d1bf9a8998d41268c66','a82c62117ca56743ec53cf774fe5f52ef0845c87956f2b68947898494608d55d','fictorum','fictorum','https://www.gog.com/game/fictorum',0,'Scraping Bottom Games','Scraping Bottom Games','Action',0,0,0),(1807214820,'Helium Rain',0,0,0,0,0,'dca7d9d55eb53b17b1cbe5efa14af5ec7f6de294eb29fcff6bd3fa02ac4aa28a','c100d4466e84d1962a704ff817999397fdc398f33b2b0669fcfc9af138bdc86a','helium_rain','helium_rain','https://www.gog.com/game/helium_rain',0,'Deimos Games','Deimos Games','Simulation',0,0,0);
INSERT INTO `games` VALUES (1808582759,'Jazz Jackrabbit Collection',0,0,0,0,0,'fe603bb3642e8480e8ff6811eae82a2b5510237231b57e150b55105e8046634a','1ff88aad5423629f16f282481e4aa6e7c3cad9fe519e8f8aa395bde067280dc3','jazz_jackrabbit_collection','jazz_jackrabbit_collection','https://www.gog.com/game/jazz_jackrabbit_collection',0,'Epic Games','Epic Games','Adventure',0,0,0),(1809223221,'Crysis®',0,0,0,0,0,'aacb0bea127f11e66b0d9b7fb2aa798dff9e41472bc57f533eca5885fad96b75','111e2a61b9fdfa85675f0d72ca40c0a9825ab2c3ff2d8e00a55a16b999680075','crysis','crysis','https://www.gog.com/game/crysis',0,'Crytek Studios','Electronic Arts','Shooter',0,0,0),(1811173671,'Through the Woods',0,0,0,0,0,'01760899ff506ba78f5258743a17fc7285d759260979ee07faec62ff737a681d','14e74e37d116b1560c94a79e1732368421db391e5a3f3f0047e730372a9f6f91','through_the_woods','through_the_woods','https://www.gog.com/game/through_the_woods',0,'Antagonist','1C Publishing','Adventure',0,0,0),(1811651647,'BLAZING STAR',0,0,0,0,0,'3e15422faf7647cd86a215c5bcb0ff49b2d7260c513ffd4ab75df176a889de00','2fe8283997167f7655e69b671e67d32eb4d2a87151d29bb18abb33cde34a5902','blazing_star','blazing_star','https://www.gog.com/game/blazing_star',0,'Yumekobo','SNK CORPORATION','Action',0,0,0),(1811787702,'Prodigy Tactics',0,0,0,0,0,'8b71b85d8ca985a8308d1dd43d2ff69a359cdf09d8456a9fd992a771baa1c5ad','fdb812270498512c7e486ed595705e19746367dbc37b4375df6b5a4f87461fef','prodigy_tactics','prodigy_tactics','https://www.gog.com/game/prodigy_tactics',0,'Hanakai Studio','Forever Entertainment S. A.','Strategy',0,0,0),(1812631235,'Turmoil',0,0,0,0,0,'a0d176acfd8296299a0993cde334c9832b6143b4d0ac25bd679dff092990d060','df4d76ccf79291010abaedc5c11e902b9a3e19ef66838fc613440c18a5fdf572','turmoil','turmoil','https://www.gog.com/game/turmoil',0,'Gamious','Gamious','Strategy',0,0,0),(1813215380,'The Witch\'s House MV',0,0,0,0,0,'1e16ba7ebf967b3f4795a1469609d1cd724e05f54a5f12ac7efedb0a3b81e3c8','2e2ea6689910de85a555b9aa68ba343264efe12dc8c976d214b5ef7997445e5f','the_witchs_house_mv','the_witchs_house_mv','https://www.gog.com/game/the_witchs_house_mv',0,'Fummy','DANGEN Entertainment','Adventure',0,0,0),(1814467460,'Victory At Sea',0,0,0,0,0,'962e71767f45244aadcb5999a827fd9aa0fcdad46148a016329900da7b6d5320','83a2af13c84e47ce9d737b4d67d60382fdde194f37d2bfa44390edba1d5ce273','victory_at_sea','victory_at_sea','https://www.gog.com/game/victory_at_sea',0,'Evil Twin Artworks','Evil Twin Artworks','Strategy',0,0,0),(1814585271,'Mad Games Tycoon',0,0,0,0,0,'ef5e2d5ed4a96e268130adc757d56991df77d5afadf59d8d400d947f39532248','ece473cf71dcabd70d220d4cbeb5fcdf9e0d7b5b0a36ed499d6c1ad951b1d664','mad_games_tycoon','mad_games_tycoon','https://www.gog.com/game/mad_games_tycoon',0,'Eggcode','Eggcode','Strategy',0,0,0),(1815949873,'Orphan',0,0,0,0,0,'0673665645b41da187d82207d9d6c29e675da05788f880fb6dbcd031fe28cefe','16b32849e7991bf02880d4a8a021b5a820c687aa626ad55e4e0e9108e2297746','orphan','orphan','https://www.gog.com/game/orphan',0,'Windy Hill','2Dimensions','Action',0,0,0),(1816059595,'Mafia II: Director’s Cut',0,0,0,0,0,'dc14f7c4609bd284835bf7dfab0e547ca4c93bca7c0326274ba1c46e97351772','1f99482de3249cdced27ce97e475250af461c88eac7affd4c68ce3f8907241a6','mafia_ii_directors_cut','mafia_ii_directors_cut','https://www.gog.com/game/mafia_ii_directors_cut',0,'2K Czech','2K Games','Action',0,0,0),(1816205133,'Absolver',0,0,0,0,0,'bf84cd495169f05f9e4fbea1536fbdeb3c8b77fdfacda4d10a09a027daca4886','1fc090bbfbca6f2465ab452f9521356ec1e0979bca8e666978ad16715b9aeb5a','absolver','absolver','https://www.gog.com/game/absolver',0,'Sloclap','Devolver Digital','Action',0,0,0),(1816422575,'Cosmic Star Heroine',0,0,0,0,0,'218c084d90f108218d1c9f51ddc1e1cc82f452764dfd9b9d477f796c50dd5e18','1a943b2428165aac035cf7bf5402509ac094cfbff33d1f8e722489a2e3e73d12','cosmic_star_heroine','cosmic_star_heroine','https://www.gog.com/game/cosmic_star_heroine',0,'Zeboyd Games','Zeboyd Games','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1816849333,'SHOCK TROOPERS: 2ND SQUAD',0,0,0,0,0,'2a4818a7773e6f3c81c48e059f35590e24f8a1119864c58210e551626b446b0f','630af51b8ee1ddcc6035632444ff6473e43659efcfacc49f9b69d00eb892da84','shock_troopers_2','shock_troopers_2nd_squad','https://www.gog.com/game/shock_troopers_2',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(1817284607,'Speed Brawl',0,0,0,0,0,'8193be00638dc0dc2c5383da624fd5d8ca75795d5ed49b11f0bc16de3dcb1846','f49f2d93125a99752152f6f1c5496acbfd50fd8e162ff00b9c4c2cdd09d283a6','speed_brawl','speed_brawl','https://www.gog.com/game/speed_brawl',0,'Double Stallion Games','Kongregate','Action',0,0,0),(1817859666,'London Detective Mysteria',0,0,0,0,0,'3c1137bcb3182b2503e012277b70c45b11cc37c242404c6546620d61f50f3025','b5b3a3cb2968aec7c7ac6110b4e123ae604c549504f0a0922fe5d50a045483a8','london_detective_mysteria','london_detective_mysteria','https://www.gog.com/game/london_detective_mysteria',0,'Karin Entertainment','XSEED Games, Marvelous USA, Inc.','Adventure',0,0,0),(1819469826,'Hand of Fate 2',0,0,0,0,0,'52fc717228a2ed4a38974db33aa807816fdb5dc171bc3cef8eaf67df88059d82','3b37b185917ddf79e20e646498aa9c4b12e362fabf14157b58bbf1820c91dd12','hand_of_fate_2','hand_of_fate_2','https://www.gog.com/game/hand_of_fate_2',0,'Defiant Development','Defiant Development','Role-playing',0,0,0),(1822672814,'Megaton Rainfall',0,0,0,0,0,'4d103132dd42b4fcc639a63f7f97ef2f204ec726290bd7eaa93c187cb882a639','20431cc7feccdd9fab35e3de8233e24da3a81c627dd6fc509bf44dd0367b3d8e','megaton_rainfall','megaton_rainfall','https://www.gog.com/game/megaton_rainfall',0,'Pentadimensional Games','Pentadimensional Games','Action',0,0,0),(1823963095,'Tower 57',0,0,0,0,0,'70be499d30f691530881a893a1827cff02758ad11fdaa03bbd66169cb5471709','45989e33abaf730f133f2715aafb88593fafe2d74e3905d2c813480a6f7f4499','tower_57','tower_57','https://www.gog.com/game/tower_57',0,'Pixwerk','11 bit studios','Shooter',0,0,0),(1824112482,'Army Men: World War',0,0,0,0,0,'018fb0d72883cc44843202fdacb45dbd6203a0be8267970d396f40bcbd543a79','58bf86a8fd9e3cb6f4dad4c2c23940d418cd351eca445f68c08f35c9541b6956','army_men_world_war','army_men_world_war','https://www.gog.com/game/army_men_world_war',0,'The 3DO Company','2K Games','Shooter',0,0,0),(1824175646,'Aven Colony',0,0,0,0,0,'ae5246a29aa1549e57aaf23c74c422fed967774a6f51806d4d6c3a767b31d116','240abdd41ce9997ce0771c256508c77680ba1d5d17e48cbce7f39efd243cdb61','aven_colony','aven_colony','https://www.gog.com/game/aven_colony',0,'Mothership Entertainment','Team17 Digital','Strategy',0,0,0),(1825910123,'CHUCHEL',0,0,0,0,0,'7f5ede8a86d535b92cedf130bf3d304bf7ae2027cdd847bcda447c98cbf00816','2bc1f8dad82f17fee1e414171b46d894b82ef2905aac47cb3692406bf0791554','chuchel','chuchel','https://www.gog.com/game/chuchel',0,'Amanita Design','Amanita Design','Adventure',0,0,0),(1826669486,'Gary Grigsby\'s War in the West',0,0,0,0,0,'c8628d1505d9d6c4d348c793a1db6dcc2ce23548ec96b348b2cec4be55f926c1','8ddf548ab627e6b835ffecffc1dd3e09daec69c095cbb7af8f363c0525ee193d','gary_grigsbys_war_in_the_west','gary_grigsbys_war_in_the_west','https://www.gog.com/game/gary_grigsbys_war_in_the_west',0,'2by3 Games','Slitherine Ltd.','Strategy',0,0,0),(1828104558,'Soldier of Fortune: Platinum Edition',0,0,0,0,0,'1681b4bf531986b746c3fc8025aff26c56627fec5a9cd3a92653ca6bbce0eeb9','1295b455b62d50646094ced68f3f820df25d7e43a09b2b492ae09cd7021c6f68','soldier_of_fortune_platinum_edition','soldier_of_fortune_platinum_edition','https://www.gog.com/game/soldier_of_fortune_platinum_edition',0,'Raven Software','Activision','Shooter',0,0,0),(1828289583,'Titus The Fox: To Marrakech and Back',0,0,0,0,0,'9e7478b3ea03c57754bcf1623319c08069d77374ff0802c68778f4114cf5b73d','00885053d3bbfcf4a978ee0812d070542f990eaf64f820bcfda0024ad2d8f97b','titus_the_fox_to_marrakech_and_back','titus_the_fox_to_marrakech_and_back','https://www.gog.com/game/titus_the_fox_to_marrakech_and_back',0,'Titus Interactive','Interplay','Action',0,0,0);
INSERT INTO `games` VALUES (1828861545,'Guns, Gore & Cannoli',0,0,0,0,0,'560bc6d9d73b2f7a2968d59a2ee8a9cf3a6941628fddaad8c83a5a51c399c163','88ffaf4717ad18e488bc97d433300ae23430668bd2823b93b4b614f349c6a85f','guns_gore_cannoli','guns_gore_cannoli','https://www.gog.com/game/guns_gore_cannoli',0,'Crazy Monkey Studios, Claeysbrothers','Crazy Monkey Studios','Shooter',0,0,0),(1830215906,'GAROU: MARK OF THE WOLVES',0,0,0,0,0,'812c46eccb000f91eeed7dc49ec99ef667bbcbeb1beaa19aa71d4b9cee571222','960a5dc880d853333ea626bddcac765b2cc6c74a21336e261b65d0dd3661b9bc','garou_mark_of_the_wolves','garou_mark_of_the_wolves','https://www.gog.com/game/garou_mark_of_the_wolves',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(1830818352,'Strategic Command WWII: World at War',0,0,0,0,0,'880d0271ddef4f574a86ca75b4f7ec3c6250e2f04879d470750b88e5e922a8dc','ed5bd9c0c22ce368168f4a8d5df10157cfde58e6deb1a31b25f71c69bca79da9','strategic_command_wwii_world_at_war','strategic_command_wwii_world_at_war','https://www.gog.com/game/strategic_command_wwii_world_at_war',0,'Fury Software','Slitherine Ltd.','Strategy',0,0,0),(1832758895,'Maniac Mansion',0,0,0,0,0,'9aff4c13d8679b60ae7e6186b93b6b8524b1a29a75bfaa898c7e1fb0dbbed1a3','c742173c59f61ab00690d116b137389647403eb7666972d3fa846dbbb13427af','maniac_mansion','maniac_mansion','https://www.gog.com/game/maniac_mansion',0,'Lucasfilm','Disney','Adventure',0,0,0),(1834741625,'The Journey Down: Chapter Three',0,0,0,0,0,'ab303815256fec266a9d05ce36708f7e7b475e5b14f0376854d49c59144e2a78','8dfbe6366f08c22de3b149287e8b75ce93305cf30a96c3ebafe53d89cc6ad28f','the_journey_down_chapter_three','the_journey_down_chapter_three','https://www.gog.com/game/the_journey_down_trilogy',0,'SkyGoblin','SkyGoblin','Adventure',0,0,0),(1835348437,'Dungeon Rats',0,0,0,0,0,'891f808fa8c3e79069eadaab77f07b132c583c600e3702ef79010b596c491677','d9087faeb4e3bb62748e0b5ce510ea4c2a61c0a3667282cbf6350eb486d22ea0','dungeon_rats','dungeon_rats','https://www.gog.com/game/dungeon_rats',0,' Iron Tower Studio',' Iron Tower Studio','Role-playing',0,0,0),(1835492050,'THE KING OF FIGHTERS XIII GALAXY EDITION',0,0,0,0,0,'c6ce23df736e66519affecc44a2c834ff5688fcd15a4104a5424001c76b1d849','5d670f05aacbc074de50cd7fdb709e941aba93ab3a1fd1ab407835f3274488a7','the_king_of_fighters_xiii','the_king_of_fighters_xiii','https://www.gog.com/game/the_king_of_fighters_xiii',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(1836830469,'Stories Untold',0,0,0,0,0,'5b1e8c3211bef3847daed4cdebd454466aa691adb48c5baf72811e918ab2a477','e215e4b1189d8deb9b6edb9b7eba240c04fdb1326fb664286a93fd4408c17906','stories_untold','stories_untold','https://www.gog.com/game/stories_untold',0,'No Code','Devolver Digital','Adventure',0,0,0),(1838054499,'BLACKHOLE',0,0,0,0,0,'b64f18d43cd0e69aed931f94291ab5f03cc29f4919f6b95be62378f2ba1e93a2','df9d03f202407a1591f0ccc81a152197861ba0eb5fe922715773305e1442c358','blackhole','blackhole','https://www.gog.com/game/blackhole',0,'FiolaSoft Studio','1C Publishing','Action',0,0,0),(1838869055,'Planetary Dustoff',1,0,0,0,0,'05bf22ac59df95891980aa94a59a2ac04b8e1b96b6d801fbd6c892c09ac72261','c46a5b8dfcecf83f4c27194a79a51bb98844b62c4177d3fed7f7210b93b245f2','planetary_dustoff','planetary_dustoff','https://www.gog.com/game/planetary_dustoff',0,' Rymdfall AB',' Rymdfall AB','Shooter',0,0,0),(1839071992,'The Mummy Demastered',0,0,0,0,0,'734defab15a69aa46419155d59fce834254af3da0cfbd86db0f787791700e88a','ba0450c1278372b908d3674b25295d745183ff669e1f182e4a34bd812c97b174','the_mummy_demastered','the_mummy_demastered','https://www.gog.com/game/the_mummy_demastered',0,'Wayforward Technologies','Wayforward Technologies','Action',0,0,0),(1839766730,'Sherlock Holmes: The Devil\'s Daughter',0,0,0,0,0,'1f844722c8b4ccf5bde04dbf16878d541af311b702d27f4616a8af3f54bb0d23','55d0ab4e2aa9fd4678cc34e269b15770e2ec77e970e61b93332f485f276da448','sherlock_holmes_the_devils_daughter','sherlock_holmes_the_devils_daughter','https://www.gog.com/game/sherlock_holmes_the_devils_daughter',0,'Frogwares','Plug In Digital','Adventure',0,0,0);
INSERT INTO `games` VALUES (1844011652,'Bad Dream: Coma',0,0,0,0,0,'e7af018fa26b029cec0a3bb8324672c651bfdee9022e5f7c7f9bbd9d207fb327','32872b694be588b5279a1ae13076013393afa182125a3eeafffc788f08922291','bad_dream_coma','bad_dream_coma','https://www.gog.com/game/bad_dream_coma',0,'Desert Fox','PlayWay S.A., Ultimate Games S.A.','Adventure',0,0,0),(1844570543,'Redout: Solar Challenge Edition',0,0,0,0,0,'4847a2b0cd5c2c49e10095e851a81e41ed9744a18b61025a643df69da9975d12','aec16e52a3a5dbe4fe6c267ea07dbeb091125c67564a80cf98fc3f20dd0c5d5b','redout_solar_challenge_edition','redout_solar_challenge_edition','https://www.gog.com/game/redout_solar_challenge_edition',0,'34BigThings','34BigThings','Racing',0,0,0),(1845001352,'Whispers of a Machine',0,0,0,0,0,'4688d410d3696512fc04effef7a7f5d5026e47d1b0d05356283e686e0d332f98','714d41978ef9e1bb2d50a3a122e4ef3cf7e53ffdc0e570dffdaa0807fab4aea0','whispers_of_a_machine','whispers_of_a_machine','https://www.gog.com/game/whispers_of_a_machine',0,'Clifftop Games, Faravid Interactive','Raw Fury','Adventure',0,0,0),(1846445578,'Aragami',0,0,0,0,0,'5b43aed257195ddb90f1fda045d8be1c38e77d05f12813b0d349ad112ca17d98','fdc9a404cd95bc6efa169077059ba92f17a9fc288b74d57a5a6e2e87014724e3','aragami','aragami','https://www.gog.com/game/aragami',0,'Lince Works','Lince Works','Action',0,0,0),(1847879387,'Duskers',0,0,0,0,0,'533dab765201beebae5f9f82709116ae05e8ed828fa87ec86a6e1ef716c393c5','f52f62a59299b0e8ac982d53762bb0fe9d145892bb56bac5acf8b855575ac7ec','duskers','duskers','https://www.gog.com/game/duskers',0,'Misfits Attic','Misfits Attic','Strategy',0,0,0),(1848455842,'Ancestors Legacy',0,0,0,0,0,'d2e02c23dd69fd42fa692d75328ae449be42e3045018a2b99d83f587384ad8e9','094bc221e012f622f12c5e14987b9ecc43505bc5d1653be3d06f9ac6393aaad2','ancestors','ancestors','https://www.gog.com/game/ancestors',0,'Destructive Creations','1C Publishing','Strategy',0,0,0),(1850642020,'Empires of the Undergrowth',1,0,0,0,0,'903973d2e4eaf4c2877b7cd45481299c51517c2e7fcc5ea576d74e4393935a51','9ed09fa404354f19884483cd36892da1fa99f33cd5921f14404f7ea387cf75f5','empires_of_the_undergrowth','empires_of_the_undergrowth','https://www.gog.com/game/empires_of_the_undergrowth',0,'Slug Disco Studios','Slug Disco Studios','Strategy',0,0,0),(1852249874,'WORLD END ECONOMiCA episode.02',0,0,0,0,0,'82807dd6f5cb1439ca1411e942dff0373bc9a07460697aa1ee63effbd089f331','05e79ce46e0318e3cd1425ac806312258991aecc59188f0a3e31f366d323a4b0','world_end_economica_episode02','world_end_economica_episode02','https://www.gog.com/game/world_end_economica_episode02',0,'Spicy Tails','Sekai Project','Adventure',0,0,0),(1852287124,'Victory at Sea Pacific',0,0,0,0,0,'4b851e6fda65048c4a17b3a3fa2bbdf7388a2ba7768aca320df58ae6c638ee0f','550f93eb7aebc2715868f87ab2b392aa101c2b918388dcd202719276ac34898c','victory_at_sea_pacific','victory_at_sea_pacific','https://www.gog.com/game/victory_at_sea_pacific',0,'Evil Twin Artworks','Evil Twin Artworks','Strategy',0,0,0),(1852354510,'D: The Game',0,0,0,0,0,'f4a410f85c05d14c2cc355e5531f6599540b8fe3fc28492745f889e7b62afb18','5150282f429dc91a462730ea9cf525b3b40c05004f771a6388d5d9d7c878cfd4','d_the_game','d_the_game','https://www.gog.com/game/d_the_game',0,'WARP','Throwback Entertainment','Adventure',0,0,0),(1852379375,'Tahira: Echoes of the Astral Empire',0,0,0,0,0,'c76bfd8c2658bc78eb7e9777526e1c6bc90fa83d1335aaa4d29dfc9f4c0b6e15','d78df8d0ee9b71e4537c3d3982c78eea712ee05ef402a76a948b40f7ac6b8549','tahira_echoes_of_the_astral_empire','tahira_echoes_of_the_astral_empire','https://www.gog.com/game/tahira_echoes_of_the_astral_empire',0,'Whale Hammer Games','Whale Hammer Games','Role-playing',0,0,0),(1856044899,'Lost Sea',0,0,0,0,0,'f5f0751dd936501833b99defacebdbeed94abb57ed79459e553cbf01a425c941','7bb4afcd0d138c97960b7791156e8fecc15606ae36b30c5fbb6e76d6e78b342a','lost_sea','lost_sea','https://www.gog.com/game/lost_sea',0,'Eastasiasoft Ltd. ','Eastasiasoft Ltd. ','Action',0,0,0);
INSERT INTO `games` VALUES (1856356886,'Corpse Party: Book of Shadows',0,0,0,0,0,'fc6c3c395dec79f5646b21c3b60c557cf786a5a75b444e5edcd258a0c0f2d3fa','0ae1002c2b5f8bdfc20f244410a3fa33d2973866ac674bb754ff417c9182ba54','corpse_party_book_of_shadows','corpse_party_book_of_shadows','https://www.gog.com/game/corpse_party_book_of_shadows',0,'MAGES. Inc., 5pb.','XSEED Games','Adventure',0,0,0),(1857125331,'Rusty Lake: Roots',0,0,0,0,0,'ebd3c4d76690d061ac73c51db4b320a07f1c1117f7e37749dfa13e2762a43afe','a3cbb1d5b8c9acda9416487cc9e7c1a17f710f99d969831b5f2e4cd921dc1cac','rusty_lake_roots','rusty_lake_roots','https://www.gog.com/game/rusty_lake_roots',0,'Rusty Lake','Rusty Lake','Adventure',0,0,0),(1858508334,'Asterix & Obelix XXL 2',0,0,0,0,0,'cfa1810f34df33998a4448eeed13254fe7731a116c2cc9357808dd23beffe67c','bf36c08bc6168ccc4427e97b150d06ef6dcad5386ba4afa0118988103c67d202','asterix_obelix_xxl_2','asterix_obelix_xxl_2','https://www.gog.com/game/asterix_obelix_xxl_2',0,'OSome Studio','Anuman Interactive','Action',0,0,0),(1859396546,'Leisure Suit Larry - Wet Dreams Don\'t Dry',0,0,0,0,0,'6f61168b72ccb1e0486ac3d8c5a086d955becb0d94a8fc7ce67dfba04facb220','f5f2bbdd19293182cda2a257217d5a73cfbf12c143b95f944384097d017c368e','leisure_suit_larry_wet_dreams_dont_dry','leisure_suit_larry_wet_dreams_dont_dry','https://www.gog.com/game/leisure_suit_larry_wet_dreams_dont_dry',0,'CrazyBunch','Assemble Entertainment','Adventure',0,0,0),(1860790509,'Imperium Galactica',0,0,0,0,0,'ac2e1755bf8d11a8f100c2e32b672132567241cf4e14452d91335e4721b43503','ff1b923e9287a6977ecdd0b3bf120d23c9c437e365d4f039070f03fdd0e0d503','imperium_galactica','imperium_galactica','https://www.gog.com/game/imperium_galactica',0,'Digital Reality Software','THQ Nordic GmbH','Strategy',0,0,0),(1861082507,'SteamWorld Dig 2',0,0,0,0,0,'5654f925afb8116ac9522f4834774cb1cae87e478ad023e02c7f96ac2d7f2b0e','b210068562a118a2dbf94b605b6bf6da1b5466197a23010d08e0bc86ef3c2ab5','steamworld_dig_2','steamworld_dig_2','https://www.gog.com/game/steamworld_dig_2',0,'Image and Form','Image and Form','Action',0,0,0),(1861202745,'Minit',0,0,0,0,0,'1d88f58d94c486c5dcedb577c7e0dfe19bc84f9d06ec0ea1acd20941052bac1d','be50690689bf48e3ec50ec2bacb0cc34de7de4cadcdf662aa61f61d857eafdc5','minit','minit','https://www.gog.com/game/minit',0,'JW, Kitty, Jukio, and Dom','Devolver Digital','Action',0,0,0),(1861477436,'Jagged Alliance: Rage!',0,0,0,0,0,'ee1d845abc77d538bc89d132041a53dca15f9274b6c1a49d4ba4d076a5620c5d','23632848bf945db323185e0b959a8ddabe11b9bd71ca8497a861ef548d5f522e','jagged_alliance_rage','jagged_alliance_rage','https://www.gog.com/game/jagged_alliance_rage',0,'Cliffhanger Productions','HandyGames','Strategy',0,0,0),(1861660742,'Reventure',0,0,0,0,0,'6ba2082c706c5c054638b2d4f4362caf6048407be8c73e7a319a84347939b227','4f305d4344d6c2b9b6c5f9d78b71a9c5c9c6486b054b98fe912bfe7dd572c15f','reventure','reventure','https://www.gog.com/game/reventure',0,'Pixelatto','Pixelatto','Action',0,0,0),(1863533702,'Hyperdimension Neptunia Re;Birth2: Sisters Generation',0,0,0,0,0,'29530379a7bac5e6878f413ba24d86e33600b0d9af3c0eb49afe28cf46707683','e4c7837d1e3617eee5d4e27c5b4e232e9ba30a80750433983dd8a39369e16da8','hyperdimension_neptunia_rebirth2_sisters_generation','hyperdimension_neptunia_rebirth2_sisters_generation','https://www.gog.com/game/hyperdimension_neptunia_rebirth2_sisters_generation',0,'Idea Factory, Inc.','Retroism','Role-playing',0,0,0),(1869199616,'Death Gate',0,0,0,0,0,'46eb00fd9013bb0cc7e4a970471c9f895879da26b8eb6c52fef41c32e7e255c8','bab88921aa0774cbf56b86e73a68c001db53298f5e977cf9333662f03f833d64','death_gate','death_gate','https://web.archive.org/web/20180104001718/gog.com/game/death_gate',0,'Legend Entertainment Company','Piko Interactive','Adventure',0,0,0),(1875167847,'Ghost of a Tale',0,0,0,0,0,'b3765b77df715ff626d8bb82917561a51bcdbfa3709cf971baf3adbfcf0c6e26','499e81f037839ebb62c72459301e27e6b9a84856897dffc1ef91fbb7a9649bec','ghost_of_a_tale','ghost_of_a_tale','https://www.gog.com/game/ghost_of_a_tale',0,'SeithCG','SeithCG','Action',0,0,0);
INSERT INTO `games` VALUES (1876014707,'Little Bug',0,0,0,0,0,'13bdd3bb6d825788f0df1ba2387bafd4c1d3cf0daa0b073bdbb0ec58c78a7974','6e39d31954ee00924aeb73fa29c5e84be90f3cc49548d186cb27791e75b0135b','little_bug','little_bug','https://www.gog.com/game/little_bug',0,'Buddy System','Fig Publishing Inc.','Action',0,0,0),(1876268007,'Skyshine\'s BEDLAM Redux!',0,0,0,0,0,'5208c690cf6bc12a270c7bede63f8200644ec8fa632982e228a26c8ab5a2c3f2','2dfe12a9b1f55f516b61424eba2cdf82d4bf884ff66684fb17e316d09050fd6b','skyshines_bedlam','skyshines_bedlam','https://www.gog.com/game/skyshines_bedlam',0,'Skyshine Games','Versus Evil','Strategy',0,0,0),(1876401097,'Unworthy',0,0,0,0,0,'aa99da302d57dfafd11196d8ccc6f4ef7ca84be53c024fc124208e9d59e4ad0f','72281654d19b37adcf1a93dfdc2a995d6476d05331c419e380478920656192a1','unworthy','unworthy','https://www.gog.com/game/unworthy',0,'Aleksandar Kuzmanovic Games Inc.','Aleksandar Kuzmanovic Games Inc.','Action',0,0,0),(1877306633,'Dry Drowning',0,0,0,0,0,'edae7d256e41edecd428545a23037997a4cfb832a25cb95614dc20b29973b2ab','38266db6d34a132138f9a899c6b97677747a40e619ad21dec0a69224863b9348','dry_drowning','dry_drowning','https://www.gog.com/game/dry_drowning',0,'Studio V','VLG Publishing','Adventure',0,0,0),(1878529522,'Tachyon: The Fringe',0,0,0,0,0,'8ff28eaa4fe44473ee66d087221e71afb9fa5f34eef355c406c35085198ffb4e','a870cecb200bb85323fcaa01698c8c1490f09992de327d6e8028f0a43ba7bd42','tachyon_the_fringe','tachyon_the_fringe','https://www.gog.com/game/tachyon_the_fringe',0,'NovaLogic Inc.','THQ Nordic GmbH','Simulation',0,0,0),(1879874988,'Painkiller: Overdose',0,0,0,0,0,'ff721e0a787515caf4c539123e977c471e2819aa1f5ee065d7e2120b9199a68f','dd0ff56c4b81062c2d951a9322325e485c366a3f36f8d81d591fa5f27a9f37f4','painkiller_overdose','painkiller_overdose','https://www.gog.com/game/painkiller_overdose',0,'Mindware Studios','THQ Nordic GmbH','Shooter',0,0,0),(1880016212,'Kindred Spirits on the Roof',0,0,0,0,0,'868f9b24b05a29a7a52c6574bf2dbfca86a1168ab619da78209365d8c25688c4','269661ab9b8e9d83fd575c6a39a73570d09ec40aa6b6cf629f109675a17095e7','kindred_spirits_on_the_roof','kindred_spirits_on_the_roof','https://www.gog.com/game/kindred_spirits_on_the_roof',0,'Liar-soft','MangaGamer','Simulation',0,0,0),(1880466645,'Sword Legacy Omen',0,0,0,0,0,'1608cdb26608cfcb9f62df610833401b3f1f6b6c894d2d9a20eb1e0fbbec0605','9c306aa6325218cb573c4e8f02f8f7000d7c89e5ba49acb726afa0d797e1cf64','sword_legacy_omen','sword_legacy_omen','https://www.gog.com/game/sword_legacy_omen',0,'Firecast Studio, Fableware Narrative Design','Team17 Digital LTD.','Role-playing',0,0,0),(1881878511,'Higurashi When They Cry Hou - Ch.4 Himatsubushi',0,0,0,0,0,'469c0807af22d5601410881a7cea0ecb518472117d5021ab6e6f9d05715fb67b','00d9d69dec31fa39253922f73ee3536a00324aee09bd9fb6eaea3ecd330b7596','higurashi_when_they_cry_hou_ch4_himatsubushi','higurashi_when_they_cry_hou_ch4_himatsubushi','https://www.gog.com/game/higurashi_when_they_cry_hou_ch4_himatsubushi',0,'07th Expansion','MangaGamer','Adventure',0,0,0),(1882323799,'Immortal Planet',0,0,0,0,0,'acd3305a40420109f8ff537be92afa3cec7219c064da231fe5ce2bfb02b9b86c','122297446ffbc145d37fa7a3bb2cb4058546d9f36955178ed2e0d159b2567689','immortal_planet','immortal_planet','https://www.gog.com/game/immortal_planet',0,'teedoubleuGAMES','teedoubleuGAMES','Action',0,0,0),(1884540966,'Automachef',0,0,0,0,0,'9421f6bb121a722b2d0c2920af961c44e18654b5b288b90acb5c5afca8c0d531','2e9e925cdefae0c5ee8c81d410be76bc36ee0be3fd272bead877e21d7343fc39','automachef','automachef','https://www.gog.com/game/automachef',0,'Hermes Interactive','Team17 Digital LTD.','Simulation',0,0,0),(1885026907,'Escape from Monkey Island™',0,0,0,0,0,'bd6e31d01ab17edb0423a01797ffc74905e6614e10941cbe4ac59abfa0de1257','8d717f80360fc9daf62759d778f491b0f627cb6ed6b0c37eaefc7b9813967d54','escape_from_monkey_island','escape_from_monkey_island','https://www.gog.com/game/escape_from_monkey_island',0,'LucasArts','Disney','Adventure',0,0,0);
INSERT INTO `games` VALUES (1885888793,'ELEX',0,0,0,0,0,'35b99cb55028791624d4a980d7c055eec81eaeb8c1e1b27a1cf3f483867b7b42','57e6d1a7ee30caf05b8031c3492726e00af81c69e11af5093377b9b639c7bde2','elex','elex','https://www.gog.com/game/elex',0,'Piranha Bytes','THQ Nordic GmbH','Role-playing',0,0,0),(1888064208,'Iconoclasts',0,0,0,0,0,'da1c2dd057fbc05e1b422a9318ae936fd3caa5929a275fda606f196375da43a0','7284326761851ff50c3c4bd170821725436297e83b8fbcca80eac7425addfb0f','iconoclasts','iconoclasts','https://www.gog.com/game/iconoclasts',0,'Joakim Sandberg','Bifrost Entertainment','Action',0,0,0),(1892469133,'Westerado: Double Barreled',0,0,0,0,0,'74db968c97e66eda61149de6d5aed20a275b0c81dfe82baa6f78910d9348ec01','765efd02688ce70d5cd5c604f69917f030bd949445e44bc8e2c7e8db604f20a7','westerado_double_barreled','westerado_double_barreled','https://www.gog.com/game/westerado_double_barreled',0,'Ostrich Banditos','Adult Swim','Action',0,0,0),(1893001152,'Mirror\'s Edge™',0,0,0,0,0,'993ef5679d3d98c88c787ddd7716e7d84b44ca5519d23ee912049b7bb583be31','5d3f1c59cd5ddaf8bed68c8b49862f8c45b43b42609f3945584250160ed6c6ca','mirrors_edge','mirrors_edge','https://www.gog.com/game/mirrors_edge',0,'DICE','Electronic Arts','Action',0,0,0),(1893480337,'Simon the Sorcerer 2: 25th Anniversary Edition',0,0,0,0,0,'e3201556a98513ca8c7cc1ce9a525a5120d22d15e018f14c7f9e07ec53dce258','2d5e1ffb8271594eee33e9d59e5a29242ce3698ca30adc4aac3c82c5153c7531','simon_the_sorcerer_2','simon_the_sorcerer_2','https://www.gog.com/game/simon_the_sorcerer_2',0,'Adventure Soft','MojoTouch','Adventure',0,0,0),(1893867643,'Star Control®: Origins',0,0,0,0,0,'66cce364623f39f610d38faec2519f81728f7ac64fa316f97ee9a992e0fdd738','038b553e6cfdea982cbc1bad30c655c3f7f6c9028e53395c000e98023aa97688','star_control_origins','star_control_origins','https://www.gog.com/game/star_control_origins',0,'Stardock Entertainment','Stardock Entertainment','Action',0,0,0),(1899257943,'Dawn of Man',0,0,0,0,0,'3aa2bb39fed7932a029f0ed2eb1a83559cbe65d6b556ebec524ba58ca52211a0','c9aaa91213d0ee0087d5c7c41b7a91e957eae7d48059744baab3635ddb038545','dawn_of_man','dawn_of_man','https://www.gog.com/game/dawn_of_man',0,'Madruga Works','Madruga Works','Strategy',0,0,0),(1899284966,'Kynseed',1,0,0,0,0,'c7bb65c599d98848107f9a88c0cca0e4c3b986afb75bd7f21f2203759772769a','50c468dcdd144710ff2b8fa54e03f1d5846f682eb496c39b29ca2d7bed934371','kynseed','kynseed','https://www.gog.com/game/kynseed',0,'PixelCount Studios','PixelCount Studios','Simulation',0,0,0),(1901611678,'GNOG',0,0,0,0,0,'51b0ce9c8e53b5740a531fd173edd3b78701ce42d4c58707135729f2177744f8','39a6070fe4132082ca92dfd8ad557e3d378696381e93f9ff62ffa66bd8d943e7','gnog','gnog','https://www.gog.com/game/gnog',0,'KO_OP','Double Fine Presents','Adventure',0,0,0),(1902803915,'Kingsway',0,0,0,0,0,'615cb9a7cc7624b1b28211bc168f93efe064d4a9c15555980f1fb83affced972','09782443a6123a0a545fd326e7244b94cb145d2253e15d7914671051c88af2c6','kingsway','kingsway','https://www.gog.com/game/kingsway',0,'Andrew Morrish','Adult Swim','Role-playing',0,0,0),(1904451332,'Carmageddon: Max Damage',0,0,0,0,0,'a5bfd4070040d7e706d04495bea5ab1527b1350f1c880ee81d96dc5443513e00','c8f17c06fad6d82e1ae851f6f4c510ab684c80f98e888f05ba2561e977251cd0','carmageddon_max_damage','carmageddon_max_damage','https://www.gog.com/game/carmageddon_max_damage',0,'Stainless Games','THQ Nordic GmbH','Racing',0,0,0),(1907193220,'The Expression Amrilato',0,0,0,0,0,'353041ba532fe3b80e2ff0a8683ac792dd4d3534038f501a6cda22562e1cf310','f6636f39a91f8fc88ea11a80f1e084583079677250242b1dcfae3c739be4fc50','the_expression_amrilato','the_expression_amrilato','https://www.gog.com/game/the_expression_amrilato',0,'SukeraSparo','MangaGamer','Simulation',0,0,0);
INSERT INTO `games` VALUES (1908407113,'Hyperdimension Neptunia Re;Birth3 V Generation',0,0,0,0,0,'9b5524263b314cbdfbdbd671e0cceb53f65f1e9db3171e2722d76ccd76439731','bdeb9eeee0169467b2a65b407a57e4ea83092d50735b08a494c121d89de85d6f','hyperdimension_neptunia_rebirth3_v_generation','hyperdimension_neptunia_rebirth3_v_generation','https://www.gog.com/game/hyperdimension_neptunia_rebirth3_v_generation',0,'Idea Factory, Inc.','Retroism','Role-playing',0,0,0),(1908505665,'Tokyo Xanadu eX+',0,0,0,0,0,'fffd87a40b8374509c17c39aa506b7c05445916ffcb36b021989448c83f6c51b','fd926b7f13597c058aaf157286e92d7c86b186bce5f70de9eeff918811293ac5','tokyo_xanadu_ex','tokyo_xanadu_ex','https://www.gog.com/game/tokyo_xanadu_ex',0,'Nihon Falcom Corporation','Aksys Games','Role-playing',0,0,0),(1909524379,'Call of Juarez',0,0,0,0,0,'78a1dceebceefb8e407755c05bc3c2f1201bff3d5934b73128c6b769dc7e5d32','beba2bd98738cb566a327023353d33cced3165ceb97993567b3961e15bf3ef40','call_of_juarez','call_of_juarez','https://www.gog.com/game/call_of_juarez',0,'Techland','Techland Publishing','Shooter',0,0,0),(1911151506,'Reah: Face the Unknown',0,0,0,0,0,'0e5b073de952faac3194d34912637d83146aa95ee5782ca6378cdf62df92ece8','3711aa9b29f191e64fb0a4e7ee03acd3213eaea8fa72577bf96495f7e440a1dd','reah_face_the_unknown','reah_face_the_unknown','https://www.gog.com/game/reah_face_the_unknown',0,'L.K. Avalon','L.K. Avalon','Adventure',0,0,0),(1913602334,'Candleman: The Complete Journey',0,0,0,0,0,'672caa63ef7f7abbb49b3b549b060300992582d830812555a3ddf50b0d0b424f','79b618c37b6bdfc51f33d435958440e75f7dd77a122ca82c951226fe6174948c','candleman','candleman','https://www.gog.com/game/candleman',0,'Spotlightor Interactive','Spotlightor Interactive','Adventure',0,0,0),(1913968552,'Army Men II',0,0,0,0,0,'8af4532405efafe025bd9716a7085e9d04c25a1aa6f7b012cda99f842659e05c','f3551c673b2074d6998453244cd9b89d5309f1c2a619af6a363f3c5e38236378','army_men_ii','army_men_ii','https://www.gog.com/game/army_men_ii',0,'The 3DO Company','2K Games','Strategy',0,0,0),(1914219141,'SpellForce 2: Faith in Destiny',0,0,0,0,0,'0c880370068bcf39bf43d2584623c888152234d4fb8c88acfc953cb24b153b62','fb7758dae4e7b98e00194b96e4a68644b677a50b0ebf6713f4418ea173e96790','spellforce_2_faith_in_destiny','spellforce_2_faith_in_destiny','https://www.gog.com/game/spellforce_2_faith_in_destiny',0,'Mind Over Matter Studios','THQ Nordic GmbH','Strategy',0,0,0),(1914950878,'Ignition',0,0,0,0,0,'d48781b052a64eb7a4858b09ba6f945711443eb0680805f2a01123888a2246ee','faf2bae8f38cd34437f507acff15a1b40f4b87d3c5ea68b7b18c4815f0ee3ad6','ignition','ignition','https://www.gog.com/game/ignition',0,'Unique Development Studios AB','Interplay','Racing',0,0,0),(1916896012,'INSIDE',0,0,0,0,0,'cde8b43b33ac15046a6969a59ddf5dd87ada2524ce0db3c6f721fff44308df9b','e75778c2c2e587fd07eb866428d92072bd461adc3209ba4743151f67dcdd9e76','inside','inside','https://www.gog.com/game/inside',0,'Playdead','Playdead','Adventure',0,0,0),(1921788846,'Megaquarium',0,0,0,0,0,'4af3629baeb0ec4bfb6da2429aa2cdcfc14e62a2600e5f0c1c4ff5c490ee2b66','3ef392ffa4d4cf9ac1b21f8206e748b0e342dc30ba8efdec3eed463c19495ab9','megaquarium','megaquarium','https://www.gog.com/game/megaquarium',0,'Twice Circled','Twice Circled','Strategy',0,0,0),(1922333849,'Devil Daggers',0,0,0,0,0,'d800fec38d675ea77ff2c6fd0bfb8eeb878a7e398cf06ff66bb1c34a025dd14a','439b45973d2ec606f666798c1bbe92bd4edd3401d76abf5f4e7e734e5fcac200','devil_daggers','devil_daggers','https://www.gog.com/game/devil_daggers',0,'Sorath','Sorath','Shooter',0,0,0),(1922744356,'Guns, Gore & Cannoli 2',0,0,0,0,0,'ba696216230c9182fe21fe2163abf29dff479d893078448a0fc1254415602c95','8724e58612bac7812fdcd9060080dac1f402f11100bc05f943ee05868c26e858','guns_gore_cannoli_2','guns_gore_cannoli_2','https://www.gog.com/game/guns_gore_cannoli_2',0,'Crazy Monkey Studios, Claeysbrothers','Crazy Monkey Studios','Shooter',0,0,0);
INSERT INTO `games` VALUES (1923443149,'Hellblade: Senua\'s Sacrifice VR',0,0,0,0,0,'deb53e8c9039f1aa20bba071bee7d4d5c1dae8be66e1b62b27f88ea9918992dc','cbb5689c45d0c84d34e582c936e2d8d27ad2650a15cae58f5a925eaba4302d06','hellblade_senuas_sacrifice_vr','hellblade_senuas_sacrifice_vr','https://www.gog.com/game/hellblade_senuas_sacrifice_pack',0,'Ninja Theory','Ninja Theory','Action',0,0,0),(1923907932,'Ne no Kami - The Two Princess Knights of Kyoto Part 2',0,0,0,0,0,'c8db9abcdf164c77cad051990ee2d619c34a3eed1067cf991fc0397bd1d57288','38343f9b3dc32e0a136d82601184682617b69a5a7a45f656af983429b76eb976','ne_no_kami_the_two_princess_knights_of_kyoto_part_2','ne_no_kami_the_two_princess_knights_of_kyoto_part_2','https://www.gog.com/game/ne_no_kami_the_two_princess_knights_of_kyoto_part_2',0,'Kuro Irodoru Yomiji','Sekai Project','Adventure',0,0,0),(1928154062,'Distant Worlds: Universe',0,0,0,0,0,'2c64c21da3dd8583d94acba53aa45bebcd0dfd50399c5bdf3d0e0ad8a1e93c54','c86e261ad305fa0d6ea1c062ce460b3f2ec87ac4b4fa5d2c2c52edfae13c9051','distant_worlds_universe','distant_worlds_universe','https://www.gog.com/game/distant_worlds_universe',0,'Code Force','Slitherine Ltd.','Strategy',0,0,0),(1929434313,'Dex',0,0,0,0,0,'e9029c481d84815c77706610f11af8af6bdb64f793124bd02b70a8da2871d90f','2e2d1bad50f17700934b1038c49bc3bcc2c984eee39675e0c61843c3d4ffe149','dex','dex','https://www.gog.com/game/dex',0,'Dreadlocks Ltd','Dreadlocks Ltd','Role-playing',0,0,0),(1929512011,'The Dagger of Amon Ra',0,0,0,0,0,'8468a583a5addf18f5d78bcc2c2e8342b53f9455d0bbee9323c65dc9b76edda8','9842bfdaf8ebfe20c1dce64c11c18851c47a42b9d1dcb2b39c59dcc87de02f23','the_dagger_of_amon_ra','the_dagger_of_amon_ra','https://www.gog.com/game/the_dagger_of_amon_ra',0,'Sierra','Activision','Adventure',0,0,0),(1932981761,'Army Men RTS',0,0,0,0,0,'78c6cb04c542704618262f94b36340634ab24dc6429e9bf9a902885c84604bd4','d2a11a5c0351251b149295c70fc4f655abe87d99b12d180904e3399ab2757e6e','army_men_rts','army_men_rts','https://www.gog.com/game/army_men_rts',0,'Pandemic Studios','2K Games','Strategy',0,0,0),(1935427813,'Rusty Lake Paradise',0,0,0,0,0,'fbf1c2cc2d2158242d48edbaa5e96c9baa50cba50aac729aa509ec11b025b139','c23b470fd12fe152eabe37d0b15894e62bc966916f14c084929be58a1e8a767c','rusty_lake_paradise','rusty_lake_paradise','https://www.gog.com/game/rusty_lake_paradise',0,'Rusty Lake','Rusty Lake','Adventure',0,0,0),(1935992492,'Sound of Drop - fall into poison -',0,0,0,0,0,'3c2197238067d61a3f01309cf0b78ff8ea2ba9cc782d12155caca8dd30a98467','b30b74d10ef4fa007e6d18bc4609c41a8ce69ed060f93a4c698975b3494a341f','sound_of_drop_fall_into_poison','sound_of_drop_fall_into_poison','https://www.gog.com/game/sound_of_drop_fall_into_poison',0,'aiueoKompany','Sekai Project','Adventure',0,0,0),(1936959826,'Enigmatis: The Ghosts of Maple Creek',0,0,0,0,0,'02f4abdb3e5ad980b457ad96efc757ffb7c0f2191a3c85938fc0dd2b17de4b77','afa3894652807d4fb84539949ffd82ca4d507b313348082366d909d0959235c3','enigmatis_the_ghosts_of_maple_creek','enigmatis_the_ghosts_of_maple_creek','https://www.gog.com/game/enigmatis_the_ghosts_of_maple_creek',0,'Artifex Mundi','Artifex Mundi','Adventure',0,0,0),(1938069609,'Cryptark',0,0,0,0,0,'1f2249bfdc0fcabcd604c890f7bb04a92d8c9302c7c4600a8ae9f85b49af948c','39569b0e5fb49ffb91e3394f20848df83c772d12124207510e9b28607bc49f7c','cryptark','cryptark','https://www.gog.com/game/cryptark',0,'Alientrap Games','Alientrap Games','Shooter',0,0,0),(1939489874,'Freddy Pharkas: Frontier Pharmacist',0,0,0,0,0,'6239627804fe7d6f594bcd0df5efd5899bf8292dfdaee4563a79f5b9cc471875','111e330b9e9855331635df42122e8a12480fcdfbf07634de8cceb540fd323207','freddy_pharkas_frontier_pharmacist','freddy_pharkas_frontier_pharmacist','https://www.gog.com/game/freddy_pharkas_frontier_pharmacist',0,'Sierra','Activision','Adventure',0,0,0);
INSERT INTO `games` VALUES (1939715083,'Hypnospace Outlaw',0,0,0,0,0,'4a2faf2abe0a25b392041c4b775d3445821fe2fc66b2662be41711bd84bda543','1571a93c6ef906f586b417293e6e6428074cf0c1380e265dfbdadc540bf3c51b','hypnospace_outlaw','hypnospace_outlaw','https://www.gog.com/game/hypnospace_outlaw',0,'Tendershoot, Michael Lasch, ThatWhichIs Media','No More Robots','Simulation',0,0,0),(1941108493,'Nine Parchments',0,0,0,0,0,'a20471877168500d899f0da9ce4989ac0dfbd5c08787b1739c6949a8fcca7f54','b4062b73365c02d6dc1d5ac9ebe29c7628ab037f84307d81516cce91f6b4a389','nine_parchments','nine_parchments','https://www.gog.com/game/nine_parchments',0,'Frozenbyte','Frozenbyte','Action',0,0,0),(1941294775,'SteamWorld Quest: Hand of Gilgamech',0,0,0,0,0,'0dad23afc161fe0ad33cca31f6188751bb5b6841bc64ff4396a6a47a32b8dad8','29bb15a378586293a6cf7d859f49d75bfb7601a9870e9f6d7e73dd0a0470f3bf','steamworld_quest_hand_of_gilgamech','steamworld_quest_hand_of_gilgamech','https://www.gog.com/game/steamworld_quest_hand_of_gilgamech',0,'Image and Form','Thunderful','Role-playing',0,0,0),(1942346586,'Hitman: Blood Money',0,0,0,0,0,'cec1348b3067dec876242af1a972eedc6e7dad695b724a130914ec85a68ec8b7','26f4b6afa4c60dabb3e65223da53cdea85daed1ea5ffa7887edfb77cc7bcf413','hitman_blood_money','hitman_blood_money','https://www.gog.com/game/hitman_blood_money',0,'Io-Interactive','Io-Interactive','Action',0,0,0),(1943046668,'Metal Wolf Chaos XD',0,0,0,0,0,'8193a9ad6b7f986dc37caabca4c843440f933e16a3859405a18eb34f11dc2226','86ec36684fc09136b64fafe46e0b59ab20a17af6106daa4bba167dbd76550bfc','metal_wolf_chaos_xd','metal_wolf_chaos_xd','https://www.gog.com/game/metal_wolf_chaos_xd',0,'General Arcade, FromSoftware, Inc','Devolver Digital','Shooter',0,0,0),(1944046260,'Inner Chains',0,0,0,0,0,'f41c9652f808dc4937c0e97bf1bf45a65574723225a9c85c2dc34ec204150fa6','d6ea12045bdd5a52f9b59cbc44caf05ea02cf82adfa6a7b658071fe8bd26bc37','inner_chains','inner_chains','https://www.gog.com/game/inner_chains',0,'Telepaths Tree','IMGN.PRO','Action',0,0,0),(1944341561,'Phantom Doctrine',0,0,0,0,0,'7fb3dce43e042f2331ed62a3b3dd2cfb6d1b319e526d4e53ed59edc36775484f','e4fc118ba36eeaa9f8065115587dee13cc1e56ba7bca947d8c68ccec239b5f5f','phantom_doctrine','phantom_doctrine','https://www.gog.com/game/phantom_doctrine',0,'Creative Forge Games','Good Shepherd Entertainment ','Strategy',0,0,0),(1944959747,'Sunrider Academy',0,0,0,0,0,'797296826d4b47e8d0d11b769b370ff0d2025b3ec2b2e556657ba31d56a98a3e','ded31528eea5e36ed39710e29ef8ff55b5d58036dc1a2fbf67c97d0b905196c3','sunrider_academy','sunrider_academy','https://www.gog.com/game/sunrider_academy',0,'Love in Space','Sekai Project','Simulation',0,0,0),(1947156754,'Robo Rumble',0,0,0,0,0,'91c39f2828d5a6fbf5cfba2ec17a84a80779bb37cb66fba0246b860d1529c340','78f9064e6dd6ae1a7f0596152b3dc57030881fa76d7417c159d1e83301f3d1fb','robo_rumble','robo_rumble','https://www.gog.com/game/robo_rumble',0,'Metropolis Software','TopWare Interactive','Strategy',0,0,0),(1948823323,'SPORE™ Collection',0,0,0,0,0,'a844cf7a2a287621f4b18af0e0ce6b3372848ae716214b953ec4325678c0981e','5892b5690711f07f399dc1a5963ca6d1106922bc246af43be5e63df4d6cd321e','spore_collection','spore_collection','https://www.gog.com/game/spore_collection',0,'Maxis Software Inc.','Electronic Arts','Strategy',0,0,0),(1948839141,'Apocalipsis: Wormwood Edition',0,0,0,0,0,'0a342a76ed1894f65d74ffbed39e2a8e27a72d34c80c85a2d7701a04a172a43c','c59df5db330bb908fcfb4bb22fcb1b10c0a18f6f52523ef3bd45501f2ddb0455','apocalipsis_wormwood_edition','apocalipsis_wormwood_edition','https://www.gog.com/game/apocalipsis_wormwood_edition',0,'Punch Punk Games','Klabater','Adventure',0,0,0),(1949242282,'Delta Force: Land Warrior',0,0,0,0,0,'134b15a73b6ad06fcb83e9c04a02c1e9b46a44f7dfe0b6bfbb67333b2f72c461','e9af6ba3039922c0d0bbc8868dfbe7e4ea84179ec15c9272fecd9f08498cdd07','delta_force_land_warrior','delta_force_land_warrior','https://www.gog.com/game/delta_force_land_warrior',0,'NovaLogic Inc.','THQ Nordic GmbH','Action',0,0,0);
INSERT INTO `games` VALUES (1949616134,'Dragon Age™: Origins - Ultimate Edition',0,0,0,0,0,'78485317312e881a175c686eaab8a988202b208942623acba641f35384f8dc12','5afb29f33ad40419a1677720143512b879bf42f0993db66793813843a36bfa39','dragon_age_origins','dragon_age_origins','https://www.gog.com/game/dragon_age_origins',0,'BioWare','Electronic Arts','Role-playing',0,0,0),(1949808563,'Way of the Red',0,0,0,0,0,'bd02e0226733c446741ffc394e9e28284bf81383cc0f7d89c6fc5530edee4e2d','b5c4d69720f908ac6f9e503ea2f0b551ccf1a8f812a365ee5b69f02d1af8df22','way_of_the_red','way_of_the_red','https://www.gog.com/game/way_of_the_red',0,'Corey Hardman','Corey Hardman','Action',0,0,0),(1949874913,'8-bit Invaders',0,0,0,0,0,'989237267347761b899d5caf443ad37efae52a9dac28766f5c074c84a02c341f','f9bdc2b521b3d86a2433a2a92dcd5859fecba3c87116c47d4e245fb67f54c4b2','8bit_invaders','8bit_invaders','https://www.gog.com/game/8bit_invaders',0,'Petroglyph Games','Petroglyph Games','Strategy',0,0,0),(1950015716,'The Little Acre',0,0,0,0,0,'9d2df72561961704fd9f093144e883a79c0607b6a3ca4cbc58b58ac2bc0a128e','c8ec75cf50596508ae3058b3af305f941ef088f36d810fefcd53c02236f30ee0','the_little_acre','the_little_acre','https://www.gog.com/game/the_little_acre',0,'Pewter Games Studios','Curve Digital','Adventure',0,0,0),(1950261263,'Monstrum',0,0,0,0,0,'2d10981ff7ca74e9f628fd2a61203783eb943123f432854ae65ede7397636f23','80f93f09822f9fb30a8af3a12a0dceec644f04403f3bd31c8fa8eca409339d2d','monstrum','monstrum','https://www.gog.com/game/monstrum',0,'Team Junkfish','Team Junkfish','Action',0,0,0),(1950754973,'Slay the Spire',0,0,0,0,0,'db5804c328fceab171fe88a6f6cc36fd2dfb181382350774a85fd15744289ca2','1df8adee14080bc3af41e7b75f571032a22c4477ec426c84ddb6e4be3ac2da5c','slay_the_spire','slay_the_spire','https://www.gog.com/game/slay_the_spire',0,'Mega Crit Games','Mega Crit Games','Strategy',0,0,0),(1951847103,'Parkitect',0,0,0,0,0,'f5439b94b6b06050d93e53aefd2476b1be83bf0a9cbaba43f951335398784c41','9386a55afb4f476f5831b4c4834006921c3d6b2366b98ec76d1f0bf627b86501','parkitect','parkitect','https://www.gog.com/game/parkitect',0,'Texel Raptor','Texel Raptor','Simulation',0,0,0),(1952000880,'Deep Diving Simulator',0,0,0,0,0,'3b912d8d5cdd70963b6687dc384b182126e7b7ed93d978f982a6cd274849918b','595e08e5da5eddd0c64052bf85a8c8492db99f14d9f1db82013fecdf7c59845b','deep_diving_simulator','deep_diving_simulator','https://www.gog.com/game/deep_diving_simulator',0,'Jujubee S.A.','Jujubee S.A.','Simulation',0,0,0),(1953257763,'Gary Grigsby\'s War in the East',0,0,0,0,0,'39027c8fdd72079ed2c562e3149e00732255f6bb2a85b12efbfeaef731dd6c73','342939578ca109d3975b0d212eb1d80ef61870aa3bf73d600333b982650211ce','gary_grigsbys_war_in_the_east','gary_grigsbys_war_in_the_east','https://www.gog.com/game/gary_grigsbys_war_in_the_east',0,'2by3 Games','Slitherine Ltd.','Strategy',0,0,0),(1953564736,'Monster Boy and the Cursed Kingdom',0,0,0,0,0,'2db3784638f9efea9d88654c5b0eec6be7d072b3186c1830324b2982f7f22038','3ef765463a059a50da03c7819c6346e0a7d592da4f7791d859afce14c38b233f','monster_boy_and_the_cursed_kingdom','monster_boy_and_the_cursed_kingdom','https://www.gog.com/game/monster_boy_and_the_cursed_kingdom',0,'Game Atelier','FDG Entertainment GmbH & Co KG','Action',0,0,0),(1955376433,'TWINKLE STAR SPRITES',0,0,0,0,0,'0d4621ad58dd4bd7d759bdd2fa53c6aa978e015790b2040474024614be7aceba','485376bac30a26e67ab23a26f5a64888186926be70ce38a965cc01ad38290560','twinkle_star_sprites','twinkle_star_sprites','https://www.gog.com/game/twinkle_star_sprites',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(1955494582,'Hegemony Gold: Wars of Ancient Greece',0,0,0,0,0,'09444465c8eab31386520a807c8f9b71b8ade1748b1bc6cbfa7968b9c241b0c1','4ae3258d6ca1bfc698043f1b8d0bfff7923bdd54042237a1456df0c200029cfb','hegemony_gold_wars_of_ancient_greece','hegemony_gold_wars_of_ancient_greece','https://www.gog.com/game/hegemony_gold_wars_of_ancient_greece',0,'Longbow Games','Longbow Games','Strategy',0,0,0);
INSERT INTO `games` VALUES (1956067111,'Maui Mallard in Cold Shadow',0,0,0,0,0,'064a1edbd64bf52253de1f99d4fd64cfa18999dbc79e2d7a78cc9a23598bc64e','eacecef79893fb468cfcf53a979ba5f9054e5a143fb06b4effb51bafeaeb0a34','maui_mallard_in_cold_shadow','maui_mallard_in_cold_shadow','https://www.gog.com/game/maui_mallard_in_cold_shadow',0,'Disney Interactive Studios','Disney','Action',0,0,0),(1956555724,'Myst IV: Revelation',0,0,0,0,0,'656a849f4e16ae744d6b9f9907cf4978409674d3c4789f73d6819fd38a1972fc','cc2315148b6575b681cc92467d89182b8cf8e46620d0bd9f340a3b0fa460453e','myst_4','myst_4','https://www.gog.com/game/myst_4',0,'Ubisoft Montreal','Cyan Worlds','Adventure',0,0,0),(1958228073,'Torchlight II',0,0,0,0,0,'2b0e03ffd750eda573b9ea0b1d24e71e993423f5913619f323393de4df81608e','e8f745261f87648a862166be365340cc9f0f3803dc428de2d2632f29bf07b1e1','torchlight_ii','torchlight_ii','https://www.gog.com/game/torchlight_ii',0,'Runic Games Inc.','Runic Games Inc.','Role-playing',0,0,0),(1958306970,'Torment: Tides of Numenera',0,0,0,0,0,'69c26d0c46e770f131a74310e39418ec61c72dcc7920d60f4afe41a0fabea81d','27e3b14821e2704106c9efa591e807669177f3b7d1c7aa0fe9f34aee131fdc8f','torment_tides_of_numenera','torment_tides_of_numenera','https://www.gog.com/game/torment_tides_of_numenera',0,'inXile Entertainment','inXile Entertainment','Adventure',0,0,0),(1958880681,'Space Rogue Classic',0,0,0,0,0,'64d73a111eefcbbd6ffe4dd03f92e6e621d2b0060a8e61d3819252ee1e019346','b1f1bf7516053fdb38d7a6795b22a105e2b1e4eee27d07456be1fbb8b5d61f77','space_rogue_classic','space_rogue_classic','https://www.gog.com/game/space_rogue_classic',0,'Origin Systems','Night Dive Studios','Action',0,0,0),(1959841786,'Bulb Boy',0,0,0,0,0,'69787501d6a02d32e470d2d77758cf154c64f3def876362be66cc25673cb1909','7dba8a18b219e461e7badebc4c9874cd94533b959a5e518163e3e45a92bf9504','bulb_boy','bulb_boy','https://www.gog.com/game/bulb_boy',0,'Bulbware','Bulbware','Adventure',0,0,0),(1960273452,'Weedcraft Inc',0,0,0,0,0,'7dc8ca9e2b3a341d4cfd0555a3a4882bd6b3604a5edb280e61aa2476d67cb63e','7912946e7bf76beb2ca22acd113c5764229c8cf3c3c10665c493f562a4a1aba4','weedcraft_inc','weedcraft_inc','https://www.gog.com/game/weedcraft_inc',0,'Vile Monarch','Devolver Digital','Simulation',0,0,0),(1960384075,'Death Road to Canada',0,0,0,0,0,'e73c72a1915f369f1e1ad8faa2689b81949baffb76ff6d2eb7b6bedd06ac9ea6','f6ef28628a341f197c7861d12550cbf478898916d160f6ea4fb936c6ec45f908','death_road_to_canada','death_road_to_canada','https://www.gog.com/game/death_road_to_canada',0,'Rocketcat Games','Rocketcat Games','Action',0,0,0),(1963513391,'Cuphead',0,0,0,0,0,'9e514e9d083c91567614bf68904ed9afa287987a78f342ac8598f1c7b883a57a','066899d86e9527089cdfe84982463f49327fdc32a34ecadb4be17b4bab8be12b','cuphead','cuphead','https://www.gog.com/game/cuphead',0,'StudioMDHR Entertainment Inc.','StudioMDHR Entertainment Inc.','Action',0,0,0),(1964276929,'War for the Overworld',0,0,0,0,0,'4282ac7573d84974b803fd33aeb3194432fa0c2dd9875052a55155ae1a726379','273d6f85afe066efd04122355350e4d9912bdb9bb6aa243044a52db2f71cf3dd','war_for_the_overworld','war_for_the_overworld','https://www.gog.com/game/war_for_the_overworld',0,'Brightrock Games','Brightrock Games ','Strategy',0,0,0),(1965205886,'Freeman: Guerrilla Warfare',1,0,0,0,0,'05eb6aead827a088b05c85278a770692bd66ecf24c1ea6818deb25689b5a8bb4','6bd9620a52ae10478141fa6077c8e069f49c980e4dd6fabbc6db02bf9df706c3','freeman_guerrilla_warfare','freeman_guerrilla_warfare','https://www.gog.com/game/freeman_guerrilla_warfare',0,'KK Game Studio','KK Game Studio','Strategy',0,0,0),(1965302672,'Epic Pinball: The Complete Collection',0,0,0,0,0,'349eb3d9bb930af3744d0071089dd4cda4ec0a41b7c79158a4724ff3ff51197a','ebfbce56e6d0e970c410f8dbf73a6604297067cbe298c2fbad7d650833d6ab65','epic_pinball_the_complete_collection','epic_pinball_the_complete_collection','https://www.gog.com/game/epic_pinball_the_complete_collection',0,'Epic Games','Epic Games','Action',0,0,0);
INSERT INTO `games` VALUES (1965502180,'Regalia - Royal Edition',0,0,0,0,0,'850f984996001a58d38aef22b1cc91a3b5b74659de7b8f1de78b8f303f39143a','6c1d942c6f866cb0c076b3e70e0bd29b9c48de319a4a60fa478b0fd4e0045b24','regalia_royal_edition','regalia_royal_edition','https://www.gog.com/game/regalia_royal_edition',0,'Pixelated Milk','Klabater','Role-playing',0,0,0),(1965973671,'Syberia 3: The Complete Journey',0,0,0,0,0,'0ecc1d90cc8392b8c42e842cb2e2ab455bbf01ac46262b1f7bc3fb64f2fb7751','3116b2365abe8cb4520cb585b32705016ba34495094aa24db72a5b984a076db8','syberia_3_the_complete_journey','syberia_3_the_complete_journey','https://www.gog.com/game/syberia_3_the_complete_journey',0,'Microids','Anuman Interactive','Adventure',0,0,0),(1966901360,'Close Combat: Panthers in the Fog',0,0,0,0,0,'b20a3ab19f168fe88ad4a6f2ade6905de9c8e70fac7dade5b74f6a25ef3299b2','922754869914e2a4139d16c9769e87fda5f5be8f18ee9161fbed441ac5f9ddf5','close_combat_panthers_in_the_fog','close_combat_panthers_in_the_fog','https://www.gog.com/game/close_combat_panthers_in_the_fog',0,'Matrix Games','Slitherine Ltd.','Strategy',0,0,0),(1971695113,'Aggressors: Ancient Rome',0,0,0,0,0,'4b6ff97324fbdf083991419593e4d3f1493cec0ac972fb508a157b7245ba6e1e','0eac5bdab704483e5b7b4b687760d6a137ca7af1dec85f7d07c1aeb9c43947dc','aggressors_ancient_rome','aggressors_ancient_rome','https://www.gog.com/game/aggressors_ancient_rome',0,'Kubat Software','Slitherine Ltd.','Strategy',0,0,0),(1976029387,'LEGO® Pirates of the Caribbean: The Video Game',0,0,0,0,0,'61ccc6093ed646737d01cdbc632474ed197abf0c6bf75412aaf811048114b7ef','6d60818c317b217261079c220f7eb43835639b32f21c2d55600ba63ec6ad22b9','lego_pirates_of_the_caribbean_the_video_game','lego_pirates_of_the_caribbean_the_video_game','https://www.gog.com/game/lego_pirates_of_the_caribbean_the_video_game',0,'Traveller\'s Tales','Disney','Action',0,0,0),(1976935743,'Event[0]',0,0,0,0,0,'bb47d4337f84ce6e7342c2bbc3e72f2cc5ff59b43603dde99be0db305f88fc87','a9e98d313c673d39861778c1ae5a0a1adfdf3fb696f0e2b1fb2bad70eaa9408b','event0','event0','https://www.gog.com/game/event0',0,'Ocelot Society','Ocelot Society','Adventure',0,0,0),(1978178686,'Saints Row: Gat out of Hell',0,0,0,0,0,'622522f4593afcffde8bf2daf00c3c7acdb2d464c8e4e3a9d7d4404c40ffe9c2','2f1df1defbaeeba7723a287d7091df96e98f9261b0a1a67d16be9434ad2ee103','saints_row_gat_out_of_hell','saints_row_gat_out_of_hell','https://www.gog.com/game/saints_row_gat_out_of_hell',0,'Deep Silver Volition / High Voltage Software','Deep Silver','Action',0,0,0),(1980612837,'HIVESWAP: Act 1',0,0,0,0,0,'8b5f9041b0d45618abce19c762a432440738ef806002b3d31f4c05d649d989a0','9a9e7233b7e0619a6eb263786cb1ba97820fc741279eb8c9b79d817376cdfbee','hiveswap','hiveswap','https://www.gog.com/game/hiveswap',0,'What Pumpkin Games, Inc.','What Pumpkin Games, Inc.','Adventure',0,0,0),(1981721026,'Close Combat 3: The Russian Front',0,0,0,0,0,'dc94a48efb98d1736e5d49413adc9020a41105c06281d2399e70053c1eecd34f','2a9d25449adcbc93340d2e9c2c7eab09304c7601d6e6f5c13752091586aced0b','close_combat_3_the_russian_front','close_combat_3_the_russian_front','https://www.gog.com/game/close_combat_3_the_russian_front',0,'Atomic Games, Inc.','Slitherine Ltd.','Strategy',0,0,0),(1982030524,'Dungeon Souls',0,0,0,0,0,'7e27c00b49cc8dbd1e162d840bb85bd46b271780930eeb88f6c8d529f4835d41','ba905669d9e367fa234699d9a873dfa832d4ec9427307e98cf1dc4768c723ce7','dungeon_souls','dungeon_souls','https://www.gog.com/game/dungeon_souls',0,'Lamina Studios','Black Shell Media','Action',0,0,0),(1982293831,'Pathfinder: Kingmaker',0,0,0,0,0,'3c4a1073e6c6a33b95c244802d7ecd07df973d4bb518a0cea48cc470190fbd9f','3d34e0b759faef42e16a1d7cca7c3463dc47a0e047b5c30ab83a627ea179a570','pathfinder_kingmaker','pathfinder_kingmaker','http://www.gog.com/game/pathfinder_kingmaker',0,'Owlcat Games','Deep Silver','Role-playing',0,0,0);
INSERT INTO `games` VALUES (1983374080,'Mhakna Gramura and Fairy Bell',0,0,0,0,0,'19e59c9ae3a8f6340ed8b27467ab3f0272e70162fd7d5a0e0a7126431e17a228','2437a0067c88e70a6e3a4b131d33dcc7c035a0ee78765168288eda04c5887f35','mhakna_gramura_and_fairy_bell','mhakna_gramura_and_fairy_bell','https://www.gog.com/game/mhakna_gramura_and_fairy_bell',0,'ALICE IN DISSONANCE','Sekai Project','Adventure',0,0,0),(1986246769,'Sigma Theory: Global Cold War',1,0,0,0,0,'21283146b993f480f8fc73dc1e84dc612b1fb945c276c9d474b6763c5b670949','ea02c9ad456faedcc10ee586fe058a9d26c01976c6afcae8faa76a43dd997805','sigma_theory_global_cold_war','sigma_theory_global_cold_war','https://www.gog.com/game/sigma_theory_global_cold_war',0,'Goblinz Studio, Mi-Clos Studio','Mi-Clos Studio','Simulation',0,0,0),(1986504189,'Epistory - Typing Chronicles',0,0,0,0,0,'93eb2a4ae4d4dfce4173b764d083f009326ebc9007202118f8b8d52e6ca82322','fa53cf50d159bb307abaa47fee42cfca4983f28e8f671352e2b4c40e7a3a3d29','epistory_typing_chronicles','epistory_typing_chronicles','https://www.gog.com/game/epistory_typing_chronicles',0,'Fishing Cactus','Fishing Cactus / Plug In Digital','Action',0,0,0),(1986871555,'Fade to Silence',0,0,0,0,0,'52382aa9e25565a10dc0ae297909ec5d8ce3a2a509d4f0484810c36651101dfc','5fc041117756c269fe635b9221afa1a3b3e7fdecdc4356b67efce94d504476fc','fade_to_silence','fade_to_silence','https://www.gog.com/game/fade_to_silence',0,'Black Forest Games','THQ Nordic GmbH','Action',0,0,0),(1987327876,'Judgment: Apocalypse Survival Simulation - Desert Edition',0,0,0,0,0,'0a49184b3450e441c2303e58e5d034272069904676b11e01f8aca7e0ca763518','b7150f3562a13a9021260440a80476511ef3b8e784d685b01abf309f688eb2ba','judgment_apocalypse_survival_simulation_desert_edition','judgment_apocalypse_survival_simulation_desert_edition','https://www.gog.com/game/judgment_apocalypse_survival_simulation_desert_edition',0,'Suncrash','Suncrash','Strategy',0,0,0),(1988084980,'Close Combat: Cross of Iron',0,0,0,0,0,'d0e93516d54d723a99dae510e29bb9970a69ebca2b1993b1279786b919e0c320','5a9b2a1ff83366b0162438043d6ea12004afcf647c12a5ca4080003b94b2a1c0','close_combat_cross_of_iron','close_combat_cross_of_iron','https://www.gog.com/game/close_combat_cross_of_iron',0,'Slitherine Ltd.','Slitherine Ltd.','Strategy',0,0,0),(1988613419,'Gorogoa',0,0,0,0,0,'7030a468e153266797bd90733d9504c194d1350108e91400f1a3dda74b1650a0','c61943a15cd1378bfc773d237b890d3acaaebf9dfc0feafecbf4ad772a6e97ad','gorogoa','gorogoa','https://www.gog.com/game/gorogoa',0,'Buried Signal','Annapurna Interactive','Adventure',0,0,0),(1989052770,'RIOT - Civil Unrest',1,0,0,0,0,'a29ce781718d2bec9a215302e4bb75a1d2100dba1f334551d4fb8ac07f0848de','206e157f8047bea7deffc00ff3e934b6fd2dc9b25062ec681383c8c5dc942b94','riot_civil_unrest','riot_civil_unrest','https://www.gog.com/game/riot_civil_unrest',0,'Leonard Menchiari, IV Productions','Merge Games','Strategy',0,0,0),(1990781940,'Dead In Vinland',0,0,0,0,0,'38b59bed6594aad09d09cd135c44fda6c9a008dba6531a88889e096c6a8cc36d','df5d6bf3f664c0d98d16b725ea402b5ccf2fc716495fe49b386dd529245b57e0','dead_in_vinland','dead_in_vinland','https://www.gog.com/game/dead_in_vinland',0,'CCCP','Plug In Digital','Adventure',0,0,0),(1991056046,'Alien Rampage',0,0,0,0,0,'94c393452da3af847843ec05dad8f5d307eceb84e1f36ae7c42719c69081ea05','44a98f00faed31e0774e01b9ba7603404662e5a7859739d1be5dd2c90534ffda','alien_rampage','alien_rampage','https://www.gog.com/game/alien_rampage',0,'Inner Circle Creations','Piko Interactive','Action',0,0,0),(1991525900,'Hellmut: The Badass from Hell',0,0,0,0,0,'467ad3d99287c834fe4952eb998a259eb7560a538e48e42e05ff5c43f88bad74','ca17ef80635db35e21611d2afc7d299b10049e616bbf3179f27f6d4425478033','hellmut_the_badass_from_hell','hellmut_the_badass_from_hell','https://www.gog.com/game/hellmut_the_badass_from_hell',0,'Volcanicc','Grindstone','Shooter',0,0,0);
INSERT INTO `games` VALUES (1991671705,'A Light in the Dark',0,0,0,0,0,'1112165edd7e6ce08801c72f7d067e61f68b992503b7a1395f7d65d4195ecd5b','6329159d1696aae9fd9122b68ecdb9a0acad0c138c2528621b90cfc166f9d7df','a_light_in_the_dark','a_light_in_the_dark','https://www.gog.com/game/a_light_in_the_dark',0,'CreSpirit, Storia, Narrator','Sekai Project','Simulation',0,0,0),(1993805983,'Brothers in Arms: Road to Hill 30™',0,0,0,0,0,'4096b2dd2322349ea0c8fb5ddf71b89d344ec410a58b9d9ddc00483e340e4775','210ebd90475b8b6dc3214fd289c275f0fc7ab609c556c2e130b809c75bef8e73','brothers_in_arms_road_to_hill_30','brothers_in_arms_road_to_hill_30','https://www.gog.com/game/brothers_in_arms_road_to_hill_30',0,'Gearbox Software','Ubisoft','Shooter',0,0,0),(1994114924,'Higurashi When They Cry Hou - Ch.7 Minagoroshi',0,0,0,0,0,'d500a782ead95ce4243ec31fcc0c5d39fcbb3b94553877850be01d389b66fb92','167798d626bac2c9e1aaada58b99d057003a6840325b65a351931192680cf2ff','higurashi_when_they_cry_hou_ch7_minagoroshi','higurashi_when_they_cry_hou_ch7_minagoroshi','https://www.gog.com/game/higurashi_when_they_cry_hou_ch7_minagoroshi',0,'07th Expansion','MangaGamer','Adventure',0,0,0),(1995040607,'Spellcasting 1+2+3',0,0,0,0,0,'86168d445152a725bd6995560a3c27a75ab2dc04deb80d33948358da3c6b39e5','0d236473de78a694d849b82830d95aae55c2741c9777ba9c94b2f24ef0813c17','spellcasting_123','spellcasting_123','https://www.gog.com/game/spellcasting_123',0,'Legend Entertainment','Piko Interactive','Adventure',0,0,0),(1995239510,'Tormentum: Dark Sorrow',0,0,0,0,0,'cbffac5cfe780fd359381ac9d63a2e1cda8d37910f9f39c8e25e439c50230412','2945d21be2150395fa867ee3bc2fda9098644b89c5c1f74f52896a3af20b99cb','tormentum_dark_sorrow','tormentum_dark_sorrow','https://www.gog.com/game/tormentum_dark_sorrow',0,'OhNoo Studio','OhNoo Studio','Adventure',0,0,0),(1998187672,'Eagle Island',0,0,0,0,0,'9c7a6aa44dc10f3a59c6448f6494387bacd3a779b3f5a53038713366c16cf68d','05e0a16cb3d5bfc0ff157b984b60eb8c6913b5c412c630b9b186c6716f325c61','eagle_island','eagle_island','https://www.gog.com/game/eagle_island',0,'Pixelnicks',' Screenwave Media','Action',0,0,0),(1999786718,'Think of The Children',0,0,0,0,0,'df2457489bc0d83459106dd7fd106fce90febe4bfb0807f9557fe3b064ec4b68','309bae9fb1bd4735a85a256dcb217fb6e444b1569ad0fccda771b88670b1d5ff','think_of_the_children','think_of_the_children','https://www.gog.com/game/think_of_the_children',0,'Jammed Up Studios','Fellow Traveller','Simulation',0,0,0),(2000358318,'Ys: Memories of Celceta',0,0,0,0,0,'ab5e7d79b12665efc805a112c600eb01d761f46e79fe54491fb0171ce691dc5a','10760763fb8dcebc3f5a0317b54c5cd6b455317f1ebcd88628513d27265528fe','ys_memories_of_celceta','ys_memories_of_celceta','https://www.gog.com/game/ys_memories_of_celceta',0,'Nihon Falcom Corporation','XSEED Games','Role-playing',0,0,0),(2001171812,'Rainswept',0,0,0,0,0,'cc2f2e273deb681517854328c7acf94e6e55ca4d5296d402f98f8ee34979d55b','8fcfa7759cf53e0b1fc21c2e4e15911fe7cf65d14599895b2de77cb833b806c2','rainswept','rainswept','https://www.gog.com/game/rainswept',0,'Frostwood Interactive','Frostwood Interactive','Adventure',0,0,0),(2001892744,'Sine Mora EX',0,0,0,0,0,'73356bfc40b483dae34da6878eb238b5f0665fbba261ec3e43df6bdd32f49ea7','1866bb9d1e360d232d250314cf2dd15a2d20b5a567036ed4928a871b9612fb01','sine_mora_ex','sine_mora_ex','https://www.gog.com/game/sine_mora_ex',0,'Digital Reality','HandyGames','Shooter',0,0,0),(2003665371,'Obduction ®',0,0,0,0,0,'241212a359c580bf23eb418118a7a8841262030d2e09d14e38e52768c7dc19f3','6670cbeb3b1641c42a15a97b168ef663ae815c2a5aeb089ad66eee23713d5a36','obduction','obduction','https://www.gog.com/game/obduction',0,'Cyan Inc','Cyan Inc','Adventure',0,0,0),(2004253604,'Into the Breach',0,0,0,0,0,'42907ded32893ac131ec96bd98867a318465a6a9aa8824e92065f1437dfc0def','33cabf44adfecc10545470121fbf8b241cff80d89159c0b6c9d2da8e276faa9d','into_the_breach','into_the_breach','https://www.gog.com/game/into_the_breach',0,'Subset Games','Subset Games','Strategy',0,0,0);
INSERT INTO `games` VALUES (2005058230,'YIIK: A Postmodern RPG',0,0,0,0,0,'f85986572338f204339e9499a61976dc8951dcc0a97c9a694bbe559755c676b7','11a72404fa224d6213c404617a7187845697c1c0c701bb8e23c848f40609f9f2','yiik_a_postmodern_rpg','yiik_a_postmodern_rpg','https://www.gog.com/game/yiik_a_postmodern_rpg',0,'Ackk Studios','Ysbryd Games','Role-playing',0,0,0),(2007520286,'Shivers',0,0,0,0,0,'6f8d7da96e6e8f19c0c6e66d576cff3b19593f6e58c04f5b8331adb5dab1b0b8','86e92ee0acee610afc80d9126df29ebb8f821ba559f2c4102950bf90af01591e','shivers','shivers','https://www.gog.com/game/shivers',0,'Sierra','Activision','Adventure',0,0,0),(2010600563,'Even the Ocean',0,0,0,0,0,'34fcd23a6b7b56aecb40973b9ca81ebe1f8afb317de8c0c305f248fbf9a2ce50','6990484cce472076682b976da147b50386a09b47075631e7d042e7ab4bd34c43','even_the_ocean','even_the_ocean','https://www.gog.com/game/even_the_ocean',0,'Analgesic Productions LLC','Analgesic Productions LLC','Adventure',0,0,0),(2013291024,'Corpse Party: Sweet Sachiko’s Hysteric Birthday Bash',0,0,0,0,0,'043be345a6d1ef7f6ce3db08d1fcac33e7f29487bccf4fa6d8819d3b4009b202','01fbbef1b9cec472208b6902ce5c1bec00081d9a21d9307742d71e273087069b','corpse_party_sweet_sachikos_hysteric_birthday_bash','corpse_party_sweet_sachikos_hysteric_birthday_bash','https://www.gog.com/game/corpse_party_sweet_sachikos_hysteric_birthday_bash',0,'MAGES. Inc., 5pb.','XSEED Games, Marvelous USA, Inc.','Role-playing',0,0,0),(2014697223,'Delta Force 2',0,0,0,0,0,'22e10c4bd344fc21cc078a9d523458d7fca83e27fd16f24cc40c58d327db72f4','ffb205444014f342791e9698e3dadfddcf7db5ddc6941b518f433b6f8c15ac52','delta_force_2','delta_force_2','https://www.gog.com/game/delta_force_2',0,'NovaLogic Inc.','THQ Nordic GmbH','Action',0,0,0),(2014921890,'Crysis Wars',0,0,0,0,0,'d05c6e1f4e2eaf6edccf0a5c58cf96f774b4d57d7f47e451fcbec1816837bbc7','e1a9907c44389e29a0ab62e74e3a93a6806cd4b8496e42b8d51669e109a7af70','crysis_wars','crysis_wars','https://www.gog.com/game/crysiswarhead',0,'Crytek Studios','Electronic Arts','Shooter',0,0,0),(2016844216,'CAYNE',0,0,0,0,0,'cbcce9d6ab1b18f8c4a8630fa9b6f566b5fa61ac7e316ec2d39042377bc0e8eb','9f7189be4eca2ccd8bfb83e11bd3d8dc130d08199a97767a640a98435dad31f4','cayne','cayne','https://www.gog.com/game/cayne',0,'The Brotherhood','The Brotherhood','Adventure',0,0,0),(2016902862,'Close Combat 5: Invasion: Normandy - Utah Beach to Cherbourg',0,0,0,0,0,'5ff63f9efa86fa5f6849ec31a5692ec1b2071487a2c885cd92c7855640e36f24','1b88f59f3d4c6d3d05ed29a4bf8ce0e5fba1157759d2c68ab899773085d55e25','close_combat_5_invasion_normandy_utah_beach_to_cherbourg','close_combat_5_invasion_normandy_utah_beach_to_cherbourg','https://www.gog.com/game/close_combat_5_invasion_normandy_utah_beach_to_cherbourg',0,'Atomic Games, Inc.','Slitherine Ltd.','Strategy',0,0,0),(2018730457,'Project Highrise',0,0,0,0,0,'ba84079ec7d19f4ad059786042f465b905c6998a1e306fbd32f899bf5156af96','0e3ba290ce0c16560704e8a5f1efbca56be360be8370a3da0c3fef413c7011c6','project_highrise','project_highrise','https://www.gog.com/game/project_highrise',0,'SomaSim','Kasedo Games','Simulation',0,0,0),(2020914910,'BASEBALL STARS 2',0,0,0,0,0,'b4c1e1224ca2a562a0f57296b84f07eb6bf3dc6e1dd449a4ad8a317a1ac8a6ef','2e1202b1e1a857843aace56afe170957382029413c9f8d16a45d0e4949b13df6','baseball_stars_2','baseball_stars_2','https://www.gog.com/game/baseball_stars_2',0,'SNK CORPORATION','SNK CORPORATION','Sports',0,0,0),(2022391210,'Silver Chains',0,0,0,0,0,'5810a9bcef0d76587990f48e0d2aa5fafbe7c0b6610982771e872ccc3800fbe6','ecf0a762d622a446fbaa7ba4de53841cbff752d390e41c1b2a59bcc7e37614ac','silver_chains','silver_chains','https://www.gog.com/game/silver_chains',0,'Cracked Heads Games','Headup Games','Adventure',0,0,0),(2023071927,'MechoEcho',0,0,0,0,0,'0a4bbbf1ae4dcb9dd43b779a5fffaba21c47a69534d4e0d705f7f458bc06f28d','bb199eed753c4e5ae4d1b0fb958f3f408f15a60006f900172778bfc9b1bf2977','mechoecho','mechoecho','https://www.gog.com/game/mechoecho',0,'Resilient Games Ltd.','Resilient Games Ltd.','Strategy',0,0,0);
INSERT INTO `games` VALUES (2023488780,'The Metronomicon',0,0,0,0,0,'4b2e491a302ad3182f933c58927598800c8d98e8df7826f0a7d2c2d8d979c01f','78abd991c5e882f11448e9c7f00bbb5ae9563b82d388d0442c0aceb39ab3024c','the_metronomicon','the_metronomicon','https://www.gog.com/game/the_metronomicon',0,'Puuba','Kasedo Games','Action',0,0,0),(2023945788,'AMID EVIL',0,0,0,0,0,'74bba613d870017e32dd73693c242e9e197e43fd79f6b9c9a689246075d69373','0ae9d4d6fac8aca1adaff8da17650c4b09fe9f46f1f08effff375612639e11f7','amid_evil','amid_evil','https://www.gog.com/game/amid_evil',0,' Indefatigable','New Blood Interactive','Shooter',0,0,0),(2028010515,'Party Hard 2',0,0,0,0,0,'e6cdbebcdd9fd0076f2c5996c60d240853ed4cc9a62aa1cecb68e0fd7cde6145','254bf664ae8f71500daef16fcb74bdbf225663977ba355a3b463d08a9138691c','party_hard_2','party_hard_2','https://www.gog.com/game/party_hard_2',0,'Pinokl Games, Kverta','tinyBuild','Action',0,0,0),(2029222893,'Red Faction Guerrilla Re-Mars-tered',0,0,0,0,0,'c97f777953617943380afb7740ea488131fb2961febf259c938d6fa704f26222','5c46a0399fafd61b6a51851103d4be588e6489cefef67cdb8ca97863b7c2418f','red_faction_guerrilla_remarstered','red_faction_guerrilla_remarstered','https://www.gog.com/game/red_faction_guerrilla_remarstered',0,'Volition, KAIKO','THQ Nordic GmbH','Shooter',0,0,0),(2029703882,'The Legend of Heroes: Trails of Cold Steel',0,0,0,0,0,'0d580936615326d4deb610a76f34cf787e8e8d69a78970b484a2d93be83ad00c','528d98d3e7e2a29622db6b0a2c895e98800ccf70763d8e624f7a4f51cf2d476f','legend_of_heroes_trails_of_cold_steel_the','legend_of_heroes_trails_of_cold_steel_the','https://www.gog.com/game/legend_of_heroes_trails_of_cold_steel_the',0,'Nihon Falcom Corporation','XSEED Games','Role-playing',0,0,0),(2030715678,'River City Ransom: Underground',0,0,0,0,0,'b8c8f524088588ecba67aa41093d2a98463d64b7d975e57a4d52c9dd17d4b1fa','05a8c2a0f054e113fa0126ed08e859f4df97fd7de4d3ad6ff2a7e6254e854293','river_city_ransom_underground','river_city_ransom_underground','https://www.gog.com/game/river_city_ransom_underground',0,'Conatus Creative Inc.','Conatus Creative Inc.','Action',0,0,0),(2031519202,'The Walking Dead: The Final Season',0,0,0,0,0,'dafbc23df4e2bffc3f8d269a5753c6e197b0980fe1aff6bcba846dc1073755f9','5869eba7ed50be55b4f87f0a06ce8d2048b5667c17024f1086ed4c33bb5f6d6a','the_walking_dead_the_final_season','the_walking_dead_the_final_season','https://www.gog.com/game/the_walking_dead_the_final_season',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(2033991040,'198X',0,0,0,0,0,'a01e013c08a5c163d9ced824071cb44c1e5bdf3ad073068b73df5c0a2b7db3b8','bc36ff1bf97a3958df57b83bc2a0288712a1f51d93eecb7c8b7f8d76774d99bf','198x','198x','https://www.gog.com/game/198x',0,'Hi-Bit Studios','Hi-Bit Studios','Adventure',0,0,0),(2034022055,'Chook & Sosig: Walk the Plank',0,0,0,0,0,'2ae033aadd1aa238fb70f332786bb5b000005207d22e1b1819de0b454ddfbbb2','5196914c6c2b552af1bcd7d2a1696f8228e50693fcb94f06b1bca600308cdcc9','chook_sosig_walk_the_plank','chook_sosig_walk_the_plank','https://www.gog.com/game/chook_sosig_walk_the_plank',0,'TookiPalooki','Armor Games Studios','Adventure',0,0,0),(2037689757,'Saints Row IV: Game of the Century Edition',0,0,0,0,0,'17884630a149611071462ea94499b0a57ee54882ea7737319ebcd1d86bc0f12d','4dc3d781a5448a25cf49af7e733a8e958a5cceeb9e3f904a2485085849c152e1','saints_row_iv_game_of_the_century_edition','saints_row_iv_game_of_the_century_edition','https://www.gog.com/game/saints_row_iv_game_of_the_century_edition',0,'Deep Silver Volition','Deep Silver','Action',0,0,0),(2038903037,'Eric the Unready',0,0,0,0,0,'037f4dfa3e4d7e4e134b314fa4ec6d95843d0d79a5194707dc8771dd03c8d70d','f7e58192e9e35e55b0e44db20f04f7802fe1f57aab589c201b35a18ca2b8fcd9','eric_the_unready','eric_the_unready','https://www.gog.com/game/eric_the_unready',0,'Legend Entertainment','Piko Interactive','Adventure',0,0,0);
INSERT INTO `games` VALUES (2039033392,'Grim Legends: The Forsaken Bride',0,0,0,0,0,'a012ccc89cb268d8754c4abd543c848a7eee2ac2d2375cb999a6301b26052c7c','71d725674e44d15152bf7f872741e0d4343d7103b459617df49f2f0c97ff5159','grim_legends_the_forsaken_bride','grim_legends_the_forsaken_bride','https://www.gog.com/game/grim_legends_the_forsaken_bride',0,'Artifex Mundi','Artifex Mundi','Adventure',0,0,0),(2044567729,'Omensight',0,0,0,0,0,'64f3155f8f9546a7a51cb89e9cf4e87d83b3e3649c66ba35405d0e6011b8d4c1','cb1dc66c81652af747b1e1f33370c35b37c1d0be5726190dbf92a867f1ef7e4e','omensight','omensight','https://www.gog.com/game/omensight',0,'Spearhead Games','Spearhead Games','Action',0,0,0),(2046360890,'METAL SLUG X',0,0,0,0,0,'94ef0537c2b933cc6d85ec938a4d91ef764be357decf25658ffc9d16dbc1ca5a','c8f9ab22f96727a1ab8f8cd9b7fa6f15164027a7b7f982ca3337c5d1e754425d','metal_slug_x','metal_slug_x','https://www.gog.com/game/metal_slug_x',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(2047524778,'Low Magic Age',1,0,0,0,0,'e6812fda52af3736cf6b1cecd4f015a77e025f1701017939449b21d243ab16f4','a64142ef59c7cce425794e71d00e13dbb38d6f72312abd6897ca0b2d4f97e759','low_magic_age','low_magic_age','https://www.gog.com/game/low_magic_age',0,'Low Magic Studios','Low Magic Studios','Strategy',0,0,0),(2047670766,'Battlevoid: Harbinger',0,0,0,0,0,'10b551aaa14579977f5ae5dc555570c515bf5f5be0b64303d85be96d6733967c','4efa160bf8992fed8ea2919126aaf95fe17b361f27c368bff2d6063fd3743d84','battlevoid_harbinger','battlevoid_harbinger','https://www.gog.com/game/battlevoid_harbinger',0,'Bugbyte Ltd.','Bugbyte Ltd.','Strategy',0,0,0),(2049521547,'Zwei: The Arges Adventure',0,0,0,0,0,'44ee3ef8a0048bda5bce57a01823fa1b062c742341bd5d44ae00e92381167796','7ab3e661232e083eeab830e9d98ec2c0b86c80114ab83ebbb4a2c2ded6034a56','zwei_the_arges_adventure','zwei_the_arges_adventure','https://www.gog.com/game/zwei_the_arges_adventure',0,'Nihon Falcom Corporation','XSEED Games','Role-playing',0,0,0),(2049669635,'AWAY: Journey to the Unexpected',0,0,0,0,0,'8504090b2dd04c031588de3754b848f04828dcd567c5688e31a559afcae0b659','c0b8440571c04078d90c9dc954a3e9ff08e88da001862310809ec0563816de67','away_journey_to_the_unexpected','away_journey_to_the_unexpected','https://www.gog.com/game/away_journey_to_the_unexpected',0,'Aurelien Regard Games','Playdius','Action',0,0,0),(2051103599,'Yono and the Celestial Elephants',0,0,0,0,0,'e63870f6fbd6d55e0b627f8a6498190a35ab977b40464397a4174ce9d93ec3b9','3cf4a5e60168aa92e8cb55adacd5487c2673661ae5c958f2ab1b4e86aee2d368','yono_and_the_celestial_elephants','yono_and_the_celestial_elephants','https://www.gog.com/game/yono_and_the_celestial_elephants',0,'Neckbolt','Plug In Digital','Action',0,0,0),(2056114425,'7 Billion Humans',0,0,0,0,0,'f948f0cf91bdd76e13c0d77e10ee7a6dcdf0e7c8715f96b9b075e6129aa13688','243c29a62fd608d2cb4244bd662e66113358856838618f27e1ae969d1d2ceefb','7_billion_humans','7_billion_humans','https://www.gog.com/game/7_billion_humans',0,'Tomorrow Corporation','Tomorrow Corporation','Simulation',0,0,0),(2056546893,'GoNNER BlüEBERRY EdiTION',0,0,0,0,0,'db4ff921eeacf8d17d434684c6d79131f1cfd6c26eb85d4d203a5c37c163255f','5631d252a395395c1927ed1765652b3b3bcc615ba9b97875004eec4347cec052','gonner','gonner','https://www.gog.com/game/gonner',0,'Art in Heart','Raw Fury','Shooter',0,0,0),(2056960246,'Trailblazers',0,0,0,0,0,'0352c5b64a332c7c1375359326ae4eb8e9cb29c0a41cf822e165f63bb63b723d','0d7302bde53cfd80c67ee94373d7c7f0ef071c1650fa39eb30ec8c7609bd5ee7','trailblazers','trailblazers','https://www.gog.com/game/trailblazers',0,'Supergonk','Rising Star Games','Racing',0,0,0),(2059569346,'Rad Rodgers - Legacy version',0,0,0,0,0,'c9eae383e8da048b29b05b5abbc89e3e0687d4bf7aa67795558e1176f3712562','c1d9bdbcff0ef11b9ac20f954148740c068ee323bcba1a551e4519b44cf245c0','rad_rodgers_world_one','rad_rodgers_world_one','http://www.gog.com/game/rad_rodgers',0,'Slipgate Studios','THQ Nordic GmbH','Action',0,0,0);
INSERT INTO `games` VALUES (2060341617,'Throne of Darkness',0,0,0,0,0,'26f002ff717e9c6012d571ce5c64940b0fc8b8d93125874b7c4e54946118a5d9','2c6e57142f27026c96e022d841ef446994f2977616629f1f8c6e839a0a0af9ee','throne_of_darkness','throne_of_darkness','https://www.gog.com/game/throne_of_darkness',0,'CLICK Entertainment','Activision','Action',0,0,0),(2060365190,'Reigns: Game of Thrones',0,0,0,0,0,'23d8a1a76ab13938eb26bd893b7579db75340b08f8d193d5b7c512c51e881b35','2359fb4d4ba3451c0d4c7df95f134f20e965459a5cfa3509a083bdb39065c720','reigns_game_of_thrones','reigns_game_of_thrones','https://www.gog.com/game/reigns_game_of_thrones',0,'Nerial','Devolver Digital','Adventure',0,0,0),(2061814323,'Wizard of Legend',0,0,0,0,0,'fe6950fabf66b9752092c9f696eeea179403819bd81b1f2fa0710814bffc1251','5150dabf7b58fa201c35f96ee90fee9f7b07520288e01003524e89704ed9e971','wizard_of_legend','wizard_of_legend','https://www.gog.com/game/wizard_of_legend',0,'Contingent99','Contingent99','Action',0,0,0),(2064851015,'Way of the Samurai 3',0,0,0,0,0,'72a207afb6add046bad6ffbd15276b2ed91dce3304d913f6042b568e6644c972','2c96679c075fb5a5b897bc6069ef49a137c1e8a02a31a9d05b7d1e8fdae12805','way_of_the_samurai_3','way_of_the_samurai_3','https://www.gog.com/game/way_of_the_samurai_3',0,'ACQUIRE Corp.','Ghostlight LTD','Action',0,0,0),(2065676798,'Lost Eden',0,0,0,0,0,'f9a1ec908c92bdc5860b9afe501d7893175ffd1191dc7f46db33ab0c32c82bc1','6a466d24e00a72131e13d9195207262d5f756691ec4e7f0ee666f5370c94b44d','lost_eden','lost_eden','https://www.gog.com/game/lost_eden',0,'Cryo Interactive','Interplay','Adventure',0,0,0),(2067763543,'Kingdoms and Castles',0,0,0,0,0,'239f94729f55602322cf6489798c57bed482b84ea7e253bb3bf716328619878a','89188227226773723946a875c6e1a2d93dcae1c0b20bc42561fca5c4b9df91c5','kingdoms_castles','kingdoms_castles','https://www.gog.com/game/kingdoms_castles',0,'Lion Shield','Lion Shield','Strategy',0,0,0),(2069019551,'Rogue Wizards',0,0,0,0,0,'0636279bcde9920daae48778b751b2cc86c2d3c9b96c1e2e4444e02301a10b08','30312c7a2c150951319d7c7dbf1e372d4379694b8c9e2b17ba32a6d1347b82a9','rogue_wizards','rogue_wizards','https://www.gog.com/game/rogue_wizards',0,'Spellbind Studios','Spellbind Studios','Role-playing',0,0,0),(2070729622,'EXAPUNKS',0,0,0,0,0,'2a6029c976f582e71ca7ee811bf68d97daae16d0a056de4641a1c4e47702eb0b','c8ff34a1a1e12cf2b6e9d0d93bc909f63de98aba93488c976b67817710d009e9','exapunks','exapunks','https://www.gog.com/game/exapunks',0,'Zachtronics','Zachtronics','Simulation',0,0,0),(2070890632,'de Blob 2',0,0,0,0,0,'059defe47b9fb42a22a516812c76ddd13692e1fbdcdcda790ad3c358d8b9a566','d663cea3b5f410a63512047f00cb127d5619302fd1b953712c9d2e5c0dd31299','de_blob_2','de_blob_2','https://www.gog.com/game/de_blob_2',0,'Blue Tongue Entertainment, Blitworks','THQ Nordic GmbH','Action',0,0,0),(2071628374,'Zombie Night Terror',0,0,0,0,0,'1b5906b5d1e6e02e486c8ea24085b1e7f9c1cb0df4f424d24ec7f873066ffd1a','b421ff50b259ac9791f3b18c4a38008c14d841b71b408316ea4aea3cdd068674','zombie_night_terror','zombie_night_terror','https://www.gog.com/game/zombie_night_terror',0,'NoClip','Good Shepherd Entertainment ','Strategy',0,0,0),(2074961301,'VA-11 Hall-A: Cyberpunk Bartender Action',0,0,0,0,0,'06981d9d74452060d2e7ef8e0071c88f1a87ba9b45e92c40a4fd6e1219c476cc','3f9ec1120154c8f4400d449223bcdd5e94f1bf480098dccac3842ed91e4f88d8','va11_halla','va11_halla','https://www.gog.com/game/va11_halla',0,'Sukeban Games','Ysbryd Games','Simulation',0,0,0),(2075976504,'A.D. 2044',0,0,0,0,0,'088710034500e4104b41729afc33e048a85ec12a1d2e2b42c894ac3ae01de2e1','2ea5c20325f1dd73986d06e54be6da30761b45f28717cffd286aeb5304f4a756','ad_2044','ad_2044','https://www.gog.com/game/ad_2044',0,'L.K. Avalon','L.K. Avalon','Adventure',0,0,0),(2076059543,'Orwell',0,0,0,0,0,'067616ce476ee3a479fc6298a33c1d1d9b4ba4a12ba4dc4ad7cf04476f6c09b1','90ca64512828698c29001efb213ef84c04ecedfa73e7cf933df0929c55001061','orwell','orwell','https://www.gog.com/game/orwell',0,'Osmotic Studios','Fellow Traveller','Simulation',0,0,0);
INSERT INTO `games` VALUES (2076502816,'Rogue Trooper Redux',0,0,0,0,0,'b90f5cde3eaa5cd0951ced13156a111357f99ccf025c39b0a8ab617abfed1ea6','91c0745226e64e0168811aca345f05a1582fd588f7f720c37ac4ef79bd0e2670','rogue_trooper_redux','rogue_trooper_redux','https://www.gog.com/game/rogue_trooper_redux',0,'TickTock Games','Rebellion','Shooter',0,0,0),(2076702405,'Lamplight City',0,0,0,0,0,'f12ed4027a3605bc4439b1223a8ca39b2bfa394f68b083a2245f8fc757d29ea8','b91231a8632ff9a101e6f64b995b9fcfac0ce4db82a34d3387625d3f8f0c1603','lamplight_city','lamplight_city','https://www.gog.com/game/lamplight_city',0,'Grundislav Games','Application Systems Heidelberg','Adventure',0,0,0),(2078272297,'GRIS',0,0,0,0,0,'2711f1155f42d68a57c9ad2fb755a49839e6bc17a22b4a0bc262b0e35cb73115','8d3607b8a2961f2be15a48b36197d0ed8b36e23c43be01a283de91a424704002','gris','gris','https://www.gog.com/game/gris',0,'Nomada Studio','Devolver Digital','Adventure',0,0,0),(2078420771,'DISTRAINT 2',0,0,0,0,0,'41575f066ec29658ff1fb2517adad8af83eb9975f142cea2d8d3ec5b0171ed7e','dbeeb272fec828488b8b99af06e4cd5c0bcdbd39180ea28072c0b436ce53f58d','distraint_2','distraint_2','https://www.gog.com/game/distraint_2',0,'Jesse Makkonen','Jesse Makkonen','Adventure',0,0,0),(2078946998,'Close Combat: Modern Tactics',0,0,0,0,0,'5e596fed25849ca229be426b52dd8d98fdda5a5b7197fd286423938cea0b023a','409d4f680aed050379f5f349167828c7a958edd993ee493c2825f80e84cc6260','close_combat_modern_tactics','close_combat_modern_tactics','https://www.gog.com/game/close_combat_modern_tactics',0,'Slitherine Ltd.','Slitherine Ltd.','Strategy',0,0,0),(2079613275,'Buzz Aldrin\'s Space Program Manager',0,0,0,0,0,'16720e41915016aca83ce8cc7e04ffe0d0c81c8517b8519ef5bf5f6adb9003f6','0035e8012b79787822a7e455c041e8e8fe07b90dd7af37538dbf937585f6dec4','buzz_aldrins_space_program_manager','buzz_aldrins_space_program_manager','https://www.gog.com/game/buzz_aldrins_space_program_manager',0,'Polar Motion','Slitherine Ltd.','Simulation',0,0,0),(2083200433,'Dragon\'s Lair Trilogy',0,0,0,0,0,'5acb285a25b283a3f5336c446fe657b0643cba9c6855d63fb57bbd03ab8d8171','8c97c33f3980b7ce9c37e5f18a07b1d9dea7e110334966ebd23b95097e3b9969','dragons_lair_trilogy','dragons_lair_trilogy','https://www.gog.com/game/dragons_lair_trilogy',0,'Digital Leisure Inc.','Digital Leisure Inc.','Action',0,0,0),(2085898015,'Space Rangers: Quest',0,0,0,0,0,'82b861dee0483bc89a267c7ea1e8c63dc870d8db8ac09fff763297134896be6c','374bbf2fa8b40c51d8c8de3db677b089f40337b8273918cee99dd0041a7dee05','space_rangers_quest','space_rangers_quest','https://www.gog.com/game/space_rangers_quest',0,'SNK-Games Ltd.','1C Publishing','Adventure',0,0,0),(2086050016,'SimCity™ 3000 Unlimited',0,0,0,0,0,'5a0db4bcb30f880d12f0f8f92f2f8ae1ea2f7d370eb74516f42c76a06fda4010','8c358e1f66aa244fa3021fa70c35693e62e45764ee9b1ad3a54f93ec598dec5c','simcity_3000','simcity_3000','https://www.gog.com/game/simcity_3000',0,'Maxis Software Inc.','Electronic Arts','Simulation',0,0,0),(2086603499,'Starpoint Gemini Warlords',0,0,0,0,0,'e22d9f5782adbd07a17aa4df7694648ec8ef88c7882f3c39409692d7a62d7c43','be63ca5ac9d017c69228bd6a99a33c5b2b5282d5502edb5ff2ffaec964eecc0e','starpoint_gemini_warlords','starpoint_gemini_warlords','https://www.gog.com/game/starpoint_gemini_warlords',0,'Little Green Men Games','Iceberg Interactive','Role-playing',0,0,0),(2088389040,'Shaq Fu: A Legend Reborn',0,0,0,0,0,'369b7b754864255eaffbc125e1c886f3c8710af87407275b07e73cfec435dbf4','5b77def5056734302a21bc40e9c6b6483bb7048fa7e5224382fd57571b2ad602','shaqfu_a_legend_reborn','shaqfu_a_legend_reborn','https://www.gog.com/game/shaqfu_a_legend_reborn',0,'Big Deez Productions','Mad Dog Games','Action',0,0,0),(2089001920,'Immortal Redneck',0,0,0,0,0,'f8387855fa8cadfccb422a584e079f00fec37380adba91a47c72a6d06c8fb8ef','0a30372beefb5cd778c1121d3a7191302cf6fb662814b50c4e4edc33662faca9','immortal_redneck','immortal_redneck','https://www.gog.com/game/immortal_redneck',0,'Crema Games','Crema Games','Shooter',0,0,0);
INSERT INTO `games` VALUES (2092821172,'THE KING OF FIGHTERS 2000',0,0,0,0,0,'a45136ab30e4bc4746c37e094ea17d86280b8eaca49adb3f188922d70204b37b','62fdbd1cf1d4b4c6ec89e662742606136f3f767f2d301c44c5b4ef2a2c7ddc50','the_king_of_fighters_2000','the_king_of_fighters_2000','https://www.gog.com/game/the_king_of_fighters_2000',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(2097726164,'THE KING OF FIGHTERS \'98 ULTIMATE MATCH FINAL EDITION',0,0,0,0,0,'03d2a56c7bb252b05b7ca984e516e415c0edad04bdf38fa32e6986b7879d6541','0d84e6a05af5d169437c6d04984c275371eb460097d5538b6feb59cce1f9d50c','the_king_of_fighters_98_ultimate_match_final_edition','the_king_of_fighters_98_ultimate_match_final_edition','https://www.gog.com/game/the_king_of_fighters_98_ultimate_match_final_edition',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(2098128602,'Furi',0,0,0,0,0,'5a4fde164d02c1a7f6529442621d6809d79de5f749593d756ddc29c041d3e362','ecbeb1437e68e7e4dbc7e170fa64d32f2f642cd40e402e2d12ff051d8c53120f','furi','furi','https://www.gog.com/game/furi',0,'The Game Bakers','Plug In Digital','Action',0,0,0),(2098531388,'Semblance',0,0,0,0,0,'9ab4cffd1ccdbea875747a5e141e23e3aea5547a6efd308ec690cad10c25ddc8','86d67c137cb7b150059016ab4fadb03d51024e68f4629e05b178bae55ac4dde4','semblance','semblance','https://www.gog.com/game/semblance',0,'Nyamakop','Good Shepherd Entertainment ','Action',0,0,0),(2098644729,'Vampyr',0,0,0,0,0,'013740b04ca205af4d3b5de6f4dcc3e7bea5ff4fdfbaf1b6217652bd2d7f1b9d','bcc1b8733d8749fd52cbcf1755803fb5bf345ca415230971bedd43cc1769babb','vampyr','vampyr','https://www.gog.com/game/vampyr',0,'DONTNOD Entertainment','Focus Home Interactive','Action',0,0,0),(2099484877,'MissionForce: CyberStorm',0,0,0,0,0,'0f13045bf97b780143134b02af0236079f8b9563d139f21203af864fb43612fb','490239ba30dff86e640c50a6de7110010386261b92d02501e6552e6130a32fff','missionforce_cyberstorm','missionforce_cyberstorm','https://www.gog.com/game/missionforce_cyberstorm',0,'Dynamix','Activision','Strategy',0,0,0),(2099920872,'Fallen Haven',0,0,0,0,0,'f9fa9e78cabc71171c27a8cd657bf660d8d434393de7507331e0d8129cf9eeee','6ad34dbaeebded60fb10bc45ae5244de0afc16477276d9ca1fb139679e2dced8','fallen_haven','fallen_haven','https://www.gog.com/game/fallen_haven',0,'Les Productions Micomeq','iEntertainment Network Inc.','Strategy',0,0,0),(2103245994,'Sengoku Jidai GOLD',0,0,0,0,0,'60e97cf7a94258bb3b3944c9f5bdec2518d00216aad2668e694514046efd21a1','3915292c7a7c9b9c9cfedb3c3cfae6946ec2a3723c3beb42f101ba5ba6e119cb','sengoku_jidai_gold','sengoku_jidai_gold','https://www.gog.com/game/sengoku_jidai_gold',0,'Byzantine Games','Slitherine Ltd.','Strategy',0,0,0),(2103848294,'Strategic Command Classic: WWII',0,0,0,0,0,'b69a9e3411fad0ade68925c3c629fee3aa186f8b745b45dabd10dcd8af8a9b89','27067c5c8e8470a169aa0a912db7ee0a8a3222e6d791b5183ee7afcfcefad304','strategic_command_classic_wwii','strategic_command_classic_wwii','https://www.gog.com/game/strategic_command_classic_wwii',0,'Fury Software','Slitherine Ltd.','Strategy',0,0,0),(2104387650,'Serious Sam\'s Bogus Detour',0,0,0,0,0,'8e678b874f4f65f28f7c86d76a5bf953f09bc8fe9df663655b9b1ca7fd1c0b9e','7ff0c878c4c46c5fa34b34f0a4b14ee6b3536a9ad97509e0f094977bf6877036','serious_sams_bogus_detour','serious_sams_bogus_detour','https://www.gog.com/game/serious_sams_bogus_detour',0,'Crackshell, Croteam','Devolver Digital','Action',0,0,0),(2104548474,'Breathedge',1,0,0,0,0,'3c2e1169736891a86bb7aee9dc9a407da1de19cdb547116e39a1ff8c467d23e0','c9b7e8f2097bda7e5ad198a66f39fd3345a83171ed6b78e563b022d036a0fff9','breathedge','breathedge','https://www.gog.com/game/breathedge',0,'RedRuins Softworks','RedRuins Softworks','Adventure',0,0,0),(2106942030,'Forager',0,0,0,0,0,'2a9ee911d237044ca4c5d3c5058553437827e1c4986a4394828f992f18449239','790cb76a691f686a3a53f94f52471c6faa15ace339c4cb0e45b512c7604dae95','forager','forager','https://www.gog.com/game/forager',0,'HopFrog','Humble Bundle','Simulation',0,0,0);
INSERT INTO `games` VALUES (2108578958,'The Colonel\'s Bequest',0,0,0,0,0,'58e918c62381bc9b49ced86dd1c91b65bdf7fccb24af1f51194b1176b53b6000','1397ecfda518d2958bfb0f16078c788d8d9b4cfab6b40daaa49ea84d30c092ec','the_colonels_bequest','the_colonels_bequest','https://www.gog.com/game/the_colonels_bequest',0,'Sierra','Activision','Adventure',0,0,0),(2109390794,'Outcast - Second Contact',0,0,0,0,0,'f5774206dc2f16503745180921e533da918c3e6361d22a045fb098f0126a3908','2009090c8823509f0e867efbd5f5929b6b134c72e86494fe51ad90e3c5c1f0b3','outcast_second_contact','outcast_second_contact','https://www.gog.com/game/outcast_second_contact',0,'Appeal','Plug In Digital','Action',0,0,0),(2110881038,'Late Shift',0,0,0,0,0,'cca0af6b4dd578990f1d6d0c7d292d514d5d589d3b1c80e4576f9b76bbd711de','bae03ad618570cde9ed96f8d5404f6d5acc35a84344ddeba4da2a0a1026e33bb','late_shift','late_shift','https://www.gog.com/game/late_shift',0,'CtrlMovie','Wales Interactive','Adventure',0,0,0),(2110944433,'Conqueror A.D. 1086',0,0,0,0,0,'41987050d3e5d86df6fcf73984d41d90105ee8e10338fc5399a636f6f30557d6','1d400ab8a0714a1be90009815c9935547e6e91748f5c117f614f7a33522aad52','conqueror_ad_1086','conqueror_ad_1086','https://www.gog.com/game/conqueror_ad_1086',0,'Software Sorcery','Activision','Strategy',0,0,0),(2111088471,'Warhammer 40,000: Mechanicus',0,0,0,0,0,'5a3cb88b646826c87e923a9029f938110f4a5f4b97c062739fab2cb022562136','f46df5488e17e386d85fa551dbe0a8e80e96cfdb33e0a8b40a28ca44cbe54ff8','warhammer_40000_mechanicus','warhammer_40000_mechanicus','https://www.gog.com/game/warhammer_40000_mechanicus',0,'Bulwark Studios','Kasedo Games','Strategy',0,0,0),(2111616299,'A Kiss For The Petals - Maidens of Michael',0,0,0,0,0,'27d1eb143fd9bca4549cf3f9df7ecd454320763d3e41f89ff83f6a2474022bb4','720086a09698ea34473b16195ae0f4687f74583a97eb42ab235bf8a73b9a437f','a_kiss_for_the_petals_maidens_of_michael','a_kiss_for_the_petals_maidens_of_michael','https://www.gog.com/game/a_kiss_for_the_petals_maidens_of_michael',0,'St. Michael\'s Girls School','MangaGamer','Adventure',0,0,0),(2114035213,'THE KING OF FIGHTERS 2002',0,0,0,0,0,'bbba2ce5901fe222dc2493997192189215e5c8e3b576dc37ed1c1023764ee995','86c466f969cc5587ce77c75298bc5e98662eacbaa67b70ca493c2398e27f5226','the_king_of_fighters_2002','the_king_of_fighters_2002','https://www.gog.com/game/the_king_of_fighters_2002',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(2114871440,'Homeworld® Remastered Collection',0,0,0,0,0,'dce7a50009085fcaf3d7e6f1f52623b70de6f5118a065952b26c1c8e4c604d58','86546fbe2cc29e335412bd3083e8eab33e6f6252290d659c84104db37c2b8018','homeworld_remastered_collection','homeworld_remastered_collection','https://www.gog.com/game/homeworld_remastered_collection',0,'Gearbox Software','Gearbox Software','Strategy',0,0,0),(2115164708,'88 Heroes',0,0,0,0,0,'31f103a918be21284e807a83212759f2c8da5c1cdf1add29fc561b8c8cdad624','560d8e6a8b5ab3d20b1b528b0751e0f46ec451f489dbb0fe0ec3796694691da9','88_heroes','88_heroes','https://www.gog.com/game/88_heroes',0,'Bitmap Bureau','Rising Star Games','Action',0,0,0),(2115713947,'Homeworld: Deserts of Kharak',0,0,0,0,0,'d8ee1cba7e13eff3cf2bef9449c7eff07c04734ce3c1022400c3fdb06f102681','f6387aa11d5cef5b6b861d939f40cecf40545cef7a0d28ae038443d9fc4db690','homeworld_deserts_of_kharak','homeworld_deserts_of_kharak','https://www.gog.com/game/homeworld_deserts_of_kharak',0,'Blackbird Interactive','Gearbox Software','Strategy',0,0,0),(2117086633,'Helldorado',0,0,0,0,0,'5f0a4ebcb66b2eeba91c056b209f0c8df511a8f72fd8214a760cacd58d058abc','988e159c6985ac7ca163c3a2aa325a9eaead15ca1befe1fc78b744d7fda6bca9','helldorado','helldorado','https://www.gog.com/game/helldorado',0,'Spellbound Entertainment AG','THQ Nordic GmbH','Strategy',0,0,0);
INSERT INTO `games` VALUES (2119193622,'LEGO® Star Wars™ III - The Clone Wars™',0,0,0,0,0,'835a0947eda2ed8f1d6b6d6f656c2cbe21da54857376fcdb279989bd5b89fc9c','2c9cff0694c0edbd135c557090569b1afa21309ebcf5232bb72b2b09d9684716','lego_star_wars_the_clone_wars','lego_star_wars_the_clone_wars','https://www.gog.com/game/lego_star_wars_the_clone_wars',0,'Traveller\'s Tales','Disney','Action',0,0,0),(2120284974,'SEUM: Speedrunners from Hell',0,0,0,0,0,'8f9d3535577a760ac01b500859d1fcc0d25eb2663c305503a645540b195e7b58','b6275db5bafa03207aa79a95339ee89d14f1c5224307aa6d91e137100d0fa8d0','seum_speedrunners_from_hell','seum_speedrunners_from_hell','https://www.gog.com/game/seum_speedrunners_from_hell',0,'Pine Studio','Headup Games','Action',0,0,0),(2120667520,'Void Bastards',0,0,0,0,0,'546d85df1b1ebed4e63e20e2d27d87bb1a639ac2270f0645f76b52e2eb50683a','3817f9928d41f779800a543b642539bc0826d87e17e15032aeeab5c71d298a1e','void_bastards','void_bastards','https://www.gog.com/game/void_bastards',0,'Blue Manchu','Humble Bundle','Action',0,0,0),(2122277533,'Tempest',0,0,0,0,0,'a8db1e1de16ca1e96e8fd1a8f3da5cdca59734ce45ec8543be0a29ca5a20404c','68cbfd686b03f021ff340ecd20aefba5cca475e8699be86f385b862036a27b15','tempest','tempest','https://www.gog.com/game/tempest',0,'Lion\'s Shade','HeroCraft','Action',0,0,0),(2127248426,'The Occupation',0,0,0,0,0,'47bafa591e99e70abb1f3aa974d5d1582e4a33c4e2f75354a45b78894c016f7a','6858d46ebfd54f575d14f781e6012a6fac6022cfb99585fa161abf1e48d9239a','the_occupation','the_occupation','https://www.gog.com/game/the_occupation',0,'White Paper Games','Humble Bundle','Adventure',0,0,0),(2127450052,'The Church in the Darkness™',0,0,0,0,0,'0463e0107783ef3cd45765bad309a5d4aa57a219fe22f071d511b6c068da14b1','dbda9c26f6d0a8ad92d9e5b123418f0e4473077ab954cbcc7c8ac3f82ce372fb','the_church_in_the_darkness','the_church_in_the_darkness','https://www.gog.com/game/the_church_in_the_darkness',0,'Paranoid Productions','Fellow Traveller','Adventure',0,0,0),(2129139688,'Ultimate General: Civil War',0,0,0,0,0,'b3028c69efae791b75f930acea96f506d89ad43e2bef7a24c4b06752cf6e545c','c4b45d6e75b606bc2c2064e6b8d5ef651f8591be0947912d6bf6d2d311539a46','ultimate_general_civil_war','ultimate_general_civil_war','https://www.gog.com/game/ultimate_general_civil_war',0,'Game-Labs','Game-Labs','Strategy',0,0,0),(2129244347,'Surviving Mars',0,0,0,0,0,'8a49ab517401af8ddbc398067e21ede826b8f671b992e42db1e6569b0fe7b316','6089f452f72c066a985894adaa144c6f30984d783e93fd769770ce55af74635c','surviving_mars','surviving_mars','https://www.gog.com/game/surviving_mars',0,'Haemimont Games','Paradox Interactive','Simulation',0,0,0),(2129289196,'Space Pirates and Zombies 2',0,0,0,0,0,'85511fb87c8e155d623c5d7858eb2a430c3c273b75ec5eafecf6af9646805981','0a0eeb299444d9bf09d3a2e561b8fd94b311b3da3cf4757bdd0f799448a8b3cc','space_pirates_and_zombies_2','space_pirates_and_zombies_2','https://www.gog.com/game/space_pirates_and_zombies_2',0,'MinMax Games Ltd.','MinMax Games Ltd.','Action',0,0,0),(2130382962,'Ion Fury',1,0,0,0,0,'34ebb94353fd48904926255731fe75b1d673c1f39b80cae3bd28e327a911b0ce','de8dcb08d44ab67c3a05a76d7c41a505839bfbd6e82411c8a96af5ca987fef5f','ion_fury','ion_fury','https://www.gog.com/game/ion_fury',0,'Voidpoint','3D Realms','Shooter',0,0,0),(2130544434,'The Fall Part 2: Unbound',0,0,0,0,0,'38a9d3dc10f4a9eb2a0b1470155bf5cba8781199d00e78279683edb7c24e8812','b7e0952ae353d45327d665b960f6699a182a565ddbeb48a6977c3c3e841c3100','the_fall_part_2_unbound','the_fall_part_2_unbound','https://www.gog.com/game/the_fall_part_2_unbound',0,'Over The Moon Games Inc.','Over The Moon Games Inc.','Action',0,0,0),(2133872469,'Forgotton Anne',0,0,0,0,0,'46d5e10a1af798bc003636eb1373da31f9de1629aca1ef44040e2dbe0d5c1b92','037f89db51cd9fca744f1b17b92d3f4634cf8ea29063816877232a3fcd99cfc4','forgotton_anne','forgotton_anne','https://www.gog.com/game/forgotton_anne',0,'ThroughLine Games','ThroughLine Games','Adventure',0,0,0);
INSERT INTO `games` VALUES (2134529414,'Simon the Sorcerer: 25th Anniversary Edition',0,0,0,0,0,'bd156943fc8711e383a601ca2744e782d2953d7e964ec3c557875ef008fc457c','7a51a7acba5aba7595c86837972c21b5057beef66c86c59bf3bf45ff8a31fc81','simon_the_sorcerer','simon_the_sorcerer','https://www.gog.com/game/simon_the_sorcerer',0,'Adventure Soft','MojoTouch','Adventure',0,0,0),(2134842136,'Sudden Strike 3: Arms for Victory',0,0,0,0,0,'48262867029822a9284b435d60cc21f713d31f87e8726ad0c5b927863d344924','9d9d761dbc59d3c14a1afb9eb5ca5e3248402a152d00a7058ad39b97a3314b1d','sudden_strike_3_arms_for_victory','sudden_strike_3_arms_for_victory','https://www.gog.com/game/sudden_strike_3',0,'Fireglow','Kalypso Media Digital','Strategy',0,0,0),(2135854393,'Batman: The Enemy Within - The Telltale Series',0,0,0,0,0,'56ff01f5b2f4a4743949564de9d661390f9ad38bc3867aaf07c7dd009547b47a','44211e9e2b58f76850376dff296366e67a2ea1144d88ba050a5db15e455b489a','batman_the_enemy_within_the_telltale_series','batman_the_enemy_within_the_telltale_series','https://www.gog.com/game/batman_the_enemy_within_the_telltale_series',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(2137491407,'The Escapists 2',0,0,0,0,0,'5101e32104f276998769d5e3cfba9dac9f79050fcc30e16153a9fb3197046159','f821e58ba07c8903d64c3051b098ddb4ba22006b9b046002046d8a88ff88e27d','the_escapists_2','the_escapists_2','https://www.gog.com/game/the_escapists_2',0,'Team17 Digital Ltd, Mouldy Toof Studios','Team17 Digital LTD.','Strategy',0,0,0),(2140144872,'Batman - The Telltale Series',0,0,0,0,0,'e38c98eeb6eb57b08e5c61e1ae15acbe4062aae91007db75e6ec11f25781c8b0','214d23319935aa0e1039e194df93fd3a8ba8dec6006e8ecfd8ab69b108c7fdfb','batman_a_telltale_game_series','batman_a_telltale_game_series','https://www.gog.com/game/batman_a_telltale_game_series',0,'Telltale Games','Telltale Games','Adventure',0,0,0),(2140593445,'Holy Potatoes! A Spy Story?!',0,0,0,0,0,'017fa8c8e4c640ff76e3d8d05a0d32493485e2494e072966a5f3ca8a27ec8510','3bd8a64c4d56e75a8c23a44cadb2c848b53cefcf993eaf6a7f1fb4ff3e4dcb55','holy_potatoes_a_spy_story','holy_potatoes_a_spy_story','https://www.gog.com/game/holy_potatoes_a_spy_story',0,'Daylight Studios','Daedalic Entertainment','Simulation',0,0,0),(2142209510,'Heart of China',0,0,0,0,0,'83878737a0b11e0060588a921d539d5da27e195b2d24bdfa001ca01d7883300c','edf569306392738d2f566a7c1298c7239a5bb681b62530fd3a970f517957f46d','heart_of_china','heart_of_china','https://www.gog.com/game/heart_of_china',0,'Dynamix','Activision','Adventure',0,0,0),(2143654691,'Heroes of Hammerwatch',0,0,0,0,0,'f5cd4271e3b45717bbbc08da9fc50551e5624fd5ab16875a11fada9af1caedad','635e167b1a3ff5c010f00b6cd392649e8c3a79d06b3f17ab655a3ca55cb07647','heroes_of_hammerwatch','heroes_of_hammerwatch','https://www.gog.com/game/heroes_of_hammerwatch',0,'Crackshell','Crackshell','Action',0,0,0),(2145436309,'ECHO',0,0,0,0,0,'9d56ed1dee538bfa134ac81c6a75d533a3eec0555755fc0646e82ddde8fc9f0d','08b97f57e5b391d1e063b37d1f87cb9599f93d88a297a5af31ee72a8c416e818','echo','echo','https://www.gog.com/game/echo',0,'ULTRA ULTRA','ULTRA ULTRA','Shooter',0,0,0),(2146639313,'Sudden Strike 4',0,0,0,0,0,'a7ff056f14ebf4f06e34e496b1df6d326ba781ad84f6c2f67a1f77c2fcf2d09b','6b08b8c7018efc2e72a5728c7a8b1623f0495eb7149b7bf41c1cdfda926a3849','sudden_strike_4','sudden_strike_4','https://www.gog.com/game/sudden_strike_4',0,'Kite Games','Kalypso Media Digital','Strategy',0,0,0),(2146639333,'THE LAST BLADE',0,0,0,0,0,'4c451dff3fe32624770a7b57bdba95167b6eb691f3a53624113c7f2a04c3156c','8c6b18dfada1f65e0113b3471c1438ad089c7d969952d67b3dfc4fb390b0b717','the_last_blade','the_last_blade','https://www.gog.com/game/the_last_blade',0,'SNK CORPORATION','SNK CORPORATION','Action',0,0,0),(2146639343,'Beholder',0,0,0,0,0,'5e22cca102d40d1bbee73924cbf6b180c0cd15accc0c3e9fd4823187e0a41ebc','dc2b3fad50410a289f8dc7392d9fbe23791af3e5ef14e1a72e532ac08c153e10','beholder','beholder','https://www.gog.com/game/beholder',0,'Warm Lamp Games','Alawar Premium','Strategy',0,0,0);
INSERT INTO `games` VALUES (2146639353,'Warhammer 40,000: Sanctus Reach',0,0,0,0,0,'e3a5a4a77ea41d2f8df151eb3bcdab41784e58404d2ebd00eab3f0083234620a','b2ff8e2aff863adf6e8e497c2e8abb4eb61d6d08700b8e15310998072c5e25e4','warhammer_40000_sanctus_reach','warhammer_40000_sanctus_reach','https://www.gog.com/game/warhammer_40000_sanctus_reach',0,'Straylight Entertainment','Slitherine Ltd.','Strategy',0,0,0),(2147483047,'Moonlighter',0,0,0,0,0,'d932080bc0bcec83e1fec96bda27caa6a576949b627bfe035b9d62ae7c63c1ad','17b458ede512ebac3a2320bead41ee76626340bc9e975300761e28ac11b79867','moonlighter','moonlighter','https://www.gog.com/game/moonlighter',0,'Digital Sun','11 bit studios','Action',0,0,0),(2147483059,'The Bard\'s Tale Trilogy',0,0,0,0,0,'d7cbc2fe7071863a2f903389f573dd4f16b8881e0957cd8729ea390075f63691','64e06561a9ba0d4c38f69c159c429b08ae25479d95c82eff7a3ee9fc612add8a','the_bards_tale_trilogy','the_bards_tale_trilogy','https://www.gog.com/game/the_bards_tale_trilogy',0,'Krome Studios','inXile Entertainment','Role-playing',0,0,0),(2147483071,'PC Building Simulator',0,0,0,0,0,'ff4799a177443da9048223dda3999f7c9168095e73718956d8d0baf51636cf4a','b065e7fcb0f567a5e41f55f4bf00ed2d2a45fa342b7aaf45c476748ddd0ca074','pc_building_simulator','pc_building_simulator','https://www.gog.com/game/pc_building_simulator',0,'Claudiu Kiss, The Irregular Corporation','The Irregular Corporation','Simulation',0,0,0);
/*!40000 ALTER TABLE `games` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hosters`
--
DROP TABLE IF EXISTS `hosters`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hosters` (
`id` varchar(50) NOT NULL,
`name` varchar(50) NOT NULL,
`order` int(2) unsigned NOT NULL,
`icon_html` text DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `order` (`order`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hosters`
--
LOCK TABLES `hosters` WRITE;
/*!40000 ALTER TABLE `hosters` DISABLE KEYS */;
INSERT INTO `hosters` VALUES ('1fichier','1fichier',14,'<img src=\"/static/img/hoster_logos/1fichier.svg\" class=\"fac-hoster\">'),('filecloud','filecloud.io',8,'<i class=\"fas fa-fw fa-cloud\"></i>'),('filescdn','Filescdn',9,'<img src=\"/static/img/hoster_logos/filescdn.svg\" class=\"fac-hoster\">'),('gdrive','Google Drive',2,'<i class=\"fab fa-fw fa-google-drive\"></i>'),('gdrive_folder','Google Drive',1,'<i class=\"fab fa-fw fa-google-drive\"></i>'),('letsupload','LetsUpload',3,'<img src=\"/static/img/hoster_logos/letsupload.svg\" class=\"fac-hoster\">'),('megaup','MegaUp',5,'<img src=\"/static/img/hoster_logos/megaup.svg\" class=\"fac-hoster\">'),('multiup','MultiUp',15,'<img src=\"/static/img/hoster_logos/multiup.png\" class=\"fac-hoster\">'),('openload','Openload',7,'<img src=\"/static/img/hoster_logos/openload.svg\" class=\"fac-hoster\">'),('shareonline_biz','Share-Online',13,'<img src=\"/static/img/hoster_logos/shareonline.svg\" class=\"fac-hoster\">'),('uploaded','Uploaded.net',12,'<img src=\"/static/img/hoster_logos/uploaded.svg\" class=\"fac-hoster\">'),('uploadhaven','UploadHaven',4,'<img src=\"/static/img/hoster_logos/uploadhaven.svg\" class=\"fac-hoster\">'),('uptobox','UptoBox',11,'<img src=\"/static/img/hoster_logos/uptobox.svg\" class=\"fac-hoster\">'),('userscloud','Userscloud',6,'<i class=\"fa-stack fa-fw\"><i class=\"fas fa-square fa-stack-2x\"></i><i class=\"fas fa-star fa-stack-1x fa-inverse\"></i></i>'),('zippyshare','Zippyshare',10,'<img src=\"/static/img/hoster_logos/zippyshare.svg\" class=\"fac-hoster\">');
/*!40000 ALTER TABLE `hosters` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `links`
--
DROP TABLE IF EXISTS `links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `links` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`game_id` int(10) unsigned DEFAULT 0,
`link` varchar(255) NOT NULL DEFAULT '0',
`link_safe` varchar(255) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`type` enum('GAME','GOODIES','PATCHES') NOT NULL,
`host` varchar(50) DEFAULT NULL,
`hidden` tinyint(1) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `type` (`type`),
KEY `game_id` (`game_id`),
KEY `link` (`link`),
KEY `name` (`name`),
KEY `host` (`host`),
KEY `hidden` (`hidden`),
KEY `link_safe` (`link_safe`)
) ENGINE=InnoDB AUTO_INCREMENT=63261 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `links`
--
LOCK TABLES `links` WRITE;
/*!40000 ALTER TABLE `links` DISABLE KEYS */;
/*!40000 ALTER TABLE `links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `log`
--
DROP TABLE IF EXISTS `log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `log` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`value` text DEFAULT NULL,
`date` int(11) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10456 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `log`
--
LOCK TABLES `log` WRITE;
/*!40000 ALTER TABLE `log` DISABLE KEYS */;
/*!40000 ALTER TABLE `log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `site`
--
DROP TABLE IF EXISTS `site`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `site` (
`name` varchar(100) NOT NULL,
`value` text DEFAULT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `site`
--
LOCK TABLES `site` WRITE;
/*!40000 ALTER TABLE `site` DISABLE KEYS */;
INSERT INTO `site` VALUES ('donations_arr','a:3:{s:6:\"amount\";d:0;s:4:\"goal\";d:1000000000000;s:7:\"percent\";d:0;}'),('genres','a:8:{s:6:\"action\";s:6:\"Action\";s:9:\"adventure\";s:9:\"Adventure\";s:6:\"racing\";s:6:\"Racing\";s:12:\"role-playing\";s:12:\"Role-playing\";s:7:\"shooter\";s:7:\"Shooter\";s:10:\"simulation\";s:10:\"Simulation\";s:6:\"sports\";s:6:\"Sports\";s:8:\"strategy\";s:8:\"Strategy\";}'),('notice','<span class=\"txt-red\"><b>Your site notice here. Raw HTML only.</span>');
/*!40000 ALTER TABLE `site` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `votes`
--
DROP TABLE IF EXISTS `votes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `votes` (
`uid` varbinary(16) NOT NULL,
`game_id` int(11) NOT NULL,
PRIMARY KEY (`uid`,`game_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `votes`
--
LOCK TABLES `votes` WRITE;
/*!40000 ALTER TABLE `votes` DISABLE KEYS */;
/*!40000 ALTER TABLE `votes` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;