moved functions to parse GIC parameters from 'libgame' to main source tree
[rocksndiamonds.git] / src / conf_gfx.c
1 // ============================================================================
2 // Rocks'n'Diamonds - McDuffin Strikes Back!
3 // ----------------------------------------------------------------------------
4 // (c) 1995-2014 by Artsoft Entertainment
5 //                  Holger Schemel
6 //                  info@artsoft.org
7 //                  http://www.artsoft.org/
8 // ----------------------------------------------------------------------------
9 // conf_gfx.c
10 // ============================================================================
11
12 #include "libgame/libgame.h"
13 #include "main.h"
14
15
16 // List values that are not defined in the configuration file are set to
17 // reliable default values. If that value is GFX_ARG_UNDEFINED, it will
18 // be dynamically determined, using some of the other list values.
19
20 struct ConfigTypeInfo image_config_suffix[] =
21 {
22   { ".x",                               ARG_UNDEFINED,  TYPE_INTEGER    },
23   { ".y",                               ARG_UNDEFINED,  TYPE_INTEGER    },
24   { ".xpos",                            ARG_UNDEFINED,  TYPE_INTEGER    },
25   { ".ypos",                            ARG_UNDEFINED,  TYPE_INTEGER    },
26   { ".width",                           ARG_UNDEFINED,  TYPE_INTEGER    },
27   { ".height",                          ARG_UNDEFINED,  TYPE_INTEGER    },
28   { ".vertical",                        "false",        TYPE_BOOLEAN    },
29   { ".offset",                          ARG_UNDEFINED,  TYPE_INTEGER    },
30   { ".xoffset",                         ARG_UNDEFINED,  TYPE_INTEGER    },
31   { ".yoffset",                         ARG_UNDEFINED,  TYPE_INTEGER    },
32   { ".2nd_movement_tile",               "false",        TYPE_BOOLEAN    },
33   { ".2nd_vertical",                    ARG_UNDEFINED,  TYPE_BOOLEAN    },
34   { ".2nd_offset",                      ARG_UNDEFINED,  TYPE_INTEGER    },
35   { ".2nd_xoffset",                     ARG_UNDEFINED,  TYPE_INTEGER    },
36   { ".2nd_yoffset",                     ARG_UNDEFINED,  TYPE_INTEGER    },
37   { ".2nd_swap_tiles",                  ARG_UNDEFINED,  TYPE_BOOLEAN    },
38   { ".frames",                          ARG_UNDEFINED,  TYPE_INTEGER    },
39   { ".frames_per_line",                 ARG_UNDEFINED,  TYPE_INTEGER    },
40   { ".start_frame",                     ARG_UNDEFINED,  TYPE_INTEGER    },
41   { ".delay",                           "1",            TYPE_INTEGER    },
42   { ".anim_mode",                       ARG_UNDEFINED,  TYPE_STRING     },
43   { ".global_sync",                     "false",        TYPE_BOOLEAN    },
44   { ".crumbled_like",                   ARG_UNDEFINED,  TYPE_ELEMENT    },
45   { ".diggable_like",                   ARG_UNDEFINED,  TYPE_ELEMENT    },
46   { ".border_size",                     ARG_UNDEFINED,  TYPE_INTEGER    },
47   { ".step_offset",                     "4",            TYPE_INTEGER    },
48   { ".step_xoffset",                    ARG_UNDEFINED,  TYPE_INTEGER    },
49   { ".step_yoffset",                    ARG_UNDEFINED,  TYPE_INTEGER    },
50   { ".step_delay",                      "1",            TYPE_INTEGER    },
51   { ".direction",                       ARG_UNDEFINED,  TYPE_STRING     },
52   { ".position",                        ARG_UNDEFINED,  TYPE_STRING     },
53   { ".draw_xoffset",                    "0",            TYPE_INTEGER    },
54   { ".draw_yoffset",                    "0",            TYPE_INTEGER    },
55   { ".draw_masked",                     ARG_UNDEFINED,  TYPE_BOOLEAN    },
56   { ".draw_order",                      ARG_UNDEFINED,  TYPE_INTEGER    },
57   { ".init_delay_fixed",                ARG_UNDEFINED,  TYPE_INTEGER    },
58   { ".init_delay_random",               ARG_UNDEFINED,  TYPE_INTEGER    },
59   { ".anim_delay_fixed",                ARG_UNDEFINED,  TYPE_INTEGER    },
60   { ".anim_delay_random",               ARG_UNDEFINED,  TYPE_INTEGER    },
61   { ".post_delay_fixed",                ARG_UNDEFINED,  TYPE_INTEGER    },
62   { ".post_delay_random",               ARG_UNDEFINED,  TYPE_INTEGER    },
63   { ".init_event",                      ARG_UNDEFINED,  TYPE_STRING     },
64   { ".init_event_action",               ARG_UNDEFINED,  TYPE_STRING     },
65   { ".anim_event",                      ARG_UNDEFINED,  TYPE_STRING     },
66   { ".anim_event_action",               ARG_UNDEFINED,  TYPE_STRING     },
67   { ".name",                            ARG_UNDEFINED,  TYPE_STRING     },
68   { ".scale_up_factor",                 ARG_UNDEFINED,  TYPE_INTEGER    },
69   { ".tile_size",                       ARG_UNDEFINED,  TYPE_INTEGER    },
70   { ".clone_from",                      ARG_UNDEFINED,  TYPE_GRAPHIC    },
71   { ".fade_mode",                       ARG_UNDEFINED,  TYPE_INTEGER    },
72   { ".fade_delay",                      ARG_UNDEFINED,  TYPE_INTEGER    },
73   { ".post_delay",                      ARG_UNDEFINED,  TYPE_INTEGER    },
74   { ".auto_delay",                      ARG_UNDEFINED,  TYPE_INTEGER    },
75   { ".align",                           ARG_UNDEFINED,  TYPE_INTEGER    },
76   { ".valign",                          ARG_UNDEFINED,  TYPE_INTEGER    },
77   { ".sort_priority",                   ARG_UNDEFINED,  TYPE_INTEGER    },
78   { ".class",                           ARG_UNDEFINED,  TYPE_STRING     },
79   { ".style",                           ARG_UNDEFINED,  TYPE_STRING     },
80   { ".active_xoffset",                  "0",            TYPE_INTEGER    },
81   { ".active_yoffset",                  "0",            TYPE_INTEGER    },
82   { ".pressed_xoffset",                 "0",            TYPE_INTEGER    },
83   { ".pressed_yoffset",                 "0",            TYPE_INTEGER    },
84
85   { NULL,                               NULL,           0               }
86 };
87
88 struct ConfigInfo image_config[] =
89 {
90   // ==========================================================================
91   // image definitions for game elements (for in-game and editor graphics)
92   // ==========================================================================
93
94   // images for Boulder Dash style elements and actions
95
96   { "bd_wall",                                  "RocksDC.png"           },
97   { "bd_wall.xpos",                             "12"                    },
98   { "bd_wall.ypos",                             "9"                     },
99   { "bd_wall.frames",                           "1"                     },
100   { "bd_wall.EDITOR",                           "RocksDC.png"           },
101   { "bd_wall.EDITOR.xpos",                      "14"                    },
102   { "bd_wall.EDITOR.ypos",                      "13"                    },
103
104   { "bd_rock",                                  "RocksDC.png"           },
105   { "bd_rock.xpos",                             "12"                    },
106   { "bd_rock.ypos",                             "10"                    },
107   { "bd_rock.frames",                           "1"                     },
108   { "bd_rock.EDITOR",                           "RocksDC.png"           },
109   { "bd_rock.EDITOR.xpos",                      "14"                    },
110   { "bd_rock.EDITOR.ypos",                      "14"                    },
111   { "bd_rock.moving.left",                      "RocksDC.png"           },
112   { "bd_rock.moving.left.xpos",                 "12"                    },
113   { "bd_rock.moving.left.ypos",                 "10"                    },
114   { "bd_rock.moving.left.frames",               "4"                     },
115   { "bd_rock.moving.left.delay",                "2"                     },
116   { "bd_rock.moving.left.anim_mode",            "reverse"               },
117   { "bd_rock.moving.right",                     "RocksDC.png"           },
118   { "bd_rock.moving.right.xpos",                "12"                    },
119   { "bd_rock.moving.right.ypos",                "10"                    },
120   { "bd_rock.moving.right.frames",              "4"                     },
121   { "bd_rock.moving.right.start_frame",         "1"                     },
122   { "bd_rock.moving.right.delay",               "2"                     },
123   { "bd_rock.pushing.left",                     "RocksDC.png"           },
124   { "bd_rock.pushing.left.xpos",                "12"                    },
125   { "bd_rock.pushing.left.ypos",                "10"                    },
126   { "bd_rock.pushing.left.frames",              "4"                     },
127   { "bd_rock.pushing.left.delay",               "2"                     },
128   { "bd_rock.pushing.left.anim_mode",           "reverse"               },
129   { "bd_rock.pushing.right",                    "RocksDC.png"           },
130   { "bd_rock.pushing.right.xpos",               "12"                    },
131   { "bd_rock.pushing.right.ypos",               "10"                    },
132   { "bd_rock.pushing.right.frames",             "4"                     },
133   { "bd_rock.pushing.right.start_frame",        "1"                     },
134   { "bd_rock.pushing.right.delay",              "2"                     },
135
136   { "bd_diamond",                               "RocksElements.png"     },
137   { "bd_diamond.xpos",                          "0"                     },
138   { "bd_diamond.ypos",                          "10"                    },
139   { "bd_diamond.frames",                        "4"                     },
140   { "bd_diamond.delay",                         "4"                     },
141   { "bd_diamond.anim_mode",                     "reverse"               },
142   { "bd_diamond.moving",                        "RocksElements.png"     },
143   { "bd_diamond.moving.xpos",                   "3"                     },
144   { "bd_diamond.moving.ypos",                   "10"                    },
145   { "bd_diamond.moving.frames",                 "2"                     },
146   { "bd_diamond.moving.delay",                  "4"                     },
147   { "bd_diamond.falling",                       "RocksElements.png"     },
148   { "bd_diamond.falling.xpos",                  "3"                     },
149   { "bd_diamond.falling.ypos",                  "10"                    },
150   { "bd_diamond.falling.frames",                "2"                     },
151   { "bd_diamond.falling.delay",                 "4"                     },
152
153   { "bd_magic_wall",                            "RocksElements.png"     },
154   { "bd_magic_wall.xpos",                       "12"                    },
155   { "bd_magic_wall.ypos",                       "10"                    },
156   { "bd_magic_wall.frames",                     "1"                     },
157   { "bd_magic_wall.active",                     "RocksElements.png"     },
158   { "bd_magic_wall.active.xpos",                "12"                    },
159   { "bd_magic_wall.active.ypos",                "10"                    },
160   { "bd_magic_wall.active.frames",              "4"                     },
161   { "bd_magic_wall.active.anim_mode",           "reverse"               },
162   { "bd_magic_wall.active.delay",               "4"                     },
163   { "bd_magic_wall.active.global_sync",         "true"                  },
164   { "bd_magic_wall.filling",                    "RocksElements.png"     },
165   { "bd_magic_wall.filling.xpos",               "12"                    },
166   { "bd_magic_wall.filling.ypos",               "10"                    },
167   { "bd_magic_wall.filling.frames",             "4"                     },
168   { "bd_magic_wall.filling.anim_mode",          "reverse"               },
169   { "bd_magic_wall.filling.delay",              "4"                     },
170   { "bd_magic_wall.filling.global_sync",        "true"                  },
171   { "bd_magic_wall_full",                       "RocksElements.png"     },
172   { "bd_magic_wall_full.xpos",                  "12"                    },
173   { "bd_magic_wall_full.ypos",                  "10"                    },
174   { "bd_magic_wall_full.frames",                "4"                     },
175   { "bd_magic_wall_full.anim_mode",             "reverse"               },
176   { "bd_magic_wall_full.delay",                 "4"                     },
177   { "bd_magic_wall_full.global_sync",           "true"                  },
178   { "bd_magic_wall.emptying",                   "RocksElements.png"     },
179   { "bd_magic_wall.emptying.xpos",              "12"                    },
180   { "bd_magic_wall.emptying.ypos",              "10"                    },
181   { "bd_magic_wall.emptying.frames",            "4"                     },
182   { "bd_magic_wall.emptying.anim_mode",         "reverse"               },
183   { "bd_magic_wall.emptying.delay",             "4"                     },
184   { "bd_magic_wall.emptying.global_sync",       "true"                  },
185   { "bd_magic_wall_dead",                       "RocksElements.png"     },
186   { "bd_magic_wall_dead.xpos",                  "12"                    },
187   { "bd_magic_wall_dead.ypos",                  "10"                    },
188   { "bd_magic_wall_dead.frames",                "1"                     },
189
190   { "bd_amoeba",                                "RocksElements.png"     },
191   { "bd_amoeba.xpos",                           "8"                     },
192   { "bd_amoeba.ypos",                           "6"                     },
193   { "bd_amoeba.frames",                         "4"                     },
194   { "bd_amoeba.delay",                          "1000000"               },
195   { "bd_amoeba.anim_mode",                      "random"                },
196   { "bd_amoeba.EDITOR",                         "RocksElements.png"     },
197   { "bd_amoeba.EDITOR.xpos",                    "8"                     },
198   { "bd_amoeba.EDITOR.ypos",                    "7"                     },
199
200   { "bd_butterfly",                             "RocksElements.png"     },
201   { "bd_butterfly.xpos",                        "4"                     },
202   { "bd_butterfly.ypos",                        "12"                    },
203   { "bd_butterfly.frames",                      "2"                     },
204   { "bd_butterfly.anim_mode",                   "pingpong"              },
205   { "bd_butterfly.delay",                       "4"                     },
206   { "bd_butterfly.global_sync",                 "true"                  },
207   { "bd_butterfly.right",                       "RocksElements.png"     },
208   { "bd_butterfly.right.xpos",                  "4"                     },
209   { "bd_butterfly.right.ypos",                  "12"                    },
210   { "bd_butterfly.right.frames",                "2"                     },
211   { "bd_butterfly.right.anim_mode",             "pingpong"              },
212   { "bd_butterfly.right.delay",                 "4"                     },
213   { "bd_butterfly.right.global_sync",           "true"                  },
214   { "bd_butterfly.right.EDITOR",                "RocksElements.png"     },
215   { "bd_butterfly.right.EDITOR.xpos",           "8"                     },
216   { "bd_butterfly.right.EDITOR.ypos",           "12"                    },
217   { "bd_butterfly.up",                          "RocksElements.png"     },
218   { "bd_butterfly.up.xpos",                     "4"                     },
219   { "bd_butterfly.up.ypos",                     "12"                    },
220   { "bd_butterfly.up.frames",                   "2"                     },
221   { "bd_butterfly.up.anim_mode",                "pingpong"              },
222   { "bd_butterfly.up.delay",                    "4"                     },
223   { "bd_butterfly.up.global_sync",              "true"                  },
224   { "bd_butterfly.up.EDITOR",                   "RocksElements.png"     },
225   { "bd_butterfly.up.EDITOR.xpos",              "9"                     },
226   { "bd_butterfly.up.EDITOR.ypos",              "12"                    },
227   { "bd_butterfly.left",                        "RocksElements.png"     },
228   { "bd_butterfly.left.xpos",                   "4"                     },
229   { "bd_butterfly.left.ypos",                   "12"                    },
230   { "bd_butterfly.left.frames",                 "2"                     },
231   { "bd_butterfly.left.anim_mode",              "pingpong"              },
232   { "bd_butterfly.left.delay",                  "4"                     },
233   { "bd_butterfly.left.global_sync",            "true"                  },
234   { "bd_butterfly.left.EDITOR",                 "RocksElements.png"     },
235   { "bd_butterfly.left.EDITOR.xpos",            "10"                    },
236   { "bd_butterfly.left.EDITOR.ypos",            "12"                    },
237   { "bd_butterfly.down",                        "RocksElements.png"     },
238   { "bd_butterfly.down.xpos",                   "4"                     },
239   { "bd_butterfly.down.ypos",                   "12"                    },
240   { "bd_butterfly.down.frames",                 "2"                     },
241   { "bd_butterfly.down.anim_mode",              "pingpong"              },
242   { "bd_butterfly.down.delay",                  "4"                     },
243   { "bd_butterfly.down.global_sync",            "true"                  },
244   { "bd_butterfly.down.EDITOR",                 "RocksElements.png"     },
245   { "bd_butterfly.down.EDITOR.xpos",            "11"                    },
246   { "bd_butterfly.down.EDITOR.ypos",            "12"                    },
247
248   { "bd_firefly",                               "RocksElements.png"     },
249   { "bd_firefly.xpos",                          "6"                     },
250   { "bd_firefly.ypos",                          "12"                    },
251   { "bd_firefly.frames",                        "2"                     },
252   { "bd_firefly.anim_mode",                     "pingpong"              },
253   { "bd_firefly.delay",                         "4"                     },
254   { "bd_firefly.global_sync",                   "true"                  },
255   { "bd_firefly.right",                         "RocksElements.png"     },
256   { "bd_firefly.right.xpos",                    "6"                     },
257   { "bd_firefly.right.ypos",                    "12"                    },
258   { "bd_firefly.right.frames",                  "2"                     },
259   { "bd_firefly.right.anim_mode",               "pingpong"              },
260   { "bd_firefly.right.delay",                   "4"                     },
261   { "bd_firefly.right.global_sync",             "true"                  },
262   { "bd_firefly.right.EDITOR",                  "RocksElements.png"     },
263   { "bd_firefly.right.EDITOR.xpos",             "12"                    },
264   { "bd_firefly.right.EDITOR.ypos",             "12"                    },
265   { "bd_firefly.up",                            "RocksElements.png"     },
266   { "bd_firefly.up.xpos",                       "6"                     },
267   { "bd_firefly.up.ypos",                       "12"                    },
268   { "bd_firefly.up.frames",                     "2"                     },
269   { "bd_firefly.up.anim_mode",                  "pingpong"              },
270   { "bd_firefly.up.delay",                      "4"                     },
271   { "bd_firefly.up.global_sync",                "true"                  },
272   { "bd_firefly.up.EDITOR",                     "RocksElements.png"     },
273   { "bd_firefly.up.EDITOR.xpos",                "13"                    },
274   { "bd_firefly.up.EDITOR.ypos",                "12"                    },
275   { "bd_firefly.left",                          "RocksElements.png"     },
276   { "bd_firefly.left.xpos",                     "6"                     },
277   { "bd_firefly.left.ypos",                     "12"                    },
278   { "bd_firefly.left.frames",                   "2"                     },
279   { "bd_firefly.left.anim_mode",                "pingpong"              },
280   { "bd_firefly.left.delay",                    "4"                     },
281   { "bd_firefly.left.global_sync",              "true"                  },
282   { "bd_firefly.left.EDITOR",                   "RocksElements.png"     },
283   { "bd_firefly.left.EDITOR.xpos",              "14"                    },
284   { "bd_firefly.left.EDITOR.ypos",              "12"                    },
285   { "bd_firefly.down",                          "RocksElements.png"     },
286   { "bd_firefly.down.xpos",                     "6"                     },
287   { "bd_firefly.down.ypos",                     "12"                    },
288   { "bd_firefly.down.frames",                   "2"                     },
289   { "bd_firefly.down.anim_mode",                "pingpong"              },
290   { "bd_firefly.down.delay",                    "4"                     },
291   { "bd_firefly.down.global_sync",              "true"                  },
292   { "bd_firefly.down.EDITOR",                   "RocksElements.png"     },
293   { "bd_firefly.down.EDITOR.xpos",              "15"                    },
294   { "bd_firefly.down.EDITOR.ypos",              "12"                    },
295
296   // images for Supaplex style elements and actions
297
298   { "[sp_default].exploding",                   "RocksSP.png"           },
299   { "[sp_default].exploding.xpos",              "8"                     },
300   { "[sp_default].exploding.ypos",              "3"                     },
301   { "[sp_default].exploding.frames",            "8"                     },
302   { "[sp_default].exploding.delay",             "4"                     },
303   { "[sp_default].exploding.anim_mode",         "linear"                },
304
305   { "sp_zonk",                                  "RocksSP.png"           },
306   { "sp_zonk.xpos",                             "1"                     },
307   { "sp_zonk.ypos",                             "0"                     },
308   { "sp_zonk.frames",                           "1"                     },
309   { "sp_zonk.moving.left",                      "RocksSP.png"           },
310   { "sp_zonk.moving.left.xpos",                 "0"                     },
311   { "sp_zonk.moving.left.ypos",                 "6"                     },
312   { "sp_zonk.moving.left.frames",               "4"                     },
313   { "sp_zonk.moving.left.delay",                "1"                     },
314   { "sp_zonk.moving.left.anim_mode",            "reverse"               },
315   { "sp_zonk.moving.right",                     "RocksSP.png"           },
316   { "sp_zonk.moving.right.xpos",                "0"                     },
317   { "sp_zonk.moving.right.ypos",                "6"                     },
318   { "sp_zonk.moving.right.frames",              "4"                     },
319   { "sp_zonk.moving.right.start_frame",         "1"                     },
320   { "sp_zonk.moving.right.delay",               "1"                     },
321   { "sp_zonk.pushing.left",                     "RocksSP.png"           },
322   { "sp_zonk.pushing.left.xpos",                "0"                     },
323   { "sp_zonk.pushing.left.ypos",                "6"                     },
324   { "sp_zonk.pushing.left.frames",              "4"                     },
325   { "sp_zonk.pushing.left.delay",               "1"                     },
326   { "sp_zonk.pushing.left.anim_mode",           "reverse"               },
327   { "sp_zonk.pushing.right",                    "RocksSP.png"           },
328   { "sp_zonk.pushing.right.xpos",               "0"                     },
329   { "sp_zonk.pushing.right.ypos",               "6"                     },
330   { "sp_zonk.pushing.right.frames",             "4"                     },
331   { "sp_zonk.pushing.right.start_frame",        "1"                     },
332   { "sp_zonk.pushing.right.delay",              "1"                     },
333
334   { "sp_base",                                  "RocksSP.png"           },
335   { "sp_base.xpos",                             "2"                     },
336   { "sp_base.ypos",                             "0"                     },
337   { "sp_base.frames",                           "1"                     },
338   { "sp_base.digging",                          "RocksSP.png"           },
339   { "sp_base.digging.xpos",                     "2"                     },
340   { "sp_base.digging.ypos",                     "0"                     },
341   { "sp_base.digging.frames",                   "1"                     },
342   { "sp_base.digging.anim_mode",                "opaque_player"         },
343   { "sp_base.snapping",                         "RocksSP.png"           },
344   { "sp_base.snapping.xpos",                    "8"                     },
345   { "sp_base.snapping.ypos",                    "2"                     },
346   { "sp_base.snapping.frames",                  "7"                     },
347   { "sp_base.snapping.anim_mode",               "linear"                },
348
349   { "sp_murphy",                                "RocksSP.png"           },
350   { "sp_murphy.xpos",                           "3"                     },
351   { "sp_murphy.ypos",                           "0"                     },
352   { "sp_murphy.frames",                         "1"                     },
353   { "sp_murphy.moving.left",                    "RocksSP.png"           },
354   { "sp_murphy.moving.left.xpos",               "8"                     },
355   { "sp_murphy.moving.left.ypos",               "0"                     },
356   { "sp_murphy.moving.left.frames",             "3"                     },
357   { "sp_murphy.moving.left.anim_mode",          "pingpong"              },
358   { "sp_murphy.moving.left.delay",              "2"                     },
359   { "sp_murphy.moving.left.start_frame",        "1"                     },
360   { "sp_murphy.moving.right",                   "RocksSP.png"           },
361   { "sp_murphy.moving.right.xpos",              "11"                    },
362   { "sp_murphy.moving.right.ypos",              "0"                     },
363   { "sp_murphy.moving.right.frames",            "3"                     },
364   { "sp_murphy.moving.right.anim_mode",         "pingpong"              },
365   { "sp_murphy.moving.right.delay",             "2"                     },
366   { "sp_murphy.moving.right.start_frame",       "1"                     },
367   { "sp_murphy.digging.left",                   "RocksSP.png"           },
368   { "sp_murphy.digging.left.xpos",              "8"                     },
369   { "sp_murphy.digging.left.ypos",              "0"                     },
370   { "sp_murphy.digging.left.frames",            "3"                     },
371   { "sp_murphy.digging.left.anim_mode",         "pingpong"              },
372   { "sp_murphy.digging.left.delay",             "2"                     },
373   { "sp_murphy.digging.left.start_frame",       "1"                     },
374   { "sp_murphy.digging.right",                  "RocksSP.png"           },
375   { "sp_murphy.digging.right.xpos",             "11"                    },
376   { "sp_murphy.digging.right.ypos",             "0"                     },
377   { "sp_murphy.digging.right.frames",           "3"                     },
378   { "sp_murphy.digging.right.anim_mode",        "pingpong"              },
379   { "sp_murphy.digging.right.delay",            "2"                     },
380   { "sp_murphy.digging.right.start_frame",      "1"                     },
381   { "sp_murphy.collecting.left",                "RocksSP.png"           },
382   { "sp_murphy.collecting.left.xpos",           "8"                     },
383   { "sp_murphy.collecting.left.ypos",           "0"                     },
384   { "sp_murphy.collecting.left.frames",         "3"                     },
385   { "sp_murphy.collecting.left.anim_mode",      "pingpong"              },
386   { "sp_murphy.collecting.left.delay",          "2"                     },
387   { "sp_murphy.collecting.left.start_frame",    "1"                     },
388   { "sp_murphy.collecting.right",               "RocksSP.png"           },
389   { "sp_murphy.collecting.right.xpos",          "11"                    },
390   { "sp_murphy.collecting.right.ypos",          "0"                     },
391   { "sp_murphy.collecting.right.frames",        "3"                     },
392   { "sp_murphy.collecting.right.anim_mode",     "pingpong"              },
393   { "sp_murphy.collecting.right.delay",         "2"                     },
394   { "sp_murphy.collecting.right.start_frame",   "1"                     },
395   { "sp_murphy.pushing.left",                   "RocksSP.png"           },
396   { "sp_murphy.pushing.left.xpos",              "11"                    },
397   { "sp_murphy.pushing.left.ypos",              "1"                     },
398   { "sp_murphy.pushing.left.frames",            "1"                     },
399   { "sp_murphy.pushing.right",                  "RocksSP.png"           },
400   { "sp_murphy.pushing.right.xpos",             "10"                    },
401   { "sp_murphy.pushing.right.ypos",             "1"                     },
402   { "sp_murphy.pushing.right.frames",           "1"                     },
403   { "sp_murphy.snapping.left",                  "RocksSP.png"           },
404   { "sp_murphy.snapping.left.xpos",             "9"                     },
405   { "sp_murphy.snapping.left.ypos",             "1"                     },
406   { "sp_murphy.snapping.left.frames",           "1"                     },
407   { "sp_murphy.snapping.right",                 "RocksSP.png"           },
408   { "sp_murphy.snapping.right.xpos",            "8"                     },
409   { "sp_murphy.snapping.right.ypos",            "1"                     },
410   { "sp_murphy.snapping.right.frames",          "1"                     },
411   { "sp_murphy.snapping.up",                    "RocksSP.png"           },
412   { "sp_murphy.snapping.up.xpos",               "14"                    },
413   { "sp_murphy.snapping.up.ypos",               "0"                     },
414   { "sp_murphy.snapping.up.frames",             "1"                     },
415   { "sp_murphy.snapping.down",                  "RocksSP.png"           },
416   { "sp_murphy.snapping.down.xpos",             "15"                    },
417   { "sp_murphy.snapping.down.ypos",             "0"                     },
418   { "sp_murphy.snapping.down.frames",           "1"                     },
419   { "sp_murphy.boring",                         "RocksSP.png"           },
420   { "sp_murphy.boring.xpos",                    "11"                    },
421   { "sp_murphy.boring.ypos",                    "12"                    },
422   { "sp_murphy.boring.frames",                  "1"                     },
423   { "sp_murphy.boring[1]",                      "RocksSP.png"           },
424   { "sp_murphy.boring[1].xpos",                 "0"                     },
425   { "sp_murphy.boring[1].ypos",                 "12"                    },
426   { "sp_murphy.boring[1].frames",               "12"                    },
427   { "sp_murphy.boring[1].delay",                "10"                    },
428   { "sp_murphy.boring[1].anim_mode",            "linear"                },
429   { "sp_murphy.boring[1].anim_delay_fixed",     "120"                   },
430   { "sp_murphy.boring[1].anim_delay_random",    "0"                     },
431   { "sp_murphy.boring[1].post_delay_fixed",     "500"                   },
432   { "sp_murphy.boring[1].post_delay_random",    "500"                   },
433   { "sp_murphy.sleeping.left",                  "RocksSP.png"           },
434   { "sp_murphy.sleeping.left.xpos",             "4"                     },
435   { "sp_murphy.sleeping.left.ypos",             "9"                     },
436   { "sp_murphy.sleeping.left.frames",           "3"                     },
437   { "sp_murphy.sleeping.left.delay",            "100"                   },
438   { "sp_murphy.sleeping.left.anim_mode",        "linear,reverse"        },
439   { "sp_murphy.sleeping.right",                 "RocksSP.png"           },
440   { "sp_murphy.sleeping.right.xpos",            "13"                    },
441   { "sp_murphy.sleeping.right.ypos",            "12"                    },
442   { "sp_murphy.sleeping.right.frames",          "3"                     },
443   { "sp_murphy.sleeping.right.delay",           "100"                   },
444   { "sp_murphy.sleeping.right.anim_mode",       "linear"                },
445   { "sp_murphy.dropping",                       "RocksSP.png"           },
446   { "sp_murphy.dropping.xpos",                  "11"                    },
447   { "sp_murphy.dropping.ypos",                  "12"                    },
448   { "sp_murphy.dropping.frames",                "1"                     },
449   { "sp_murphy.shrinking",                      "RocksSP.png"           },
450   { "sp_murphy.shrinking.xpos",                 "8"                     },
451   { "sp_murphy.shrinking.ypos",                 "14"                    },
452   { "sp_murphy.shrinking.frames",               "8"                     },
453   { "sp_murphy.shrinking.delay",                "4"                     },
454   { "sp_murphy.shrinking.anim_mode",            "linear"                },
455
456   { "sp_murphy_clone",                          "RocksSP.png"           },
457   { "sp_murphy_clone.xpos",                     "3"                     },
458   { "sp_murphy_clone.ypos",                     "0"                     },
459   { "sp_murphy_clone.frames",                   "1"                     },
460
461   { "sp_infotron",                              "RocksSP.png"           },
462   { "sp_infotron.xpos",                         "4"                     },
463   { "sp_infotron.ypos",                         "0"                     },
464   { "sp_infotron.frames",                       "1"                     },
465   { "sp_infotron.EDITOR",                       "RocksSP.png"           },
466   { "sp_infotron.EDITOR.xpos",                  "8"                     },
467   { "sp_infotron.EDITOR.ypos",                  "11"                    },
468   { "sp_infotron.moving.left",                  "RocksSP.png"           },
469   { "sp_infotron.moving.left.xpos",             "8"                     },
470   { "sp_infotron.moving.left.ypos",             "13"                    },
471   { "sp_infotron.moving.left.frames",           "8"                     },
472   { "sp_infotron.moving.right",                 "RocksSP.png"           },
473   { "sp_infotron.moving.right.xpos",            "8"                     },
474   { "sp_infotron.moving.right.ypos",            "13"                    },
475   { "sp_infotron.moving.right.frames",          "8"                     },
476   { "sp_infotron.moving.right.start_frame",     "6"                     },
477   { "sp_infotron.moving.right.anim_mode",       "reverse"               },
478   { "sp_infotron.collecting",                   "RocksSP.png"           },
479   { "sp_infotron.collecting.xpos",              "8"                     },
480   { "sp_infotron.collecting.ypos",              "7"                     },
481   { "sp_infotron.collecting.frames",            "8"                     },
482   { "sp_infotron.collecting.anim_mode",         "linear"                },
483
484   { "sp_chip_single",                           "RocksSP.png"           },
485   { "sp_chip_single.xpos",                      "5"                     },
486   { "sp_chip_single.ypos",                      "0"                     },
487   { "sp_chip_single.frames",                    "1"                     },
488   { "sp_chip_left",                             "RocksSP.png"           },
489   { "sp_chip_left.xpos",                        "2"                     },
490   { "sp_chip_left.ypos",                        "3"                     },
491   { "sp_chip_left.frames",                      "1"                     },
492   { "sp_chip_right",                            "RocksSP.png"           },
493   { "sp_chip_right.xpos",                       "3"                     },
494   { "sp_chip_right.ypos",                       "3"                     },
495   { "sp_chip_right.frames",                     "1"                     },
496   { "sp_chip_top",                              "RocksSP.png"           },
497   { "sp_chip_top.xpos",                         "6"                     },
498   { "sp_chip_top.ypos",                         "4"                     },
499   { "sp_chip_top.frames",                       "1"                     },
500   { "sp_chip_bottom",                           "RocksSP.png"           },
501   { "sp_chip_bottom.xpos",                      "7"                     },
502   { "sp_chip_bottom.ypos",                      "4"                     },
503   { "sp_chip_bottom.frames",                    "1"                     },
504
505   { "sp_hardware_gray",                         "RocksSP.png"           },
506   { "sp_hardware_gray.xpos",                    "6"                     },
507   { "sp_hardware_gray.ypos",                    "0"                     },
508   { "sp_hardware_gray.frames",                  "1"                     },
509   { "sp_hardware_green",                        "RocksSP.png"           },
510   { "sp_hardware_green.xpos",                   "5"                     },
511   { "sp_hardware_green.ypos",                   "3"                     },
512   { "sp_hardware_green.frames",                 "1"                     },
513   { "sp_hardware_blue",                         "RocksSP.png"           },
514   { "sp_hardware_blue.xpos",                    "6"                     },
515   { "sp_hardware_blue.ypos",                    "3"                     },
516   { "sp_hardware_blue.frames",                  "1"                     },
517   { "sp_hardware_red",                          "RocksSP.png"           },
518   { "sp_hardware_red.xpos",                     "7"                     },
519   { "sp_hardware_red.ypos",                     "3"                     },
520   { "sp_hardware_red.frames",                   "1"                     },
521   { "sp_hardware_yellow",                       "RocksSP.png"           },
522   { "sp_hardware_yellow.xpos",                  "0"                     },
523   { "sp_hardware_yellow.ypos",                  "4"                     },
524   { "sp_hardware_yellow.frames",                "1"                     },
525
526   { "sp_exit_closed",                           "RocksSP.png"           },
527   { "sp_exit_closed.xpos",                      "7"                     },
528   { "sp_exit_closed.ypos",                      "0"                     },
529   { "sp_exit_closed.frames",                    "1"                     },
530   { "sp_exit.opening",                          "RocksSP.png"           },
531   { "sp_exit.opening.xpos",                     "7"                     },
532   { "sp_exit.opening.ypos",                     "0"                     },
533   { "sp_exit.opening.frames",                   "1"                     },
534   { "sp_exit_open",                             "RocksSP.png"           },
535   { "sp_exit_open.xpos",                        "7"                     },
536   { "sp_exit_open.ypos",                        "0"                     },
537   { "sp_exit_open.frames",                      "1"                     },
538   { "sp_exit.closing",                          "RocksSP.png"           },
539   { "sp_exit.closing.xpos",                     "7"                     },
540   { "sp_exit.closing.ypos",                     "0"                     },
541   { "sp_exit.closing.frames",                   "1"                     },
542
543   { "sp_disk_orange",                           "RocksSP.png"           },
544   { "sp_disk_orange.xpos",                      "0"                     },
545   { "sp_disk_orange.ypos",                      "1"                     },
546   { "sp_disk_orange.frames",                    "1"                     },
547
548   { "sp_disk_yellow",                           "RocksSP.png"           },
549   { "sp_disk_yellow.xpos",                      "2"                     },
550   { "sp_disk_yellow.ypos",                      "2"                     },
551   { "sp_disk_yellow.frames",                    "1"                     },
552
553   { "sp_disk_red",                              "RocksSP.png"           },
554   { "sp_disk_red.xpos",                         "4"                     },
555   { "sp_disk_red.ypos",                         "2"                     },
556   { "sp_disk_red.frames",                       "1"                     },
557   { "sp_disk_red.collecting",                   "RocksSP.png"           },
558   { "sp_disk_red.collecting.xpos",              "9"                     },
559   { "sp_disk_red.collecting.ypos",              "5"                     },
560   { "sp_disk_red.collecting.frames",            "7"                     },
561   { "sp_disk_red.collecting.anim_mode",         "linear"                },
562   { "sp_disk_red.active",                       "RocksSP.png"           },
563   { "sp_disk_red.active.xpos",                  "4"                     },
564   { "sp_disk_red.active.ypos",                  "2"                     },
565   { "sp_disk_red.active.frames",                "1"                     },
566
567   { "sp_port_right",                            "RocksSP.png"           },
568   { "sp_port_right.xpos",                       "1"                     },
569   { "sp_port_right.ypos",                       "1"                     },
570   { "sp_port_right.frames",                     "1"                     },
571   { "sp_port_down",                             "RocksSP.png"           },
572   { "sp_port_down.xpos",                        "2"                     },
573   { "sp_port_down.ypos",                        "1"                     },
574   { "sp_port_down.frames",                      "1"                     },
575   { "sp_port_left",                             "RocksSP.png"           },
576   { "sp_port_left.xpos",                        "3"                     },
577   { "sp_port_left.ypos",                        "1"                     },
578   { "sp_port_left.frames",                      "1"                     },
579   { "sp_port_up",                               "RocksSP.png"           },
580   { "sp_port_up.xpos",                          "4"                     },
581   { "sp_port_up.ypos",                          "1"                     },
582   { "sp_port_up.frames",                        "1"                     },
583   { "sp_port_horizontal",                       "RocksSP.png"           },
584   { "sp_port_horizontal.xpos",                  "6"                     },
585   { "sp_port_horizontal.ypos",                  "2"                     },
586   { "sp_port_horizontal.frames",                "1"                     },
587   { "sp_port_vertical",                         "RocksSP.png"           },
588   { "sp_port_vertical.xpos",                    "5"                     },
589   { "sp_port_vertical.ypos",                    "2"                     },
590   { "sp_port_vertical.frames",                  "1"                     },
591   { "sp_port_any",                              "RocksSP.png"           },
592   { "sp_port_any.xpos",                         "7"                     },
593   { "sp_port_any.ypos",                         "2"                     },
594   { "sp_port_any.frames",                       "1"                     },
595   { "sp_gravity_port_right",                    "RocksSP.png"           },
596   { "sp_gravity_port_right.xpos",               "1"                     },
597   { "sp_gravity_port_right.ypos",               "1"                     },
598   { "sp_gravity_port_right.frames",             "1"                     },
599   { "sp_gravity_port_right.EDITOR",             "RocksSP.png"           },
600   { "sp_gravity_port_right.EDITOR.xpos",        "0"                     },
601   { "sp_gravity_port_right.EDITOR.ypos",        "14"                    },
602   { "sp_gravity_port_down",                     "RocksSP.png"           },
603   { "sp_gravity_port_down.xpos",                "2"                     },
604   { "sp_gravity_port_down.ypos",                "1"                     },
605   { "sp_gravity_port_down.frames",              "1"                     },
606   { "sp_gravity_port_down.EDITOR",              "RocksSP.png"           },
607   { "sp_gravity_port_down.EDITOR.xpos",         "1"                     },
608   { "sp_gravity_port_down.EDITOR.ypos",         "14"                    },
609   { "sp_gravity_port_left",                     "RocksSP.png"           },
610   { "sp_gravity_port_left.xpos",                "3"                     },
611   { "sp_gravity_port_left.ypos",                "1"                     },
612   { "sp_gravity_port_left.frames",              "1"                     },
613   { "sp_gravity_port_left.EDITOR",              "RocksSP.png"           },
614   { "sp_gravity_port_left.EDITOR.xpos",         "2"                     },
615   { "sp_gravity_port_left.EDITOR.ypos",         "14"                    },
616   { "sp_gravity_port_up",                       "RocksSP.png"           },
617   { "sp_gravity_port_up.xpos",                  "4"                     },
618   { "sp_gravity_port_up.ypos",                  "1"                     },
619   { "sp_gravity_port_up.frames",                "1"                     },
620   { "sp_gravity_port_up.EDITOR",                "RocksSP.png"           },
621   { "sp_gravity_port_up.EDITOR.xpos",           "3"                     },
622   { "sp_gravity_port_up.EDITOR.ypos",           "14"                    },
623   { "sp_gravity_on_port_right",                 "RocksSP.png"           },
624   { "sp_gravity_on_port_right.xpos",            "1"                     },
625   { "sp_gravity_on_port_right.ypos",            "1"                     },
626   { "sp_gravity_on_port_right.frames",          "1"                     },
627   { "sp_gravity_on_port_right.EDITOR",          "RocksSP.png"           },
628   { "sp_gravity_on_port_right.EDITOR.xpos",     "0"                     },
629   { "sp_gravity_on_port_right.EDITOR.ypos",     "13"                    },
630   { "sp_gravity_on_port_down",                  "RocksSP.png"           },
631   { "sp_gravity_on_port_down.xpos",             "2"                     },
632   { "sp_gravity_on_port_down.ypos",             "1"                     },
633   { "sp_gravity_on_port_down.frames",           "1"                     },
634   { "sp_gravity_on_port_down.EDITOR",           "RocksSP.png"           },
635   { "sp_gravity_on_port_down.EDITOR.xpos",      "1"                     },
636   { "sp_gravity_on_port_down.EDITOR.ypos",      "13"                    },
637   { "sp_gravity_on_port_left",                  "RocksSP.png"           },
638   { "sp_gravity_on_port_left.xpos",             "3"                     },
639   { "sp_gravity_on_port_left.ypos",             "1"                     },
640   { "sp_gravity_on_port_left.frames",           "1"                     },
641   { "sp_gravity_on_port_left.EDITOR",           "RocksSP.png"           },
642   { "sp_gravity_on_port_left.EDITOR.xpos",      "2"                     },
643   { "sp_gravity_on_port_left.EDITOR.ypos",      "13"                    },
644   { "sp_gravity_on_port_up",                    "RocksSP.png"           },
645   { "sp_gravity_on_port_up.xpos",               "4"                     },
646   { "sp_gravity_on_port_up.ypos",               "1"                     },
647   { "sp_gravity_on_port_up.frames",             "1"                     },
648   { "sp_gravity_on_port_up.EDITOR",             "RocksSP.png"           },
649   { "sp_gravity_on_port_up.EDITOR.xpos",        "3"                     },
650   { "sp_gravity_on_port_up.EDITOR.ypos",        "13"                    },
651   { "sp_gravity_off_port_right",                "RocksSP.png"           },
652   { "sp_gravity_off_port_right.xpos",           "1"                     },
653   { "sp_gravity_off_port_right.ypos",           "1"                     },
654   { "sp_gravity_off_port_right.frames",         "1"                     },
655   { "sp_gravity_off_port_right.EDITOR",         "RocksSP.png"           },
656   { "sp_gravity_off_port_right.EDITOR.xpos",    "4"                     },
657   { "sp_gravity_off_port_right.EDITOR.ypos",    "13"                    },
658   { "sp_gravity_off_port_down",                 "RocksSP.png"           },
659   { "sp_gravity_off_port_down.xpos",            "2"                     },
660   { "sp_gravity_off_port_down.ypos",            "1"                     },
661   { "sp_gravity_off_port_down.frames",          "1"                     },
662   { "sp_gravity_off_port_down.EDITOR",          "RocksSP.png"           },
663   { "sp_gravity_off_port_down.EDITOR.xpos",     "5"                     },
664   { "sp_gravity_off_port_down.EDITOR.ypos",     "13"                    },
665   { "sp_gravity_off_port_left",                 "RocksSP.png"           },
666   { "sp_gravity_off_port_left.xpos",            "3"                     },
667   { "sp_gravity_off_port_left.ypos",            "1"                     },
668   { "sp_gravity_off_port_left.frames",          "1"                     },
669   { "sp_gravity_off_port_left.EDITOR",          "RocksSP.png"           },
670   { "sp_gravity_off_port_left.EDITOR.xpos",     "6"                     },
671   { "sp_gravity_off_port_left.EDITOR.ypos",     "13"                    },
672   { "sp_gravity_off_port_up",                   "RocksSP.png"           },
673   { "sp_gravity_off_port_up.xpos",              "4"                     },
674   { "sp_gravity_off_port_up.ypos",              "1"                     },
675   { "sp_gravity_off_port_up.frames",            "1"                     },
676   { "sp_gravity_off_port_up.EDITOR",            "RocksSP.png"           },
677   { "sp_gravity_off_port_up.EDITOR.xpos",       "7"                     },
678   { "sp_gravity_off_port_up.EDITOR.ypos",       "13"                    },
679
680   { "sp_sniksnak",                              "RocksSP.png"           },
681   { "sp_sniksnak.xpos",                         "1"                     },
682   { "sp_sniksnak.ypos",                         "2"                     },
683   { "sp_sniksnak.frames",                       "1"                     },
684   { "sp_sniksnak.left",                         "RocksSP.png"           },
685   { "sp_sniksnak.left.xpos",                    "8"                     },
686   { "sp_sniksnak.left.ypos",                    "8"                     },
687   { "sp_sniksnak.left.frames",                  "4"                     },
688   { "sp_sniksnak.left.anim_mode",               "pingpong2"             },
689   { "sp_sniksnak.right",                        "RocksSP.png"           },
690   { "sp_sniksnak.right.xpos",                   "12"                    },
691   { "sp_sniksnak.right.ypos",                   "8"                     },
692   { "sp_sniksnak.right.frames",                 "4"                     },
693   { "sp_sniksnak.right.anim_mode",              "pingpong2"             },
694   { "sp_sniksnak.up",                           "RocksSP.png"           },
695   { "sp_sniksnak.up.xpos",                      "8"                     },
696   { "sp_sniksnak.up.ypos",                      "9"                     },
697   { "sp_sniksnak.up.frames",                    "4"                     },
698   { "sp_sniksnak.up.anim_mode",                 "pingpong2"             },
699   { "sp_sniksnak.down",                         "RocksSP.png"           },
700   { "sp_sniksnak.down.xpos",                    "12"                    },
701   { "sp_sniksnak.down.ypos",                    "9"                     },
702   { "sp_sniksnak.down.frames",                  "4"                     },
703   { "sp_sniksnak.down.anim_mode",               "pingpong2"             },
704   { "sp_sniksnak.turning_from_left.up",         "RocksSP.png"           },
705   { "sp_sniksnak.turning_from_left.up.xpos",    "12"                    },
706   { "sp_sniksnak.turning_from_left.up.ypos",    "6"                     },
707   { "sp_sniksnak.turning_from_left.up.frames",  "2"                     },
708   { "sp_sniksnak.turning_from_left.up.delay",   "4"                     },
709   { "sp_sniksnak.turning_from_left.up.offset",  "1408"                  },
710   { "sp_sniksnak.turning_from_left.up.anim_mode","linear"               },
711   { "sp_sniksnak.turning_from_left.down",       "RocksSP.png"           },
712   { "sp_sniksnak.turning_from_left.down.xpos",  "13"                    },
713   { "sp_sniksnak.turning_from_left.down.ypos",  "6"                     },
714   { "sp_sniksnak.turning_from_left.down.frames","2"                     },
715   { "sp_sniksnak.turning_from_left.down.delay", "4"                     },
716   { "sp_sniksnak.turning_from_left.down.offset","1504"                  },
717   { "sp_sniksnak.turning_from_left.down.anim_mode","linear"             },
718   { "sp_sniksnak.turning_from_right.up",        "RocksSP.png"           },
719   { "sp_sniksnak.turning_from_right.up.xpos",   "15"                    },
720   { "sp_sniksnak.turning_from_right.up.ypos",   "6"                     },
721   { "sp_sniksnak.turning_from_right.up.frames", "2"                     },
722   { "sp_sniksnak.turning_from_right.up.delay",  "4"                     },
723   { "sp_sniksnak.turning_from_right.up.offset", "1312"                  },
724   { "sp_sniksnak.turning_from_right.up.anim_mode","linear"              },
725   { "sp_sniksnak.turning_from_right.down",      "RocksSP.png"           },
726   { "sp_sniksnak.turning_from_right.down.xpos", "14"                    },
727   { "sp_sniksnak.turning_from_right.down.ypos", "6"                     },
728   { "sp_sniksnak.turning_from_right.down.frames","2"                    },
729   { "sp_sniksnak.turning_from_right.down.delay","4"                     },
730   { "sp_sniksnak.turning_from_right.down.offset","1472"                 },
731   { "sp_sniksnak.turning_from_right.down.anim_mode","linear"            },
732   { "sp_sniksnak.turning_from_up.left",         "RocksSP.png"           },
733   { "sp_sniksnak.turning_from_up.left.xpos",    "12"                    },
734   { "sp_sniksnak.turning_from_up.left.ypos",    "6"                     },
735   { "sp_sniksnak.turning_from_up.left.frames",  "2"                     },
736   { "sp_sniksnak.turning_from_up.left.delay",   "4"                     },
737   { "sp_sniksnak.turning_from_up.left.offset",  "896"                   },
738   { "sp_sniksnak.turning_from_up.left.anim_mode","linear"               },
739   { "sp_sniksnak.turning_from_up.right",        "RocksSP.png"           },
740   { "sp_sniksnak.turning_from_up.right.xpos",   "15"                    },
741   { "sp_sniksnak.turning_from_up.right.ypos",   "6"                     },
742   { "sp_sniksnak.turning_from_up.right.frames", "2"                     },
743   { "sp_sniksnak.turning_from_up.right.delay",  "4"                     },
744   { "sp_sniksnak.turning_from_up.right.offset", "928"                   },
745   { "sp_sniksnak.turning_from_up.right.anim_mode","linear"              },
746   { "sp_sniksnak.turning_from_down.left",       "RocksSP.png"           },
747   { "sp_sniksnak.turning_from_down.left.xpos",  "13"                    },
748   { "sp_sniksnak.turning_from_down.left.ypos",  "6"                     },
749   { "sp_sniksnak.turning_from_down.left.frames","2"                     },
750   { "sp_sniksnak.turning_from_down.left.delay", "4"                     },
751   { "sp_sniksnak.turning_from_down.left.offset","864"                   },
752   { "sp_sniksnak.turning_from_down.left.anim_mode","linear"             },
753   { "sp_sniksnak.turning_from_down.right",      "RocksSP.png"           },
754   { "sp_sniksnak.turning_from_down.right.xpos", "14"                    },
755   { "sp_sniksnak.turning_from_down.right.ypos", "6"                     },
756   { "sp_sniksnak.turning_from_down.right.frames","2"                    },
757   { "sp_sniksnak.turning_from_down.right.delay","4"                     },
758   { "sp_sniksnak.turning_from_down.right.offset","960"                  },
759   { "sp_sniksnak.turning_from_down.right.anim_mode","linear"            },
760
761   { "sp_electron",                              "RocksSP.png"           },
762   { "sp_electron.xpos",                         "8"                     },
763   { "sp_electron.ypos",                         "10"                    },
764   { "sp_electron.frames",                       "8"                     },
765   { "sp_electron.delay",                        "4"                     },
766   { "sp_electron.global_sync",                  "true"                  },
767   { "sp_electron.EDITOR",                       "RocksSP.png"           },
768   { "sp_electron.EDITOR.xpos",                  "10"                    },
769   { "sp_electron.EDITOR.ypos",                  "11"                    },
770   { "sp_electron.exploding",                    "RocksSP.png"           },
771   { "sp_electron.exploding.xpos",               "8"                     },
772   { "sp_electron.exploding.ypos",               "4"                     },
773   { "sp_electron.exploding.frames",             "8"                     },
774   { "sp_electron.exploding.delay",              "4"                     },
775   { "sp_electron.exploding.anim_mode",          "linear"                },
776
777   { "sp_terminal",                              "RocksSP.png"           },
778   { "sp_terminal.xpos",                         "0"                     },
779   { "sp_terminal.ypos",                         "10"                    },
780   { "sp_terminal.frames",                       "7"                     },
781   { "sp_terminal.delay",                        "12"                    },
782   { "sp_terminal.EDITOR",                       "RocksSP.png"           },
783   { "sp_terminal.EDITOR.xpos",                  "9"                     },
784   { "sp_terminal.EDITOR.ypos",                  "11"                    },
785   { "sp_terminal.active",                       "RocksSP.png"           },
786   { "sp_terminal.active.xpos",                  "0"                     },
787   { "sp_terminal.active.ypos",                  "11"                    },
788   { "sp_terminal.active.frames",                "7"                     },
789   { "sp_terminal.active.delay",                 "4"                     },
790
791   { "sp_buggy_base",                            "RocksSP.png"           },
792   { "sp_buggy_base.xpos",                       "1"                     },
793   { "sp_buggy_base.ypos",                       "3"                     },
794   { "sp_buggy_base.frames",                     "1"                     },
795   { "sp_buggy_base.EDITOR",                     "RocksSP.png"           },
796   { "sp_buggy_base.EDITOR.xpos",                "9"                     },
797   { "sp_buggy_base.EDITOR.ypos",                "6"                     },
798   { "sp_buggy_base.activating",                 "RocksSP.png"           },
799   { "sp_buggy_base.activating.xpos",            "15"                    },
800   { "sp_buggy_base.activating.ypos",            "2"                     },
801   { "sp_buggy_base.activating.frames",          "1"                     },
802   { "sp_buggy_base.active",                     "RocksSP.png"           },
803   { "sp_buggy_base.active.xpos",                "8"                     },
804   { "sp_buggy_base.active.ypos",                "6"                     },
805   { "sp_buggy_base.active.frames",              "4"                     },
806   { "sp_buggy_base.active.delay",               "4"                     },
807   { "sp_buggy_base.active.anim_mode",           "pingpong"              },
808
809   { "sp_hardware_base_1",                       "RocksSP.png"           },
810   { "sp_hardware_base_1.xpos",                  "4"                     },
811   { "sp_hardware_base_1.ypos",                  "3"                     },
812   { "sp_hardware_base_1.frames",                "1"                     },
813   { "sp_hardware_base_2",                       "RocksSP.png"           },
814   { "sp_hardware_base_2.xpos",                  "1"                     },
815   { "sp_hardware_base_2.ypos",                  "4"                     },
816   { "sp_hardware_base_2.frames",                "1"                     },
817   { "sp_hardware_base_3",                       "RocksSP.png"           },
818   { "sp_hardware_base_3.xpos",                  "2"                     },
819   { "sp_hardware_base_3.ypos",                  "4"                     },
820   { "sp_hardware_base_3.frames",                "1"                     },
821   { "sp_hardware_base_4",                       "RocksSP.png"           },
822   { "sp_hardware_base_4.xpos",                  "3"                     },
823   { "sp_hardware_base_4.ypos",                  "4"                     },
824   { "sp_hardware_base_4.frames",                "1"                     },
825   { "sp_hardware_base_5",                       "RocksSP.png"           },
826   { "sp_hardware_base_5.xpos",                  "4"                     },
827   { "sp_hardware_base_5.ypos",                  "4"                     },
828   { "sp_hardware_base_5.frames",                "1"                     },
829   { "sp_hardware_base_6",                       "RocksSP.png"           },
830   { "sp_hardware_base_6.xpos",                  "5"                     },
831   { "sp_hardware_base_6.ypos",                  "4"                     },
832   { "sp_hardware_base_6.frames",                "1"                     },
833
834   // images for Sokoban style elements and actions
835
836   { "sokoban_object",                           "RocksElements.png"     },
837   { "sokoban_object.xpos",                      "9"                     },
838   { "sokoban_object.ypos",                      "7"                     },
839   { "sokoban_object.frames",                    "1"                     },
840
841   { "sokoban_field_empty",                      "RocksElements.png"     },
842   { "sokoban_field_empty.xpos",                 "10"                    },
843   { "sokoban_field_empty.ypos",                 "7"                     },
844   { "sokoban_field_empty.frames",               "1"                     },
845
846   { "sokoban_field_full",                       "RocksElements.png"     },
847   { "sokoban_field_full.xpos",                  "11"                    },
848   { "sokoban_field_full.ypos",                  "7"                     },
849   { "sokoban_field_full.frames",                "1"                     },
850
851   { "sokoban_field_player",                     "RocksHeroes.png"       },
852   { "sokoban_field_player.xpos",                "0"                     },
853   { "sokoban_field_player.ypos",                "15"                    },
854   { "sokoban_field_player.frames",              "1"                     },
855
856   // images for Emerald Mine style elements and actions
857
858   { "empty_space",                              "RocksSP.png"           },
859   { "empty_space.xpos",                         "0"                     },
860   { "empty_space.ypos",                         "0"                     },
861   { "empty_space.frames",                       "1"                     },
862
863   { "sand",                                     "RocksElements.png"     },
864   { "sand.xpos",                                "0"                     },
865   { "sand.ypos",                                "0"                     },
866   { "sand.frames",                              "1"                     },
867   { "sand.CRUMBLED",                            "RocksElements.png"     },
868   { "sand.CRUMBLED.xpos",                       "1"                     },
869   { "sand.CRUMBLED.ypos",                       "0"                     },
870   { "sand.CRUMBLED.frames",                     "1"                     },
871   { "sand.digging.left",                        "RocksMore.png"         },
872   { "sand.digging.left.xpos",                   "6"                     },
873   { "sand.digging.left.ypos",                   "3"                     },
874   { "sand.digging.left.frames",                 "3"                     },
875   { "sand.digging.left.delay",                  "2"                     },
876   { "sand.digging.left.anim_mode",              "linear"                },
877   { "sand.digging.right",                       "RocksMore.png"         },
878   { "sand.digging.right.xpos",                  "9"                     },
879   { "sand.digging.right.ypos",                  "3"                     },
880   { "sand.digging.right.frames",                "3"                     },
881   { "sand.digging.right.delay",                 "2"                     },
882   { "sand.digging.right.anim_mode",             "linear"                },
883   { "sand.digging.up",                          "RocksMore.png"         },
884   { "sand.digging.up.xpos",                     "0"                     },
885   { "sand.digging.up.ypos",                     "3"                     },
886   { "sand.digging.up.frames",                   "3"                     },
887   { "sand.digging.up.delay",                    "2"                     },
888   { "sand.digging.up.anim_mode",                "linear"                },
889   { "sand.digging.down",                        "RocksMore.png"         },
890   { "sand.digging.down.xpos",                   "3"                     },
891   { "sand.digging.down.ypos",                   "3"                     },
892   { "sand.digging.down.frames",                 "3"                     },
893   { "sand.digging.down.delay",                  "2"                     },
894   { "sand.digging.down.anim_mode",              "linear"                },
895   { "sand.digging.left.CRUMBLED",               "RocksMore.png"         },
896   { "sand.digging.left.CRUMBLED.xpos",          "6"                     },
897   { "sand.digging.left.CRUMBLED.ypos",          "0"                     },
898   { "sand.digging.left.CRUMBLED.frames",        "3"                     },
899   { "sand.digging.left.CRUMBLED.delay",         "2"                     },
900   { "sand.digging.left.CRUMBLED.anim_mode",     "linear"                },
901   { "sand.digging.right.CRUMBLED",              "RocksMore.png"         },
902   { "sand.digging.right.CRUMBLED.xpos",         "9"                     },
903   { "sand.digging.right.CRUMBLED.ypos",         "0"                     },
904   { "sand.digging.right.CRUMBLED.frames",       "3"                     },
905   { "sand.digging.right.CRUMBLED.delay",        "2"                     },
906   { "sand.digging.right.CRUMBLED.anim_mode",    "linear"                },
907   { "sand.digging.up.CRUMBLED",                 "RocksMore.png"         },
908   { "sand.digging.up.CRUMBLED.xpos",            "0"                     },
909   { "sand.digging.up.CRUMBLED.ypos",            "0"                     },
910   { "sand.digging.up.CRUMBLED.frames",          "3"                     },
911   { "sand.digging.up.CRUMBLED.delay",           "2"                     },
912   { "sand.digging.up.CRUMBLED.anim_mode",       "linear"                },
913   { "sand.digging.down.CRUMBLED",               "RocksMore.png"         },
914   { "sand.digging.down.CRUMBLED.xpos",          "3"                     },
915   { "sand.digging.down.CRUMBLED.ypos",          "0"                     },
916   { "sand.digging.down.CRUMBLED.frames",        "3"                     },
917   { "sand.digging.down.CRUMBLED.delay",         "2"                     },
918   { "sand.digging.down.CRUMBLED.anim_mode",     "linear"                },
919
920   { "wall",                                     "RocksElements.png"     },
921   { "wall.xpos",                                "5"                     },
922   { "wall.ypos",                                "0"                     },
923   { "wall.frames",                              "1"                     },
924
925   { "wall_slippery",                            "RocksElements.png"     },
926   { "wall_slippery.xpos",                       "6"                     },
927   { "wall_slippery.ypos",                       "0"                     },
928   { "wall_slippery.frames",                     "1"                     },
929
930   { "steelwall",                                "RocksElements.png"     },
931   { "steelwall.xpos",                           "4"                     },
932   { "steelwall.ypos",                           "0"                     },
933   { "steelwall.frames",                         "1"                     },
934
935   { "rock",                                     "RocksElements.png"     },
936   { "rock.xpos",                                "12"                    },
937   { "rock.ypos",                                "0"                     },
938   { "rock.frames",                              "1"                     },
939   { "rock.moving.left",                         "RocksElements.png"     },
940   { "rock.moving.left.xpos",                    "12"                    },
941   { "rock.moving.left.ypos",                    "0"                     },
942   { "rock.moving.left.frames",                  "4"                     },
943   { "rock.moving.left.delay",                   "2"                     },
944   { "rock.moving.left.anim_mode",               "reverse"               },
945   { "rock.moving.right",                        "RocksElements.png"     },
946   { "rock.moving.right.xpos",                   "12"                    },
947   { "rock.moving.right.ypos",                   "0"                     },
948   { "rock.moving.right.frames",                 "4"                     },
949   { "rock.moving.right.start_frame",            "1"                     },
950   { "rock.moving.right.delay",                  "2"                     },
951   { "rock.pushing.left",                        "RocksElements.png"     },
952   { "rock.pushing.left.xpos",                   "12"                    },
953   { "rock.pushing.left.ypos",                   "0"                     },
954   { "rock.pushing.left.frames",                 "4"                     },
955   { "rock.pushing.left.delay",                  "2"                     },
956   { "rock.pushing.left.anim_mode",              "reverse"               },
957   { "rock.pushing.right",                       "RocksElements.png"     },
958   { "rock.pushing.right.xpos",                  "12"                    },
959   { "rock.pushing.right.ypos",                  "0"                     },
960   { "rock.pushing.right.frames",                "4"                     },
961   { "rock.pushing.right.start_frame",           "1"                     },
962   { "rock.pushing.right.delay",                 "2"                     },
963
964   { "emerald",                                  "RocksElements.png"     },
965   { "emerald.xpos",                             "8"                     },
966   { "emerald.ypos",                             "0"                     },
967   { "emerald.frames",                           "1"                     },
968   { "emerald.moving",                           "RocksElements.png"     },
969   { "emerald.moving.xpos",                      "8"                     },
970   { "emerald.moving.ypos",                      "0"                     },
971   { "emerald.moving.frames",                    "2"                     },
972   { "emerald.moving.delay",                     "4"                     },
973   { "emerald.falling",                          "RocksElements.png"     },
974   { "emerald.falling.xpos",                     "8"                     },
975   { "emerald.falling.ypos",                     "0"                     },
976   { "emerald.falling.frames",                   "2"                     },
977   { "emerald.falling.delay",                    "4"                     },
978   { "emerald.collecting",                       "RocksMore.png"         },
979   { "emerald.collecting.xpos",                  "3"                     },
980   { "emerald.collecting.ypos",                  "2"                     },
981   { "emerald.collecting.frames",                "3"                     },
982   { "emerald.collecting.delay",                 "2"                     },
983   { "emerald.collecting.anim_mode",             "linear"                },
984
985   { "diamond",                                  "RocksElements.png"     },
986   { "diamond.xpos",                             "10"                    },
987   { "diamond.ypos",                             "0"                     },
988   { "diamond.frames",                           "1"                     },
989   { "diamond.moving",                           "RocksElements.png"     },
990   { "diamond.moving.xpos",                      "10"                    },
991   { "diamond.moving.ypos",                      "0"                     },
992   { "diamond.moving.frames",                    "2"                     },
993   { "diamond.moving.delay",                     "4"                     },
994   { "diamond.falling",                          "RocksElements.png"     },
995   { "diamond.falling.xpos",                     "10"                    },
996   { "diamond.falling.ypos",                     "0"                     },
997   { "diamond.falling.frames",                   "2"                     },
998   { "diamond.falling.delay",                    "4"                     },
999   { "diamond.collecting",                       "RocksMore.png"         },
1000   { "diamond.collecting.xpos",                  "7"                     },
1001   { "diamond.collecting.ypos",                  "2"                     },
1002   { "diamond.collecting.frames",                "3"                     },
1003   { "diamond.collecting.delay",                 "2"                     },
1004   { "diamond.collecting.anim_mode",             "linear"                },
1005
1006   { "bomb",                                     "RocksElements.png"     },
1007   { "bomb.xpos",                                "11"                    },
1008   { "bomb.ypos",                                "1"                     },
1009   { "bomb.frames",                              "1"                     },
1010
1011   { "nut",                                      "RocksElements.png"     },
1012   { "nut.xpos",                                 "12"                    },
1013   { "nut.ypos",                                 "1"                     },
1014   { "nut.frames",                               "1"                     },
1015   { "nut.breaking",                             "RocksElements.png"     },
1016   { "nut.breaking.xpos",                        "13"                    },
1017   { "nut.breaking.ypos",                        "1"                     },
1018   { "nut.breaking.frames",                      "3"                     },
1019   { "nut.breaking.delay",                       "2"                     },
1020   { "nut.breaking.anim_mode",                   "linear"                },
1021
1022   { "dynamite",                                 "RocksElements.png"     },
1023   { "dynamite.xpos",                            "0"                     },
1024   { "dynamite.ypos",                            "3"                     },
1025   { "dynamite.frames",                          "1"                     },
1026   { "dynamite.active",                          "RocksElements.png"     },
1027   { "dynamite.active.xpos",                     "1"                     },
1028   { "dynamite.active.ypos",                     "3"                     },
1029   { "dynamite.active.frames",                   "7"                     },
1030   { "dynamite.active.delay",                    "12"                    },
1031   { "dynamite.active.anim_mode",                "linear"                },
1032
1033   { "em_dynamite",                              "RocksEMC.png"          },
1034   { "em_dynamite.xpos",                         "0"                     },
1035   { "em_dynamite.ypos",                         "15"                    },
1036   { "em_dynamite.frames",                       "1"                     },
1037   { "em_dynamite.active",                       "RocksEMC.png"          },
1038   { "em_dynamite.active.xpos",                  "1"                     },
1039   { "em_dynamite.active.ypos",                  "15"                    },
1040   { "em_dynamite.active.frames",                "4"                     },
1041   { "em_dynamite.active.delay",                 "8"                     },
1042   { "em_dynamite.active.anim_mode",             "linear"                },
1043   { "em_dynamite.active.EDITOR",                "RocksEMC.png"          },
1044   { "em_dynamite.active.EDITOR.xpos",           "2"                     },
1045   { "em_dynamite.active.EDITOR.ypos",           "15"                    },
1046
1047   { "wall_emerald",                             "RocksElements.png"     },
1048   { "wall_emerald.xpos",                        "4"                     },
1049   { "wall_emerald.ypos",                        "8"                     },
1050   { "wall_emerald.frames",                      "1"                     },
1051
1052   { "wall_diamond",                             "RocksElements.png"     },
1053   { "wall_diamond.xpos",                        "5"                     },
1054   { "wall_diamond.ypos",                        "8"                     },
1055   { "wall_diamond.frames",                      "1"                     },
1056
1057   { "bug",                                      "RocksElements.png"     },
1058   { "bug.xpos",                                 "8"                     },
1059   { "bug.ypos",                                 "4"                     },
1060   { "bug.frames",                               "4"                     },
1061   { "bug.delay",                                "8"                     },
1062   { "bug.right",                                "RocksElements.png"     },
1063   { "bug.right.xpos",                           "8"                     },
1064   { "bug.right.ypos",                           "4"                     },
1065   { "bug.right.frames",                         "1"                     },
1066   { "bug.up",                                   "RocksElements.png"     },
1067   { "bug.up.xpos",                              "9"                     },
1068   { "bug.up.ypos",                              "4"                     },
1069   { "bug.up.frames",                            "1"                     },
1070   { "bug.left",                                 "RocksElements.png"     },
1071   { "bug.left.xpos",                            "10"                    },
1072   { "bug.left.ypos",                            "4"                     },
1073   { "bug.left.frames",                          "1"                     },
1074   { "bug.down",                                 "RocksElements.png"     },
1075   { "bug.down.xpos",                            "11"                    },
1076   { "bug.down.ypos",                            "4"                     },
1077   { "bug.down.frames",                          "1"                     },
1078   { "bug.moving.right",                         "RocksElements.png"     },
1079   { "bug.moving.right.xpos",                    "8"                     },
1080   { "bug.moving.right.ypos",                    "4"                     },
1081   { "bug.moving.right.frames",                  "2"                     },
1082   { "bug.moving.right.delay",                   "4"                     },
1083   { "bug.moving.right.offset",                  "128"                   },
1084   { "bug.moving.up",                            "RocksElements.png"     },
1085   { "bug.moving.up.xpos",                       "9"                     },
1086   { "bug.moving.up.ypos",                       "4"                     },
1087   { "bug.moving.up.frames",                     "2"                     },
1088   { "bug.moving.up.delay",                      "4"                     },
1089   { "bug.moving.up.offset",                     "128"                   },
1090   { "bug.moving.left",                          "RocksElements.png"     },
1091   { "bug.moving.left.xpos",                     "10"                    },
1092   { "bug.moving.left.ypos",                     "4"                     },
1093   { "bug.moving.left.frames",                   "2"                     },
1094   { "bug.moving.left.delay",                    "4"                     },
1095   { "bug.moving.left.offset",                   "128"                   },
1096   { "bug.moving.down",                          "RocksElements.png"     },
1097   { "bug.moving.down.xpos",                     "11"                    },
1098   { "bug.moving.down.ypos",                     "4"                     },
1099   { "bug.moving.down.frames",                   "2"                     },
1100   { "bug.moving.down.delay",                    "4"                     },
1101   { "bug.moving.down.offset",                   "128"                   },
1102   { "bug.turning_from_right.up",                "RocksMore.png"         },
1103   { "bug.turning_from_right.up.xpos",           "0"                     },
1104   { "bug.turning_from_right.up.ypos",           "6"                     },
1105   { "bug.turning_from_right.up.frames",         "4"                     },
1106   { "bug.turning_from_right.up.delay",          "2"                     },
1107   { "bug.turning_from_right.up.anim_mode",      "linear,reverse"        },
1108   { "bug.turning_from_up.left",                 "RocksMore.png"         },
1109   { "bug.turning_from_up.left.xpos",            "12"                    },
1110   { "bug.turning_from_up.left.ypos",            "6"                     },
1111   { "bug.turning_from_up.left.frames",          "4"                     },
1112   { "bug.turning_from_up.left.delay",           "2"                     },
1113   { "bug.turning_from_up.left.anim_mode",       "linear,reverse"        },
1114   { "bug.turning_from_left.down",               "RocksMore.png"         },
1115   { "bug.turning_from_left.down.xpos",          "8"                     },
1116   { "bug.turning_from_left.down.ypos",          "6"                     },
1117   { "bug.turning_from_left.down.frames",        "4"                     },
1118   { "bug.turning_from_left.down.delay",         "2"                     },
1119   { "bug.turning_from_left.down.anim_mode",     "linear,reverse"        },
1120   { "bug.turning_from_down.right",              "RocksMore.png"         },
1121   { "bug.turning_from_down.right.xpos",         "4"                     },
1122   { "bug.turning_from_down.right.ypos",         "6"                     },
1123   { "bug.turning_from_down.right.frames",       "4"                     },
1124   { "bug.turning_from_down.right.delay",        "2"                     },
1125   { "bug.turning_from_down.right.anim_mode",    "linear,reverse"        },
1126   { "bug.turning_from_right.down",              "RocksMore.png"         },
1127   { "bug.turning_from_right.down.xpos",         "5"                     },
1128   { "bug.turning_from_right.down.ypos",         "6"                     },
1129   { "bug.turning_from_right.down.frames",       "4"                     },
1130   { "bug.turning_from_right.down.delay",        "2"                     },
1131   { "bug.turning_from_right.down.anim_mode",    "linear"                },
1132   { "bug.turning_from_up.right",                "RocksMore.png"         },
1133   { "bug.turning_from_up.right.xpos",           "1"                     },
1134   { "bug.turning_from_up.right.ypos",           "6"                     },
1135   { "bug.turning_from_up.right.frames",         "4"                     },
1136   { "bug.turning_from_up.right.delay",          "2"                     },
1137   { "bug.turning_from_up.right.anim_mode",      "linear"                },
1138   { "bug.turning_from_left.up",                 "RocksMore.png"         },
1139   { "bug.turning_from_left.up.xpos",            "13"                    },
1140   { "bug.turning_from_left.up.ypos",            "6"                     },
1141   { "bug.turning_from_left.up.frames",          "4"                     },
1142   { "bug.turning_from_left.up.delay",           "2"                     },
1143   { "bug.turning_from_left.up.anim_mode",       "linear"                },
1144   { "bug.turning_from_down.left",               "RocksMore.png"         },
1145   { "bug.turning_from_down.left.xpos",          "9"                     },
1146   { "bug.turning_from_down.left.ypos",          "6"                     },
1147   { "bug.turning_from_down.left.frames",        "4"                     },
1148   { "bug.turning_from_down.left.delay",         "2"                     },
1149   { "bug.turning_from_down.left.anim_mode",     "linear"                },
1150
1151   { "spaceship",                                "RocksElements.png"     },
1152   { "spaceship.xpos",                           "8"                     },
1153   { "spaceship.ypos",                           "3"                     },
1154   { "spaceship.frames",                         "4"                     },
1155   { "spaceship.delay",                          "8"                     },
1156   { "spaceship.right",                          "RocksElements.png"     },
1157   { "spaceship.right.xpos",                     "8"                     },
1158   { "spaceship.right.ypos",                     "3"                     },
1159   { "spaceship.right.frames",                   "1"                     },
1160   { "spaceship.up",                             "RocksElements.png"     },
1161   { "spaceship.up.xpos",                        "9"                     },
1162   { "spaceship.up.ypos",                        "3"                     },
1163   { "spaceship.up.frames",                      "1"                     },
1164   { "spaceship.left",                           "RocksElements.png"     },
1165   { "spaceship.left.xpos",                      "10"                    },
1166   { "spaceship.left.ypos",                      "3"                     },
1167   { "spaceship.left.frames",                    "1"                     },
1168   { "spaceship.down",                           "RocksElements.png"     },
1169   { "spaceship.down.xpos",                      "11"                    },
1170   { "spaceship.down.ypos",                      "3"                     },
1171   { "spaceship.down.frames",                    "1"                     },
1172   { "spaceship.moving.right",                   "RocksElements.png"     },
1173   { "spaceship.moving.right.xpos",              "8"                     },
1174   { "spaceship.moving.right.ypos",              "3"                     },
1175   { "spaceship.moving.right.frames",            "2"                     },
1176   { "spaceship.moving.right.delay",             "4"                     },
1177   { "spaceship.moving.right.offset",            "128"                   },
1178   { "spaceship.moving.up",                      "RocksElements.png"     },
1179   { "spaceship.moving.up.xpos",                 "9"                     },
1180   { "spaceship.moving.up.ypos",                 "3"                     },
1181   { "spaceship.moving.up.frames",               "2"                     },
1182   { "spaceship.moving.up.delay",                "4"                     },
1183   { "spaceship.moving.up.offset",               "128"                   },
1184   { "spaceship.moving.left",                    "RocksElements.png"     },
1185   { "spaceship.moving.left.xpos",               "10"                    },
1186   { "spaceship.moving.left.ypos",               "3"                     },
1187   { "spaceship.moving.left.frames",             "2"                     },
1188   { "spaceship.moving.left.delay",              "4"                     },
1189   { "spaceship.moving.left.offset",             "128"                   },
1190   { "spaceship.moving.down",                    "RocksElements.png"     },
1191   { "spaceship.moving.down.xpos",               "11"                    },
1192   { "spaceship.moving.down.ypos",               "3"                     },
1193   { "spaceship.moving.down.frames",             "2"                     },
1194   { "spaceship.moving.down.delay",              "4"                     },
1195   { "spaceship.moving.down.offset",             "128"                   },
1196   { "spaceship.turning_from_right.up",          "RocksMore.png"         },
1197   { "spaceship.turning_from_right.up.xpos",     "0"                     },
1198   { "spaceship.turning_from_right.up.ypos",     "5"                     },
1199   { "spaceship.turning_from_right.up.frames",   "4"                     },
1200   { "spaceship.turning_from_right.up.delay",    "2"                     },
1201   { "spaceship.turning_from_right.up.anim_mode","linear,reverse"        },
1202   { "spaceship.turning_from_up.left",           "RocksMore.png"         },
1203   { "spaceship.turning_from_up.left.xpos",      "12"                    },
1204   { "spaceship.turning_from_up.left.ypos",      "5"                     },
1205   { "spaceship.turning_from_up.left.frames",    "4"                     },
1206   { "spaceship.turning_from_up.left.delay",     "2"                     },
1207   { "spaceship.turning_from_up.left.anim_mode", "linear,reverse"        },
1208   { "spaceship.turning_from_left.down",         "RocksMore.png"         },
1209   { "spaceship.turning_from_left.down.xpos",    "8"                     },
1210   { "spaceship.turning_from_left.down.ypos",    "5"                     },
1211   { "spaceship.turning_from_left.down.frames",  "4"                     },
1212   { "spaceship.turning_from_left.down.delay",   "2"                     },
1213   { "spaceship.turning_from_left.down.anim_mode","linear,reverse"       },
1214   { "spaceship.turning_from_down.right",        "RocksMore.png"         },
1215   { "spaceship.turning_from_down.right.xpos",   "4"                     },
1216   { "spaceship.turning_from_down.right.ypos",   "5"                     },
1217   { "spaceship.turning_from_down.right.frames", "4"                     },
1218   { "spaceship.turning_from_down.right.delay",  "2"                     },
1219   { "spaceship.turning_from_down.right.anim_mode","linear,reverse"      },
1220   { "spaceship.turning_from_right.down",        "RocksMore.png"         },
1221   { "spaceship.turning_from_right.down.xpos",   "5"                     },
1222   { "spaceship.turning_from_right.down.ypos",   "5"                     },
1223   { "spaceship.turning_from_right.down.frames", "4"                     },
1224   { "spaceship.turning_from_right.down.delay",  "2"                     },
1225   { "spaceship.turning_from_right.down.anim_mode","linear"              },
1226   { "spaceship.turning_from_up.right",          "RocksMore.png"         },
1227   { "spaceship.turning_from_up.right.xpos",     "1"                     },
1228   { "spaceship.turning_from_up.right.ypos",     "5"                     },
1229   { "spaceship.turning_from_up.right.frames",   "4"                     },
1230   { "spaceship.turning_from_up.right.delay",    "2"                     },
1231   { "spaceship.turning_from_up.right.anim_mode","linear"                },
1232   { "spaceship.turning_from_left.up",           "RocksMore.png"         },
1233   { "spaceship.turning_from_left.up.xpos",      "13"                    },
1234   { "spaceship.turning_from_left.up.ypos",      "5"                     },
1235   { "spaceship.turning_from_left.up.frames",    "4"                     },
1236   { "spaceship.turning_from_left.up.delay",     "2"                     },
1237   { "spaceship.turning_from_left.up.anim_mode", "linear"                },
1238   { "spaceship.turning_from_down.left",         "RocksMore.png"         },
1239   { "spaceship.turning_from_down.left.xpos",    "9"                     },
1240   { "spaceship.turning_from_down.left.ypos",    "5"                     },
1241   { "spaceship.turning_from_down.left.frames",  "4"                     },
1242   { "spaceship.turning_from_down.left.delay",   "2"                     },
1243   { "spaceship.turning_from_down.left.anim_mode","linear"               },
1244
1245   { "yamyam",                                   "RocksElements.png"     },
1246   { "yamyam.xpos",                              "0"                     },
1247   { "yamyam.ypos",                              "5"                     },
1248   { "yamyam.frames",                            "4"                     },
1249   { "yamyam.anim_mode",                         "pingpong2"             },
1250   { "yamyam.left",                              "RocksElements.png"     },
1251   { "yamyam.left.xpos",                         "0"                     },
1252   { "yamyam.left.ypos",                         "5"                     },
1253   { "yamyam.left.frames",                       "4"                     },
1254   { "yamyam.left.anim_mode",                    "pingpong2"             },
1255   { "yamyam.left.EDITOR",                       "RocksEMC.png"          },
1256   { "yamyam.left.EDITOR.xpos",                  "7"                     },
1257   { "yamyam.left.EDITOR.ypos",                  "15"                    },
1258   { "yamyam.right",                             "RocksElements.png"     },
1259   { "yamyam.right.xpos",                        "0"                     },
1260   { "yamyam.right.ypos",                        "5"                     },
1261   { "yamyam.right.frames",                      "4"                     },
1262   { "yamyam.right.anim_mode",                   "pingpong2"             },
1263   { "yamyam.right.EDITOR",                      "RocksEMC.png"          },
1264   { "yamyam.right.EDITOR.xpos",                 "8"                     },
1265   { "yamyam.right.EDITOR.ypos",                 "15"                    },
1266   { "yamyam.up",                                "RocksElements.png"     },
1267   { "yamyam.up.xpos",                           "0"                     },
1268   { "yamyam.up.ypos",                           "5"                     },
1269   { "yamyam.up.frames",                         "4"                     },
1270   { "yamyam.up.anim_mode",                      "pingpong2"             },
1271   { "yamyam.up.EDITOR",                         "RocksEMC.png"          },
1272   { "yamyam.up.EDITOR.xpos",                    "5"                     },
1273   { "yamyam.up.EDITOR.ypos",                    "15"                    },
1274   { "yamyam.down",                              "RocksElements.png"     },
1275   { "yamyam.down.xpos",                         "0"                     },
1276   { "yamyam.down.ypos",                         "5"                     },
1277   { "yamyam.down.frames",                       "4"                     },
1278   { "yamyam.down.anim_mode",                    "pingpong2"             },
1279   { "yamyam.down.EDITOR",                       "RocksEMC.png"          },
1280   { "yamyam.down.EDITOR.xpos",                  "6"                     },
1281   { "yamyam.down.EDITOR.ypos",                  "15"                    },
1282   { "yamyam.moving",                            "RocksElements.png"     },
1283   { "yamyam.moving.xpos",                       "0"                     },
1284   { "yamyam.moving.ypos",                       "5"                     },
1285   { "yamyam.moving.frames",                     "1"                     },
1286
1287   { "robot",                                    "RocksElements.png"     },
1288   { "robot.xpos",                               "4"                     },
1289   { "robot.ypos",                               "5"                     },
1290   { "robot.frames",                             "4"                     },
1291   { "robot.anim_mode",                          "pingpong2"             },
1292   { "robot.moving",                             "RocksElements.png"     },
1293   { "robot.moving.xpos",                        "4"                     },
1294   { "robot.moving.ypos",                        "5"                     },
1295   { "robot.moving.frames",                      "1"                     },
1296
1297   { "robot_wheel",                              "RocksElements.png"     },
1298   { "robot_wheel.xpos",                         "0"                     },
1299   { "robot_wheel.ypos",                         "6"                     },
1300   { "robot_wheel.frames",                       "1"                     },
1301   { "robot_wheel.active",                       "RocksElements.png"     },
1302   { "robot_wheel.active.xpos",                  "0"                     },
1303   { "robot_wheel.active.ypos",                  "6"                     },
1304   { "robot_wheel.active.frames",                "4"                     },
1305
1306   { "magic_wall",                               "RocksElements.png"     },
1307   { "magic_wall.xpos",                          "0"                     },
1308   { "magic_wall.ypos",                          "8"                     },
1309   { "magic_wall.frames",                        "1"                     },
1310   { "magic_wall.active",                        "RocksElements.png"     },
1311   { "magic_wall.active.xpos",                   "0"                     },
1312   { "magic_wall.active.ypos",                   "8"                     },
1313   { "magic_wall.active.frames",                 "4"                     },
1314   { "magic_wall.active.anim_mode",              "reverse"               },
1315   { "magic_wall.active.delay",                  "4"                     },
1316   { "magic_wall.active.global_sync",            "true"                  },
1317   { "magic_wall.filling",                       "RocksElements.png"     },
1318   { "magic_wall.filling.xpos",                  "0"                     },
1319   { "magic_wall.filling.ypos",                  "8"                     },
1320   { "magic_wall.filling.frames",                "4"                     },
1321   { "magic_wall.filling.anim_mode",             "reverse"               },
1322   { "magic_wall.filling.delay",                 "4"                     },
1323   { "magic_wall.filling.global_sync",           "true"                  },
1324   { "magic_wall_full",                          "RocksElements.png"     },
1325   { "magic_wall_full.xpos",                     "0"                     },
1326   { "magic_wall_full.ypos",                     "8"                     },
1327   { "magic_wall_full.frames",                   "4"                     },
1328   { "magic_wall_full.anim_mode",                "reverse"               },
1329   { "magic_wall_full.delay",                    "4"                     },
1330   { "magic_wall_full.global_sync",              "true"                  },
1331   { "magic_wall.emptying",                      "RocksElements.png"     },
1332   { "magic_wall.emptying.xpos",                 "0"                     },
1333   { "magic_wall.emptying.ypos",                 "8"                     },
1334   { "magic_wall.emptying.frames",               "4"                     },
1335   { "magic_wall.emptying.anim_mode",            "reverse"               },
1336   { "magic_wall.emptying.delay",                "4"                     },
1337   { "magic_wall.emptying.global_sync",          "true"                  },
1338   { "magic_wall_dead",                          "RocksElements.png"     },
1339   { "magic_wall_dead.xpos",                     "0"                     },
1340   { "magic_wall_dead.ypos",                     "8"                     },
1341   { "magic_wall_dead.frames",                   "1"                     },
1342
1343   { "dc_magic_wall",                            "RocksDC2.png"          },
1344   { "dc_magic_wall.xpos",                       "0"                     },
1345   { "dc_magic_wall.ypos",                       "3"                     },
1346   { "dc_magic_wall.frames",                     "1"                     },
1347   { "dc_magic_wall.active",                     "RocksDC2.png"          },
1348   { "dc_magic_wall.active.xpos",                "0"                     },
1349   { "dc_magic_wall.active.ypos",                "3"                     },
1350   { "dc_magic_wall.active.frames",              "4"                     },
1351   { "dc_magic_wall.active.anim_mode",           "reverse"               },
1352   { "dc_magic_wall.active.delay",               "4"                     },
1353   { "dc_magic_wall.active.global_sync",         "true"                  },
1354   { "dc_magic_wall.filling",                    "RocksDC2.png"          },
1355   { "dc_magic_wall.filling.xpos",               "0"                     },
1356   { "dc_magic_wall.filling.ypos",               "3"                     },
1357   { "dc_magic_wall.filling.frames",             "4"                     },
1358   { "dc_magic_wall.filling.anim_mode",          "reverse"               },
1359   { "dc_magic_wall.filling.delay",              "4"                     },
1360   { "dc_magic_wall.filling.global_sync",        "true"                  },
1361   { "dc_magic_wall_full",                       "RocksDC2.png"          },
1362   { "dc_magic_wall_full.xpos",                  "0"                     },
1363   { "dc_magic_wall_full.ypos",                  "3"                     },
1364   { "dc_magic_wall_full.frames",                "4"                     },
1365   { "dc_magic_wall_full.anim_mode",             "reverse"               },
1366   { "dc_magic_wall_full.delay",                 "4"                     },
1367   { "dc_magic_wall_full.global_sync",           "true"                  },
1368   { "dc_magic_wall.emptying",                   "RocksDC2.png"          },
1369   { "dc_magic_wall.emptying.xpos",              "0"                     },
1370   { "dc_magic_wall.emptying.ypos",              "3"                     },
1371   { "dc_magic_wall.emptying.frames",            "4"                     },
1372   { "dc_magic_wall.emptying.anim_mode",         "reverse"               },
1373   { "dc_magic_wall.emptying.delay",             "4"                     },
1374   { "dc_magic_wall.emptying.global_sync",       "true"                  },
1375   { "dc_magic_wall_dead",                       "RocksDC2.png"          },
1376   { "dc_magic_wall_dead.xpos",                  "0"                     },
1377   { "dc_magic_wall_dead.ypos",                  "3"                     },
1378   { "dc_magic_wall_dead.frames",                "1"                     },
1379
1380   { "quicksand_empty",                          "RocksElements.png"     },
1381   { "quicksand_empty.xpos",                     "2"                     },
1382   { "quicksand_empty.ypos",                     "0"                     },
1383   { "quicksand_empty.frames",                   "1"                     },
1384   { "quicksand.filling",                        "RocksElements.png"     },
1385   { "quicksand.filling.xpos",                   "3"                     },
1386   { "quicksand.filling.ypos",                   "0"                     },
1387   { "quicksand.filling.frames",                 "1"                     },
1388   { "quicksand_full",                           "RocksElements.png"     },
1389   { "quicksand_full.xpos",                      "3"                     },
1390   { "quicksand_full.ypos",                      "0"                     },
1391   { "quicksand_full.frames",                    "1"                     },
1392   { "quicksand_full.EDITOR",                    "RocksElements.png"     },
1393   { "quicksand_full.EDITOR.xpos",               "3"                     },
1394   { "quicksand_full.EDITOR.ypos",               "14"                    },
1395   { "quicksand.emptying",                       "RocksElements.png"     },
1396   { "quicksand.emptying.xpos",                  "3"                     },
1397   { "quicksand.emptying.ypos",                  "0"                     },
1398   { "quicksand.emptying.frames",                "1"                     },
1399
1400   { "quicksand_fast_empty",                     "RocksDC2.png"          },
1401   { "quicksand_fast_empty.xpos",                "4"                     },
1402   { "quicksand_fast_empty.ypos",                "3"                     },
1403   { "quicksand_fast_empty.frames",              "1"                     },
1404   { "quicksand_fast.filling",                   "RocksDC2.png"          },
1405   { "quicksand_fast.filling.xpos",              "4"                     },
1406   { "quicksand_fast.filling.ypos",              "3"                     },
1407   { "quicksand_fast.filling.frames",            "1"                     },
1408   { "quicksand_fast_full",                      "RocksDC2.png"          },
1409   { "quicksand_fast_full.xpos",                 "4"                     },
1410   { "quicksand_fast_full.ypos",                 "3"                     },
1411   { "quicksand_fast_full.frames",               "1"                     },
1412   { "quicksand_fast_full.EDITOR",               "RocksDC2.png"          },
1413   { "quicksand_fast_full.EDITOR.xpos",          "5"                     },
1414   { "quicksand_fast_full.EDITOR.ypos",          "3"                     },
1415   { "quicksand_fast.emptying",                  "RocksDC2.png"          },
1416   { "quicksand_fast.emptying.xpos",             "4"                     },
1417   { "quicksand_fast.emptying.ypos",             "3"                     },
1418   { "quicksand_fast.emptying.frames",           "1"                     },
1419
1420   { "acid_pool_topleft",                        "RocksElements.png"     },
1421   { "acid_pool_topleft.xpos",                   "0"                     },
1422   { "acid_pool_topleft.ypos",                   "1"                     },
1423   { "acid_pool_topleft.frames",                 "1"                     },
1424   { "acid_pool_topright",                       "RocksElements.png"     },
1425   { "acid_pool_topright.xpos",                  "2"                     },
1426   { "acid_pool_topright.ypos",                  "1"                     },
1427   { "acid_pool_topright.frames",                "1"                     },
1428   { "acid_pool_bottomleft",                     "RocksElements.png"     },
1429   { "acid_pool_bottomleft.xpos",                "0"                     },
1430   { "acid_pool_bottomleft.ypos",                "2"                     },
1431   { "acid_pool_bottomleft.frames",              "1"                     },
1432   { "acid_pool_bottom",                         "RocksElements.png"     },
1433   { "acid_pool_bottom.xpos",                    "1"                     },
1434   { "acid_pool_bottom.ypos",                    "2"                     },
1435   { "acid_pool_bottom.frames",                  "1"                     },
1436   { "acid_pool_bottomright",                    "RocksElements.png"     },
1437   { "acid_pool_bottomright.xpos",               "2"                     },
1438   { "acid_pool_bottomright.ypos",               "2"                     },
1439   { "acid_pool_bottomright.frames",             "1"                     },
1440
1441   { "acid",                                     "RocksElements.png"     },
1442   { "acid.xpos",                                "12"                    },
1443   { "acid.ypos",                                "7"                     },
1444   { "acid.frames",                              "4"                     },
1445   { "acid.delay",                               "10"                    },
1446   { "acid.global_sync",                         "true"                  },
1447
1448   { "acid_splash_left",                         "RocksHeroes.png"       },
1449   { "acid_splash_left.xpos",                    "8"                     },
1450   { "acid_splash_left.ypos",                    "10"                    },
1451   { "acid_splash_left.frames",                  "4"                     },
1452   { "acid_splash_left.delay",                   "2"                     },
1453   { "acid_splash_left.anim_mode",               "linear"                },
1454   { "acid_splash_right",                        "RocksHeroes.png"       },
1455   { "acid_splash_right.xpos",                   "12"                    },
1456   { "acid_splash_right.ypos",                   "10"                    },
1457   { "acid_splash_right.frames",                 "4"                     },
1458   { "acid_splash_right.delay",                  "2"                     },
1459   { "acid_splash_right.anim_mode",              "linear"                },
1460
1461   { "amoeba_drop",                              "RocksElements.png"     },
1462   { "amoeba_drop.xpos",                         "5"                     },
1463   { "amoeba_drop.ypos",                         "6"                     },
1464   { "amoeba_drop.frames",                       "1"                     },
1465   { "amoeba.growing",                           "RocksElements.png"     },
1466   { "amoeba.growing.xpos",                      "5"                     },
1467   { "amoeba.growing.ypos",                      "6"                     },
1468   { "amoeba.growing.frames",                    "3"                     },
1469   { "amoeba.growing.delay",                     "2"                     },
1470   { "amoeba.growing.anim_mode",                 "linear"                },
1471   { "amoeba.shrinking",                         "RocksElements.png"     },
1472   { "amoeba.shrinking.xpos",                    "5"                     },
1473   { "amoeba.shrinking.ypos",                    "6"                     },
1474   { "amoeba.shrinking.frames",                  "3"                     },
1475   { "amoeba.shrinking.delay",                   "2"                     },
1476   { "amoeba.shrinking.anim_mode",               "linear,reverse"        },
1477   { "amoeba_wet",                               "RocksElements.png"     },
1478   { "amoeba_wet.xpos",                          "8"                     },
1479   { "amoeba_wet.ypos",                          "6"                     },
1480   { "amoeba_wet.frames",                        "4"                     },
1481   { "amoeba_wet.delay",                         "1000000"               },
1482   { "amoeba_wet.anim_mode",                     "random"                },
1483   { "amoeba_wet.EDITOR",                        "RocksElements.png"     },
1484   { "amoeba_wet.EDITOR.xpos",                   "4"                     },
1485   { "amoeba_wet.EDITOR.ypos",                   "6"                     },
1486   { "amoeba.dropping",                          "RocksElements.png"     },
1487   { "amoeba.dropping.xpos",                     "8"                     },
1488   { "amoeba.dropping.ypos",                     "6"                     },
1489   { "amoeba.dropping.frames",                   "4"                     },
1490   { "amoeba.dropping.delay",                    "1000000"               },
1491   { "amoeba.dropping.anim_mode",                "random"                },
1492   { "amoeba_dry",                               "RocksElements.png"     },
1493   { "amoeba_dry.xpos",                          "8"                     },
1494   { "amoeba_dry.ypos",                          "6"                     },
1495   { "amoeba_dry.frames",                        "4"                     },
1496   { "amoeba_dry.delay",                         "1000000"               },
1497   { "amoeba_dry.anim_mode",                     "random"                },
1498   { "amoeba_full",                              "RocksElements.png"     },
1499   { "amoeba_full.xpos",                         "8"                     },
1500   { "amoeba_full.ypos",                         "6"                     },
1501   { "amoeba_full.frames",                       "4"                     },
1502   { "amoeba_full.delay",                        "1000000"               },
1503   { "amoeba_full.anim_mode",                    "random"                },
1504   { "amoeba_full.EDITOR",                       "RocksElements.png"     },
1505   { "amoeba_full.EDITOR.xpos",                  "8"                     },
1506   { "amoeba_full.EDITOR.ypos",                  "7"                     },
1507   { "amoeba_dead",                              "RocksElements.png"     },
1508   { "amoeba_dead.xpos",                         "12"                    },
1509   { "amoeba_dead.ypos",                         "6"                     },
1510   { "amoeba_dead.frames",                       "4"                     },
1511   { "amoeba_dead.delay",                        "1000000"               },
1512   { "amoeba_dead.anim_mode",                    "random"                },
1513   { "amoeba_dead.EDITOR",                       "RocksElements.png"     },
1514   { "amoeba_dead.EDITOR.xpos",                  "12"                    },
1515   { "amoeba_dead.EDITOR.ypos",                  "6"                     },
1516
1517   { "em_key_1",                                 "RocksSP.png"           },
1518   { "em_key_1.xpos",                            "4"                     },
1519   { "em_key_1.ypos",                            "6"                     },
1520   { "em_key_1.frames",                          "1"                     },
1521   { "em_key_2",                                 "RocksSP.png"           },
1522   { "em_key_2.xpos",                            "5"                     },
1523   { "em_key_2.ypos",                            "6"                     },
1524   { "em_key_2.frames",                          "1"                     },
1525   { "em_key_3",                                 "RocksSP.png"           },
1526   { "em_key_3.xpos",                            "6"                     },
1527   { "em_key_3.ypos",                            "6"                     },
1528   { "em_key_3.frames",                          "1"                     },
1529   { "em_key_4",                                 "RocksSP.png"           },
1530   { "em_key_4.xpos",                            "7"                     },
1531   { "em_key_4.ypos",                            "6"                     },
1532   { "em_key_4.frames",                          "1"                     },
1533
1534   { "dc_key_white",                             "RocksSP.png"           },
1535   { "dc_key_white.xpos",                        "13"                    },
1536   { "dc_key_white.ypos",                        "1"                     },
1537   { "dc_key_white.frames",                      "1"                     },
1538
1539   { "em_gate_1",                                "RocksSP.png"           },
1540   { "em_gate_1.xpos",                           "0"                     },
1541   { "em_gate_1.ypos",                           "7"                     },
1542   { "em_gate_1.frames",                         "1"                     },
1543   { "em_gate_2",                                "RocksSP.png"           },
1544   { "em_gate_2.xpos",                           "1"                     },
1545   { "em_gate_2.ypos",                           "7"                     },
1546   { "em_gate_2.frames",                         "1"                     },
1547   { "em_gate_3",                                "RocksSP.png"           },
1548   { "em_gate_3.xpos",                           "2"                     },
1549   { "em_gate_3.ypos",                           "7"                     },
1550   { "em_gate_3.frames",                         "1"                     },
1551   { "em_gate_4",                                "RocksSP.png"           },
1552   { "em_gate_4.xpos",                           "3"                     },
1553   { "em_gate_4.ypos",                           "7"                     },
1554   { "em_gate_4.frames",                         "1"                     },
1555
1556   { "dc_gate_white",                            "RocksSP.png"           },
1557   { "dc_gate_white.xpos",                       "14"                    },
1558   { "dc_gate_white.ypos",                       "1"                     },
1559   { "dc_gate_white.frames",                     "1"                     },
1560
1561   { "em_gate_1_gray",                           "RocksSP.png"           },
1562   { "em_gate_1_gray.xpos",                      "4"                     },
1563   { "em_gate_1_gray.ypos",                      "7"                     },
1564   { "em_gate_1_gray.frames",                    "1"                     },
1565   { "em_gate_1_gray.EDITOR",                    "RocksSP.png"           },
1566   { "em_gate_1_gray.EDITOR.xpos",               "12"                    },
1567   { "em_gate_1_gray.EDITOR.ypos",               "11"                    },
1568   { "em_gate_1_gray.active",                    "RocksSP.png"           },
1569   { "em_gate_1_gray.active.xpos",               "0"                     },
1570   { "em_gate_1_gray.active.ypos",               "7"                     },
1571   { "em_gate_1_gray.active.frames",             "1"                     },
1572   { "em_gate_2_gray",                           "RocksSP.png"           },
1573   { "em_gate_2_gray.xpos",                      "5"                     },
1574   { "em_gate_2_gray.ypos",                      "7"                     },
1575   { "em_gate_2_gray.frames",                    "1"                     },
1576   { "em_gate_2_gray.EDITOR",                    "RocksSP.png"           },
1577   { "em_gate_2_gray.EDITOR.xpos",               "13"                    },
1578   { "em_gate_2_gray.EDITOR.ypos",               "11"                    },
1579   { "em_gate_2_gray.active",                    "RocksSP.png"           },
1580   { "em_gate_2_gray.active.xpos",               "1"                     },
1581   { "em_gate_2_gray.active.ypos",               "7"                     },
1582   { "em_gate_2_gray.active.frames",             "1"                     },
1583   { "em_gate_3_gray",                           "RocksSP.png"           },
1584   { "em_gate_3_gray.xpos",                      "6"                     },
1585   { "em_gate_3_gray.ypos",                      "7"                     },
1586   { "em_gate_3_gray.frames",                    "1"                     },
1587   { "em_gate_3_gray.EDITOR",                    "RocksSP.png"           },
1588   { "em_gate_3_gray.EDITOR.xpos",               "14"                    },
1589   { "em_gate_3_gray.EDITOR.ypos",               "11"                    },
1590   { "em_gate_3_gray.active",                    "RocksSP.png"           },
1591   { "em_gate_3_gray.active.xpos",               "2"                     },
1592   { "em_gate_3_gray.active.ypos",               "7"                     },
1593   { "em_gate_3_gray.active.frames",             "1"                     },
1594   { "em_gate_4_gray",                           "RocksSP.png"           },
1595   { "em_gate_4_gray.xpos",                      "7"                     },
1596   { "em_gate_4_gray.ypos",                      "7"                     },
1597   { "em_gate_4_gray.frames",                    "1"                     },
1598   { "em_gate_4_gray.EDITOR",                    "RocksSP.png"           },
1599   { "em_gate_4_gray.EDITOR.xpos",               "15"                    },
1600   { "em_gate_4_gray.EDITOR.ypos",               "11"                    },
1601   { "em_gate_4_gray.active",                    "RocksSP.png"           },
1602   { "em_gate_4_gray.active.xpos",               "3"                     },
1603   { "em_gate_4_gray.active.ypos",               "7"                     },
1604   { "em_gate_4_gray.active.frames",             "1"                     },
1605
1606   { "dc_gate_white_gray",                       "RocksSP.png"           },
1607   { "dc_gate_white_gray.xpos",                  "7"                     },
1608   { "dc_gate_white_gray.ypos",                  "7"                     },
1609   { "dc_gate_white_gray.frames",                "1"                     },
1610   { "dc_gate_white_gray.EDITOR",                "RocksSP.png"           },
1611   { "dc_gate_white_gray.EDITOR.xpos",           "15"                    },
1612   { "dc_gate_white_gray.EDITOR.ypos",           "1"                     },
1613   { "dc_gate_white_gray.active",                "RocksSP.png"           },
1614   { "dc_gate_white_gray.active.xpos",           "14"                    },
1615   { "dc_gate_white_gray.active.ypos",           "1"                     },
1616   { "dc_gate_white_gray.active.frames",         "1"                     },
1617
1618   { "dc_gate_fake_gray",                        "RocksSP.png"           },
1619   { "dc_gate_fake_gray.xpos",                   "7"                     },
1620   { "dc_gate_fake_gray.ypos",                   "7"                     },
1621   { "dc_gate_fake_gray.frames",                 "1"                     },
1622
1623   { "exit_closed",                              "RocksElements.png"     },
1624   { "exit_closed.xpos",                         "0"                     },
1625   { "exit_closed.ypos",                         "11"                    },
1626   { "exit_closed.frames",                       "1"                     },
1627   { "exit.opening",                             "RocksElements.png"     },
1628   { "exit.opening.xpos",                        "0"                     },
1629   { "exit.opening.ypos",                        "11"                    },
1630   { "exit.opening.frames",                      "5"                     },
1631   { "exit.opening.delay",                       "6"                     },
1632   { "exit.opening.anim_mode",                   "linear"                },
1633   { "exit_open",                                "RocksElements.png"     },
1634   { "exit_open.xpos",                           "4"                     },
1635   { "exit_open.ypos",                           "11"                    },
1636   { "exit_open.frames",                         "4"                     },
1637   { "exit_open.delay",                          "4"                     },
1638   { "exit_open.anim_mode",                      "pingpong"              },
1639   { "exit.closing",                             "RocksElements.png"     },
1640   { "exit.closing.xpos",                        "0"                     },
1641   { "exit.closing.ypos",                        "11"                    },
1642   { "exit.closing.frames",                      "5"                     },
1643   { "exit.closing.delay",                       "6"                     },
1644   { "exit.closing.anim_mode",                   "linear,reverse"        },
1645
1646   { "steel_exit_closed",                        "RocksDC2.png"  },
1647   { "steel_exit_closed.xpos",                   "8"                     },
1648   { "steel_exit_closed.ypos",                   "0"                     },
1649   { "steel_exit_closed.frames",                 "1"                     },
1650   { "steel_exit.opening",                       "RocksDC2.png"  },
1651   { "steel_exit.opening.xpos",                  "8"                     },
1652   { "steel_exit.opening.ypos",                  "0"                     },
1653   { "steel_exit.opening.frames",                "5"                     },
1654   { "steel_exit.opening.delay",                 "6"                     },
1655   { "steel_exit.opening.anim_mode",             "linear"                },
1656   { "steel_exit_open",                          "RocksDC2.png"  },
1657   { "steel_exit_open.xpos",                     "12"                    },
1658   { "steel_exit_open.ypos",                     "0"                     },
1659   { "steel_exit_open.frames",                   "4"                     },
1660   { "steel_exit_open.delay",                    "4"                     },
1661   { "steel_exit_open.anim_mode",                "pingpong"              },
1662   { "steel_exit.closing",                       "RocksDC2.png"  },
1663   { "steel_exit.closing.xpos",                  "8"                     },
1664   { "steel_exit.closing.ypos",                  "0"                     },
1665   { "steel_exit.closing.frames",                "5"                     },
1666   { "steel_exit.closing.delay",                 "6"                     },
1667   { "steel_exit.closing.anim_mode",             "linear,reverse"        },
1668
1669   { "em_exit_closed",                           "RocksDC2.png"  },
1670   { "em_exit_closed.xpos",                      "0"                     },
1671   { "em_exit_closed.ypos",                      "4"                     },
1672   { "em_exit_closed.frames",                    "1"                     },
1673   { "em_exit.opening",                          "RocksDC2.png"  },
1674   { "em_exit.opening.xpos",                     "0"                     },
1675   { "em_exit.opening.ypos",                     "4"                     },
1676   { "em_exit.opening.frames",                   "5"                     },
1677   { "em_exit.opening.delay",                    "6"                     },
1678   { "em_exit.opening.anim_mode",                "linear"                },
1679   { "em_exit_open",                             "RocksDC2.png"  },
1680   { "em_exit_open.xpos",                        "4"                     },
1681   { "em_exit_open.ypos",                        "4"                     },
1682   { "em_exit_open.frames",                      "4"                     },
1683   { "em_exit_open.delay",                       "4"                     },
1684   { "em_exit_open.anim_mode",                   "pingpong"              },
1685   { "em_exit.closing",                          "RocksDC2.png"  },
1686   { "em_exit.closing.xpos",                     "0"                     },
1687   { "em_exit.closing.ypos",                     "6"                     },
1688   { "em_exit.closing.frames",                   "5"                     },
1689   { "em_exit.closing.delay",                    "6"                     },
1690   { "em_exit.closing.anim_mode",                "linear"                },
1691
1692   { "em_steel_exit_closed",                     "RocksDC2.png"  },
1693   { "em_steel_exit_closed.xpos",                "0"                     },
1694   { "em_steel_exit_closed.ypos",                "5"                     },
1695   { "em_steel_exit_closed.frames",              "1"                     },
1696   { "em_steel_exit.opening",                    "RocksDC2.png"  },
1697   { "em_steel_exit.opening.xpos",               "0"                     },
1698   { "em_steel_exit.opening.ypos",               "5"                     },
1699   { "em_steel_exit.opening.frames",             "5"                     },
1700   { "em_steel_exit.opening.delay",              "6"                     },
1701   { "em_steel_exit.opening.anim_mode",          "linear"                },
1702   { "em_steel_exit_open",                       "RocksDC2.png"  },
1703   { "em_steel_exit_open.xpos",                  "4"                     },
1704   { "em_steel_exit_open.ypos",                  "5"                     },
1705   { "em_steel_exit_open.frames",                "4"                     },
1706   { "em_steel_exit_open.delay",                 "4"                     },
1707   { "em_steel_exit_open.anim_mode",             "pingpong"              },
1708   { "em_steel_exit.closing",                    "RocksDC2.png"  },
1709   { "em_steel_exit.closing.xpos",               "0"                     },
1710   { "em_steel_exit.closing.ypos",               "7"                     },
1711   { "em_steel_exit.closing.frames",             "5"                     },
1712   { "em_steel_exit.closing.delay",              "6"                     },
1713   { "em_steel_exit.closing.anim_mode",          "linear"                },
1714
1715   // images for Emerald Mine Club style elements and actions
1716
1717   { "balloon",                                  "RocksDC.png"           },
1718   { "balloon.xpos",                             "12"                    },
1719   { "balloon.ypos",                             "7"                     },
1720   { "balloon.frames",                           "1"                     },
1721   { "balloon.moving",                           "RocksDC.png"           },
1722   { "balloon.moving.xpos",                      "12"                    },
1723   { "balloon.moving.ypos",                      "7"                     },
1724   { "balloon.moving.frames",                    "4"                     },
1725   { "balloon.moving.anim_mode",                 "pingpong"              },
1726   { "balloon.moving.delay",                     "2"                     },
1727   { "balloon.pushing",                          "RocksDC.png"           },
1728   { "balloon.pushing.xpos",                     "12"                    },
1729   { "balloon.pushing.ypos",                     "7"                     },
1730   { "balloon.pushing.frames",                   "4"                     },
1731   { "balloon.pushing.anim_mode",                "pingpong"              },
1732   { "balloon.pushing.delay",                    "2"                     },
1733   { "balloon_switch_left",                      "RocksDC.png"           },
1734   { "balloon_switch_left.xpos",                 "8"                     },
1735   { "balloon_switch_left.ypos",                 "7"                     },
1736   { "balloon_switch_left.frames",               "1"                     },
1737   { "balloon_switch_right",                     "RocksDC.png"           },
1738   { "balloon_switch_right.xpos",                "9"                     },
1739   { "balloon_switch_right.ypos",                "7"                     },
1740   { "balloon_switch_right.frames",              "1"                     },
1741   { "balloon_switch_up",                        "RocksDC.png"           },
1742   { "balloon_switch_up.xpos",                   "10"                    },
1743   { "balloon_switch_up.ypos",                   "7"                     },
1744   { "balloon_switch_up.frames",                 "1"                     },
1745   { "balloon_switch_down",                      "RocksDC.png"           },
1746   { "balloon_switch_down.xpos",                 "11"                    },
1747   { "balloon_switch_down.ypos",                 "7"                     },
1748   { "balloon_switch_down.frames",               "1"                     },
1749   { "balloon_switch_any",                       "RocksDC.png"           },
1750   { "balloon_switch_any.xpos",                  "15"                    },
1751   { "balloon_switch_any.ypos",                  "0"                     },
1752   { "balloon_switch_any.frames",                "1"                     },
1753   { "balloon_switch_none",                      "RocksDC.png"           },
1754   { "balloon_switch_none.xpos",                 "13"                    },
1755   { "balloon_switch_none.ypos",                 "5"                     },
1756   { "balloon_switch_none.frames",               "1"                     },
1757
1758   { "spring",                                   "RocksDC.png"           },
1759   { "spring.xpos",                              "8"                     },
1760   { "spring.ypos",                              "13"                    },
1761   { "spring.frames",                            "1"                     },
1762
1763   { "emc_steelwall_1",                          "RocksDC.png"           },
1764   { "emc_steelwall_1.xpos",                     "14"                    },
1765   { "emc_steelwall_1.ypos",                     "0"                     },
1766   { "emc_steelwall_1.frames",                   "1"                     },
1767   { "emc_steelwall_2",                          "RocksEMC.png"          },
1768   { "emc_steelwall_2.xpos",                     "9"                     },
1769   { "emc_steelwall_2.ypos",                     "8"                     },
1770   { "emc_steelwall_2.frames",                   "1"                     },
1771   { "emc_steelwall_3",                          "RocksEMC.png"          },
1772   { "emc_steelwall_3.xpos",                     "9"                     },
1773   { "emc_steelwall_3.ypos",                     "9"                     },
1774   { "emc_steelwall_3.frames",                   "1"                     },
1775   { "emc_steelwall_4",                          "RocksEMC.png"          },
1776   { "emc_steelwall_4.xpos",                     "9"                     },
1777   { "emc_steelwall_4.ypos",                     "10"                    },
1778   { "emc_steelwall_4.frames",                   "1"                     },
1779
1780   { "emc_wall_1",                               "RocksDC.png"           },
1781   { "emc_wall_1.xpos",                          "13"                    },
1782   { "emc_wall_1.ypos",                          "6"                     },
1783   { "emc_wall_1.frames",                        "1"                     },
1784   { "emc_wall_2",                               "RocksDC.png"           },
1785   { "emc_wall_2.xpos",                          "14"                    },
1786   { "emc_wall_2.ypos",                          "6"                     },
1787   { "emc_wall_2.frames",                        "1"                     },
1788   { "emc_wall_3",                               "RocksDC.png"           },
1789   { "emc_wall_3.xpos",                          "15"                    },
1790   { "emc_wall_3.ypos",                          "6"                     },
1791   { "emc_wall_3.frames",                        "1"                     },
1792   { "emc_wall_4",                               "RocksDC.png"           },
1793   { "emc_wall_4.xpos",                          "14"                    },
1794   { "emc_wall_4.ypos",                          "1"                     },
1795   { "emc_wall_4.frames",                        "1"                     },
1796   { "emc_wall_5",                               "RocksDC.png"           },
1797   { "emc_wall_5.xpos",                          "15"                    },
1798   { "emc_wall_5.ypos",                          "1"                     },
1799   { "emc_wall_5.frames",                        "1"                     },
1800   { "emc_wall_6",                               "RocksDC.png"           },
1801   { "emc_wall_6.xpos",                          "14"                    },
1802   { "emc_wall_6.ypos",                          "2"                     },
1803   { "emc_wall_6.frames",                        "1"                     },
1804   { "emc_wall_7",                               "RocksDC.png"           },
1805   { "emc_wall_7.xpos",                          "15"                    },
1806   { "emc_wall_7.ypos",                          "2"                     },
1807   { "emc_wall_7.frames",                        "1"                     },
1808   { "emc_wall_8",                               "RocksEMC.png"          },
1809   { "emc_wall_8.xpos",                          "8"                     },
1810   { "emc_wall_8.ypos",                          "7"                     },
1811   { "emc_wall_8.frames",                        "1"                     },
1812
1813   // images for Diamond Caves style elements and actions
1814
1815   { "invisible_steelwall",                      "RocksSP.png"           },
1816   { "invisible_steelwall.xpos",                 "3"                     },
1817   { "invisible_steelwall.ypos",                 "5"                     },
1818   { "invisible_steelwall.frames",               "1"                     },
1819   { "invisible_steelwall.EDITOR",               "RocksSP.png"           },
1820   { "invisible_steelwall.EDITOR.xpos",          "1"                     },
1821   { "invisible_steelwall.EDITOR.ypos",          "5"                     },
1822   { "invisible_steelwall.active",               "RocksSP.png"           },
1823   { "invisible_steelwall.active.xpos",          "1"                     },
1824   { "invisible_steelwall.active.ypos",          "5"                     },
1825   { "invisible_steelwall.active.frames",        "1"                     },
1826
1827   { "invisible_wall",                           "RocksSP.png"           },
1828   { "invisible_wall.xpos",                      "7"                     },
1829   { "invisible_wall.ypos",                      "5"                     },
1830   { "invisible_wall.frames",                    "1"                     },
1831   { "invisible_wall.EDITOR",                    "RocksSP.png"           },
1832   { "invisible_wall.EDITOR.xpos",               "5"                     },
1833   { "invisible_wall.EDITOR.ypos",               "5"                     },
1834   { "invisible_wall.active",                    "RocksSP.png"           },
1835   { "invisible_wall.active.xpos",               "5"                     },
1836   { "invisible_wall.active.ypos",               "5"                     },
1837   { "invisible_wall.active.frames",             "1"                     },
1838
1839   { "invisible_sand",                           "RocksSP.png"           },
1840   { "invisible_sand.xpos",                      "0"                     },
1841   { "invisible_sand.ypos",                      "0"                     },
1842   { "invisible_sand.frames",                    "1"                     },
1843   { "invisible_sand.EDITOR",                    "RocksEMC.png"          },
1844   { "invisible_sand.EDITOR.xpos",               "2"                     },
1845   { "invisible_sand.EDITOR.ypos",               "4"                     },
1846   { "invisible_sand.active",                    "RocksEMC.png"          },
1847   { "invisible_sand.active.xpos",               "2"                     },
1848   { "invisible_sand.active.ypos",               "4"                     },
1849   { "invisible_sand.active.frames",             "1"                     },
1850   { "invisible_sand.active.CRUMBLED",           "RocksEMC.png"          },
1851   { "invisible_sand.active.CRUMBLED.xpos",      "3"                     },
1852   { "invisible_sand.active.CRUMBLED.ypos",      "4"                     },
1853   { "invisible_sand.active.CRUMBLED.frames",    "1"                     },
1854   { "invisible_sand.active.digging.left",       "RocksEMC.png"          },
1855   { "invisible_sand.active.digging.left.xpos",  "6"                     },
1856   { "invisible_sand.active.digging.left.ypos",  "2"                     },
1857   { "invisible_sand.active.digging.left.frames","3"                     },
1858   { "invisible_sand.active.digging.left.delay", "2"                     },
1859   { "invisible_sand.active.digging.left.anim_mode","linear"             },
1860   { "invisible_sand.active.digging.right",      "RocksEMC.png"          },
1861   { "invisible_sand.active.digging.right.xpos", "9"                     },
1862   { "invisible_sand.active.digging.right.ypos", "2"                     },
1863   { "invisible_sand.active.digging.right.frames","3"                    },
1864   { "invisible_sand.active.digging.right.delay","2"                     },
1865   { "invisible_sand.active.digging.right.anim_mode","linear"            },
1866   { "invisible_sand.active.digging.up",         "RocksEMC.png"          },
1867   { "invisible_sand.active.digging.up.xpos",    "0"                     },
1868   { "invisible_sand.active.digging.up.ypos",    "2"                     },
1869   { "invisible_sand.active.digging.up.frames",  "3"                     },
1870   { "invisible_sand.active.digging.up.delay",   "2"                     },
1871   { "invisible_sand.active.digging.up.anim_mode","linear"               },
1872   { "invisible_sand.active.digging.down",       "RocksEMC.png"          },
1873   { "invisible_sand.active.digging.down.xpos",  "3"                     },
1874   { "invisible_sand.active.digging.down.ypos",  "2"                     },
1875   { "invisible_sand.active.digging.down.frames","3"                     },
1876   { "invisible_sand.active.digging.down.delay", "2"                     },
1877   { "invisible_sand.active.digging.down.anim_mode","linear"             },
1878   { "invisible_sand.active.digging.left.CRUMBLED",      "RocksEMC.png"  },
1879   { "invisible_sand.active.digging.left.CRUMBLED.xpos", "6"             },
1880   { "invisible_sand.active.digging.left.CRUMBLED.ypos", "3"             },
1881   { "invisible_sand.active.digging.left.CRUMBLED.frames","3"            },
1882   { "invisible_sand.active.digging.left.CRUMBLED.delay","2"             },
1883   { "invisible_sand.active.digging.left.CRUMBLED.anim_mode","linear"    },
1884   { "invisible_sand.active.digging.right.CRUMBLED",     "RocksEMC.png"  },
1885   { "invisible_sand.active.digging.right.CRUMBLED.xpos","9"             },
1886   { "invisible_sand.active.digging.right.CRUMBLED.ypos","3"             },
1887   { "invisible_sand.active.digging.right.CRUMBLED.frames","3"           },
1888   { "invisible_sand.active.digging.right.CRUMBLED.delay","2"            },
1889   { "invisible_sand.active.digging.right.CRUMBLED.anim_mode","linear"   },
1890   { "invisible_sand.active.digging.up.CRUMBLED",        "RocksEMC.png"  },
1891   { "invisible_sand.active.digging.up.CRUMBLED.xpos",   "0"             },
1892   { "invisible_sand.active.digging.up.CRUMBLED.ypos",   "3"             },
1893   { "invisible_sand.active.digging.up.CRUMBLED.frames", "3"             },
1894   { "invisible_sand.active.digging.up.CRUMBLED.delay",  "2"             },
1895   { "invisible_sand.active.digging.up.CRUMBLED.anim_mode","linear"      },
1896   { "invisible_sand.active.digging.down.CRUMBLED",      "RocksEMC.png"  },
1897   { "invisible_sand.active.digging.down.CRUMBLED.xpos", "3"             },
1898   { "invisible_sand.active.digging.down.CRUMBLED.ypos", "3"             },
1899   { "invisible_sand.active.digging.down.CRUMBLED.frames","3"            },
1900   { "invisible_sand.active.digging.down.CRUMBLED.delay","2"             },
1901   { "invisible_sand.active.digging.down.CRUMBLED.anim_mode","linear"    },
1902
1903   { "conveyor_belt_1_middle",                   "RocksDC.png"           },
1904   { "conveyor_belt_1_middle.xpos",              "0"                     },
1905   { "conveyor_belt_1_middle.ypos",              "0"                     },
1906   { "conveyor_belt_1_middle.frames",            "1"                     },
1907   { "conveyor_belt_1_middle.active",            "RocksDC.png"           },
1908   { "conveyor_belt_1_middle.active.xpos",       "0"                     },
1909   { "conveyor_belt_1_middle.active.ypos",       "0"                     },
1910   { "conveyor_belt_1_middle.active.frames",     "8"                     },
1911   { "conveyor_belt_1_middle.active.delay",      "2"                     },
1912   { "conveyor_belt_1_left",                     "RocksDC.png"           },
1913   { "conveyor_belt_1_left.xpos",                "0"                     },
1914   { "conveyor_belt_1_left.ypos",                "1"                     },
1915   { "conveyor_belt_1_left.frames",              "1"                     },
1916   { "conveyor_belt_1_left.active",              "RocksDC.png"           },
1917   { "conveyor_belt_1_left.active.xpos",         "0"                     },
1918   { "conveyor_belt_1_left.active.ypos",         "1"                     },
1919   { "conveyor_belt_1_left.active.frames",       "8"                     },
1920   { "conveyor_belt_1_left.active.delay",        "2"                     },
1921   { "conveyor_belt_1_right",                    "RocksDC.png"           },
1922   { "conveyor_belt_1_right.xpos",               "0"                     },
1923   { "conveyor_belt_1_right.ypos",               "2"                     },
1924   { "conveyor_belt_1_right.frames",             "1"                     },
1925   { "conveyor_belt_1_right.active",             "RocksDC.png"           },
1926   { "conveyor_belt_1_right.active.xpos",        "0"                     },
1927   { "conveyor_belt_1_right.active.ypos",        "2"                     },
1928   { "conveyor_belt_1_right.active.frames",      "8"                     },
1929   { "conveyor_belt_1_right.active.delay",       "2"                     },
1930   { "conveyor_belt_1_switch_left",              "RocksDC.png"           },
1931   { "conveyor_belt_1_switch_left.xpos",         "0"                     },
1932   { "conveyor_belt_1_switch_left.ypos",         "12"                    },
1933   { "conveyor_belt_1_switch_left.frames",       "1"                     },
1934   { "conveyor_belt_1_switch_middle",            "RocksDC.png"           },
1935   { "conveyor_belt_1_switch_middle.xpos",       "0"                     },
1936   { "conveyor_belt_1_switch_middle.ypos",       "13"                    },
1937   { "conveyor_belt_1_switch_middle.frames",     "1"                     },
1938   { "conveyor_belt_1_switch_right",             "RocksDC.png"           },
1939   { "conveyor_belt_1_switch_right.xpos",        "0"                     },
1940   { "conveyor_belt_1_switch_right.ypos",        "14"                    },
1941   { "conveyor_belt_1_switch_right.frames",      "1"                     },
1942
1943   { "conveyor_belt_2_middle",                   "RocksDC.png"           },
1944   { "conveyor_belt_2_middle.xpos",              "0"                     },
1945   { "conveyor_belt_2_middle.ypos",              "3"                     },
1946   { "conveyor_belt_2_middle.frames",            "1"                     },
1947   { "conveyor_belt_2_middle.active",            "RocksDC.png"           },
1948   { "conveyor_belt_2_middle.active.xpos",       "0"                     },
1949   { "conveyor_belt_2_middle.active.ypos",       "3"                     },
1950   { "conveyor_belt_2_middle.active.frames",     "8"                     },
1951   { "conveyor_belt_2_middle.active.delay",      "2"                     },
1952   { "conveyor_belt_2_left",                     "RocksDC.png"           },
1953   { "conveyor_belt_2_left.xpos",                "0"                     },
1954   { "conveyor_belt_2_left.ypos",                "4"                     },
1955   { "conveyor_belt_2_left.frames",              "1"                     },
1956   { "conveyor_belt_2_left.active",              "RocksDC.png"           },
1957   { "conveyor_belt_2_left.active.xpos",         "0"                     },
1958   { "conveyor_belt_2_left.active.ypos",         "4"                     },
1959   { "conveyor_belt_2_left.active.frames",       "8"                     },
1960   { "conveyor_belt_2_left.active.delay",        "2"                     },
1961   { "conveyor_belt_2_right",                    "RocksDC.png"           },
1962   { "conveyor_belt_2_right.xpos",               "0"                     },
1963   { "conveyor_belt_2_right.ypos",               "5"                     },
1964   { "conveyor_belt_2_right.frames",             "1"                     },
1965   { "conveyor_belt_2_right.active",             "RocksDC.png"           },
1966   { "conveyor_belt_2_right.active.xpos",        "0"                     },
1967   { "conveyor_belt_2_right.active.ypos",        "5"                     },
1968   { "conveyor_belt_2_right.active.frames",      "8"                     },
1969   { "conveyor_belt_2_right.active.delay",       "2"                     },
1970   { "conveyor_belt_2_switch_left",              "RocksDC.png"           },
1971   { "conveyor_belt_2_switch_left.xpos",         "1"                     },
1972   { "conveyor_belt_2_switch_left.ypos",         "12"                    },
1973   { "conveyor_belt_2_switch_left.frames",       "1"                     },
1974   { "conveyor_belt_2_switch_middle",            "RocksDC.png"           },
1975   { "conveyor_belt_2_switch_middle.xpos",       "1"                     },
1976   { "conveyor_belt_2_switch_middle.ypos",       "13"                    },
1977   { "conveyor_belt_2_switch_middle.frames",     "1"                     },
1978   { "conveyor_belt_2_switch_right",             "RocksDC.png"           },
1979   { "conveyor_belt_2_switch_right.xpos",        "1"                     },
1980   { "conveyor_belt_2_switch_right.ypos",        "14"                    },
1981   { "conveyor_belt_2_switch_right.frames",      "1"                     },
1982
1983   { "conveyor_belt_3_middle",                   "RocksDC.png"           },
1984   { "conveyor_belt_3_middle.xpos",              "0"                     },
1985   { "conveyor_belt_3_middle.ypos",              "6"                     },
1986   { "conveyor_belt_3_middle.frames",            "1"                     },
1987   { "conveyor_belt_3_middle.active",            "RocksDC.png"           },
1988   { "conveyor_belt_3_middle.active.xpos",       "0"                     },
1989   { "conveyor_belt_3_middle.active.ypos",       "6"                     },
1990   { "conveyor_belt_3_middle.active.frames",     "8"                     },
1991   { "conveyor_belt_3_middle.active.delay",      "2"                     },
1992   { "conveyor_belt_3_left",                     "RocksDC.png"           },
1993   { "conveyor_belt_3_left.xpos",                "0"                     },
1994   { "conveyor_belt_3_left.ypos",                "7"                     },
1995   { "conveyor_belt_3_left.frames",              "1"                     },
1996   { "conveyor_belt_3_left.active",              "RocksDC.png"           },
1997   { "conveyor_belt_3_left.active.xpos",         "0"                     },
1998   { "conveyor_belt_3_left.active.ypos",         "7"                     },
1999   { "conveyor_belt_3_left.active.frames",       "8"                     },
2000   { "conveyor_belt_3_left.active.delay",        "2"                     },
2001   { "conveyor_belt_3_right",                    "RocksDC.png"           },
2002   { "conveyor_belt_3_right.xpos",               "0"                     },
2003   { "conveyor_belt_3_right.ypos",               "8"                     },
2004   { "conveyor_belt_3_right.frames",             "1"                     },
2005   { "conveyor_belt_3_right.active",             "RocksDC.png"           },
2006   { "conveyor_belt_3_right.active.xpos",        "0"                     },
2007   { "conveyor_belt_3_right.active.ypos",        "8"                     },
2008   { "conveyor_belt_3_right.active.frames",      "8"                     },
2009   { "conveyor_belt_3_right.active.delay",       "2"                     },
2010   { "conveyor_belt_3_switch_left",              "RocksDC.png"           },
2011   { "conveyor_belt_3_switch_left.xpos",         "2"                     },
2012   { "conveyor_belt_3_switch_left.ypos",         "12"                    },
2013   { "conveyor_belt_3_switch_left.frames",       "1"                     },
2014   { "conveyor_belt_3_switch_middle",            "RocksDC.png"           },
2015   { "conveyor_belt_3_switch_middle.xpos",       "2"                     },
2016   { "conveyor_belt_3_switch_middle.ypos",       "13"                    },
2017   { "conveyor_belt_3_switch_middle.frames",     "1"                     },
2018   { "conveyor_belt_3_switch_right",             "RocksDC.png"           },
2019   { "conveyor_belt_3_switch_right.xpos",        "2"                     },
2020   { "conveyor_belt_3_switch_right.ypos",        "14"                    },
2021   { "conveyor_belt_3_switch_right.frames",      "1"                     },
2022
2023   { "conveyor_belt_4_middle",                   "RocksDC.png"           },
2024   { "conveyor_belt_4_middle.xpos",              "0"                     },
2025   { "conveyor_belt_4_middle.ypos",              "9"                     },
2026   { "conveyor_belt_4_middle.frames",            "1"                     },
2027   { "conveyor_belt_4_middle.active",            "RocksDC.png"           },
2028   { "conveyor_belt_4_middle.active.xpos",       "0"                     },
2029   { "conveyor_belt_4_middle.active.ypos",       "9"                     },
2030   { "conveyor_belt_4_middle.active.frames",     "8"                     },
2031   { "conveyor_belt_4_middle.active.delay",      "2"                     },
2032   { "conveyor_belt_4_left",                     "RocksDC.png"           },
2033   { "conveyor_belt_4_left.xpos",                "0"                     },
2034   { "conveyor_belt_4_left.ypos",                "10"                    },
2035   { "conveyor_belt_4_left.frames",              "1"                     },
2036   { "conveyor_belt_4_left.active",              "RocksDC.png"           },
2037   { "conveyor_belt_4_left.active.xpos",         "0"                     },
2038   { "conveyor_belt_4_left.active.ypos",         "10"                    },
2039   { "conveyor_belt_4_left.active.frames",       "8"                     },
2040   { "conveyor_belt_4_left.active.delay",        "2"                     },
2041   { "conveyor_belt_4_right",                    "RocksDC.png"           },
2042   { "conveyor_belt_4_right.xpos",               "0"                     },
2043   { "conveyor_belt_4_right.ypos",               "11"                    },
2044   { "conveyor_belt_4_right.frames",             "1"                     },
2045   { "conveyor_belt_4_right.active",             "RocksDC.png"           },
2046   { "conveyor_belt_4_right.active.xpos",        "0"                     },
2047   { "conveyor_belt_4_right.active.ypos",        "11"                    },
2048   { "conveyor_belt_4_right.active.frames",      "8"                     },
2049   { "conveyor_belt_4_right.active.delay",       "2"                     },
2050   { "conveyor_belt_4_switch_left",              "RocksDC.png"           },
2051   { "conveyor_belt_4_switch_left.xpos",         "3"                     },
2052   { "conveyor_belt_4_switch_left.ypos",         "12"                    },
2053   { "conveyor_belt_4_switch_left.frames",       "1"                     },
2054   { "conveyor_belt_4_switch_middle",            "RocksDC.png"           },
2055   { "conveyor_belt_4_switch_middle.xpos",       "3"                     },
2056   { "conveyor_belt_4_switch_middle.ypos",       "13"                    },
2057   { "conveyor_belt_4_switch_middle.frames",     "1"                     },
2058   { "conveyor_belt_4_switch_right",             "RocksDC.png"           },
2059   { "conveyor_belt_4_switch_right.xpos",        "3"                     },
2060   { "conveyor_belt_4_switch_right.ypos",        "14"                    },
2061   { "conveyor_belt_4_switch_right.frames",      "1"                     },
2062
2063   { "switchgate_switch_up",                     "RocksDC.png"           },
2064   { "switchgate_switch_up.xpos",                "4"                     },
2065   { "switchgate_switch_up.ypos",                "12"                    },
2066   { "switchgate_switch_up.frames",              "1"                     },
2067   { "switchgate_switch_down",                   "RocksDC.png"           },
2068   { "switchgate_switch_down.xpos",              "5"                     },
2069   { "switchgate_switch_down.ypos",              "12"                    },
2070   { "switchgate_switch_down.frames",            "1"                     },
2071
2072   { "dc_switchgate_switch_up",                  "RocksDC2.png"          },
2073   { "dc_switchgate_switch_up.xpos",             "10"                    },
2074   { "dc_switchgate_switch_up.ypos",             "1"                     },
2075   { "dc_switchgate_switch_up.frames",           "1"                     },
2076   { "dc_switchgate_switch_down",                "RocksDC2.png"          },
2077   { "dc_switchgate_switch_down.xpos",           "11"                    },
2078   { "dc_switchgate_switch_down.ypos",           "1"                     },
2079   { "dc_switchgate_switch_down.frames",         "1"                     },
2080
2081   { "light_switch",                             "RocksDC.png"           },
2082   { "light_switch.xpos",                        "6"                     },
2083   { "light_switch.ypos",                        "12"                    },
2084   { "light_switch.frames",                      "1"                     },
2085   { "light_switch.active",                      "RocksDC.png"           },
2086   { "light_switch.active.xpos",                 "7"                     },
2087   { "light_switch.active.ypos",                 "12"                    },
2088   { "light_switch.active.frames",               "1"                     },
2089
2090   { "timegate_switch",                          "RocksDC.png"           },
2091   { "timegate_switch.xpos",                     "0"                     },
2092   { "timegate_switch.ypos",                     "15"                    },
2093   { "timegate_switch.frames",                   "1"                     },
2094   { "timegate_switch.active",                   "RocksDC.png"           },
2095   { "timegate_switch.active.xpos",              "0"                     },
2096   { "timegate_switch.active.ypos",              "15"                    },
2097   { "timegate_switch.active.frames",            "4"                     },
2098
2099   { "dc_timegate_switch",                       "RocksDC2.png"          },
2100   { "dc_timegate_switch.xpos",                  "12"                    },
2101   { "dc_timegate_switch.ypos",                  "1"                     },
2102   { "dc_timegate_switch.frames",                "1"                     },
2103   { "dc_timegate_switch.active",                "RocksDC2.png"          },
2104   { "dc_timegate_switch.active.xpos",           "12"                    },
2105   { "dc_timegate_switch.active.ypos",           "1"                     },
2106   { "dc_timegate_switch.active.frames",         "4"                     },
2107
2108   { "envelope_1",                               "RocksMore.png"         },
2109   { "envelope_1.xpos",                          "0"                     },
2110   { "envelope_1.ypos",                          "4"                     },
2111   { "envelope_1.frames",                        "1"                     },
2112   { "envelope_1.collecting",                    "RocksMore.png"         },
2113   { "envelope_1.collecting.xpos",               "5"                     },
2114   { "envelope_1.collecting.ypos",               "4"                     },
2115   { "envelope_1.collecting.frames",             "3"                     },
2116   { "envelope_1.collecting.delay",              "2"                     },
2117   { "envelope_1.collecting.anim_mode",          "linear"                },
2118   { "envelope_2",                               "RocksMore.png"         },
2119   { "envelope_2.xpos",                          "1"                     },
2120   { "envelope_2.ypos",                          "4"                     },
2121   { "envelope_2.frames",                        "1"                     },
2122   { "envelope_2.collecting",                    "RocksMore.png"         },
2123   { "envelope_2.collecting.xpos",               "5"                     },
2124   { "envelope_2.collecting.ypos",               "4"                     },
2125   { "envelope_2.collecting.frames",             "3"                     },
2126   { "envelope_2.collecting.delay",              "2"                     },
2127   { "envelope_2.collecting.anim_mode",          "linear"                },
2128   { "envelope_3",                               "RocksMore.png"         },
2129   { "envelope_3.xpos",                          "2"                     },
2130   { "envelope_3.ypos",                          "4"                     },
2131   { "envelope_3.frames",                        "1"                     },
2132   { "envelope_3.collecting",                    "RocksMore.png"         },
2133   { "envelope_3.collecting.xpos",               "5"                     },
2134   { "envelope_3.collecting.ypos",               "4"                     },
2135   { "envelope_3.collecting.frames",             "3"                     },
2136   { "envelope_3.collecting.delay",              "2"                     },
2137   { "envelope_3.collecting.anim_mode",          "linear"                },
2138   { "envelope_4",                               "RocksMore.png"         },
2139   { "envelope_4.xpos",                          "3"                     },
2140   { "envelope_4.ypos",                          "4"                     },
2141   { "envelope_4.frames",                        "1"                     },
2142   { "envelope_4.collecting",                    "RocksMore.png"         },
2143   { "envelope_4.collecting.xpos",               "5"                     },
2144   { "envelope_4.collecting.ypos",               "4"                     },
2145   { "envelope_4.collecting.frames",             "3"                     },
2146   { "envelope_4.collecting.delay",              "2"                     },
2147   { "envelope_4.collecting.anim_mode",          "linear"                },
2148
2149   { "sign_radioactivity",                       "RocksDC.png"           },
2150   { "sign_radioactivity.xpos",                  "4"                     },
2151   { "sign_radioactivity.ypos",                  "13"                    },
2152   { "sign_radioactivity.frames",                "1"                     },
2153
2154   { "sign_give_way",                            "RocksDC.png"           },
2155   { "sign_give_way.xpos",                       "5"                     },
2156   { "sign_give_way.ypos",                       "13"                    },
2157   { "sign_give_way.frames",                     "1"                     },
2158
2159   { "sign_no_entry",                            "RocksDC.png"           },
2160   { "sign_no_entry.xpos",                       "6"                     },
2161   { "sign_no_entry.ypos",                       "13"                    },
2162   { "sign_no_entry.frames",                     "1"                     },
2163
2164   { "sign_emergency_exit",                      "RocksDC.png"           },
2165   { "sign_emergency_exit.xpos",                 "7"                     },
2166   { "sign_emergency_exit.ypos",                 "13"                    },
2167   { "sign_emergency_exit.frames",               "1"                     },
2168
2169   { "sign_yin_yang",                            "RocksDC.png"           },
2170   { "sign_yin_yang.xpos",                       "4"                     },
2171   { "sign_yin_yang.ypos",                       "14"                    },
2172   { "sign_yin_yang.frames",                     "1"                     },
2173
2174   { "sign_exclamation",                         "RocksDC.png"           },
2175   { "sign_exclamation.xpos",                    "5"                     },
2176   { "sign_exclamation.ypos",                    "14"                    },
2177   { "sign_exclamation.frames",                  "1"                     },
2178
2179   { "sign_stop",                                "RocksDC.png"           },
2180   { "sign_stop.xpos",                           "6"                     },
2181   { "sign_stop.ypos",                           "14"                    },
2182   { "sign_stop.frames",                         "1"                     },
2183
2184   { "sign_parking",                             "RocksDC.png"           },
2185   { "sign_parking.xpos",                        "6"                     },
2186   { "sign_parking.ypos",                        "15"                    },
2187   { "sign_parking.frames",                      "1"                     },
2188
2189   { "sign_wheelchair",                          "RocksDC.png"           },
2190   { "sign_wheelchair.xpos",                     "7"                     },
2191   { "sign_wheelchair.ypos",                     "15"                    },
2192   { "sign_wheelchair.frames",                   "1"                     },
2193
2194   { "sign_entry_forbidden",                     "RocksDC.png"           },
2195   { "sign_entry_forbidden.xpos",                "12"                    },
2196   { "sign_entry_forbidden.ypos",                "15"                    },
2197   { "sign_entry_forbidden.frames",              "1"                     },
2198
2199   { "sperms",                                   "RocksDC2.png"          },
2200   { "sperms.xpos",                              "11"                    },
2201   { "sperms.ypos",                              "3"                     },
2202   { "sperms.frames",                            "1"                     },
2203
2204   { "bullet",                                   "RocksDC2.png"          },
2205   { "bullet.xpos",                              "12"                    },
2206   { "bullet.ypos",                              "3"                     },
2207   { "bullet.frames",                            "1"                     },
2208
2209   { "heart",                                    "RocksDC2.png"          },
2210   { "heart.xpos",                               "13"                    },
2211   { "heart.ypos",                               "3"                     },
2212   { "heart.frames",                             "1"                     },
2213
2214   { "cross",                                    "RocksDC2.png"          },
2215   { "cross.xpos",                               "14"                    },
2216   { "cross.ypos",                               "3"                     },
2217   { "cross.frames",                             "1"                     },
2218
2219   { "frankie",                                  "RocksDC2.png"          },
2220   { "frankie.xpos",                             "15"                    },
2221   { "frankie.ypos",                             "3"                     },
2222   { "frankie.frames",                           "1"                     },
2223
2224   { "sign_sperms",                              "RocksDC2.png"          },
2225   { "sign_sperms.xpos",                         "11"                    },
2226   { "sign_sperms.ypos",                         "2"                     },
2227   { "sign_sperms.frames",                       "1"                     },
2228
2229   { "sign_bullet",                              "RocksDC2.png"          },
2230   { "sign_bullet.xpos",                         "12"                    },
2231   { "sign_bullet.ypos",                         "2"                     },
2232   { "sign_bullet.frames",                       "1"                     },
2233
2234   { "sign_heart",                               "RocksDC2.png"          },
2235   { "sign_heart.xpos",                          "13"                    },
2236   { "sign_heart.ypos",                          "2"                     },
2237   { "sign_heart.frames",                        "1"                     },
2238
2239   { "sign_cross",                               "RocksDC2.png"          },
2240   { "sign_cross.xpos",                          "14"                    },
2241   { "sign_cross.ypos",                          "2"                     },
2242   { "sign_cross.frames",                        "1"                     },
2243
2244   { "sign_frankie",                             "RocksDC2.png"          },
2245   { "sign_frankie.xpos",                        "15"                    },
2246   { "sign_frankie.ypos",                        "2"                     },
2247   { "sign_frankie.frames",                      "1"                     },
2248
2249   { "landmine",                                 "RocksDC.png"           },
2250   { "landmine.xpos",                            "7"                     },
2251   { "landmine.ypos",                            "14"                    },
2252   { "landmine.frames",                          "1"                     },
2253   { "landmine.crumbled_like",                   "sand"                  },
2254
2255   { "dc_landmine",                              "RocksDC.png"           },
2256   { "dc_landmine.xpos",                         "14"                    },
2257   { "dc_landmine.ypos",                         "5"                     },
2258   { "dc_landmine.frames",                       "1"                     },
2259   { "dc_landmine.crumbled_like",                "sand"                  },
2260
2261   { "steelwall_slippery",                       "RocksDC.png"           },
2262   { "steelwall_slippery.xpos",                  "5"                     },
2263   { "steelwall_slippery.ypos",                  "15"                    },
2264   { "steelwall_slippery.frames",                "1"                     },
2265
2266   { "extra_time",                               "RocksDC.png"           },
2267   { "extra_time.xpos",                          "8"                     },
2268   { "extra_time.ypos",                          "0"                     },
2269   { "extra_time.frames",                        "6"                     },
2270   { "extra_time.delay",                         "4"                     },
2271
2272   { "shield_normal",                            "RocksDC.png"           },
2273   { "shield_normal.xpos",                       "8"                     },
2274   { "shield_normal.ypos",                       "2"                     },
2275   { "shield_normal.frames",                     "6"                     },
2276   { "shield_normal.delay",                      "4"                     },
2277   { "shield_normal.active",                     "RocksHeroes.png"       },
2278   { "shield_normal.active.xpos",                "1"                     },
2279   { "shield_normal.active.ypos",                "13"                    },
2280   { "shield_normal.active.frames",              "3"                     },
2281   { "shield_normal.active.delay",               "8"                     },
2282   { "shield_normal.active.anim_mode",           "pingpong"              },
2283
2284   { "shield_deadly",                            "RocksDC.png"           },
2285   { "shield_deadly.xpos",                       "8"                     },
2286   { "shield_deadly.ypos",                       "1"                     },
2287   { "shield_deadly.frames",                     "6"                     },
2288   { "shield_deadly.delay",                      "4"                     },
2289   { "shield_deadly.active",                     "RocksHeroes.png"       },
2290   { "shield_deadly.active.xpos",                "5"                     },
2291   { "shield_deadly.active.ypos",                "13"                    },
2292   { "shield_deadly.active.frames",              "3"                     },
2293   { "shield_deadly.active.delay",               "8"                     },
2294   { "shield_deadly.active.anim_mode",           "pingpong"              },
2295
2296   { "switchgate_closed",                        "RocksDC.png"           },
2297   { "switchgate_closed.xpos",                   "8"                     },
2298   { "switchgate_closed.ypos",                   "5"                     },
2299   { "switchgate_closed.frames",                 "1"                     },
2300   { "switchgate.opening",                       "RocksDC.png"           },
2301   { "switchgate.opening.xpos",                  "8"                     },
2302   { "switchgate.opening.ypos",                  "5"                     },
2303   { "switchgate.opening.frames",                "5"                     },
2304   { "switchgate.opening.delay",                 "6"                     },
2305   { "switchgate_open",                          "RocksDC.png"           },
2306   { "switchgate_open.xpos",                     "12"                    },
2307   { "switchgate_open.ypos",                     "5"                     },
2308   { "switchgate_open.frames",                   "1"                     },
2309   { "switchgate.closing",                       "RocksDC.png"           },
2310   { "switchgate.closing.xpos",                  "8"                     },
2311   { "switchgate.closing.ypos",                  "5"                     },
2312   { "switchgate.closing.frames",                "5"                     },
2313   { "switchgate.closing.delay",                 "6"                     },
2314   { "switchgate.closing.anim_mode",             "reverse"               },
2315
2316   { "timegate_closed",                          "RocksDC.png"           },
2317   { "timegate_closed.xpos",                     "8"                     },
2318   { "timegate_closed.ypos",                     "6"                     },
2319   { "timegate_closed.frames",                   "1"                     },
2320   { "timegate.opening",                         "RocksDC.png"           },
2321   { "timegate.opening.xpos",                    "8"                     },
2322   { "timegate.opening.ypos",                    "6"                     },
2323   { "timegate.opening.frames",                  "5"                     },
2324   { "timegate.opening.delay",                   "6"                     },
2325   { "timegate_open",                            "RocksDC.png"           },
2326   { "timegate_open.xpos",                       "12"                    },
2327   { "timegate_open.ypos",                       "6"                     },
2328   { "timegate_open.frames",                     "1"                     },
2329   { "timegate.closing",                         "RocksDC.png"           },
2330   { "timegate.closing.xpos",                    "8"                     },
2331   { "timegate.closing.ypos",                    "6"                     },
2332   { "timegate.closing.frames",                  "5"                     },
2333   { "timegate.closing.delay",                   "6"                     },
2334   { "timegate.closing.anim_mode",               "reverse"               },
2335
2336   { "pearl",                                    "RocksDC.png"           },
2337   { "pearl.xpos",                               "8"                     },
2338   { "pearl.ypos",                               "11"                    },
2339   { "pearl.frames",                             "1"                     },
2340   { "pearl.breaking",                           "RocksDC.png"           },
2341   { "pearl.breaking.xpos",                      "8"                     },
2342   { "pearl.breaking.ypos",                      "12"                    },
2343   { "pearl.breaking.frames",                    "4"                     },
2344   { "pearl.breaking.delay",                     "2"                     },
2345   { "pearl.breaking.anim_mode",                 "linear"                },
2346
2347   { "crystal",                                  "RocksDC.png"           },
2348   { "crystal.xpos",                             "9"                     },
2349   { "crystal.ypos",                             "11"                    },
2350   { "crystal.frames",                           "1"                     },
2351
2352   { "wall_pearl",                               "RocksDC.png"           },
2353   { "wall_pearl.xpos",                          "10"                    },
2354   { "wall_pearl.ypos",                          "11"                    },
2355   { "wall_pearl.frames",                        "1"                     },
2356
2357   { "wall_crystal",                             "RocksDC.png"           },
2358   { "wall_crystal.xpos",                        "11"                    },
2359   { "wall_crystal.ypos",                        "11"                    },
2360   { "wall_crystal.frames",                      "1"                     },
2361
2362   { "dc_steelwall_1_left",                      "RocksDC2.png"          },
2363   { "dc_steelwall_1_left.xpos",                 "5"                     },
2364   { "dc_steelwall_1_left.ypos",                 "1"                     },
2365   { "dc_steelwall_1_left.frames",               "1"                     },
2366   { "dc_steelwall_1_right",                     "RocksDC2.png"          },
2367   { "dc_steelwall_1_right.xpos",                "3"                     },
2368   { "dc_steelwall_1_right.ypos",                "1"                     },
2369   { "dc_steelwall_1_right.frames",              "1"                     },
2370   { "dc_steelwall_1_top",                       "RocksDC2.png"          },
2371   { "dc_steelwall_1_top.xpos",                  "4"                     },
2372   { "dc_steelwall_1_top.ypos",                  "2"                     },
2373   { "dc_steelwall_1_top.frames",                "1"                     },
2374   { "dc_steelwall_1_bottom",                    "RocksDC2.png"          },
2375   { "dc_steelwall_1_bottom.xpos",               "4"                     },
2376   { "dc_steelwall_1_bottom.ypos",               "0"                     },
2377   { "dc_steelwall_1_bottom.frames",             "1"                     },
2378   { "dc_steelwall_1_horizontal",                "RocksDC2.png"          },
2379   { "dc_steelwall_1_horizontal.xpos",           "1"                     },
2380   { "dc_steelwall_1_horizontal.ypos",           "0"                     },
2381   { "dc_steelwall_1_horizontal.frames",         "1"                     },
2382   { "dc_steelwall_1_vertical",                  "RocksDC2.png"          },
2383   { "dc_steelwall_1_vertical.xpos",             "0"                     },
2384   { "dc_steelwall_1_vertical.ypos",             "1"                     },
2385   { "dc_steelwall_1_vertical.frames",           "1"                     },
2386   { "dc_steelwall_1_topleft",                   "RocksDC2.png"          },
2387   { "dc_steelwall_1_topleft.xpos",              "0"                     },
2388   { "dc_steelwall_1_topleft.ypos",              "0"                     },
2389   { "dc_steelwall_1_topleft.frames",            "1"                     },
2390   { "dc_steelwall_1_topright",                  "RocksDC2.png"          },
2391   { "dc_steelwall_1_topright.xpos",             "2"                     },
2392   { "dc_steelwall_1_topright.ypos",             "0"                     },
2393   { "dc_steelwall_1_topright.frames",           "1"                     },
2394   { "dc_steelwall_1_bottomleft",                "RocksDC2.png"          },
2395   { "dc_steelwall_1_bottomleft.xpos",           "0"                     },
2396   { "dc_steelwall_1_bottomleft.ypos",           "2"                     },
2397   { "dc_steelwall_1_bottomleft.frames",         "1"                     },
2398   { "dc_steelwall_1_bottomright",               "RocksDC2.png"          },
2399   { "dc_steelwall_1_bottomright.xpos",          "2"                     },
2400   { "dc_steelwall_1_bottomright.ypos",          "2"                     },
2401   { "dc_steelwall_1_bottomright.frames",        "1"                     },
2402   { "dc_steelwall_1_topleft_2",                 "RocksDC2.png"          },
2403   { "dc_steelwall_1_topleft_2.xpos",            "5"                     },
2404   { "dc_steelwall_1_topleft_2.ypos",            "2"                     },
2405   { "dc_steelwall_1_topleft_2.frames",          "1"                     },
2406   { "dc_steelwall_1_topright_2",                "RocksDC2.png"          },
2407   { "dc_steelwall_1_topright_2.xpos",           "3"                     },
2408   { "dc_steelwall_1_topright_2.ypos",           "2"                     },
2409   { "dc_steelwall_1_topright_2.frames",         "1"                     },
2410   { "dc_steelwall_1_bottomleft_2",              "RocksDC2.png"          },
2411   { "dc_steelwall_1_bottomleft_2.xpos",         "5"                     },
2412   { "dc_steelwall_1_bottomleft_2.ypos",         "0"                     },
2413   { "dc_steelwall_1_bottomleft_2.frames",       "1"                     },
2414   { "dc_steelwall_1_bottomright_2",             "RocksDC2.png"          },
2415   { "dc_steelwall_1_bottomright_2.xpos",        "3"                     },
2416   { "dc_steelwall_1_bottomright_2.ypos",        "0"                     },
2417   { "dc_steelwall_1_bottomright_2.frames",      "1"                     },
2418
2419   { "dc_steelwall_2_left",                      "RocksDC2.png"          },
2420   { "dc_steelwall_2_left.xpos",                 "6"                     },
2421   { "dc_steelwall_2_left.ypos",                 "1"                     },
2422   { "dc_steelwall_2_left.frames",               "1"                     },
2423   { "dc_steelwall_2_right",                     "RocksDC2.png"          },
2424   { "dc_steelwall_2_right.xpos",                "9"                     },
2425   { "dc_steelwall_2_right.ypos",                "1"                     },
2426   { "dc_steelwall_2_right.frames",              "1"                     },
2427   { "dc_steelwall_2_top",                       "RocksDC2.png"          },
2428   { "dc_steelwall_2_top.xpos",                  "7"                     },
2429   { "dc_steelwall_2_top.ypos",                  "0"                     },
2430   { "dc_steelwall_2_top.frames",                "1"                     },
2431   { "dc_steelwall_2_bottom",                    "RocksDC2.png"          },
2432   { "dc_steelwall_2_bottom.xpos",               "7"                     },
2433   { "dc_steelwall_2_bottom.ypos",               "3"                     },
2434   { "dc_steelwall_2_bottom.frames",             "1"                     },
2435   { "dc_steelwall_2_horizontal",                "RocksDC2.png"          },
2436   { "dc_steelwall_2_horizontal.xpos",           "8"                     },
2437   { "dc_steelwall_2_horizontal.ypos",           "1"                     },
2438   { "dc_steelwall_2_horizontal.frames",         "1"                     },
2439   { "dc_steelwall_2_vertical",                  "RocksDC2.png"          },
2440   { "dc_steelwall_2_vertical.xpos",             "7"                     },
2441   { "dc_steelwall_2_vertical.ypos",             "2"                     },
2442   { "dc_steelwall_2_vertical.frames",           "1"                     },
2443   { "dc_steelwall_2_middle",                    "RocksDC2.png"          },
2444   { "dc_steelwall_2_middle.xpos",               "7"                     },
2445   { "dc_steelwall_2_middle.ypos",               "1"                     },
2446   { "dc_steelwall_2_middle.frames",             "1"                     },
2447   { "dc_steelwall_2_single",                    "RocksDC2.png"          },
2448   { "dc_steelwall_2_single.xpos",               "6"                     },
2449   { "dc_steelwall_2_single.ypos",               "0"                     },
2450   { "dc_steelwall_2_single.frames",             "1"                     },
2451
2452   // images for DX Boulderdash style elements and actions
2453
2454   { "tube_right_down",                          "RocksDC.png"           },
2455   { "tube_right_down.xpos",                     "9"                     },
2456   { "tube_right_down.ypos",                     "13"                    },
2457   { "tube_right_down.frames",                   "1"                     },
2458
2459   { "tube_horizontal_down",                     "RocksDC.png"           },
2460   { "tube_horizontal_down.xpos",                "10"                    },
2461   { "tube_horizontal_down.ypos",                "13"                    },
2462   { "tube_horizontal_down.frames",              "1"                     },
2463
2464   { "tube_left_down",                           "RocksDC.png"           },
2465   { "tube_left_down.xpos",                      "11"                    },
2466   { "tube_left_down.ypos",                      "13"                    },
2467   { "tube_left_down.frames",                    "1"                     },
2468
2469   { "tube_horizontal",                          "RocksDC.png"           },
2470   { "tube_horizontal.xpos",                     "8"                     },
2471   { "tube_horizontal.ypos",                     "14"                    },
2472   { "tube_horizontal.frames",                   "1"                     },
2473
2474   { "tube_vertical_right",                      "RocksDC.png"           },
2475   { "tube_vertical_right.xpos",                 "9"                     },
2476   { "tube_vertical_right.ypos",                 "14"                    },
2477   { "tube_vertical_right.frames",               "1"                     },
2478
2479   { "tube_any",                                 "RocksDC.png"           },
2480   { "tube_any.xpos",                            "10"                    },
2481   { "tube_any.ypos",                            "14"                    },
2482   { "tube_any.frames",                          "1"                     },
2483
2484   { "tube_vertical_left",                       "RocksDC.png"           },
2485   { "tube_vertical_left.xpos",                  "11"                    },
2486   { "tube_vertical_left.ypos",                  "14"                    },
2487   { "tube_vertical_left.frames",                "1"                     },
2488
2489   { "tube_vertical",                            "RocksDC.png"           },
2490   { "tube_vertical.xpos",                       "8"                     },
2491   { "tube_vertical.ypos",                       "15"                    },
2492   { "tube_vertical.frames",                     "1"                     },
2493
2494   { "tube_right_up",                            "RocksDC.png"           },
2495   { "tube_right_up.xpos",                       "9"                     },
2496   { "tube_right_up.ypos",                       "15"                    },
2497   { "tube_right_up.frames",                     "1"                     },
2498
2499   { "tube_horizontal_up",                       "RocksDC.png"           },
2500   { "tube_horizontal_up.xpos",                  "10"                    },
2501   { "tube_horizontal_up.ypos",                  "15"                    },
2502   { "tube_horizontal_up.frames",                "1"                     },
2503
2504   { "tube_left_up",                             "RocksDC.png"           },
2505   { "tube_left_up.xpos",                        "11"                    },
2506   { "tube_left_up.ypos",                        "15"                    },
2507   { "tube_left_up.frames",                      "1"                     },
2508
2509   { "trap",                                     "RocksDC.png"           },
2510   { "trap.xpos",                                "12"                    },
2511   { "trap.ypos",                                "8"                     },
2512   { "trap.frames",                              "1"                     },
2513   { "trap.crumbled_like",                       "sand"                  },
2514   { "trap.diggable_like",                       "sand"                  },
2515   { "trap.active",                              "RocksDC.png"           },
2516   { "trap.active.xpos",                         "12"                    },
2517   { "trap.active.ypos",                         "8"                     },
2518   { "trap.active.frames",                       "4"                     },
2519   { "trap.active.delay",                        "4"                     },
2520   { "trap.active.anim_mode",                    "pingpong2"             },
2521   { "trap.active.crumbled_like",                "sand"                  },
2522
2523   { "dx_supabomb",                              "RocksDC.png"           },
2524   { "dx_supabomb.xpos",                         "15"                    },
2525   { "dx_supabomb.ypos",                         "9"                     },
2526   { "dx_supabomb.frames",                       "1"                     },
2527
2528   // images for Rocks'n'Diamonds style elements and actions
2529
2530   { "key_1",                                    "RocksElements.png"     },
2531   { "key_1.xpos",                               "4"                     },
2532   { "key_1.ypos",                               "1"                     },
2533   { "key_1.frames",                             "1"                     },
2534   { "key_2",                                    "RocksElements.png"     },
2535   { "key_2.xpos",                               "5"                     },
2536   { "key_2.ypos",                               "1"                     },
2537   { "key_2.frames",                             "1"                     },
2538   { "key_3",                                    "RocksElements.png"     },
2539   { "key_3.xpos",                               "6"                     },
2540   { "key_3.ypos",                               "1"                     },
2541   { "key_3.frames",                             "1"                     },
2542   { "key_4",                                    "RocksElements.png"     },
2543   { "key_4.xpos",                               "7"                     },
2544   { "key_4.ypos",                               "1"                     },
2545   { "key_4.frames",                             "1"                     },
2546
2547   { "gate_1",                                   "RocksElements.png"     },
2548   { "gate_1.xpos",                              "4"                     },
2549   { "gate_1.ypos",                              "2"                     },
2550   { "gate_1.frames",                            "1"                     },
2551   { "gate_2",                                   "RocksElements.png"     },
2552   { "gate_2.xpos",                              "5"                     },
2553   { "gate_2.ypos",                              "2"                     },
2554   { "gate_2.frames",                            "1"                     },
2555   { "gate_3",                                   "RocksElements.png"     },
2556   { "gate_3.xpos",                              "6"                     },
2557   { "gate_3.ypos",                              "2"                     },
2558   { "gate_3.frames",                            "1"                     },
2559   { "gate_4",                                   "RocksElements.png"     },
2560   { "gate_4.xpos",                              "7"                     },
2561   { "gate_4.ypos",                              "2"                     },
2562   { "gate_4.frames",                            "1"                     },
2563   { "gate_1_gray",                              "RocksElements.png"     },
2564   { "gate_1_gray.xpos",                         "8"                     },
2565   { "gate_1_gray.ypos",                         "2"                     },
2566   { "gate_1_gray.frames",                       "1"                     },
2567   { "gate_1_gray.EDITOR",                       "RocksElements.png"     },
2568   { "gate_1_gray.EDITOR.xpos",                  "8"                     },
2569   { "gate_1_gray.EDITOR.ypos",                  "14"                    },
2570   { "gate_1_gray.active",                       "RocksElements.png"     },
2571   { "gate_1_gray.active.xpos",                  "4"                     },
2572   { "gate_1_gray.active.ypos",                  "2"                     },
2573   { "gate_1_gray.active.frames",                "1"                     },
2574   { "gate_2_gray",                              "RocksElements.png"     },
2575   { "gate_2_gray.xpos",                         "9"                     },
2576   { "gate_2_gray.ypos",                         "2"                     },
2577   { "gate_2_gray.frames",                       "1"                     },
2578   { "gate_2_gray.EDITOR",                       "RocksElements.png"     },
2579   { "gate_2_gray.EDITOR.xpos",                  "9"                     },
2580   { "gate_2_gray.EDITOR.ypos",                  "14"                    },
2581   { "gate_2_gray.active",                       "RocksElements.png"     },
2582   { "gate_2_gray.active.xpos",                  "5"                     },
2583   { "gate_2_gray.active.ypos",                  "2"                     },
2584   { "gate_2_gray.active.frames",                "1"                     },
2585   { "gate_3_gray",                              "RocksElements.png"     },
2586   { "gate_3_gray.xpos",                         "10"                    },
2587   { "gate_3_gray.ypos",                         "2"                     },
2588   { "gate_3_gray.frames",                       "1"                     },
2589   { "gate_3_gray.EDITOR",                       "RocksElements.png"     },
2590   { "gate_3_gray.EDITOR.xpos",                  "10"                    },
2591   { "gate_3_gray.EDITOR.ypos",                  "14"                    },
2592   { "gate_3_gray.active",                       "RocksElements.png"     },
2593   { "gate_3_gray.active.xpos",                  "6"                     },
2594   { "gate_3_gray.active.ypos",                  "2"                     },
2595   { "gate_3_gray.active.frames",                "1"                     },
2596   { "gate_4_gray",                              "RocksElements.png"     },
2597   { "gate_4_gray.xpos",                         "11"                    },
2598   { "gate_4_gray.ypos",                         "2"                     },
2599   { "gate_4_gray.frames",                       "1"                     },
2600   { "gate_4_gray.EDITOR",                       "RocksElements.png"     },
2601   { "gate_4_gray.EDITOR.xpos",                  "11"                    },
2602   { "gate_4_gray.EDITOR.ypos",                  "14"                    },
2603   { "gate_4_gray.active",                       "RocksElements.png"     },
2604   { "gate_4_gray.active.xpos",                  "7"                     },
2605   { "gate_4_gray.active.ypos",                  "2"                     },
2606   { "gate_4_gray.active.frames",                "1"                     },
2607
2608   { "game_of_life",                             "RocksElements.png"     },
2609   { "game_of_life.xpos",                        "8"                     },
2610   { "game_of_life.ypos",                        "1"                     },
2611   { "game_of_life.frames",                      "1"                     },
2612
2613   { "biomaze",                                  "RocksElements.png"     },
2614   { "biomaze.xpos",                             "9"                     },
2615   { "biomaze.ypos",                             "1"                     },
2616   { "biomaze.frames",                           "1"                     },
2617
2618   { "pacman",                                   "RocksElements.png"     },
2619   { "pacman.xpos",                              "8"                     },
2620   { "pacman.ypos",                              "5"                     },
2621   { "pacman.frames",                            "1"                     },
2622   { "pacman.right",                             "RocksElements.png"     },
2623   { "pacman.right.xpos",                        "8"                     },
2624   { "pacman.right.ypos",                        "5"                     },
2625   { "pacman.right.frames",                      "2"                     },
2626   { "pacman.right.delay",                       "4"                     },
2627   { "pacman.right.offset",                      "128"                   },
2628   { "pacman.up",                                "RocksElements.png"     },
2629   { "pacman.up.xpos",                           "9"                     },
2630   { "pacman.up.ypos",                           "5"                     },
2631   { "pacman.up.frames",                         "2"                     },
2632   { "pacman.up.delay",                          "4"                     },
2633   { "pacman.up.offset",                         "128"                   },
2634   { "pacman.left",                              "RocksElements.png"     },
2635   { "pacman.left.xpos",                         "10"                    },
2636   { "pacman.left.ypos",                         "5"                     },
2637   { "pacman.left.frames",                       "2"                     },
2638   { "pacman.left.delay",                        "4"                     },
2639   { "pacman.left.offset",                       "128"                   },
2640   { "pacman.down",                              "RocksElements.png"     },
2641   { "pacman.down.xpos",                         "11"                    },
2642   { "pacman.down.ypos",                         "5"                     },
2643   { "pacman.down.frames",                       "2"                     },
2644   { "pacman.down.delay",                        "4"                     },
2645   { "pacman.down.offset",                       "128"                   },
2646   { "pacman.turning_from_right",                "RocksElements.png"     },
2647   { "pacman.turning_from_right.xpos",           "12"                    },
2648   { "pacman.turning_from_right.ypos",           "5"                     },
2649   { "pacman.turning_from_right.frames",         "1"                     },
2650   { "pacman.turning_from_up",                   "RocksElements.png"     },
2651   { "pacman.turning_from_up.xpos",              "13"                    },
2652   { "pacman.turning_from_up.ypos",              "5"                     },
2653   { "pacman.turning_from_up.frames",            "1"                     },
2654   { "pacman.turning_from_left",                 "RocksElements.png"     },
2655   { "pacman.turning_from_left.xpos",            "14"                    },
2656   { "pacman.turning_from_left.ypos",            "5"                     },
2657   { "pacman.turning_from_left.frames",          "1"                     },
2658   { "pacman.turning_from_down",                 "RocksElements.png"     },
2659   { "pacman.turning_from_down.xpos",            "15"                    },
2660   { "pacman.turning_from_down.ypos",            "5"                     },
2661   { "pacman.turning_from_down.frames",          "1"                     },
2662
2663   { "lamp",                                     "RocksElements.png"     },
2664   { "lamp.xpos",                                "0"                     },
2665   { "lamp.ypos",                                "7"                     },
2666   { "lamp.frames",                              "1"                     },
2667   { "lamp.active",                              "RocksElements.png"     },
2668   { "lamp.active.xpos",                         "1"                     },
2669   { "lamp.active.ypos",                         "7"                     },
2670   { "lamp.active.frames",                       "1"                     },
2671
2672   { "time_orb_full",                            "RocksElements.png"     },
2673   { "time_orb_full.xpos",                       "2"                     },
2674   { "time_orb_full.ypos",                       "7"                     },
2675   { "time_orb_full.frames",                     "1"                     },
2676   { "time_orb_empty",                           "RocksElements.png"     },
2677   { "time_orb_empty.xpos",                      "3"                     },
2678   { "time_orb_empty.ypos",                      "7"                     },
2679   { "time_orb_empty.frames",                    "1"                     },
2680
2681   { "emerald_yellow",                           "RocksElements.png"     },
2682   { "emerald_yellow.xpos",                      "10"                    },
2683   { "emerald_yellow.ypos",                      "8"                     },
2684   { "emerald_yellow.frames",                    "1"                     },
2685   { "emerald_yellow.moving",                    "RocksElements.png"     },
2686   { "emerald_yellow.moving.xpos",               "10"                    },
2687   { "emerald_yellow.moving.ypos",               "8"                     },
2688   { "emerald_yellow.moving.frames",             "2"                     },
2689   { "emerald_yellow.moving.delay",              "4"                     },
2690   { "emerald_yellow.falling",                   "RocksElements.png"     },
2691   { "emerald_yellow.falling.xpos",              "10"                    },
2692   { "emerald_yellow.falling.ypos",              "8"                     },
2693   { "emerald_yellow.falling.frames",            "2"                     },
2694   { "emerald_yellow.falling.delay",             "4"                     },
2695   { "emerald_red",                              "RocksElements.png"     },
2696   { "emerald_red.xpos",                         "8"                     },
2697   { "emerald_red.ypos",                         "9"                     },
2698   { "emerald_red.frames",                       "1"                     },
2699   { "emerald_red.moving",                       "RocksElements.png"     },
2700   { "emerald_red.moving.xpos",                  "8"                     },
2701   { "emerald_red.moving.ypos",                  "9"                     },
2702   { "emerald_red.moving.frames",                "2"                     },
2703   { "emerald_red.moving.delay",                 "4"                     },
2704   { "emerald_red.falling",                      "RocksElements.png"     },
2705   { "emerald_red.falling.xpos",                 "8"                     },
2706   { "emerald_red.falling.ypos",                 "9"                     },
2707   { "emerald_red.falling.frames",               "2"                     },
2708   { "emerald_red.falling.delay",                "4"                     },
2709   { "emerald_purple",                           "RocksElements.png"     },
2710   { "emerald_purple.xpos",                      "10"                    },
2711   { "emerald_purple.ypos",                      "9"                     },
2712   { "emerald_purple.frames",                    "1"                     },
2713   { "emerald_purple.moving",                    "RocksElements.png"     },
2714   { "emerald_purple.moving.xpos",               "10"                    },
2715   { "emerald_purple.moving.ypos",               "9"                     },
2716   { "emerald_purple.moving.frames",             "2"                     },
2717   { "emerald_purple.moving.delay",              "4"                     },
2718   { "emerald_purple.falling",                   "RocksElements.png"     },
2719   { "emerald_purple.falling.xpos",              "10"                    },
2720   { "emerald_purple.falling.ypos",              "9"                     },
2721   { "emerald_purple.falling.frames",            "2"                     },
2722   { "emerald_purple.falling.delay",             "4"                     },
2723
2724   { "wall_emerald_yellow",                      "RocksElements.png"     },
2725   { "wall_emerald_yellow.xpos",                 "8"                     },
2726   { "wall_emerald_yellow.ypos",                 "8"                     },
2727   { "wall_emerald_yellow.frames",               "1"                     },
2728   { "wall_emerald_red",                         "RocksElements.png"     },
2729   { "wall_emerald_red.xpos",                    "6"                     },
2730   { "wall_emerald_red.ypos",                    "8"                     },
2731   { "wall_emerald_red.frames",                  "1"                     },
2732   { "wall_emerald_purple",                      "RocksElements.png"     },
2733   { "wall_emerald_purple.xpos",                 "7"                     },
2734   { "wall_emerald_purple.ypos",                 "8"                     },
2735   { "wall_emerald_purple.frames",               "1"                     },
2736   { "wall_bd_diamond",                          "RocksElements.png"     },
2737   { "wall_bd_diamond.xpos",                     "9"                     },
2738   { "wall_bd_diamond.ypos",                     "8"                     },
2739   { "wall_bd_diamond.frames",                   "1"                     },
2740
2741   { "expandable_wall",                          "RocksElements.png"     },
2742   { "expandable_wall.xpos",                     "11"                    },
2743   { "expandable_wall.ypos",                     "10"                    },
2744   { "expandable_wall.frames",                   "1"                     },
2745   { "expandable_wall_horizontal",               "RocksElements.png"     },
2746   { "expandable_wall_horizontal.xpos",          "5"                     },
2747   { "expandable_wall_horizontal.ypos",          "9"                     },
2748   { "expandable_wall_horizontal.frames",        "1"                     },
2749   { "expandable_wall_horizontal.EDITOR",        "RocksElements.png"     },
2750   { "expandable_wall_horizontal.EDITOR.xpos",   "13"                    },
2751   { "expandable_wall_horizontal.EDITOR.ypos",   "13"                    },
2752   { "expandable_wall_vertical",                 "RocksElements.png"     },
2753   { "expandable_wall_vertical.xpos",            "6"                     },
2754   { "expandable_wall_vertical.ypos",            "9"                     },
2755   { "expandable_wall_vertical.frames",          "1"                     },
2756   { "expandable_wall_vertical.EDITOR",          "RocksElements.png"     },
2757   { "expandable_wall_vertical.EDITOR.xpos",     "14"                    },
2758   { "expandable_wall_vertical.EDITOR.ypos",     "13"                    },
2759   { "expandable_wall_any",                      "RocksElements.png"     },
2760   { "expandable_wall_any.xpos",                 "4"                     },
2761   { "expandable_wall_any.ypos",                 "9"                     },
2762   { "expandable_wall_any.frames",               "1"                     },
2763   { "expandable_wall_any.EDITOR",               "RocksElements.png"     },
2764   { "expandable_wall_any.EDITOR.xpos",          "12"                    },
2765   { "expandable_wall_any.EDITOR.ypos",          "13"                    },
2766
2767   { "expandable_steelwall_horizontal",          "RocksDC2.png"          },
2768   { "expandable_steelwall_horizontal.xpos",     "6"                     },
2769   { "expandable_steelwall_horizontal.ypos",     "2"                     },
2770   { "expandable_steelwall_horizontal.frames",   "1"                     },
2771   { "expandable_steelwall_horizontal.EDITOR",   "RocksDC2.png"          },
2772   { "expandable_steelwall_horizontal.EDITOR.xpos","9"                   },
2773   { "expandable_steelwall_horizontal.EDITOR.ypos","2"                   },
2774   { "expandable_steelwall_vertical",            "RocksDC2.png"          },
2775   { "expandable_steelwall_vertical.xpos",       "6"                     },
2776   { "expandable_steelwall_vertical.ypos",       "2"                     },
2777   { "expandable_steelwall_vertical.frames",     "1"                     },
2778   { "expandable_steelwall_vertical.EDITOR",     "RocksDC2.png"          },
2779   { "expandable_steelwall_vertical.EDITOR.xpos","10"                    },
2780   { "expandable_steelwall_vertical.EDITOR.ypos","2"                     },
2781   { "expandable_steelwall_any",                 "RocksDC2.png"          },
2782   { "expandable_steelwall_any.xpos",            "6"                     },
2783   { "expandable_steelwall_any.ypos",            "2"                     },
2784   { "expandable_steelwall_any.frames",          "1"                     },
2785   { "expandable_steelwall_any.EDITOR",          "RocksDC2.png"          },
2786   { "expandable_steelwall_any.EDITOR.xpos",     "8"                     },
2787   { "expandable_steelwall_any.EDITOR.ypos",     "2"                     },
2788
2789   { "bd_expandable_wall",                       "RocksElements.png"     },
2790   { "bd_expandable_wall.xpos",                  "5"                     },
2791   { "bd_expandable_wall.ypos",                  "9"                     },
2792   { "bd_expandable_wall.frames",                "1"                     },
2793   { "bd_expandable_wall.EDITOR",                "RocksDC.png"           },
2794   { "bd_expandable_wall.EDITOR.xpos",           "15"                    },
2795   { "bd_expandable_wall.EDITOR.ypos",           "15"                    },
2796
2797   { "expandable_wall.growing.left",             "RocksElements.png"     },
2798   { "expandable_wall.growing.left.xpos",        "8"                     },
2799   { "expandable_wall.growing.left.ypos",        "10"                    },
2800   { "expandable_wall.growing.left.frames",      "3"                     },
2801   { "expandable_wall.growing.left.delay",       "6"                     },
2802   { "expandable_wall.growing.left.anim_mode",   "linear"                },
2803   { "expandable_wall.growing.right",            "RocksElements.png"     },
2804   { "expandable_wall.growing.right.xpos",       "5"                     },
2805   { "expandable_wall.growing.right.ypos",       "10"                    },
2806   { "expandable_wall.growing.right.frames",     "3"                     },
2807   { "expandable_wall.growing.right.delay",      "6"                     },
2808   { "expandable_wall.growing.right.anim_mode",  "linear"                },
2809   { "expandable_wall.growing.up",               "RocksHeroes.png"       },
2810   { "expandable_wall.growing.up.xpos",          "3"                     },
2811   { "expandable_wall.growing.up.ypos",          "12"                    },
2812   { "expandable_wall.growing.up.frames",        "3"                     },
2813   { "expandable_wall.growing.up.delay",         "6"                     },
2814   { "expandable_wall.growing.up.anim_mode",     "linear"                },
2815   { "expandable_wall.growing.down",             "RocksHeroes.png"       },
2816   { "expandable_wall.growing.down.xpos",        "0"                     },
2817   { "expandable_wall.growing.down.ypos",        "12"                    },
2818   { "expandable_wall.growing.down.frames",      "3"                     },
2819   { "expandable_wall.growing.down.delay",       "6"                     },
2820   { "expandable_wall.growing.down.anim_mode",   "linear"                },
2821
2822   { "expandable_steelwall.growing.left",        "RocksDC2.png"          },
2823   { "expandable_steelwall.growing.left.xpos",   "8"                     },
2824   { "expandable_steelwall.growing.left.ypos",   "4"                     },
2825   { "expandable_steelwall.growing.left.frames", "4"                     },
2826   { "expandable_steelwall.growing.left.delay",  "4"                     },
2827   { "expandable_steelwall.growing.left.anim_mode","linear"              },
2828   { "expandable_steelwall.growing.right",       "RocksDC2.png"          },
2829   { "expandable_steelwall.growing.right.xpos",  "12"                    },
2830   { "expandable_steelwall.growing.right.ypos",  "4"                     },
2831   { "expandable_steelwall.growing.right.frames","4"                     },
2832   { "expandable_steelwall.growing.right.delay", "4"                     },
2833   { "expandable_steelwall.growing.right.anim_mode","linear"             },
2834   { "expandable_steelwall.growing.up",          "RocksDC2.png"          },
2835   { "expandable_steelwall.growing.up.xpos",     "8"                     },
2836   { "expandable_steelwall.growing.up.ypos",     "5"                     },
2837   { "expandable_steelwall.growing.up.frames",   "4"                     },
2838   { "expandable_steelwall.growing.up.delay",    "4"                     },
2839   { "expandable_steelwall.growing.up.anim_mode","linear"                },
2840   { "expandable_steelwall.growing.down",        "RocksDC2.png"          },
2841   { "expandable_steelwall.growing.down.xpos",   "12"                    },
2842   { "expandable_steelwall.growing.down.ypos",   "5"                     },
2843   { "expandable_steelwall.growing.down.frames", "4"                     },
2844   { "expandable_steelwall.growing.down.delay",  "4"                     },
2845   { "expandable_steelwall.growing.down.anim_mode","linear"              },
2846
2847   { "black_orb",                                "RocksElements.png"     },
2848   { "black_orb.xpos",                           "13"                    },
2849   { "black_orb.ypos",                           "9"                     },
2850   { "black_orb.frames",                         "1"                     },
2851
2852   { "speed_pill",                               "RocksElements.png"     },
2853   { "speed_pill.xpos",                          "14"                    },
2854   { "speed_pill.ypos",                          "9"                     },
2855   { "speed_pill.frames",                        "1"                     },
2856
2857   { "dark_yamyam",                              "RocksElements.png"     },
2858   { "dark_yamyam.xpos",                         "8"                     },
2859   { "dark_yamyam.ypos",                         "11"                    },
2860   { "dark_yamyam.frames",                       "4"                     },
2861   { "dark_yamyam.anim_mode",                    "pingpong2"             },
2862
2863   { "dynabomb",                                 "RocksElements.png"     },
2864   { "dynabomb.xpos",                            "12"                    },
2865   { "dynabomb.ypos",                            "11"                    },
2866   { "dynabomb.frames",                          "1"                     },
2867   { "dynabomb.active",                          "RocksElements.png"     },
2868   { "dynabomb.active.xpos",                     "12"                    },
2869   { "dynabomb.active.ypos",                     "11"                    },
2870   { "dynabomb.active.frames",                   "4"                     },
2871   { "dynabomb.active.delay",                    "6"                     },
2872   { "dynabomb.active.anim_mode",                "pingpong"              },
2873   { "dynabomb_player_1",                        "RocksElements.png"     },
2874   { "dynabomb_player_1.xpos",                   "12"                    },
2875   { "dynabomb_player_1.ypos",                   "11"                    },
2876   { "dynabomb_player_1.frames",                 "1"                     },
2877   { "dynabomb_player_1.active",                 "RocksElements.png"     },
2878   { "dynabomb_player_1.active.xpos",            "12"                    },
2879   { "dynabomb_player_1.active.ypos",            "11"                    },
2880   { "dynabomb_player_1.active.frames",          "4"                     },
2881   { "dynabomb_player_1.active.delay",           "6"                     },
2882   { "dynabomb_player_1.active.anim_mode",       "pingpong"              },
2883   { "dynabomb_player_2",                        "RocksElements.png"     },
2884   { "dynabomb_player_2.xpos",                   "12"                    },
2885   { "dynabomb_player_2.ypos",                   "11"                    },
2886   { "dynabomb_player_2.frames",                 "1"                     },
2887   { "dynabomb_player_2.active",                 "RocksElements.png"     },
2888   { "dynabomb_player_2.active.xpos",            "12"                    },
2889   { "dynabomb_player_2.active.ypos",            "11"                    },
2890   { "dynabomb_player_2.active.frames",          "4"                     },
2891   { "dynabomb_player_2.active.delay",           "6"                     },
2892   { "dynabomb_player_2.active.anim_mode",       "pingpong"              },
2893   { "dynabomb_player_3",                        "RocksElements.png"     },
2894   { "dynabomb_player_3.xpos",                   "12"                    },
2895   { "dynabomb_player_3.ypos",                   "11"                    },
2896   { "dynabomb_player_3.frames",                 "1"                     },
2897   { "dynabomb_player_3.active",                 "RocksElements.png"     },
2898   { "dynabomb_player_3.active.xpos",            "12"                    },
2899   { "dynabomb_player_3.active.ypos",            "11"                    },
2900   { "dynabomb_player_3.active.frames",          "4"                     },
2901   { "dynabomb_player_3.active.delay",           "6"                     },
2902   { "dynabomb_player_3.active.anim_mode",       "pingpong"              },
2903   { "dynabomb_player_4",                        "RocksElements.png"     },
2904   { "dynabomb_player_4.xpos",                   "12"                    },
2905   { "dynabomb_player_4.ypos",                   "11"                    },
2906   { "dynabomb_player_4.frames",                 "1"                     },
2907   { "dynabomb_player_4.active",                 "RocksElements.png"     },
2908   { "dynabomb_player_4.active.xpos",            "12"                    },
2909   { "dynabomb_player_4.active.ypos",            "11"                    },
2910   { "dynabomb_player_4.active.frames",          "4"                     },
2911   { "dynabomb_player_4.active.delay",           "6"                     },
2912   { "dynabomb_player_4.active.anim_mode",       "pingpong"              },
2913   { "dynabomb_increase_number",                 "RocksElements.png"     },
2914   { "dynabomb_increase_number.xpos",            "12"                    },
2915   { "dynabomb_increase_number.ypos",            "11"                    },
2916   { "dynabomb_increase_number.frames",          "1"                     },
2917   { "dynabomb_increase_size",                   "RocksElements.png"     },
2918   { "dynabomb_increase_size.xpos",              "15"                    },
2919   { "dynabomb_increase_size.ypos",              "11"                    },
2920   { "dynabomb_increase_size.frames",            "1"                     },
2921   { "dynabomb_increase_power",                  "RocksElements.png"     },
2922   { "dynabomb_increase_power.xpos",             "12"                    },
2923   { "dynabomb_increase_power.ypos",             "9"                     },
2924   { "dynabomb_increase_power.frames",           "1"                     },
2925
2926   { "pig",                                      "RocksHeroes.png"       },
2927   { "pig.xpos",                                 "8"                     },
2928   { "pig.ypos",                                 "0"                     },
2929   { "pig.frames",                               "1"                     },
2930   { "pig.down",                                 "RocksHeroes.png"       },
2931   { "pig.down.xpos",                            "8"                     },
2932   { "pig.down.ypos",                            "0"                     },
2933   { "pig.down.frames",                          "1"                     },
2934   { "pig.up",                                   "RocksHeroes.png"       },
2935   { "pig.up.xpos",                              "12"                    },
2936   { "pig.up.ypos",                              "0"                     },
2937   { "pig.up.frames",                            "1"                     },
2938   { "pig.left",                                 "RocksHeroes.png"       },
2939   { "pig.left.xpos",                            "8"                     },
2940   { "pig.left.ypos",                            "1"                     },
2941   { "pig.left.frames",                          "1"                     },
2942   { "pig.right",                                "RocksHeroes.png"       },
2943   { "pig.right.xpos",                           "12"                    },
2944   { "pig.right.ypos",                           "1"                     },
2945   { "pig.right.frames",                         "1"                     },
2946   { "pig.moving.down",                          "RocksHeroes.png"       },
2947   { "pig.moving.down.xpos",                     "8"                     },
2948   { "pig.moving.down.ypos",                     "0"                     },
2949   { "pig.moving.down.frames",                   "4"                     },
2950   { "pig.moving.down.delay",                    "2"                     },
2951   { "pig.moving.up",                            "RocksHeroes.png"       },
2952   { "pig.moving.up.xpos",                       "12"                    },
2953   { "pig.moving.up.ypos",                       "0"                     },
2954   { "pig.moving.up.frames",                     "4"                     },
2955   { "pig.moving.up.delay",                      "2"                     },
2956   { "pig.moving.left",                          "RocksHeroes.png"       },
2957   { "pig.moving.left.xpos",                     "8"                     },
2958   { "pig.moving.left.ypos",                     "1"                     },
2959   { "pig.moving.left.frames",                   "4"                     },
2960   { "pig.moving.left.delay",                    "2"                     },
2961   { "pig.moving.right",                         "RocksHeroes.png"       },
2962   { "pig.moving.right.xpos",                    "12"                    },
2963   { "pig.moving.right.ypos",                    "1"                     },
2964   { "pig.moving.right.frames",                  "4"                     },
2965   { "pig.moving.right.delay",                   "2"                     },
2966   { "pig.digging.down",                         "RocksHeroes.png"       },
2967   { "pig.digging.down.xpos",                    "8"                     },
2968   { "pig.digging.down.ypos",                    "0"                     },
2969   { "pig.digging.down.frames",                  "4"                     },
2970   { "pig.digging.down.delay",                   "2"                     },
2971   { "pig.digging.up",                           "RocksHeroes.png"       },
2972   { "pig.digging.up.xpos",                      "12"                    },
2973   { "pig.digging.up.ypos",                      "0"                     },
2974   { "pig.digging.up.frames",                    "4"                     },
2975   { "pig.digging.up.delay",                     "2"                     },
2976   { "pig.digging.left",                         "RocksHeroes.png"       },
2977   { "pig.digging.left.xpos",                    "8"                     },
2978   { "pig.digging.left.ypos",                    "1"                     },
2979   { "pig.digging.left.frames",                  "4"                     },
2980   { "pig.digging.left.delay",                   "2"                     },
2981   { "pig.digging.right",                        "RocksHeroes.png"       },
2982   { "pig.digging.right.xpos",                   "12"                    },
2983   { "pig.digging.right.ypos",                   "1"                     },
2984   { "pig.digging.right.frames",                 "4"                     },
2985   { "pig.digging.right.delay",                  "2"                     },
2986
2987   { "dragon",                                   "RocksHeroes.png"       },
2988   { "dragon.xpos",                              "8"                     },
2989   { "dragon.ypos",                              "2"                     },
2990   { "dragon.frames",                            "1"                     },
2991   { "dragon.down",                              "RocksHeroes.png"       },
2992   { "dragon.down.xpos",                         "8"                     },
2993   { "dragon.down.ypos",                         "2"                     },
2994   { "dragon.down.frames",                       "1"                     },
2995   { "dragon.up",                                "RocksHeroes.png"       },
2996   { "dragon.up.xpos",                           "12"                    },
2997   { "dragon.up.ypos",                           "2"                     },
2998   { "dragon.up.frames",                         "1"                     },
2999   { "dragon.left",                              "RocksHeroes.png"       },
3000   { "dragon.left.xpos",                         "8"                     },
3001   { "dragon.left.ypos",                         "3"                     },
3002   { "dragon.left.frames",                       "1"                     },
3003   { "dragon.right",                             "RocksHeroes.png"       },
3004   { "dragon.right.xpos",                        "12"                    },
3005   { "dragon.right.ypos",                        "3"                     },
3006   { "dragon.right.frames",                      "1"                     },
3007   { "dragon.moving.down",                       "RocksHeroes.png"       },
3008   { "dragon.moving.down.xpos",                  "8"                     },
3009   { "dragon.moving.down.ypos",                  "2"                     },
3010   { "dragon.moving.down.frames",                "4"                     },
3011   { "dragon.moving.down.delay",                 "2"                     },
3012   { "dragon.moving.up",                         "RocksHeroes.png"       },
3013   { "dragon.moving.up.xpos",                    "12"                    },
3014   { "dragon.moving.up.ypos",                    "2"                     },
3015   { "dragon.moving.up.frames",                  "4"                     },
3016   { "dragon.moving.up.delay",                   "2"                     },
3017   { "dragon.moving.left",                       "RocksHeroes.png"       },
3018   { "dragon.moving.left.xpos",                  "8"                     },
3019   { "dragon.moving.left.ypos",                  "3"                     },
3020   { "dragon.moving.left.frames",                "4"                     },
3021   { "dragon.moving.left.delay",                 "2"                     },
3022   { "dragon.moving.right",                      "RocksHeroes.png"       },
3023   { "dragon.moving.right.xpos",                 "12"                    },
3024   { "dragon.moving.right.ypos",                 "3"                     },
3025   { "dragon.moving.right.frames",               "4"                     },
3026   { "dragon.moving.right.delay",                "2"                     },
3027   { "dragon.attacking.down",                    "RocksHeroes.png"       },
3028   { "dragon.attacking.down.xpos",               "8"                     },
3029   { "dragon.attacking.down.ypos",               "2"                     },
3030   { "dragon.attacking.down.frames",             "1"                     },
3031   { "dragon.attacking.up",                      "RocksHeroes.png"       },
3032   { "dragon.attacking.up.xpos",                 "12"                    },
3033   { "dragon.attacking.up.ypos",                 "2"                     },
3034   { "dragon.attacking.up.frames",               "1"                     },
3035   { "dragon.attacking.left",                    "RocksHeroes.png"       },
3036   { "dragon.attacking.left.xpos",               "8"                     },
3037   { "dragon.attacking.left.ypos",               "3"                     },
3038   { "dragon.attacking.left.frames",             "1"                     },
3039   { "dragon.attacking.right",                   "RocksHeroes.png"       },
3040   { "dragon.attacking.right.xpos",              "12"                    },
3041   { "dragon.attacking.right.ypos",              "3"                     },
3042   { "dragon.attacking.right.frames",            "1"                     },
3043
3044   { "mole",                                     "RocksHeroes.png"       },
3045   { "mole.xpos",                                "8"                     },
3046   { "mole.ypos",                                "4"                     },
3047   { "mole.frames",                              "1"                     },
3048   { "mole.down",                                "RocksHeroes.png"       },
3049   { "mole.down.xpos",                           "8"                     },
3050   { "mole.down.ypos",                           "4"                     },
3051   { "mole.down.frames",                         "1"                     },
3052   { "mole.up",                                  "RocksHeroes.png"       },
3053   { "mole.up.xpos",                             "12"                    },
3054   { "mole.up.ypos",                             "4"                     },
3055   { "mole.up.frames",                           "1"                     },
3056   { "mole.left",                                "RocksHeroes.png"       },
3057   { "mole.left.xpos",                           "8"                     },
3058   { "mole.left.ypos",                           "5"                     },
3059   { "mole.left.frames",                         "1"                     },
3060   { "mole.right",                               "RocksHeroes.png"       },
3061   { "mole.right.xpos",                          "12"                    },
3062   { "mole.right.ypos",                          "5"                     },
3063   { "mole.right.frames",                        "1"                     },
3064   { "mole.moving.down",                         "RocksHeroes.png"       },
3065   { "mole.moving.down.xpos",                    "8"                     },
3066   { "mole.moving.down.ypos",                    "4"                     },
3067   { "mole.moving.down.frames",                  "4"                     },
3068   { "mole.moving.down.delay",                   "2"                     },
3069   { "mole.moving.up",                           "RocksHeroes.png"       },
3070   { "mole.moving.up.xpos",                      "12"                    },
3071   { "mole.moving.up.ypos",                      "4"                     },
3072   { "mole.moving.up.frames",                    "4"                     },
3073   { "mole.moving.up.delay",                     "2"                     },
3074   { "mole.moving.left",                         "RocksHeroes.png"       },
3075   { "mole.moving.left.xpos",                    "8"                     },
3076   { "mole.moving.left.ypos",                    "5"                     },
3077   { "mole.moving.left.frames",                  "4"                     },
3078   { "mole.moving.left.delay",                   "2"                     },
3079   { "mole.moving.right",                        "RocksHeroes.png"       },
3080   { "mole.moving.right.xpos",                   "12"                    },
3081   { "mole.moving.right.ypos",                   "5"                     },
3082   { "mole.moving.right.frames",                 "4"                     },
3083   { "mole.moving.right.delay",                  "2"                     },
3084   { "mole.digging.down",                        "RocksHeroes.png"       },
3085   { "mole.digging.down.xpos",                   "8"                     },
3086   { "mole.digging.down.ypos",                   "4"                     },
3087   { "mole.digging.down.frames",                 "4"                     },
3088   { "mole.digging.down.delay",                  "2"                     },
3089   { "mole.digging.up",                          "RocksHeroes.png"       },
3090   { "mole.digging.up.xpos",                     "12"                    },
3091   { "mole.digging.up.ypos",                     "4"                     },
3092   { "mole.digging.up.frames",                   "4"                     },
3093   { "mole.digging.up.delay",                    "2"                     },
3094   { "mole.digging.left",                        "RocksHeroes.png"       },
3095   { "mole.digging.left.xpos",                   "8"                     },
3096   { "mole.digging.left.ypos",                   "5"                     },
3097   { "mole.digging.left.frames",                 "4"                     },
3098   { "mole.digging.left.delay",                  "2"                     },
3099   { "mole.digging.right",                       "RocksHeroes.png"       },
3100   { "mole.digging.right.xpos",                  "12"                    },
3101   { "mole.digging.right.ypos",                  "5"                     },
3102   { "mole.digging.right.frames",                "4"                     },
3103   { "mole.digging.right.delay",                 "2"                     },
3104
3105   { "penguin",                                  "RocksHeroes.png"       },
3106   { "penguin.xpos",                             "8"                     },
3107   { "penguin.ypos",                             "6"                     },
3108   { "penguin.frames",                           "1"                     },
3109   { "penguin.down",                             "RocksHeroes.png"       },
3110   { "penguin.down.xpos",                        "8"                     },
3111   { "penguin.down.ypos",                        "6"                     },
3112   { "penguin.down.frames",                      "1"                     },
3113   { "penguin.up",                               "RocksHeroes.png"       },
3114   { "penguin.up.xpos",                          "12"                    },
3115   { "penguin.up.ypos",                          "6"                     },
3116   { "penguin.up.frames",                        "1"                     },
3117   { "penguin.left",                             "RocksHeroes.png"       },
3118   { "penguin.left.xpos",                        "8"                     },
3119   { "penguin.left.ypos",                        "7"                     },
3120   { "penguin.left.frames",                      "1"                     },
3121   { "penguin.right",                            "RocksHeroes.png"       },
3122   { "penguin.right.xpos",                       "12"                    },
3123   { "penguin.right.ypos",                       "7"                     },
3124   { "penguin.right.frames",                     "1"                     },
3125   { "penguin.moving.down",                      "RocksHeroes.png"       },
3126   { "penguin.moving.down.xpos",                 "8"                     },
3127   { "penguin.moving.down.ypos",                 "6"                     },
3128   { "penguin.moving.down.frames",               "4"                     },
3129   { "penguin.moving.down.delay",                "2"                     },
3130   { "penguin.moving.up",                        "RocksHeroes.png"       },
3131   { "penguin.moving.up.xpos",                   "12"                    },
3132   { "penguin.moving.up.ypos",                   "6"                     },
3133   { "penguin.moving.up.frames",                 "4"                     },
3134   { "penguin.moving.up.delay",                  "2"                     },
3135   { "penguin.moving.left",                      "RocksHeroes.png"       },
3136   { "penguin.moving.left.xpos",                 "8"                     },
3137   { "penguin.moving.left.ypos",                 "7"                     },
3138   { "penguin.moving.left.frames",               "4"                     },
3139   { "penguin.moving.left.delay",                "2"                     },
3140   { "penguin.moving.right",                     "RocksHeroes.png"       },
3141   { "penguin.moving.right.xpos",                "12"                    },
3142   { "penguin.moving.right.ypos",                "7"                     },
3143   { "penguin.moving.right.frames",              "4"                     },
3144   { "penguin.moving.right.delay",               "2"                     },
3145
3146   { "satellite",                                "RocksHeroes.png"       },
3147   { "satellite.xpos",                           "8"                     },
3148   { "satellite.ypos",                           "9"                     },
3149   { "satellite.frames",                         "8"                     },
3150   { "satellite.delay",                          "2"                     },
3151   { "satellite.global_sync",                    "true"                  },
3152
3153   { "flames_1_left",                            "RocksHeroes.png"       },
3154   { "flames_1_left.xpos",                       "8"                     },
3155   { "flames_1_left.ypos",                       "12"                    },
3156   { "flames_1_left.frames",                     "2"                     },
3157   { "flames_1_left.offset",                     "96"                    },
3158   { "flames_2_left",                            "RocksHeroes.png"       },
3159   { "flames_2_left.xpos",                       "9"                     },
3160   { "flames_2_left.ypos",                       "12"                    },
3161   { "flames_2_left.frames",                     "2"                     },
3162   { "flames_2_left.offset",                     "96"                    },
3163   { "flames_3_left",                            "RocksHeroes.png"       },
3164   { "flames_3_left.xpos",                       "10"                    },
3165   { "flames_3_left.ypos",                       "12"                    },
3166   { "flames_3_left.frames",                     "2"                     },
3167   { "flames_3_left.offset",                     "96"                    },
3168
3169   { "flames_1_right",                           "RocksHeroes.png"       },
3170   { "flames_1_right.xpos",                      "8"                     },
3171   { "flames_1_right.ypos",                      "13"                    },
3172   { "flames_1_right.frames",                    "2"                     },
3173   { "flames_1_right.offset",                    "96"                    },
3174   { "flames_2_right",                           "RocksHeroes.png"       },
3175   { "flames_2_right.xpos",                      "9"                     },
3176   { "flames_2_right.ypos",                      "13"                    },
3177   { "flames_2_right.frames",                    "2"                     },
3178   { "flames_2_right.offset",                    "96"                    },
3179   { "flames_3_right",                           "RocksHeroes.png"       },
3180   { "flames_3_right.xpos",                      "10"                    },
3181   { "flames_3_right.ypos",                      "13"                    },
3182   { "flames_3_right.frames",                    "2"                     },
3183   { "flames_3_right.offset",                    "96"                    },
3184
3185   { "flames_1_up",                              "RocksHeroes.png"       },
3186   { "flames_1_up.xpos",                         "8"                     },
3187   { "flames_1_up.ypos",                         "14"                    },
3188   { "flames_1_up.frames",                       "2"                     },
3189   { "flames_1_up.offset",                       "96"                    },
3190   { "flames_2_up",                              "RocksHeroes.png"       },
3191   { "flames_2_up.xpos",                         "9"                     },
3192   { "flames_2_up.ypos",                         "14"                    },
3193   { "flames_2_up.frames",                       "2"                     },
3194   { "flames_2_up.offset",                       "96"                    },
3195   { "flames_3_up",                              "RocksHeroes.png"       },
3196   { "flames_3_up.xpos",                         "10"                    },
3197   { "flames_3_up.ypos",                         "14"                    },
3198   { "flames_3_up.frames",                       "2"                     },
3199   { "flames_3_up.offset",                       "96"                    },
3200
3201   { "flames_1_down",                            "RocksHeroes.png"       },
3202   { "flames_1_down.xpos",                       "8"                     },
3203   { "flames_1_down.ypos",                       "15"                    },
3204   { "flames_1_down.frames",                     "2"                     },
3205   { "flames_1_down.offset",                     "96"                    },
3206   { "flames_2_down",                            "RocksHeroes.png"       },
3207   { "flames_2_down.xpos",                       "9"                     },
3208   { "flames_2_down.ypos",                       "15"                    },
3209   { "flames_2_down.frames",                     "2"                     },
3210   { "flames_2_down.offset",                     "96"                    },
3211   { "flames_3_down",                            "RocksHeroes.png"       },
3212   { "flames_3_down.xpos",                       "10"                    },
3213   { "flames_3_down.ypos",                       "15"                    },
3214   { "flames_3_down.frames",                     "2"                     },
3215   { "flames_3_down.offset",                     "96"                    },
3216
3217   { "stoneblock",                               "RocksElements.png"     },
3218   { "stoneblock.xpos",                          "10"                    },
3219   { "stoneblock.ypos",                          "1"                     },
3220   { "stoneblock.frames",                        "1"                     },
3221
3222   // images for other elements and actions
3223
3224   { "player_1",                                 "RocksHeroes.png"       },
3225   { "player_1.xpos",                            "0"                     },
3226   { "player_1.ypos",                            "0"                     },
3227   { "player_1.frames",                          "1"                     },
3228   { "player_1.down",                            "RocksHeroes.png"       },
3229   { "player_1.down.xpos",                       "0"                     },
3230   { "player_1.down.ypos",                       "0"                     },
3231   { "player_1.down.frames",                     "1"                     },
3232   { "player_1.up",                              "RocksHeroes.png"       },
3233   { "player_1.up.xpos",                         "4"                     },
3234   { "player_1.up.ypos",                         "0"                     },
3235   { "player_1.up.frames",                       "1"                     },
3236   { "player_1.left",                            "RocksHeroes.png"       },
3237   { "player_1.left.xpos",                       "0"                     },
3238   { "player_1.left.ypos",                       "1"                     },
3239   { "player_1.left.frames",                     "1"                     },
3240   { "player_1.right",                           "RocksHeroes.png"       },
3241   { "player_1.right.xpos",                      "4"                     },
3242   { "player_1.right.ypos",                      "1"                     },
3243   { "player_1.right.frames",                    "1"                     },
3244   { "player_1.moving.down",                     "RocksHeroes.png"       },
3245   { "player_1.moving.down.xpos",                "0"                     },
3246   { "player_1.moving.down.ypos",                "0"                     },
3247   { "player_1.moving.down.frames",              "4"                     },
3248   { "player_1.moving.down.start_frame",         "1"                     },
3249   { "player_1.moving.down.delay",               "4"                     },
3250   { "player_1.moving.up",                       "RocksHeroes.png"       },
3251   { "player_1.moving.up.xpos",                  "4"                     },
3252   { "player_1.moving.up.ypos",                  "0"                     },
3253   { "player_1.moving.up.frames",                "4"                     },
3254   { "player_1.moving.up.start_frame",           "1"                     },
3255   { "player_1.moving.up.delay",                 "4"                     },
3256   { "player_1.moving.left",                     "RocksHeroes.png"       },
3257   { "player_1.moving.left.xpos",                "0"                     },
3258   { "player_1.moving.left.ypos",                "1"                     },
3259   { "player_1.moving.left.frames",              "4"                     },
3260   { "player_1.moving.left.start_frame",         "1"                     },
3261   { "player_1.moving.left.delay",               "4"                     },
3262   { "player_1.moving.right",                    "RocksHeroes.png"       },
3263   { "player_1.moving.right.xpos",               "4"                     },
3264   { "player_1.moving.right.ypos",               "1"                     },
3265   { "player_1.moving.right.frames",             "4"                     },
3266   { "player_1.moving.right.start_frame",        "1"                     },
3267   { "player_1.moving.right.delay",              "4"                     },
3268   { "player_1.digging.down",                    "RocksHeroes.png"       },
3269   { "player_1.digging.down.xpos",               "0"                     },
3270   { "player_1.digging.down.ypos",               "0"                     },
3271   { "player_1.digging.down.frames",             "4"                     },
3272   { "player_1.digging.down.start_frame",        "1"                     },
3273   { "player_1.digging.down.delay",              "4"                     },
3274   { "player_1.digging.up",                      "RocksHeroes.png"       },
3275   { "player_1.digging.up.xpos",                 "4"                     },
3276   { "player_1.digging.up.ypos",                 "0"                     },
3277   { "player_1.digging.up.frames",               "4"                     },
3278   { "player_1.digging.up.start_frame",          "1"                     },
3279   { "player_1.digging.up.delay",                "4"                     },
3280   { "player_1.digging.left",                    "RocksHeroes.png"       },
3281   { "player_1.digging.left.xpos",               "0"                     },
3282   { "player_1.digging.left.ypos",               "1"                     },
3283   { "player_1.digging.left.frames",             "4"                     },
3284   { "player_1.digging.left.start_frame",        "1"                     },
3285   { "player_1.digging.left.delay",              "4"                     },
3286   { "player_1.digging.right",                   "RocksHeroes.png"       },
3287   { "player_1.digging.right.xpos",              "4"                     },
3288   { "player_1.digging.right.ypos",              "1"                     },
3289   { "player_1.digging.right.frames",            "4"                     },
3290   { "player_1.digging.right.start_frame",       "1"                     },
3291   { "player_1.digging.right.delay",             "4"                     },
3292   { "player_1.collecting.down",                 "RocksHeroes.png"       },
3293   { "player_1.collecting.down.xpos",            "0"                     },
3294   { "player_1.collecting.down.ypos",            "0"                     },
3295   { "player_1.collecting.down.frames",          "4"                     },
3296   { "player_1.collecting.down.start_frame",     "1"                     },
3297   { "player_1.collecting.down.delay",           "4"                     },
3298   { "player_1.collecting.up",                   "RocksHeroes.png"       },
3299   { "player_1.collecting.up.xpos",              "4"                     },
3300   { "player_1.collecting.up.ypos",              "0"                     },
3301   { "player_1.collecting.up.frames",            "4"                     },
3302   { "player_1.collecting.up.start_frame",       "1"                     },
3303   { "player_1.collecting.up.delay",             "4"                     },
3304   { "player_1.collecting.left",                 "RocksHeroes.png"       },
3305   { "player_1.collecting.left.xpos",            "0"                     },
3306   { "player_1.collecting.left.ypos",            "1"                     },
3307   { "player_1.collecting.left.frames",          "4"                     },
3308   { "player_1.collecting.left.start_frame",     "1"                     },
3309   { "player_1.collecting.left.delay",           "4"                     },
3310   { "player_1.collecting.right",                "RocksHeroes.png"       },
3311   { "player_1.collecting.right.xpos",           "4"                     },
3312   { "player_1.collecting.right.ypos",           "1"                     },
3313   { "player_1.collecting.right.frames",         "4"                     },
3314   { "player_1.collecting.right.start_frame",    "1"                     },
3315   { "player_1.collecting.right.delay",          "4"                     },
3316   { "player_1.pushing.down",                    "RocksHeroes.png"       },
3317   { "player_1.pushing.down.xpos",               "0"                     },
3318   { "player_1.pushing.down.ypos",               "0"                     },
3319   { "player_1.pushing.down.frames",             "4"                     },
3320   { "player_1.pushing.down.delay",              "4"                     },
3321   { "player_1.pushing.up",                      "RocksHeroes.png"       },
3322   { "player_1.pushing.up.xpos",                 "4"                     },
3323   { "player_1.pushing.up.ypos",                 "0"                     },
3324   { "player_1.pushing.up.frames",               "4"                     },
3325   { "player_1.pushing.up.delay",                "4"                     },
3326   { "player_1.pushing.left",                    "RocksHeroes.png"       },
3327   { "player_1.pushing.left.xpos",               "4"                     },
3328   { "player_1.pushing.left.ypos",               "2"                     },
3329   { "player_1.pushing.left.frames",             "4"                     },
3330   { "player_1.pushing.left.delay",              "4"                     },
3331   { "player_1.pushing.right",                   "RocksHeroes.png"       },
3332   { "player_1.pushing.right.xpos",              "0"                     },
3333   { "player_1.pushing.right.ypos",              "2"                     },
3334   { "player_1.pushing.right.frames",            "4"                     },
3335   { "player_1.pushing.right.delay",             "4"                     },
3336   { "player_1.snapping.down",                   "RocksHeroes.png"       },
3337   { "player_1.snapping.down.xpos",              "0"                     },
3338   { "player_1.snapping.down.ypos",              "0"                     },
3339   { "player_1.snapping.down.frames",            "1"                     },
3340   { "player_1.snapping.up",                     "RocksHeroes.png"       },
3341   { "player_1.snapping.up.xpos",                "4"                     },
3342   { "player_1.snapping.up.ypos",                "0"                     },
3343   { "player_1.snapping.up.frames",              "1"                     },
3344   { "player_1.snapping.left",                   "RocksHeroes.png"       },
3345   { "player_1.snapping.left.xpos",              "0"                     },
3346   { "player_1.snapping.left.ypos",              "1"                     },
3347   { "player_1.snapping.left.frames",            "1"                     },
3348   { "player_1.snapping.right",                  "RocksHeroes.png"       },
3349   { "player_1.snapping.right.xpos",             "4"                     },
3350   { "player_1.snapping.right.ypos",             "1"                     },
3351   { "player_1.snapping.right.frames",           "1"                     },
3352
3353   { "player_2",                                 "RocksHeroes.png"       },
3354   { "player_2.xpos",                            "0"                     },
3355   { "player_2.ypos",                            "3"                     },
3356   { "player_2.frames",                          "1"                     },
3357   { "player_2.down",                            "RocksHeroes.png"       },
3358   { "player_2.down.xpos",                       "0"                     },
3359   { "player_2.down.ypos",                       "3"                     },
3360   { "player_2.down.frames",                     "1"                     },
3361   { "player_2.up",                              "RocksHeroes.png"       },
3362   { "player_2.up.xpos",                         "4"                     },
3363   { "player_2.up.ypos",                         "3"                     },
3364   { "player_2.up.frames",                       "1"                     },
3365   { "player_2.left",                            "RocksHeroes.png"       },
3366   { "player_2.left.xpos",                       "0"                     },
3367   { "player_2.left.ypos",                       "4"                     },
3368   { "player_2.left.frames",                     "1"                     },
3369   { "player_2.right",                           "RocksHeroes.png"       },
3370   { "player_2.right.xpos",                      "4"                     },
3371   { "player_2.right.ypos",                      "4"                     },
3372   { "player_2.right.frames",                    "1"                     },
3373   { "player_2.moving.down",                     "RocksHeroes.png"       },
3374   { "player_2.moving.down.xpos",                "0"                     },
3375   { "player_2.moving.down.ypos",                "3"                     },
3376   { "player_2.moving.down.frames",              "4"                     },
3377   { "player_2.moving.down.start_frame",         "1"                     },
3378   { "player_2.moving.down.delay",               "4"                     },
3379   { "player_2.moving.up",                       "RocksHeroes.png"       },
3380   { "player_2.moving.up.xpos",                  "4"                     },
3381   { "player_2.moving.up.ypos",                  "3"                     },
3382   { "player_2.moving.up.frames",                "4"                     },
3383   { "player_2.moving.up.start_frame",           "1"                     },
3384   { "player_2.moving.up.delay",                 "4"                     },
3385   { "player_2.moving.left",                     "RocksHeroes.png"       },
3386   { "player_2.moving.left.xpos",                "0"                     },
3387   { "player_2.moving.left.ypos",                "4"                     },
3388   { "player_2.moving.left.frames",              "4"                     },
3389   { "player_2.moving.left.start_frame",         "1"                     },
3390   { "player_2.moving.left.delay",               "4"                     },
3391   { "player_2.moving.right",                    "RocksHeroes.png"       },
3392   { "player_2.moving.right.xpos",               "4"                     },
3393   { "player_2.moving.right.ypos",               "4"                     },
3394   { "player_2.moving.right.frames",             "4"                     },
3395   { "player_2.moving.right.start_frame",        "1"                     },
3396   { "player_2.moving.right.delay",              "4"                     },
3397   { "player_2.digging.down",                    "RocksHeroes.png"       },
3398   { "player_2.digging.down.xpos",               "0"                     },
3399   { "player_2.digging.down.ypos",               "3"                     },
3400   { "player_2.digging.down.frames",             "4"                     },
3401   { "player_2.digging.down.start_frame",        "1"                     },
3402   { "player_2.digging.down.delay",              "4"                     },
3403   { "player_2.digging.up",                      "RocksHeroes.png"       },
3404   { "player_2.digging.up.xpos",                 "4"                     },
3405   { "player_2.digging.up.ypos",                 "3"                     },
3406   { "player_2.digging.up.frames",               "4"                     },
3407   { "player_2.digging.up.start_frame",          "1"                     },
3408   { "player_2.digging.up.delay",                "4"                     },
3409   { "player_2.digging.left",                    "RocksHeroes.png"       },
3410   { "player_2.digging.left.xpos",               "0"                     },
3411   { "player_2.digging.left.ypos",               "4"                     },
3412   { "player_2.digging.left.frames",             "4"                     },
3413   { "player_2.digging.left.start_frame",        "1"                     },
3414   { "player_2.digging.left.delay",              "4"                     },
3415   { "player_2.digging.right",                   "RocksHeroes.png"       },
3416   { "player_2.digging.right.xpos",              "4"                     },
3417   { "player_2.digging.right.ypos",              "4"                     },
3418   { "player_2.digging.right.frames",            "4"                     },
3419   { "player_2.digging.right.start_frame",       "1"                     },
3420   { "player_2.digging.right.delay",             "4"                     },
3421   { "player_2.collecting.down",                 "RocksHeroes.png"       },
3422   { "player_2.collecting.down.xpos",            "0"                     },
3423   { "player_2.collecting.down.ypos",            "3"                     },
3424   { "player_2.collecting.down.frames",          "4"                     },
3425   { "player_2.collecting.down.start_frame",     "1"                     },
3426   { "player_2.collecting.down.delay",           "4"                     },
3427   { "player_2.collecting.up",                   "RocksHeroes.png"       },
3428   { "player_2.collecting.up.xpos",              "4"                     },
3429   { "player_2.collecting.up.ypos",              "3"                     },
3430   { "player_2.collecting.up.frames",            "4"                     },
3431   { "player_2.collecting.up.start_frame",       "1"                     },
3432   { "player_2.collecting.up.delay",             "4"                     },
3433   { "player_2.collecting.left",                 "RocksHeroes.png"       },
3434   { "player_2.collecting.left.xpos",            "0"                     },
3435   { "player_2.collecting.left.ypos",            "4"                     },
3436   { "player_2.collecting.left.frames",          "4"                     },
3437   { "player_2.collecting.left.start_frame",     "1"                     },
3438   { "player_2.collecting.left.delay",           "4"                     },
3439   { "player_2.collecting.right",                "RocksHeroes.png"       },
3440   { "player_2.collecting.right.xpos",           "4"                     },
3441   { "player_2.collecting.right.ypos",           "4"                     },
3442   { "player_2.collecting.right.frames",         "4"                     },
3443   { "player_2.collecting.right.start_frame",    "1"                     },
3444   { "player_2.collecting.right.delay",          "4"                     },
3445   { "player_2.pushing.down",                    "RocksHeroes.png"       },
3446   { "player_2.pushing.down.xpos",               "0"                     },
3447   { "player_2.pushing.down.ypos",               "3"                     },
3448   { "player_2.pushing.down.frames",             "4"                     },
3449   { "player_2.pushing.down.delay",              "4"                     },
3450   { "player_2.pushing.up",                      "RocksHeroes.png"       },
3451   { "player_2.pushing.up.xpos",                 "4"                     },
3452   { "player_2.pushing.up.ypos",                 "3"                     },
3453   { "player_2.pushing.up.frames",               "4"                     },
3454   { "player_2.pushing.up.delay",                "4"                     },
3455   { "player_2.pushing.left",                    "RocksHeroes.png"       },
3456   { "player_2.pushing.left.xpos",               "4"                     },
3457   { "player_2.pushing.left.ypos",               "5"                     },
3458   { "player_2.pushing.left.frames",             "4"                     },
3459   { "player_2.pushing.left.delay",              "4"                     },
3460   { "player_2.pushing.right",                   "RocksHeroes.png"       },
3461   { "player_2.pushing.right.xpos",              "0"                     },
3462   { "player_2.pushing.right.ypos",              "5"                     },
3463   { "player_2.pushing.right.frames",            "4"                     },
3464   { "player_2.pushing.right.delay",             "4"                     },
3465   { "player_2.snapping.down",                   "RocksHeroes.png"       },
3466   { "player_2.snapping.down.xpos",              "0"                     },
3467   { "player_2.snapping.down.ypos",              "3"                     },
3468   { "player_2.snapping.down.frames",            "1"                     },
3469   { "player_2.snapping.up",                     "RocksHeroes.png"       },
3470   { "player_2.snapping.up.xpos",                "4"                     },
3471   { "player_2.snapping.up.ypos",                "3"                     },
3472   { "player_2.snapping.up.frames",              "1"                     },
3473   { "player_2.snapping.left",                   "RocksHeroes.png"       },
3474   { "player_2.snapping.left.xpos",              "0"                     },
3475   { "player_2.snapping.left.ypos",              "4"                     },
3476   { "player_2.snapping.left.frames",            "1"                     },
3477   { "player_2.snapping.right",                  "RocksHeroes.png"       },
3478   { "player_2.snapping.right.xpos",             "4"                     },
3479   { "player_2.snapping.right.ypos",             "4"                     },
3480   { "player_2.snapping.right.frames",           "1"                     },
3481
3482   { "player_3",                                 "RocksHeroes.png"       },
3483   { "player_3.xpos",                            "0"                     },
3484   { "player_3.ypos",                            "6"                     },
3485   { "player_3.frames",                          "1"                     },
3486   { "player_3.down",                            "RocksHeroes.png"       },
3487   { "player_3.down.xpos",                       "0"                     },
3488   { "player_3.down.ypos",                       "6"                     },
3489   { "player_3.down.frames",                     "1"                     },
3490   { "player_3.up",                              "RocksHeroes.png"       },
3491   { "player_3.up.xpos",                         "4"                     },
3492   { "player_3.up.ypos",                         "6"                     },
3493   { "player_3.up.frames",                       "1"                     },
3494   { "player_3.left",                            "RocksHeroes.png"       },
3495   { "player_3.left.xpos",                       "0"                     },
3496   { "player_3.left.ypos",                       "7"                     },
3497   { "player_3.left.frames",                     "1"                     },
3498   { "player_3.right",                           "RocksHeroes.png"       },
3499   { "player_3.right.xpos",                      "4"                     },
3500   { "player_3.right.ypos",                      "7"                     },
3501   { "player_3.right.frames",                    "1"                     },
3502   { "player_3.moving.down",                     "RocksHeroes.png"       },
3503   { "player_3.moving.down.xpos",                "0"                     },
3504   { "player_3.moving.down.ypos",                "6"                     },
3505   { "player_3.moving.down.frames",              "4"                     },
3506   { "player_3.moving.down.start_frame",         "1"                     },
3507   { "player_3.moving.down.delay",               "4"                     },
3508   { "player_3.moving.up",                       "RocksHeroes.png"       },
3509   { "player_3.moving.up.xpos",                  "4"                     },
3510   { "player_3.moving.up.ypos",                  "6"                     },
3511   { "player_3.moving.up.frames",                "4"                     },
3512   { "player_3.moving.up.start_frame",           "1"                     },
3513   { "player_3.moving.up.delay",                 "4"                     },
3514   { "player_3.moving.left",                     "RocksHeroes.png"       },
3515   { "player_3.moving.left.xpos",                "0"                     },
3516   { "player_3.moving.left.ypos",                "7"                     },
3517   { "player_3.moving.left.frames",              "4"                     },
3518   { "player_3.moving.left.start_frame",         "1"                     },
3519   { "player_3.moving.left.delay",               "4"                     },
3520   { "player_3.moving.right",                    "RocksHeroes.png"       },
3521   { "player_3.moving.right.xpos",               "4"                     },
3522   { "player_3.moving.right.ypos",               "7"                     },
3523   { "player_3.moving.right.frames",             "4"                     },
3524   { "player_3.moving.right.start_frame",        "1"                     },
3525   { "player_3.moving.right.delay",              "4"                     },
3526   { "player_3.digging.down",                    "RocksHeroes.png"       },
3527   { "player_3.digging.down.xpos",               "0"                     },
3528   { "player_3.digging.down.ypos",               "6"                     },
3529   { "player_3.digging.down.frames",             "4"                     },
3530   { "player_3.digging.down.start_frame",        "1"                     },
3531   { "player_3.digging.down.delay",              "4"                     },
3532   { "player_3.digging.up",                      "RocksHeroes.png"       },
3533   { "player_3.digging.up.xpos",                 "4"                     },
3534   { "player_3.digging.up.ypos",                 "6"                     },
3535   { "player_3.digging.up.frames",               "4"                     },
3536   { "player_3.digging.up.start_frame",          "1"                     },
3537   { "player_3.digging.up.delay",                "4"                     },
3538   { "player_3.digging.left",                    "RocksHeroes.png"       },
3539   { "player_3.digging.left.xpos",               "0"                     },
3540   { "player_3.digging.left.ypos",               "7"                     },
3541   { "player_3.digging.left.frames",             "4"                     },
3542   { "player_3.digging.left.start_frame",        "1"                     },
3543   { "player_3.digging.left.delay",              "4"                     },
3544   { "player_3.digging.right",                   "RocksHeroes.png"       },
3545   { "player_3.digging.right.xpos",              "4"                     },
3546   { "player_3.digging.right.ypos",              "7"                     },
3547   { "player_3.digging.right.frames",            "4"                     },
3548   { "player_3.digging.right.start_frame",       "1"                     },
3549   { "player_3.digging.right.delay",             "4"                     },
3550   { "player_3.collecting.down",                 "RocksHeroes.png"       },
3551   { "player_3.collecting.down.xpos",            "0"                     },
3552   { "player_3.collecting.down.ypos",            "6"                     },
3553   { "player_3.collecting.down.frames",          "4"                     },
3554   { "player_3.collecting.down.start_frame",     "1"                     },
3555   { "player_3.collecting.down.delay",           "4"                     },
3556   { "player_3.collecting.up",                   "RocksHeroes.png"       },
3557   { "player_3.collecting.up.xpos",              "4"                     },
3558   { "player_3.collecting.up.ypos",              "6"                     },
3559   { "player_3.collecting.up.frames",            "4"                     },
3560   { "player_3.collecting.up.start_frame",       "1"                     },
3561   { "player_3.collecting.up.delay",             "4"                     },
3562   { "player_3.collecting.left",                 "RocksHeroes.png"       },
3563   { "player_3.collecting.left.xpos",            "0"                     },
3564   { "player_3.collecting.left.ypos",            "7"                     },
3565   { "player_3.collecting.left.frames",          "4"                     },
3566   { "player_3.collecting.left.start_frame",     "1"                     },
3567   { "player_3.collecting.left.delay",           "4"                     },
3568   { "player_3.collecting.right",                "RocksHeroes.png"       },
3569   { "player_3.collecting.right.xpos",           "4"                     },
3570   { "player_3.collecting.right.ypos",           "7"                     },
3571   { "player_3.collecting.right.frames",         "4"                     },
3572   { "player_3.collecting.right.start_frame",    "1"                     },
3573   { "player_3.collecting.right.delay",          "4"                     },
3574   { "player_3.pushing.down",                    "RocksHeroes.png"       },
3575   { "player_3.pushing.down.xpos",               "0"                     },
3576   { "player_3.pushing.down.ypos",               "6"                     },
3577   { "player_3.pushing.down.frames",             "4"                     },
3578   { "player_3.pushing.down.delay",              "4"                     },
3579   { "player_3.pushing.up",                      "RocksHeroes.png"       },
3580   { "player_3.pushing.up.xpos",                 "4"                     },
3581   { "player_3.pushing.up.ypos",                 "6"                     },
3582   { "player_3.pushing.up.frames",               "4"                     },
3583   { "player_3.pushing.up.delay",                "4"                     },
3584   { "player_3.pushing.left",                    "RocksHeroes.png"       },
3585   { "player_3.pushing.left.xpos",               "4"                     },
3586   { "player_3.pushing.left.ypos",               "8"                     },
3587   { "player_3.pushing.left.frames",             "4"                     },
3588   { "player_3.pushing.left.delay",              "4"                     },
3589   { "player_3.pushing.right",                   "RocksHeroes.png"       },
3590   { "player_3.pushing.right.xpos",              "0"                     },
3591   { "player_3.pushing.right.ypos",              "8"                     },
3592   { "player_3.pushing.right.frames",            "4"                     },
3593   { "player_3.pushing.right.delay",             "4"                     },
3594   { "player_3.snapping.down",                   "RocksHeroes.png"       },
3595   { "player_3.snapping.down.xpos",              "0"                     },
3596   { "player_3.snapping.down.ypos",              "6"                     },
3597   { "player_3.snapping.down.frames",            "1"                     },
3598   { "player_3.snapping.up",                     "RocksHeroes.png"       },
3599   { "player_3.snapping.up.xpos",                "4"                     },
3600   { "player_3.snapping.up.ypos",                "6"                     },
3601   { "player_3.snapping.up.frames",              "1"                     },
3602   { "player_3.snapping.left",                   "RocksHeroes.png"       },
3603   { "player_3.snapping.left.xpos",              "0"                     },
3604   { "player_3.snapping.left.ypos",              "7"                     },
3605   { "player_3.snapping.left.frames",            "1"                     },
3606   { "player_3.snapping.right",                  "RocksHeroes.png"       },
3607   { "player_3.snapping.right.xpos",             "4"                     },
3608   { "player_3.snapping.right.ypos",             "7"                     },
3609   { "player_3.snapping.right.frames",           "1"                     },
3610
3611   { "player_4",                                 "RocksHeroes.png"       },
3612   { "player_4.xpos",                            "0"                     },
3613   { "player_4.ypos",                            "9"                     },
3614   { "player_4.frames",                          "1"                     },
3615   { "player_4.down",                            "RocksHeroes.png"       },
3616   { "player_4.down.xpos",                       "0"                     },
3617   { "player_4.down.ypos",                       "9"                     },
3618   { "player_4.down.frames",                     "1"                     },
3619   { "player_4.up",                              "RocksHeroes.png"       },
3620   { "player_4.up.xpos",                         "4"                     },
3621   { "player_4.up.ypos",                         "9"                     },
3622   { "player_4.up.frames",                       "1"                     },
3623   { "player_4.left",                            "RocksHeroes.png"       },
3624   { "player_4.left.xpos",                       "0"                     },
3625   { "player_4.left.ypos",                       "10"                    },
3626   { "player_4.left.frames",                     "1"                     },
3627   { "player_4.right",                           "RocksHeroes.png"       },
3628   { "player_4.right.xpos",                      "4"                     },
3629   { "player_4.right.ypos",                      "10"                    },
3630   { "player_4.right.frames",                    "1"                     },
3631   { "player_4.moving.down",                     "RocksHeroes.png"       },
3632   { "player_4.moving.down.xpos",                "0"                     },
3633   { "player_4.moving.down.ypos",                "9"                     },
3634   { "player_4.moving.down.frames",              "4"                     },
3635   { "player_4.moving.down.start_frame",         "1"                     },
3636   { "player_4.moving.down.delay",               "4"                     },
3637   { "player_4.moving.up",                       "RocksHeroes.png"       },
3638   { "player_4.moving.up.xpos",                  "4"                     },
3639   { "player_4.moving.up.ypos",                  "9"                     },
3640   { "player_4.moving.up.frames",                "4"                     },
3641   { "player_4.moving.up.start_frame",           "1"                     },
3642   { "player_4.moving.up.delay",                 "4"                     },
3643   { "player_4.moving.left",                     "RocksHeroes.png"       },
3644   { "player_4.moving.left.xpos",                "0"                     },
3645   { "player_4.moving.left.ypos",                "10"                    },
3646   { "player_4.moving.left.frames",              "4"                     },
3647   { "player_4.moving.left.start_frame",         "1"                     },
3648   { "player_4.moving.left.delay",               "4"                     },
3649   { "player_4.moving.right",                    "RocksHeroes.png"       },
3650   { "player_4.moving.right.xpos",               "4"                     },
3651   { "player_4.moving.right.ypos",               "10"                    },
3652   { "player_4.moving.right.frames",             "4"                     },
3653   { "player_4.moving.right.start_frame",        "1"                     },
3654   { "player_4.moving.right.delay",              "4"                     },
3655   { "player_4.digging.down",                    "RocksHeroes.png"       },
3656   { "player_4.digging.down.xpos",               "0"                     },
3657   { "player_4.digging.down.ypos",               "9"                     },
3658   { "player_4.digging.down.frames",             "4"                     },
3659   { "player_4.digging.down.start_frame",        "1"                     },
3660   { "player_4.digging.down.delay",              "4"                     },
3661   { "player_4.digging.up",                      "RocksHeroes.png"       },
3662   { "player_4.digging.up.xpos",                 "4"                     },
3663   { "player_4.digging.up.ypos",                 "9"                     },
3664   { "player_4.digging.up.frames",               "4"                     },
3665   { "player_4.digging.up.start_frame",          "1"                     },
3666   { "player_4.digging.up.delay",                "4"                     },
3667   { "player_4.digging.left",                    "RocksHeroes.png"       },
3668   { "player_4.digging.left.xpos",               "0"                     },
3669   { "player_4.digging.left.ypos",               "10"                    },
3670   { "player_4.digging.left.frames",             "4"                     },
3671   { "player_4.digging.left.start_frame",        "1"                     },
3672   { "player_4.digging.left.delay",              "4"                     },
3673   { "player_4.digging.right",                   "RocksHeroes.png"       },
3674   { "player_4.digging.right.xpos",              "4"                     },
3675   { "player_4.digging.right.ypos",              "10"                    },
3676   { "player_4.digging.right.frames",            "4"                     },
3677   { "player_4.digging.right.start_frame",       "1"                     },
3678   { "player_4.digging.right.delay",             "4"                     },
3679   { "player_4.collecting.down",                 "RocksHeroes.png"       },
3680   { "player_4.collecting.down.xpos",            "0"                     },
3681   { "player_4.collecting.down.ypos",            "9"                     },
3682   { "player_4.collecting.down.frames",          "4"                     },
3683   { "player_4.collecting.down.start_frame",     "1"                     },
3684   { "player_4.collecting.down.delay",           "4"                     },
3685   { "player_4.collecting.up",                   "RocksHeroes.png"       },
3686   { "player_4.collecting.up.xpos",              "4"                     },
3687   { "player_4.collecting.up.ypos",              "9"                     },
3688   { "player_4.collecting.up.frames",            "4"                     },
3689   { "player_4.collecting.up.start_frame",       "1"                     },
3690   { "player_4.collecting.up.delay",             "4"                     },
3691   { "player_4.collecting.left",                 "RocksHeroes.png"       },
3692   { "player_4.collecting.left.xpos",            "0"                     },
3693   { "player_4.collecting.left.ypos",            "10"                    },
3694   { "player_4.collecting.left.frames",          "4"                     },
3695   { "player_4.collecting.left.start_frame",     "1"                     },
3696   { "player_4.collecting.left.delay",           "4"                     },
3697   { "player_4.collecting.right",                "RocksHeroes.png"       },
3698   { "player_4.collecting.right.xpos",           "4"                     },
3699   { "player_4.collecting.right.ypos",           "10"                    },
3700   { "player_4.collecting.right.frames",         "4"                     },
3701   { "player_4.collecting.right.start_frame",    "1"                     },
3702   { "player_4.collecting.right.delay",          "4"                     },
3703   { "player_4.pushing.down",                    "RocksHeroes.png"       },
3704   { "player_4.pushing.down.xpos",               "0"                     },
3705   { "player_4.pushing.down.ypos",               "9"                     },
3706   { "player_4.pushing.down.frames",             "4"                     },
3707   { "player_4.pushing.down.delay",              "4"                     },
3708   { "player_4.pushing.up",                      "RocksHeroes.png"       },
3709   { "player_4.pushing.up.xpos",                 "4"                     },
3710   { "player_4.pushing.up.ypos",                 "9"                     },
3711   { "player_4.pushing.up.frames",               "4"                     },
3712   { "player_4.pushing.up.delay",                "4"                     },
3713   { "player_4.pushing.left",                    "RocksHeroes.png"       },
3714   { "player_4.pushing.left.xpos",               "4"                     },
3715   { "player_4.pushing.left.ypos",               "11"                    },
3716   { "player_4.pushing.left.frames",             "4"                     },
3717   { "player_4.pushing.left.delay",              "4"                     },
3718   { "player_4.pushing.right",                   "RocksHeroes.png"       },
3719   { "player_4.pushing.right.xpos",              "0"                     },
3720   { "player_4.pushing.right.ypos",              "11"                    },
3721   { "player_4.pushing.right.frames",            "4"                     },
3722   { "player_4.pushing.right.delay",             "4"                     },
3723   { "player_4.snapping.down",                   "RocksHeroes.png"       },
3724   { "player_4.snapping.down.xpos",              "0"                     },
3725   { "player_4.snapping.down.ypos",              "9"                     },
3726   { "player_4.snapping.down.frames",            "1"                     },
3727   { "player_4.snapping.up",                     "RocksHeroes.png"       },
3728   { "player_4.snapping.up.xpos",                "4"                     },
3729   { "player_4.snapping.up.ypos",                "9"                     },
3730   { "player_4.snapping.up.frames",              "1"                     },
3731   { "player_4.snapping.left",                   "RocksHeroes.png"       },
3732   { "player_4.snapping.left.xpos",              "0"                     },
3733   { "player_4.snapping.left.ypos",              "10"                    },
3734   { "player_4.snapping.left.frames",            "1"                     },
3735   { "player_4.snapping.right",                  "RocksHeroes.png"       },
3736   { "player_4.snapping.right.xpos",             "4"                     },
3737   { "player_4.snapping.right.ypos",             "10"                    },
3738   { "player_4.snapping.right.frames",           "1"                     },
3739
3740   { "[default].exploding",                      "RocksElements.png"     },
3741   { "[default].exploding.xpos",                 "0"                     },
3742   { "[default].exploding.ypos",                 "4"                     },
3743   { "[default].exploding.frames",               "8"                     },
3744   { "[default].exploding.delay",                "2"                     },
3745   { "[default].exploding.anim_mode",            "linear"                },
3746
3747   { "twinkle_blue",                             "RocksHeroes.png"       },
3748   { "twinkle_blue.xpos",                        "9"                     },
3749   { "twinkle_blue.ypos",                        "11"                    },
3750   { "twinkle_blue.frames",                      "3"                     },
3751   { "twinkle_blue.delay",                       "2"                     },
3752   { "twinkle_blue.anim_mode",                   "pingpong"              },
3753   { "twinkle_blue.global_sync",                 "false"                 },
3754   { "twinkle_white",                            "RocksHeroes.png"       },
3755   { "twinkle_white.xpos",                       "13"                    },
3756   { "twinkle_white.ypos",                       "11"                    },
3757   { "twinkle_white.frames",                     "3"                     },
3758   { "twinkle_white.delay",                      "2"                     },
3759   { "twinkle_white.anim_mode",                  "pingpong"              },
3760   { "twinkle_white.global_sync",                "false"                 },
3761
3762   { "steelwall_topleft",                        "RocksElements.png"     },
3763   { "steelwall_topleft.xpos",                   "4"                     },
3764   { "steelwall_topleft.ypos",                   "0"                     },
3765   { "steelwall_topleft.frames",                 "1"                     },
3766   { "steelwall_topright",                       "RocksElements.png"     },
3767   { "steelwall_topright.xpos",                  "4"                     },
3768   { "steelwall_topright.ypos",                  "0"                     },
3769   { "steelwall_topright.frames",                "1"                     },
3770   { "steelwall_bottomleft",                     "RocksElements.png"     },
3771   { "steelwall_bottomleft.xpos",                "4"                     },
3772   { "steelwall_bottomleft.ypos",                "0"                     },
3773   { "steelwall_bottomleft.frames",              "1"                     },
3774   { "steelwall_bottomright",                    "RocksElements.png"     },
3775   { "steelwall_bottomright.xpos",               "4"                     },
3776   { "steelwall_bottomright.ypos",               "0"                     },
3777   { "steelwall_bottomright.frames",             "1"                     },
3778   { "steelwall_horizontal",                     "RocksElements.png"     },
3779   { "steelwall_horizontal.xpos",                "4"                     },
3780   { "steelwall_horizontal.ypos",                "0"                     },
3781   { "steelwall_horizontal.frames",              "1"                     },
3782   { "steelwall_vertical",                       "RocksElements.png"     },
3783   { "steelwall_vertical.xpos",                  "4"                     },
3784   { "steelwall_vertical.ypos",                  "0"                     },
3785   { "steelwall_vertical.frames",                "1"                     },
3786
3787   { "steelwall_topleft.EDITOR",                 "RocksElements.png"     },
3788   { "steelwall_topleft.EDITOR.xpos",            "0"                     },
3789   { "steelwall_topleft.EDITOR.ypos",            "13"                    },
3790   { "steelwall_topright.EDITOR",                "RocksElements.png"     },
3791   { "steelwall_topright.EDITOR.xpos",           "1"                     },
3792   { "steelwall_topright.EDITOR.ypos",           "13"                    },
3793   { "steelwall_bottomleft.EDITOR",              "RocksElements.png"     },
3794   { "steelwall_bottomleft.EDITOR.xpos",         "2"                     },
3795   { "steelwall_bottomleft.EDITOR.ypos",         "13"                    },
3796   { "steelwall_bottomright.EDITOR",             "RocksElements.png"     },
3797   { "steelwall_bottomright.EDITOR.xpos",        "3"                     },
3798   { "steelwall_bottomright.EDITOR.ypos",        "13"                    },
3799   { "steelwall_horizontal.EDITOR",              "RocksElements.png"     },
3800   { "steelwall_horizontal.EDITOR.xpos",         "4"                     },
3801   { "steelwall_horizontal.EDITOR.ypos",         "13"                    },
3802   { "steelwall_vertical.EDITOR",                "RocksElements.png"     },
3803   { "steelwall_vertical.EDITOR.xpos",           "5"                     },
3804   { "steelwall_vertical.EDITOR.ypos",           "13"                    },
3805
3806   { "invisible_steelwall_topleft",              "RocksSP.png"           },
3807   { "invisible_steelwall_topleft.xpos",         "0"                     },
3808   { "invisible_steelwall_topleft.ypos",         "0"                     },
3809   { "invisible_steelwall_topleft.frames",       "1"                     },
3810   { "invisible_steelwall_topright",             "RocksSP.png"           },
3811   { "invisible_steelwall_topright.xpos",        "0"                     },
3812   { "invisible_steelwall_topright.ypos",        "0"                     },
3813   { "invisible_steelwall_topright.frames",      "1"                     },
3814   { "invisible_steelwall_bottomleft",           "RocksSP.png"           },
3815   { "invisible_steelwall_bottomleft.xpos",      "0"                     },
3816   { "invisible_steelwall_bottomleft.ypos",      "0"                     },
3817   { "invisible_steelwall_bottomleft.frames",    "1"                     },
3818   { "invisible_steelwall_bottomright",          "RocksSP.png"           },
3819   { "invisible_steelwall_bottomright.xpos",     "0"                     },
3820   { "invisible_steelwall_bottomright.ypos",     "0"                     },
3821   { "invisible_steelwall_bottomright.frames",   "1"                     },
3822   { "invisible_steelwall_horizontal",           "RocksSP.png"           },
3823   { "invisible_steelwall_horizontal.xpos",      "0"                     },
3824   { "invisible_steelwall_horizontal.ypos",      "0"                     },
3825   { "invisible_steelwall_horizontal.frames",    "1"                     },
3826   { "invisible_steelwall_vertical",             "RocksSP.png"           },
3827   { "invisible_steelwall_vertical.xpos",        "0"                     },
3828   { "invisible_steelwall_vertical.ypos",        "0"                     },
3829   { "invisible_steelwall_vertical.frames",      "1"                     },
3830
3831   { "invisible_steelwall_topleft.EDITOR",       "RocksElements.png"     },
3832   { "invisible_steelwall_topleft.EDITOR.xpos",  "6"                     },
3833   { "invisible_steelwall_topleft.EDITOR.ypos",  "13"                    },
3834   { "invisible_steelwall_topright.EDITOR",      "RocksElements.png"     },
3835   { "invisible_steelwall_topright.EDITOR.xpos", "7"                     },
3836   { "invisible_steelwall_topright.EDITOR.ypos", "13"                    },
3837   { "invisible_steelwall_bottomleft.EDITOR",    "RocksElements.png"     },
3838   { "invisible_steelwall_bottomleft.EDITOR.xpos","8"                    },
3839   { "invisible_steelwall_bottomleft.EDITOR.ypos","13"                   },
3840   { "invisible_steelwall_bottomright.EDITOR",   "RocksElements.png"     },
3841   { "invisible_steelwall_bottomright.EDITOR.xpos","9"                   },
3842   { "invisible_steelwall_bottomright.EDITOR.ypos","13"                  },
3843   { "invisible_steelwall_horizontal.EDITOR",    "RocksElements.png"     },
3844   { "invisible_steelwall_horizontal.EDITOR.xpos","10"                   },
3845   { "invisible_steelwall_horizontal.EDITOR.ypos","13"                   },
3846   { "invisible_steelwall_vertical.EDITOR",      "RocksElements.png"     },
3847   { "invisible_steelwall_vertical.EDITOR.xpos", "11"                    },
3848   { "invisible_steelwall_vertical.EDITOR.ypos", "13"                    },
3849
3850   { "arrow_left",                               "RocksDC.png"           },
3851   { "arrow_left.xpos",                          "8"                     },
3852   { "arrow_left.ypos",                          "8"                     },
3853   { "arrow_left.frames",                        "1"                     },
3854   { "arrow_right",                              "RocksDC.png"           },
3855   { "arrow_right.xpos",                         "9"                     },
3856   { "arrow_right.ypos",                         "8"                     },
3857   { "arrow_right.frames",                       "1"                     },
3858   { "arrow_up",                                 "RocksDC.png"           },
3859   { "arrow_up.xpos",                            "10"                    },
3860   { "arrow_up.ypos",                            "8"                     },
3861   { "arrow_up.frames",                          "1"                     },
3862   { "arrow_down",                               "RocksDC.png"           },
3863   { "arrow_down.xpos",                          "11"                    },
3864   { "arrow_down.ypos",                          "8"                     },
3865   { "arrow_down.frames",                        "1"                     },
3866
3867   { "unknown",                                  "RocksFontEM.png"       },
3868   { "unknown.xpos",                             "15"                    },
3869   { "unknown.ypos",                             "1"                     },
3870   { "unknown.frames",                           "1"                     },
3871
3872   { "trigger_element",                          "RocksDC.png"           },
3873   { "trigger_element.xpos",                     "15"                    },
3874   { "trigger_element.ypos",                     "14"                    },
3875   { "trigger_element.frames",                   "1"                     },
3876
3877   { "trigger_player",                           "RocksDC.png"           },
3878   { "trigger_player.xpos",                      "15"                    },
3879   { "trigger_player.ypos",                      "13"                    },
3880   { "trigger_player.frames",                    "1"                     },
3881
3882   { "trigger_ce_value",                         "RocksDC.png"           },
3883   { "trigger_ce_value.xpos",                    "15"                    },
3884   { "trigger_ce_value.ypos",                    "11"                    },
3885   { "trigger_ce_value.frames",                  "1"                     },
3886
3887   { "trigger_ce_score",                         "RocksDC.png"           },
3888   { "trigger_ce_score.xpos",                    "15"                    },
3889   { "trigger_ce_score.ypos",                    "12"                    },
3890   { "trigger_ce_score.frames",                  "1"                     },
3891
3892   { "current_ce_value",                         "RocksDC.png"           },
3893   { "current_ce_value.xpos",                    "14"                    },
3894   { "current_ce_value.ypos",                    "11"                    },
3895   { "current_ce_value.frames",                  "1"                     },
3896
3897   { "current_ce_score",                         "RocksDC.png"           },
3898   { "current_ce_score.xpos",                    "14"                    },
3899   { "current_ce_score.ypos",                    "12"                    },
3900   { "current_ce_score.frames",                  "1"                     },
3901
3902   { "prev_ce_1",                                "RocksMore.png"         },
3903   { "prev_ce_1.xpos",                           "0"                     },
3904   { "prev_ce_1.ypos",                           "7"                     },
3905   { "prev_ce_1.frames",                         "1"                     },
3906
3907   { "prev_ce_2",                                "RocksMore.png"         },
3908   { "prev_ce_2.xpos",                           "1"                     },
3909   { "prev_ce_2.ypos",                           "7"                     },
3910   { "prev_ce_2.frames",                         "1"                     },
3911
3912   { "prev_ce_3",                                "RocksMore.png"         },
3913   { "prev_ce_3.xpos",                           "2"                     },
3914   { "prev_ce_3.ypos",                           "7"                     },
3915   { "prev_ce_3.frames",                         "1"                     },
3916
3917   { "prev_ce_4",                                "RocksMore.png"         },
3918   { "prev_ce_4.xpos",                           "3"                     },
3919   { "prev_ce_4.ypos",                           "7"                     },
3920   { "prev_ce_4.frames",                         "1"                     },
3921
3922   { "prev_ce_5",                                "RocksMore.png"         },
3923   { "prev_ce_5.xpos",                           "4"                     },
3924   { "prev_ce_5.ypos",                           "7"                     },
3925   { "prev_ce_5.frames",                         "1"                     },
3926
3927   { "prev_ce_6",                                "RocksMore.png"         },
3928   { "prev_ce_6.xpos",                           "5"                     },
3929   { "prev_ce_6.ypos",                           "7"                     },
3930   { "prev_ce_6.frames",                         "1"                     },
3931
3932   { "prev_ce_7",                                "RocksMore.png"         },
3933   { "prev_ce_7.xpos",                           "6"                     },
3934   { "prev_ce_7.ypos",                           "7"                     },
3935   { "prev_ce_7.frames",                         "1"                     },
3936
3937   { "prev_ce_8",                                "RocksMore.png"         },
3938   { "prev_ce_8.xpos",                           "7"                     },
3939   { "prev_ce_8.ypos",                           "7"                     },
3940   { "prev_ce_8.frames",                         "1"                     },
3941
3942   { "next_ce_1",                                "RocksMore.png"         },
3943   { "next_ce_1.xpos",                           "0"                     },
3944   { "next_ce_1.ypos",                           "8"                     },
3945   { "next_ce_1.frames",                         "1"                     },
3946
3947   { "next_ce_2",                                "RocksMore.png"         },
3948   { "next_ce_2.xpos",                           "1"                     },
3949   { "next_ce_2.ypos",                           "8"                     },
3950   { "next_ce_2.frames",                         "1"                     },
3951
3952   { "next_ce_3",                                "RocksMore.png"         },
3953   { "next_ce_3.xpos",                           "2"                     },
3954   { "next_ce_3.ypos",                           "8"                     },
3955   { "next_ce_3.frames",                         "1"                     },
3956
3957   { "next_ce_4",                                "RocksMore.png"         },
3958   { "next_ce_4.xpos",                           "3"                     },
3959   { "next_ce_4.ypos",                           "8"                     },
3960   { "next_ce_4.frames",                         "1"                     },
3961
3962   { "next_ce_5",                                "RocksMore.png"         },
3963   { "next_ce_5.xpos",                           "4"                     },
3964   { "next_ce_5.ypos",                           "8"                     },
3965   { "next_ce_5.frames",                         "1"                     },
3966
3967   { "next_ce_6",                                "RocksMore.png"         },
3968   { "next_ce_6.xpos",                           "5"                     },
3969   { "next_ce_6.ypos",                           "8"                     },
3970   { "next_ce_6.frames",                         "1"                     },
3971
3972   { "next_ce_7",                                "RocksMore.png"         },
3973   { "next_ce_7.xpos",                           "6"                     },
3974   { "next_ce_7.ypos",                           "8"                     },
3975   { "next_ce_7.frames",                         "1"                     },
3976
3977   { "next_ce_8",                                "RocksMore.png"         },
3978   { "next_ce_8.xpos",                           "7"                     },
3979   { "next_ce_8.ypos",                           "8"                     },
3980   { "next_ce_8.frames",                         "1"                     },
3981
3982   { "self",                                     "RocksMore.png"         },
3983   { "self.xpos",                                "8"                     },
3984   { "self.ypos",                                "7"                     },
3985   { "self.frames",                              "1"                     },
3986
3987   { "any_element",                              "RocksMore.png"         },
3988   { "any_element.xpos",                         "9"                     },
3989   { "any_element.ypos",                         "7"                     },
3990   { "any_element.frames",                       "1"                     },
3991
3992   { "emc_key_5",                                "RocksEMC.png"          },
3993   { "emc_key_5.xpos",                           "0"                     },
3994   { "emc_key_5.ypos",                           "5"                     },
3995   { "emc_key_5.frames",                         "1"                     },
3996   { "emc_key_6",                                "RocksEMC.png"          },
3997   { "emc_key_6.xpos",                           "1"                     },
3998   { "emc_key_6.ypos",                           "5"                     },
3999   { "emc_key_6.frames",                         "1"                     },
4000   { "emc_key_7",                                "RocksEMC.png"          },
4001   { "emc_key_7.xpos",                           "2"                     },
4002   { "emc_key_7.ypos",                           "5"                     },
4003   { "emc_key_7.frames",                         "1"                     },
4004   { "emc_key_8",                                "RocksEMC.png"          },
4005   { "emc_key_8.xpos",                           "3"                     },
4006   { "emc_key_8.ypos",                           "5"                     },
4007   { "emc_key_8.frames",                         "1"                     },
4008
4009   { "emc_gate_5",                               "RocksEMC.png"          },
4010   { "emc_gate_5.xpos",                          "0"                     },
4011   { "emc_gate_5.ypos",                          "6"                     },
4012   { "emc_gate_5.frames",                        "1"                     },
4013   { "emc_gate_6",                               "RocksEMC.png"          },
4014   { "emc_gate_6.xpos",                          "1"                     },
4015   { "emc_gate_6.ypos",                          "6"                     },
4016   { "emc_gate_6.frames",                        "1"                     },
4017   { "emc_gate_7",                               "RocksEMC.png"          },
4018   { "emc_gate_7.xpos",                          "2"                     },
4019   { "emc_gate_7.ypos",                          "6"                     },
4020   { "emc_gate_7.frames",                        "1"                     },
4021   { "emc_gate_8",                               "RocksEMC.png"          },
4022   { "emc_gate_8.xpos",                          "3"                     },
4023   { "emc_gate_8.ypos",                          "6"                     },
4024   { "emc_gate_8.frames",                        "1"                     },
4025   { "emc_gate_5_gray",                          "RocksEMC.png"          },
4026   { "emc_gate_5_gray.xpos",                     "4"                     },
4027   { "emc_gate_5_gray.ypos",                     "7"                     },
4028   { "emc_gate_5_gray.frames",                   "1"                     },
4029   { "emc_gate_5_gray.EDITOR",                   "RocksEMC.png"          },
4030   { "emc_gate_5_gray.EDITOR.xpos",              "0"                     },
4031   { "emc_gate_5_gray.EDITOR.ypos",              "7"                     },
4032   { "emc_gate_5_gray.active",                   "RocksEMC.png"          },
4033   { "emc_gate_5_gray.active.xpos",              "0"                     },
4034   { "emc_gate_5_gray.active.ypos",              "6"                     },
4035   { "emc_gate_5_gray.active.frames",            "1"                     },
4036   { "emc_gate_6_gray",                          "RocksEMC.png"          },
4037   { "emc_gate_6_gray.xpos",                     "4"                     },
4038   { "emc_gate_6_gray.ypos",                     "7"                     },
4039   { "emc_gate_6_gray.frames",                   "1"                     },
4040   { "emc_gate_6_gray.EDITOR",                   "RocksEMC.png"          },
4041   { "emc_gate_6_gray.EDITOR.xpos",              "1"                     },
4042   { "emc_gate_6_gray.EDITOR.ypos",              "7"                     },
4043   { "emc_gate_6_gray.active",                   "RocksEMC.png"          },
4044   { "emc_gate_6_gray.active.xpos",              "1"                     },
4045   { "emc_gate_6_gray.active.ypos",              "6"                     },
4046   { "emc_gate_6_gray.active.frames",            "1"                     },
4047   { "emc_gate_7_gray",                          "RocksEMC.png"          },
4048   { "emc_gate_7_gray.xpos",                     "4"                     },
4049   { "emc_gate_7_gray.ypos",                     "7"                     },
4050   { "emc_gate_7_gray.frames",                   "1"                     },
4051   { "emc_gate_7_gray.EDITOR",                   "RocksEMC.png"          },
4052   { "emc_gate_7_gray.EDITOR.xpos",              "2"                     },
4053   { "emc_gate_7_gray.EDITOR.ypos",              "7"                     },
4054   { "emc_gate_7_gray.active",                   "RocksEMC.png"          },
4055   { "emc_gate_7_gray.active.xpos",              "2"                     },
4056   { "emc_gate_7_gray.active.ypos",              "6"                     },
4057   { "emc_gate_7_gray.active.frames",            "1"                     },
4058   { "emc_gate_8_gray",                          "RocksEMC.png"          },
4059   { "emc_gate_8_gray.xpos",                     "4"                     },
4060   { "emc_gate_8_gray.ypos",                     "7"                     },
4061   { "emc_gate_8_gray.frames",                   "1"                     },
4062   { "emc_gate_8_gray.EDITOR",                   "RocksEMC.png"          },
4063   { "emc_gate_8_gray.EDITOR.xpos",              "3"                     },
4064   { "emc_gate_8_gray.EDITOR.ypos",              "7"                     },
4065   { "emc_gate_8_gray.active",                   "RocksEMC.png"          },
4066   { "emc_gate_8_gray.active.xpos",              "3"                     },
4067   { "emc_gate_8_gray.active.ypos",              "6"                     },
4068   { "emc_gate_8_gray.active.frames",            "1"                     },
4069
4070   { "emc_android",                              "RocksEMC.png"          },
4071   { "emc_android.xpos",                         "0"                     },
4072   { "emc_android.ypos",                         "8"                     },
4073   { "emc_android.frames",                       "8"                     },
4074   { "emc_android.delay",                        "2"                     },
4075
4076   { "emc_android.shrinking.upleft",             "RocksEMC.png"          },
4077   { "emc_android.shrinking.upleft.xpos",        "1"                     },
4078   { "emc_android.shrinking.upleft.ypos",        "11"                    },
4079   { "emc_android.shrinking.upleft.frames",      "8"                     },
4080   { "emc_android.shrinking.upleft.anim_mode",   "linear"                },
4081
4082   { "emc_android.growing.downright",            "RocksEMC.png"          },
4083   { "emc_android.growing.downright.xpos",       "0"                     },
4084   { "emc_android.growing.downright.ypos",       "11"                    },
4085   { "emc_android.growing.downright.frames",     "8"                     },
4086   { "emc_android.growing.downright.anim_mode",  "linear,reverse"        },
4087
4088   { "emc_android.shrinking.downleft",           "RocksEMC.png"          },
4089   { "emc_android.shrinking.downleft.xpos",      "1"                     },
4090   { "emc_android.shrinking.downleft.ypos",      "12"                    },
4091   { "emc_android.shrinking.downleft.frames",    "8"                     },
4092   { "emc_android.shrinking.downleft.anim_mode", "linear"                },
4093
4094   { "emc_android.growing.upright",              "RocksEMC.png"          },
4095   { "emc_android.growing.upright.xpos",         "0"                     },
4096   { "emc_android.growing.upright.ypos",         "12"                    },
4097   { "emc_android.growing.upright.frames",       "8"                     },
4098   { "emc_android.growing.upright.anim_mode",    "linear,reverse"        },
4099
4100   { "emc_android.shrinking.upright",            "RocksEMC.png"          },
4101   { "emc_android.shrinking.upright.xpos",       "1"                     },
4102   { "emc_android.shrinking.upright.ypos",       "13"                    },
4103   { "emc_android.shrinking.upright.frames",     "8"                     },
4104   { "emc_android.shrinking.upright.anim_mode",  "linear"                },
4105
4106   { "emc_android.growing.downleft",             "RocksEMC.png"          },
4107   { "emc_android.growing.downleft.xpos",        "0"                     },
4108   { "emc_android.growing.downleft.ypos",        "13"                    },
4109   { "emc_android.growing.downleft.frames",      "8"                     },
4110   { "emc_android.growing.downleft.anim_mode",   "linear,reverse"        },
4111
4112   { "emc_android.shrinking.downright",          "RocksEMC.png"          },
4113   { "emc_android.shrinking.downright.xpos",     "1"                     },
4114   { "emc_android.shrinking.downright.ypos",     "14"                    },
4115   { "emc_android.shrinking.downright.frames",   "8"                     },
4116   { "emc_android.shrinking.downright.anim_mode","linear"                },
4117
4118   { "emc_android.growing.upleft",               "RocksEMC.png"          },
4119   { "emc_android.growing.upleft.xpos",          "0"                     },
4120   { "emc_android.growing.upleft.ypos",          "14"                    },
4121   { "emc_android.growing.upleft.frames",        "8"                     },
4122   { "emc_android.growing.upleft.anim_mode",     "linear,reverse"        },
4123
4124   { "emc_grass",                                "RocksEMC.png"          },
4125   { "emc_grass.xpos",                           "0"                     },
4126   { "emc_grass.ypos",                           "4"                     },
4127   { "emc_grass.frames",                         "1"                     },
4128   { "emc_grass.CRUMBLED",                       "RocksEMC.png"          },
4129   { "emc_grass.CRUMBLED.xpos",                  "1"                     },
4130   { "emc_grass.CRUMBLED.ypos",                  "4"                     },
4131   { "emc_grass.CRUMBLED.frames",                "1"                     },
4132   { "emc_grass.digging.left",                   "RocksEMC.png"          },
4133   { "emc_grass.digging.left.xpos",              "6"                     },
4134   { "emc_grass.digging.left.ypos",              "0"                     },
4135   { "emc_grass.digging.left.frames",            "3"                     },
4136   { "emc_grass.digging.left.delay",             "2"                     },
4137   { "emc_grass.digging.left.anim_mode",         "linear"                },
4138   { "emc_grass.digging.right",                  "RocksEMC.png"          },
4139   { "emc_grass.digging.right.xpos",             "9"                     },
4140   { "emc_grass.digging.right.ypos",             "0"                     },
4141   { "emc_grass.digging.right.frames",           "3"                     },
4142   { "emc_grass.digging.right.delay",            "2"                     },
4143   { "emc_grass.digging.right.anim_mode",        "linear"                },
4144   { "emc_grass.digging.up",                     "RocksEMC.png"          },
4145   { "emc_grass.digging.up.xpos",                "0"                     },
4146   { "emc_grass.digging.up.ypos",                "0"                     },
4147   { "emc_grass.digging.up.frames",              "3"                     },
4148   { "emc_grass.digging.up.delay",               "2"                     },
4149   { "emc_grass.digging.up.anim_mode",           "linear"                },
4150   { "emc_grass.digging.down",                   "RocksEMC.png"          },
4151   { "emc_grass.digging.down.xpos",              "3"                     },
4152   { "emc_grass.digging.down.ypos",              "0"                     },
4153   { "emc_grass.digging.down.frames",            "3"                     },
4154   { "emc_grass.digging.down.delay",             "2"                     },
4155   { "emc_grass.digging.down.anim_mode",         "linear"                },
4156   { "emc_grass.digging.left.CRUMBLED",          "RocksEMC.png"          },
4157   { "emc_grass.digging.left.CRUMBLED.xpos",     "6"                     },
4158   { "emc_grass.digging.left.CRUMBLED.ypos",     "1"                     },
4159   { "emc_grass.digging.left.CRUMBLED.frames",   "3"                     },
4160   { "emc_grass.digging.left.CRUMBLED.delay",    "2"                     },
4161   { "emc_grass.digging.left.CRUMBLED.anim_mode","linear"                },
4162   { "emc_grass.digging.right.CRUMBLED",         "RocksEMC.png"          },
4163   { "emc_grass.digging.right.CRUMBLED.xpos",    "9"                     },
4164   { "emc_grass.digging.right.CRUMBLED.ypos",    "1"                     },
4165   { "emc_grass.digging.right.CRUMBLED.frames",  "3"                     },
4166   { "emc_grass.digging.right.CRUMBLED.delay",   "2"                     },
4167   { "emc_grass.digging.right.CRUMBLED.anim_mode","linear"               },
4168   { "emc_grass.digging.up.CRUMBLED",            "RocksEMC.png"          },
4169   { "emc_grass.digging.up.CRUMBLED.xpos",       "0"                     },
4170   { "emc_grass.digging.up.CRUMBLED.ypos",       "1"                     },
4171   { "emc_grass.digging.up.CRUMBLED.frames",     "3"                     },
4172   { "emc_grass.digging.up.CRUMBLED.delay",      "2"                     },
4173   { "emc_grass.digging.up.CRUMBLED.anim_mode",  "linear"                },
4174   { "emc_grass.digging.down.CRUMBLED",          "RocksEMC.png"          },
4175   { "emc_grass.digging.down.CRUMBLED.xpos",     "3"                     },
4176   { "emc_grass.digging.down.CRUMBLED.ypos",     "1"                     },
4177   { "emc_grass.digging.down.CRUMBLED.frames",   "3"                     },
4178   { "emc_grass.digging.down.CRUMBLED.delay",    "2"                     },
4179   { "emc_grass.digging.down.CRUMBLED.anim_mode","linear"                },
4180
4181   { "emc_magic_ball",                           "RocksEMC.png"          },
4182   { "emc_magic_ball.xpos",                      "0"                     },
4183   { "emc_magic_ball.ypos",                      "9"                     },
4184   { "emc_magic_ball.frames",                    "1"                     },
4185   { "emc_magic_ball.active",                    "RocksEMC.png"          },
4186   { "emc_magic_ball.active.xpos",               "0"                     },
4187   { "emc_magic_ball.active.ypos",               "9"                     },
4188   { "emc_magic_ball.active.frames",             "16"                    },
4189   { "emc_magic_ball.active.frames_per_line",    "8"                     },
4190   { "emc_magic_ball.dropping",                  "RocksElements.png"     },
4191   { "emc_magic_ball.dropping.xpos",             "0"                     },
4192   { "emc_magic_ball.dropping.ypos",             "4"                     },
4193   { "emc_magic_ball.dropping.frames",           "8"                     },
4194   { "emc_magic_ball.dropping.anim_mode",        "linear"                },
4195
4196   { "emc_magic_ball_switch",                    "RocksEMC.png"          },
4197   { "emc_magic_ball_switch.xpos",               "8"                     },
4198   { "emc_magic_ball_switch.ypos",               "10"                    },
4199   { "emc_magic_ball_switch.frames",             "1"                     },
4200   { "emc_magic_ball_switch.active",             "RocksEMC.png"          },
4201   { "emc_magic_ball_switch.active.xpos",        "8"                     },
4202   { "emc_magic_ball_switch.active.ypos",        "9"                     },
4203   { "emc_magic_ball_switch.active.frames",      "1"                     },
4204
4205   { "emc_spring_bumper",                        "RocksEMC.png"          },
4206   { "emc_spring_bumper.xpos",                   "8"                     },
4207   { "emc_spring_bumper.ypos",                   "4"                     },
4208   { "emc_spring_bumper.frames",                 "1"                     },
4209
4210   { "emc_spring_bumper.active",                 "RocksEMC.png"          },
4211   { "emc_spring_bumper.active.xpos",            "8"                     },
4212   { "emc_spring_bumper.active.ypos",            "4"                     },
4213   { "emc_spring_bumper.active.frames",          "4"                     },
4214   { "emc_spring_bumper.active.anim_mode",       "pingpong2"             },
4215
4216   { "emc_plant",                                "RocksEMC.png"          },
4217   { "emc_plant.xpos",                           "4"                     },
4218   { "emc_plant.ypos",                           "4"                     },
4219   { "emc_plant.frames",                         "1"                     },
4220   { "emc_plant.CRUMBLED",                       "RocksEMC.png"          },
4221   { "emc_plant.CRUMBLED.xpos",                  "5"                     },
4222   { "emc_plant.CRUMBLED.ypos",                  "4"                     },
4223   { "emc_plant.CRUMBLED.frames",                "1"                     },
4224
4225   { "emc_lenses",                               "RocksEMC.png"          },
4226   { "emc_lenses.xpos",                          "6"                     },
4227   { "emc_lenses.ypos",                          "4"                     },
4228   { "emc_lenses.frames",                        "1"                     },
4229
4230   { "emc_magnifier",                            "RocksEMC.png"          },
4231   { "emc_magnifier.xpos",                       "7"                     },
4232   { "emc_magnifier.ypos",                       "4"                     },
4233   { "emc_magnifier.frames",                     "1"                     },
4234
4235   { "emc_wall_9",                               "RocksEMC.png"          },
4236   { "emc_wall_9.xpos",                          "10"                    },
4237   { "emc_wall_9.ypos",                          "5"                     },
4238   { "emc_wall_9.frames",                        "1"                     },
4239   { "emc_wall_10",                              "RocksEMC.png"          },
4240   { "emc_wall_10.xpos",                         "10"                    },
4241   { "emc_wall_10.ypos",                         "6"                     },
4242   { "emc_wall_10.frames",                       "1"                     },
4243   { "emc_wall_11",                              "RocksEMC.png"          },
4244   { "emc_wall_11.xpos",                         "11"                    },
4245   { "emc_wall_11.ypos",                         "5"                     },
4246   { "emc_wall_11.frames",                       "1"                     },
4247   { "emc_wall_12",                              "RocksEMC.png"          },
4248   { "emc_wall_12.xpos",                         "11"                    },
4249   { "emc_wall_12.ypos",                         "6"                     },
4250   { "emc_wall_12.frames",                       "1"                     },
4251   { "emc_wall_13",                              "RocksEMC.png"          },
4252   { "emc_wall_13.xpos",                         "10"                    },
4253   { "emc_wall_13.ypos",                         "7"                     },
4254   { "emc_wall_13.frames",                       "1"                     },
4255   { "emc_wall_14",                              "RocksEMC.png"          },
4256   { "emc_wall_14.xpos",                         "10"                    },
4257   { "emc_wall_14.ypos",                         "8"                     },
4258   { "emc_wall_14.frames",                       "1"                     },
4259   { "emc_wall_15",                              "RocksEMC.png"          },
4260   { "emc_wall_15.xpos",                         "10"                    },
4261   { "emc_wall_15.ypos",                         "9"                     },
4262   { "emc_wall_15.frames",                       "1"                     },
4263   { "emc_wall_16",                              "RocksEMC.png"          },
4264   { "emc_wall_16.xpos",                         "10"                    },
4265   { "emc_wall_16.ypos",                         "10"                    },
4266   { "emc_wall_16.frames",                       "1"                     },
4267
4268   { "emc_wall_slippery_1",                      "RocksEMC.png"          },
4269   { "emc_wall_slippery_1.xpos",                 "11"                    },
4270   { "emc_wall_slippery_1.ypos",                 "7"                     },
4271   { "emc_wall_slippery_1.frames",               "1"                     },
4272   { "emc_wall_slippery_2",                      "RocksEMC.png"          },
4273   { "emc_wall_slippery_2.xpos",                 "11"                    },
4274   { "emc_wall_slippery_2.ypos",                 "8"                     },
4275   { "emc_wall_slippery_2.frames",               "1"                     },
4276   { "emc_wall_slippery_3",                      "RocksEMC.png"          },
4277   { "emc_wall_slippery_3.xpos",                 "11"                    },
4278   { "emc_wall_slippery_3.ypos",                 "9"                     },
4279   { "emc_wall_slippery_3.frames",               "1"                     },
4280   { "emc_wall_slippery_4",                      "RocksEMC.png"          },
4281   { "emc_wall_slippery_4.xpos",                 "11"                    },
4282   { "emc_wall_slippery_4.ypos",                 "10"                    },
4283   { "emc_wall_slippery_4.frames",               "1"                     },
4284
4285   { "emc_fake_grass",                           "RocksEMC.png"          },
4286   { "emc_fake_grass.xpos",                      "0"                     },
4287   { "emc_fake_grass.ypos",                      "4"                     },
4288   { "emc_fake_grass.frames",                    "1"                     },
4289   { "emc_fake_grass.CRUMBLED",                  "RocksEMC.png"          },
4290   { "emc_fake_grass.CRUMBLED.xpos",             "1"                     },
4291   { "emc_fake_grass.CRUMBLED.ypos",             "4"                     },
4292   { "emc_fake_grass.CRUMBLED.frames",           "1"                     },
4293   { "emc_fake_grass.active",                    "RocksEMC.png"          },
4294   { "emc_fake_grass.active.xpos",               "2"                     },
4295   { "emc_fake_grass.active.ypos",               "4"                     },
4296   { "emc_fake_grass.active.frames",             "1"                     },
4297   { "emc_fake_grass.active.CRUMBLED",           "RocksEMC.png"          },
4298   { "emc_fake_grass.active.CRUMBLED.xpos",      "3"                     },
4299   { "emc_fake_grass.active.CRUMBLED.ypos",      "4"                     },
4300   { "emc_fake_grass.active.CRUMBLED.frames",    "1"                     },
4301   { "emc_fake_grass.EDITOR",                    "RocksEMC.png"          },
4302   { "emc_fake_grass.EDITOR.xpos",               "2"                     },
4303   { "emc_fake_grass.EDITOR.ypos",               "4"                     },
4304   { "emc_fake_grass.EDITOR.frames",             "1"                     },
4305
4306   { "emc_fake_acid",                            "RocksElements.png"     },
4307   { "emc_fake_acid.xpos",                       "12"                    },
4308   { "emc_fake_acid.ypos",                       "7"                     },
4309   { "emc_fake_acid.frames",                     "4"                     },
4310   { "emc_fake_acid.delay",                      "10"                    },
4311   { "emc_fake_acid.global_sync",                "true"                  },
4312
4313   { "emc_dripper",                              "RocksSP.png"           },
4314   { "emc_dripper.xpos",                         "0"                     },
4315   { "emc_dripper.ypos",                         "0"                     },
4316   { "emc_dripper.frames",                       "1"                     },
4317   { "emc_dripper.EDITOR",                       "RocksEMC.png"          },
4318   { "emc_dripper.EDITOR.xpos",                  "8"                     },
4319   { "emc_dripper.EDITOR.ypos",                  "8"                     },
4320   { "emc_dripper.active",                       "RocksEMC.png"          },
4321   { "emc_dripper.active.xpos",                  "8"                     },
4322   { "emc_dripper.active.ypos",                  "8"                     },
4323   { "emc_dripper.active.frames",                "1"                     },
4324
4325   { "mm_mcduffin",                              "RocksMM.png"           },
4326   { "mm_mcduffin.xpos",                         "4"                     },
4327   { "mm_mcduffin.ypos",                         "1"                     },
4328   { "mm_mcduffin.frames",                       "4"                     },
4329   { "mm_mcduffin.delay",                        "8"                     },
4330   { "mm_mcduffin.right",                        "RocksMM.png"           },
4331   { "mm_mcduffin.right.xpos",                   "4"                     },
4332   { "mm_mcduffin.right.ypos",                   "1"                     },
4333   { "mm_mcduffin.right.frames",                 "1"                     },
4334   { "mm_mcduffin.up",                           "RocksMM.png"           },
4335   { "mm_mcduffin.up.xpos",                      "5"                     },
4336   { "mm_mcduffin.up.ypos",                      "1"                     },
4337   { "mm_mcduffin.up.frames",                    "1"                     },
4338   { "mm_mcduffin.left",                         "RocksMM.png"           },
4339   { "mm_mcduffin.left.xpos",                    "6"                     },
4340   { "mm_mcduffin.left.ypos",                    "1"                     },
4341   { "mm_mcduffin.left.frames",                  "1"                     },
4342   { "mm_mcduffin.down",                         "RocksMM.png"           },
4343   { "mm_mcduffin.down.xpos",                    "7"                     },
4344   { "mm_mcduffin.down.ypos",                    "1"                     },
4345   { "mm_mcduffin.down.frames",                  "1"                     },
4346
4347   { "mm_exit_closed",                           "RocksMM.png"           },
4348   { "mm_exit_closed.xpos",                      "8"                     },
4349   { "mm_exit_closed.ypos",                      "1"                     },
4350   { "mm_exit_closed.frames",                    "1"                     },
4351   { "mm_exit.opening",                          "RocksMM.png"           },
4352   { "mm_exit.opening.xpos",                     "8"                     },
4353   { "mm_exit.opening.ypos",                     "1"                     },
4354   { "mm_exit.opening.frames",                   "4"                     },
4355   { "mm_exit.opening.delay",                    "6"                     },
4356   { "mm_exit.opening.anim_mode",                "linear"                },
4357   { "mm_exit_open",                             "RocksMM.png"           },
4358   { "mm_exit_open.xpos",                        "11"                    },
4359   { "mm_exit_open.ypos",                        "1"                     },
4360   { "mm_exit_open.frames",                      "1"                     },
4361   { "mm_exit.closing",                          "RocksMM.png"           },
4362   { "mm_exit.closing.xpos",                     "8"                     },
4363   { "mm_exit.closing.ypos",                     "1"                     },
4364   { "mm_exit.closing.frames",                   "4"                     },
4365   { "mm_exit.closing.delay",                    "6"                     },
4366   { "mm_exit.closing.anim_mode",                "linear,reverse"        },
4367
4368   { "mm_mirror_1",                              "RocksMM.png"           },
4369   { "mm_mirror_1.xpos",                         "0"                     },
4370   { "mm_mirror_1.ypos",                         "0"                     },
4371   { "mm_mirror_1.frames",                       "1"                     },
4372   { "mm_mirror_2",                              "RocksMM.png"           },
4373   { "mm_mirror_2.xpos",                         "1"                     },
4374   { "mm_mirror_2.ypos",                         "0"                     },
4375   { "mm_mirror_2.frames",                       "1"                     },
4376   { "mm_mirror_3",                              "RocksMM.png"           },
4377   { "mm_mirror_3.xpos",                         "2"                     },
4378   { "mm_mirror_3.ypos",                         "0"                     },
4379   { "mm_mirror_3.frames",                       "1"                     },
4380   { "mm_mirror_4",                              "RocksMM.png"           },
4381   { "mm_mirror_4.xpos",                         "3"                     },
4382   { "mm_mirror_4.ypos",                         "0"                     },
4383   { "mm_mirror_4.frames",                       "1"                     },
4384   { "mm_mirror_5",                              "RocksMM.png"           },
4385   { "mm_mirror_5.xpos",                         "4"                     },
4386   { "mm_mirror_5.ypos",                         "0"                     },
4387   { "mm_mirror_5.frames",                       "1"                     },
4388   { "mm_mirror_6",                              "RocksMM.png"           },
4389   { "mm_mirror_6.xpos",                         "5"                     },
4390   { "mm_mirror_6.ypos",                         "0"                     },
4391   { "mm_mirror_6.frames",                       "1"                     },
4392   { "mm_mirror_7",                              "RocksMM.png"           },
4393   { "mm_mirror_7.xpos",                         "6"                     },
4394   { "mm_mirror_7.ypos",                         "0"                     },
4395   { "mm_mirror_7.frames",                       "1"                     },
4396   { "mm_mirror_8",                              "RocksMM.png"           },
4397   { "mm_mirror_8.xpos",                         "7"                     },
4398   { "mm_mirror_8.ypos",                         "0"                     },
4399   { "mm_mirror_8.frames",                       "1"                     },
4400   { "mm_mirror_9",                              "RocksMM.png"           },
4401   { "mm_mirror_9.xpos",                         "8"                     },
4402   { "mm_mirror_9.ypos",                         "0"                     },
4403   { "mm_mirror_9.frames",                       "1"                     },
4404   { "mm_mirror_10",                             "RocksMM.png"           },
4405   { "mm_mirror_10.xpos",                        "9"                     },
4406   { "mm_mirror_10.ypos",                        "0"                     },
4407   { "mm_mirror_10.frames",                      "1"                     },
4408   { "mm_mirror_11",                             "RocksMM.png"           },
4409   { "mm_mirror_11.xpos",                        "10"                    },
4410   { "mm_mirror_11.ypos",                        "0"                     },
4411   { "mm_mirror_11.frames",                      "1"                     },
4412   { "mm_mirror_12",                             "RocksMM.png"           },
4413   { "mm_mirror_12.xpos",                        "11"                    },
4414   { "mm_mirror_12.ypos",                        "0"                     },
4415   { "mm_mirror_12.frames",                      "1"                     },
4416   { "mm_mirror_13",                             "RocksMM.png"           },
4417   { "mm_mirror_13.xpos",                        "12"                    },
4418   { "mm_mirror_13.ypos",                        "0"                     },
4419   { "mm_mirror_13.frames",                      "1"                     },
4420   { "mm_mirror_14",                             "RocksMM.png"           },
4421   { "mm_mirror_14.xpos",                        "13"                    },
4422   { "mm_mirror_14.ypos",                        "0"                     },
4423   { "mm_mirror_14.frames",                      "1"                     },
4424   { "mm_mirror_15",                             "RocksMM.png"           },
4425   { "mm_mirror_15.xpos",                        "14"                    },
4426   { "mm_mirror_15.ypos",                        "0"                     },
4427   { "mm_mirror_15.frames",                      "1"                     },
4428   { "mm_mirror_16",                             "RocksMM.png"           },
4429   { "mm_mirror_16.xpos",                        "15"                    },
4430   { "mm_mirror_16.ypos",                        "0"                     },
4431   { "mm_mirror_16.frames",                      "1"                     },
4432
4433   { "mm_mirror_fixed_1",                        "RocksMM.png"           },
4434   { "mm_mirror_fixed_1.xpos",                   "4"                     },
4435   { "mm_mirror_fixed_1.ypos",                   "6"                     },
4436   { "mm_mirror_fixed_1.frames",                 "1"                     },
4437   { "mm_mirror_fixed_2",                        "RocksMM.png"           },
4438   { "mm_mirror_fixed_2.xpos",                   "5"                     },
4439   { "mm_mirror_fixed_2.ypos",                   "6"                     },
4440   { "mm_mirror_fixed_2.frames",                 "1"                     },
4441   { "mm_mirror_fixed_3",                        "RocksMM.png"           },
4442   { "mm_mirror_fixed_3.xpos",                   "6"                     },
4443   { "mm_mirror_fixed_3.ypos",                   "6"                     },
4444   { "mm_mirror_fixed_3.frames",                 "1"                     },
4445   { "mm_mirror_fixed_4",                        "RocksMM.png"           },
4446   { "mm_mirror_fixed_4.xpos",                   "7"                     },
4447   { "mm_mirror_fixed_4.ypos",                   "6"                     },
4448   { "mm_mirror_fixed_4.frames",                 "1"                     },
4449
4450   { "mm_steel_grid_fixed_1",                    "RocksMM.png"           },
4451   { "mm_steel_grid_fixed_1.xpos",               "0"                     },
4452   { "mm_steel_grid_fixed_1.ypos",               "1"                     },
4453   { "mm_steel_grid_fixed_1.frames",             "1"                     },
4454   { "mm_steel_grid_fixed_2",                    "RocksMM.png"           },
4455   { "mm_steel_grid_fixed_2.xpos",               "1"                     },
4456   { "mm_steel_grid_fixed_2.ypos",               "1"                     },
4457   { "mm_steel_grid_fixed_2.frames",             "1"                     },
4458   { "mm_steel_grid_fixed_3",                    "RocksMM.png"           },
4459   { "mm_steel_grid_fixed_3.xpos",               "2"                     },
4460   { "mm_steel_grid_fixed_3.ypos",               "1"                     },
4461   { "mm_steel_grid_fixed_3.frames",             "1"                     },
4462   { "mm_steel_grid_fixed_4",                    "RocksMM.png"           },
4463   { "mm_steel_grid_fixed_4.xpos",               "3"                     },
4464   { "mm_steel_grid_fixed_4.ypos",               "1"                     },
4465   { "mm_steel_grid_fixed_4.frames",             "1"                     },
4466
4467   { "mm_wooden_grid_fixed_1",                   "RocksMM.png"           },
4468   { "mm_wooden_grid_fixed_1.xpos",              "12"                    },
4469   { "mm_wooden_grid_fixed_1.ypos",              "6"                     },
4470   { "mm_wooden_grid_fixed_1.frames",            "1"                     },
4471   { "mm_wooden_grid_fixed_2",                   "RocksMM.png"           },
4472   { "mm_wooden_grid_fixed_2.xpos",              "13"                    },
4473   { "mm_wooden_grid_fixed_2.ypos",              "6"                     },
4474   { "mm_wooden_grid_fixed_2.frames",            "1"                     },
4475   { "mm_wooden_grid_fixed_3",                   "RocksMM.png"           },
4476   { "mm_wooden_grid_fixed_3.xpos",              "14"                    },
4477   { "mm_wooden_grid_fixed_3.ypos",              "6"                     },
4478   { "mm_wooden_grid_fixed_3.frames",            "1"                     },
4479   { "mm_wooden_grid_fixed_4",                   "RocksMM.png"           },
4480   { "mm_wooden_grid_fixed_4.xpos",              "15"                    },
4481   { "mm_wooden_grid_fixed_4.ypos",              "6"                     },
4482   { "mm_wooden_grid_fixed_4.frames",            "1"                     },
4483
4484   { "mm_polarizer_1",                           "RocksMM.png"           },
4485   { "mm_polarizer_1.xpos",                      "0"                     },
4486   { "mm_polarizer_1.ypos",                      "5"                     },
4487   { "mm_polarizer_1.frames",                    "1"                     },
4488   { "mm_polarizer_2",                           "RocksMM.png"           },
4489   { "mm_polarizer_2.xpos",                      "1"                     },
4490   { "mm_polarizer_2.ypos",                      "5"                     },
4491   { "mm_polarizer_2.frames",                    "1"                     },
4492   { "mm_polarizer_3",                           "RocksMM.png"           },
4493   { "mm_polarizer_3.xpos",                      "2"                     },
4494   { "mm_polarizer_3.ypos",                      "5"                     },
4495   { "mm_polarizer_3.frames",                    "1"                     },
4496   { "mm_polarizer_4",                           "RocksMM.png"           },
4497   { "mm_polarizer_4.xpos",                      "3"                     },
4498   { "mm_polarizer_4.ypos",                      "5"                     },
4499   { "mm_polarizer_4.frames",                    "1"                     },
4500   { "mm_polarizer_5",                           "RocksMM.png"           },
4501   { "mm_polarizer_5.xpos",                      "4"                     },
4502   { "mm_polarizer_5.ypos",                      "5"                     },
4503   { "mm_polarizer_5.frames",                    "1"                     },
4504   { "mm_polarizer_6",                           "RocksMM.png"           },
4505   { "mm_polarizer_6.xpos",                      "5"                     },
4506   { "mm_polarizer_6.ypos",                      "5"                     },
4507   { "mm_polarizer_6.frames",                    "1"                     },
4508   { "mm_polarizer_7",                           "RocksMM.png"           },
4509   { "mm_polarizer_7.xpos",                      "6"                     },
4510   { "mm_polarizer_7.ypos",                      "5"                     },
4511   { "mm_polarizer_7.frames",                    "1"                     },
4512   { "mm_polarizer_8",                           "RocksMM.png"           },
4513   { "mm_polarizer_8.xpos",                      "7"                     },
4514   { "mm_polarizer_8.ypos",                      "5"                     },
4515   { "mm_polarizer_8.frames",                    "1"                     },
4516   { "mm_polarizer_9",                           "RocksMM.png"           },
4517   { "mm_polarizer_9.xpos",                      "8"                     },
4518   { "mm_polarizer_9.ypos",                      "5"                     },
4519   { "mm_polarizer_9.frames",                    "1"                     },
4520   { "mm_polarizer_10",                          "RocksMM.png"           },
4521   { "mm_polarizer_10.xpos",                     "9"                     },
4522   { "mm_polarizer_10.ypos",                     "5"                     },
4523   { "mm_polarizer_10.frames",                   "1"                     },
4524   { "mm_polarizer_11",                          "RocksMM.png"           },
4525   { "mm_polarizer_11.xpos",                     "10"                    },
4526   { "mm_polarizer_11.ypos",                     "5"                     },
4527   { "mm_polarizer_11.frames",                   "1"                     },
4528   { "mm_polarizer_12",                          "RocksMM.png"           },
4529   { "mm_polarizer_12.xpos",                     "11"                    },
4530   { "mm_polarizer_12.ypos",                     "5"                     },
4531   { "mm_polarizer_12.frames",                   "1"                     },
4532   { "mm_polarizer_13",                          "RocksMM.png"           },
4533   { "mm_polarizer_13.xpos",                     "12"                    },
4534   { "mm_polarizer_13.ypos",                     "5"                     },
4535   { "mm_polarizer_13.frames",                   "1"                     },
4536   { "mm_polarizer_14",                          "RocksMM.png"           },
4537   { "mm_polarizer_14.xpos",                     "13"                    },
4538   { "mm_polarizer_14.ypos",                     "5"                     },
4539   { "mm_polarizer_14.frames",                   "1"                     },
4540   { "mm_polarizer_15",                          "RocksMM.png"           },
4541   { "mm_polarizer_15.xpos",                     "14"                    },
4542   { "mm_polarizer_15.ypos",                     "5"                     },
4543   { "mm_polarizer_15.frames",                   "1"                     },
4544   { "mm_polarizer_16",                          "RocksMM.png"           },
4545   { "mm_polarizer_16.xpos",                     "15"                    },
4546   { "mm_polarizer_16.ypos",                     "5"                     },
4547   { "mm_polarizer_16.frames",                   "1"                     },
4548
4549   { "mm_polarizer_cross_1",                     "RocksMM.png"           },
4550   { "mm_polarizer_cross_1.xpos",                "0"                     },
4551   { "mm_polarizer_cross_1.ypos",                "6"                     },
4552   { "mm_polarizer_cross_1.frames",              "1"                     },
4553   { "mm_polarizer_cross_2",                     "RocksMM.png"           },
4554   { "mm_polarizer_cross_2.xpos",                "1"                     },
4555   { "mm_polarizer_cross_2.ypos",                "6"                     },
4556   { "mm_polarizer_cross_2.frames",              "1"                     },
4557   { "mm_polarizer_cross_3",                     "RocksMM.png"           },
4558   { "mm_polarizer_cross_3.xpos",                "2"                     },
4559   { "mm_polarizer_cross_3.ypos",                "6"                     },
4560   { "mm_polarizer_cross_3.frames",              "1"                     },
4561   { "mm_polarizer_cross_4",                     "RocksMM.png"           },
4562   { "mm_polarizer_cross_4.xpos",                "3"                     },
4563   { "mm_polarizer_cross_4.ypos",                "6"                     },
4564   { "mm_polarizer_cross_4.frames",              "1"                     },
4565
4566   { "mm_teleporter_1",                          "RocksMM.png"           },
4567   { "mm_teleporter_1.xpos",                     "0"                     },
4568   { "mm_teleporter_1.ypos",                     "3"                     },
4569   { "mm_teleporter_1.frames",                   "1"                     },
4570   { "mm_teleporter_2",                          "RocksMM.png"           },
4571   { "mm_teleporter_2.xpos",                     "1"                     },
4572   { "mm_teleporter_2.ypos",                     "3"                     },
4573   { "mm_teleporter_2.frames",                   "1"                     },
4574   { "mm_teleporter_3",                          "RocksMM.png"           },
4575   { "mm_teleporter_3.xpos",                     "2"                     },
4576   { "mm_teleporter_3.ypos",                     "3"                     },
4577   { "mm_teleporter_3.frames",                   "1"                     },
4578   { "mm_teleporter_4",                          "RocksMM.png"           },
4579   { "mm_teleporter_4.xpos",                     "3"                     },
4580   { "mm_teleporter_4.ypos",                     "3"                     },
4581   { "mm_teleporter_4.frames",                   "1"                     },
4582   { "mm_teleporter_5",                          "RocksMM.png"           },
4583   { "mm_teleporter_5.xpos",                     "4"                     },
4584   { "mm_teleporter_5.ypos",                     "3"                     },
4585   { "mm_teleporter_5.frames",                   "1"                     },
4586   { "mm_teleporter_6",                          "RocksMM.png"           },
4587   { "mm_teleporter_6.xpos",                     "5"                     },
4588   { "mm_teleporter_6.ypos",                     "3"                     },
4589   { "mm_teleporter_6.frames",                   "1"                     },
4590   { "mm_teleporter_7",                          "RocksMM.png"           },
4591   { "mm_teleporter_7.xpos",                     "6"                     },
4592   { "mm_teleporter_7.ypos",                     "3"                     },
4593   { "mm_teleporter_7.frames",                   "1"                     },
4594   { "mm_teleporter_8",                          "RocksMM.png"           },
4595   { "mm_teleporter_8.xpos",                     "7"                     },
4596   { "mm_teleporter_8.ypos",                     "3"                     },
4597   { "mm_teleporter_8.frames",                   "1"                     },
4598   { "mm_teleporter_9",                          "RocksMM.png"           },
4599   { "mm_teleporter_9.xpos",                     "8"                     },
4600   { "mm_teleporter_9.ypos",                     "3"                     },
4601   { "mm_teleporter_9.frames",                   "1"                     },
4602   { "mm_teleporter_10",                         "RocksMM.png"           },
4603   { "mm_teleporter_10.xpos",                    "9"                     },
4604   { "mm_teleporter_10.ypos",                    "3"                     },
4605   { "mm_teleporter_10.frames",                  "1"                     },
4606   { "mm_teleporter_11",                         "RocksMM.png"           },
4607   { "mm_teleporter_11.xpos",                    "10"                    },
4608   { "mm_teleporter_11.ypos",                    "3"                     },
4609   { "mm_teleporter_11.frames",                  "1"                     },
4610   { "mm_teleporter_12",                         "RocksMM.png"           },
4611   { "mm_teleporter_12.xpos",                    "11"                    },
4612   { "mm_teleporter_12.ypos",                    "3"                     },
4613   { "mm_teleporter_12.frames",                  "1"                     },
4614   { "mm_teleporter_13",                         "RocksMM.png"           },
4615   { "mm_teleporter_13.xpos",                    "12"                    },
4616   { "mm_teleporter_13.ypos",                    "3"                     },
4617   { "mm_teleporter_13.frames",                  "1"                     },
4618   { "mm_teleporter_14",                         "RocksMM.png"           },
4619   { "mm_teleporter_14.xpos",                    "13"                    },
4620   { "mm_teleporter_14.ypos",                    "3"                     },
4621   { "mm_teleporter_14.frames",                  "1"                     },
4622   { "mm_teleporter_15",                         "RocksMM.png"           },
4623   { "mm_teleporter_15.xpos",                    "14"                    },
4624   { "mm_teleporter_15.ypos",                    "3"                     },
4625   { "mm_teleporter_15.frames",                  "1"                     },
4626   { "mm_teleporter_16",                         "RocksMM.png"           },
4627   { "mm_teleporter_16.xpos",                    "15"                    },
4628   { "mm_teleporter_16.ypos",                    "3"                     },
4629   { "mm_teleporter_16.frames",                  "1"                     },
4630
4631   { "mm_teleporter_red_1",                      "RocksDF.png"           },
4632   { "mm_teleporter_red_1.xpos",                 "0"                     },
4633   { "mm_teleporter_red_1.ypos",                 "4"                     },
4634   { "mm_teleporter_red_1.frames",               "1"                     },
4635   { "mm_teleporter_red_2",                      "RocksDF.png"           },
4636   { "mm_teleporter_red_2.xpos",                 "1"                     },
4637   { "mm_teleporter_red_2.ypos",                 "4"                     },
4638   { "mm_teleporter_red_2.frames",               "1"                     },
4639   { "mm_teleporter_red_3",                      "RocksDF.png"           },
4640   { "mm_teleporter_red_3.xpos",                 "2"                     },
4641   { "mm_teleporter_red_3.ypos",                 "4"                     },
4642   { "mm_teleporter_red_3.frames",               "1"                     },
4643   { "mm_teleporter_red_4",                      "RocksDF.png"           },
4644   { "mm_teleporter_red_4.xpos",                 "3"                     },
4645   { "mm_teleporter_red_4.ypos",                 "4"                     },
4646   { "mm_teleporter_red_4.frames",               "1"                     },
4647   { "mm_teleporter_red_5",                      "RocksDF.png"           },
4648   { "mm_teleporter_red_5.xpos",                 "4"                     },
4649   { "mm_teleporter_red_5.ypos",                 "4"                     },
4650   { "mm_teleporter_red_5.frames",               "1"                     },
4651   { "mm_teleporter_red_6",                      "RocksDF.png"           },
4652   { "mm_teleporter_red_6.xpos",                 "5"                     },
4653   { "mm_teleporter_red_6.ypos",                 "4"                     },
4654   { "mm_teleporter_red_6.frames",               "1"                     },
4655   { "mm_teleporter_red_7",                      "RocksDF.png"           },
4656   { "mm_teleporter_red_7.xpos",                 "6"                     },
4657   { "mm_teleporter_red_7.ypos",                 "4"                     },
4658   { "mm_teleporter_red_7.frames",               "1"                     },
4659   { "mm_teleporter_red_8",                      "RocksDF.png"           },
4660   { "mm_teleporter_red_8.xpos",                 "7"                     },
4661   { "mm_teleporter_red_8.ypos",                 "4"                     },
4662   { "mm_teleporter_red_8.frames",               "1"                     },
4663   { "mm_teleporter_red_9",                      "RocksDF.png"           },
4664   { "mm_teleporter_red_9.xpos",                 "8"                     },
4665   { "mm_teleporter_red_9.ypos",                 "4"                     },
4666   { "mm_teleporter_red_9.frames",               "1"                     },
4667   { "mm_teleporter_red_10",                     "RocksDF.png"           },
4668   { "mm_teleporter_red_10.xpos",                "9"                     },
4669   { "mm_teleporter_red_10.ypos",                "4"                     },
4670   { "mm_teleporter_red_10.frames",              "1"                     },
4671   { "mm_teleporter_red_11",                     "RocksDF.png"           },
4672   { "mm_teleporter_red_11.xpos",                "10"                    },
4673   { "mm_teleporter_red_11.ypos",                "4"                     },
4674   { "mm_teleporter_red_11.frames",              "1"                     },
4675   { "mm_teleporter_red_12",                     "RocksDF.png"           },
4676   { "mm_teleporter_red_12.xpos",                "11"                    },
4677   { "mm_teleporter_red_12.ypos",                "4"                     },
4678   { "mm_teleporter_red_12.frames",              "1"                     },
4679   { "mm_teleporter_red_13",                     "RocksDF.png"           },
4680   { "mm_teleporter_red_13.xpos",                "12"                    },
4681   { "mm_teleporter_red_13.ypos",                "4"                     },
4682   { "mm_teleporter_red_13.frames",              "1"                     },
4683   { "mm_teleporter_red_14",                     "RocksDF.png"           },
4684   { "mm_teleporter_red_14.xpos",                "13"                    },
4685   { "mm_teleporter_red_14.ypos",                "4"                     },
4686   { "mm_teleporter_red_14.frames",              "1"                     },
4687   { "mm_teleporter_red_15",                     "RocksDF.png"           },
4688   { "mm_teleporter_red_15.xpos",                "14"                    },
4689   { "mm_teleporter_red_15.ypos",                "4"                     },
4690   { "mm_teleporter_red_15.frames",              "1"                     },
4691   { "mm_teleporter_red_16",                     "RocksDF.png"           },
4692   { "mm_teleporter_red_16.xpos",                "15"                    },
4693   { "mm_teleporter_red_16.ypos",                "4"                     },
4694   { "mm_teleporter_red_16.frames",              "1"                     },
4695
4696   { "mm_teleporter_yellow_1",                   "RocksDF.png"           },
4697   { "mm_teleporter_yellow_1.xpos",              "0"                     },
4698   { "mm_teleporter_yellow_1.ypos",              "5"                     },
4699   { "mm_teleporter_yellow_1.frames",            "1"                     },
4700   { "mm_teleporter_yellow_2",                   "RocksDF.png"           },
4701   { "mm_teleporter_yellow_2.xpos",              "1"                     },
4702   { "mm_teleporter_yellow_2.ypos",              "5"                     },
4703   { "mm_teleporter_yellow_2.frames",            "1"                     },
4704   { "mm_teleporter_yellow_3",                   "RocksDF.png"           },
4705   { "mm_teleporter_yellow_3.xpos",              "2"                     },
4706   { "mm_teleporter_yellow_3.ypos",              "5"                     },
4707   { "mm_teleporter_yellow_3.frames",            "1"                     },
4708   { "mm_teleporter_yellow_4",                   "RocksDF.png"           },
4709   { "mm_teleporter_yellow_4.xpos",              "3"                     },
4710   { "mm_teleporter_yellow_4.ypos",              "5"                     },
4711   { "mm_teleporter_yellow_4.frames",            "1"                     },
4712   { "mm_teleporter_yellow_5",                   "RocksDF.png"           },
4713   { "mm_teleporter_yellow_5.xpos",              "4"                     },
4714   { "mm_teleporter_yellow_5.ypos",              "5"                     },
4715   { "mm_teleporter_yellow_5.frames",            "1"                     },
4716   { "mm_teleporter_yellow_6",                   "RocksDF.png"           },
4717   { "mm_teleporter_yellow_6.xpos",              "5"                     },
4718   { "mm_teleporter_yellow_6.ypos",              "5"                     },
4719   { "mm_teleporter_yellow_6.frames",            "1"                     },
4720   { "mm_teleporter_yellow_7",                   "RocksDF.png"           },
4721   { "mm_teleporter_yellow_7.xpos",              "6"                     },
4722   { "mm_teleporter_yellow_7.ypos",              "5"                     },
4723   { "mm_teleporter_yellow_7.frames",            "1"                     },
4724   { "mm_teleporter_yellow_8",                   "RocksDF.png"           },
4725   { "mm_teleporter_yellow_8.xpos",              "7"                     },
4726   { "mm_teleporter_yellow_8.ypos",              "5"                     },
4727   { "mm_teleporter_yellow_8.frames",            "1"                     },
4728   { "mm_teleporter_yellow_9",                   "RocksDF.png"           },
4729   { "mm_teleporter_yellow_9.xpos",              "8"                     },
4730   { "mm_teleporter_yellow_9.ypos",              "5"                     },
4731   { "mm_teleporter_yellow_9.frames",            "1"                     },
4732   { "mm_teleporter_yellow_10",                  "RocksDF.png"           },
4733   { "mm_teleporter_yellow_10.xpos",             "9"                     },
4734   { "mm_teleporter_yellow_10.ypos",             "5"                     },
4735   { "mm_teleporter_yellow_10.frames",           "1"                     },
4736   { "mm_teleporter_yellow_11",                  "RocksDF.png"           },
4737   { "mm_teleporter_yellow_11.xpos",             "10"                    },
4738   { "mm_teleporter_yellow_11.ypos",             "5"                     },
4739   { "mm_teleporter_yellow_11.frames",           "1"                     },
4740   { "mm_teleporter_yellow_12",                  "RocksDF.png"           },
4741   { "mm_teleporter_yellow_12.xpos",             "11"                    },
4742   { "mm_teleporter_yellow_12.ypos",             "5"                     },
4743   { "mm_teleporter_yellow_12.frames",           "1"                     },
4744   { "mm_teleporter_yellow_13",                  "RocksDF.png"           },
4745   { "mm_teleporter_yellow_13.xpos",             "12"                    },
4746   { "mm_teleporter_yellow_13.ypos",             "5"                     },
4747   { "mm_teleporter_yellow_13.frames",           "1"                     },
4748   { "mm_teleporter_yellow_14",                  "RocksDF.png"           },
4749   { "mm_teleporter_yellow_14.xpos",             "13"                    },
4750   { "mm_teleporter_yellow_14.ypos",             "5"                     },
4751   { "mm_teleporter_yellow_14.frames",           "1"                     },
4752   { "mm_teleporter_yellow_15",                  "RocksDF.png"           },
4753   { "mm_teleporter_yellow_15.xpos",             "14"                    },
4754   { "mm_teleporter_yellow_15.ypos",             "5"                     },
4755   { "mm_teleporter_yellow_15.frames",           "1"                     },
4756   { "mm_teleporter_yellow_16",                  "RocksDF.png"           },
4757   { "mm_teleporter_yellow_16.xpos",             "15"                    },
4758   { "mm_teleporter_yellow_16.ypos",             "5"                     },
4759   { "mm_teleporter_yellow_16.frames",           "1"                     },
4760
4761   { "mm_teleporter_green_1",                    "RocksDF.png"           },
4762   { "mm_teleporter_green_1.xpos",               "0"                     },
4763   { "mm_teleporter_green_1.ypos",               "6"                     },
4764   { "mm_teleporter_green_1.frames",             "1"                     },
4765   { "mm_teleporter_green_2",                    "RocksDF.png"           },
4766   { "mm_teleporter_green_2.xpos",               "1"                     },
4767   { "mm_teleporter_green_2.ypos",               "6"                     },
4768   { "mm_teleporter_green_2.frames",             "1"                     },
4769   { "mm_teleporter_green_3",                    "RocksDF.png"           },
4770   { "mm_teleporter_green_3.xpos",               "2"                     },
4771   { "mm_teleporter_green_3.ypos",               "6"                     },
4772   { "mm_teleporter_green_3.frames",             "1"                     },
4773   { "mm_teleporter_green_4",                    "RocksDF.png"           },
4774   { "mm_teleporter_green_4.xpos",               "3"                     },
4775   { "mm_teleporter_green_4.ypos",               "6"                     },
4776   { "mm_teleporter_green_4.frames",             "1"                     },
4777   { "mm_teleporter_green_5",                    "RocksDF.png"           },
4778   { "mm_teleporter_green_5.xpos",               "4"                     },
4779   { "mm_teleporter_green_5.ypos",               "6"                     },
4780   { "mm_teleporter_green_5.frames",             "1"                     },
4781   { "mm_teleporter_green_6",                    "RocksDF.png"           },
4782   { "mm_teleporter_green_6.xpos",               "5"                     },
4783   { "mm_teleporter_green_6.ypos",               "6"                     },
4784   { "mm_teleporter_green_6.frames",             "1"                     },
4785   { "mm_teleporter_green_7",                    "RocksDF.png"           },
4786   { "mm_teleporter_green_7.xpos",               "6"                     },
4787   { "mm_teleporter_green_7.ypos",               "6"                     },
4788   { "mm_teleporter_green_7.frames",             "1"                     },
4789   { "mm_teleporter_green_8",                    "RocksDF.png"           },
4790   { "mm_teleporter_green_8.xpos",               "7"                     },
4791   { "mm_teleporter_green_8.ypos",               "6"                     },
4792   { "mm_teleporter_green_8.frames",             "1"                     },
4793   { "mm_teleporter_green_9",                    "RocksDF.png"           },
4794   { "mm_teleporter_green_9.xpos",               "8"                     },
4795   { "mm_teleporter_green_9.ypos",               "6"                     },
4796   { "mm_teleporter_green_9.frames",             "1"                     },
4797   { "mm_teleporter_green_10",                   "RocksDF.png"           },
4798   { "mm_teleporter_green_10.xpos",              "9"                     },
4799   { "mm_teleporter_green_10.ypos",              "6"                     },
4800   { "mm_teleporter_green_10.frames",            "1"                     },
4801   { "mm_teleporter_green_11",                   "RocksDF.png"           },
4802   { "mm_teleporter_green_11.xpos",              "10"                    },
4803   { "mm_teleporter_green_11.ypos",              "6"                     },
4804   { "mm_teleporter_green_11.frames",            "1"                     },
4805   { "mm_teleporter_green_12",                   "RocksDF.png"           },
4806   { "mm_teleporter_green_12.xpos",              "11"                    },
4807   { "mm_teleporter_green_12.ypos",              "6"                     },
4808   { "mm_teleporter_green_12.frames",            "1"                     },
4809   { "mm_teleporter_green_13",                   "RocksDF.png"           },
4810   { "mm_teleporter_green_13.xpos",              "12"                    },
4811   { "mm_teleporter_green_13.ypos",              "6"                     },
4812   { "mm_teleporter_green_13.frames",            "1"                     },
4813   { "mm_teleporter_green_14",                   "RocksDF.png"           },
4814   { "mm_teleporter_green_14.xpos",              "13"                    },
4815   { "mm_teleporter_green_14.ypos",              "6"                     },
4816   { "mm_teleporter_green_14.frames",            "1"                     },
4817   { "mm_teleporter_green_15",                   "RocksDF.png"           },
4818   { "mm_teleporter_green_15.xpos",              "14"                    },
4819   { "mm_teleporter_green_15.ypos",              "6"                     },
4820   { "mm_teleporter_green_15.frames",            "1"                     },
4821   { "mm_teleporter_green_16",                   "RocksDF.png"           },
4822   { "mm_teleporter_green_16.xpos",              "15"                    },
4823   { "mm_teleporter_green_16.ypos",              "6"                     },
4824   { "mm_teleporter_green_16.frames",            "1"                     },
4825
4826   { "mm_teleporter_blue_1",                     "RocksDF.png"           },
4827   { "mm_teleporter_blue_1.xpos",                "0"                     },
4828   { "mm_teleporter_blue_1.ypos",                "7"                     },
4829   { "mm_teleporter_blue_1.frames",              "1"                     },
4830   { "mm_teleporter_blue_2",                     "RocksDF.png"           },
4831   { "mm_teleporter_blue_2.xpos",                "1"                     },
4832   { "mm_teleporter_blue_2.ypos",                "7"                     },
4833   { "mm_teleporter_blue_2.frames",              "1"                     },
4834   { "mm_teleporter_blue_3",                     "RocksDF.png"           },
4835   { "mm_teleporter_blue_3.xpos",                "2"                     },
4836   { "mm_teleporter_blue_3.ypos",                "7"                     },
4837   { "mm_teleporter_blue_3.frames",              "1"                     },
4838   { "mm_teleporter_blue_4",                     "RocksDF.png"           },
4839   { "mm_teleporter_blue_4.xpos",                "3"                     },
4840   { "mm_teleporter_blue_4.ypos",                "7"                     },
4841   { "mm_teleporter_blue_4.frames",              "1"                     },
4842   { "mm_teleporter_blue_5",                     "RocksDF.png"           },
4843   { "mm_teleporter_blue_5.xpos",                "4"                     },
4844   { "mm_teleporter_blue_5.ypos",                "7"                     },
4845   { "mm_teleporter_blue_5.frames",              "1"                     },
4846   { "mm_teleporter_blue_6",                     "RocksDF.png"           },
4847   { "mm_teleporter_blue_6.xpos",                "5"                     },
4848   { "mm_teleporter_blue_6.ypos",                "7"                     },
4849   { "mm_teleporter_blue_6.frames",              "1"                     },
4850   { "mm_teleporter_blue_7",                     "RocksDF.png"           },
4851   { "mm_teleporter_blue_7.xpos",                "6"                     },
4852   { "mm_teleporter_blue_7.ypos",                "7"                     },
4853   { "mm_teleporter_blue_7.frames",              "1"                     },
4854   { "mm_teleporter_blue_8",                     "RocksDF.png"           },
4855   { "mm_teleporter_blue_8.xpos",                "7"                     },
4856   { "mm_teleporter_blue_8.ypos",                "7"                     },
4857   { "mm_teleporter_blue_8.frames",              "1"                     },
4858   { "mm_teleporter_blue_9",                     "RocksDF.png"           },
4859   { "mm_teleporter_blue_9.xpos",                "8"                     },
4860   { "mm_teleporter_blue_9.ypos",                "7"                     },
4861   { "mm_teleporter_blue_9.frames",              "1"                     },
4862   { "mm_teleporter_blue_10",                    "RocksDF.png"           },
4863   { "mm_teleporter_blue_10.xpos",               "9"                     },
4864   { "mm_teleporter_blue_10.ypos",               "7"                     },
4865   { "mm_teleporter_blue_10.frames",             "1"                     },
4866   { "mm_teleporter_blue_11",                    "RocksDF.png"           },
4867   { "mm_teleporter_blue_11.xpos",               "10"                    },
4868   { "mm_teleporter_blue_11.ypos",               "7"                     },
4869   { "mm_teleporter_blue_11.frames",             "1"                     },
4870   { "mm_teleporter_blue_12",                    "RocksDF.png"           },
4871   { "mm_teleporter_blue_12.xpos",               "11"                    },
4872   { "mm_teleporter_blue_12.ypos",               "7"                     },
4873   { "mm_teleporter_blue_12.frames",             "1"                     },
4874   { "mm_teleporter_blue_13",                    "RocksDF.png"           },
4875   { "mm_teleporter_blue_13.xpos",               "12"                    },
4876   { "mm_teleporter_blue_13.ypos",               "7"                     },
4877   { "mm_teleporter_blue_13.frames",             "1"                     },
4878   { "mm_teleporter_blue_14",                    "RocksDF.png"           },
4879   { "mm_teleporter_blue_14.xpos",               "13"                    },
4880   { "mm_teleporter_blue_14.ypos",               "7"                     },
4881   { "mm_teleporter_blue_14.frames",             "1"                     },
4882   { "mm_teleporter_blue_15",                    "RocksDF.png"           },
4883   { "mm_teleporter_blue_15.xpos",               "14"                    },
4884   { "mm_teleporter_blue_15.ypos",               "7"                     },
4885   { "mm_teleporter_blue_15.frames",             "1"                     },
4886   { "mm_teleporter_blue_16",                    "RocksDF.png"           },
4887   { "mm_teleporter_blue_16.xpos",               "15"                    },
4888   { "mm_teleporter_blue_16.ypos",               "7"                     },
4889   { "mm_teleporter_blue_16.frames",             "1"                     },
4890
4891   { "mm_kettle",                                "RocksMM.png"           },
4892   { "mm_kettle.xpos",                           "12"                    },
4893   { "mm_kettle.ypos",                           "1"                     },
4894   { "mm_kettle.frames",                         "1"                     },
4895   { "mm_kettle.exploding",                      "RocksMM.png"           },
4896   { "mm_kettle.exploding.xpos",                 "13"                    },
4897   { "mm_kettle.exploding.ypos",                 "1"                     },
4898   { "mm_kettle.exploding.frames",               "3"                     },
4899   { "mm_kettle.exploding.delay",                "4"                     },
4900   { "mm_kettle.exploding.anim_mode",            "linear"                },
4901
4902   { "mm_bomb",                                  "RocksMM.png"           },
4903   { "mm_bomb.xpos",                             "5"                     },
4904   { "mm_bomb.ypos",                             "2"                     },
4905   { "mm_bomb.frames",                           "1"                     },
4906
4907   { "mm_prism",                                 "RocksMM.png"           },
4908   { "mm_prism.xpos",                            "0"                     },
4909   { "mm_prism.ypos",                            "2"                     },
4910   { "mm_prism.frames",                          "1"                     },
4911
4912   { "mm_fuse",                                  "RocksMM.png"           },
4913   { "mm_fuse.xpos",                             "7"                     },
4914   { "mm_fuse.ypos",                             "2"                     },
4915   { "mm_fuse.frames",                           "1"                     },
4916   { "mm_fuse.active",                           "RocksMM.png"           },
4917   { "mm_fuse.active.xpos",                      "6"                     },
4918   { "mm_fuse.active.ypos",                      "2"                     },
4919   { "mm_fuse.active.frames",                    "1"                     },
4920
4921   { "mm_steel_lock",                            "RocksMM.png"           },
4922   { "mm_steel_lock.xpos",                       "8"                     },
4923   { "mm_steel_lock.ypos",                       "2"                     },
4924   { "mm_steel_lock.frames",                     "1"                     },
4925
4926   { "mm_wooden_lock",                           "RocksMM.png"           },
4927   { "mm_wooden_lock.xpos",                      "9"                     },
4928   { "mm_wooden_lock.ypos",                      "6"                     },
4929   { "mm_wooden_lock.frames",                    "1"                     },
4930
4931   { "mm_steel_block",                           "RocksMM.png"           },
4932   { "mm_steel_block.xpos",                      "8"                     },
4933   { "mm_steel_block.ypos",                      "6"                     },
4934   { "mm_steel_block.frames",                    "1"                     },
4935
4936   { "mm_wooden_block",                          "RocksMM.png"           },
4937   { "mm_wooden_block.xpos",                     "4"                     },
4938   { "mm_wooden_block.ypos",                     "2"                     },
4939   { "mm_wooden_block.frames",                   "1"                     },
4940
4941   { "mm_key",                                   "RocksMM.png"           },
4942   { "mm_key.xpos",                              "9"                     },
4943   { "mm_key.ypos",                              "2"                     },
4944   { "mm_key.frames",                            "1"                     },
4945
4946   { "mm_lightbulb",                             "RocksMM.png"           },
4947   { "mm_lightbulb.xpos",                        "10"                    },
4948   { "mm_lightbulb.ypos",                        "2"                     },
4949   { "mm_lightbulb.frames",                      "1"                     },
4950   { "mm_lightbulb.active",                      "RocksMM.png"           },
4951   { "mm_lightbulb.active.xpos",                 "11"                    },
4952   { "mm_lightbulb.active.ypos",                 "2"                     },
4953   { "mm_lightbulb.active.frames",               "1"                     },
4954
4955   { "mm_lightball",                             "RocksMM.png"           },
4956   { "mm_lightball.xpos",                        "12"                    },
4957   { "mm_lightball.ypos",                        "2"                     },
4958   { "mm_lightball.frames",                      "3"                     },
4959   { "mm_lightball.delay",                       "1000000"               },
4960   { "mm_lightball.anim_mode",                   "random"                },
4961   { "mm_lightball_red",                         "RocksMM.png"           },
4962   { "mm_lightball_red.xpos",                    "12"                    },
4963   { "mm_lightball_red.ypos",                    "2"                     },
4964   { "mm_lightball_red.frames",                  "1"                     },
4965   { "mm_lightball_blue",                        "RocksMM.png"           },
4966   { "mm_lightball_blue.xpos",                   "13"                    },
4967   { "mm_lightball_blue.ypos",                   "2"                     },
4968   { "mm_lightball_blue.frames",                 "1"                     },
4969   { "mm_lightball_yellow",                      "RocksMM.png"           },
4970   { "mm_lightball_yellow.xpos",                 "14"                    },
4971   { "mm_lightball_yellow.ypos",                 "2"                     },
4972   { "mm_lightball_yellow.frames",               "1"                     },
4973
4974   { "mm_gray_ball",                             "RocksMM.png"           },
4975   { "mm_gray_ball.xpos",                        "15"                    },
4976   { "mm_gray_ball.ypos",                        "2"                     },
4977   { "mm_gray_ball.frames",                      "1"                     },
4978
4979   { "mm_fuel_full",                             "RocksMM.png"           },
4980   { "mm_fuel_full.xpos",                        "10"                    },
4981   { "mm_fuel_full.ypos",                        "6"                     },
4982   { "mm_fuel_full.frames",                      "1"                     },
4983   { "mm_fuel_empty",                            "RocksMM.png"           },
4984   { "mm_fuel_empty.xpos",                       "11"                    },
4985   { "mm_fuel_empty.ypos",                       "6"                     },
4986   { "mm_fuel_empty.frames",                     "1"                     },
4987
4988   { "mm_steel_wall",                            "RocksMM.png"           },
4989   { "mm_steel_wall.xpos",                       "0"                     },
4990   { "mm_steel_wall.ypos",                       "7"                     },
4991   { "mm_steel_wall.frames",                     "1"                     },
4992
4993   { "mm_wooden_wall",                           "RocksMM.png"           },
4994   { "mm_wooden_wall.xpos",                      "1"                     },
4995   { "mm_wooden_wall.ypos",                      "7"                     },
4996   { "mm_wooden_wall.frames",                    "1"                     },
4997
4998   { "mm_ice_wall",                              "RocksMM.png"           },
4999   { "mm_ice_wall.xpos",                         "2"                     },
5000   { "mm_ice_wall.ypos",                         "7"                     },
5001   { "mm_ice_wall.frames",                       "1"                     },
5002   { "mm_ice_wall.shrinking",                    "RocksMM.png"           },
5003   { "mm_ice_wall.shrinking.xpos",               "2"                     },
5004   { "mm_ice_wall.shrinking.ypos",               "7"                     },
5005   { "mm_ice_wall.shrinking.frames",             "5"                     },
5006   { "mm_ice_wall.shrinking.delay",              "8"                     },
5007   { "mm_ice_wall.shrinking.anim_mode",          "linear"                },
5008
5009   { "mm_amoeba_wall",                           "RocksMM.png"           },
5010   { "mm_amoeba_wall.xpos",                      "8"                     },
5011   { "mm_amoeba_wall.ypos",                      "7"                     },
5012   { "mm_amoeba_wall.frames",                    "1"                     },
5013   { "mm_amoeba_wall.growing",                   "RocksMM.png"           },
5014   { "mm_amoeba_wall.growing.xpos",              "8"                     },
5015   { "mm_amoeba_wall.growing.ypos",              "7"                     },
5016   { "mm_amoeba_wall.growing.frames",            "5"                     },
5017   { "mm_amoeba_wall.growing.delay",             "8"                     },
5018   { "mm_amoeba_wall.growing.anim_mode",         "linear,reverse"        },
5019
5020   { "mm_pacman",                                "RocksMM.png"           },
5021   { "mm_pacman.xpos",                           "0"                     },
5022   { "mm_pacman.ypos",                           "4"                     },
5023   { "mm_pacman.frames",                         "1"                     },
5024   { "mm_pacman.right",                          "RocksMM.png"           },
5025   { "mm_pacman.right.xpos",                     "0"                     },
5026   { "mm_pacman.right.ypos",                     "4"                     },
5027   { "mm_pacman.right.frames",                   "1"                     },
5028   { "mm_pacman.up",                             "RocksMM.png"           },
5029   { "mm_pacman.up.xpos",                        "1"                     },
5030   { "mm_pacman.up.ypos",                        "4"                     },
5031   { "mm_pacman.up.frames",                      "1"                     },
5032   { "mm_pacman.left",                           "RocksMM.png"           },
5033   { "mm_pacman.left.xpos",                      "2"                     },
5034   { "mm_pacman.left.ypos",                      "4"                     },
5035   { "mm_pacman.left.frames",                    "1"                     },
5036   { "mm_pacman.down",                           "RocksMM.png"           },
5037   { "mm_pacman.down.xpos",                      "3"                     },
5038   { "mm_pacman.down.ypos",                      "4"                     },
5039   { "mm_pacman.down.frames",                    "1"                     },
5040   { "mm_pacman.eating.right",                   "RocksMM.png"           },
5041   { "mm_pacman.eating.right.xpos",              "4"                     },
5042   { "mm_pacman.eating.right.ypos",              "4"                     },
5043   { "mm_pacman.eating.right.frames",            "1"                     },
5044   { "mm_pacman.eating.up",                      "RocksMM.png"           },
5045   { "mm_pacman.eating.up.xpos",                 "5"                     },
5046   { "mm_pacman.eating.up.ypos",                 "4"                     },
5047   { "mm_pacman.eating.up.frames",               "1"                     },
5048   { "mm_pacman.eating.left",                    "RocksMM.png"           },
5049   { "mm_pacman.eating.left.xpos",               "6"                     },
5050   { "mm_pacman.eating.left.ypos",               "4"                     },
5051   { "mm_pacman.eating.left.frames",             "1"                     },
5052   { "mm_pacman.eating.down",                    "RocksMM.png"           },
5053   { "mm_pacman.eating.down.xpos",               "7"                     },
5054   { "mm_pacman.eating.down.ypos",               "4"                     },
5055   { "mm_pacman.eating.down.frames",             "1"                     },
5056
5057   { "mm_mask_mcduffin.right",                   "RocksMM.png"           },
5058   { "mm_mask_mcduffin.right.xpos",              "8"                     },
5059   { "mm_mask_mcduffin.right.ypos",              "8"                     },
5060   { "mm_mask_mcduffin.right.frames",            "1"                     },
5061   { "mm_mask_mcduffin.up",                      "RocksMM.png"           },
5062   { "mm_mask_mcduffin.up.xpos",                 "9"                     },
5063   { "mm_mask_mcduffin.up.ypos",                 "8"                     },
5064   { "mm_mask_mcduffin.up.frames",               "1"                     },
5065   { "mm_mask_mcduffin.left",                    "RocksMM.png"           },
5066   { "mm_mask_mcduffin.left.xpos",               "10"                    },
5067   { "mm_mask_mcduffin.left.ypos",               "8"                     },
5068   { "mm_mask_mcduffin.left.frames",             "1"                     },
5069   { "mm_mask_mcduffin.down",                    "RocksMM.png"           },
5070   { "mm_mask_mcduffin.down.xpos",               "11"                    },
5071   { "mm_mask_mcduffin.down.ypos",               "8"                     },
5072   { "mm_mask_mcduffin.down.frames",             "1"                     },
5073
5074   { "mm_mask_grid_1",                           "RocksMM.png"           },
5075   { "mm_mask_grid_1.xpos",                      "4"                     },
5076   { "mm_mask_grid_1.ypos",                      "8"                     },
5077   { "mm_mask_grid_1.frames",                    "1"                     },
5078   { "mm_mask_grid_2",                           "RocksMM.png"           },
5079   { "mm_mask_grid_2.xpos",                      "5"                     },
5080   { "mm_mask_grid_2.ypos",                      "8"                     },
5081   { "mm_mask_grid_2.frames",                    "1"                     },
5082   { "mm_mask_grid_3",                           "RocksMM.png"           },
5083   { "mm_mask_grid_3.xpos",                      "6"                     },
5084   { "mm_mask_grid_3.ypos",                      "8"                     },
5085   { "mm_mask_grid_3.frames",                    "1"                     },
5086   { "mm_mask_grid_4",                           "RocksMM.png"           },
5087   { "mm_mask_grid_4.xpos",                      "7"                     },
5088   { "mm_mask_grid_4.ypos",                      "8"                     },
5089   { "mm_mask_grid_4.frames",                    "1"                     },
5090
5091   { "mm_mask_rectangle",                        "RocksMM.png"           },
5092   { "mm_mask_rectangle.xpos",                   "1"                     },
5093   { "mm_mask_rectangle.ypos",                   "8"                     },
5094   { "mm_mask_rectangle.frames",                 "1"                     },
5095
5096   { "mm_mask_circle",                           "RocksMM.png"           },
5097   { "mm_mask_circle.xpos",                      "0"                     },
5098   { "mm_mask_circle.ypos",                      "8"                     },
5099   { "mm_mask_circle.frames",                    "1"                     },
5100
5101   { "[mm_default].exploding",                   "RocksMM.png"           },
5102   { "[mm_default].exploding.xpos",              "8"                     },
5103   { "[mm_default].exploding.ypos",              "4"                     },
5104   { "[mm_default].exploding.frames",            "8"                     },
5105   { "[mm_default].exploding.delay",             "2"                     },
5106   { "[mm_default].exploding.anim_mode",         "linear"                },
5107
5108   { "df_laser",                                 "RocksDF.png"           },
5109   { "df_laser.xpos",                            "0"                     },
5110   { "df_laser.ypos",                            "9"                     },
5111   { "df_laser.frames",                          "4"                     },
5112   { "df_laser.delay",                           "8"                     },
5113   { "df_laser.right",                           "RocksDF.png"           },
5114   { "df_laser.right.xpos",                      "0"                     },
5115   { "df_laser.right.ypos",                      "9"                     },
5116   { "df_laser.right.frames",                    "1"                     },
5117   { "df_laser.up",                              "RocksDF.png"           },
5118   { "df_laser.up.xpos",                         "1"                     },
5119   { "df_laser.up.ypos",                         "9"                     },
5120   { "df_laser.up.frames",                       "1"                     },
5121   { "df_laser.left",                            "RocksDF.png"           },
5122   { "df_laser.left.xpos",                       "2"                     },
5123   { "df_laser.left.ypos",                       "9"                     },
5124   { "df_laser.left.frames",                     "1"                     },
5125   { "df_laser.down",                            "RocksDF.png"           },
5126   { "df_laser.down.xpos",                       "3"                     },
5127   { "df_laser.down.ypos",                       "9"                     },
5128   { "df_laser.down.frames",                     "1"                     },
5129
5130   { "df_receiver",                              "RocksDF.png"           },
5131   { "df_receiver.xpos",                         "4"                     },
5132   { "df_receiver.ypos",                         "9"                     },
5133   { "df_receiver.frames",                       "4"                     },
5134   { "df_receiver.delay",                        "8"                     },
5135   { "df_receiver.right",                        "RocksDF.png"           },
5136   { "df_receiver.right.xpos",                   "4"                     },
5137   { "df_receiver.right.ypos",                   "9"                     },
5138   { "df_receiver.right.frames",                 "1"                     },
5139   { "df_receiver.up",                           "RocksDF.png"           },
5140   { "df_receiver.up.xpos",                      "5"                     },
5141   { "df_receiver.up.ypos",                      "9"                     },
5142   { "df_receiver.up.frames",                    "1"                     },
5143   { "df_receiver.left",                         "RocksDF.png"           },
5144   { "df_receiver.left.xpos",                    "6"                     },
5145   { "df_receiver.left.ypos",                    "9"                     },
5146   { "df_receiver.left.frames",                  "1"                     },
5147   { "df_receiver.down",                         "RocksDF.png"           },
5148   { "df_receiver.down.xpos",                    "7"                     },
5149   { "df_receiver.down.ypos",                    "9"                     },
5150   { "df_receiver.down.frames",                  "1"                     },
5151
5152   { "df_mirror_1",                              "RocksDF.png"           },
5153   { "df_mirror_1.xpos",                         "0"                     },
5154   { "df_mirror_1.ypos",                         "0"                     },
5155   { "df_mirror_1.frames",                       "1"                     },
5156   { "df_mirror_2",                              "RocksDF.png"           },
5157   { "df_mirror_2.xpos",                         "1"                     },
5158   { "df_mirror_2.ypos",                         "0"                     },
5159   { "df_mirror_2.frames",                       "1"                     },
5160   { "df_mirror_3",                              "RocksDF.png"           },
5161   { "df_mirror_3.xpos",                         "2"                     },
5162   { "df_mirror_3.ypos",                         "0"                     },
5163   { "df_mirror_3.frames",                       "1"                     },
5164   { "df_mirror_4",                              "RocksDF.png"           },
5165   { "df_mirror_4.xpos",                         "3"                     },
5166   { "df_mirror_4.ypos",                         "0"                     },
5167   { "df_mirror_4.frames",                       "1"                     },
5168   { "df_mirror_5",                              "RocksDF.png"           },
5169   { "df_mirror_5.xpos",                         "4"                     },
5170   { "df_mirror_5.ypos",                         "0"                     },
5171   { "df_mirror_5.frames",                       "1"                     },
5172   { "df_mirror_6",                              "RocksDF.png"           },
5173   { "df_mirror_6.xpos",                         "5"                     },
5174   { "df_mirror_6.ypos",                         "0"                     },
5175   { "df_mirror_6.frames",                       "1"                     },
5176   { "df_mirror_7",                              "RocksDF.png"           },
5177   { "df_mirror_7.xpos",                         "6"                     },
5178   { "df_mirror_7.ypos",                         "0"                     },
5179   { "df_mirror_7.frames",                       "1"                     },
5180   { "df_mirror_8",                              "RocksDF.png"           },
5181   { "df_mirror_8.xpos",                         "7"                     },
5182   { "df_mirror_8.ypos",                         "0"                     },
5183   { "df_mirror_8.frames",                       "1"                     },
5184   { "df_mirror_9",                              "RocksDF.png"           },
5185   { "df_mirror_9.xpos",                         "8"                     },
5186   { "df_mirror_9.ypos",                         "0"                     },
5187   { "df_mirror_9.frames",                       "1"                     },
5188   { "df_mirror_10",                             "RocksDF.png"           },
5189   { "df_mirror_10.xpos",                        "9"                     },
5190   { "df_mirror_10.ypos",                        "0"                     },
5191   { "df_mirror_10.frames",                      "1"                     },
5192   { "df_mirror_11",                             "RocksDF.png"           },
5193   { "df_mirror_11.xpos",                        "10"                    },
5194   { "df_mirror_11.ypos",                        "0"                     },
5195   { "df_mirror_11.frames",                      "1"                     },
5196   { "df_mirror_12",                             "RocksDF.png"           },
5197   { "df_mirror_12.xpos",                        "11"                    },
5198   { "df_mirror_12.ypos",                        "0"                     },
5199   { "df_mirror_12.frames",                      "1"                     },
5200   { "df_mirror_13",                             "RocksDF.png"           },
5201   { "df_mirror_13.xpos",                        "12"                    },
5202   { "df_mirror_13.ypos",                        "0"                     },
5203   { "df_mirror_13.frames",                      "1"                     },
5204   { "df_mirror_14",                             "RocksDF.png"           },
5205   { "df_mirror_14.xpos",                        "13"                    },
5206   { "df_mirror_14.ypos",                        "0"                     },
5207   { "df_mirror_14.frames",                      "1"                     },
5208   { "df_mirror_15",                             "RocksDF.png"           },
5209   { "df_mirror_15.xpos",                        "14"                    },
5210   { "df_mirror_15.ypos",                        "0"                     },
5211   { "df_mirror_15.frames",                      "1"                     },
5212   { "df_mirror_16",                             "RocksDF.png"           },
5213   { "df_mirror_16.xpos",                        "15"                    },
5214   { "df_mirror_16.ypos",                        "0"                     },
5215   { "df_mirror_16.frames",                      "1"                     },
5216
5217   { "df_mirror_rotating_1",                     "RocksDF.png"           },
5218   { "df_mirror_rotating_1.xpos",                "0"                     },
5219   { "df_mirror_rotating_1.ypos",                "0"                     },
5220   { "df_mirror_rotating_1.frames",              "1"                     },
5221   { "df_mirror_rotating_1.EDITOR",              "RocksDF.png"           },
5222   { "df_mirror_rotating_1.EDITOR.xpos",         "0"                     },
5223   { "df_mirror_rotating_1.EDITOR.ypos",         "1"                     },
5224   { "df_mirror_rotating_1.EDITOR.frames",       "1"                     },
5225   { "df_mirror_rotating_2",                     "RocksDF.png"           },
5226   { "df_mirror_rotating_2.xpos",                "1"                     },
5227   { "df_mirror_rotating_2.ypos",                "0"                     },
5228   { "df_mirror_rotating_2.frames",              "1"                     },
5229   { "df_mirror_rotating_2.EDITOR",              "RocksDF.png"           },
5230   { "df_mirror_rotating_2.EDITOR.xpos",         "1"                     },
5231   { "df_mirror_rotating_2.EDITOR.ypos",         "1"                     },
5232   { "df_mirror_rotating_2.EDITOR.frames",       "1"                     },
5233   { "df_mirror_rotating_3",                     "RocksDF.png"           },
5234   { "df_mirror_rotating_3.xpos",                "2"                     },
5235   { "df_mirror_rotating_3.ypos",                "0"                     },
5236   { "df_mirror_rotating_3.frames",              "1"                     },
5237   { "df_mirror_rotating_3.EDITOR",              "RocksDF.png"           },
5238   { "df_mirror_rotating_3.EDITOR.xpos",         "2"                     },
5239   { "df_mirror_rotating_3.EDITOR.ypos",         "1"                     },
5240   { "df_mirror_rotating_3.EDITOR.frames",       "1"                     },
5241   { "df_mirror_rotating_4",                     "RocksDF.png"           },
5242   { "df_mirror_rotating_4.xpos",                "3"                     },
5243   { "df_mirror_rotating_4.ypos",                "0"                     },
5244   { "df_mirror_rotating_4.frames",              "1"                     },
5245   { "df_mirror_rotating_4.EDITOR",              "RocksDF.png"           },
5246   { "df_mirror_rotating_4.EDITOR.xpos",         "3"                     },
5247   { "df_mirror_rotating_4.EDITOR.ypos",         "1"                     },
5248   { "df_mirror_rotating_4.EDITOR.frames",       "1"                     },
5249   { "df_mirror_rotating_5",                     "RocksDF.png"           },
5250   { "df_mirror_rotating_5.xpos",                "4"                     },
5251   { "df_mirror_rotating_5.ypos",                "0"                     },
5252   { "df_mirror_rotating_5.frames",              "1"                     },
5253   { "df_mirror_rotating_5.EDITOR",              "RocksDF.png"           },
5254   { "df_mirror_rotating_5.EDITOR.xpos",         "4"                     },
5255   { "df_mirror_rotating_5.EDITOR.ypos",         "1"                     },
5256   { "df_mirror_rotating_5.EDITOR.frames",       "1"                     },
5257   { "df_mirror_rotating_6",                     "RocksDF.png"           },
5258   { "df_mirror_rotating_6.xpos",                "5"                     },
5259   { "df_mirror_rotating_6.ypos",                "0"                     },
5260   { "df_mirror_rotating_6.frames",              "1"                     },
5261   { "df_mirror_rotating_6.EDITOR",              "RocksDF.png"           },
5262   { "df_mirror_rotating_6.EDITOR.xpos",         "5"                     },
5263   { "df_mirror_rotating_6.EDITOR.ypos",         "1"                     },
5264   { "df_mirror_rotating_6.EDITOR.frames",       "1"                     },
5265   { "df_mirror_rotating_7",                     "RocksDF.png"           },
5266   { "df_mirror_rotating_7.xpos",                "6"                     },
5267   { "df_mirror_rotating_7.ypos",                "0"                     },
5268   { "df_mirror_rotating_7.frames",              "1"                     },
5269   { "df_mirror_rotating_7.EDITOR",              "RocksDF.png"           },
5270   { "df_mirror_rotating_7.EDITOR.xpos",         "6"                     },
5271   { "df_mirror_rotating_7.EDITOR.ypos",         "1"                     },
5272   { "df_mirror_rotating_7.EDITOR.frames",       "1"                     },
5273   { "df_mirror_rotating_8",                     "RocksDF.png"           },
5274   { "df_mirror_rotating_8.xpos",                "7"                     },
5275   { "df_mirror_rotating_8.ypos",                "0"                     },
5276   { "df_mirror_rotating_8.frames",              "1"                     },
5277   { "df_mirror_rotating_8.EDITOR",              "RocksDF.png"           },
5278   { "df_mirror_rotating_8.EDITOR.xpos",         "7"                     },
5279   { "df_mirror_rotating_8.EDITOR.ypos",         "1"                     },
5280   { "df_mirror_rotating_8.EDITOR.frames",       "1"                     },
5281   { "df_mirror_rotating_9",                     "RocksDF.png"           },
5282   { "df_mirror_rotating_9.xpos",                "8"                     },
5283   { "df_mirror_rotating_9.ypos",                "0"                     },
5284   { "df_mirror_rotating_9.frames",              "1"                     },
5285   { "df_mirror_rotating_9.EDITOR",              "RocksDF.png"           },
5286   { "df_mirror_rotating_9.EDITOR.xpos",         "8"                     },
5287   { "df_mirror_rotating_9.EDITOR.ypos",         "1"                     },
5288   { "df_mirror_rotating_9.EDITOR.frames",       "1"                     },
5289   { "df_mirror_rotating_10",                    "RocksDF.png"           },
5290   { "df_mirror_rotating_10.xpos",               "9"                     },
5291   { "df_mirror_rotating_10.ypos",               "0"                     },
5292   { "df_mirror_rotating_10.frames",             "1"                     },
5293   { "df_mirror_rotating_10.EDITOR",             "RocksDF.png"           },
5294   { "df_mirror_rotating_10.EDITOR.xpos",        "9"                     },
5295   { "df_mirror_rotating_10.EDITOR.ypos",        "1"                     },
5296   { "df_mirror_rotating_10.EDITOR.frames",      "1"                     },
5297   { "df_mirror_rotating_11",                    "RocksDF.png"           },
5298   { "df_mirror_rotating_11.xpos",               "10"                    },
5299   { "df_mirror_rotating_11.ypos",               "0"                     },
5300   { "df_mirror_rotating_11.frames",             "1"                     },
5301   { "df_mirror_rotating_11.EDITOR",             "RocksDF.png"           },
5302   { "df_mirror_rotating_11.EDITOR.xpos",        "10"                    },
5303   { "df_mirror_rotating_11.EDITOR.ypos",        "1"                     },
5304   { "df_mirror_rotating_11.EDITOR.frames",      "1"                     },
5305   { "df_mirror_rotating_12",                    "RocksDF.png"           },
5306   { "df_mirror_rotating_12.xpos",               "11"                    },
5307   { "df_mirror_rotating_12.ypos",               "0"                     },
5308   { "df_mirror_rotating_12.frames",             "1"                     },
5309   { "df_mirror_rotating_12.EDITOR",             "RocksDF.png"           },
5310   { "df_mirror_rotating_12.EDITOR.xpos",        "11"                    },
5311   { "df_mirror_rotating_12.EDITOR.ypos",        "1"                     },
5312   { "df_mirror_rotating_12.EDITOR.frames",      "1"                     },
5313   { "df_mirror_rotating_13",                    "RocksDF.png"           },
5314   { "df_mirror_rotating_13.xpos",               "12"                    },
5315   { "df_mirror_rotating_13.ypos",               "0"                     },
5316   { "df_mirror_rotating_13.frames",             "1"                     },
5317   { "df_mirror_rotating_13.EDITOR",             "RocksDF.png"           },
5318   { "df_mirror_rotating_13.EDITOR.xpos",        "12"                    },
5319   { "df_mirror_rotating_13.EDITOR.ypos",        "1"                     },
5320   { "df_mirror_rotating_13.EDITOR.frames",      "1"                     },
5321   { "df_mirror_rotating_14",                    "RocksDF.png"           },
5322   { "df_mirror_rotating_14.xpos",               "13"                    },
5323   { "df_mirror_rotating_14.ypos",               "0"                     },
5324   { "df_mirror_rotating_14.frames",             "1"                     },
5325   { "df_mirror_rotating_14.EDITOR",             "RocksDF.png"           },
5326   { "df_mirror_rotating_14.EDITOR.xpos",        "13"                    },
5327   { "df_mirror_rotating_14.EDITOR.ypos",        "1"                     },
5328   { "df_mirror_rotating_14.EDITOR.frames",      "1"                     },
5329   { "df_mirror_rotating_15",                    "RocksDF.png"           },
5330   { "df_mirror_rotating_15.xpos",               "14"                    },
5331   { "df_mirror_rotating_15.ypos",               "0"                     },
5332   { "df_mirror_rotating_15.frames",             "1"                     },
5333   { "df_mirror_rotating_15.EDITOR",             "RocksDF.png"           },
5334   { "df_mirror_rotating_15.EDITOR.xpos",        "14"                    },
5335   { "df_mirror_rotating_15.EDITOR.ypos",        "1"                     },
5336   { "df_mirror_rotating_15.EDITOR.frames",      "1"                     },
5337   { "df_mirror_rotating_16",                    "RocksDF.png"           },
5338   { "df_mirror_rotating_16.xpos",               "15"                    },
5339   { "df_mirror_rotating_16.ypos",               "0"                     },
5340   { "df_mirror_rotating_16.frames",             "1"                     },
5341   { "df_mirror_rotating_16.EDITOR",             "RocksDF.png"           },
5342   { "df_mirror_rotating_16.EDITOR.xpos",        "15"                    },
5343   { "df_mirror_rotating_16.EDITOR.ypos",        "1"                     },
5344   { "df_mirror_rotating_16.EDITOR.frames",      "1"                     },
5345
5346   { "df_steel_grid_fixed_1",                    "RocksDF.png"           },
5347   { "df_steel_grid_fixed_1.xpos",               "0"                     },
5348   { "df_steel_grid_fixed_1.ypos",               "2"                     },
5349   { "df_steel_grid_fixed_1.frames",             "1"                     },
5350   { "df_steel_grid_fixed_2",                    "RocksDF.png"           },
5351   { "df_steel_grid_fixed_2.xpos",               "1"                     },
5352   { "df_steel_grid_fixed_2.ypos",               "2"                     },
5353   { "df_steel_grid_fixed_2.frames",             "1"                     },
5354   { "df_steel_grid_fixed_3",                    "RocksDF.png"           },
5355   { "df_steel_grid_fixed_3.xpos",               "2"                     },
5356   { "df_steel_grid_fixed_3.ypos",               "2"                     },
5357   { "df_steel_grid_fixed_3.frames",             "1"                     },
5358   { "df_steel_grid_fixed_4",                    "RocksDF.png"           },
5359   { "df_steel_grid_fixed_4.xpos",               "3"                     },
5360   { "df_steel_grid_fixed_4.ypos",               "2"                     },
5361   { "df_steel_grid_fixed_4.frames",             "1"                     },
5362   { "df_steel_grid_fixed_5",                    "RocksDF.png"           },
5363   { "df_steel_grid_fixed_5.xpos",               "4"                     },
5364   { "df_steel_grid_fixed_5.ypos",               "2"                     },
5365   { "df_steel_grid_fixed_5.frames",             "1"                     },
5366   { "df_steel_grid_fixed_6",                    "RocksDF.png"           },
5367   { "df_steel_grid_fixed_6.xpos",               "5"                     },
5368   { "df_steel_grid_fixed_6.ypos",               "2"                     },
5369   { "df_steel_grid_fixed_6.frames",             "1"                     },
5370   { "df_steel_grid_fixed_7",                    "RocksDF.png"           },
5371   { "df_steel_grid_fixed_7.xpos",               "6"                     },
5372   { "df_steel_grid_fixed_7.ypos",               "2"                     },
5373   { "df_steel_grid_fixed_7.frames",             "1"                     },
5374   { "df_steel_grid_fixed_8",                    "RocksDF.png"           },
5375   { "df_steel_grid_fixed_8.xpos",               "7"                     },
5376   { "df_steel_grid_fixed_8.ypos",               "2"                     },
5377   { "df_steel_grid_fixed_8.frames",             "1"                     },
5378
5379   { "df_wooden_grid_fixed_1",                   "RocksDF.png"           },
5380   { "df_wooden_grid_fixed_1.xpos",              "8"                     },
5381   { "df_wooden_grid_fixed_1.ypos",              "2"                     },
5382   { "df_wooden_grid_fixed_1.frames",            "1"                     },
5383   { "df_wooden_grid_fixed_2",                   "RocksDF.png"           },
5384   { "df_wooden_grid_fixed_2.xpos",              "9"                     },
5385   { "df_wooden_grid_fixed_2.ypos",              "2"                     },
5386   { "df_wooden_grid_fixed_2.frames",            "1"                     },
5387   { "df_wooden_grid_fixed_3",                   "RocksDF.png"           },
5388   { "df_wooden_grid_fixed_3.xpos",              "10"                    },
5389   { "df_wooden_grid_fixed_3.ypos",              "2"                     },
5390   { "df_wooden_grid_fixed_3.frames",            "1"                     },
5391   { "df_wooden_grid_fixed_4",                   "RocksDF.png"           },
5392   { "df_wooden_grid_fixed_4.xpos",              "11"                    },
5393   { "df_wooden_grid_fixed_4.ypos",              "2"                     },
5394   { "df_wooden_grid_fixed_4.frames",            "1"                     },
5395   { "df_wooden_grid_fixed_5",                   "RocksDF.png"           },
5396   { "df_wooden_grid_fixed_5.xpos",              "12"                    },
5397   { "df_wooden_grid_fixed_5.ypos",              "2"                     },
5398   { "df_wooden_grid_fixed_5.frames",            "1"                     },
5399   { "df_wooden_grid_fixed_6",                   "RocksDF.png"           },
5400   { "df_wooden_grid_fixed_6.xpos",              "13"                    },
5401   { "df_wooden_grid_fixed_6.ypos",              "2"                     },
5402   { "df_wooden_grid_fixed_6.frames",            "1"                     },
5403   { "df_wooden_grid_fixed_7",                   "RocksDF.png"           },
5404   { "df_wooden_grid_fixed_7.xpos",              "14"                    },
5405   { "df_wooden_grid_fixed_7.ypos",              "2"                     },
5406   { "df_wooden_grid_fixed_7.frames",            "1"                     },
5407   { "df_wooden_grid_fixed_8",                   "RocksDF.png"           },
5408   { "df_wooden_grid_fixed_8.xpos",              "15"                    },
5409   { "df_wooden_grid_fixed_8.ypos",              "2"                     },
5410   { "df_wooden_grid_fixed_8.frames",            "1"                     },
5411
5412   { "df_steel_grid_rotating_1",                 "RocksDF.png"           },
5413   { "df_steel_grid_rotating_1.xpos",            "0"                     },
5414   { "df_steel_grid_rotating_1.ypos",            "2"                     },
5415   { "df_steel_grid_rotating_1.frames",          "1"                     },
5416   { "df_steel_grid_rotating_1.EDITOR",          "RocksDF.png"           },
5417   { "df_steel_grid_rotating_1.EDITOR.xpos",     "0"                     },
5418   { "df_steel_grid_rotating_1.EDITOR.ypos",     "3"                     },
5419   { "df_steel_grid_rotating_1.EDITOR.frames",   "1"                     },
5420   { "df_steel_grid_rotating_2",                 "RocksDF.png"           },
5421   { "df_steel_grid_rotating_2.xpos",            "1"                     },
5422   { "df_steel_grid_rotating_2.ypos",            "2"                     },
5423   { "df_steel_grid_rotating_2.frames",          "1"                     },
5424   { "df_steel_grid_rotating_2.EDITOR",          "RocksDF.png"           },
5425   { "df_steel_grid_rotating_2.EDITOR.xpos",     "1"                     },
5426   { "df_steel_grid_rotating_2.EDITOR.ypos",     "3"                     },
5427   { "df_steel_grid_rotating_2.EDITOR.frames",   "1"                     },
5428   { "df_steel_grid_rotating_3",                 "RocksDF.png"           },
5429   { "df_steel_grid_rotating_3.xpos",            "2"                     },
5430   { "df_steel_grid_rotating_3.ypos",            "2"                     },
5431   { "df_steel_grid_rotating_3.frames",          "1"                     },
5432   { "df_steel_grid_rotating_3.EDITOR",          "RocksDF.png"           },
5433   { "df_steel_grid_rotating_3.EDITOR.xpos",     "2"                     },
5434   { "df_steel_grid_rotating_3.EDITOR.ypos",     "3"                     },
5435   { "df_steel_grid_rotating_3.EDITOR.frames",   "1"                     },
5436   { "df_steel_grid_rotating_4",                 "RocksDF.png"           },
5437   { "df_steel_grid_rotating_4.xpos",            "3"                     },
5438   { "df_steel_grid_rotating_4.ypos",            "2"                     },
5439   { "df_steel_grid_rotating_4.frames",          "1"                     },
5440   { "df_steel_grid_rotating_4.EDITOR",          "RocksDF.png"           },
5441   { "df_steel_grid_rotating_4.EDITOR.xpos",     "3"                     },
5442   { "df_steel_grid_rotating_4.EDITOR.ypos",     "3"                     },
5443   { "df_steel_grid_rotating_4.EDITOR.frames",   "1"                     },
5444   { "df_steel_grid_rotating_5",                 "RocksDF.png"           },
5445   { "df_steel_grid_rotating_5.xpos",            "4"                     },
5446   { "df_steel_grid_rotating_5.ypos",            "2"                     },
5447   { "df_steel_grid_rotating_5.frames",          "1"                     },
5448   { "df_steel_grid_rotating_5.EDITOR",          "RocksDF.png"           },
5449   { "df_steel_grid_rotating_5.EDITOR.xpos",     "4"                     },
5450   { "df_steel_grid_rotating_5.EDITOR.ypos",     "3"                     },
5451   { "df_steel_grid_rotating_5.EDITOR.frames",   "1"                     },
5452   { "df_steel_grid_rotating_6",                 "RocksDF.png"           },
5453   { "df_steel_grid_rotating_6.xpos",            "5"                     },
5454   { "df_steel_grid_rotating_6.ypos",            "2"                     },
5455   { "df_steel_grid_rotating_6.frames",          "1"                     },
5456   { "df_steel_grid_rotating_6.EDITOR",          "RocksDF.png"           },
5457   { "df_steel_grid_rotating_6.EDITOR.xpos",     "5"                     },
5458   { "df_steel_grid_rotating_6.EDITOR.ypos",     "3"                     },
5459   { "df_steel_grid_rotating_6.EDITOR.frames",   "1"                     },
5460   { "df_steel_grid_rotating_7",                 "RocksDF.png"           },
5461   { "df_steel_grid_rotating_7.xpos",            "6"                     },
5462   { "df_steel_grid_rotating_7.ypos",            "2"                     },
5463   { "df_steel_grid_rotating_7.frames",          "1"                     },
5464   { "df_steel_grid_rotating_7.EDITOR",          "RocksDF.png"           },
5465   { "df_steel_grid_rotating_7.EDITOR.xpos",     "6"                     },
5466   { "df_steel_grid_rotating_7.EDITOR.ypos",     "3"                     },
5467   { "df_steel_grid_rotating_7.EDITOR.frames",   "1"                     },
5468   { "df_steel_grid_rotating_8",                 "RocksDF.png"           },
5469   { "df_steel_grid_rotating_8.xpos",            "7"                     },
5470   { "df_steel_grid_rotating_8.ypos",            "2"                     },
5471   { "df_steel_grid_rotating_8.frames",          "1"                     },
5472   { "df_steel_grid_rotating_8.EDITOR",          "RocksDF.png"           },
5473   { "df_steel_grid_rotating_8.EDITOR.xpos",     "7"                     },
5474   { "df_steel_grid_rotating_8.EDITOR.ypos",     "3"                     },
5475   { "df_steel_grid_rotating_8.EDITOR.frames",   "1"                     },
5476
5477   { "df_wooden_grid_rotating_1",                "RocksDF.png"           },
5478   { "df_wooden_grid_rotating_1.xpos",           "8"                     },
5479   { "df_wooden_grid_rotating_1.ypos",           "2"                     },
5480   { "df_wooden_grid_rotating_1.frames",         "1"                     },
5481   { "df_wooden_grid_rotating_1.EDITOR",         "RocksDF.png"           },
5482   { "df_wooden_grid_rotating_1.EDITOR.xpos",    "8"                     },
5483   { "df_wooden_grid_rotating_1.EDITOR.ypos",    "3"                     },
5484   { "df_wooden_grid_rotating_1.EDITOR.frames",  "1"                     },
5485   { "df_wooden_grid_rotating_2",                "RocksDF.png"           },
5486   { "df_wooden_grid_rotating_2.xpos",           "9"                     },
5487   { "df_wooden_grid_rotating_2.ypos",           "2"                     },
5488   { "df_wooden_grid_rotating_2.frames",         "1"                     },
5489   { "df_wooden_grid_rotating_2.EDITOR",         "RocksDF.png"           },
5490   { "df_wooden_grid_rotating_2.EDITOR.xpos",    "9"                     },
5491   { "df_wooden_grid_rotating_2.EDITOR.ypos",    "3"                     },
5492   { "df_wooden_grid_rotating_2.EDITOR.frames",  "1"                     },
5493   { "df_wooden_grid_rotating_3",                "RocksDF.png"           },
5494   { "df_wooden_grid_rotating_3.xpos",           "10"                    },
5495   { "df_wooden_grid_rotating_3.ypos",           "2"                     },
5496   { "df_wooden_grid_rotating_3.frames",         "1"                     },
5497   { "df_wooden_grid_rotating_3.EDITOR",         "RocksDF.png"           },
5498   { "df_wooden_grid_rotating_3.EDITOR.xpos",    "10"                    },
5499   { "df_wooden_grid_rotating_3.EDITOR.ypos",    "3"                     },
5500   { "df_wooden_grid_rotating_3.EDITOR.frames",  "1"                     },
5501   { "df_wooden_grid_rotating_4",                "RocksDF.png"           },
5502   { "df_wooden_grid_rotating_4.xpos",           "11"                    },
5503   { "df_wooden_grid_rotating_4.ypos",           "2"                     },
5504   { "df_wooden_grid_rotating_4.frames",         "1"                     },
5505   { "df_wooden_grid_rotating_4.EDITOR",         "RocksDF.png"           },
5506   { "df_wooden_grid_rotating_4.EDITOR.xpos",    "11"                    },
5507   { "df_wooden_grid_rotating_4.EDITOR.ypos",    "3"                     },
5508   { "df_wooden_grid_rotating_4.EDITOR.frames",  "1"                     },
5509   { "df_wooden_grid_rotating_5",                "RocksDF.png"           },
5510   { "df_wooden_grid_rotating_5.xpos",           "12"                    },
5511   { "df_wooden_grid_rotating_5.ypos",           "2"                     },
5512   { "df_wooden_grid_rotating_5.frames",         "1"                     },
5513   { "df_wooden_grid_rotating_5.EDITOR",         "RocksDF.png"           },
5514   { "df_wooden_grid_rotating_5.EDITOR.xpos",    "12"                    },
5515   { "df_wooden_grid_rotating_5.EDITOR.ypos",    "3"                     },
5516   { "df_wooden_grid_rotating_5.EDITOR.frames",  "1"                     },
5517   { "df_wooden_grid_rotating_6",                "RocksDF.png"           },
5518   { "df_wooden_grid_rotating_6.xpos",           "13"                    },
5519   { "df_wooden_grid_rotating_6.ypos",           "2"                     },
5520   { "df_wooden_grid_rotating_6.frames",         "1"                     },
5521   { "df_wooden_grid_rotating_6.EDITOR",         "RocksDF.png"           },
5522   { "df_wooden_grid_rotating_6.EDITOR.xpos",    "13"                    },
5523   { "df_wooden_grid_rotating_6.EDITOR.ypos",    "3"                     },
5524   { "df_wooden_grid_rotating_6.EDITOR.frames",  "1"                     },
5525   { "df_wooden_grid_rotating_7",                "RocksDF.png"           },
5526   { "df_wooden_grid_rotating_7.xpos",           "14"                    },
5527   { "df_wooden_grid_rotating_7.ypos",           "2"                     },
5528   { "df_wooden_grid_rotating_7.frames",         "1"                     },
5529   { "df_wooden_grid_rotating_7.EDITOR",         "RocksDF.png"           },
5530   { "df_wooden_grid_rotating_7.EDITOR.xpos",    "14"                    },
5531   { "df_wooden_grid_rotating_7.EDITOR.ypos",    "3"                     },
5532   { "df_wooden_grid_rotating_7.EDITOR.frames",  "1"                     },
5533   { "df_wooden_grid_rotating_8",                "RocksDF.png"           },
5534   { "df_wooden_grid_rotating_8.xpos",           "15"                    },
5535   { "df_wooden_grid_rotating_8.ypos",           "2"                     },
5536   { "df_wooden_grid_rotating_8.frames",         "1"                     },
5537   { "df_wooden_grid_rotating_8.EDITOR",         "RocksDF.png"           },
5538   { "df_wooden_grid_rotating_8.EDITOR.xpos",    "15"                    },
5539   { "df_wooden_grid_rotating_8.EDITOR.ypos",    "3"                     },
5540   { "df_wooden_grid_rotating_8.EDITOR.frames",  "1"                     },
5541
5542   { "df_fibre_optic_red_1",                     "RocksDF.png"           },
5543   { "df_fibre_optic_red_1.xpos",                "8"                     },
5544   { "df_fibre_optic_red_1.ypos",                "8"                     },
5545   { "df_fibre_optic_red_1.frames",              "1"                     },
5546   { "df_fibre_optic_red_1.EDITOR",              "RocksDF.png"           },
5547   { "df_fibre_optic_red_1.EDITOR.xpos",         "8"                     },
5548   { "df_fibre_optic_red_1.EDITOR.ypos",         "9"                     },
5549   { "df_fibre_optic_red_1.EDITOR.frames",       "1"                     },
5550   { "df_fibre_optic_red_2",                     "RocksDF.png"           },
5551   { "df_fibre_optic_red_2.xpos",                "9"                     },
5552   { "df_fibre_optic_red_2.ypos",                "8"                     },
5553   { "df_fibre_optic_red_2.frames",              "1"                     },
5554   { "df_fibre_optic_red_2.EDITOR",              "RocksDF.png"           },
5555   { "df_fibre_optic_red_2.EDITOR.xpos",         "9"                     },
5556   { "df_fibre_optic_red_2.EDITOR.ypos",         "9"                     },
5557   { "df_fibre_optic_red_2.EDITOR.frames",       "1"                     },
5558   { "df_fibre_optic_yellow_1",                  "RocksDF.png"           },
5559   { "df_fibre_optic_yellow_1.xpos",             "10"                    },
5560   { "df_fibre_optic_yellow_1.ypos",             "8"                     },
5561   { "df_fibre_optic_yellow_1.frames",           "1"                     },
5562   { "df_fibre_optic_yellow_1.EDITOR",           "RocksDF.png"           },
5563   { "df_fibre_optic_yellow_1.EDITOR.xpos",      "10"                    },
5564   { "df_fibre_optic_yellow_1.EDITOR.ypos",      "9"                     },
5565   { "df_fibre_optic_yellow_1.EDITOR.frames",    "1"                     },
5566   { "df_fibre_optic_yellow_2",                  "RocksDF.png"           },
5567   { "df_fibre_optic_yellow_2.xpos",             "11"                    },
5568   { "df_fibre_optic_yellow_2.ypos",             "8"                     },
5569   { "df_fibre_optic_yellow_2.frames",           "1"                     },
5570   { "df_fibre_optic_yellow_2.EDITOR",           "RocksDF.png"           },
5571   { "df_fibre_optic_yellow_2.EDITOR.xpos",      "11"                    },
5572   { "df_fibre_optic_yellow_2.EDITOR.ypos",      "9"                     },
5573   { "df_fibre_optic_yellow_2.EDITOR.frames",    "1"                     },
5574   { "df_fibre_optic_green_1",                   "RocksDF.png"           },
5575   { "df_fibre_optic_green_1.xpos",              "12"                    },
5576   { "df_fibre_optic_green_1.ypos",              "8"                     },
5577   { "df_fibre_optic_green_1.frames",            "1"                     },
5578   { "df_fibre_optic_green_1.EDITOR",            "RocksDF.png"           },
5579   { "df_fibre_optic_green_1.EDITOR.xpos",       "12"                    },
5580   { "df_fibre_optic_green_1.EDITOR.ypos",       "9"                     },
5581   { "df_fibre_optic_green_1.EDITOR.frames",     "1"                     },
5582   { "df_fibre_optic_green_2",                   "RocksDF.png"           },
5583   { "df_fibre_optic_green_2.xpos",              "13"                    },
5584   { "df_fibre_optic_green_2.ypos",              "8"                     },
5585   { "df_fibre_optic_green_2.frames",            "1"                     },
5586   { "df_fibre_optic_green_2.EDITOR",            "RocksDF.png"           },
5587   { "df_fibre_optic_green_2.EDITOR.xpos",       "13"                    },
5588   { "df_fibre_optic_green_2.EDITOR.ypos",       "9"                     },
5589   { "df_fibre_optic_green_2.EDITOR.frames",     "1"                     },
5590   { "df_fibre_optic_blue_1",                    "RocksDF.png"           },
5591   { "df_fibre_optic_blue_1.xpos",               "14"                    },
5592   { "df_fibre_optic_blue_1.ypos",               "8"                     },
5593   { "df_fibre_optic_blue_1.frames",             "1"                     },
5594   { "df_fibre_optic_blue_1.EDITOR",             "RocksDF.png"           },
5595   { "df_fibre_optic_blue_1.EDITOR.xpos",        "14"                    },
5596   { "df_fibre_optic_blue_1.EDITOR.ypos",        "9"                     },
5597   { "df_fibre_optic_blue_1.EDITOR.frames",      "1"                     },
5598   { "df_fibre_optic_blue_2",                    "RocksDF.png"           },
5599   { "df_fibre_optic_blue_2.xpos",               "15"                    },
5600   { "df_fibre_optic_blue_2.ypos",               "8"                     },
5601   { "df_fibre_optic_blue_2.frames",             "1"                     },
5602   { "df_fibre_optic_blue_2.EDITOR",             "RocksDF.png"           },
5603   { "df_fibre_optic_blue_2.EDITOR.xpos",        "15"                    },
5604   { "df_fibre_optic_blue_2.EDITOR.ypos",        "9"                     },
5605   { "df_fibre_optic_blue_2.EDITOR.frames",      "1"                     },
5606
5607   { "df_steel_wall",                            "RocksDF.png"           },
5608   { "df_steel_wall.xpos",                       "6"                     },
5609   { "df_steel_wall.ypos",                       "8"                     },
5610   { "df_steel_wall.frames",                     "1"                     },
5611
5612   { "df_wooden_wall",                           "RocksDF.png"           },
5613   { "df_wooden_wall.xpos",                      "7"                     },
5614   { "df_wooden_wall.ypos",                      "8"                     },
5615   { "df_wooden_wall.frames",                    "1"                     },
5616
5617   { "df_refractor",                             "RocksDF.png"           },
5618   { "df_refractor.xpos",                        "1"                     },
5619   { "df_refractor.ypos",                        "8"                     },
5620   { "df_refractor.frames",                      "1"                     },
5621
5622   { "df_cell",                                  "RocksDF.png"           },
5623   { "df_cell.xpos",                             "2"                     },
5624   { "df_cell.ypos",                             "8"                     },
5625   { "df_cell.frames",                           "1"                     },
5626
5627   { "df_mine",                                  "RocksDF.png"           },
5628   { "df_mine.xpos",                             "4"                     },
5629   { "df_mine.ypos",                             "8"                     },
5630   { "df_mine.frames",                           "1"                     },
5631
5632   // (these are only defined as elements to support ".PANEL" definitions)
5633   { "graphic_1",                                UNDEFINED_FILENAME      },
5634   { "graphic_2",                                UNDEFINED_FILENAME      },
5635   { "graphic_3",                                UNDEFINED_FILENAME      },
5636   { "graphic_4",                                UNDEFINED_FILENAME      },
5637   { "graphic_5",                                UNDEFINED_FILENAME      },
5638   { "graphic_6",                                UNDEFINED_FILENAME      },
5639   { "graphic_7",                                UNDEFINED_FILENAME      },
5640   { "graphic_8",                                UNDEFINED_FILENAME      },
5641
5642 #include "conf_chr.c"   // include auto-generated data structure definitions
5643 #include "conf_cus.c"   // include auto-generated data structure definitions
5644 #include "conf_grp.c"   // include auto-generated data structure definitions
5645
5646
5647   // ==========================================================================
5648   // image definitions not associated with game elements (menu screens etc.)
5649   // ==========================================================================
5650
5651   // keyword to stop parser: "NO_MORE_ELEMENT_IMAGES" <-- do not change!
5652
5653 #if 1
5654   // !!! TEMPORARILY STORED HERE -- PROBABLY TO BE CHANGED !!!
5655
5656   // (for testing, change filename back to "emc_objects dot png")
5657   { "emc_object",                               "RocksEMC.png"          },
5658 #if 0
5659   { "emc_object.scale_up_factor",               "2"                     },
5660 #endif
5661
5662   // (for testing, change filename back to "emc_players dot png")
5663   { "emc_sprite",                               "RocksEMC.png"          },
5664 #if 0
5665   { "emc_sprite.scale_up_factor",               "2"                     },
5666 #endif
5667 #endif
5668
5669   { "sp_frame_horizontal",                      "RocksSP.png"           },
5670   { "sp_frame_horizontal.xpos",                 "7"                     },
5671   { "sp_frame_horizontal.ypos",                 "14"                    },
5672   { "sp_frame_vertical",                        "RocksSP.png"           },
5673   { "sp_frame_vertical.xpos",                   "6"                     },
5674   { "sp_frame_vertical.ypos",                   "14"                    },
5675   { "sp_frame_corner",                          "RocksSP.png"           },
5676   { "sp_frame_corner.xpos",                     "5"                     },
5677   { "sp_frame_corner.ypos",                     "14"                    },
5678
5679   { "toon_1",                                   "RocksToons.png"        },
5680   { "toon_1.x",                                 "2"                     },
5681   { "toon_1.y",                                 "72"                    },
5682   { "toon_1.width",                             "40"                    },
5683   { "toon_1.height",                            "48"                    },
5684   { "toon_1.frames",                            "8"                     },
5685   { "toon_1.delay",                             "1"                     },
5686   { "toon_1.step_offset",                       "4"                     },
5687   { "toon_1.step_delay",                        "5"                     },
5688   { "toon_1.direction",                         "right"                 },
5689   { "toon_1.position",                          "bottom"                },
5690
5691   { "toon_2",                                   "RocksToons.png"        },
5692   { "toon_2.x",                                 "2"                     },
5693   { "toon_2.y",                                 "186"                   },
5694   { "toon_2.width",                             "40"                    },
5695   { "toon_2.height",                            "48"                    },
5696   { "toon_2.frames",                            "8"                     },
5697   { "toon_2.delay",                             "1"                     },
5698   { "toon_2.step_offset",                       "4"                     },
5699   { "toon_2.step_delay",                        "5"                     },
5700   { "toon_2.direction",                         "left"                  },
5701   { "toon_2.position",                          "bottom"                },
5702
5703   { "toon_3",                                   "RocksToons.png"        },
5704   { "toon_3.x",                                 "2"                     },
5705   { "toon_3.y",                                 "125"                   },
5706   { "toon_3.width",                             "48"                    },
5707   { "toon_3.height",                            "56"                    },
5708   { "toon_3.frames",                            "8"                     },
5709   { "toon_3.delay",                             "1"                     },
5710   { "toon_3.step_offset",                       "4"                     },
5711   { "toon_3.step_delay",                        "5"                     },
5712   { "toon_3.direction",                         "right"                 },
5713   { "toon_3.position",                          "bottom"                },
5714
5715   { "toon_4",                                   "RocksToons.png"        },
5716   { "toon_4.x",                                 "327"                   },
5717   { "toon_4.y",                                 "10"                    },
5718   { "toon_4.width",                             "80"                    },
5719   { "toon_4.height",                            "110"                   },
5720   { "toon_4.frames",                            "1"                     },
5721   { "toon_4.delay",                             "1"                     },
5722   { "toon_4.step_offset",                       "1"                     },
5723   { "toon_4.step_delay",                        "1"                     },
5724   { "toon_4.direction",                         "up"                    },
5725   { "toon_4.position",                          "any"                   },
5726
5727   { "toon_5",                                   "RocksToons.png"        },
5728   { "toon_5.x",                                 "2"                     },
5729   { "toon_5.y",                                 "2"                     },
5730   { "toon_5.width",                             "32"                    },
5731   { "toon_5.height",                            "30"                    },
5732   { "toon_5.frames",                            "8"                     },
5733   { "toon_5.delay",                             "2"                     },
5734   { "toon_5.anim_mode",                         "pingpong2"             },
5735   { "toon_5.step_offset",                       "2"                     },
5736   { "toon_5.step_delay",                        "1"                     },
5737   { "toon_5.direction",                         "right"                 },
5738   { "toon_5.position",                          "upper"                 },
5739
5740   { "toon_6",                                   "RocksToons.png"        },
5741   { "toon_6.x",                                 "2"                     },
5742   { "toon_6.y",                                 "37"                    },
5743   { "toon_6.width",                             "32"                    },
5744   { "toon_6.height",                            "30"                    },
5745   { "toon_6.frames",                            "8"                     },
5746   { "toon_6.delay",                             "2"                     },
5747   { "toon_6.anim_mode",                         "pingpong2"             },
5748   { "toon_6.step_offset",                       "2"                     },
5749   { "toon_6.step_delay",                        "1"                     },
5750   { "toon_6.direction",                         "left"                  },
5751   { "toon_6.position",                          "upper"                 },
5752
5753   { "toon_7",                                   "RocksMore.png"         },
5754   { "toon_7.xpos",                              "0"                     },
5755   { "toon_7.ypos",                              "6"                     },
5756   { "toon_7.frames",                            "16"                    },
5757   { "toon_7.delay",                             "2"                     },
5758   { "toon_7.direction",                         "down"                  },
5759   { "toon_7.position",                          "any"                   },
5760
5761   { "toon_8",                                   "RocksHeroes.png"       },
5762   { "toon_8.xpos",                              "4"                     },
5763   { "toon_8.ypos",                              "1"                     },
5764   { "toon_8.frames",                            "4"                     },
5765   { "toon_8.delay",                             "4"                     },
5766   { "toon_8.direction",                         "right"                 },
5767   { "toon_8.position",                          "bottom"                },
5768
5769   { "toon_9",                                   "RocksHeroes.png"       },
5770   { "toon_9.xpos",                              "8"                     },
5771   { "toon_9.ypos",                              "7"                     },
5772   { "toon_9.frames",                            "4"                     },
5773   { "toon_9.delay",                             "2"                     },
5774   { "toon_9.direction",                         "left"                  },
5775   { "toon_9.position",                          "bottom"                },
5776
5777   { "toon_10",                                  "RocksHeroes.png"       },
5778   { "toon_10.xpos",                             "12"                    },
5779   { "toon_10.ypos",                             "7"                     },
5780   { "toon_10.frames",                           "4"                     },
5781   { "toon_10.delay",                            "2"                     },
5782   { "toon_10.direction",                        "right"                 },
5783   { "toon_10.position",                         "bottom"                },
5784
5785   { "toon_11",                                  "RocksHeroes.png"       },
5786   { "toon_11.xpos",                             "8"                     },
5787   { "toon_11.ypos",                             "5"                     },
5788   { "toon_11.frames",                           "4"                     },
5789   { "toon_11.delay",                            "2"                     },
5790   { "toon_11.direction",                        "left"                  },
5791   { "toon_11.position",                         "bottom"                },
5792
5793   { "toon_12",                                  "RocksHeroes.png"       },
5794   { "toon_12.xpos",                             "12"                    },
5795   { "toon_12.ypos",                             "5"                     },
5796   { "toon_12.frames",                           "4"                     },
5797   { "toon_12.delay",                            "2"                     },
5798   { "toon_12.direction",                        "right"                 },
5799   { "toon_12.position",                         "bottom"                },
5800
5801   { "toon_13",                                  "RocksHeroes.png"       },
5802   { "toon_13.xpos",                             "8"                     },
5803   { "toon_13.ypos",                             "1"                     },
5804   { "toon_13.frames",                           "4"                     },
5805   { "toon_13.delay",                            "2"                     },
5806   { "toon_13.direction",                        "left"                  },
5807   { "toon_13.position",                         "bottom"                },
5808
5809   { "toon_14",                                  "RocksHeroes.png"       },
5810   { "toon_14.xpos",                             "12"                    },
5811   { "toon_14.ypos",                             "1"                     },
5812   { "toon_14.frames",                           "4"                     },
5813   { "toon_14.delay",                            "2"                     },
5814   { "toon_14.direction",                        "right"                 },
5815   { "toon_14.position",                         "bottom"                },
5816
5817   { "toon_15",                                  "RocksHeroes.png"       },
5818   { "toon_15.xpos",                             "8"                     },
5819   { "toon_15.ypos",                             "3"                     },
5820   { "toon_15.frames",                           "4"                     },
5821   { "toon_15.delay",                            "2"                     },
5822   { "toon_15.direction",                        "left"                  },
5823   { "toon_15.position",                         "bottom"                },
5824
5825   { "toon_16",                                  "RocksHeroes.png"       },
5826   { "toon_16.xpos",                             "12"                    },
5827   { "toon_16.ypos",                             "3"                     },
5828   { "toon_16.frames",                           "4"                     },
5829   { "toon_16.delay",                            "2"                     },
5830   { "toon_16.direction",                        "right"                 },
5831   { "toon_16.position",                         "bottom"                },
5832
5833   { "toon_17",                                  "RocksHeroes.png"       },
5834   { "toon_17.xpos",                             "8"                     },
5835   { "toon_17.ypos",                             "9"                     },
5836   { "toon_17.frames",                           "8"                     },
5837   { "toon_17.delay",                            "2"                     },
5838   { "toon_17.direction",                        "left"                  },
5839   { "toon_17.position",                         "any"                   },
5840
5841   { "toon_18",                                  "RocksHeroes.png"       },
5842   { "toon_18.xpos",                             "8"                     },
5843   { "toon_18.ypos",                             "9"                     },
5844   { "toon_18.frames",                           "8"                     },
5845   { "toon_18.delay",                            "2"                     },
5846   { "toon_18.direction",                        "right"                 },
5847   { "toon_18.position",                         "any"                   },
5848
5849   { "toon_19",                                  "RocksElements.png"     },
5850   { "toon_19.xpos",                             "8"                     },
5851   { "toon_19.ypos",                             "0"                     },
5852   { "toon_19.frames",                           "2"                     },
5853   { "toon_19.delay",                            "4"                     },
5854   { "toon_19.direction",                        "down"                  },
5855   { "toon_19.position",                         "any"                   },
5856
5857   { "toon_20",                                  "RocksElements.png"     },
5858   { "toon_20.xpos",                             "10"                    },
5859   { "toon_20.ypos",                             "0"                     },
5860   { "toon_20.frames",                           "2"                     },
5861   { "toon_20.delay",                            "4"                     },
5862   { "toon_20.direction",                        "down"                  },
5863   { "toon_20.position",                         "any"                   },
5864
5865   { "gfx.global.anim_1",                        UNDEFINED_FILENAME      },
5866   { "gfx.global.anim_2",                        UNDEFINED_FILENAME      },
5867   { "gfx.global.anim_3",                        UNDEFINED_FILENAME      },
5868   { "gfx.global.anim_4",                        UNDEFINED_FILENAME      },
5869   { "gfx.global.anim_5",                        UNDEFINED_FILENAME      },
5870   { "gfx.global.anim_6",                        UNDEFINED_FILENAME      },
5871   { "gfx.global.anim_7",                        UNDEFINED_FILENAME      },
5872   { "gfx.global.anim_8",                        UNDEFINED_FILENAME      },
5873   { "gfx.global.anim_9",                        UNDEFINED_FILENAME      },
5874   { "gfx.global.anim_10",                       UNDEFINED_FILENAME      },
5875   { "gfx.global.anim_11",                       UNDEFINED_FILENAME      },
5876   { "gfx.global.anim_12",                       UNDEFINED_FILENAME      },
5877   { "gfx.global.anim_13",                       UNDEFINED_FILENAME      },
5878   { "gfx.global.anim_14",                       UNDEFINED_FILENAME      },
5879   { "gfx.global.anim_15",                       UNDEFINED_FILENAME      },
5880   { "gfx.global.anim_16",                       UNDEFINED_FILENAME      },
5881   { "gfx.global.anim_17",                       UNDEFINED_FILENAME      },
5882   { "gfx.global.anim_18",                       UNDEFINED_FILENAME      },
5883   { "gfx.global.anim_19",                       UNDEFINED_FILENAME      },
5884   { "gfx.global.anim_20",                       UNDEFINED_FILENAME      },
5885   { "gfx.global.anim_21",                       UNDEFINED_FILENAME      },
5886   { "gfx.global.anim_22",                       UNDEFINED_FILENAME      },
5887   { "gfx.global.anim_23",                       UNDEFINED_FILENAME      },
5888   { "gfx.global.anim_24",                       UNDEFINED_FILENAME      },
5889   { "gfx.global.anim_25",                       UNDEFINED_FILENAME      },
5890   { "gfx.global.anim_26",                       UNDEFINED_FILENAME      },
5891   { "gfx.global.anim_27",                       UNDEFINED_FILENAME      },
5892   { "gfx.global.anim_28",                       UNDEFINED_FILENAME      },
5893   { "gfx.global.anim_29",                       UNDEFINED_FILENAME      },
5894   { "gfx.global.anim_30",                       UNDEFINED_FILENAME      },
5895   { "gfx.global.anim_31",                       UNDEFINED_FILENAME      },
5896   { "gfx.global.anim_32",                       UNDEFINED_FILENAME      },
5897
5898   { "global.anim_1",                            UNDEFINED_FILENAME      },
5899   { "global.anim_2",                            UNDEFINED_FILENAME      },
5900   { "global.anim_3",                            UNDEFINED_FILENAME      },
5901   { "global.anim_4",                            UNDEFINED_FILENAME      },
5902   { "global.anim_5",                            UNDEFINED_FILENAME      },
5903   { "global.anim_6",                            UNDEFINED_FILENAME      },
5904   { "global.anim_7",                            UNDEFINED_FILENAME      },
5905   { "global.anim_8",                            UNDEFINED_FILENAME      },
5906   { "global.anim_9",                            UNDEFINED_FILENAME      },
5907   { "global.anim_10",                           UNDEFINED_FILENAME      },
5908   { "global.anim_11",                           UNDEFINED_FILENAME      },
5909   { "global.anim_12",                           UNDEFINED_FILENAME      },
5910   { "global.anim_13",                           UNDEFINED_FILENAME      },
5911   { "global.anim_14",                           UNDEFINED_FILENAME      },
5912   { "global.anim_15",                           UNDEFINED_FILENAME      },
5913   { "global.anim_16",                           UNDEFINED_FILENAME      },
5914   { "global.anim_17",                           UNDEFINED_FILENAME      },
5915   { "global.anim_18",                           UNDEFINED_FILENAME      },
5916   { "global.anim_19",                           UNDEFINED_FILENAME      },
5917   { "global.anim_20",                           UNDEFINED_FILENAME      },
5918   { "global.anim_21",                           UNDEFINED_FILENAME      },
5919   { "global.anim_22",                           UNDEFINED_FILENAME      },
5920   { "global.anim_23",                           UNDEFINED_FILENAME      },
5921   { "global.anim_24",                           UNDEFINED_FILENAME      },
5922   { "global.anim_25",                           UNDEFINED_FILENAME      },
5923   { "global.anim_26",                           UNDEFINED_FILENAME      },
5924   { "global.anim_27",                           UNDEFINED_FILENAME      },
5925   { "global.anim_28",                           UNDEFINED_FILENAME      },
5926   { "global.anim_29",                           UNDEFINED_FILENAME      },
5927   { "global.anim_30",                           UNDEFINED_FILENAME      },
5928   { "global.anim_31",                           UNDEFINED_FILENAME      },
5929   { "global.anim_32",                           UNDEFINED_FILENAME      },
5930
5931   { "internal.global.toon_default",             UNDEFINED_FILENAME      },
5932   { "internal.global.toon_default.anim_mode",   "random"                },
5933
5934   { "internal.global.anim_default",             UNDEFINED_FILENAME      },
5935
5936   { "menu.calibrate_red",                       "RocksElements.png"     },
5937   { "menu.calibrate_red.xpos",                  "12"                    },
5938   { "menu.calibrate_red.ypos",                  "8"                     },
5939   { "menu.calibrate_red.frames",                "1"                     },
5940   { "menu.calibrate_blue",                      "RocksElements.png"     },
5941   { "menu.calibrate_blue.xpos",                 "13"                    },
5942   { "menu.calibrate_blue.ypos",                 "8"                     },
5943   { "menu.calibrate_blue.frames",               "1"                     },
5944   { "menu.calibrate_yellow",                    "RocksElements.png"     },
5945   { "menu.calibrate_yellow.xpos",               "14"                    },
5946   { "menu.calibrate_yellow.ypos",               "8"                     },
5947   { "menu.calibrate_yellow.frames",             "1"                     },
5948
5949   { "menu.button",                              "RocksElements.png"     },
5950   { "menu.button.xpos",                         "13"                    },
5951   { "menu.button.ypos",                         "8"                     },
5952   { "menu.button.frames",                       "1"                     },
5953   { "menu.button.active",                       "RocksElements.png"     },
5954   { "menu.button.active.xpos",                  "12"                    },
5955   { "menu.button.active.ypos",                  "8"                     },
5956   { "menu.button.active.frames",                "1"                     },
5957
5958   { "menu.button_left",                         "RocksDC.png"           },
5959   { "menu.button_left.xpos",                    "8"                     },
5960   { "menu.button_left.ypos",                    "8"                     },
5961   { "menu.button_left.frames",                  "1"                     },
5962   { "menu.button_left.active",                  "RocksDC.png"           },
5963   { "menu.button_left.active.xpos",             "8"                     },
5964   { "menu.button_left.active.ypos",             "9"                     },
5965   { "menu.button_left.active.frames",           "1"                     },
5966   { "menu.button_right",                        "RocksDC.png"           },
5967   { "menu.button_right.xpos",                   "9"                     },
5968   { "menu.button_right.ypos",                   "8"                     },
5969   { "menu.button_right.frames",                 "1"                     },
5970   { "menu.button_right.active",                 "RocksDC.png"           },
5971   { "menu.button_right.active.xpos",            "9"                     },
5972   { "menu.button_right.active.ypos",            "9"                     },
5973   { "menu.button_right.active.frames",          "1"                     },
5974   { "menu.button_up",                           "RocksDC.png"           },
5975   { "menu.button_up.xpos",                      "10"                    },
5976   { "menu.button_up.ypos",                      "8"                     },
5977   { "menu.button_up.frames",                    "1"                     },
5978   { "menu.button_up.active",                    "RocksDC.png"           },
5979   { "menu.button_up.active.xpos",               "10"                    },
5980   { "menu.button_up.active.ypos",               "9"                     },
5981   { "menu.button_up.active.frames",             "1"                     },
5982   { "menu.button_down",                         "RocksDC.png"           },
5983   { "menu.button_down.xpos",                    "11"                    },
5984   { "menu.button_down.ypos",                    "8"                     },
5985   { "menu.button_down.frames",                  "1"                     },
5986   { "menu.button_down.active",                  "RocksDC.png"           },
5987   { "menu.button_down.active.xpos",             "11"                    },
5988   { "menu.button_down.active.ypos",             "9"                     },
5989   { "menu.button_down.active.frames",           "1"                     },
5990
5991   { "menu.button_enter_menu",                   UNDEFINED_FILENAME      },
5992   { "menu.button_enter_menu.clone_from",        "menu.button_right"     },
5993   { "menu.button_enter_menu.active",            UNDEFINED_FILENAME      },
5994   { "menu.button_enter_menu.active.clone_from", "menu.button_right.active" },
5995   { "menu.button_leave_menu",                   UNDEFINED_FILENAME      },
5996   { "menu.button_leave_menu.clone_from",        "menu.button_left"      },
5997   { "menu.button_leave_menu.active",            UNDEFINED_FILENAME      },
5998   { "menu.button_leave_menu.active.clone_from", "menu.button_left.active" },
5999
6000   { "menu.button_next_level",                   UNDEFINED_FILENAME      },
6001   { "menu.button_next_level.clone_from",        "menu.button_right"     },
6002   { "menu.button_next_level.active",            UNDEFINED_FILENAME      },
6003   { "menu.button_next_level.active.clone_from", "menu.button_right.active" },
6004   { "menu.button_prev_level",                   UNDEFINED_FILENAME      },
6005   { "menu.button_prev_level.clone_from",        "menu.button_left"      },
6006   { "menu.button_prev_level.active",            UNDEFINED_FILENAME      },
6007   { "menu.button_prev_level.active.clone_from", "menu.button_left.active" },
6008
6009   { "menu.button_name",                         UNDEFINED_FILENAME      },
6010   { "menu.button_name.clone_from",              "menu.button"           },
6011   { "menu.button_name.active",                  UNDEFINED_FILENAME      },
6012   { "menu.button_name.active.clone_from",       "menu.button.active"    },
6013   { "menu.button_levels",                       UNDEFINED_FILENAME      },
6014   { "menu.button_levels.clone_from",            "menu.button_right"     },
6015   { "menu.button_levels.active",                UNDEFINED_FILENAME      },
6016   { "menu.button_levels.active.clone_from",     "menu.button_right.active" },
6017   { "menu.button_scores",                       UNDEFINED_FILENAME      },
6018   { "menu.button_scores.clone_from",            "menu.button"           },
6019   { "menu.button_scores.active",                UNDEFINED_FILENAME      },
6020   { "menu.button_scores.active.clone_from",     "menu.button.active"    },
6021   { "menu.button_editor",                       UNDEFINED_FILENAME      },
6022   { "menu.button_editor.clone_from",            "menu.button"           },
6023   { "menu.button_editor.active",                UNDEFINED_FILENAME      },
6024   { "menu.button_editor.active.clone_from",     "menu.button.active"    },
6025   { "menu.button_info",                         UNDEFINED_FILENAME      },
6026   { "menu.button_info.clone_from",              "menu.button_right"     },
6027   { "menu.button_info.active",                  UNDEFINED_FILENAME      },
6028   { "menu.button_info.active.clone_from",       "menu.button_right.active" },
6029   { "menu.button_game",                         UNDEFINED_FILENAME      },
6030   { "menu.button_game.clone_from",              "menu.button"           },
6031   { "menu.button_game.active",                  UNDEFINED_FILENAME      },
6032   { "menu.button_game.active.clone_from",       "menu.button.active"    },
6033   { "menu.button_setup",                        UNDEFINED_FILENAME      },
6034   { "menu.button_setup.clone_from",             "menu.button_right"     },
6035   { "menu.button_setup.active",                 UNDEFINED_FILENAME      },
6036   { "menu.button_setup.active.clone_from",      "menu.button_right.active" },
6037   { "menu.button_quit",                         UNDEFINED_FILENAME      },
6038   { "menu.button_quit.clone_from",              "menu.button"           },
6039   { "menu.button_quit.active",                  UNDEFINED_FILENAME      },
6040   { "menu.button_quit.active.clone_from",       "menu.button.active"    },
6041
6042   { "menu.button_first_level",                  UNDEFINED_FILENAME      },
6043   { "menu.button_first_level.active",           UNDEFINED_FILENAME      },
6044   { "menu.button_last_level",                   UNDEFINED_FILENAME      },
6045   { "menu.button_last_level.active",            UNDEFINED_FILENAME      },
6046   { "menu.button_level_number",                 UNDEFINED_FILENAME      },
6047   { "menu.button_level_number.active",          UNDEFINED_FILENAME      },
6048
6049   { "menu.button_insert_solution",              UNDEFINED_FILENAME      },
6050   { "menu.button_insert_solution.active",       UNDEFINED_FILENAME      },
6051   { "menu.button_play_solution",                UNDEFINED_FILENAME      },
6052   { "menu.button_play_solution.active",         UNDEFINED_FILENAME      },
6053
6054   { "menu.scrollbar",                           "RocksDC.png"           },
6055   { "menu.scrollbar.xpos",                      "8"                     },
6056   { "menu.scrollbar.ypos",                      "10"                    },
6057   { "menu.scrollbar.frames",                    "1"                     },
6058   { "menu.scrollbar.active",                    "RocksDC.png"           },
6059   { "menu.scrollbar.active.xpos",               "9"                     },
6060   { "menu.scrollbar.active.ypos",               "10"                    },
6061   { "menu.scrollbar.active.frames",             "1"                     },
6062
6063   { "gfx.game.panel.time_anim",                 "RocksDoorMM.png"       },
6064   { "gfx.game.panel.time_anim.x",               "5"                     },
6065   { "gfx.game.panel.time_anim.y",               "0"                     },
6066   { "gfx.game.panel.time_anim.width",           "90"                    },
6067   { "gfx.game.panel.time_anim.height",          "35"                    },
6068   { "gfx.game.panel.time_anim.frames",          "1"                     },
6069   { "gfx.game.panel.time_anim.active",          "RocksDoorMM.png"       },
6070   { "gfx.game.panel.time_anim.active.x",        "105"                   },
6071   { "gfx.game.panel.time_anim.active.y",        "0"                     },
6072   { "gfx.game.panel.time_anim.active.width",    "90"                    },
6073   { "gfx.game.panel.time_anim.active.height",   "35"                    },
6074   { "gfx.game.panel.time_anim.active.frames",   "1"                     },
6075
6076   { "gfx.game.panel.health_anim",               "RocksDoorMM.png"       },
6077   { "gfx.game.panel.health_anim.x",             "5"                     },
6078   { "gfx.game.panel.health_anim.y",             "35"                    },
6079   { "gfx.game.panel.health_anim.width",         "90"                    },
6080   { "gfx.game.panel.health_anim.height",        "35"                    },
6081   { "gfx.game.panel.health_anim.frames",        "1"                     },
6082   { "gfx.game.panel.health_anim.active",        "RocksDoorMM.png"       },
6083   { "gfx.game.panel.health_anim.active.x",      "105"                   },
6084   { "gfx.game.panel.health_anim.active.y",      "35"                    },
6085   { "gfx.game.panel.health_anim.active.width",  "90"                    },
6086   { "gfx.game.panel.health_anim.active.height", "35"                    },
6087   { "gfx.game.panel.health_anim.active.frames", "1"                     },
6088
6089   { "gfx.game.button.stop",                     "RocksDoor.png"         },
6090   { "gfx.game.button.stop.x",                   "305"                   },
6091   { "gfx.game.button.stop.y",                   "185"                   },
6092   { "gfx.game.button.stop.width",               "30"                    },
6093   { "gfx.game.button.stop.height",              "30"                    },
6094   { "gfx.game.button.stop.pressed_xoffset",     "-100"                  },
6095   { "gfx.game.button.pause",                    "RocksDoor.png"         },
6096   { "gfx.game.button.pause.x",                  "335"                   },
6097   { "gfx.game.button.pause.y",                  "185"                   },
6098   { "gfx.game.button.pause.width",              "30"                    },
6099   { "gfx.game.button.pause.height",             "30"                    },
6100   { "gfx.game.button.pause.pressed_xoffset",    "-100"                  },
6101   { "gfx.game.button.play",                     "RocksDoor.png"         },
6102   { "gfx.game.button.play.x",                   "365"                   },
6103   { "gfx.game.button.play.y",                   "185"                   },
6104   { "gfx.game.button.play.width",               "30"                    },
6105   { "gfx.game.button.play.height",              "30"                    },
6106   { "gfx.game.button.play.pressed_xoffset",     "-100"                  },
6107
6108   { "gfx.game.button.undo",                     "RocksDoor2.png"        },
6109   { "gfx.game.button.undo.x",                   "105"                   },
6110   { "gfx.game.button.undo.y",                   "20"                    },
6111   { "gfx.game.button.undo.width",               "30"                    },
6112   { "gfx.game.button.undo.height",              "30"                    },
6113   { "gfx.game.button.undo.pressed_xoffset",     "-100"                  },
6114   { "gfx.game.button.redo",                     "RocksDoor2.png"        },
6115   { "gfx.game.button.redo.x",                   "165"                   },
6116   { "gfx.game.button.redo.y",                   "20"                    },
6117   { "gfx.game.button.redo.width",               "30"                    },
6118   { "gfx.game.button.redo.height",              "30"                    },
6119   { "gfx.game.button.redo.pressed_xoffset",     "-100"                  },
6120
6121   { "gfx.game.button.save",                     "RocksDoor2.png"        },
6122   { "gfx.game.button.save.x",                   "105"                   },
6123   { "gfx.game.button.save.y",                   "50"                    },
6124   { "gfx.game.button.save.width",               "30"                    },
6125   { "gfx.game.button.save.height",              "30"                    },
6126   { "gfx.game.button.save.pressed_xoffset",     "-100"                  },
6127   { "gfx.game.button.pause2",                   "RocksDoor2.png"        },
6128   { "gfx.game.button.pause2.x",                 "135"                   },
6129   { "gfx.game.button.pause2.y",                 "50"                    },
6130   { "gfx.game.button.pause2.width",             "30"                    },
6131   { "gfx.game.button.pause2.height",            "30"                    },
6132   { "gfx.game.button.pause2.pressed_xoffset",   "-100"                  },
6133   { "gfx.game.button.pause2.active_yoffset",    "-30"                   },
6134   { "gfx.game.button.load",                     "RocksDoor2.png"        },
6135   { "gfx.game.button.load.x",                   "165"                   },
6136   { "gfx.game.button.load.y",                   "50"                    },
6137   { "gfx.game.button.load.width",               "30"                    },
6138   { "gfx.game.button.load.height",              "30"                    },
6139   { "gfx.game.button.load.pressed_xoffset",     "-100"                  },
6140
6141   { "gfx.game.button.sound_music",              "RocksDoor.png"         },
6142   { "gfx.game.button.sound_music.x",            "305"                   },
6143   { "gfx.game.button.sound_music.y",            "245"                   },
6144   { "gfx.game.button.sound_music.width",        "30"                    },
6145   { "gfx.game.button.sound_music.height",       "30"                    },
6146   { "gfx.game.button.sound_music.pressed_xoffset", "-100"               },
6147   { "gfx.game.button.sound_music.active_yoffset", "-30"                 },
6148   { "gfx.game.button.sound_loops",              "RocksDoor.png"         },
6149   { "gfx.game.button.sound_loops.x",            "335"                   },
6150   { "gfx.game.button.sound_loops.y",            "245"                   },
6151   { "gfx.game.button.sound_loops.width",        "30"                    },
6152   { "gfx.game.button.sound_loops.height",       "30"                    },
6153   { "gfx.game.button.sound_loops.pressed_xoffset", "-100"               },
6154   { "gfx.game.button.sound_loops.active_yoffset", "-30"                 },
6155   { "gfx.game.button.sound_simple",             "RocksDoor.png"         },
6156   { "gfx.game.button.sound_simple.x",           "365"                   },
6157   { "gfx.game.button.sound_simple.y",           "245"                   },
6158   { "gfx.game.button.sound_simple.width",       "30"                    },
6159   { "gfx.game.button.sound_simple.height",      "30"                    },
6160   { "gfx.game.button.sound_simple.pressed_xoffset", "-100"              },
6161   { "gfx.game.button.sound_simple.active_yoffset", "-30"                },
6162
6163   { "gfx.game.button.panel_stop",               UNDEFINED_FILENAME      },
6164   { "gfx.game.button.panel_pause",              UNDEFINED_FILENAME      },
6165   { "gfx.game.button.panel_play",               UNDEFINED_FILENAME      },
6166
6167   { "gfx.game.button.panel_sound_music",        UNDEFINED_FILENAME      },
6168   { "gfx.game.button.panel_sound_loops",        UNDEFINED_FILENAME      },
6169   { "gfx.game.button.panel_sound_simple",       UNDEFINED_FILENAME      },
6170
6171   { "gfx.tape.button.eject",                    "RocksDoor.png"         },
6172   { "gfx.tape.button.eject.x",                  "305"                   },
6173   { "gfx.tape.button.eject.y",                  "357"                   },
6174   { "gfx.tape.button.eject.width",              "18"                    },
6175   { "gfx.tape.button.eject.height",             "18"                    },
6176   { "gfx.tape.button.eject.pressed_xoffset",    "-100"                  },
6177   { "gfx.tape.button.extra",                    "RocksDoor.png"         },
6178   { "gfx.tape.button.extra.x",                  "505"                   },
6179   { "gfx.tape.button.extra.y",                  "357"                   },
6180   { "gfx.tape.button.extra.width",              "18"                    },
6181   { "gfx.tape.button.extra.height",             "18"                    },
6182   { "gfx.tape.button.extra.pressed_xoffset",    "-100"                  },
6183   { "gfx.tape.button.stop",                     "RocksDoor.png"         },
6184   { "gfx.tape.button.stop.x",                   "323"                   },
6185   { "gfx.tape.button.stop.y",                   "357"                   },
6186   { "gfx.tape.button.stop.width",               "18"                    },
6187   { "gfx.tape.button.stop.height",              "18"                    },
6188   { "gfx.tape.button.stop.pressed_xoffset",     "-100"                  },
6189   { "gfx.tape.button.pause",                    "RocksDoor.png"         },
6190   { "gfx.tape.button.pause.x",                  "341"                   },
6191   { "gfx.tape.button.pause.y",                  "357"                   },
6192   { "gfx.tape.button.pause.width",              "18"                    },
6193   { "gfx.tape.button.pause.height",             "18"                    },
6194   { "gfx.tape.button.pause.pressed_xoffset",    "-100"                  },
6195   { "gfx.tape.button.record",                   "RocksDoor.png"         },
6196   { "gfx.tape.button.record.x",                 "359"                   },
6197   { "gfx.tape.button.record.y",                 "357"                   },
6198   { "gfx.tape.button.record.width",             "18"                    },
6199   { "gfx.tape.button.record.height",            "18"                    },
6200   { "gfx.tape.button.record.pressed_xoffset",   "-100"                  },
6201   { "gfx.tape.button.play",                     "RocksDoor.png"         },
6202   { "gfx.tape.button.play.x",                   "377"                   },
6203   { "gfx.tape.button.play.y",                   "357"                   },
6204   { "gfx.tape.button.play.width",               "18"                    },
6205   { "gfx.tape.button.play.height",              "18"                    },
6206   { "gfx.tape.button.play.pressed_xoffset",     "-100"                  },
6207
6208   { "gfx.tape.button.insert_solution",          UNDEFINED_FILENAME      },
6209   { "gfx.tape.button.play_solution",            UNDEFINED_FILENAME      },
6210
6211   { "gfx.tape.symbol.eject",                    UNDEFINED_FILENAME      },
6212   { "gfx.tape.symbol.stop",                     UNDEFINED_FILENAME      },
6213   { "gfx.tape.symbol.pause",                    "RocksDoor.png"         },
6214   { "gfx.tape.symbol.pause.x",                  "340"                   },
6215   { "gfx.tape.symbol.pause.y",                  "321"                   },
6216   { "gfx.tape.symbol.pause.width",              "17"                    },
6217   { "gfx.tape.symbol.pause.height",             "13"                    },
6218   { "gfx.tape.symbol.record",                   "RocksDoor.png"         },
6219   { "gfx.tape.symbol.record.x",                 "325"                   },
6220   { "gfx.tape.symbol.record.y",                 "321"                   },
6221   { "gfx.tape.symbol.record.width",             "16"                    },
6222   { "gfx.tape.symbol.record.height",            "16"                    },
6223   { "gfx.tape.symbol.play",                     "RocksDoor.png"         },
6224   { "gfx.tape.symbol.play.x",                   "357"                   },
6225   { "gfx.tape.symbol.play.y",                   "321"                   },
6226   { "gfx.tape.symbol.play.width",               "11"                    },
6227   { "gfx.tape.symbol.play.height",              "13"                    },
6228   { "gfx.tape.symbol.fast_forward",             "RocksDoor.png"         },
6229   { "gfx.tape.symbol.fast_forward.x",           "539"                   },
6230   { "gfx.tape.symbol.fast_forward.y",           "193"                   },
6231   { "gfx.tape.symbol.fast_forward.width",       "27"                    },
6232   { "gfx.tape.symbol.fast_forward.height",      "13"                    },
6233   { "gfx.tape.symbol.warp_forward",             "RocksDoor.png"         },
6234   { "gfx.tape.symbol.warp_forward.x",           "539"                   },
6235   { "gfx.tape.symbol.warp_forward.y",           "152"                   },
6236   { "gfx.tape.symbol.warp_forward.width",       "27"                    },
6237   { "gfx.tape.symbol.warp_forward.height",      "13"                    },
6238   { "gfx.tape.symbol.warp_forward_blind",       "RocksDoor.png"         },
6239   { "gfx.tape.symbol.warp_forward_blind.x",     "539"                   },
6240   { "gfx.tape.symbol.warp_forward_blind.y",     "165"                   },
6241   { "gfx.tape.symbol.warp_forward_blind.width", "27"                    },
6242   { "gfx.tape.symbol.warp_forward_blind.height","13"                    },
6243   { "gfx.tape.symbol.pause_before_end",         "RocksDoor.png"         },
6244   { "gfx.tape.symbol.pause_before_end.x",       "539"                   },
6245   { "gfx.tape.symbol.pause_before_end.y",       "221"                   },
6246   { "gfx.tape.symbol.pause_before_end.width",   "27"                    },
6247   { "gfx.tape.symbol.pause_before_end.height",  "13"                    },
6248   { "gfx.tape.symbol.single_step",              UNDEFINED_FILENAME      },
6249
6250   { "gfx.tape.label.eject",                     UNDEFINED_FILENAME      },
6251   { "gfx.tape.label.stop",                      UNDEFINED_FILENAME      },
6252   { "gfx.tape.label.pause",                     "RocksDoor.png"         },
6253   { "gfx.tape.label.pause.x",                   "305"                   },
6254   { "gfx.tape.label.pause.y",                   "341"                   },
6255   { "gfx.tape.label.pause.width",               "35"                    },
6256   { "gfx.tape.label.pause.height",              "8"                     },
6257   { "gfx.tape.label.record",                    "RocksDoor.png"         },
6258   { "gfx.tape.label.record.x",                  "305"                   },
6259   { "gfx.tape.label.record.y",                  "321"                   },
6260   { "gfx.tape.label.record.width",              "20"                    },
6261   { "gfx.tape.label.record.height",             "12"                    },
6262   { "gfx.tape.label.play",                      "RocksDoor.png"         },
6263   { "gfx.tape.label.play.x",                    "370"                   },
6264   { "gfx.tape.label.play.y",                    "321"                   },
6265   { "gfx.tape.label.play.width",                "22"                    },
6266   { "gfx.tape.label.play.height",               "12"                    },
6267   { "gfx.tape.label.fast_forward",              "RocksDoor.png"         },
6268   { "gfx.tape.label.fast_forward.x",            "505"                   },
6269   { "gfx.tape.label.fast_forward.y",            "193"                   },
6270   { "gfx.tape.label.fast_forward.width",        "40"                    },
6271   { "gfx.tape.label.fast_forward.height",       "28"                    },
6272   { "gfx.tape.label.warp_forward",              "RocksDoor.png"         },
6273   { "gfx.tape.label.warp_forward.x",            "505"                   },
6274   { "gfx.tape.label.warp_forward.y",            "165"                   },
6275   { "gfx.tape.label.warp_forward.width",        "40"                    },
6276   { "gfx.tape.label.warp_forward.height",       "28"                    },
6277   { "gfx.tape.label.warp_forward_blind",        "RocksDoor.png"         },
6278   { "gfx.tape.label.warp_forward_blind.x",      "505"                   },
6279   { "gfx.tape.label.warp_forward_blind.y",      "165"                   },
6280   { "gfx.tape.label.warp_forward_blind.width",  "40"                    },
6281   { "gfx.tape.label.warp_forward_blind.height", "28"                    },
6282   { "gfx.tape.label.pause_before_end",          "RocksDoor.png"         },
6283   { "gfx.tape.label.pause_before_end.x",        "505"                   },
6284   { "gfx.tape.label.pause_before_end.y",        "221"                   },
6285   { "gfx.tape.label.pause_before_end.width",    "40"                    },
6286   { "gfx.tape.label.pause_before_end.height",   "28"                    },
6287   { "gfx.tape.label.single_step",               "RocksDoor.png"         },
6288   { "gfx.tape.label.single_step.x",             "557"                   },
6289   { "gfx.tape.label.single_step.y",             "139"                   },
6290   { "gfx.tape.label.single_step.width",         "38"                    },
6291   { "gfx.tape.label.single_step.height",        "13"                    },
6292
6293   { "gfx.tape.label.date",                      "RocksDoor.png"         },
6294   { "gfx.tape.label.date.x",                    "305"                   },
6295   { "gfx.tape.label.date.y",                    "285"                   },
6296   { "gfx.tape.label.date.width",                "90"                    },
6297   { "gfx.tape.label.date.height",               "31"                    },
6298   { "gfx.tape.label.time",                      "RocksDoor.png"         },
6299   { "gfx.tape.label.time.x",                    "346"                   },
6300   { "gfx.tape.label.time.y",                    "335"                   },
6301   { "gfx.tape.label.time.width",                "45"                    },
6302   { "gfx.tape.label.time.height",               "13"                    },
6303
6304   { "gfx.request.button.yes",                   "RocksDoor.png"         },
6305   { "gfx.request.button.yes.x",                 "302"                   },
6306   { "gfx.request.button.yes.y",                 "0"                     },
6307   { "gfx.request.button.yes.width",             "46"                    },
6308   { "gfx.request.button.yes.height",            "28"                    },
6309   { "gfx.request.button.yes.pressed_xoffset",   "-100"                  },
6310   { "gfx.request.button.no",                    "RocksDoor.png"         },
6311   { "gfx.request.button.no.x",                  "352"                   },
6312   { "gfx.request.button.no.y",                  "0"                     },
6313   { "gfx.request.button.no.width",              "46"                    },
6314   { "gfx.request.button.no.height",             "28"                    },
6315   { "gfx.request.button.no.pressed_xoffset",    "-100"                  },
6316   { "gfx.request.button.confirm",               "RocksDoor.png"         },
6317   { "gfx.request.button.confirm.x",             "302"                   },
6318   { "gfx.request.button.confirm.y",             "30"                    },
6319   { "gfx.request.button.confirm.width",         "96"                    },
6320   { "gfx.request.button.confirm.height",        "28"                    },
6321   { "gfx.request.button.confirm.pressed_xoffset", "-100"                },
6322   { "gfx.request.button.player_1",              "RocksDoor.png"         },
6323   { "gfx.request.button.player_1.x",            "305"                   },
6324   { "gfx.request.button.player_1.y",            "185"                   },
6325   { "gfx.request.button.player_1.width",        "30"                    },
6326   { "gfx.request.button.player_1.height",       "30"                    },
6327   { "gfx.request.button.player_1.pressed_xoffset", "-100"               },
6328   { "gfx.request.button.player_2",              UNDEFINED_FILENAME      },
6329   { "gfx.request.button.player_2.clone_from",   "gfx.request.button.player_1" },
6330   { "gfx.request.button.player_3",              UNDEFINED_FILENAME      },
6331   { "gfx.request.button.player_3.clone_from",   "gfx.request.button.player_1" },
6332   { "gfx.request.button.player_4",              UNDEFINED_FILENAME      },
6333   { "gfx.request.button.player_4.clone_from",   "gfx.request.button.player_1" },
6334
6335   { "font.initial_1",                           "RocksFontSmall.png"    },
6336   { "font.initial_1.x",                         "0"                     },
6337   { "font.initial_1.y",                         "0"                     },
6338   { "font.initial_1.width",                     "14"                    },
6339   { "font.initial_1.height",                    "14"                    },
6340   { "font.initial_2",                           "RocksFontSmall.png"    },
6341   { "font.initial_2.x",                         "0"                     },
6342   { "font.initial_2.y",                         "70"                    },
6343   { "font.initial_2.width",                     "14"                    },
6344   { "font.initial_2.height",                    "14"                    },
6345   { "font.initial_3",                           "RocksFontSmall.png"    },
6346   { "font.initial_3.x",                         "0"                     },
6347   { "font.initial_3.y",                         "140"                   },
6348   { "font.initial_3.width",                     "14"                    },
6349   { "font.initial_3.height",                    "14"                    },
6350   { "font.initial_4",                           "RocksFontSmall.png"    },
6351   { "font.initial_4.x",                         "0"                     },
6352   { "font.initial_4.y",                         "210"                   },
6353   { "font.initial_4.width",                     "14"                    },
6354   { "font.initial_4.height",                    "14"                    },
6355
6356   { "font.title_1",                             "RocksFontBig.png"      },
6357   { "font.title_1.x",                           "0"                     },
6358   { "font.title_1.y",                           "480"                   },
6359   { "font.title_1.width",                       "32"                    },
6360   { "font.title_1.height",                      "32"                    },
6361   { "font.title_2",                             "RocksFontSmall.png"    },
6362   { "font.title_2.x",                           "0"                     },
6363   { "font.title_2.y",                           "0"                     },
6364   { "font.title_2.width",                       "14"                    },
6365   { "font.title_2.height",                      "14"                    },
6366   { "font.title_2.SETUP",                       UNDEFINED_FILENAME      },
6367   { "font.title_2.SETUP.clone_from",            "font.text_2"           },
6368
6369   { "font.menu_1",                              "RocksFontBig.png"      },
6370   { "font.menu_1.x",                            "0"                     },
6371   { "font.menu_1.y",                            "320"                   },
6372   { "font.menu_1.width",                        "32"                    },
6373   { "font.menu_1.height",                       "32"                    },
6374   { "font.menu_1.active",                       "RocksFontBig.png"      },
6375   { "font.menu_1.active.x",                     "0"                     },
6376   { "font.menu_1.active.y",                     "480"                   },
6377   { "font.menu_1.active.width",                 "32"                    },
6378   { "font.menu_1.active.height",                "32"                    },
6379   { "font.menu_2",                              "RocksFontMedium.png"   },
6380   { "font.menu_2.x",                            "0"                     },
6381   { "font.menu_2.y",                            "320"                   },
6382   { "font.menu_2.width",                        "16"                    },
6383   { "font.menu_2.height",                       "32"                    },
6384   { "font.menu_2.active",                       "RocksFontMedium.png"   },
6385   { "font.menu_2.active.x",                     "0"                     },
6386   { "font.menu_2.active.y",                     "480"                   },
6387   { "font.menu_2.active.width",                 "16"                    },
6388   { "font.menu_2.active.height",                "32"                    },
6389
6390   { "font.text_1",                              "RocksFontSmall.png"    },
6391   { "font.text_1.x",                            "0"                     },
6392   { "font.text_1.y",                            "140"                   },
6393   { "font.text_1.width",                        "14"                    },
6394   { "font.text_1.height",                       "14"                    },
6395   { "font.text_1.MAIN",                         UNDEFINED_FILENAME      },
6396   { "font.text_1.MAIN.clone_from",              "font.text_1.PREVIEW"   },
6397   { "font.text_1.LEVELS",                       "RocksFontMedium.png"   },
6398   { "font.text_1.LEVELS.x",                     "0"                     },
6399   { "font.text_1.LEVELS.y",                     "0"                     },
6400   { "font.text_1.LEVELS.width",                 "16"                    },
6401   { "font.text_1.LEVELS.height",                "32"                    },
6402   { "font.text_1.LEVELNR",                      UNDEFINED_FILENAME      },
6403   { "font.text_1.LEVELNR.clone_from",           "font.text_1.LEVELS"    },
6404   { "font.text_1.SETUP",                        UNDEFINED_FILENAME      },
6405   { "font.text_1.SETUP.clone_from",             "font.text_1.LEVELS"    },
6406   { "font.text_1.PREVIEW",                      "RocksFontEM.png"       },
6407   { "font.text_1.PREVIEW.x",                    "0"                     },
6408   { "font.text_1.PREVIEW.y",                    "160"                   },
6409   { "font.text_1.PREVIEW.width",                "16"                    },
6410   { "font.text_1.PREVIEW.height",               "16"                    },
6411   { "font.text_1.SCORES",                       "RocksFontMedium.png"   },
6412   { "font.text_1.SCORES.x",                     "0"                     },
6413   { "font.text_1.SCORES.y",                     "480"                   },
6414   { "font.text_1.SCORES.width",                 "16"                    },
6415   { "font.text_1.SCORES.height",                "32"                    },
6416   { "font.text_1.active.SCORES",                "RocksFontMedium.png"   },
6417   { "font.text_1.active.SCORES.x",              "0"                     },
6418   { "font.text_1.active.SCORES.y",              "0"                     },
6419   { "font.text_1.active.SCORES.width",          "16"                    },
6420   { "font.text_1.active.SCORES.height",         "32"                    },
6421   { "font.text_1.PANEL",                        UNDEFINED_FILENAME      },
6422   { "font.text_1.PANEL.clone_from",             "font.level_number"     },
6423   { "font.text_1.DOOR",                         UNDEFINED_FILENAME      },
6424   { "font.text_1.DOOR.clone_from",              "font.level_number"     },
6425   { "font.text_2",                              "RocksFontSmall.png"    },
6426   { "font.text_2.x",                            "0"                     },
6427   { "font.text_2.y",                            "210"                   },
6428   { "font.text_2.width",                        "14"                    },
6429   { "font.text_2.height",                       "14"                    },
6430   { "font.text_2.MAIN",                         UNDEFINED_FILENAME      },
6431   { "font.text_2.MAIN.clone_from",              "font.text_2.PREVIEW"   },
6432   { "font.text_2.LEVELS",                       "RocksFontMedium.png"   },
6433   { "font.text_2.LEVELS.x",                     "0"                     },
6434   { "font.text_2.LEVELS.y",                     "160"                   },
6435   { "font.text_2.LEVELS.width",                 "16"                    },
6436   { "font.text_2.LEVELS.height",                "32"                    },
6437   { "font.text_2.LEVELNR",                      UNDEFINED_FILENAME      },
6438   { "font.text_2.LEVELNR.clone_from",           "font.text_2.LEVELS"    },
6439   { "font.text_2.SETUP",                        UNDEFINED_FILENAME      },
6440   { "font.text_2.SETUP.clone_from",             "font.text_2.LEVELS"    },
6441   { "font.text_2.PREVIEW",                      "RocksFontEM.png"       },
6442   { "font.text_2.PREVIEW.x",                    "0"                     },
6443   { "font.text_2.PREVIEW.y",                    "160"                   },
6444   { "font.text_2.PREVIEW.width",                "16"                    },
6445   { "font.text_2.PREVIEW.height",               "16"                    },
6446   { "font.text_2.SCORES",                       "RocksFontBig.png"      },
6447   { "font.text_2.SCORES.x",                     "0"                     },
6448   { "font.text_2.SCORES.y",                     "320"                   },
6449   { "font.text_2.SCORES.width",                 "32"                    },
6450   { "font.text_2.SCORES.height",                "32"                    },
6451   { "font.text_2.active.SCORES",                "RocksFontBig.png"      },
6452   { "font.text_2.active.SCORES.x",              "0"                     },
6453   { "font.text_2.active.SCORES.y",              "0"                     },
6454   { "font.text_2.active.SCORES.width",          "32"                    },
6455   { "font.text_2.active.SCORES.height",         "32"                    },
6456   { "font.text_3",                              "RocksFontSmall.png"    },
6457   { "font.text_3.x",                            "0"                     },
6458   { "font.text_3.y",                            "0"                     },
6459   { "font.text_3.width",                        "14"                    },
6460   { "font.text_3.height",                       "14"                    },
6461   { "font.text_3.LEVELS",                       "RocksFontMedium.png"   },
6462   { "font.text_3.LEVELS.x",                     "0"                     },
6463   { "font.text_3.LEVELS.y",                     "320"                   },
6464   { "font.text_3.LEVELS.width",                 "16"                    },
6465   { "font.text_3.LEVELS.height",                "32"                    },
6466   { "font.text_3.LEVELNR",                      UNDEFINED_FILENAME      },
6467   { "font.text_3.LEVELNR.clone_from",           "font.text_3.LEVELS"    },
6468   { "font.text_3.SETUP",                        UNDEFINED_FILENAME      },
6469   { "font.text_3.SETUP.clone_from",             "font.text_3.LEVELS"    },
6470   { "font.text_3.PREVIEW",                      "RocksFontEM.png"       },
6471   { "font.text_3.PREVIEW.x",                    "0"                     },
6472   { "font.text_3.PREVIEW.y",                    "160"                   },
6473   { "font.text_3.PREVIEW.width",                "16"                    },
6474   { "font.text_3.PREVIEW.height",               "16"                    },
6475   { "font.text_3.SCORES",                       "RocksFontMedium.png"   },
6476   { "font.text_3.SCORES.x",                     "0"                     },
6477   { "font.text_3.SCORES.y",                     "480"                   },
6478   { "font.text_3.SCORES.width",                 "16"                    },
6479   { "font.text_3.SCORES.height",                "32"                    },
6480   { "font.text_3.active.SCORES",                "RocksFontMedium.png"   },
6481   { "font.text_3.active.SCORES.x",              "0"                     },
6482   { "font.text_3.active.SCORES.y",              "0"                     },
6483   { "font.text_3.active.SCORES.width",          "16"                    },
6484   { "font.text_3.active.SCORES.height",         "32"                    },
6485   { "font.text_4",                              "RocksFontSmall.png"    },
6486   { "font.text_4.x",                            "0"                     },
6487   { "font.text_4.y",                            "70"                    },
6488   { "font.text_4.width",                        "14"                    },
6489   { "font.text_4.height",                       "14"                    },
6490   { "font.text_4.MAIN",                         UNDEFINED_FILENAME      },
6491   { "font.text_4.MAIN.clone_from",              "font.text_3.PREVIEW"   },
6492   { "font.text_4.LEVELS",                       "RocksFontMedium.png"   },
6493   { "font.text_4.LEVELS.x",                     "0"                     },
6494   { "font.text_4.LEVELS.y",                     "480"                   },
6495   { "font.text_4.LEVELS.width",                 "16"                    },
6496   { "font.text_4.LEVELS.height",                "32"                    },
6497   { "font.text_4.LEVELNR",                      UNDEFINED_FILENAME      },
6498   { "font.text_4.LEVELNR.clone_from",           "font.text_4.LEVELS"    },
6499   { "font.text_4.SETUP",                        UNDEFINED_FILENAME      },
6500   { "font.text_4.SETUP.clone_from",             "font.text_4.LEVELS"    },
6501   { "font.text_4.SCORES",                       "RocksFontMedium.png"   },
6502   { "font.text_4.SCORES.x",                     "0"                     },
6503   { "font.text_4.SCORES.y",                     "480"                   },
6504   { "font.text_4.SCORES.width",                 "16"                    },
6505   { "font.text_4.SCORES.height",                "32"                    },
6506   { "font.text_4.active.SCORES",                "RocksFontMedium.png"   },
6507   { "font.text_4.active.SCORES.x",              "0"                     },
6508   { "font.text_4.active.SCORES.y",              "0"                     },
6509   { "font.text_4.active.SCORES.width",          "16"                    },
6510   { "font.text_4.active.SCORES.height",         "32"                    },
6511
6512   { "font.envelope_1",                          "RocksFontEM.png"       },
6513   { "font.envelope_1.x",                        "0"                     },
6514   { "font.envelope_1.y",                        "160"                   },
6515   { "font.envelope_1.width",                    "16"                    },
6516   { "font.envelope_1.height",                   "16"                    },
6517   { "font.envelope_2",                          "RocksFontEM.png"       },
6518   { "font.envelope_2.x",                        "0"                     },
6519   { "font.envelope_2.y",                        "160"                   },
6520   { "font.envelope_2.width",                    "16"                    },
6521   { "font.envelope_2.height",                   "16"                    },
6522   { "font.envelope_3",                          "RocksFontEM.png"       },
6523   { "font.envelope_3.x",                        "0"                     },
6524   { "font.envelope_3.y",                        "160"                   },
6525   { "font.envelope_3.width",                    "16"                    },
6526   { "font.envelope_3.height",                   "16"                    },
6527   { "font.envelope_4",                          "RocksFontEM.png"       },
6528   { "font.envelope_4.x",                        "0"                     },
6529   { "font.envelope_4.y",                        "160"                   },
6530   { "font.envelope_4.width",                    "16"                    },
6531   { "font.envelope_4.height",                   "16"                    },
6532
6533   { "font.request",                             "RocksFontSmall.png"    },
6534   { "font.request.x",                           "0"                     },
6535   { "font.request.y",                           "210"                   },
6536   { "font.request.width",                       "14"                    },
6537   { "font.request.height",                      "14"                    },
6538
6539   { "font.input_1",                             "RocksFontSmall.png"    },
6540   { "font.input_1.x",                           "0"                     },
6541   { "font.input_1.y",                           "210"                   },
6542   { "font.input_1.width",                       "14"                    },
6543   { "font.input_1.height",                      "14"                    },
6544   { "font.input_1.MAIN",                        "RocksFontBig.png"      },
6545   { "font.input_1.MAIN.x",                      "0"                     },
6546   { "font.input_1.MAIN.y",                      "0"                     },
6547   { "font.input_1.MAIN.width",                  "32"                    },
6548   { "font.input_1.MAIN.height",                 "32"                    },
6549   { "font.input_1.active",                      "RocksFontSmall.png"    },
6550   { "font.input_1.active.x",                    "0"                     },
6551   { "font.input_1.active.y",                    "210"                   },
6552   { "font.input_1.active.width",                "14"                    },
6553   { "font.input_1.active.height",               "14"                    },
6554   { "font.input_1.active.MAIN",                 "RocksFontBig.png"      },
6555   { "font.input_1.active.MAIN.x",               "0"                     },
6556   { "font.input_1.active.MAIN.y",               "480"                   },
6557   { "font.input_1.active.MAIN.width",           "32"                    },
6558   { "font.input_1.active.MAIN.height",          "32"                    },
6559   { "font.input_1.active.SETUP",                "RocksFontBig.png"      },
6560   { "font.input_1.active.SETUP.x",              "0"                     },
6561   { "font.input_1.active.SETUP.y",              "0"                     },
6562   { "font.input_1.active.SETUP.width",          "32"                    },
6563   { "font.input_1.active.SETUP.height",         "32"                    },
6564   { "font.input_2",                             "RocksFontSmall.png"    },
6565   { "font.input_2.x",                           "0"                     },
6566   { "font.input_2.y",                           "210"                   },
6567   { "font.input_2.width",                       "14"                    },
6568   { "font.input_2.height",                      "14"                    },
6569   { "font.input_2.active",                      "RocksFontSmall.png"    },
6570   { "font.input_2.active.x",                    "0"                     },
6571   { "font.input_2.active.y",                    "210"                   },
6572   { "font.input_2.active.width",                "14"                    },
6573   { "font.input_2.active.height",               "14"                    },
6574
6575   { "font.option_off",                          "RocksFontBig.png"      },
6576   { "font.option_off.x",                        "0"                     },
6577   { "font.option_off.y",                        "160"                   },
6578   { "font.option_off.width",                    "32"                    },
6579   { "font.option_off.height",                   "32"                    },
6580   { "font.option_off_narrow",                   UNDEFINED_FILENAME      },
6581   { "font.option_off_narrow.clone_from",        "font.text_2.LEVELS"    },
6582   { "font.option_on",                           "RocksFontBig.png"      },
6583   { "font.option_on.x",                         "0"                     },
6584   { "font.option_on.y",                         "480"                   },
6585   { "font.option_on.width",                     "32"                    },
6586   { "font.option_on.height",                    "32"                    },
6587   { "font.option_on_narrow",                    UNDEFINED_FILENAME      },
6588   { "font.option_on_narrow.clone_from",         "font.text_4.LEVELS"    },
6589
6590   { "font.value_1",                             "RocksFontBig.png"      },
6591   { "font.value_1.x",                           "0"                     },
6592   { "font.value_1.y",                           "480"                   },
6593   { "font.value_1.width",                       "32"                    },
6594   { "font.value_1.height",                      "32"                    },
6595   { "font.value_2",                             "RocksFontMedium.png"   },
6596   { "font.value_2.x",                           "0"                     },
6597   { "font.value_2.y",                           "480"                   },
6598   { "font.value_2.width",                       "16"                    },
6599   { "font.value_2.height",                      "32"                    },
6600   { "font.value_old",                           "RocksFontBig.png"      },
6601   { "font.value_old.x",                         "0"                     },
6602   { "font.value_old.y",                         "160"                   },
6603   { "font.value_old.width",                     "32"                    },
6604   { "font.value_old.height",                    "32"                    },
6605   { "font.value_old_narrow",                    UNDEFINED_FILENAME      },
6606   { "font.value_old_narrow.clone_from",         "font.text_2.LEVELS"    },
6607   { "font.value_narrow",                        UNDEFINED_FILENAME      },
6608   { "font.value_narrow.clone_from",             "font.text_4.LEVELS"    },
6609
6610   { "font.level_number",                        "RocksFontSmall.png"    },
6611   { "font.level_number.x",                      "0"                     },
6612   { "font.level_number.y",                      "350"                   },
6613   { "font.level_number.width",                  "10"                    },
6614   { "font.level_number.height",                 "14"                    },
6615   { "font.level_number.active",                 UNDEFINED_FILENAME      },
6616   { "font.level_number.active.clone_from",      "font.level_number"     },
6617
6618   { "font.tape_recorder",                       "RocksFontSmall.png"    },
6619   { "font.tape_recorder.x",                     "0"                     },
6620   { "font.tape_recorder.y",                     "280"                   },
6621   { "font.tape_recorder.width",                 "11"                    },
6622   { "font.tape_recorder.height",                "14"                    },
6623
6624   { "font.game_info",                           "RocksFontEM.png"       },
6625   { "font.game_info.xpos",                      "0"                     },
6626   { "font.game_info.ypos",                      "0"                     },
6627   { "font.game_info.delay",                     "10"                    },
6628
6629   { "font.info.elements",                       UNDEFINED_FILENAME      },
6630   { "font.info.elements.clone_from",            "font.level_number"     },
6631
6632   { "font.info.levelset",                       UNDEFINED_FILENAME      },
6633   { "font.info.levelset.clone_from",            "font.level_number"     },
6634
6635   { "font.main.network_players",                UNDEFINED_FILENAME      },
6636   { "font.main.network_players.clone_from",     "font.level_number"     },
6637
6638   { "editor.element_border",                    "RocksMore.png"         },
6639   { "editor.element_border.xpos",               "0"                     },
6640   { "editor.element_border.ypos",               "2"                     },
6641   { "editor.element_border.border_size",        "8"                     },
6642
6643   { "editor.element_border_input",              "RocksMore.png"         },
6644   { "editor.element_border_input.xpos",         "10"                    },
6645   { "editor.element_border_input.ypos",         "7"                     },
6646   { "editor.element_border_input.border_size",  "4"                     },
6647
6648   { "editor.counter.down",                      "RocksDoor.png"         },
6649   { "editor.counter.down.x",                    "302"                   },
6650   { "editor.counter.down.y",                    "60"                    },
6651   { "editor.counter.down.width",                "20"                    },
6652   { "editor.counter.down.height",               "20"                    },
6653   { "editor.counter.down.pressed_xoffset",      "-100"                  },
6654
6655   { "editor.counter.up",                        "RocksDoor.png"         },
6656   { "editor.counter.up.x",                      "378"                   },
6657   { "editor.counter.up.y",                      "60"                    },
6658   { "editor.counter.up.width",                  "20"                    },
6659   { "editor.counter.up.height",                 "20"                    },
6660   { "editor.counter.up.pressed_xoffset",        "-100"                  },
6661
6662   { "editor.counter.input",                     "RocksDoor.png"         },
6663   { "editor.counter.input.x",                   "324"                   },
6664   { "editor.counter.input.y",                   "60"                    },
6665   { "editor.counter.input.width",               "52"                    },
6666   { "editor.counter.input.height",              "20"                    },
6667   { "editor.counter.input.active_xoffset",      "-100"                  },
6668   { "editor.counter.input.border_size",         "3"                     },
6669
6670   { "editor.selectbox.input",                   "RocksDoor.png"         },
6671   { "editor.selectbox.input.x",                 "324"                   },
6672   { "editor.selectbox.input.y",                 "82"                    },
6673   { "editor.selectbox.input.width",             "52"                    },
6674   { "editor.selectbox.input.height",            "20"                    },
6675   { "editor.selectbox.input.active_xoffset",    "-100"                  },
6676   { "editor.selectbox.input.border_size",       "3"                     },
6677
6678   { "editor.selectbox.button",                  UNDEFINED_FILENAME      },
6679   { "editor.selectbox.button.width",            "14"                    },
6680
6681   { "editor.checkbox",                          "RocksDoor.png"         },
6682   { "editor.checkbox.x",                        "302"                   },
6683   { "editor.checkbox.y",                        "82"                    },
6684   { "editor.checkbox.width",                    "20"                    },
6685   { "editor.checkbox.height",                   "20"                    },
6686   { "editor.checkbox.pressed_xoffset",          "-100"                  },
6687   { "editor.checkbox.active_xoffset",           "76"                    },
6688
6689   { "editor.radiobutton",                       "RocksDoor.png"         },
6690   { "editor.radiobutton.x",                     "302"                   },
6691   { "editor.radiobutton.y",                     "104"                   },
6692   { "editor.radiobutton.width",                 "20"                    },
6693   { "editor.radiobutton.height",                "20"                    },
6694   { "editor.radiobutton.pressed_xoffset",       "-100"                  },
6695   { "editor.radiobutton.active_xoffset",        "76"                    },
6696
6697   { "editor.stickybutton",                      "RocksDoor.png"         },
6698   { "editor.stickybutton.x",                    "302"                   },
6699   { "editor.stickybutton.y",                    "126"                   },
6700   { "editor.stickybutton.width",                "20"                    },
6701   { "editor.stickybutton.height",               "20"                    },
6702   { "editor.stickybutton.pressed_xoffset",      "-100"                  },
6703   { "editor.stickybutton.active_xoffset",       "76"                    },
6704
6705   { "editor.tabbutton",                         "RocksDoor.png"         },
6706   { "editor.tabbutton.x",                       "324"                   },
6707   { "editor.tabbutton.y",                       "104"                   },
6708   { "editor.tabbutton.width",                   "52"                    },
6709   { "editor.tabbutton.height",                  "20"                    },
6710   { "editor.tabbutton.pressed_xoffset",         "-100"                  },
6711   { "editor.tabbutton.active_yoffset",          "22"                    },
6712   { "editor.tabbutton.border_size",             "3"                     },
6713   { "editor.tabbutton.draw_xoffset",            "2"                     },
6714
6715   { "editor.textbutton",                        "RocksDoor.png"         },
6716   { "editor.textbutton.x",                      "324"                   },
6717   { "editor.textbutton.y",                      "148"                   },
6718   { "editor.textbutton.width",                  "52"                    },
6719   { "editor.textbutton.height",                 "20"                    },
6720   { "editor.textbutton.pressed_xoffset",        "-100"                  },
6721   { "editor.textbutton.border_size",            "3"                     },
6722   { "editor.textbutton.draw_xoffset",           "2"                     },
6723
6724   { "editor.input.text",                        "RocksDoor.png"         },
6725   { "editor.input.text.x",                      "324"                   },
6726   { "editor.input.text.y",                      "60"                    },
6727   { "editor.input.text.width",                  "52"                    },
6728   { "editor.input.text.height",                 "20"                    },
6729   { "editor.input.text.active_xoffset",         "-100"                  },
6730   { "editor.input.text.border_size",            "3"                     },
6731
6732   { "editor.input.textarea",                    "RocksDoor.png"         },
6733   { "editor.input.textarea.x",                  "324"                   },
6734   { "editor.input.textarea.y",                  "60"                    },
6735   { "editor.input.textarea.width",              "52"                    },
6736   { "editor.input.textarea.height",             "20"                    },
6737   { "editor.input.textarea.active_xoffset",     "-100"                  },
6738   { "editor.input.textarea.border_size",        "3"                     },
6739
6740   { "editor.cascade_list",                      "RocksMore.png"         },
6741   { "editor.cascade_list.xpos",                 "9"                     },
6742   { "editor.cascade_list.ypos",                 "8"                     },
6743   { "editor.cascade_list.frames",               "1"                     },
6744   { "editor.cascade_list.active",               "RocksMore.png"         },
6745   { "editor.cascade_list.active.xpos",          "10"                    },
6746   { "editor.cascade_list.active.ypos",          "8"                     },
6747   { "editor.cascade_list.active.frames",        "1"                     },
6748
6749   { "editor.palette.button",                    "RocksDoor.png"         },
6750   { "editor.palette.button.x",                  "525"                   },
6751   { "editor.palette.button.y",                  "30"                    },
6752   { "editor.palette.button.width",              "20"                    },
6753   { "editor.palette.button.height",             "20"                    },
6754   { "editor.palette.button.pressed_xoffset",    "-20"                   },
6755
6756   { "editor.palette.scroll_up",                 "RocksDoor.png"         },
6757   { "editor.palette.scroll_up.x",               "750"                   },
6758   { "editor.palette.scroll_up.y",               "0"                     },
6759   { "editor.palette.scroll_up.width",           "10"                    },
6760   { "editor.palette.scroll_up.height",          "10"                    },
6761   { "editor.palette.scroll_up.pressed_xoffset", "-10"                   },
6762
6763   { "editor.palette.scroll_down",               "RocksDoor.png"         },
6764   { "editor.palette.scroll_down.x",             "750"                   },
6765   { "editor.palette.scroll_down.y",             "10"                    },
6766   { "editor.palette.scroll_down.width",         "10"                    },
6767   { "editor.palette.scroll_down.height",        "10"                    },
6768   { "editor.palette.scroll_down.pressed_xoffset", "-10"                 },
6769
6770   { "editor.palette.scrollbar",                 "RocksDoor.png"         },
6771   { "editor.palette.scrollbar.x",               "750"                   },
6772   { "editor.palette.scrollbar.y",               "20"                    },
6773   { "editor.palette.scrollbar.width",           "10"                    },
6774   { "editor.palette.scrollbar.height",          "10"                    },
6775   { "editor.palette.scrollbar.pressed_xoffset", "-10"                   },
6776   { "editor.palette.scrollbar.border_size",     "3"                     },
6777
6778   { "editor.playfield.scroll_up",               "RocksDoor.png"         },
6779   { "editor.playfield.scroll_up.x",             "724"                   },
6780   { "editor.playfield.scroll_up.y",             "0"                     },
6781   { "editor.playfield.scroll_up.width",         "16"                    },
6782   { "editor.playfield.scroll_up.height",        "16"                    },
6783   { "editor.playfield.scroll_up.pressed_xoffset", "-16"                 },
6784
6785   { "editor.playfield.scroll_down",             "RocksDoor.png"         },
6786   { "editor.playfield.scroll_down.x",           "724"                   },
6787   { "editor.playfield.scroll_down.y",           "16"                    },
6788   { "editor.playfield.scroll_down.width",       "16"                    },
6789   { "editor.playfield.scroll_down.height",      "16"                    },
6790   { "editor.playfield.scroll_down.pressed_xoffset", "-16"               },
6791
6792   { "editor.playfield.scroll_left",             "RocksDoor.png"         },
6793   { "editor.playfield.scroll_left.x",           "724"                   },
6794   { "editor.playfield.scroll_left.y",           "32"                    },
6795   { "editor.playfield.scroll_left.width",       "16"                    },
6796   { "editor.playfield.scroll_left.height",      "16"                    },
6797   { "editor.playfield.scroll_left.pressed_xoffset", "-16"               },
6798
6799   { "editor.playfield.scroll_right",            "RocksDoor.png"         },
6800   { "editor.playfield.scroll_right.x",          "724"                   },
6801   { "editor.playfield.scroll_right.y",          "48"                    },
6802   { "editor.playfield.scroll_right.width",      "16"                    },
6803   { "editor.playfield.scroll_right.height",     "16"                    },
6804   { "editor.playfield.scroll_right.pressed_xoffset", "-16"              },
6805
6806   { "editor.playfield.scrollbar",               "RocksDoor.png"         },
6807   { "editor.playfield.scrollbar.x",             "724"                   },
6808   { "editor.playfield.scrollbar.y",             "64"                    },
6809   { "editor.playfield.scrollbar.width",         "16"                    },
6810   { "editor.playfield.scrollbar.height",        "16"                    },
6811   { "editor.playfield.scrollbar.pressed_xoffset", "-16"                 },
6812   { "editor.playfield.scrollbar.border_size",   "3"                     },
6813
6814   { "gfx.editor.button.prev_level",             "RocksDoor.png"         },
6815   { "gfx.editor.button.prev_level.x",           "724"                   },
6816   { "gfx.editor.button.prev_level.y",           "32"                    },
6817   { "gfx.editor.button.prev_level.width",       "16"                    },
6818   { "gfx.editor.button.prev_level.height",      "16"                    },
6819   { "gfx.editor.button.prev_level.pressed_xoffset", "-16"               },
6820
6821   { "gfx.editor.button.next_level",             "RocksDoor.png"         },
6822   { "gfx.editor.button.next_level.x",           "724"                   },
6823   { "gfx.editor.button.next_level.y",           "48"                    },
6824   { "gfx.editor.button.next_level.width",       "16"                    },
6825   { "gfx.editor.button.next_level.height",      "16"                    },
6826   { "gfx.editor.button.next_level.pressed_xoffset", "-16"               },
6827
6828   { "gfx.editor.button.properties",             "RocksDoor2.png"        },
6829   { "gfx.editor.button.properties.x",           "105"                   },
6830   { "gfx.editor.button.properties.y",           "0"                     },
6831   { "gfx.editor.button.properties.width",       "90"                    },
6832   { "gfx.editor.button.properties.height",      "20"                    },
6833   { "gfx.editor.button.properties.pressed_xoffset", "-100"              },
6834
6835   { "gfx.editor.button.element_left",           "RocksDoor2.png"        },
6836   { "gfx.editor.button.element_left.x",         "368"                   },
6837   { "gfx.editor.button.element_left.y",         "48"                    },
6838   { "gfx.editor.button.element_left.width",     "16"                    },
6839   { "gfx.editor.button.element_left.height",    "16"                    },
6840   { "gfx.editor.button.element_left.pressed_xoffset", "0"               },
6841
6842   { "gfx.editor.button.element_middle",         "RocksDoor2.png"        },
6843   { "gfx.editor.button.element_middle.x",       "368"                   },
6844   { "gfx.editor.button.element_middle.y",       "48"                    },
6845   { "gfx.editor.button.element_middle.width",   "16"                    },
6846   { "gfx.editor.button.element_middle.height",  "16"                    },
6847   { "gfx.editor.button.element_middle.pressed_xoffset", "0"             },
6848
6849   { "gfx.editor.button.element_right",          "RocksDoor2.png"        },
6850   { "gfx.editor.button.element_right.x",        "368"                   },
6851   { "gfx.editor.button.element_right.y",        "48"                    },
6852   { "gfx.editor.button.element_right.width",    "16"                    },
6853   { "gfx.editor.button.element_right.height",   "16"                    },
6854   { "gfx.editor.button.element_right.pressed_xoffset", "0"              },
6855
6856   { "gfx.editor.button.palette",                UNDEFINED_FILENAME      },
6857
6858   { "editor.no_toolbox_button",                 "RocksDoor.png"         },
6859   { "editor.no_toolbox_button.x",               "506"                   },
6860   { "editor.no_toolbox_button.y",               "286"                   },
6861   { "editor.no_toolbox_button.width",           "22"                    },
6862   { "editor.no_toolbox_button.height",          "22"                    },
6863
6864   { "gfx.editor.button.draw_single",            "RocksDoor.png"         },
6865   { "gfx.editor.button.draw_single.x",          "706"                   },
6866   { "gfx.editor.button.draw_single.y",          "242"                   },
6867   { "gfx.editor.button.draw_single.width",      "22"                    },
6868   { "gfx.editor.button.draw_single.height",     "22"                    },
6869   { "gfx.editor.button.draw_single.pressed_xoffset", "-100"             },
6870   { "gfx.editor.button.draw_single.active_yoffset",  "-94"              },
6871
6872   { "gfx.editor.button.draw_connected",         "RocksDoor.png"         },
6873   { "gfx.editor.button.draw_connected.x",       "728"                   },
6874   { "gfx.editor.button.draw_connected.y",       "242"                   },
6875   { "gfx.editor.button.draw_connected.width",   "22"                    },
6876   { "gfx.editor.button.draw_connected.height",  "22"                    },
6877   { "gfx.editor.button.draw_connected.pressed_xoffset", "-100"          },
6878   { "gfx.editor.button.draw_connected.active_yoffset",  "-94"           },
6879
6880   { "gfx.editor.button.draw_line",              "RocksDoor.png"         },
6881   { "gfx.editor.button.draw_line.x",            "750"                   },
6882   { "gfx.editor.button.draw_line.y",            "242"                   },
6883   { "gfx.editor.button.draw_line.width",        "22"                    },
6884   { "gfx.editor.button.draw_line.height",       "22"                    },
6885   { "gfx.editor.button.draw_line.pressed_xoffset", "-100"               },
6886   { "gfx.editor.button.draw_line.active_yoffset",  "-94"                },
6887
6888   { "gfx.editor.button.draw_arc",               "RocksDoor.png"         },
6889   { "gfx.editor.button.draw_arc.x",             "772"                   },
6890   { "gfx.editor.button.draw_arc.y",             "242"                   },
6891   { "gfx.editor.button.draw_arc.width",         "22"                    },
6892   { "gfx.editor.button.draw_arc.height",        "22"                    },
6893   { "gfx.editor.button.draw_arc.pressed_xoffset", "-100"                },
6894   { "gfx.editor.button.draw_arc.active_yoffset",  "-94"                 },
6895
6896   { "gfx.editor.button.draw_rectangle",         "RocksDoor.png"         },
6897   { "gfx.editor.button.draw_rectangle.x",       "706"                   },
6898   { "gfx.editor.button.draw_rectangle.y",       "264"                   },
6899   { "gfx.editor.button.draw_rectangle.width",   "22"                    },
6900   { "gfx.editor.button.draw_rectangle.height",  "22"                    },
6901   { "gfx.editor.button.draw_rectangle.pressed_xoffset", "-100"          },
6902   { "gfx.editor.button.draw_rectangle.active_yoffset",  "-94"           },
6903
6904   { "gfx.editor.button.draw_filled_box",        "RocksDoor.png"         },
6905   { "gfx.editor.button.draw_filled_box.x",      "728"                   },
6906   { "gfx.editor.button.draw_filled_box.y",      "264"                   },
6907   { "gfx.editor.button.draw_filled_box.width",  "22"                    },
6908   { "gfx.editor.button.draw_filled_box.height", "22"                    },
6909   { "gfx.editor.button.draw_filled_box.pressed_xoffset", "-100"         },
6910   { "gfx.editor.button.draw_filled_box.active_yoffset",  "-94"          },
6911
6912   { "gfx.editor.button.rotate_up",              "RocksDoor.png"         },
6913   { "gfx.editor.button.rotate_up.x",            "750"                   },
6914   { "gfx.editor.button.rotate_up.y",            "264"                   },
6915   { "gfx.editor.button.rotate_up.width",        "22"                    },
6916   { "gfx.editor.button.rotate_up.height",       "22"                    },
6917   { "gfx.editor.button.rotate_up.pressed_xoffset", "-100"               },
6918   { "gfx.editor.button.rotate_up.active_yoffset",  "-94"                },
6919
6920   { "gfx.editor.button.draw_text",              "RocksDoor.png"         },
6921   { "gfx.editor.button.draw_text.x",            "772"                   },
6922   { "gfx.editor.button.draw_text.y",            "264"                   },
6923   { "gfx.editor.button.draw_text.width",        "22"                    },
6924   { "gfx.editor.button.draw_text.height",       "22"                    },
6925   { "gfx.editor.button.draw_text.pressed_xoffset", "-100"               },
6926   { "gfx.editor.button.draw_text.active_yoffset",  "-94"                },
6927
6928   { "gfx.editor.button.flood_fill",             "RocksDoor.png"         },
6929   { "gfx.editor.button.flood_fill.x",           "706"                   },
6930   { "gfx.editor.button.flood_fill.y",           "286"                   },
6931   { "gfx.editor.button.flood_fill.width",       "22"                    },
6932   { "gfx.editor.button.flood_fill.height",      "22"                    },
6933   { "gfx.editor.button.flood_fill.pressed_xoffset", "-100"              },
6934   { "gfx.editor.button.flood_fill.active_yoffset",  "-94"               },
6935
6936   { "gfx.editor.button.rotate_left",            "RocksDoor.png"         },
6937   { "gfx.editor.button.rotate_left.x",          "728"                   },
6938   { "gfx.editor.button.rotate_left.y",          "286"                   },
6939   { "gfx.editor.button.rotate_left.width",      "22"                    },
6940   { "gfx.editor.button.rotate_left.height",     "22"                    },
6941   { "gfx.editor.button.rotate_left.pressed_xoffset", "-100"             },
6942   { "gfx.editor.button.rotate_left.active_yoffset",  "-94"              },
6943
6944   { "gfx.editor.button.zoom_level",             "RocksDoor2.png"        },
6945   { "gfx.editor.button.zoom_level.x",           "350"                   },
6946   { "gfx.editor.button.zoom_level.y",           "22"                    },
6947   { "gfx.editor.button.zoom_level.width",       "22"                    },
6948   { "gfx.editor.button.zoom_level.height",      "22"                    },
6949   { "gfx.editor.button.zoom_level.pressed_xoffset", "-100"              },
6950   { "gfx.editor.button.zoom_level.active_yoffset",  "-22"               },
6951
6952   { "gfx.editor.button.rotate_right",           "RocksDoor.png"         },
6953   { "gfx.editor.button.rotate_right.x",         "772"                   },
6954   { "gfx.editor.button.rotate_right.y",         "286"                   },
6955   { "gfx.editor.button.rotate_right.width",     "22"                    },
6956   { "gfx.editor.button.rotate_right.height",    "22"                    },
6957   { "gfx.editor.button.rotate_right.pressed_xoffset", "-100"            },
6958   { "gfx.editor.button.rotate_right.active_yoffset",  "-94"             },
6959
6960   { "gfx.editor.button.draw_random",            "RocksDoor.png"         },
6961   { "gfx.editor.button.draw_random.x",          "706"                   },
6962   { "gfx.editor.button.draw_random.y",          "308"                   },
6963   { "gfx.editor.button.draw_random.width",      "22"                    },
6964   { "gfx.editor.button.draw_random.height",     "22"                    },
6965   { "gfx.editor.button.draw_random.pressed_xoffset", "-100"             },
6966   { "gfx.editor.button.draw_random.active_yoffset",  "-94"              },
6967
6968   { "gfx.editor.button.grab_brush",             "RocksDoor.png"         },
6969   { "gfx.editor.button.grab_brush.x",           "728"                   },
6970   { "gfx.editor.button.grab_brush.y",           "308"                   },
6971   { "gfx.editor.button.grab_brush.width",       "22"                    },
6972   { "gfx.editor.button.grab_brush.height",      "22"                    },
6973   { "gfx.editor.button.grab_brush.pressed_xoffset", "-100"              },
6974   { "gfx.editor.button.grab_brush.active_yoffset",  "-94"               },
6975
6976   { "gfx.editor.button.rotate_down",            "RocksDoor.png"         },
6977   { "gfx.editor.button.rotate_down.x",          "750"                   },
6978   { "gfx.editor.button.rotate_down.y",          "308"                   },
6979   { "gfx.editor.button.rotate_down.width",      "22"                    },
6980   { "gfx.editor.button.rotate_down.height",     "22"                    },
6981   { "gfx.editor.button.rotate_down.pressed_xoffset", "-100"             },
6982   { "gfx.editor.button.rotate_down.active_yoffset",  "-94"              },
6983
6984   { "gfx.editor.button.pick_element",           "RocksDoor.png"         },
6985   { "gfx.editor.button.pick_element.x",         "772"                   },
6986   { "gfx.editor.button.pick_element.y",         "308"                   },
6987   { "gfx.editor.button.pick_element.width",     "22"                    },
6988   { "gfx.editor.button.pick_element.height",    "22"                    },
6989   { "gfx.editor.button.pick_element.pressed_xoffset", "-100"            },
6990   { "gfx.editor.button.pick_element.active_yoffset",  "-94"             },
6991
6992   { "gfx.editor.button.ce_copy_from",           "RocksDoor.png"         },
6993   { "gfx.editor.button.ce_copy_from.x",         "528"                   },
6994   { "gfx.editor.button.ce_copy_from.y",         "330"                   },
6995   { "gfx.editor.button.ce_copy_from.width",     "22"                    },
6996   { "gfx.editor.button.ce_copy_from.height",    "22"                    },
6997   { "gfx.editor.button.ce_copy_from.pressed_xoffset", "-100"            },
6998   { "gfx.editor.button.ce_copy_from.active_yoffset",  "-22"             },
6999
7000   { "gfx.editor.button.ce_copy_to",             "RocksDoor.png"         },
7001   { "gfx.editor.button.ce_copy_to.x",           "550"                   },
7002   { "gfx.editor.button.ce_copy_to.y",           "330"                   },
7003   { "gfx.editor.button.ce_copy_to.width",       "22"                    },
7004   { "gfx.editor.button.ce_copy_to.height",      "22"                    },
7005   { "gfx.editor.button.ce_copy_to.pressed_xoffset", "-100"              },
7006   { "gfx.editor.button.ce_copy_to.active_yoffset",  "-22"               },
7007
7008   { "gfx.editor.button.ce_swap",                "RocksDoor.png"         },
7009   { "gfx.editor.button.ce_swap.x",              "572"                   },
7010   { "gfx.editor.button.ce_swap.y",              "330"                   },
7011   { "gfx.editor.button.ce_swap.width",          "22"                    },
7012   { "gfx.editor.button.ce_swap.height",         "22"                    },
7013   { "gfx.editor.button.ce_swap.pressed_xoffset", "-100"                 },
7014   { "gfx.editor.button.ce_swap.active_yoffset",  "-22"                  },
7015
7016   { "gfx.editor.button.ce_copy",                "RocksDoor.png"         },
7017   { "gfx.editor.button.ce_copy.x",              "550"                   },
7018   { "gfx.editor.button.ce_copy.y",              "286"                   },
7019   { "gfx.editor.button.ce_copy.width",          "22"                    },
7020   { "gfx.editor.button.ce_copy.height",         "22"                    },
7021   { "gfx.editor.button.ce_copy.pressed_xoffset", "-100"                 },
7022
7023   { "gfx.editor.button.ce_paste",               "RocksDoor.png"         },
7024   { "gfx.editor.button.ce_paste.x",             "572"                   },
7025   { "gfx.editor.button.ce_paste.y",             "286"                   },
7026   { "gfx.editor.button.ce_paste.width",         "22"                    },
7027   { "gfx.editor.button.ce_paste.height",        "22"                    },
7028   { "gfx.editor.button.ce_paste.pressed_xoffset", "-100"                },
7029
7030   { "gfx.editor.button.cp_copy",                "RocksDoor.png"         },
7031   { "gfx.editor.button.cp_copy.x",              "525"                   },
7032   { "gfx.editor.button.cp_copy.y",              "50"                    },
7033   { "gfx.editor.button.cp_copy.width",          "20"                    },
7034   { "gfx.editor.button.cp_copy.height",         "20"                    },
7035   { "gfx.editor.button.cp_copy.pressed_xoffset", "-20"                  },
7036
7037   { "gfx.editor.button.cp_paste",               "RocksDoor.png"         },
7038   { "gfx.editor.button.cp_paste.x",             "525"                   },
7039   { "gfx.editor.button.cp_paste.y",             "70"                    },
7040   { "gfx.editor.button.cp_paste.width",         "20"                    },
7041   { "gfx.editor.button.cp_paste.height",        "20"                    },
7042   { "gfx.editor.button.cp_paste.pressed_xoffset", "-20"                 },
7043
7044   { "gfx.editor.button.undo",                   "RocksDoor.png"         },
7045   { "gfx.editor.button.undo.x",                 "705"                   },
7046   { "gfx.editor.button.undo.y",                 "335"                   },
7047   { "gfx.editor.button.undo.width",             "30"                    },
7048   { "gfx.editor.button.undo.height",            "20"                    },
7049   { "gfx.editor.button.undo.pressed_xoffset",   "-100"                  },
7050
7051   { "gfx.editor.button.conf",                   "RocksDoor.png"         },
7052   { "gfx.editor.button.conf.x",                 "735"                   },
7053   { "gfx.editor.button.conf.y",                 "335"                   },
7054   { "gfx.editor.button.conf.width",             "30"                    },
7055   { "gfx.editor.button.conf.height",            "20"                    },
7056   { "gfx.editor.button.conf.pressed_xoffset",   "-100"                  },
7057
7058   { "gfx.editor.button.save",                   "RocksDoor.png"         },
7059   { "gfx.editor.button.save.x",                 "765"                   },
7060   { "gfx.editor.button.save.y",                 "335"                   },
7061   { "gfx.editor.button.save.width",             "30"                    },
7062   { "gfx.editor.button.save.height",            "20"                    },
7063   { "gfx.editor.button.save.pressed_xoffset",   "-100"                  },
7064
7065   { "gfx.editor.button.clear",                  "RocksDoor.png"         },
7066   { "gfx.editor.button.clear.x",                "705"                   },
7067   { "gfx.editor.button.clear.y",                "355"                   },
7068   { "gfx.editor.button.clear.width",            "30"                    },
7069   { "gfx.editor.button.clear.height",           "20"                    },
7070   { "gfx.editor.button.clear.pressed_xoffset",  "-100"                  },
7071
7072   { "gfx.editor.button.test",                   "RocksDoor.png"         },
7073   { "gfx.editor.button.test.x",                 "735"                   },
7074   { "gfx.editor.button.test.y",                 "355"                   },
7075   { "gfx.editor.button.test.width",             "30"                    },
7076   { "gfx.editor.button.test.height",            "20"                    },
7077   { "gfx.editor.button.test.pressed_xoffset",   "-100"                  },
7078
7079   { "gfx.editor.button.exit",                   "RocksDoor.png"         },
7080   { "gfx.editor.button.exit.x",                 "765"                   },
7081   { "gfx.editor.button.exit.y",                 "355"                   },
7082   { "gfx.editor.button.exit.width",             "30"                    },
7083   { "gfx.editor.button.exit.height",            "20"                    },
7084   { "gfx.editor.button.exit.pressed_xoffset",   "-100"                  },
7085
7086   { "gfx.editor.input.level_number",            "RocksDoor.png"         },
7087   { "gfx.editor.input.level_number.x",          "529"                   },
7088   { "gfx.editor.input.level_number.y",          "5"                     },
7089   { "gfx.editor.input.level_number.width",      "42"                    },
7090   { "gfx.editor.input.level_number.height",     "16"                    },
7091   { "gfx.editor.input.level_number.border_size","1"                     },
7092
7093   { "setup.input.text",                         "RocksSP.png"           },
7094   { "setup.input.text.x",                       "0"                     },
7095   { "setup.input.text.y",                       "0"                     },
7096   { "setup.input.text.width",                   "32"                    },
7097   { "setup.input.text.height",                  "32"                    },
7098   { "setup.input.text.active_xoffset",          "0"                     },
7099   { "setup.input.text.border_size",             "0"                     },
7100
7101   { "global.border",                            "RocksScreen.png"       },
7102   { "global.border.MAIN",                       UNDEFINED_FILENAME      },
7103   { "global.border.SCORES",                     UNDEFINED_FILENAME      },
7104   { "global.border.EDITOR",                     UNDEFINED_FILENAME      },
7105   { "global.border.PLAYING",                    UNDEFINED_FILENAME      },
7106
7107   { "global.door",                              "RocksDoor.png"         },
7108
7109   { "global.busy",                              "RocksBusy.png"         },
7110   { "global.busy.x",                            "0"                     },
7111   { "global.busy.y",                            "0"                     },
7112   { "global.busy.width",                        "32"                    },
7113   { "global.busy.height",                       "32"                    },
7114   { "global.busy.frames",                       "28"                    },
7115   { "global.busy.frames_per_line",              "7"                     },
7116   { "global.busy.delay",                        "2"                     },
7117
7118   { "global.tile_cursor",                       "RocksMore.png"         },
7119   { "global.tile_cursor.xpos",                  "10"                    },
7120   { "global.tile_cursor.ypos",                  "7"                     },
7121   { "global.tile_cursor.frames",                "1"                     },
7122
7123   { "background",                               UNDEFINED_FILENAME      },
7124   { "background.TITLE_INITIAL",                 UNDEFINED_FILENAME      },
7125   { "background.TITLE",                         UNDEFINED_FILENAME      },
7126   { "background.MAIN",                          UNDEFINED_FILENAME      },
7127   { "background.LEVELS",                        UNDEFINED_FILENAME      },
7128   { "background.LEVELNR",                       UNDEFINED_FILENAME      },
7129   { "background.SCORES",                        UNDEFINED_FILENAME      },
7130   { "background.EDITOR",                        UNDEFINED_FILENAME      },
7131   { "background.INFO",                          UNDEFINED_FILENAME      },
7132   { "background.INFO[ELEMENTS]",                UNDEFINED_FILENAME      },
7133   { "background.INFO[MUSIC]",                   UNDEFINED_FILENAME      },
7134   { "background.INFO[CREDITS]",                 UNDEFINED_FILENAME      },
7135   { "background.INFO[PROGRAM]",                 UNDEFINED_FILENAME      },
7136   { "background.INFO[VERSION]",                 UNDEFINED_FILENAME      },
7137   { "background.INFO[LEVELSET]",                UNDEFINED_FILENAME      },
7138   { "background.SETUP",                         UNDEFINED_FILENAME      },
7139   { "background.PLAYING",                       UNDEFINED_FILENAME      },
7140   { "background.DOOR",                          UNDEFINED_FILENAME      },
7141   { "background.TAPE",                          "RocksDoor.png"         },
7142   { "background.TAPE.x",                        "200"                   },
7143   { "background.TAPE.y",                        "280"                   },
7144   { "background.TAPE.width",                    "100"                   },
7145   { "background.TAPE.height",                   "100"                   },
7146   { "background.PANEL",                         "RocksDoor.png"         },
7147   { "background.PANEL.x",                       "400"                   },
7148   { "background.PANEL.y",                       "0"                     },
7149   { "background.PANEL.width",                   "100"                   },
7150   { "background.PANEL.height",                  "280"                   },
7151   { "background.PALETTE",                       "RocksDoor.png"         },
7152   { "background.PALETTE.x",                     "500"                   },
7153   { "background.PALETTE.y",                     "0"                     },
7154   { "background.PALETTE.width",                 "100"                   },
7155   { "background.PALETTE.height",                "280"                   },
7156   { "background.TOOLBOX",                       "RocksDoor.png"         },
7157   { "background.TOOLBOX.x",                     "700"                   },
7158   { "background.TOOLBOX.y",                     "236"                   },
7159   { "background.TOOLBOX.width",                 "100"                   },
7160   { "background.TOOLBOX.height",                "144"                   },
7161
7162   { "background.titlescreen_initial_1",         UNDEFINED_FILENAME      },
7163   { "background.titlescreen_initial_2",         UNDEFINED_FILENAME      },
7164   { "background.titlescreen_initial_3",         UNDEFINED_FILENAME      },
7165   { "background.titlescreen_initial_4",         UNDEFINED_FILENAME      },
7166   { "background.titlescreen_initial_5",         UNDEFINED_FILENAME      },
7167   { "background.titlescreen_1",                 UNDEFINED_FILENAME      },
7168   { "background.titlescreen_2",                 UNDEFINED_FILENAME      },
7169   { "background.titlescreen_3",                 UNDEFINED_FILENAME      },
7170   { "background.titlescreen_4",                 UNDEFINED_FILENAME      },
7171   { "background.titlescreen_5",                 UNDEFINED_FILENAME      },
7172   { "background.titlemessage_initial_1",        UNDEFINED_FILENAME      },
7173   { "background.titlemessage_initial_2",        UNDEFINED_FILENAME      },
7174   { "background.titlemessage_initial_3",        UNDEFINED_FILENAME      },
7175   { "background.titlemessage_initial_4",        UNDEFINED_FILENAME      },
7176   { "background.titlemessage_initial_5",        UNDEFINED_FILENAME      },
7177   { "background.titlemessage_1",                UNDEFINED_FILENAME      },
7178   { "background.titlemessage_2",                UNDEFINED_FILENAME      },
7179   { "background.titlemessage_3",                UNDEFINED_FILENAME      },
7180   { "background.titlemessage_4",                UNDEFINED_FILENAME      },
7181   { "background.titlemessage_5",                UNDEFINED_FILENAME      },
7182
7183   { "background.envelope_1",                    "RocksScreen.png"       },
7184   { "background.envelope_1.x",                  "0"                     },
7185   { "background.envelope_1.y",                  "0"                     },
7186   { "background.envelope_1.width",              "560"                   },
7187   { "background.envelope_1.height",             "560"                   },
7188   { "background.envelope_1.anim_mode",          "default"               },
7189   { "background.envelope_1.draw_masked",        "false"                 },
7190   { "background.envelope_2",                    "RocksScreen.png"       },
7191   { "background.envelope_2.x",                  "0"                     },
7192   { "background.envelope_2.y",                  "0"                     },
7193   { "background.envelope_2.width",              "560"                   },
7194   { "background.envelope_2.height",             "560"                   },
7195   { "background.envelope_2.anim_mode",          "default"               },
7196   { "background.envelope_2.draw_masked",        "false"                 },
7197   { "background.envelope_3",                    "RocksScreen.png"       },
7198   { "background.envelope_3.x",                  "0"                     },
7199   { "background.envelope_3.y",                  "0"                     },
7200   { "background.envelope_3.width",              "560"                   },
7201   { "background.envelope_3.height",             "560"                   },
7202   { "background.envelope_3.anim_mode",          "default"               },
7203   { "background.envelope_3.draw_masked",        "false"                 },
7204   { "background.envelope_4",                    "RocksScreen.png"       },
7205   { "background.envelope_4.x",                  "0"                     },
7206   { "background.envelope_4.y",                  "0"                     },
7207   { "background.envelope_4.width",              "560"                   },
7208   { "background.envelope_4.height",             "560"                   },
7209   { "background.envelope_4.anim_mode",          "default"               },
7210   { "background.envelope_4.draw_masked",        "false"                 },
7211
7212   { "background.request",                       "RocksScreen.png"       },
7213   { "background.request.x",                     "562"                   },
7214   { "background.request.y",                     "56"                    },
7215   { "background.request.width",                 "108"                   },
7216   { "background.request.height",                "288"                   },
7217   { "background.request.anim_mode",             "default"               },
7218   { "background.request.draw_masked",           "false"                 },
7219
7220   { "titlescreen_initial_1",                    UNDEFINED_FILENAME      },
7221   { "titlescreen_initial_2",                    UNDEFINED_FILENAME      },
7222   { "titlescreen_initial_3",                    UNDEFINED_FILENAME      },
7223   { "titlescreen_initial_4",                    UNDEFINED_FILENAME      },
7224   { "titlescreen_initial_5",                    UNDEFINED_FILENAME      },
7225   { "titlescreen_1",                            UNDEFINED_FILENAME      },
7226   { "titlescreen_2",                            UNDEFINED_FILENAME      },
7227   { "titlescreen_3",                            UNDEFINED_FILENAME      },
7228   { "titlescreen_4",                            UNDEFINED_FILENAME      },
7229   { "titlescreen_5",                            UNDEFINED_FILENAME      },
7230
7231   { "gfx.door_1.part_1",                        "RocksDoor.png"         },
7232   { "gfx.door_1.part_1.x",                      "0"                     },
7233   { "gfx.door_1.part_1.y",                      "0"                     },
7234   { "gfx.door_1.part_1.width",                  "100"                   },
7235   { "gfx.door_1.part_1.height",                 "77"                    },
7236   { "gfx.door_1.part_1.frames",                 "1"                     },
7237   { "gfx.door_1.part_2",                        "RocksDoor.png"         },
7238   { "gfx.door_1.part_2.x",                      "0"                     },
7239   { "gfx.door_1.part_2.y",                      "77"                    },
7240   { "gfx.door_1.part_2.width",                  "100"                   },
7241   { "gfx.door_1.part_2.height",                 "63"                    },
7242   { "gfx.door_1.part_2.frames",                 "1"                     },
7243   { "gfx.door_1.part_3",                        "RocksDoor.png"         },
7244   { "gfx.door_1.part_3.x",                      "0"                     },
7245   { "gfx.door_1.part_3.y",                      "140"                   },
7246   { "gfx.door_1.part_3.width",                  "100"                   },
7247   { "gfx.door_1.part_3.height",                 "63"                    },
7248   { "gfx.door_1.part_3.frames",                 "1"                     },
7249   { "gfx.door_1.part_4",                        "RocksDoor.png"         },
7250   { "gfx.door_1.part_4.x",                      "0"                     },
7251   { "gfx.door_1.part_4.y",                      "203"                   },
7252   { "gfx.door_1.part_4.width",                  "100"                   },
7253   { "gfx.door_1.part_4.height",                 "77"                    },
7254   { "gfx.door_1.part_4.frames",                 "1"                     },
7255   { "gfx.door_1.part_5",                        "RocksDoor.png"         },
7256   { "gfx.door_1.part_5.x",                      "100"                   },
7257   { "gfx.door_1.part_5.y",                      "0"                     },
7258   { "gfx.door_1.part_5.width",                  "100"                   },
7259   { "gfx.door_1.part_5.height",                 "77"                    },
7260   { "gfx.door_1.part_5.frames",                 "1"                     },
7261   { "gfx.door_1.part_6",                        "RocksDoor.png"         },
7262   { "gfx.door_1.part_6.x",                      "100"                   },
7263   { "gfx.door_1.part_6.y",                      "77"                    },
7264   { "gfx.door_1.part_6.width",                  "100"                   },
7265   { "gfx.door_1.part_6.height",                 "63"                    },
7266   { "gfx.door_1.part_6.frames",                 "1"                     },
7267   { "gfx.door_1.part_7",                        "RocksDoor.png"         },
7268   { "gfx.door_1.part_7.x",                      "100"                   },
7269   { "gfx.door_1.part_7.y",                      "140"                   },
7270   { "gfx.door_1.part_7.width",                  "100"                   },
7271   { "gfx.door_1.part_7.height",                 "63"                    },
7272   { "gfx.door_1.part_7.frames",                 "1"                     },
7273   { "gfx.door_1.part_8",                        "RocksDoor.png"         },
7274   { "gfx.door_1.part_8.x",                      "100"                   },
7275   { "gfx.door_1.part_8.y",                      "203"                   },
7276   { "gfx.door_1.part_8.width",                  "100"                   },
7277   { "gfx.door_1.part_8.height",                 "77"                    },
7278   { "gfx.door_1.part_8.frames",                 "1"                     },
7279
7280   { "gfx.door_2.part_1",                        "RocksDoor.png"         },
7281   { "gfx.door_2.part_1.x",                      "0"                     },
7282   { "gfx.door_2.part_1.y",                      "280"                   },
7283   { "gfx.door_2.part_1.width",                  "100"                   },
7284   { "gfx.door_2.part_1.height",                 "50"                    },
7285   { "gfx.door_2.part_1.frames",                 "1"                     },
7286   { "gfx.door_2.part_2",                        "RocksDoor.png"         },
7287   { "gfx.door_2.part_2.x",                      "0"                     },
7288   { "gfx.door_2.part_2.y",                      "330"                   },
7289   { "gfx.door_2.part_2.width",                  "100"                   },
7290   { "gfx.door_2.part_2.height",                 "50"                    },
7291   { "gfx.door_2.part_2.frames",                 "1"                     },
7292   { "gfx.door_2.part_3",                        "RocksDoor.png"         },
7293   { "gfx.door_2.part_3.x",                      "100"                   },
7294   { "gfx.door_2.part_3.y",                      "280"                   },
7295   { "gfx.door_2.part_3.width",                  "100"                   },
7296   { "gfx.door_2.part_3.height",                 "50"                    },
7297   { "gfx.door_2.part_3.frames",                 "1"                     },
7298   { "gfx.door_2.part_4",                        "RocksDoor.png"         },
7299   { "gfx.door_2.part_4.x",                      "100"                   },
7300   { "gfx.door_2.part_4.y",                      "330"                   },
7301   { "gfx.door_2.part_4.width",                  "100"                   },
7302   { "gfx.door_2.part_4.height",                 "50"                    },
7303   { "gfx.door_2.part_4.frames",                 "1"                     },
7304   { "gfx.door_2.part_5",                        UNDEFINED_FILENAME      },
7305   { "gfx.door_2.part_6",                        UNDEFINED_FILENAME      },
7306   { "gfx.door_2.part_7",                        UNDEFINED_FILENAME      },
7307   { "gfx.door_2.part_8",                        UNDEFINED_FILENAME      },
7308
7309   { "door_2.top_border_correction",             "RocksDoor.png"         },
7310   { "door_2.top_border_correction.x",           "600"                   },
7311   { "door_2.top_border_correction.y",           "0"                     },
7312   { "door_2.top_border_correction.width",       "108"                   },
7313   { "door_2.top_border_correction.height",      "8"                     },
7314
7315   // the last image entry apparently gets overwritten by very last entry
7316   // of "image_config[]"; so far this bug could not be found and fixed
7317   { "last_image_entry_bug",                     UNDEFINED_FILENAME      },
7318
7319
7320   // ==========================================================================
7321   // non-image definitions
7322   // ==========================================================================
7323
7324   // the following directives are not associated with an image, but
7325   // probably make sense to be defined in "graphicsinfo.conf", too
7326
7327   // keyword to start parser: "CONFIG_VARS_START" <-- do not change!
7328
7329   { "[title_initial].fade_mode",                "fade"                  },
7330   { "[title_initial].fade_delay",               "500"                   },
7331   { "[title_initial].post_delay",               "250"                   },
7332   { "[title_initial].auto_delay",               "-1"                    },
7333   { "[title].fade_mode",                        "fade"                  },
7334   { "[title].fade_delay",                       "500"                   },
7335   { "[title].post_delay",                       "250"                   },
7336   { "[title].auto_delay",                       "-1"                    },
7337
7338   { "[titlescreen_initial].sort_priority",      "0"                     },
7339   { "[titlescreen_initial].fade_mode",          ARG_DEFAULT             },
7340   { "[titlescreen_initial].fade_delay",         ARG_DEFAULT             },
7341   { "[titlescreen_initial].post_delay",         ARG_DEFAULT             },
7342   { "[titlescreen_initial].auto_delay",         ARG_DEFAULT             },
7343   { "[titlescreen].sort_priority",              "0"                     },
7344   { "[titlescreen].fade_mode",                  ARG_DEFAULT             },
7345   { "[titlescreen].fade_delay",                 ARG_DEFAULT             },
7346   { "[titlescreen].post_delay",                 ARG_DEFAULT             },
7347   { "[titlescreen].auto_delay",                 ARG_DEFAULT             },
7348
7349   { "titlescreen_initial_1.sort_priority",      ARG_DEFAULT             },
7350   { "titlescreen_initial_1.fade_mode",          ARG_DEFAULT             },
7351   { "titlescreen_initial_1.fade_delay",         ARG_DEFAULT             },
7352   { "titlescreen_initial_1.post_delay",         ARG_DEFAULT             },
7353   { "titlescreen_initial_1.auto_delay",         ARG_DEFAULT             },
7354   { "titlescreen_initial_2.sort_priority",      ARG_DEFAULT             },
7355   { "titlescreen_initial_2.fade_mode",          ARG_DEFAULT             },
7356   { "titlescreen_initial_2.fade_delay",         ARG_DEFAULT             },
7357   { "titlescreen_initial_2.post_delay",         ARG_DEFAULT             },
7358   { "titlescreen_initial_2.auto_delay",         ARG_DEFAULT             },
7359   { "titlescreen_initial_3.sort_priority",      ARG_DEFAULT             },
7360   { "titlescreen_initial_3.fade_mode",          ARG_DEFAULT             },
7361   { "titlescreen_initial_3.fade_delay",         ARG_DEFAULT             },
7362   { "titlescreen_initial_3.post_delay",         ARG_DEFAULT             },
7363   { "titlescreen_initial_3.auto_delay",         ARG_DEFAULT             },
7364   { "titlescreen_initial_4.sort_priority",      ARG_DEFAULT             },
7365   { "titlescreen_initial_4.fade_mode",          ARG_DEFAULT             },
7366   { "titlescreen_initial_4.fade_delay",         ARG_DEFAULT             },
7367   { "titlescreen_initial_4.post_delay",         ARG_DEFAULT             },
7368   { "titlescreen_initial_4.auto_delay",         ARG_DEFAULT             },
7369   { "titlescreen_initial_5.sort_priority",      ARG_DEFAULT             },
7370   { "titlescreen_initial_5.fade_mode",          ARG_DEFAULT             },
7371   { "titlescreen_initial_5.fade_delay",         ARG_DEFAULT             },
7372   { "titlescreen_initial_5.post_delay",         ARG_DEFAULT             },
7373   { "titlescreen_initial_5.auto_delay",         ARG_DEFAULT             },
7374   { "titlescreen_1.sort_priority",              ARG_DEFAULT             },
7375   { "titlescreen_1.fade_mode",                  ARG_DEFAULT             },
7376   { "titlescreen_1.fade_delay",                 ARG_DEFAULT             },
7377   { "titlescreen_1.post_delay",                 ARG_DEFAULT             },
7378   { "titlescreen_1.auto_delay",                 ARG_DEFAULT             },
7379   { "titlescreen_2.sort_priority",              ARG_DEFAULT             },
7380   { "titlescreen_2.fade_mode",                  ARG_DEFAULT             },
7381   { "titlescreen_2.fade_delay",                 ARG_DEFAULT             },
7382   { "titlescreen_2.post_delay",                 ARG_DEFAULT             },
7383   { "titlescreen_2.auto_delay",                 ARG_DEFAULT             },
7384   { "titlescreen_3.sort_priority",              ARG_DEFAULT             },
7385   { "titlescreen_3.fade_mode",                  ARG_DEFAULT             },
7386   { "titlescreen_3.fade_delay",                 ARG_DEFAULT             },
7387   { "titlescreen_3.post_delay",                 ARG_DEFAULT             },
7388   { "titlescreen_3.auto_delay",                 ARG_DEFAULT             },
7389   { "titlescreen_4.sort_priority",              ARG_DEFAULT             },
7390   { "titlescreen_4.fade_mode",                  ARG_DEFAULT             },
7391   { "titlescreen_4.fade_delay",                 ARG_DEFAULT             },
7392   { "titlescreen_4.post_delay",                 ARG_DEFAULT             },
7393   { "titlescreen_4.auto_delay",                 ARG_DEFAULT             },
7394   { "titlescreen_5.sort_priority",              ARG_DEFAULT             },
7395   { "titlescreen_5.fade_mode",                  ARG_DEFAULT             },
7396   { "titlescreen_5.fade_delay",                 ARG_DEFAULT             },
7397   { "titlescreen_5.post_delay",                 ARG_DEFAULT             },
7398   { "titlescreen_5.auto_delay",                 ARG_DEFAULT             },
7399
7400   { "[titlemessage_initial].x",                 "-1"                    },
7401   { "[titlemessage_initial].y",                 "-1"                    },
7402   { "[titlemessage_initial].width",             "-1"                    },
7403   { "[titlemessage_initial].height",            "-1"                    },
7404   { "[titlemessage_initial].chars",             "-1"                    },
7405   { "[titlemessage_initial].lines",             "-1"                    },
7406   { "[titlemessage_initial].align",             "center"                },
7407   { "[titlemessage_initial].valign",            "middle"                },
7408   { "[titlemessage_initial].font",              "font.text_1"           },
7409   { "[titlemessage_initial].autowrap",          "false"                 },
7410   { "[titlemessage_initial].centered",          "false"                 },
7411   { "[titlemessage_initial].parse_comments",    "false"                 },
7412   { "[titlemessage_initial].sort_priority",     "0"                     },
7413   { "[titlemessage_initial].fade_mode",         ARG_DEFAULT             },
7414   { "[titlemessage_initial].fade_delay",        ARG_DEFAULT             },
7415   { "[titlemessage_initial].post_delay",        ARG_DEFAULT             },
7416   { "[titlemessage_initial].auto_delay",        ARG_DEFAULT             },
7417   { "[titlemessage].x",                         "-1"                    },
7418   { "[titlemessage].y",                         "-1"                    },
7419   { "[titlemessage].width",                     "-1"                    },
7420   { "[titlemessage].height",                    "-1"                    },
7421   { "[titlemessage].chars",                     "-1"                    },
7422   { "[titlemessage].lines",                     "-1"                    },
7423   { "[titlemessage].align",                     "center"                },
7424   { "[titlemessage].valign",                    "middle"                },
7425   { "[titlemessage].font",                      "font.text_1"           },
7426   { "[titlemessage].autowrap",                  "false"                 },
7427   { "[titlemessage].centered",                  "false"                 },
7428   { "[titlemessage].parse_comments",            "false"                 },
7429   { "[titlemessage].sort_priority",             "0"                     },
7430   { "[titlemessage].fade_mode",                 ARG_DEFAULT             },
7431   { "[titlemessage].fade_delay",                ARG_DEFAULT             },
7432   { "[titlemessage].post_delay",                ARG_DEFAULT             },
7433   { "[titlemessage].auto_delay",                ARG_DEFAULT             },
7434
7435   { "titlemessage_initial_1.x",                 ARG_DEFAULT             },
7436   { "titlemessage_initial_1.y",                 ARG_DEFAULT             },
7437   { "titlemessage_initial_1.width",             ARG_DEFAULT             },
7438   { "titlemessage_initial_1.height",            ARG_DEFAULT             },
7439   { "titlemessage_initial_1.chars",             ARG_DEFAULT             },
7440   { "titlemessage_initial_1.lines",             ARG_DEFAULT             },
7441   { "titlemessage_initial_1.align",             ARG_DEFAULT             },
7442   { "titlemessage_initial_1.valign",            ARG_DEFAULT             },
7443   { "titlemessage_initial_1.font",              ARG_DEFAULT             },
7444   { "titlemessage_initial_1.autowrap",          ARG_DEFAULT             },
7445   { "titlemessage_initial_1.centered",          ARG_DEFAULT             },
7446   { "titlemessage_initial_1.parse_comments",    ARG_DEFAULT             },
7447   { "titlemessage_initial_1.sort_priority",     ARG_DEFAULT             },
7448   { "titlemessage_initial_1.fade_mode",         ARG_DEFAULT             },
7449   { "titlemessage_initial_1.fade_delay",        ARG_DEFAULT             },
7450   { "titlemessage_initial_1.post_delay",        ARG_DEFAULT             },
7451   { "titlemessage_initial_1.auto_delay",        ARG_DEFAULT             },
7452   { "titlemessage_initial_2.x",                 ARG_DEFAULT             },
7453   { "titlemessage_initial_2.y",                 ARG_DEFAULT             },
7454   { "titlemessage_initial_2.width",             ARG_DEFAULT             },
7455   { "titlemessage_initial_2.height",            ARG_DEFAULT             },
7456   { "titlemessage_initial_2.chars",             ARG_DEFAULT             },
7457   { "titlemessage_initial_2.lines",             ARG_DEFAULT             },
7458   { "titlemessage_initial_2.align",             ARG_DEFAULT             },
7459   { "titlemessage_initial_2.valign",            ARG_DEFAULT             },
7460   { "titlemessage_initial_2.font",              ARG_DEFAULT             },
7461   { "titlemessage_initial_2.autowrap",          ARG_DEFAULT             },
7462   { "titlemessage_initial_2.centered",          ARG_DEFAULT             },
7463   { "titlemessage_initial_2.parse_comments",    ARG_DEFAULT             },
7464   { "titlemessage_initial_2.sort_priority",     ARG_DEFAULT             },
7465   { "titlemessage_initial_2.fade_mode",         ARG_DEFAULT             },
7466   { "titlemessage_initial_2.fade_delay",        ARG_DEFAULT             },
7467   { "titlemessage_initial_2.post_delay",        ARG_DEFAULT             },
7468   { "titlemessage_initial_2.auto_delay",        ARG_DEFAULT             },
7469   { "titlemessage_initial_3.x",                 ARG_DEFAULT             },
7470   { "titlemessage_initial_3.y",                 ARG_DEFAULT             },
7471   { "titlemessage_initial_3.width",             ARG_DEFAULT             },
7472   { "titlemessage_initial_3.height",            ARG_DEFAULT             },
7473   { "titlemessage_initial_3.chars",             ARG_DEFAULT             },
7474   { "titlemessage_initial_3.lines",             ARG_DEFAULT             },
7475   { "titlemessage_initial_3.align",             ARG_DEFAULT             },
7476   { "titlemessage_initial_3.valign",            ARG_DEFAULT             },
7477   { "titlemessage_initial_3.font",              ARG_DEFAULT             },
7478   { "titlemessage_initial_3.autowrap",          ARG_DEFAULT             },
7479   { "titlemessage_initial_3.centered",          ARG_DEFAULT             },
7480   { "titlemessage_initial_3.parse_comments",    ARG_DEFAULT             },
7481   { "titlemessage_initial_3.sort_priority",     ARG_DEFAULT             },
7482   { "titlemessage_initial_3.fade_mode",         ARG_DEFAULT             },
7483   { "titlemessage_initial_3.fade_delay",        ARG_DEFAULT             },
7484   { "titlemessage_initial_3.post_delay",        ARG_DEFAULT             },
7485   { "titlemessage_initial_3.auto_delay",        ARG_DEFAULT             },
7486   { "titlemessage_initial_4.x",                 ARG_DEFAULT             },
7487   { "titlemessage_initial_4.y",                 ARG_DEFAULT             },
7488   { "titlemessage_initial_4.width",             ARG_DEFAULT             },
7489   { "titlemessage_initial_4.height",            ARG_DEFAULT             },
7490   { "titlemessage_initial_4.chars",             ARG_DEFAULT             },
7491   { "titlemessage_initial_4.lines",             ARG_DEFAULT             },
7492   { "titlemessage_initial_4.align",             ARG_DEFAULT             },
7493   { "titlemessage_initial_4.valign",            ARG_DEFAULT             },
7494   { "titlemessage_initial_4.font",              ARG_DEFAULT             },
7495   { "titlemessage_initial_4.autowrap",          ARG_DEFAULT             },
7496   { "titlemessage_initial_4.centered",          ARG_DEFAULT             },
7497   { "titlemessage_initial_4.parse_comments",    ARG_DEFAULT             },
7498   { "titlemessage_initial_4.sort_priority",     ARG_DEFAULT             },
7499   { "titlemessage_initial_4.fade_mode",         ARG_DEFAULT             },
7500   { "titlemessage_initial_4.fade_delay",        ARG_DEFAULT             },
7501   { "titlemessage_initial_4.post_delay",        ARG_DEFAULT             },
7502   { "titlemessage_initial_4.auto_delay",        ARG_DEFAULT             },
7503   { "titlemessage_initial_5.x",                 ARG_DEFAULT             },
7504   { "titlemessage_initial_5.y",                 ARG_DEFAULT             },
7505   { "titlemessage_initial_5.width",             ARG_DEFAULT             },
7506   { "titlemessage_initial_5.height",            ARG_DEFAULT             },
7507   { "titlemessage_initial_5.chars",             ARG_DEFAULT             },
7508   { "titlemessage_initial_5.lines",             ARG_DEFAULT             },
7509   { "titlemessage_initial_5.align",             ARG_DEFAULT             },
7510   { "titlemessage_initial_5.valign",            ARG_DEFAULT             },
7511   { "titlemessage_initial_5.font",              ARG_DEFAULT             },
7512   { "titlemessage_initial_5.autowrap",          ARG_DEFAULT             },
7513   { "titlemessage_initial_5.centered",          ARG_DEFAULT             },
7514   { "titlemessage_initial_5.parse_comments",    ARG_DEFAULT             },
7515   { "titlemessage_initial_5.sort_priority",     ARG_DEFAULT             },
7516   { "titlemessage_initial_5.fade_mode",         ARG_DEFAULT             },
7517   { "titlemessage_initial_5.fade_delay",        ARG_DEFAULT             },
7518   { "titlemessage_initial_5.post_delay",        ARG_DEFAULT             },
7519   { "titlemessage_initial_5.auto_delay",        ARG_DEFAULT             },
7520   { "titlemessage_1.x",                         ARG_DEFAULT             },
7521   { "titlemessage_1.y",                         ARG_DEFAULT             },
7522   { "titlemessage_1.width",                     ARG_DEFAULT             },
7523   { "titlemessage_1.height",                    ARG_DEFAULT             },
7524   { "titlemessage_1.chars",                     ARG_DEFAULT             },
7525   { "titlemessage_1.lines",                     ARG_DEFAULT             },
7526   { "titlemessage_1.align",                     ARG_DEFAULT             },
7527   { "titlemessage_1.valign",                    ARG_DEFAULT             },
7528   { "titlemessage_1.font",                      ARG_DEFAULT             },
7529   { "titlemessage_1.autowrap",                  ARG_DEFAULT             },
7530   { "titlemessage_1.centered",                  ARG_DEFAULT             },
7531   { "titlemessage_1.parse_comments",            ARG_DEFAULT             },
7532   { "titlemessage_1.sort_priority",             ARG_DEFAULT             },
7533   { "titlemessage_1.fade_mode",                 ARG_DEFAULT             },
7534   { "titlemessage_1.fade_delay",                ARG_DEFAULT             },
7535   { "titlemessage_1.post_delay",                ARG_DEFAULT             },
7536   { "titlemessage_1.auto_delay",                ARG_DEFAULT             },
7537   { "titlemessage_2.x",                         ARG_DEFAULT             },
7538   { "titlemessage_2.y",                         ARG_DEFAULT             },
7539   { "titlemessage_2.width",                     ARG_DEFAULT             },
7540   { "titlemessage_2.height",                    ARG_DEFAULT             },
7541   { "titlemessage_2.chars",                     ARG_DEFAULT             },
7542   { "titlemessage_2.lines",                     ARG_DEFAULT             },
7543   { "titlemessage_2.align",                     ARG_DEFAULT             },
7544   { "titlemessage_2.valign",                    ARG_DEFAULT             },
7545   { "titlemessage_2.font",                      ARG_DEFAULT             },
7546   { "titlemessage_2.autowrap",                  ARG_DEFAULT             },
7547   { "titlemessage_2.centered",                  ARG_DEFAULT             },
7548   { "titlemessage_2.parse_comments",            ARG_DEFAULT             },
7549   { "titlemessage_2.sort_priority",             ARG_DEFAULT             },
7550   { "titlemessage_2.fade_mode",                 ARG_DEFAULT             },
7551   { "titlemessage_2.fade_delay",                ARG_DEFAULT             },
7552   { "titlemessage_2.post_delay",                ARG_DEFAULT             },
7553   { "titlemessage_2.auto_delay",                ARG_DEFAULT             },
7554   { "titlemessage_3.x",                         ARG_DEFAULT             },
7555   { "titlemessage_3.y",                         ARG_DEFAULT             },
7556   { "titlemessage_3.width",                     ARG_DEFAULT             },
7557   { "titlemessage_3.height",                    ARG_DEFAULT             },
7558   { "titlemessage_3.chars",                     ARG_DEFAULT             },
7559   { "titlemessage_3.lines",                     ARG_DEFAULT             },
7560   { "titlemessage_3.align",                     ARG_DEFAULT             },
7561   { "titlemessage_3.valign",                    ARG_DEFAULT             },
7562   { "titlemessage_3.font",                      ARG_DEFAULT             },
7563   { "titlemessage_3.autowrap",                  ARG_DEFAULT             },
7564   { "titlemessage_3.centered",                  ARG_DEFAULT             },
7565   { "titlemessage_3.parse_comments",            ARG_DEFAULT             },
7566   { "titlemessage_3.sort_priority",             ARG_DEFAULT             },
7567   { "titlemessage_3.fade_mode",                 ARG_DEFAULT             },
7568   { "titlemessage_3.fade_delay",                ARG_DEFAULT             },
7569   { "titlemessage_3.post_delay",                ARG_DEFAULT             },
7570   { "titlemessage_3.auto_delay",                ARG_DEFAULT             },
7571   { "titlemessage_4.x",                         ARG_DEFAULT             },
7572   { "titlemessage_4.y",                         ARG_DEFAULT             },
7573   { "titlemessage_4.width",                     ARG_DEFAULT             },
7574   { "titlemessage_4.height",                    ARG_DEFAULT             },
7575   { "titlemessage_4.chars",                     ARG_DEFAULT             },
7576   { "titlemessage_4.lines",                     ARG_DEFAULT             },
7577   { "titlemessage_4.align",                     ARG_DEFAULT             },
7578   { "titlemessage_4.valign",                    ARG_DEFAULT             },
7579   { "titlemessage_4.font",                      ARG_DEFAULT             },
7580   { "titlemessage_4.autowrap",                  ARG_DEFAULT             },
7581   { "titlemessage_4.centered",                  ARG_DEFAULT             },
7582   { "titlemessage_4.parse_comments",            ARG_DEFAULT             },
7583   { "titlemessage_4.sort_priority",             ARG_DEFAULT             },
7584   { "titlemessage_4.fade_mode",                 ARG_DEFAULT             },
7585   { "titlemessage_4.fade_delay",                ARG_DEFAULT             },
7586   { "titlemessage_4.post_delay",                ARG_DEFAULT             },
7587   { "titlemessage_4.auto_delay",                ARG_DEFAULT             },
7588   { "titlemessage_5.x",                         ARG_DEFAULT             },
7589   { "titlemessage_5.y",                         ARG_DEFAULT             },
7590   { "titlemessage_5.width",                     ARG_DEFAULT             },
7591   { "titlemessage_5.height",                    ARG_DEFAULT             },
7592   { "titlemessage_5.chars",                     ARG_DEFAULT             },
7593   { "titlemessage_5.lines",                     ARG_DEFAULT             },
7594   { "titlemessage_5.align",                     ARG_DEFAULT             },
7595   { "titlemessage_5.valign",                    ARG_DEFAULT             },
7596   { "titlemessage_5.font",                      ARG_DEFAULT             },
7597   { "titlemessage_5.autowrap",                  ARG_DEFAULT             },
7598   { "titlemessage_5.centered",                  ARG_DEFAULT             },
7599   { "titlemessage_5.parse_comments",            ARG_DEFAULT             },
7600   { "titlemessage_5.sort_priority",             ARG_DEFAULT             },
7601   { "titlemessage_5.fade_mode",                 ARG_DEFAULT             },
7602   { "titlemessage_5.fade_delay",                ARG_DEFAULT             },
7603   { "titlemessage_5.post_delay",                ARG_DEFAULT             },
7604   { "titlemessage_5.auto_delay",                ARG_DEFAULT             },
7605
7606   { "readme.x",                                 "-1"                    },
7607   { "readme.y",                                 "-1"                    },
7608   { "readme.width",                             "-1"                    },
7609   { "readme.height",                            "-1"                    },
7610   { "readme.chars",                             "-1"                    },
7611   { "readme.lines",                             "-1"                    },
7612   { "readme.align",                             "center"                },
7613   { "readme.valign",                            "top"                   },
7614   { "readme.font",                              "font.info.levelset"    },
7615   { "readme.autowrap",                          "true"                  },
7616   { "readme.centered",                          "false"                 },
7617   { "readme.parse_comments",                    "true"                  },
7618   { "readme.sort_priority",                     "0"                     },
7619
7620   { "global.num_toons",                         "20"                    },
7621
7622   { "border.draw_masked.TITLE",                 "false"                 },
7623   { "border.draw_masked.MAIN",                  "false"                 },
7624   { "border.draw_masked.LEVELS",                "false"                 },
7625   { "border.draw_masked.LEVELNR",               "false"                 },
7626   { "border.draw_masked.SCORES",                "false"                 },
7627   { "border.draw_masked.EDITOR",                "false"                 },
7628   { "border.draw_masked.INFO",                  "false"                 },
7629   { "border.draw_masked.SETUP",                 "false"                 },
7630   { "border.draw_masked.PLAYING",               "false"                 },
7631   { "border.draw_masked.DOOR",                  "false"                 },
7632
7633   { "border.draw_masked_when_fading",           "true"                  },
7634
7635   { "init.busy.x",                              "-1"                    },
7636   { "init.busy.y",                              "-1"                    },
7637   { "init.busy.align",                          "center"                },
7638   { "init.busy.valign",                         "middle"                },
7639
7640   { "menu.enter_menu.fade_mode",                "none"                  },
7641   { "menu.enter_menu.fade_delay",               "250"                   },
7642   { "menu.enter_menu.post_delay",               "125"                   },
7643   { "menu.leave_menu.fade_mode",                "none"                  },
7644   { "menu.leave_menu.fade_delay",               "250"                   },
7645   { "menu.leave_menu.post_delay",               "125"                   },
7646   { "menu.enter_screen.fade_mode",              "fade"                  },
7647   { "menu.enter_screen.fade_delay",             "250"                   },
7648   { "menu.enter_screen.post_delay",             "125"                   },
7649   { "menu.leave_screen.fade_mode",              "fade"                  },
7650   { "menu.leave_screen.fade_delay",             "250"                   },
7651   { "menu.leave_screen.post_delay",             "125"                   },
7652   { "menu.next_screen.fade_mode",               "crossfade"             },
7653   { "menu.next_screen.fade_delay",              "250"                   },
7654   { "menu.next_screen.post_delay",              "125"                   },
7655   { "menu.enter_screen.TITLE.fade_mode",        "fade"                  },
7656   { "menu.enter_screen.TITLE.fade_delay",       "500"                   },
7657   { "menu.enter_screen.TITLE.post_delay",       "250"                   },
7658   { "menu.enter_screen.TITLE.auto_delay",       "-1"                    },
7659   { "menu.enter_screen.SCORES.fade_mode",       ARG_DEFAULT             },
7660   { "menu.enter_screen.SCORES.fade_delay",      ARG_DEFAULT             },
7661   { "menu.enter_screen.SCORES.post_delay",      ARG_DEFAULT             },
7662   { "menu.enter_screen.EDITOR.fade_mode",       ARG_DEFAULT             },
7663   { "menu.enter_screen.EDITOR.fade_delay",      ARG_DEFAULT             },
7664   { "menu.enter_screen.EDITOR.post_delay",      ARG_DEFAULT             },
7665   { "menu.enter_screen.INFO.fade_mode",         ARG_DEFAULT             },
7666   { "menu.enter_screen.INFO.fade_delay",        ARG_DEFAULT             },
7667   { "menu.enter_screen.INFO.post_delay",        ARG_DEFAULT             },
7668   { "menu.enter_screen.PLAYING.fade_mode",      ARG_DEFAULT             },
7669   { "menu.enter_screen.PLAYING.fade_delay",     ARG_DEFAULT             },
7670   { "menu.enter_screen.PLAYING.post_delay",     ARG_DEFAULT             },
7671   { "menu.leave_screen.TITLE.fade_mode",        "fade"                  },
7672   { "menu.leave_screen.TITLE.fade_delay",       "500"                   },
7673   { "menu.leave_screen.TITLE.post_delay",       "250"                   },
7674   { "menu.leave_screen.TITLE.auto_delay",       "-1"                    },
7675   { "menu.leave_screen.SCORES.fade_mode",       ARG_DEFAULT             },
7676   { "menu.leave_screen.SCORES.fade_delay",      ARG_DEFAULT             },
7677   { "menu.leave_screen.SCORES.post_delay",      ARG_DEFAULT             },
7678   { "menu.leave_screen.EDITOR.fade_mode",       ARG_DEFAULT             },
7679   { "menu.leave_screen.EDITOR.fade_delay",      ARG_DEFAULT             },
7680   { "menu.leave_screen.EDITOR.post_delay",      ARG_DEFAULT             },
7681   { "menu.leave_screen.INFO.fade_mode",         ARG_DEFAULT             },
7682   { "menu.leave_screen.INFO.fade_delay",        ARG_DEFAULT             },
7683   { "menu.leave_screen.INFO.post_delay",        ARG_DEFAULT             },
7684   { "menu.leave_screen.PLAYING.fade_mode",      ARG_DEFAULT             },
7685   { "menu.leave_screen.PLAYING.fade_delay",     ARG_DEFAULT             },
7686   { "menu.leave_screen.PLAYING.post_delay",     ARG_DEFAULT             },
7687   { "menu.next_screen.TITLE.fade_mode",         "fade"                  },
7688   { "menu.next_screen.TITLE.fade_delay",        "500"                   },
7689   { "menu.next_screen.TITLE.post_delay",        "250"                   },
7690   { "menu.next_screen.TITLE.auto_delay",        "-1"                    },
7691   { "menu.next_screen.INFO.fade_mode",          ARG_DEFAULT             },
7692   { "menu.next_screen.INFO.fade_delay",         ARG_DEFAULT             },
7693   { "menu.next_screen.INFO.post_delay",         ARG_DEFAULT             },
7694
7695   { "menu.draw_xoffset",                        "0"                     },
7696   { "menu.draw_yoffset",                        "0"                     },
7697   { "menu.draw_xoffset.MAIN",                   "0"                     },
7698   { "menu.draw_yoffset.MAIN",                   "0"                     },
7699   { "menu.draw_xoffset.LEVELS",                 "0"                     },
7700   { "menu.draw_yoffset.LEVELS",                 "0"                     },
7701   { "menu.draw_xoffset.LEVELNR",                "0"                     },
7702   { "menu.draw_yoffset.LEVELNR",                "0"                     },
7703   { "menu.draw_xoffset.SCORES",                 "0"                     },
7704   { "menu.draw_yoffset.SCORES",                 "0"                     },
7705   { "menu.draw_xoffset.EDITOR",                 "0"                     },
7706   { "menu.draw_yoffset.EDITOR",                 "0"                     },
7707   { "menu.draw_xoffset.INFO",                   "0"                     },
7708   { "menu.draw_yoffset.INFO",                   "0"                     },
7709   { "menu.draw_xoffset.INFO[TITLE]",            "0"                     },
7710   { "menu.draw_yoffset.INFO[TITLE]",            "0"                     },
7711   { "menu.draw_xoffset.INFO[ELEMENTS]",         "0"                     },
7712   { "menu.draw_yoffset.INFO[ELEMENTS]",         "0"                     },
7713   { "menu.draw_xoffset.INFO[MUSIC]",            "0"                     },
7714   { "menu.draw_yoffset.INFO[MUSIC]",            "0"                     },
7715   { "menu.draw_xoffset.INFO[CREDITS]",          "0"                     },
7716   { "menu.draw_yoffset.INFO[CREDITS]",          "0"                     },
7717   { "menu.draw_xoffset.INFO[PROGRAM]",          "0"                     },
7718   { "menu.draw_yoffset.INFO[PROGRAM]",          "0"                     },
7719   { "menu.draw_xoffset.INFO[VERSION]",          "0"                     },
7720   { "menu.draw_yoffset.INFO[VERSION]",          "0"                     },
7721   { "menu.draw_xoffset.INFO[LEVELSET]",         "0"                     },
7722   { "menu.draw_yoffset.INFO[LEVELSET]",         "0"                     },
7723   { "menu.draw_xoffset.SETUP",                  "0"                     },
7724   { "menu.draw_yoffset.SETUP",                  "0"                     },
7725   { "menu.draw_xoffset.SETUP[GAME]",            "0"                     },
7726   { "menu.draw_yoffset.SETUP[GAME]",            "0"                     },
7727   { "menu.draw_xoffset.SETUP[EDITOR]",          "0"                     },
7728   { "menu.draw_yoffset.SETUP[EDITOR]",          "0"                     },
7729   { "menu.draw_xoffset.SETUP[GRAPHICS]",        "0"                     },
7730   { "menu.draw_yoffset.SETUP[GRAPHICS]",        "0"                     },
7731   { "menu.draw_xoffset.SETUP[SOUND]",           "0"                     },
7732   { "menu.draw_yoffset.SETUP[SOUND]",           "0"                     },
7733   { "menu.draw_xoffset.SETUP[ARTWORK]",         "0"                     },
7734   { "menu.draw_yoffset.SETUP[ARTWORK]",         "0"                     },
7735   { "menu.draw_xoffset.SETUP[INPUT]",           "0"                     },
7736   { "menu.draw_yoffset.SETUP[INPUT]",           "0"                     },
7737   { "menu.draw_xoffset.SETUP[TOUCH]",           "0"                     },
7738   { "menu.draw_yoffset.SETUP[TOUCH]",           "0"                     },
7739   { "menu.draw_xoffset.SETUP[SHORTCUTS]",       "0"                     },
7740   { "menu.draw_yoffset.SETUP[SHORTCUTS]",       "0"                     },
7741   { "menu.draw_xoffset.SETUP[SHORTCUTS_1]",     "0"                     },
7742   { "menu.draw_yoffset.SETUP[SHORTCUTS_1]",     "0"                     },
7743   { "menu.draw_xoffset.SETUP[SHORTCUTS_2]",     "0"                     },
7744   { "menu.draw_yoffset.SETUP[SHORTCUTS_2]",     "0"                     },
7745   { "menu.draw_xoffset.SETUP[SHORTCUTS_3]",     "0"                     },
7746   { "menu.draw_yoffset.SETUP[SHORTCUTS_3]",     "0"                     },
7747   { "menu.draw_xoffset.SETUP[SHORTCUTS_4]",     "0"                     },
7748   { "menu.draw_yoffset.SETUP[SHORTCUTS_4]",     "0"                     },
7749   { "menu.draw_xoffset.SETUP[SHORTCUTS_5]",     "0"                     },
7750   { "menu.draw_yoffset.SETUP[SHORTCUTS_5]",     "0"                     },
7751   { "menu.draw_xoffset.SETUP[CHOOSE_ARTWORK]",  "0"                     },
7752   { "menu.draw_yoffset.SETUP[CHOOSE_ARTWORK]",  "0"                     },
7753   { "menu.draw_xoffset.SETUP[CHOOSE_OTHER]",    "0"                     },
7754   { "menu.draw_yoffset.SETUP[CHOOSE_OTHER]",    "0"                     },
7755
7756   { "menu.scrollbar_xoffset",                   "0"                     },
7757
7758   { "menu.list.SETUP[CHOOSE_OTHER].align",      "left"                  },
7759   { "menu.list.SETUP[CHOOSE_OTHER].valign",     "top"                   },
7760
7761   { "menu.list_size",                           "-1"                    },
7762   { "menu.list_size.LEVELS",                    "-1"                    },
7763   { "menu.list_size.LEVELNR",                   "-1"                    },
7764   { "menu.list_size.SCORES",                    "-1"                    },
7765   { "menu.list_size.INFO",                      "-1"                    },
7766   { "menu.list_size.INFO[ELEMENTS]",            "-1"                    },
7767   { "menu.list_size.SETUP",                     "-1"                    },
7768
7769   { "menu.left_spacing.INFO",                   "16"                    },
7770   { "menu.left_spacing.INFO[TITLE]",            "16"                    },
7771   { "menu.left_spacing.INFO[ELEMENTS]",         "16"                    },
7772   { "menu.left_spacing.INFO[MUSIC]",            "16"                    },
7773   { "menu.left_spacing.INFO[CREDITS]",          "16"                    },
7774   { "menu.left_spacing.INFO[PROGRAM]",          "16"                    },
7775   { "menu.left_spacing.INFO[VERSION]",          "16"                    },
7776   { "menu.left_spacing.INFO[LEVELSET]",         "16"                    },
7777   { "menu.left_spacing.SETUP[INPUT]",           "16"                    },
7778
7779   { "menu.right_spacing.INFO",                  "16"                    },
7780   { "menu.right_spacing.INFO[TITLE]",           "16"                    },
7781   { "menu.right_spacing.INFO[ELEMENTS]",        "16"                    },
7782   { "menu.right_spacing.INFO[MUSIC]",           "16"                    },
7783   { "menu.right_spacing.INFO[CREDITS]",         "16"                    },
7784   { "menu.right_spacing.INFO[PROGRAM]",         "16"                    },
7785   { "menu.right_spacing.INFO[VERSION]",         "16"                    },
7786   { "menu.right_spacing.INFO[LEVELSET]",        "16"                    },
7787   { "menu.right_spacing.SETUP[INPUT]",          "16"                    },
7788
7789   { "menu.top_spacing.INFO",                    "100"                   },
7790   { "menu.top_spacing.INFO[TITLE]",             "100"                   },
7791   { "menu.top_spacing.INFO[ELEMENTS]",          "100"                   },
7792   { "menu.top_spacing.INFO[MUSIC]",             "100"                   },
7793   { "menu.top_spacing.INFO[CREDITS]",           "100"                   },
7794   { "menu.top_spacing.INFO[PROGRAM]",           "100"                   },
7795   { "menu.top_spacing.INFO[VERSION]",           "100"                   },
7796   { "menu.top_spacing.INFO[LEVELSET]",          "100"                   },
7797   { "menu.top_spacing.SETUP[INPUT]",            "100"                   },
7798
7799   { "menu.bottom_spacing.INFO",                 "20"                    },
7800   { "menu.bottom_spacing.INFO[TITLE]",          "20"                    },
7801   { "menu.bottom_spacing.INFO[ELEMENTS]",       "20"                    },
7802   { "menu.bottom_spacing.INFO[MUSIC]",          "20"                    },
7803   { "menu.bottom_spacing.INFO[CREDITS]",        "20"                    },
7804   { "menu.bottom_spacing.INFO[PROGRAM]",        "20"                    },
7805   { "menu.bottom_spacing.INFO[VERSION]",        "20"                    },
7806   { "menu.bottom_spacing.INFO[LEVELSET]",       "20"                    },
7807   { "menu.bottom_spacing.SETUP[INPUT]",         "20"                    },
7808
7809   { "menu.paragraph_spacing.INFO",              "-3"                    },
7810   { "menu.paragraph_spacing.INFO[TITLE]",       "-3"                    },
7811   { "menu.paragraph_spacing.INFO[ELEMENTS]",    "-3"                    },
7812   { "menu.paragraph_spacing.INFO[MUSIC]",       "-3"                    },
7813   { "menu.paragraph_spacing.INFO[CREDITS]",     "-3"                    },
7814   { "menu.paragraph_spacing.INFO[PROGRAM]",     "-3"                    },
7815   { "menu.paragraph_spacing.INFO[VERSION]",     "-3"                    },
7816   { "menu.paragraph_spacing.INFO[LEVELSET]",    "-3"                    },
7817   { "menu.paragraph_spacing.SETUP[INPUT]",      "-1"                    },
7818
7819   { "menu.headline1_spacing.INFO",              "-2"                    },
7820   { "menu.headline1_spacing.INFO[TITLE]",       "-2"                    },
7821   { "menu.headline1_spacing.INFO[ELEMENTS]",    "-2"                    },
7822   { "menu.headline1_spacing.INFO[MUSIC]",       "-2"                    },
7823   { "menu.headline1_spacing.INFO[CREDITS]",     "-2"                    },
7824   { "menu.headline1_spacing.INFO[PROGRAM]",     "-2"                    },
7825   { "menu.headline1_spacing.INFO[VERSION]",     "-2"                    },
7826   { "menu.headline1_spacing.INFO[LEVELSET]",    "-2"                    },
7827   { "menu.headline1_spacing.SETUP[INPUT]",      "-2"                    },
7828
7829   { "menu.headline2_spacing.INFO",              "-1"                    },
7830   { "menu.headline2_spacing.INFO[TITLE]",       "-1"                    },
7831   { "menu.headline2_spacing.INFO[ELEMENTS]",    "-1"                    },
7832   { "menu.headline2_spacing.INFO[MUSIC]",       "-1"                    },
7833   { "menu.headline2_spacing.INFO[CREDITS]",     "-1"                    },
7834   { "menu.headline2_spacing.INFO[PROGRAM]",     "-1"                    },
7835   { "menu.headline2_spacing.INFO[VERSION]",     "-1"                    },
7836   { "menu.headline2_spacing.INFO[LEVELSET]",    "-1"                    },
7837   { "menu.headline2_spacing.SETUP[INPUT]",      "-1"                    },
7838
7839   { "menu.line_spacing.INFO",                   "0"                     },
7840   { "menu.line_spacing.INFO[TITLE]",            "0"                     },
7841   { "menu.line_spacing.INFO[ELEMENTS]",         "0"                     },
7842   { "menu.line_spacing.INFO[MUSIC]",            "0"                     },
7843   { "menu.line_spacing.INFO[CREDITS]",          "0"                     },
7844   { "menu.line_spacing.INFO[PROGRAM]",          "0"                     },
7845   { "menu.line_spacing.INFO[VERSION]",          "0"                     },
7846   { "menu.line_spacing.INFO[LEVELSET]",         "0"                     },
7847   { "menu.line_spacing.SETUP[INPUT]",           "0"                     },
7848
7849   { "menu.extra_spacing.INFO",                  "2"                     },
7850   { "menu.extra_spacing.INFO[TITLE]",           "2"                     },
7851   { "menu.extra_spacing.INFO[ELEMENTS]",        "2"                     },
7852   { "menu.extra_spacing.INFO[MUSIC]",           "2"                     },
7853   { "menu.extra_spacing.INFO[CREDITS]",         "2"                     },
7854   { "menu.extra_spacing.INFO[PROGRAM]",         "2"                     },
7855   { "menu.extra_spacing.INFO[VERSION]",         "2"                     },
7856   { "menu.extra_spacing.INFO[LEVELSET]",        "2"                     },
7857   { "menu.extra_spacing.SETUP[INPUT]",          "2"                     },
7858
7859   { "main.button.name.x",                       "0"                     },
7860   { "main.button.name.y",                       "64"                    },
7861   { "main.button.levels.x",                     "0"                     },
7862   { "main.button.levels.y",                     "96"                    },
7863   { "main.button.scores.x",                     "0"                     },
7864   { "main.button.scores.y",                     "128"                   },
7865   { "main.button.editor.x",                     "0"                     },
7866   { "main.button.editor.y",                     "160"                   },
7867   { "main.button.info.x",                       "0"                     },
7868   { "main.button.info.y",                       "192"                   },
7869   { "main.button.game.x",                       "0"                     },
7870   { "main.button.game.y",                       "224"                   },
7871   { "main.button.setup.x",                      "0"                     },
7872   { "main.button.setup.y",                      "256"                   },
7873   { "main.button.quit.x",                       "0"                     },
7874   { "main.button.quit.y",                       "288"                   },
7875
7876   { "main.button.first_level.x",                "-1"                    },
7877   { "main.button.first_level.y",                "-1"                    },
7878   { "main.button.last_level.x",                 "-1"                    },
7879   { "main.button.last_level.y",                 "-1"                    },
7880   { "main.button.level_number.x",               "-1"                    },
7881   { "main.button.level_number.y",               "-1"                    },
7882
7883   { "main.button.prev_level.x",                 "320"                   },
7884   { "main.button.prev_level.y",                 "96"                    },
7885   { "main.button.next_level.x",                 "448"                   },
7886   { "main.button.next_level.y",                 "96"                    },
7887
7888   { "main.button.insert_solution.x",            "-1"                    },
7889   { "main.button.insert_solution.y",            "-1"                    },
7890   { "main.button.play_solution.x",              "-1"                    },
7891   { "main.button.play_solution.y",              "-1"                    },
7892
7893   { "main.text.name.x",                         "-1"                    },
7894   { "main.text.name.y",                         "-1"                    },
7895   { "main.text.name.width",                     "-1"                    },
7896   { "main.text.name.height",                    "-1"                    },
7897   { "main.text.name.align",                     "left"                  },
7898   { "main.text.name.valign",                    "top"                   },
7899   { "main.text.name.font",                      "font.menu_1"           },
7900   { "main.text.levels.x",                       "-1"                    },
7901   { "main.text.levels.y",                       "-1"                    },
7902   { "main.text.levels.width",                   "-1"                    },
7903   { "main.text.levels.height",                  "-1"                    },
7904   { "main.text.levels.align",                   "left"                  },
7905   { "main.text.levels.valign",                  "top"                   },
7906   { "main.text.levels.font",                    "font.menu_1"           },
7907   { "main.text.scores.x",                       "-1"                    },
7908   { "main.text.scores.y",                       "-1"                    },
7909   { "main.text.scores.width",                   "-1"                    },
7910   { "main.text.scores.height",                  "-1"                    },
7911   { "main.text.scores.align",                   "left"                  },
7912   { "main.text.scores.valign",                  "top"                   },
7913   { "main.text.scores.font",                    "font.menu_1"           },
7914   { "main.text.editor.x",                       "-1"                    },
7915   { "main.text.editor.y",                       "-1"                    },
7916   { "main.text.editor.width",                   "-1"                    },
7917   { "main.text.editor.height",                  "-1"                    },
7918   { "main.text.editor.align",                   "left"                  },
7919   { "main.text.editor.valign",                  "top"                   },
7920   { "main.text.editor.font",                    "font.menu_1"           },
7921   { "main.text.info.x",                         "-1"                    },
7922   { "main.text.info.y",                         "-1"                    },
7923   { "main.text.info.width",                     "-1"                    },
7924   { "main.text.info.height",                    "-1"                    },
7925   { "main.text.info.align",                     "left"                  },
7926   { "main.text.info.valign",                    "top"                   },
7927   { "main.text.info.font",                      "font.menu_1"           },
7928   { "main.text.game.x",                         "-1"                    },
7929   { "main.text.game.y",                         "-1"                    },
7930   { "main.text.game.width",                     "-1"                    },
7931   { "main.text.game.height",                    "-1"                    },
7932   { "main.text.game.align",                     "left"                  },
7933   { "main.text.game.valign",                    "top"                   },
7934   { "main.text.game.font",                      "font.menu_1"           },
7935   { "main.text.setup.x",                        "-1"                    },
7936   { "main.text.setup.y",                        "-1"                    },
7937   { "main.text.setup.width",                    "-1"                    },
7938   { "main.text.setup.height",                   "-1"                    },
7939   { "main.text.setup.align",                    "left"                  },
7940   { "main.text.setup.valign",                   "top"                   },
7941   { "main.text.setup.font",                     "font.menu_1"           },
7942   { "main.text.quit.x",                         "-1"                    },
7943   { "main.text.quit.y",                         "-1"                    },
7944   { "main.text.quit.width",                     "-1"                    },
7945   { "main.text.quit.height",                    "-1"                    },
7946   { "main.text.quit.align",                     "left"                  },
7947   { "main.text.quit.valign",                    "top"                   },
7948   { "main.text.quit.font",                      "font.menu_1"           },
7949
7950   { "main.text.first_level.x",                  "488"                   },
7951   { "main.text.first_level.y",                  "98"                    },
7952   { "main.text.first_level.align",              "left"                  },
7953   { "main.text.first_level.valign",             "top"                   },
7954   { "main.text.first_level.digits",             "3"                     },
7955   { "main.text.first_level.font",               "font.text_3"           },
7956   { "main.text.last_level.x",                   "488"                   },
7957   { "main.text.last_level.y",                   "112"                   },
7958   { "main.text.last_level.align",               "left"                  },
7959   { "main.text.last_level.valign",              "top"                   },
7960   { "main.text.last_level.digits",              "3"                     },
7961   { "main.text.last_level.font",                "font.text_3"           },
7962   { "main.text.level_number.x",                 "352"                   },
7963   { "main.text.level_number.y",                 "96"                    },
7964   { "main.text.level_number.align",             "left"                  },
7965   { "main.text.level_number.valign",            "top"                   },
7966   { "main.text.level_number.digits",            "3"                     },
7967   { "main.text.level_number.font",              "font.value_1"          },
7968   { "main.text.level_info_1.x",                 "272"                   },
7969   { "main.text.level_info_1.y",                 "352"                   },
7970   { "main.text.level_info_1.align",             "center"                },
7971   { "main.text.level_info_1.valign",            "top"                   },
7972   { "main.text.level_info_1.chars",             "-1"                    },
7973   { "main.text.level_info_1.font",              "font.text_1"           },
7974   { "main.text.level_info_2.x",                 "272"                   },
7975   { "main.text.level_info_2.y",                 "523"                   },
7976   { "main.text.level_info_2.align",             "center"                },
7977   { "main.text.level_info_2.valign",            "top"                   },
7978   { "main.text.level_info_2.chars",             "-1"                    },
7979   { "main.text.level_info_2.font",              "font.text_2"           },
7980   { "main.text.level_info_2.font_header",       "font.text_4"           },
7981   { "main.text.level_name.x",                   "-1"                    },
7982   { "main.text.level_name.y",                   "-1"                    },
7983   { "main.text.level_name.align",               "left"                  },
7984   { "main.text.level_name.valign",              "top"                   },
7985   { "main.text.level_name.chars",               "-1"                    },
7986   { "main.text.level_name.font",                "font.text_2"           },
7987   { "main.text.level_author.x",                 "-1"                    },
7988   { "main.text.level_author.y",                 "-1"                    },
7989   { "main.text.level_author.align",             "left"                  },
7990   { "main.text.level_author.valign",            "top"                   },
7991   { "main.text.level_author.chars",             "-1"                    },
7992   { "main.text.level_author.font",              "font.text_2"           },
7993   { "main.text.level_year.x",                   "-1"                    },
7994   { "main.text.level_year.y",                   "-1"                    },
7995   { "main.text.level_year.align",               "left"                  },
7996   { "main.text.level_year.valign",              "top"                   },
7997   { "main.text.level_year.digits",              "-1"                    },
7998   { "main.text.level_year.font",                "font.text_2"           },
7999   { "main.text.level_imported_from.x",          "-1"                    },
8000   { "main.text.level_imported_from.y",          "-1"                    },
8001   { "main.text.level_imported_from.align",      "left"                  },
8002   { "main.text.level_imported_from.valign",     "top"                   },
8003   { "main.text.level_imported_from.chars",      "-1"                    },
8004   { "main.text.level_imported_from.font",       "font.text_2"           },
8005   { "main.text.level_imported_by.x",            "-1"                    },
8006   { "main.text.level_imported_by.y",            "-1"                    },
8007   { "main.text.level_imported_by.align",        "left"                  },
8008   { "main.text.level_imported_by.valign",       "top"                   },
8009   { "main.text.level_imported_by.chars",        "-1"                    },
8010   { "main.text.level_imported_by.font",         "font.text_2"           },
8011   { "main.text.level_tested_by.x",              "-1"                    },
8012   { "main.text.level_tested_by.y",              "-1"                    },
8013   { "main.text.level_tested_by.align",          "left"                  },
8014   { "main.text.level_tested_by.valign",         "top"                   },
8015   { "main.text.level_tested_by.chars",          "-1"                    },
8016   { "main.text.level_tested_by.font",           "font.text_2"           },
8017   { "main.text.title_1.x",                      "272"                   },
8018   { "main.text.title_1.y",                      "8"                     },
8019   { "main.text.title_1.align",                  "center"                },
8020   { "main.text.title_1.valign",                 "top"                   },
8021   { "main.text.title_1.font",                   "font.title_1"          },
8022   { "main.text.title_2.x",                      "272"                   },
8023   { "main.text.title_2.y",                      "46"                    },
8024   { "main.text.title_2.align",                  "center"                },
8025   { "main.text.title_2.valign",                 "top"                   },
8026   { "main.text.title_2.font",                   "font.title_2"          },
8027   { "main.text.title_3.x",                      "272"                   },
8028   { "main.text.title_3.y",                      "326"                   },
8029   { "main.text.title_3.align",                  "center"                },
8030   { "main.text.title_3.valign",                 "top"                   },
8031   { "main.text.title_3.font",                   "font.title_2"          },
8032
8033   { "main.input.name.x",                        "-1"                    },
8034   { "main.input.name.y",                        "-1"                    },
8035   { "main.input.name.align",                    "left"                  },
8036   { "main.input.name.valign",                   "top"                   },
8037   { "main.input.name.font",                     "font.input_1"          },
8038
8039   { "main.network_players.x",                   "68"                    },
8040   { "main.network_players.y",                   "448"                   },
8041   { "main.network_players.align",               "center"                },
8042   { "main.network_players.valign",              "middle"                },
8043   { "main.network_players.font",                "font.main.network_players" },
8044   { "main.network_players.tile_size",           "16"                    },
8045   { "main.network_players.border_size",         "2"                     },
8046
8047   { "main.preview_players.x",                   "474"                   },
8048   { "main.preview_players.y",                   "448"                   },
8049   { "main.preview_players.align",               "center"                },
8050   { "main.preview_players.valign",              "middle"                },
8051   { "main.preview_players.tile_size",           "32"                    },
8052   { "main.preview_players.border_size",         "2"                     },
8053   { "main.preview_players.vertical",            "false"                 },
8054   { "main.preview_players.xoffset",             "-1"                    },
8055   { "main.preview_players.yoffset",             "-1"                    },
8056
8057   { "preview.x",                                "272"                   },
8058   { "preview.y",                                "380"                   },
8059   { "preview.align",                            "center"                },
8060   { "preview.valign",                           "top"                   },
8061   { "preview.xsize",                            "66"                    },
8062   { "preview.ysize",                            "34"                    },
8063   { "preview.xoffset",                          "0"                     },
8064   { "preview.yoffset",                          "0"                     },
8065   { "preview.tile_size",                        "4"                     },
8066   { "preview.step_offset",                      "1"                     },
8067   { "preview.step_delay",                       "50"                    },
8068   { "preview.anim_mode",                        "default"               },
8069
8070   { "door_1.part_1.x",                          "0"                     },
8071   { "door_1.part_1.y",                          "0"                     },
8072   { "door_1.part_1.step_xoffset",               "3"                     },
8073   { "door_1.part_1.step_yoffset",               "1"                     },
8074   { "door_1.part_1.step_delay",                 "10"                    },
8075   { "door_1.part_1.start_step",                 "0"                     },
8076   { "door_1.part_1.start_step_opening",         "0"                     },
8077   { "door_1.part_1.start_step_closing",         "0"                     },
8078   { "door_1.part_1.draw_masked",                "true"                  },
8079   { "door_1.part_1.draw_order",                 "3"                     },
8080   { "door_1.part_2.x",                          "0"                     },
8081   { "door_1.part_2.y",                          "77"                    },
8082   { "door_1.part_2.step_xoffset",               "3"                     },
8083   { "door_1.part_2.step_yoffset",               "1"                     },
8084   { "door_1.part_2.step_delay",                 "10"                    },
8085   { "door_1.part_2.start_step",                 "0"                     },
8086   { "door_1.part_2.start_step_opening",         "0"                     },
8087   { "door_1.part_2.start_step_closing",         "0"                     },
8088   { "door_1.part_2.draw_masked",                "true"                  },
8089   { "door_1.part_2.draw_order",                 "5"                     },
8090   { "door_1.part_3.x",                          "0"                     },
8091   { "door_1.part_3.y",                          "140"                   },
8092   { "door_1.part_3.step_xoffset",               "3"                     },
8093   { "door_1.part_3.step_yoffset",               "1"                     },
8094   { "door_1.part_3.step_delay",                 "10"                    },
8095   { "door_1.part_3.start_step",                 "0"                     },
8096   { "door_1.part_3.start_step_opening",         "0"                     },
8097   { "door_1.part_3.start_step_closing",         "0"                     },
8098   { "door_1.part_3.draw_masked",                "true"                  },
8099   { "door_1.part_3.draw_order",                 "4"                     },
8100   { "door_1.part_4.x",                          "0"                     },
8101   { "door_1.part_4.y",                          "203"                   },
8102   { "door_1.part_4.step_xoffset",               "3"                     },
8103   { "door_1.part_4.step_yoffset",               "1"                     },
8104   { "door_1.part_4.step_delay",                 "10"                    },
8105   { "door_1.part_4.start_step",                 "0"                     },
8106   { "door_1.part_4.start_step_opening",         "0"                     },
8107   { "door_1.part_4.start_step_closing",         "0"                     },
8108   { "door_1.part_4.draw_masked",                "true"                  },
8109   { "door_1.part_4.draw_order",                 "6"                     },
8110   { "door_1.part_5.x",                          "0"                     },
8111   { "door_1.part_5.y",                          "0"                     },
8112   { "door_1.part_5.step_xoffset",               "-3"                    },
8113   { "door_1.part_5.step_yoffset",               "-1"                    },
8114   { "door_1.part_5.step_delay",                 "10"                    },
8115   { "door_1.part_5.start_step",                 "0"                     },
8116   { "door_1.part_5.start_step_opening",         "0"                     },
8117   { "door_1.part_5.start_step_closing",         "0"                     },
8118   { "door_1.part_5.draw_masked",                "true"                  },
8119   { "door_1.part_5.draw_order",                 "1"                     },
8120   { "door_1.part_6.x",                          "0"                     },
8121   { "door_1.part_6.y",                          "77"                    },
8122   { "door_1.part_6.step_xoffset",               "-3"                    },
8123   { "door_1.part_6.step_yoffset",               "-1"                    },
8124   { "door_1.part_6.step_delay",                 "10"                    },
8125   { "door_1.part_6.start_step",                 "0"                     },
8126   { "door_1.part_6.start_step_opening",         "0"                     },
8127   { "door_1.part_6.start_step_closing",         "0"                     },
8128   { "door_1.part_6.draw_masked",                "true"                  },
8129   { "door_1.part_6.draw_order",                 "7"                     },
8130   { "door_1.part_7.x",                          "0"                     },
8131   { "door_1.part_7.y",                          "140"                   },
8132   { "door_1.part_7.step_xoffset",               "-3"                    },
8133   { "door_1.part_7.step_yoffset",               "-1"                    },
8134   { "door_1.part_7.step_delay",                 "10"                    },
8135   { "door_1.part_7.start_step",                 "0"                     },
8136   { "door_1.part_7.start_step_opening",         "0"                     },
8137   { "door_1.part_7.start_step_closing",         "0"                     },
8138   { "door_1.part_7.draw_masked",                "true"                  },
8139   { "door_1.part_7.draw_order",                 "2"                     },
8140   { "door_1.part_8.x",                          "0"                     },
8141   { "door_1.part_8.y",                          "203"                   },
8142   { "door_1.part_8.step_xoffset",               "-3"                    },
8143   { "door_1.part_8.step_yoffset",               "-1"                    },
8144   { "door_1.part_8.step_delay",                 "10"                    },
8145   { "door_1.part_8.start_step",                 "0"                     },
8146   { "door_1.part_8.start_step_opening",         "0"                     },
8147   { "door_1.part_8.start_step_closing",         "0"                     },
8148   { "door_1.part_8.draw_masked",                "true"                  },
8149   { "door_1.part_8.draw_order",                 "8"                     },
8150
8151   { "door_2.part_1.x",                          "0"                     },
8152   { "door_2.part_1.y",                          "0"                     },
8153   { "door_2.part_1.step_xoffset",               "3"                     },
8154   { "door_2.part_1.step_yoffset",               "1"                     },
8155   { "door_2.part_1.step_delay",                 "10"                    },
8156   { "door_2.part_1.start_step",                 "0"                     },
8157   { "door_2.part_1.start_step_opening",         "0"                     },
8158   { "door_2.part_1.start_step_closing",         "0"                     },
8159   { "door_2.part_1.draw_masked",                "true"                  },
8160   { "door_2.part_1.draw_order",                 "2"                     },
8161   { "door_2.part_2.x",                          "0"                     },
8162   { "door_2.part_2.y",                          "50"                    },
8163   { "door_2.part_2.step_xoffset",               "3"                     },
8164   { "door_2.part_2.step_yoffset",               "1"                     },
8165   { "door_2.part_2.step_delay",                 "10"                    },
8166   { "door_2.part_2.start_step",                 "0"                     },
8167   { "door_2.part_2.start_step_opening",         "0"                     },
8168   { "door_2.part_2.start_step_closing",         "0"                     },
8169   { "door_2.part_2.draw_masked",                "true"                  },
8170   { "door_2.part_2.draw_order",                 "3"                     },
8171   { "door_2.part_3.x",                          "0"                     },
8172   { "door_2.part_3.y",                          "0"                     },
8173   { "door_2.part_3.step_xoffset",               "-3"                    },
8174   { "door_2.part_3.step_yoffset",               "-1"                    },
8175   { "door_2.part_3.step_delay",                 "10"                    },
8176   { "door_2.part_3.start_step",                 "0"                     },
8177   { "door_2.part_3.start_step_opening",         "0"                     },
8178   { "door_2.part_3.start_step_closing",         "0"                     },
8179   { "door_2.part_3.draw_masked",                "true"                  },
8180   { "door_2.part_3.draw_order",                 "1"                     },
8181   { "door_2.part_4.x",                          "0"                     },
8182   { "door_2.part_4.y",                          "50"                    },
8183   { "door_2.part_4.step_xoffset",               "-3"                    },
8184   { "door_2.part_4.step_yoffset",               "-1"                    },
8185   { "door_2.part_4.step_delay",                 "10"                    },
8186   { "door_2.part_4.start_step",                 "0"                     },
8187   { "door_2.part_4.start_step_opening",         "0"                     },
8188   { "door_2.part_4.start_step_closing",         "0"                     },
8189   { "door_2.part_4.draw_masked",                "true"                  },
8190   { "door_2.part_4.draw_order",                 "4"                     },
8191   { "door_2.part_5.x",                          "-1"                    },
8192   { "door_2.part_5.y",                          "-1"                    },
8193   { "door_2.part_5.step_xoffset",               "0"                     },
8194   { "door_2.part_5.step_yoffset",               "0"                     },
8195   { "door_2.part_5.step_delay",                 "0"                     },
8196   { "door_2.part_5.start_step",                 "0"                     },
8197   { "door_2.part_5.start_step_opening",         "0"                     },
8198   { "door_2.part_5.start_step_closing",         "0"                     },
8199   { "door_2.part_5.draw_masked",                "true"                  },
8200   { "door_2.part_5.draw_order",                 "0"                     },
8201   { "door_2.part_6.x",                          "-1"                    },
8202   { "door_2.part_6.y",                          "-1"                    },
8203   { "door_2.part_6.step_xoffset",               "0"                     },
8204   { "door_2.part_6.step_yoffset",               "0"                     },
8205   { "door_2.part_6.step_delay",                 "0"                     },
8206   { "door_2.part_6.start_step",                 "0"                     },
8207   { "door_2.part_6.start_step_opening",         "0"                     },
8208   { "door_2.part_6.start_step_closing",         "0"                     },
8209   { "door_2.part_6.draw_masked",                "true"                  },
8210   { "door_2.part_6.draw_order",                 "0"                     },
8211   { "door_2.part_7.x",                          "-1"                    },
8212   { "door_2.part_7.y",                          "-1"                    },
8213   { "door_2.part_7.step_xoffset",               "0"                     },
8214   { "door_2.part_7.step_yoffset",               "0"                     },
8215   { "door_2.part_7.step_delay",                 "0"                     },
8216   { "door_2.part_7.start_step",                 "0"                     },
8217   { "door_2.part_7.start_step_opening",         "0"                     },
8218   { "door_2.part_7.start_step_closing",         "0"                     },
8219   { "door_2.part_7.draw_masked",                "true"                  },
8220   { "door_2.part_7.draw_order",                 "0"                     },
8221   { "door_2.part_8.x",                          "-1"                    },
8222   { "door_2.part_8.y",                          "-1"                    },
8223   { "door_2.part_8.step_xoffset",               "0"                     },
8224   { "door_2.part_8.step_yoffset",               "0"                     },
8225   { "door_2.part_8.step_delay",                 "0"                     },
8226   { "door_2.part_8.start_step",                 "0"                     },
8227   { "door_2.part_8.start_step_opening",         "0"                     },
8228   { "door_2.part_8.start_step_closing",         "0"                     },
8229   { "door_2.part_8.draw_masked",                "true"                  },
8230   { "door_2.part_8.draw_order",                 "0"                     },
8231
8232   { "door_1.panel.x",                           "0"                     },
8233   { "door_1.panel.y",                           "0"                     },
8234   { "door_1.panel.step_xoffset",                "0"                     },
8235   { "door_1.panel.step_yoffset",                "1"                     },
8236   { "door_1.panel.step_delay",                  "10"                    },
8237   { "door_1.panel.start_step",                  "246"                   },
8238   { "door_1.panel.start_step_opening",          "0"                     },
8239   { "door_1.panel.start_step_closing",          "0"                     },
8240   { "door_1.panel.draw_masked",                 "false"                 },
8241   { "door_1.panel.draw_order",                  "0"                     },
8242
8243   { "door_2.panel.x",                           "0"                     },
8244   { "door_2.panel.y",                           "0"                     },
8245   { "door_2.panel.step_xoffset",                "0"                     },
8246   { "door_2.panel.step_yoffset",                "1"                     },
8247   { "door_2.panel.step_delay",                  "10"                    },
8248   { "door_2.panel.start_step",                  "66"                    },
8249   { "door_2.panel.start_step_opening",          "0"                     },
8250   { "door_2.panel.start_step_closing",          "0"                     },
8251   { "door_2.panel.draw_masked",                 "false"                 },
8252   { "door_2.panel.draw_order",                  "0"                     },
8253
8254   { "door_1.width",                             "-1"                    },
8255   { "door_1.height",                            "-1"                    },
8256   { "door_1.step_offset",                       "2"                     },
8257   { "door_1.step_delay",                        "10"                    },
8258   { "door_1.post_delay",                        "100"                   },
8259   { "door_1.anim_mode",                         "default"               },
8260
8261   { "door_2.width",                             "-1"                    },
8262   { "door_2.height",                            "-1"                    },
8263   { "door_2.step_offset",                       "2"                     },
8264   { "door_2.step_delay",                        "10"                    },
8265   { "door_2.post_delay",                        "100"                   },
8266   { "door_2.anim_mode",                         "default"               },
8267
8268   { "game.panel.level_number.x",                "51"                    },
8269   { "game.panel.level_number.y",                "20"                    },
8270   { "game.panel.level_number.align",            "center"                },
8271   { "game.panel.level_number.valign",           "top"                   },
8272   { "game.panel.level_number.digits",           "-1"                    },
8273   { "game.panel.level_number.font",             "font.text_2"           },
8274   { "game.panel.level_number.font_narrow",      "font.text_1"           },
8275   { "game.panel.level_number.draw_masked",      "true"                  },
8276   { "game.panel.level_number.draw_order",       "0"                     },
8277
8278   { "game.panel.gems.x",                        "50"                    },
8279   { "game.panel.gems.y",                        "54"                    },
8280   { "game.panel.gems.align",                    "center"                },
8281   { "game.panel.gems.valign",                   "top"                   },
8282   { "game.panel.gems.digits",                   "3"                     },
8283   { "game.panel.gems.font",                     "font.text_2"           },
8284   { "game.panel.gems.draw_masked",              "true"                  },
8285   { "game.panel.gems.draw_order",               "0"                     },
8286
8287   { "game.panel.inventory_count.x",             "50"                    },
8288   { "game.panel.inventory_count.y",             "89"                    },
8289   { "game.panel.inventory_count.align",         "center"                },
8290   { "game.panel.inventory_count.valign",        "top"                   },
8291   { "game.panel.inventory_count.digits",        "3"                     },
8292   { "game.panel.inventory_count.font",          "font.text_2"           },
8293   { "game.panel.inventory_count.draw_masked",   "true"                  },
8294   { "game.panel.inventory_count.draw_order",    "0"                     },
8295
8296   { "game.panel.inventory_first_1.x",           "-1"                    },
8297   { "game.panel.inventory_first_1.y",           "-1"                    },
8298   { "game.panel.inventory_first_1.tile_size",   "16"                    },
8299   { "game.panel.inventory_first_1.draw_masked", "false"                 },
8300   { "game.panel.inventory_first_1.draw_order",  "0"                     },
8301   { "game.panel.inventory_first_2.x",           "-1"                    },
8302   { "game.panel.inventory_first_2.y",           "-1"                    },
8303   { "game.panel.inventory_first_2.tile_size",   "16"                    },
8304   { "game.panel.inventory_first_2.draw_masked", "false"                 },
8305   { "game.panel.inventory_first_2.draw_order",  "0"                     },
8306   { "game.panel.inventory_first_3.x",           "-1"                    },
8307   { "game.panel.inventory_first_3.y",           "-1"                    },
8308   { "game.panel.inventory_first_3.tile_size",   "16"                    },
8309   { "game.panel.inventory_first_3.draw_masked", "false"                 },
8310   { "game.panel.inventory_first_3.draw_order",  "0"                     },
8311   { "game.panel.inventory_first_4.x",           "-1"                    },
8312   { "game.panel.inventory_first_4.y",           "-1"                    },
8313   { "game.panel.inventory_first_4.tile_size",   "16"                    },
8314   { "game.panel.inventory_first_4.draw_masked", "false"                 },
8315   { "game.panel.inventory_first_4.draw_order",  "0"                     },
8316   { "game.panel.inventory_first_5.x",           "-1"                    },
8317   { "game.panel.inventory_first_5.y",           "-1"                    },
8318   { "game.panel.inventory_first_5.tile_size",   "16"                    },
8319   { "game.panel.inventory_first_5.draw_masked", "false"                 },
8320   { "game.panel.inventory_first_5.draw_order",  "0"                     },
8321   { "game.panel.inventory_first_6.x",           "-1"                    },
8322   { "game.panel.inventory_first_6.y",           "-1"                    },
8323   { "game.panel.inventory_first_6.tile_size",   "16"                    },
8324   { "game.panel.inventory_first_6.draw_masked", "false"                 },
8325   { "game.panel.inventory_first_6.draw_order",  "0"                     },
8326   { "game.panel.inventory_first_7.x",           "-1"                    },
8327   { "game.panel.inventory_first_7.y",           "-1"                    },
8328   { "game.panel.inventory_first_7.tile_size",   "16"                    },
8329   { "game.panel.inventory_first_7.draw_masked", "false"                 },
8330   { "game.panel.inventory_first_7.draw_order",  "0"                     },
8331   { "game.panel.inventory_first_8.x",           "-1"                    },
8332   { "game.panel.inventory_first_8.y",           "-1"                    },
8333   { "game.panel.inventory_first_8.tile_size",   "16"                    },
8334   { "game.panel.inventory_first_8.draw_masked", "false"                 },
8335   { "game.panel.inventory_first_8.draw_order",  "0"                     },
8336
8337   { "game.panel.inventory_last_1.x",            "-1"                    },
8338   { "game.panel.inventory_last_1.y",            "-1"                    },
8339   { "game.panel.inventory_last_1.tile_size",    "16"                    },
8340   { "game.panel.inventory_last_1.draw_masked",  "false"                 },
8341   { "game.panel.inventory_last_1.draw_order",   "0"                     },
8342   { "game.panel.inventory_last_2.x",            "-1"                    },
8343   { "game.panel.inventory_last_2.y",            "-1"                    },
8344   { "game.panel.inventory_last_2.tile_size",    "16"                    },
8345   { "game.panel.inventory_last_2.draw_masked",  "false"                 },
8346   { "game.panel.inventory_last_2.draw_order",   "0"                     },
8347   { "game.panel.inventory_last_3.x",            "-1"                    },
8348   { "game.panel.inventory_last_3.y",            "-1"                    },
8349   { "game.panel.inventory_last_3.tile_size",    "16"                    },
8350   { "game.panel.inventory_last_3.draw_masked",  "false"                 },
8351   { "game.panel.inventory_last_3.draw_order",   "0"                     },
8352   { "game.panel.inventory_last_4.x",            "-1"                    },
8353   { "game.panel.inventory_last_4.y",            "-1"                    },
8354   { "game.panel.inventory_last_4.tile_size",    "16"                    },
8355   { "game.panel.inventory_last_4.draw_masked",  "false"                 },
8356   { "game.panel.inventory_last_4.draw_order",   "0"                     },
8357   { "game.panel.inventory_last_5.x",            "-1"                    },
8358   { "game.panel.inventory_last_5.y",            "-1"                    },
8359   { "game.panel.inventory_last_5.tile_size",    "16"                    },
8360   { "game.panel.inventory_last_5.draw_masked",  "false"                 },
8361   { "game.panel.inventory_last_5.draw_order",   "0"                     },
8362   { "game.panel.inventory_last_6.x",            "-1"                    },
8363   { "game.panel.inventory_last_6.y",            "-1"                    },
8364   { "game.panel.inventory_last_6.tile_size",    "16"                    },
8365   { "game.panel.inventory_last_6.draw_masked",  "false"                 },
8366   { "game.panel.inventory_last_6.draw_order",   "0"                     },
8367   { "game.panel.inventory_last_7.x",            "-1"                    },
8368   { "game.panel.inventory_last_7.y",            "-1"                    },
8369   { "game.panel.inventory_last_7.tile_size",    "16"                    },
8370   { "game.panel.inventory_last_7.draw_masked",  "false"                 },
8371   { "game.panel.inventory_last_7.draw_order",   "0"                     },
8372   { "game.panel.inventory_last_8.x",            "-1"                    },
8373   { "game.panel.inventory_last_8.y",            "-1"                    },
8374   { "game.panel.inventory_last_8.tile_size",    "16"                    },
8375   { "game.panel.inventory_last_8.draw_masked",  "false"                 },
8376   { "game.panel.inventory_last_8.draw_order",   "0"                     },
8377
8378   { "game.panel.key_1.x",                       "18"                    },
8379   { "game.panel.key_1.y",                       "123"                   },
8380   { "game.panel.key_1.tile_size",               "16"                    },
8381   { "game.panel.key_1.draw_masked",             "false"                 },
8382   { "game.panel.key_1.draw_order",              "0"                     },
8383   { "game.panel.key_2.x",                       "34"                    },
8384   { "game.panel.key_2.y",                       "123"                   },
8385   { "game.panel.key_2.tile_size",               "16"                    },
8386   { "game.panel.key_2.draw_masked",             "false"                 },
8387   { "game.panel.key_2.draw_order",              "0"                     },
8388   { "game.panel.key_3.x",                       "50"                    },
8389   { "game.panel.key_3.y",                       "123"                   },
8390   { "game.panel.key_3.tile_size",               "16"                    },
8391   { "game.panel.key_3.draw_masked",             "false"                 },
8392   { "game.panel.key_3.draw_order",              "0"                     },
8393   { "game.panel.key_4.x",                       "66"                    },
8394   { "game.panel.key_4.y",                       "123"                   },
8395   { "game.panel.key_4.tile_size",               "16"                    },
8396   { "game.panel.key_4.draw_masked",             "false"                 },
8397   { "game.panel.key_4.draw_order",              "0"                     },
8398   { "game.panel.key_5.x",                       "-1"                    },
8399   { "game.panel.key_5.y",                       "-1"                    },
8400   { "game.panel.key_5.tile_size",               "16"                    },
8401   { "game.panel.key_5.draw_masked",             "false"                 },
8402   { "game.panel.key_5.draw_order",              "0"                     },
8403   { "game.panel.key_6.x",                       "-1"                    },
8404   { "game.panel.key_6.y",                       "-1"                    },
8405   { "game.panel.key_6.tile_size",               "16"                    },
8406   { "game.panel.key_6.draw_masked",             "false"                 },
8407   { "game.panel.key_6.draw_order",              "0"                     },
8408   { "game.panel.key_7.x",                       "-1"                    },
8409   { "game.panel.key_7.y",                       "-1"                    },
8410   { "game.panel.key_7.tile_size",               "16"                    },
8411   { "game.panel.key_7.draw_masked",             "false"                 },
8412   { "game.panel.key_7.draw_order",              "0"                     },
8413   { "game.panel.key_8.x",                       "-1"                    },
8414   { "game.panel.key_8.y",                       "-1"                    },
8415   { "game.panel.key_8.tile_size",               "16"                    },
8416   { "game.panel.key_8.draw_masked",             "false"                 },
8417   { "game.panel.key_8.draw_order",              "0"                     },
8418   { "game.panel.key_white.x",                   "-1"                    },
8419   { "game.panel.key_white.y",                   "-1"                    },
8420   { "game.panel.key_white.tile_size",           "16"                    },
8421   { "game.panel.key_white.draw_masked",         "false"                 },
8422   { "game.panel.key_white.draw_order",          "0"                     },
8423   { "game.panel.key_white_count.x",             "-1"                    },
8424   { "game.panel.key_white_count.y",             "-1"                    },
8425   { "game.panel.key_white_count.align",         "left"                  },
8426   { "game.panel.key_white_count.valign",        "top"                   },
8427   { "game.panel.key_white_count.digits",        "-1"                    },
8428   { "game.panel.key_white_count.font",          "font.text_2"           },
8429   { "game.panel.key_white_count.draw_masked",   "true"                  },
8430   { "game.panel.key_white_count.draw_order",    "0"                     },
8431
8432   { "game.panel.score.x",                       "50"                    },
8433   { "game.panel.score.y",                       "159"                   },
8434   { "game.panel.score.align",                   "center"                },
8435   { "game.panel.score.valign",                  "top"                   },
8436   { "game.panel.score.digits",                  "5"                     },
8437   { "game.panel.score.font",                    "font.text_2"           },
8438   { "game.panel.score.draw_masked",             "true"                  },
8439   { "game.panel.score.draw_order",              "0"                     },
8440
8441   { "game.panel.highscore.x",                   "-1"                    },
8442   { "game.panel.highscore.y",                   "-1"                    },
8443   { "game.panel.highscore.align",               "left"                  },
8444   { "game.panel.highscore.valign",              "top"                   },
8445   { "game.panel.highscore.digits",              "5"                     },
8446   { "game.panel.highscore.font",                "font.text_2"           },
8447   { "game.panel.highscore.draw_masked",         "true"                  },
8448   { "game.panel.highscore.draw_order",          "0"                     },
8449
8450   { "game.panel.time.x",                        "50"                    },
8451   { "game.panel.time.y",                        "194"                   },
8452   { "game.panel.time.align",                    "center"                },
8453   { "game.panel.time.valign",                   "top"                   },
8454   { "game.panel.time.digits",                   "-1"                    },
8455   { "game.panel.time.font",                     "font.text_2"           },
8456   { "game.panel.time.font_narrow",              "font.text_1"           },
8457   { "game.panel.time.draw_masked",              "true"                  },
8458   { "game.panel.time.draw_order",               "0"                     },
8459
8460   { "game.panel.time_hh.x",                     "-1"                    },
8461   { "game.panel.time_hh.y",                     "-1"                    },
8462   { "game.panel.time_hh.align",                 "left"                  },
8463   { "game.panel.time_hh.valign",                "top"                   },
8464   { "game.panel.time_hh.digits",                "2"                     },
8465   { "game.panel.time_hh.font",                  "font.text_2"           },
8466   { "game.panel.time_hh.draw_masked",           "true"                  },
8467   { "game.panel.time_hh.draw_order",            "0"                     },
8468   { "game.panel.time_mm.x",                     "-1"                    },
8469   { "game.panel.time_mm.y",                     "-1"                    },
8470   { "game.panel.time_mm.align",                 "left"                  },
8471   { "game.panel.time_mm.valign",                "top"                   },
8472   { "game.panel.time_mm.digits",                "2"                     },
8473   { "game.panel.time_mm.font",                  "font.text_2"           },
8474   { "game.panel.time_mm.draw_masked",           "true"                  },
8475   { "game.panel.time_mm.draw_order",            "0"                     },
8476   { "game.panel.time_ss.x",                     "-1"                    },
8477   { "game.panel.time_ss.y",                     "-1"                    },
8478   { "game.panel.time_ss.align",                 "left"                  },
8479   { "game.panel.time_ss.valign",                "top"                   },
8480   { "game.panel.time_ss.digits",                "2"                     },
8481   { "game.panel.time_ss.font",                  "font.text_2"           },
8482   { "game.panel.time_ss.draw_masked",           "true"                  },
8483   { "game.panel.time_ss.draw_order",            "0"                     },
8484
8485   { "game.panel.time_anim.x",                   "5"                     },
8486   { "game.panel.time_anim.y",                   "72"                    },
8487   { "game.panel.time_anim.direction",           "right"                 },
8488   { "game.panel.time_anim.class",               "mm_engine_only"        },
8489
8490   { "game.panel.health.x",                      "-1"                    },
8491   { "game.panel.health.y",                      "-1"                    },
8492   { "game.panel.health.align",                  "center"                },
8493   { "game.panel.health.valign",                 "top"                   },
8494   { "game.panel.health.digits",                 "-1"                    },
8495   { "game.panel.health.font",                   "font.text_2"           },
8496   { "game.panel.health.font_narrow",            "font.text_1"           },
8497   { "game.panel.health.draw_masked",            "true"                  },
8498   { "game.panel.health.draw_order",             "0"                     },
8499
8500   { "game.panel.health_anim.x",                 "5"                     },
8501   { "game.panel.health_anim.y",                 "107"                   },
8502   { "game.panel.health_anim.direction",         "right"                 },
8503   { "game.panel.health_anim.class",             "mm_engine_only"        },
8504   { "game.panel.health_anim.style",             "reverse"               },
8505
8506   { "game.panel.frame.x",                       "-1"                    },
8507   { "game.panel.frame.y",                       "-1"                    },
8508   { "game.panel.frame.align",                   "left"                  },
8509   { "game.panel.frame.valign",                  "top"                   },
8510   { "game.panel.frame.digits",                  "-1"                    },
8511   { "game.panel.frame.font",                    "font.text_2"           },
8512   { "game.panel.frame.draw_masked",             "true"                  },
8513   { "game.panel.frame.draw_order",              "0"                     },
8514
8515   { "game.panel.shield_normal.x",               "-1"                    },
8516   { "game.panel.shield_normal.y",               "-1"                    },
8517   { "game.panel.shield_normal.tile_size",       "16"                    },
8518   { "game.panel.shield_normal.draw_masked",     "false"                 },
8519   { "game.panel.shield_normal.draw_order",      "0"                     },
8520   { "game.panel.shield_normal_time.x",          "-1"                    },
8521   { "game.panel.shield_normal_time.y",          "-1"                    },
8522   { "game.panel.shield_normal_time.align",      "left"                  },
8523   { "game.panel.shield_normal_time.valign",     "top"                   },
8524   { "game.panel.shield_normal_time.digits",     "-1"                    },
8525   { "game.panel.shield_normal_time.font",       "font.text_2"           },
8526   { "game.panel.shield_normal_time.draw_masked", "true"                 },
8527   { "game.panel.shield_normal_time.draw_order", "0"                     },
8528   { "game.panel.shield_deadly.x",               "-1"                    },
8529   { "game.panel.shield_deadly.y",               "-1"                    },
8530   { "game.panel.shield_deadly.tile_size",       "16"                    },
8531   { "game.panel.shield_deadly.draw_masked",     "false"                 },
8532   { "game.panel.shield_deadly.draw_order",      "0"                     },
8533   { "game.panel.shield_deadly_time.x",          "-1"                    },
8534   { "game.panel.shield_deadly_time.y",          "-1"                    },
8535   { "game.panel.shield_deadly_time.align",      "left"                  },
8536   { "game.panel.shield_deadly_time.valign",     "top"                   },
8537   { "game.panel.shield_deadly_time.digits",     "-1"                    },
8538   { "game.panel.shield_deadly_time.font",       "font.text_2"           },
8539   { "game.panel.shield_deadly_time.draw_masked","true"                  },
8540   { "game.panel.shield_deadly_time.draw_order", "0"                     },
8541
8542   { "game.panel.exit.x",                        "-1"                    },
8543   { "game.panel.exit.y",                        "-1"                    },
8544   { "game.panel.exit.tile_size",                "16"                    },
8545   { "game.panel.exit.draw_masked",              "false"                 },
8546   { "game.panel.exit.draw_order",               "0"                     },
8547
8548   { "game.panel.emc_magic_ball.x",              "-1"                    },
8549   { "game.panel.emc_magic_ball.y",              "-1"                    },
8550   { "game.panel.emc_magic_ball.tile_size",      "16"                    },
8551   { "game.panel.emc_magic_ball.draw_masked",    "false"                 },
8552   { "game.panel.emc_magic_ball.draw_order",     "0"                     },
8553   { "game.panel.emc_magic_ball_switch.x",       "-1"                    },
8554   { "game.panel.emc_magic_ball_switch.y",       "-1"                    },
8555   { "game.panel.emc_magic_ball_switch.tile_size", "16"                  },
8556   { "game.panel.emc_magic_ball_switch.draw_masked", "true"              },
8557   { "game.panel.emc_magic_ball_switch.draw_order", "0"                  },
8558
8559   { "game.panel.light_switch.x",                "-1"                    },
8560   { "game.panel.light_switch.y",                "-1"                    },
8561   { "game.panel.light_switch.tile_size",        "16"                    },
8562   { "game.panel.light_switch.draw_masked",      "false"                 },
8563   { "game.panel.light_switch.draw_order",       "0"                     },
8564   { "game.panel.light_switch_time.x",           "-1"                    },
8565   { "game.panel.light_switch_time.y",           "-1"                    },
8566   { "game.panel.light_switch_time.align",       "left"                  },
8567   { "game.panel.light_switch_time.valign",      "top"                   },
8568   { "game.panel.light_switch_time.digits",      "-1"                    },
8569   { "game.panel.light_switch_time.font",        "font.text_2"           },
8570   { "game.panel.light_switch_time.draw_masked", "true"                  },
8571   { "game.panel.light_switch_time.draw_order",  "0"                     },
8572
8573   { "game.panel.timegate_switch.x",             "-1"                    },
8574   { "game.panel.timegate_switch.y",             "-1"                    },
8575   { "game.panel.timegate_switch.tile_size",     "16"                    },
8576   { "game.panel.timegate_switch.draw_masked",   "false"                 },
8577   { "game.panel.timegate_switch.draw_order",    "0"                     },
8578   { "game.panel.timegate_switch_time.x",        "-1"                    },
8579   { "game.panel.timegate_switch_time.y",        "-1"                    },
8580   { "game.panel.timegate_switch_time.align",    "left"                  },
8581   { "game.panel.timegate_switch_time.valign",   "top"                   },
8582   { "game.panel.timegate_switch_time.digits",   "-1"                    },
8583   { "game.panel.timegate_switch_time.font",     "font.text_2"           },
8584   { "game.panel.timegate_switch_time.draw_masked", "true"               },
8585   { "game.panel.timegate_switch_time.draw_order", "0"                   },
8586
8587   { "game.panel.switchgate_switch.x",           "-1"                    },
8588   { "game.panel.switchgate_switch.y",           "-1"                    },
8589   { "game.panel.switchgate_switch.tile_size",   "16"                    },
8590   { "game.panel.switchgate_switch.draw_masked", "false"                 },
8591   { "game.panel.switchgate_switch.draw_order",  "0"                     },
8592
8593   { "game.panel.emc_lenses.x",                  "-1"                    },
8594   { "game.panel.emc_lenses.y",                  "-1"                    },
8595   { "game.panel.emc_lenses.tile_size",          "16"                    },
8596   { "game.panel.emc_lenses.draw_masked",        "false"                 },
8597   { "game.panel.emc_lenses.draw_order",         "0"                     },
8598   { "game.panel.emc_lenses_time.x",             "-1"                    },
8599   { "game.panel.emc_lenses_time.y",             "-1"                    },
8600   { "game.panel.emc_lenses_time.align",         "left"                  },
8601   { "game.panel.emc_lenses_time.valign",        "top"                   },
8602   { "game.panel.emc_lenses_time.digits",        "-1"                    },
8603   { "game.panel.emc_lenses_time.font",          "font.text_2"           },
8604   { "game.panel.emc_lenses_time.draw_masked",   "true"                  },
8605   { "game.panel.emc_lenses_time.draw_order",    "0"                     },
8606
8607   { "game.panel.emc_magnifier.x",               "-1"                    },
8608   { "game.panel.emc_magnifier.y",               "-1"                    },
8609   { "game.panel.emc_magnifier.tile_size",       "16"                    },
8610   { "game.panel.emc_magnifier.draw_masked",     "false"                 },
8611   { "game.panel.emc_magnifier.draw_order",      "0"                     },
8612   { "game.panel.emc_magnifier_time.x",          "-1"                    },
8613   { "game.panel.emc_magnifier_time.y",          "-1"                    },
8614   { "game.panel.emc_magnifier_time.align",      "left"                  },
8615   { "game.panel.emc_magnifier_time.valign",     "top"                   },
8616   { "game.panel.emc_magnifier_time.digits",     "-1"                    },
8617   { "game.panel.emc_magnifier_time.font",       "font.text_2"           },
8618   { "game.panel.emc_magnifier_time.draw_masked","true"                  },
8619   { "game.panel.emc_magnifier_time.draw_order", "0"                     },
8620
8621   { "game.panel.balloon_switch.x",              "-1"                    },
8622   { "game.panel.balloon_switch.y",              "-1"                    },
8623   { "game.panel.balloon_switch.tile_size",      "16"                    },
8624   { "game.panel.balloon_switch.draw_masked",    "false"                 },
8625   { "game.panel.balloon_switch.draw_order",     "0"                     },
8626
8627   { "game.panel.dynabomb_number.x",             "-1"                    },
8628   { "game.panel.dynabomb_number.y",             "-1"                    },
8629   { "game.panel.dynabomb_number.align",         "left"                  },
8630   { "game.panel.dynabomb_number.valign",        "top"                   },
8631   { "game.panel.dynabomb_number.digits",        "-1"                    },
8632   { "game.panel.dynabomb_number.font",          "font.text_2"           },
8633   { "game.panel.dynabomb_number.draw_masked",   "true"                  },
8634   { "game.panel.dynabomb_number.draw_order",    "0"                     },
8635   { "game.panel.dynabomb_size.x",               "-1"                    },
8636   { "game.panel.dynabomb_size.y",               "-1"                    },
8637   { "game.panel.dynabomb_size.align",           "left"                  },
8638   { "game.panel.dynabomb_size.valign",          "top"                   },
8639   { "game.panel.dynabomb_size.digits",          "-1"                    },
8640   { "game.panel.dynabomb_size.font",            "font.text_2"           },
8641   { "game.panel.dynabomb_size.draw_masked",     "true"                  },
8642   { "game.panel.dynabomb_size.draw_order",      "0"                     },
8643   { "game.panel.dynabomb_power.x",              "-1"                    },
8644   { "game.panel.dynabomb_power.y",              "-1"                    },
8645   { "game.panel.dynabomb_power.tile_size",      "16"                    },
8646   { "game.panel.dynabomb_power.draw_masked",    "false"                 },
8647   { "game.panel.dynabomb_power.draw_order",     "0"                     },
8648
8649   { "game.panel.penguins.x",                    "-1"                    },
8650   { "game.panel.penguins.y",                    "-1"                    },
8651   { "game.panel.penguins.align",                "left"                  },
8652   { "game.panel.penguins.valign",               "top"                   },
8653   { "game.panel.penguins.digits",               "-1"                    },
8654   { "game.panel.penguins.font",                 "font.text_2"           },
8655   { "game.panel.penguins.draw_masked",          "true"                  },
8656   { "game.panel.penguins.draw_order",           "0"                     },
8657
8658   { "game.panel.sokoban_objects.x",             "-1"                    },
8659   { "game.panel.sokoban_objects.y",             "-1"                    },
8660   { "game.panel.sokoban_objects.align",         "left"                  },
8661   { "game.panel.sokoban_objects.valign",        "top"                   },
8662   { "game.panel.sokoban_objects.digits",        "-1"                    },
8663   { "game.panel.sokoban_objects.font",          "font.text_2"           },
8664   { "game.panel.sokoban_objects.draw_masked",   "true"                  },
8665   { "game.panel.sokoban_objects.draw_order",    "0"                     },
8666   { "game.panel.sokoban_fields.x",              "-1"                    },
8667   { "game.panel.sokoban_fields.y",              "-1"                    },
8668   { "game.panel.sokoban_fields.align",          "left"                  },
8669   { "game.panel.sokoban_fields.valign",         "top"                   },
8670   { "game.panel.sokoban_fields.digits",         "-1"                    },
8671   { "game.panel.sokoban_fields.font",           "font.text_2"           },
8672   { "game.panel.sokoban_fields.draw_masked",    "true"                  },
8673   { "game.panel.sokoban_fields.draw_order",     "0"                     },
8674
8675   { "game.panel.robot_wheel.x",                 "-1"                    },
8676   { "game.panel.robot_wheel.y",                 "-1"                    },
8677   { "game.panel.robot_wheel.tile_size",         "16"                    },
8678   { "game.panel.robot_wheel.draw_masked",       "false"                 },
8679   { "game.panel.robot_wheel.draw_order",        "0"                     },
8680
8681   { "game.panel.conveyor_belt_1.x",             "-1"                    },
8682   { "game.panel.conveyor_belt_1.y",             "-1"                    },
8683   { "game.panel.conveyor_belt_1.tile_size",     "16"                    },
8684   { "game.panel.conveyor_belt_1.draw_masked",   "false"                 },
8685   { "game.panel.conveyor_belt_1.draw_order",    "0"                     },
8686   { "game.panel.conveyor_belt_1_switch.x",      "-1"                    },
8687   { "game.panel.conveyor_belt_1_switch.y",      "-1"                    },
8688   { "game.panel.conveyor_belt_1_switch.tile_size", "16"                 },
8689   { "game.panel.conveyor_belt_1_switch.draw_masked", "false"            },
8690   { "game.panel.conveyor_belt_1_switch.draw_order", "0"                 },
8691   { "game.panel.conveyor_belt_2.x",             "-1"                    },
8692   { "game.panel.conveyor_belt_2.y",             "-1"                    },
8693   { "game.panel.conveyor_belt_2.tile_size",     "16"                    },
8694   { "game.panel.conveyor_belt_2.draw_masked",   "false"                 },
8695   { "game.panel.conveyor_belt_2.draw_order",    "0"                     },
8696   { "game.panel.conveyor_belt_2_switch.x",      "-1"                    },
8697   { "game.panel.conveyor_belt_2_switch.y",      "-1"                    },
8698   { "game.panel.conveyor_belt_2_switch.tile_size", "16"                 },
8699   { "game.panel.conveyor_belt_2_switch.draw_masked", "false"            },
8700   { "game.panel.conveyor_belt_2_switch.draw_order", "0"                 },
8701   { "game.panel.conveyor_belt_3.x",             "-1"                    },
8702   { "game.panel.conveyor_belt_3.y",             "-1"                    },
8703   { "game.panel.conveyor_belt_3.tile_size",     "16"                    },
8704   { "game.panel.conveyor_belt_3.draw_masked",   "false"                 },
8705   { "game.panel.conveyor_belt_3.draw_order",    "0"                     },
8706   { "game.panel.conveyor_belt_3_switch.x",      "-1"                    },
8707   { "game.panel.conveyor_belt_3_switch.y",      "-1"                    },
8708   { "game.panel.conveyor_belt_3_switch.tile_size", "16"                 },
8709   { "game.panel.conveyor_belt_3_switch.draw_masked", "false"            },
8710   { "game.panel.conveyor_belt_3_switch.draw_order", "0"                 },
8711   { "game.panel.conveyor_belt_4.x",             "-1"                    },
8712   { "game.panel.conveyor_belt_4.y",             "-1"                    },
8713   { "game.panel.conveyor_belt_4.tile_size",     "16"                    },
8714   { "game.panel.conveyor_belt_4.draw_masked",   "false"                 },
8715   { "game.panel.conveyor_belt_4.draw_order",    "0"                     },
8716   { "game.panel.conveyor_belt_4_switch.x",      "-1"                    },
8717   { "game.panel.conveyor_belt_4_switch.y",      "-1"                    },
8718   { "game.panel.conveyor_belt_4_switch.tile_size", "16"                 },
8719   { "game.panel.conveyor_belt_4_switch.draw_masked", "false"            },
8720   { "game.panel.conveyor_belt_4_switch.draw_order", "0"                 },
8721
8722   { "game.panel.magic_wall.x",                  "-1"                    },
8723   { "game.panel.magic_wall.y",                  "-1"                    },
8724   { "game.panel.magic_wall.tile_size",          "16"                    },
8725   { "game.panel.magic_wall.draw_masked",        "false"                 },
8726   { "game.panel.magic_wall.draw_order",         "0"                     },
8727   { "game.panel.magic_wall_time.x",             "-1"                    },
8728   { "game.panel.magic_wall_time.y",             "-1"                    },
8729   { "game.panel.magic_wall_time.align",         "left"                  },
8730   { "game.panel.magic_wall_time.valign",        "top"                   },
8731   { "game.panel.magic_wall_time.digits",        "-1"                    },
8732   { "game.panel.magic_wall_time.font",          "font.text_2"           },
8733   { "game.panel.magic_wall_time.draw_masked",   "true"                  },
8734   { "game.panel.magic_wall_time.draw_order",    "0"                     },
8735
8736   { "game.panel.gravity_state.x",               "-1"                    },
8737   { "game.panel.gravity_state.y",               "-1"                    },
8738   { "game.panel.gravity_state.align",           "left"                  },
8739   { "game.panel.gravity_state.valign",          "top"                   },
8740   { "game.panel.gravity_state.chars",           "-1"                    },
8741   { "game.panel.gravity_state.font",            "font.text_1"           },
8742   { "game.panel.gravity_state.font_active",     "font.text_2"           },
8743   { "game.panel.gravity_state.draw_masked",     "true"                  },
8744   { "game.panel.gravity_state.draw_order",      "0"                     },
8745
8746   { "game.panel.graphic_1.x",                   "-1"                    },
8747   { "game.panel.graphic_1.y",                   "-1"                    },
8748   { "game.panel.graphic_1.draw_masked",         "true"                  },
8749   { "game.panel.graphic_1.draw_order",          "0"                     },
8750   { "game.panel.graphic_2.x",                   "-1"                    },
8751   { "game.panel.graphic_2.y",                   "-1"                    },
8752   { "game.panel.graphic_2.draw_masked",         "true"                  },
8753   { "game.panel.graphic_2.draw_order",          "0"                     },
8754   { "game.panel.graphic_3.x",                   "-1"                    },
8755   { "game.panel.graphic_3.y",                   "-1"                    },
8756   { "game.panel.graphic_3.draw_masked",         "true"                  },
8757   { "game.panel.graphic_3.draw_order",          "0"                     },
8758   { "game.panel.graphic_4.x",                   "-1"                    },
8759   { "game.panel.graphic_4.y",                   "-1"                    },
8760   { "game.panel.graphic_4.draw_masked",         "true"                  },
8761   { "game.panel.graphic_4.draw_order",          "0"                     },
8762   { "game.panel.graphic_5.x",                   "-1"                    },
8763   { "game.panel.graphic_5.y",                   "-1"                    },
8764   { "game.panel.graphic_5.draw_masked",         "true"                  },
8765   { "game.panel.graphic_5.draw_order",          "0"                     },
8766   { "game.panel.graphic_6.x",                   "-1"                    },
8767   { "game.panel.graphic_6.y",                   "-1"                    },
8768   { "game.panel.graphic_6.draw_masked",         "true"                  },
8769   { "game.panel.graphic_6.draw_order",          "0"                     },
8770   { "game.panel.graphic_7.x",                   "-1"                    },
8771   { "game.panel.graphic_7.y",                   "-1"                    },
8772   { "game.panel.graphic_7.draw_masked",         "true"                  },
8773   { "game.panel.graphic_7.draw_order",          "0"                     },
8774   { "game.panel.graphic_8.x",                   "-1"                    },
8775   { "game.panel.graphic_8.y",                   "-1"                    },
8776   { "game.panel.graphic_8.draw_masked",         "true"                  },
8777   { "game.panel.graphic_8.draw_order",          "0"                     },
8778
8779   { "game.panel.element_1.x",                   "-1"                    },
8780   { "game.panel.element_1.y",                   "-1"                    },
8781   { "game.panel.element_1.tile_size",           "16"                    },
8782   { "game.panel.element_1.element",             "empty_space"           },
8783   { "game.panel.element_1.draw_masked",         "false"                 },
8784   { "game.panel.element_1.draw_order",          "0"                     },
8785   { "game.panel.element_1_count.x",             "-1"                    },
8786   { "game.panel.element_1_count.y",             "-1"                    },
8787   { "game.panel.element_1_count.align",         "left"                  },
8788   { "game.panel.element_1_count.valign",        "top"                   },
8789   { "game.panel.element_1_count.digits",        "-1"                    },
8790   { "game.panel.element_1_count.font",          "font.text_2"           },
8791   { "game.panel.element_1_count.element",       "empty_space"           },
8792   { "game.panel.element_1_count.draw_masked",   "true"                  },
8793   { "game.panel.element_1_count.draw_order",    "0"                     },
8794   { "game.panel.element_2.x",                   "-1"                    },
8795   { "game.panel.element_2.y",                   "-1"                    },
8796   { "game.panel.element_2.tile_size",           "16"                    },
8797   { "game.panel.element_2.element",             "empty_space"           },
8798   { "game.panel.element_2.draw_masked",         "false"                 },
8799   { "game.panel.element_2.draw_order",          "0"                     },
8800   { "game.panel.element_2_count.x",             "-1"                    },
8801   { "game.panel.element_2_count.y",             "-1"                    },
8802   { "game.panel.element_2_count.align",         "left"                  },
8803   { "game.panel.element_2_count.valign",        "top"                   },
8804   { "game.panel.element_2_count.digits",        "-1"                    },
8805   { "game.panel.element_2_count.font",          "font.text_2"           },
8806   { "game.panel.element_2_count.element",       "empty_space"           },
8807   { "game.panel.element_2_count.draw_masked",   "true"                  },
8808   { "game.panel.element_2_count.draw_order",    "0"                     },
8809   { "game.panel.element_3.x",                   "-1"                    },
8810   { "game.panel.element_3.y",                   "-1"                    },
8811   { "game.panel.element_3.tile_size",           "16"                    },
8812   { "game.panel.element_3.element",             "empty_space"           },
8813   { "game.panel.element_3.draw_masked",         "false"                 },
8814   { "game.panel.element_3.draw_order",          "0"                     },
8815   { "game.panel.element_3_count.x",             "-1"                    },
8816   { "game.panel.element_3_count.y",             "-1"                    },
8817   { "game.panel.element_3_count.align",         "left"                  },
8818   { "game.panel.element_3_count.valign",        "top"                   },
8819   { "game.panel.element_3_count.digits",        "-1"                    },
8820   { "game.panel.element_3_count.font",          "font.text_2"           },
8821   { "game.panel.element_3_count.element",       "empty_space"           },
8822   { "game.panel.element_3_count.draw_masked",   "true"                  },
8823   { "game.panel.element_3_count.draw_order",    "0"                     },
8824   { "game.panel.element_4.x",                   "-1"                    },
8825   { "game.panel.element_4.y",                   "-1"                    },
8826   { "game.panel.element_4.tile_size",           "16"                    },
8827   { "game.panel.element_4.element",             "empty_space"           },
8828   { "game.panel.element_4.draw_masked",         "false"                 },
8829   { "game.panel.element_4.draw_order",          "0"                     },
8830   { "game.panel.element_4_count.x",             "-1"                    },
8831   { "game.panel.element_4_count.y",             "-1"                    },
8832   { "game.panel.element_4_count.align",         "left"                  },
8833   { "game.panel.element_4_count.valign",        "top"                   },
8834   { "game.panel.element_4_count.digits",        "-1"                    },
8835   { "game.panel.element_4_count.font",          "font.text_2"           },
8836   { "game.panel.element_4_count.element",       "empty_space"           },
8837   { "game.panel.element_4_count.draw_masked",   "true"                  },
8838   { "game.panel.element_4_count.draw_order",    "0"                     },
8839   { "game.panel.element_5.x",                   "-1"                    },
8840   { "game.panel.element_5.y",                   "-1"                    },
8841   { "game.panel.element_5.tile_size",           "16"                    },
8842   { "game.panel.element_5.element",             "empty_space"           },
8843   { "game.panel.element_5.draw_masked",         "false"                 },
8844   { "game.panel.element_5.draw_order",          "0"                     },
8845   { "game.panel.element_5_count.x",             "-1"                    },
8846   { "game.panel.element_5_count.y",             "-1"                    },
8847   { "game.panel.element_5_count.align",         "left"                  },
8848   { "game.panel.element_5_count.valign",        "top"                   },
8849   { "game.panel.element_5_count.digits",        "-1"                    },
8850   { "game.panel.element_5_count.font",          "font.text_2"           },
8851   { "game.panel.element_5_count.element",       "empty_space"           },
8852   { "game.panel.element_5_count.draw_masked",   "true"                  },
8853   { "game.panel.element_5_count.draw_order",    "0"                     },
8854   { "game.panel.element_6.x",                   "-1"                    },
8855   { "game.panel.element_6.y",                   "-1"                    },
8856   { "game.panel.element_6.tile_size",           "16"                    },
8857   { "game.panel.element_6.element",             "empty_space"           },
8858   { "game.panel.element_6.draw_masked",         "false"                 },
8859   { "game.panel.element_6.draw_order",          "0"                     },
8860   { "game.panel.element_6_count.x",             "-1"                    },
8861   { "game.panel.element_6_count.y",             "-1"                    },
8862   { "game.panel.element_6_count.align",         "left"                  },
8863   { "game.panel.element_6_count.valign",        "top"                   },
8864   { "game.panel.element_6_count.digits",        "-1"                    },
8865   { "game.panel.element_6_count.font",          "font.text_2"           },
8866   { "game.panel.element_6_count.element",       "empty_space"           },
8867   { "game.panel.element_6_count.draw_masked",   "true"                  },
8868   { "game.panel.element_6_count.draw_order",    "0"                     },
8869   { "game.panel.element_7.x",                   "-1"                    },
8870   { "game.panel.element_7.y",                   "-1"                    },
8871   { "game.panel.element_7.tile_size",           "16"                    },
8872   { "game.panel.element_7.element",             "empty_space"           },
8873   { "game.panel.element_7.draw_masked",         "false"                 },
8874   { "game.panel.element_7.draw_order",          "0"                     },
8875   { "game.panel.element_7_count.x",             "-1"                    },
8876   { "game.panel.element_7_count.y",             "-1"                    },
8877   { "game.panel.element_7_count.align",         "left"                  },
8878   { "game.panel.element_7_count.valign",        "top"                   },
8879   { "game.panel.element_7_count.digits",        "-1"                    },
8880   { "game.panel.element_7_count.font",          "font.text_2"           },
8881   { "game.panel.element_7_count.element",       "empty_space"           },
8882   { "game.panel.element_7_count.draw_masked",   "true"                  },
8883   { "game.panel.element_7_count.draw_order",    "0"                     },
8884   { "game.panel.element_8.x",                   "-1"                    },
8885   { "game.panel.element_8.y",                   "-1"                    },
8886   { "game.panel.element_8.tile_size",           "16"                    },
8887   { "game.panel.element_8.element",             "empty_space"           },
8888   { "game.panel.element_8.draw_masked",         "false"                 },
8889   { "game.panel.element_8.draw_order",          "0"                     },
8890   { "game.panel.element_8_count.x",             "-1"                    },
8891   { "game.panel.element_8_count.y",             "-1"                    },
8892   { "game.panel.element_8_count.align",         "left"                  },
8893   { "game.panel.element_8_count.valign",        "top"                   },
8894   { "game.panel.element_8_count.digits",        "-1"                    },
8895   { "game.panel.element_8_count.font",          "font.text_2"           },
8896   { "game.panel.element_8_count.element",       "empty_space"           },
8897   { "game.panel.element_8_count.draw_masked",   "true"                  },
8898   { "game.panel.element_8_count.draw_order",    "0"                     },
8899
8900   { "game.panel.ce_score_1.x",                  "-1"                    },
8901   { "game.panel.ce_score_1.y",                  "-1"                    },
8902   { "game.panel.ce_score_1.align",              "left"                  },
8903   { "game.panel.ce_score_1.valign",             "top"                   },
8904   { "game.panel.ce_score_1.digits",             "-1"                    },
8905   { "game.panel.ce_score_1.font",               "font.text_2"           },
8906   { "game.panel.ce_score_1.element",            "empty_space"           },
8907   { "game.panel.ce_score_1.draw_masked",        "true"                  },
8908   { "game.panel.ce_score_1.draw_order",         "0"                     },
8909   { "game.panel.ce_score_1_element.x",          "-1"                    },
8910   { "game.panel.ce_score_1_element.y",          "-1"                    },
8911   { "game.panel.ce_score_1_element.tile_size",  "16"                    },
8912   { "game.panel.ce_score_1_element.element",    "empty_space"           },
8913   { "game.panel.ce_score_1_element.draw_masked","false"                 },
8914   { "game.panel.ce_score_1_element.draw_order", "0"                     },
8915   { "game.panel.ce_score_2.x",                  "-1"                    },
8916   { "game.panel.ce_score_2.y",                  "-1"                    },
8917   { "game.panel.ce_score_2.align",              "left"                  },
8918   { "game.panel.ce_score_2.valign",             "top"                   },
8919   { "game.panel.ce_score_2.digits",             "-1"                    },
8920   { "game.panel.ce_score_2.font",               "font.text_2"           },
8921   { "game.panel.ce_score_2.element",            "empty_space"           },
8922   { "game.panel.ce_score_2.draw_masked",        "true"                  },
8923   { "game.panel.ce_score_2.draw_order",         "0"                     },
8924   { "game.panel.ce_score_2_element.x",          "-1"                    },
8925   { "game.panel.ce_score_2_element.y",          "-1"                    },
8926   { "game.panel.ce_score_2_element.tile_size",  "16"                    },
8927   { "game.panel.ce_score_2_element.element",    "empty_space"           },
8928   { "game.panel.ce_score_2_element.draw_masked","false"                 },
8929   { "game.panel.ce_score_2_element.draw_order", "0"                     },
8930   { "game.panel.ce_score_3.x",                  "-1"                    },
8931   { "game.panel.ce_score_3.y",                  "-1"                    },
8932   { "game.panel.ce_score_3.align",              "left"                  },
8933   { "game.panel.ce_score_3.valign",             "top"                   },
8934   { "game.panel.ce_score_3.digits",             "-1"                    },
8935   { "game.panel.ce_score_3.font",               "font.text_2"           },
8936   { "game.panel.ce_score_3.element",            "empty_space"           },
8937   { "game.panel.ce_score_3.draw_masked",        "true"                  },
8938   { "game.panel.ce_score_3.draw_order",         "0"                     },
8939   { "game.panel.ce_score_3_element.x",          "-1"                    },
8940   { "game.panel.ce_score_3_element.y",          "-1"                    },
8941   { "game.panel.ce_score_3_element.tile_size",  "16"                    },
8942   { "game.panel.ce_score_3_element.element",    "empty_space"           },
8943   { "game.panel.ce_score_3_element.draw_masked","false"                 },
8944   { "game.panel.ce_score_3_element.draw_order", "0"                     },
8945   { "game.panel.ce_score_4.x",                  "-1"                    },
8946   { "game.panel.ce_score_4.y",                  "-1"                    },
8947   { "game.panel.ce_score_4.align",              "left"                  },
8948   { "game.panel.ce_score_4.valign",             "top"                   },
8949   { "game.panel.ce_score_4.digits",             "-1"                    },
8950   { "game.panel.ce_score_4.font",               "font.text_2"           },
8951   { "game.panel.ce_score_4.element",            "empty_space"           },
8952   { "game.panel.ce_score_4.draw_masked",        "true"                  },
8953   { "game.panel.ce_score_4.draw_order",         "0"                     },
8954   { "game.panel.ce_score_4_element.x",          "-1"                    },
8955   { "game.panel.ce_score_4_element.y",          "-1"                    },
8956   { "game.panel.ce_score_4_element.tile_size",  "16"                    },
8957   { "game.panel.ce_score_4_element.element",    "empty_space"           },
8958   { "game.panel.ce_score_4_element.draw_masked","false"                 },
8959   { "game.panel.ce_score_4_element.draw_order", "0"                     },
8960   { "game.panel.ce_score_5.x",                  "-1"                    },
8961   { "game.panel.ce_score_5.y",                  "-1"                    },
8962   { "game.panel.ce_score_5.align",              "left"                  },
8963   { "game.panel.ce_score_5.valign",             "top"                   },
8964   { "game.panel.ce_score_5.digits",             "-1"                    },
8965   { "game.panel.ce_score_5.font",               "font.text_2"           },
8966   { "game.panel.ce_score_5.element",            "empty_space"           },
8967   { "game.panel.ce_score_5.draw_masked",        "true"                  },
8968   { "game.panel.ce_score_5.draw_order",         "0"                     },
8969   { "game.panel.ce_score_5_element.x",          "-1"                    },
8970   { "game.panel.ce_score_5_element.y",          "-1"                    },
8971   { "game.panel.ce_score_5_element.tile_size",  "16"                    },
8972   { "game.panel.ce_score_5_element.element",    "empty_space"           },
8973   { "game.panel.ce_score_5_element.draw_masked","false"                 },
8974   { "game.panel.ce_score_5_element.draw_order", "0"                     },
8975   { "game.panel.ce_score_6.x",                  "-1"                    },
8976   { "game.panel.ce_score_6.y",                  "-1"                    },
8977   { "game.panel.ce_score_6.align",              "left"                  },
8978   { "game.panel.ce_score_6.valign",             "top"                   },
8979   { "game.panel.ce_score_6.digits",             "-1"                    },
8980   { "game.panel.ce_score_6.font",               "font.text_2"           },
8981   { "game.panel.ce_score_6.element",            "empty_space"           },
8982   { "game.panel.ce_score_6.draw_masked",        "true"                  },
8983   { "game.panel.ce_score_6.draw_order",         "0"                     },
8984   { "game.panel.ce_score_6_element.x",          "-1"                    },
8985   { "game.panel.ce_score_6_element.y",          "-1"                    },
8986   { "game.panel.ce_score_6_element.tile_size",  "16"                    },
8987   { "game.panel.ce_score_6_element.element",    "empty_space"           },
8988   { "game.panel.ce_score_6_element.draw_masked","false"                 },
8989   { "game.panel.ce_score_6_element.draw_order", "0"                     },
8990   { "game.panel.ce_score_7.x",                  "-1"                    },
8991   { "game.panel.ce_score_7.y",                  "-1"                    },
8992   { "game.panel.ce_score_7.align",              "left"                  },
8993   { "game.panel.ce_score_7.valign",             "top"                   },
8994   { "game.panel.ce_score_7.digits",             "-1"                    },
8995   { "game.panel.ce_score_7.font",               "font.text_2"           },
8996   { "game.panel.ce_score_7.element",            "empty_space"           },
8997   { "game.panel.ce_score_7.draw_masked",        "true"                  },
8998   { "game.panel.ce_score_7.draw_order",         "0"                     },
8999   { "game.panel.ce_score_7_element.x",          "-1"                    },
9000   { "game.panel.ce_score_7_element.y",          "-1"                    },
9001   { "game.panel.ce_score_7_element.tile_size",  "16"                    },
9002   { "game.panel.ce_score_7_element.element",    "empty_space"           },
9003   { "game.panel.ce_score_7_element.draw_masked","false"                 },
9004   { "game.panel.ce_score_7_element.draw_order", "0"                     },
9005   { "game.panel.ce_score_8.x",                  "-1"                    },
9006   { "game.panel.ce_score_8.y",                  "-1"                    },
9007   { "game.panel.ce_score_8.align",              "left"                  },
9008   { "game.panel.ce_score_8.valign",             "top"                   },
9009   { "game.panel.ce_score_8.digits",             "-1"                    },
9010   { "game.panel.ce_score_8.font",               "font.text_2"           },
9011   { "game.panel.ce_score_8.element",            "empty_space"           },
9012   { "game.panel.ce_score_8.draw_masked",        "true"                  },
9013   { "game.panel.ce_score_8.draw_order",         "0"                     },
9014   { "game.panel.ce_score_8_element.x",          "-1"                    },
9015   { "game.panel.ce_score_8_element.y",          "-1"                    },
9016   { "game.panel.ce_score_8_element.tile_size",  "16"                    },
9017   { "game.panel.ce_score_8_element.element",    "empty_space"           },
9018   { "game.panel.ce_score_8_element.draw_masked","false"                 },
9019   { "game.panel.ce_score_8_element.draw_order", "0"                     },
9020
9021   { "game.panel.player_name.x",                 "-1"                    },
9022   { "game.panel.player_name.y",                 "-1"                    },
9023   { "game.panel.player_name.align",             "left"                  },
9024   { "game.panel.player_name.valign",            "top"                   },
9025   { "game.panel.player_name.chars",             "-1"                    },
9026   { "game.panel.player_name.font",              "font.text_2"           },
9027   { "game.panel.player_name.draw_masked",       "true"                  },
9028   { "game.panel.player_name.draw_order",        "0"                     },
9029
9030   { "game.panel.level_name.x",                  "-1"                    },
9031   { "game.panel.level_name.y",                  "-1"                    },
9032   { "game.panel.level_name.align",              "left"                  },
9033   { "game.panel.level_name.valign",             "top"                   },
9034   { "game.panel.level_name.chars",              "-1"                    },
9035   { "game.panel.level_name.font",               "font.text_2"           },
9036   { "game.panel.level_name.draw_masked",        "true"                  },
9037   { "game.panel.level_name.draw_order",         "0"                     },
9038   { "game.panel.level_author.x",                "-1"                    },
9039   { "game.panel.level_author.y",                "-1"                    },
9040   { "game.panel.level_author.align",            "left"                  },
9041   { "game.panel.level_author.valign",           "top"                   },
9042   { "game.panel.level_author.chars",            "-1"                    },
9043   { "game.panel.level_author.font",             "font.text_2"           },
9044   { "game.panel.level_author.draw_masked",      "true"                  },
9045   { "game.panel.level_author.draw_order",       "0"                     },
9046
9047   { "game.button.stop.x",                       "5"                     },
9048   { "game.button.stop.y",                       "215"                   },
9049   { "game.button.pause.x",                      "35"                    },
9050   { "game.button.pause.y",                      "215"                   },
9051   { "game.button.play.x",                       "65"                    },
9052   { "game.button.play.y",                       "215"                   },
9053   { "game.button.undo.x",                       "-1"                    },
9054   { "game.button.undo.y",                       "-1"                    },
9055   { "game.button.redo.x",                       "-1"                    },
9056   { "game.button.redo.y",                       "-1"                    },
9057   { "game.button.save.x",                       "-1"                    },
9058   { "game.button.save.y",                       "-1"                    },
9059   { "game.button.pause2.x",                     "-1"                    },
9060   { "game.button.pause2.y",                     "-1"                    },
9061   { "game.button.load.x",                       "-1"                    },
9062   { "game.button.load.y",                       "-1"                    },
9063   { "game.button.sound_music.x",                "5"                     },
9064   { "game.button.sound_music.y",                "245"                   },
9065   { "game.button.sound_loops.x",                "35"                    },
9066   { "game.button.sound_loops.y",                "245"                   },
9067   { "game.button.sound_simple.x",               "65"                    },
9068   { "game.button.sound_simple.y",               "245"                   },
9069
9070   { "game.button.panel_stop.x",                 "-1"                    },
9071   { "game.button.panel_stop.y",                 "-1"                    },
9072   { "game.button.panel_pause.x",                "-1"                    },
9073   { "game.button.panel_pause.y",                "-1"                    },
9074   { "game.button.panel_play.x",                 "-1"                    },
9075   { "game.button.panel_play.y",                 "-1"                    },
9076   { "game.button.panel_sound_music.x",          "-1"                    },
9077   { "game.button.panel_sound_music.y",          "-1"                    },
9078   { "game.button.panel_sound_loops.x",          "-1"                    },
9079   { "game.button.panel_sound_loops.y",          "-1"                    },
9080   { "game.button.panel_sound_simple.x",         "-1"                    },
9081   { "game.button.panel_sound_simple.y",         "-1"                    },
9082
9083   { "tape.button.eject.x",                      "5"                     },
9084   { "tape.button.eject.y",                      "77"                    },
9085   { "tape.button.stop.x",                       "23"                    },
9086   { "tape.button.stop.y",                       "77"                    },
9087   { "tape.button.pause.x",                      "41"                    },
9088   { "tape.button.pause.y",                      "77"                    },
9089   { "tape.button.record.x",                     "59"                    },
9090   { "tape.button.record.y",                     "77"                    },
9091   { "tape.button.play.x",                       "77"                    },
9092   { "tape.button.play.y",                       "77"                    },
9093
9094   { "tape.button.insert_solution.x",            "-1"                    },
9095   { "tape.button.insert_solution.y",            "-1"                    },
9096   { "tape.button.play_solution.x",              "-1"                    },
9097   { "tape.button.play_solution.y",              "-1"                    },
9098
9099   { "tape.symbol.eject.x",                      "-1"                    },
9100   { "tape.symbol.eject.y",                      "-1"                    },
9101   { "tape.symbol.stop.x",                       "-1"                    },
9102   { "tape.symbol.stop.y",                       "-1"                    },
9103   { "tape.symbol.pause.x",                      "40"                    },
9104   { "tape.symbol.pause.y",                      "41"                    },
9105   { "tape.symbol.record.x",                     "25"                    },
9106   { "tape.symbol.record.y",                     "41"                    },
9107   { "tape.symbol.play.x",                       "57"                    },
9108   { "tape.symbol.play.y",                       "41"                    },
9109   { "tape.symbol.fast_forward.x",               "39"                    },
9110   { "tape.symbol.fast_forward.y",               "42"                    },
9111   { "tape.symbol.warp_forward.x",               "39"                    },
9112   { "tape.symbol.warp_forward.y",               "42"                    },
9113   { "tape.symbol.warp_forward_blind.x",         "39"                    },
9114   { "tape.symbol.warp_forward_blind.y",         "42"                    },
9115   { "tape.symbol.pause_before_end.x",           "-1"                    },
9116   { "tape.symbol.pause_before_end.y",           "-1"                    },
9117   { "tape.symbol.single_step.x",                "-1"                    },
9118   { "tape.symbol.single_step.y",                "-1"                    },
9119
9120   { "tape.label.eject.x",                       "-1"                    },
9121   { "tape.label.eject.y",                       "-1"                    },
9122   { "tape.label.stop.x",                        "-1"                    },
9123   { "tape.label.stop.y",                        "-1"                    },
9124   { "tape.label.pause.x",                       "5"                     },
9125   { "tape.label.pause.y",                       "61"                    },
9126   { "tape.label.record.x",                      "5"                     },
9127   { "tape.label.record.y",                      "41"                    },
9128   { "tape.label.play.x",                        "70"                    },
9129   { "tape.label.play.y",                        "41"                    },
9130   { "tape.label.fast_forward.x",                "5"                     },
9131   { "tape.label.fast_forward.y",                "42"                    },
9132   { "tape.label.warp_forward.x",                "5"                     },
9133   { "tape.label.warp_forward.y",                "42"                    },
9134   { "tape.label.warp_forward_blind.x",          "5"                     },
9135   { "tape.label.warp_forward_blind.y",          "42"                    },
9136   { "tape.label.pause_before_end.x",            "5"                     },
9137   { "tape.label.pause_before_end.y",            "42"                    },
9138   { "tape.label.single_step.x",                 "57"                    },
9139   { "tape.label.single_step.y",                 "42"                    },
9140
9141   { "tape.label.date.x",                        "5"                     },
9142   { "tape.label.date.y",                        "5"                     },
9143   { "tape.label.time.x",                        "46"                    },
9144   { "tape.label.time.y",                        "55"                    },
9145
9146   { "tape.text.date.x",                         "7"                     },
9147   { "tape.text.date.y",                         "19"                    },
9148   { "tape.text.date.align",                     "left"                  },
9149   { "tape.text.date.valign",                    "top"                   },
9150   { "tape.text.date.digits",                    "-1"                    },
9151   { "tape.text.date.xoffset",                   "27"                    },
9152   { "tape.text.date.2nd_xoffset",               "64"                    },
9153   { "tape.text.date.font",                      "font.tape_recorder"    },
9154   { "tape.text.date.draw_masked",               "false"                 },
9155
9156   { "tape.text.date_yyyy.x",                    "-1"                    },
9157   { "tape.text.date_yyyy.y",                    "-1"                    },
9158   { "tape.text.date_yyyy.align",                "left"                  },
9159   { "tape.text.date_yyyy.valign",               "top"                   },
9160   { "tape.text.date_yyyy.digits",               "4"                     },
9161   { "tape.text.date_yyyy.font",                 "font.tape_recorder"    },
9162   { "tape.text.date_yyyy.draw_masked",          "false"                 },
9163   { "tape.text.date_yy.x",                      "-1"                    },
9164   { "tape.text.date_yy.y",                      "-1"                    },
9165   { "tape.text.date_yy.align",                  "left"                  },
9166   { "tape.text.date_yy.valign",                 "top"                   },
9167   { "tape.text.date_yy.digits",                 "2"                     },
9168   { "tape.text.date_yy.font",                   "font.tape_recorder"    },
9169   { "tape.text.date_yy.draw_masked",            "false"                 },
9170   { "tape.text.date_mon.x",                     "-1"                    },
9171   { "tape.text.date_mon.y",                     "-1"                    },
9172   { "tape.text.date_mon.align",                 "left"                  },
9173   { "tape.text.date_mon.valign",                "top"                   },
9174   { "tape.text.date_mon.chars",                 "3"                     },
9175   { "tape.text.date_mon.font",                  "font.tape_recorder"    },
9176   { "tape.text.date_mon.draw_masked",           "false"                 },
9177   { "tape.text.date_mm.x",                      "-1"                    },
9178   { "tape.text.date_mm.y",                      "-1"                    },
9179   { "tape.text.date_mm.align",                  "left"                  },
9180   { "tape.text.date_mm.valign",                 "top"                   },
9181   { "tape.text.date_mm.digits",                 "2"                     },
9182   { "tape.text.date_mm.font",                   "font.tape_recorder"    },
9183   { "tape.text.date_mm.draw_masked",            "false"                 },
9184   { "tape.text.date_dd.x",                      "-1"                    },
9185   { "tape.text.date_dd.y",                      "-1"                    },
9186   { "tape.text.date_dd.align",                  "left"                  },
9187   { "tape.text.date_dd.valign",                 "top"                   },
9188   { "tape.text.date_dd.digits",                 "2"                     },
9189   { "tape.text.date_dd.font",                   "font.tape_recorder"    },
9190   { "tape.text.date_dd.draw_masked",            "false"                 },
9191
9192   { "tape.text.time.x",                         "44"                    },
9193   { "tape.text.time.y",                         "55"                    },
9194   { "tape.text.time.align",                     "left"                  },
9195   { "tape.text.time.valign",                    "top"                   },
9196   { "tape.text.time.digits",                    "-1"                    },
9197   { "tape.text.time.xoffset",                   "27"                    },
9198   { "tape.text.time.font",                      "font.tape_recorder"    },
9199   { "tape.text.time.draw_masked",               "false"                 },
9200
9201   { "tape.text.time_hh.x",                      "-1"                    },
9202   { "tape.text.time_hh.y",                      "-1"                    },
9203   { "tape.text.time_hh.align",                  "left"                  },
9204   { "tape.text.time_hh.valign",                 "top"                   },
9205   { "tape.text.time_hh.digits",                 "2"                     },
9206   { "tape.text.time_hh.font",                   "font.tape_recorder"    },
9207   { "tape.text.time_hh.draw_masked",            "false"                 },
9208   { "tape.text.time_mm.x",                      "-1"                    },
9209   { "tape.text.time_mm.y",                      "-1"                    },
9210   { "tape.text.time_mm.align",                  "left"                  },
9211   { "tape.text.time_mm.valign",                 "top"                   },
9212   { "tape.text.time_mm.digits",                 "2"                     },
9213   { "tape.text.time_mm.font",                   "font.tape_recorder"    },
9214   { "tape.text.time_mm.draw_masked",            "false"                 },
9215   { "tape.text.time_ss.x",                      "-1"                    },
9216   { "tape.text.time_ss.y",                      "-1"                    },
9217   { "tape.text.time_ss.align",                  "left"                  },
9218   { "tape.text.time_ss.valign",                 "top"                   },
9219   { "tape.text.time_ss.digits",                 "2"                     },
9220   { "tape.text.time_ss.font",                   "font.tape_recorder"    },
9221   { "tape.text.time_ss.draw_masked",            "false"                 },
9222
9223   { "tape.text.frame.x",                        "-1"                    },
9224   { "tape.text.frame.y",                        "-1"                    },
9225   { "tape.text.frame.align",                    "left"                  },
9226   { "tape.text.frame.valign",                   "top"                   },
9227   { "tape.text.frame.digits",                   "-1"                    },
9228   { "tape.text.frame.font",                     "font.tape_recorder"    },
9229   { "tape.text.frame.draw_masked",              "false"                 },
9230
9231   { "tape.show_game_buttons",                   "false"                 },
9232
9233   { "editor.button.prev_level.x",               "5"                     },
9234   { "editor.button.prev_level.y",               "5"                     },
9235   { "editor.button.next_level.x",               "79"                    },
9236   { "editor.button.next_level.y",               "5"                     },
9237
9238   { "editor.button.properties.x",               "5"                     },
9239   { "editor.button.properties.y",               "230"                   },
9240
9241   { "editor.button.element_left.x",             "-1"                    },
9242   { "editor.button.element_left.y",             "-1"                    },
9243   { "editor.button.element_left.tile_size",     "-1"                    },
9244   { "editor.button.element_middle.x",           "-1"                    },
9245   { "editor.button.element_middle.y",           "-1"                    },
9246   { "editor.button.element_middle.tile_size",   "-1"                    },
9247   { "editor.button.element_right.x",            "-1"                    },
9248   { "editor.button.element_right.y",            "-1"                    },
9249   { "editor.button.element_right.tile_size",    "-1"                    },
9250
9251   { "editor.button.palette.x",                  "-1"                    },
9252   { "editor.button.palette.y",                  "-1"                    },
9253
9254   { "editor.button.draw_single.x",              "6"                     },
9255   { "editor.button.draw_single.y",              "6"                     },
9256   { "editor.button.draw_connected.x",           "28"                    },
9257   { "editor.button.draw_connected.y",           "6"                     },
9258   { "editor.button.draw_line.x",                "50"                    },
9259   { "editor.button.draw_line.y",                "6"                     },
9260   { "editor.button.draw_arc.x",                 "72"                    },
9261   { "editor.button.draw_arc.y",                 "6"                     },
9262   { "editor.button.draw_rectangle.x",           "6"                     },
9263   { "editor.button.draw_rectangle.y",           "28"                    },
9264   { "editor.button.draw_filled_box.x",          "28"                    },
9265   { "editor.button.draw_filled_box.y",          "28"                    },
9266   { "editor.button.rotate_up.x",                "50"                    },
9267   { "editor.button.rotate_up.y",                "28"                    },
9268   { "editor.button.draw_text.x",                "72"                    },
9269   { "editor.button.draw_text.y",                "28"                    },
9270   { "editor.button.flood_fill.x",               "6"                     },
9271   { "editor.button.flood_fill.y",               "50"                    },
9272   { "editor.button.rotate_left.x",              "28"                    },
9273   { "editor.button.rotate_left.y",              "50"                    },
9274   { "editor.button.zoom_level.x",               "50"                    },
9275   { "editor.button.zoom_level.y",               "50"                    },
9276   { "editor.button.rotate_right.x",             "72"                    },
9277   { "editor.button.rotate_right.y",             "50"                    },
9278   { "editor.button.draw_random.x",              "6"                     },
9279   { "editor.button.draw_random.y",              "72"                    },
9280   { "editor.button.grab_brush.x",               "28"                    },
9281   { "editor.button.grab_brush.y",               "72"                    },
9282   { "editor.button.rotate_down.x",              "50"                    },
9283   { "editor.button.rotate_down.y",              "72"                    },
9284   { "editor.button.pick_element.x",             "72"                    },
9285   { "editor.button.pick_element.y",             "72"                    },
9286
9287   { "editor.button.ce_copy_from.x",             "28"                    },
9288   { "editor.button.ce_copy_from.y",             "6"                     },
9289   { "editor.button.ce_copy_to.x",               "50"                    },
9290   { "editor.button.ce_copy_to.y",               "6"                     },
9291   { "editor.button.ce_swap.x",                  "72"                    },
9292   { "editor.button.ce_swap.y",                  "6"                     },
9293   { "editor.button.ce_copy.x",                  "6"                     },
9294   { "editor.button.ce_copy.y",                  "72"                    },
9295   { "editor.button.ce_paste.x",                 "28"                    },
9296   { "editor.button.ce_paste.y",                 "72"                    },
9297
9298   { "editor.button.undo.x",                     "5"                     },
9299   { "editor.button.undo.y",                     "99"                    },
9300   { "editor.button.conf.x",                     "35"                    },
9301   { "editor.button.conf.y",                     "99"                    },
9302   { "editor.button.save.x",                     "65"                    },
9303   { "editor.button.save.y",                     "99"                    },
9304   { "editor.button.clear.x",                    "5"                     },
9305   { "editor.button.clear.y",                    "119"                   },
9306   { "editor.button.test.x",                     "35"                    },
9307   { "editor.button.test.y",                     "119"                   },
9308   { "editor.button.exit.x",                     "65"                    },
9309   { "editor.button.exit.y",                     "119"                   },
9310
9311   { "editor.input.level_number.x",              "29"                    },
9312   { "editor.input.level_number.y",              "5"                     },
9313
9314   { "editor.palette.x",                         "5"                     },
9315   { "editor.palette.y",                         "30"                    },
9316   { "editor.palette.cols",                      "4"                     },
9317   { "editor.palette.rows",                      "10"                    },
9318   { "editor.palette.tile_size",                 "16"                    },
9319   { "editor.palette.show_as_separate_screen",   "false"                 },
9320   { "editor.palette.show_on_element_buttons",   "false"                 },
9321
9322   { "editor.palette.element_left.x",            "6"                     },
9323   { "editor.palette.element_left.y",            "258"                   },
9324   { "editor.palette.element_left.tile_size",    "16"                    },
9325   { "editor.palette.element_middle.x",          "42"                    },
9326   { "editor.palette.element_middle.y",          "258"                   },
9327   { "editor.palette.element_middle.tile_size",  "16"                    },
9328   { "editor.palette.element_right.x",           "78"                    },
9329   { "editor.palette.element_right.y",           "258"                   },
9330   { "editor.palette.element_right.tile_size",   "16"                    },
9331
9332   { "editor.drawingarea.tile_size",             "16"                    },
9333
9334   { "editor.settings.headline.x",               "272"                   },
9335   { "editor.settings.headline.y",               "16"                    },
9336   { "editor.settings.headline.align",           "center"                },
9337   { "editor.settings.element_graphic.x",        "24"                    },
9338   { "editor.settings.element_graphic.y",        "64"                    },
9339   { "editor.settings.element_name.x",           "-1"                    },
9340   { "editor.settings.element_name.y",           "-1"                    },
9341   { "editor.settings.tabs.x",                   "24"                    },
9342   { "editor.settings.tabs.y",                   "64"                    },
9343   { "editor.settings.tabs.2nd_yoffset",         "64"                    },
9344   { "editor.settings.tabs.draw_xoffset",        "0"                     },
9345   { "editor.settings.tabs.draw_yoffset",        "8"                     },
9346   { "editor.settings.tooltip.x",                "-1"                    },
9347   { "editor.settings.tooltip.y",                "-1"                    },
9348
9349   { "editor.gadget.normal_spacing",             "4"                     },
9350   { "editor.gadget.small_spacing",              "2"                     },
9351   { "editor.gadget.tiny_spacing",               "1"                     },
9352   { "editor.gadget.line_spacing",               "4"                     },
9353   { "editor.gadget.text_spacing",               "4"                     },
9354   { "editor.gadget.separator_line.height",      "2"                     },
9355
9356   { "request.button.yes.x",                     "2"                     },
9357   { "request.button.yes.y",                     "250"                   },
9358   { "request.button.no.x",                      "52"                    },
9359   { "request.button.no.y",                      "250"                   },
9360   { "request.button.confirm.x",                 "2"                     },
9361   { "request.button.confirm.y",                 "250"                   },
9362   { "request.button.player_1.x",                "35"                    },
9363   { "request.button.player_1.y",                "185"                   },
9364   { "request.button.player_1.draw_player",      "true"                  },
9365   { "request.button.player_1.tile_size",        "16"                    },
9366   { "request.button.player_2.x",                "65"                    },
9367   { "request.button.player_2.y",                "215"                   },
9368   { "request.button.player_2.draw_player",      "true"                  },
9369   { "request.button.player_2.tile_size",        "16"                    },
9370   { "request.button.player_3.x",                "35"                    },
9371   { "request.button.player_3.y",                "245"                   },
9372   { "request.button.player_3.draw_player",      "true"                  },
9373   { "request.button.player_3.tile_size",        "16"                    },
9374   { "request.button.player_4.x",                "5"                     },
9375   { "request.button.player_4.y",                "215"                   },
9376   { "request.button.player_4.draw_player",      "true"                  },
9377   { "request.button.player_4.tile_size",        "16"                    },
9378
9379   { "request.x",                                "-1"                    },
9380   { "request.y",                                "-1"                    },
9381   { "request.width",                            "120"                   },
9382   { "request.height",                           "300"                   },
9383   { "request.border_size",                      "10"                    },
9384   { "request.line_spacing",                     "2"                     },
9385   { "request.step_offset",                      "10"                    },
9386   { "request.step_delay",                       "20"                    },
9387   { "request.anim_mode",                        "default"               },
9388   { "request.align",                            "center"                },
9389   { "request.valign",                           "middle"                },
9390   { "request.autowrap",                         "false"                 },
9391   { "request.centered",                         "true"                  },
9392   { "request.wrap_single_words",                "true"                  },
9393
9394   { "global.use_envelope_request",              "false"                 },
9395
9396   { "game.graphics_engine_version",             "-1"                    },
9397   { "game.forced_scroll_delay_value",           "-1"                    },
9398   { "game.use_native_emc_graphics_engine",      "false"                 },
9399   { "game.use_native_sp_graphics_engine",       "true"                  },
9400   { "game.use_masked_pushing",                  "false"                 },
9401   { "game.tile_size",                           "32"                    },
9402
9403   { "[player].boring_delay_fixed",              "1000"                  },
9404   { "[player].boring_delay_random",             "1000"                  },
9405   { "[player].sleeping_delay_fixed",            "2000"                  },
9406   { "[player].sleeping_delay_random",           "2000"                  },
9407
9408   { "viewport.window.width",                    "672"                   },
9409   { "viewport.window.height",                   "560"                   },
9410   { "viewport.window.min_width",                "-1"                    },
9411   { "viewport.window.min_height",               "-1"                    },
9412   { "viewport.window.max_width",                "-1"                    },
9413   { "viewport.window.max_height",               "-1"                    },
9414   { "viewport.window.TITLE.width",              ARG_DEFAULT             },
9415   { "viewport.window.TITLE.height",             ARG_DEFAULT             },
9416
9417   { "viewport.playfield.x",                     "6"                     },
9418   { "viewport.playfield.y",                     "6"                     },
9419   { "viewport.playfield.width",                 "548"                   },
9420   { "viewport.playfield.height",                "548"                   },
9421   { "viewport.playfield.min_width",             "-1"                    },
9422   { "viewport.playfield.min_height",            "-1"                    },
9423   { "viewport.playfield.max_width",             "-1"                    },
9424   { "viewport.playfield.max_height",            "-1"                    },
9425   { "viewport.playfield.margin_left",           "0"                     },
9426   { "viewport.playfield.margin_right",          "0"                     },
9427   { "viewport.playfield.margin_top",            "0"                     },
9428   { "viewport.playfield.margin_bottom",         "0"                     },
9429   { "viewport.playfield.border_left",           "-1"                    },
9430   { "viewport.playfield.border_right",          "-1"                    },
9431   { "viewport.playfield.border_top",            "-1"                    },
9432   { "viewport.playfield.border_bottom",         "-1"                    },
9433   { "viewport.playfield.border_size",           "2"                     },
9434   { "viewport.playfield.align_size",            "16"                    },
9435   { "viewport.playfield.align",                 "left"                  },
9436   { "viewport.playfield.valign",                "top"                   },
9437   { "viewport.playfield.MAIN.x",                ARG_DEFAULT             },
9438   { "viewport.playfield.MAIN.y",                ARG_DEFAULT             },
9439   { "viewport.playfield.MAIN.width",            ARG_DEFAULT             },
9440   { "viewport.playfield.MAIN.height",           ARG_DEFAULT             },
9441   { "viewport.playfield.MAIN.min_width",        ARG_DEFAULT             },
9442   { "viewport.playfield.MAIN.min_height",       ARG_DEFAULT             },
9443   { "viewport.playfield.MAIN.max_width",        ARG_DEFAULT             },
9444   { "viewport.playfield.MAIN.max_height",       ARG_DEFAULT             },
9445   { "viewport.playfield.MAIN.margin_left",      ARG_DEFAULT             },
9446   { "viewport.playfield.MAIN.margin_right",     ARG_DEFAULT             },
9447   { "viewport.playfield.MAIN.margin_top",       ARG_DEFAULT             },
9448   { "viewport.playfield.MAIN.margin_bottom",    ARG_DEFAULT             },
9449   { "viewport.playfield.MAIN.border_left",      ARG_DEFAULT             },
9450   { "viewport.playfield.MAIN.border_right",     ARG_DEFAULT             },
9451   { "viewport.playfield.MAIN.border_top",       ARG_DEFAULT             },
9452   { "viewport.playfield.MAIN.border_bottom",    ARG_DEFAULT             },
9453   { "viewport.playfield.MAIN.border_size",      ARG_DEFAULT             },
9454   { "viewport.playfield.MAIN.align_size",       ARG_DEFAULT             },
9455   { "viewport.playfield.MAIN.align",            ARG_DEFAULT             },
9456   { "viewport.playfield.MAIN.valign",           ARG_DEFAULT             },
9457   { "viewport.playfield.SCORES.x",              ARG_DEFAULT             },
9458   { "viewport.playfield.SCORES.y",              ARG_DEFAULT             },
9459   { "viewport.playfield.SCORES.width",          ARG_DEFAULT             },
9460   { "viewport.playfield.SCORES.height",         ARG_DEFAULT             },
9461   { "viewport.playfield.SCORES.min_width",      ARG_DEFAULT             },
9462   { "viewport.playfield.SCORES.min_height",     ARG_DEFAULT             },
9463   { "viewport.playfield.SCORES.max_width",      ARG_DEFAULT             },
9464   { "viewport.playfield.SCORES.max_height",     ARG_DEFAULT             },
9465   { "viewport.playfield.SCORES.margin_left",    ARG_DEFAULT             },
9466   { "viewport.playfield.SCORES.margin_right",   ARG_DEFAULT             },
9467   { "viewport.playfield.SCORES.margin_top",     ARG_DEFAULT             },
9468   { "viewport.playfield.SCORES.margin_bottom",  ARG_DEFAULT             },
9469   { "viewport.playfield.SCORES.border_left",    ARG_DEFAULT             },
9470   { "viewport.playfield.SCORES.border_right",   ARG_DEFAULT             },
9471   { "viewport.playfield.SCORES.border_top",     ARG_DEFAULT             },
9472   { "viewport.playfield.SCORES.border_bottom",  ARG_DEFAULT             },
9473   { "viewport.playfield.SCORES.border_size",    ARG_DEFAULT             },
9474   { "viewport.playfield.SCORES.align_size",     ARG_DEFAULT             },
9475   { "viewport.playfield.SCORES.align",          ARG_DEFAULT             },
9476   { "viewport.playfield.SCORES.valign",         ARG_DEFAULT             },
9477   { "viewport.playfield.EDITOR.x",              ARG_DEFAULT             },
9478   { "viewport.playfield.EDITOR.y",              ARG_DEFAULT             },
9479   { "viewport.playfield.EDITOR.width",          ARG_DEFAULT             },
9480   { "viewport.playfield.EDITOR.height",         ARG_DEFAULT             },
9481   { "viewport.playfield.EDITOR.min_width",      ARG_DEFAULT             },
9482   { "viewport.playfield.EDITOR.min_height",     ARG_DEFAULT             },
9483   { "viewport.playfield.EDITOR.max_width",      ARG_DEFAULT             },
9484   { "viewport.playfield.EDITOR.max_height",     ARG_DEFAULT             },
9485   { "viewport.playfield.EDITOR.margin_left",    ARG_DEFAULT             },
9486   { "viewport.playfield.EDITOR.margin_right",   ARG_DEFAULT             },
9487   { "viewport.playfield.EDITOR.margin_top",     ARG_DEFAULT             },
9488   { "viewport.playfield.EDITOR.margin_bottom",  ARG_DEFAULT             },
9489   { "viewport.playfield.EDITOR.border_left",    ARG_DEFAULT             },
9490   { "viewport.playfield.EDITOR.border_right",   ARG_DEFAULT             },
9491   { "viewport.playfield.EDITOR.border_top",     ARG_DEFAULT             },
9492   { "viewport.playfield.EDITOR.border_bottom",  ARG_DEFAULT             },
9493   { "viewport.playfield.EDITOR.border_size",    ARG_DEFAULT             },
9494   { "viewport.playfield.EDITOR.align_size",     ARG_DEFAULT             },
9495   { "viewport.playfield.EDITOR.align",          ARG_DEFAULT             },
9496   { "viewport.playfield.EDITOR.valign",         ARG_DEFAULT             },
9497   { "viewport.playfield.PLAYING.x",             ARG_DEFAULT             },
9498   { "viewport.playfield.PLAYING.y",             ARG_DEFAULT             },
9499   { "viewport.playfield.PLAYING.width",         ARG_DEFAULT             },
9500   { "viewport.playfield.PLAYING.height",        ARG_DEFAULT             },
9501   { "viewport.playfield.PLAYING.min_width",     ARG_DEFAULT             },
9502   { "viewport.playfield.PLAYING.min_height",    ARG_DEFAULT             },
9503   { "viewport.playfield.PLAYING.max_width",     ARG_DEFAULT             },
9504   { "viewport.playfield.PLAYING.max_height",    ARG_DEFAULT             },
9505   { "viewport.playfield.PLAYING.margin_left",   ARG_DEFAULT             },
9506   { "viewport.playfield.PLAYING.margin_right",  ARG_DEFAULT             },
9507   { "viewport.playfield.PLAYING.margin_top",    ARG_DEFAULT             },
9508   { "viewport.playfield.PLAYING.margin_bottom", ARG_DEFAULT             },
9509   { "viewport.playfield.PLAYING.border_left",   ARG_DEFAULT             },
9510   { "viewport.playfield.PLAYING.border_right",  ARG_DEFAULT             },
9511   { "viewport.playfield.PLAYING.border_top",    ARG_DEFAULT             },
9512   { "viewport.playfield.PLAYING.border_bottom", ARG_DEFAULT             },
9513   { "viewport.playfield.PLAYING.border_size",   ARG_DEFAULT             },
9514   { "viewport.playfield.PLAYING.align_size",    ARG_DEFAULT             },
9515   { "viewport.playfield.PLAYING.align",         ARG_DEFAULT             },
9516   { "viewport.playfield.PLAYING.valign",        ARG_DEFAULT             },
9517
9518   { "viewport.door_1.x",                        "566"                   },
9519   { "viewport.door_1.y",                        "60"                    },
9520   { "viewport.door_1.width",                    "100"                   },
9521   { "viewport.door_1.height",                   "280"                   },
9522   { "viewport.door_1.border_size",              "4"                     },
9523   { "viewport.door_1.align",                    "left"                  },
9524   { "viewport.door_1.valign",                   "top"                   },
9525   { "viewport.door_1.MAIN.x",                   ARG_DEFAULT             },
9526   { "viewport.door_1.MAIN.y",                   ARG_DEFAULT             },
9527   { "viewport.door_1.MAIN.width",               ARG_DEFAULT             },
9528   { "viewport.door_1.MAIN.height",              ARG_DEFAULT             },
9529   { "viewport.door_1.MAIN.border_size",         ARG_DEFAULT             },
9530   { "viewport.door_1.MAIN.align",               ARG_DEFAULT             },
9531   { "viewport.door_1.MAIN.valign",              ARG_DEFAULT             },
9532   { "viewport.door_1.SCORES.x",                 ARG_DEFAULT             },
9533   { "viewport.door_1.SCORES.y",                 ARG_DEFAULT             },
9534   { "viewport.door_1.SCORES.width",             ARG_DEFAULT             },
9535   { "viewport.door_1.SCORES.height",            ARG_DEFAULT             },
9536   { "viewport.door_1.SCORES.border_size",       ARG_DEFAULT             },
9537   { "viewport.door_1.SCORES.align",             ARG_DEFAULT             },
9538   { "viewport.door_1.SCORES.valign",            ARG_DEFAULT             },
9539   { "viewport.door_1.EDITOR.x",                 ARG_DEFAULT             },
9540   { "viewport.door_1.EDITOR.y",                 ARG_DEFAULT             },
9541   { "viewport.door_1.EDITOR.width",             ARG_DEFAULT             },
9542   { "viewport.door_1.EDITOR.height",            ARG_DEFAULT             },
9543   { "viewport.door_1.EDITOR.border_size",       ARG_DEFAULT             },
9544   { "viewport.door_1.EDITOR.align",             ARG_DEFAULT             },
9545   { "viewport.door_1.EDITOR.valign",            ARG_DEFAULT             },
9546   { "viewport.door_1.PLAYING.x",                ARG_DEFAULT             },
9547   { "viewport.door_1.PLAYING.y",                ARG_DEFAULT             },
9548   { "viewport.door_1.PLAYING.width",            ARG_DEFAULT             },
9549   { "viewport.door_1.PLAYING.height",           ARG_DEFAULT             },
9550   { "viewport.door_1.PLAYING.border_size",      ARG_DEFAULT             },
9551   { "viewport.door_1.PLAYING.align",            ARG_DEFAULT             },
9552   { "viewport.door_1.PLAYING.valign",           ARG_DEFAULT             },
9553
9554   { "viewport.door_2.x",                        "566"                   },
9555   { "viewport.door_2.y",                        "400"                   },
9556   { "viewport.door_2.width",                    "100"                   },
9557   { "viewport.door_2.height",                   "100"                   },
9558   { "viewport.door_2.border_size",              "4"                     },
9559   { "viewport.door_2.align",                    "left"                  },
9560   { "viewport.door_2.valign",                   "top"                   },
9561   { "viewport.door_2.MAIN.x",                   ARG_DEFAULT             },
9562   { "viewport.door_2.MAIN.y",                   ARG_DEFAULT             },
9563   { "viewport.door_2.MAIN.width",               ARG_DEFAULT             },
9564   { "viewport.door_2.MAIN.height",              ARG_DEFAULT             },
9565   { "viewport.door_2.MAIN.border_size",         ARG_DEFAULT             },
9566   { "viewport.door_2.MAIN.align",               ARG_DEFAULT             },
9567   { "viewport.door_2.MAIN.valign",              ARG_DEFAULT             },
9568   { "viewport.door_2.SCORES.x",                 ARG_DEFAULT             },
9569   { "viewport.door_2.SCORES.y",                 ARG_DEFAULT             },
9570   { "viewport.door_2.SCORES.width",             ARG_DEFAULT             },
9571   { "viewport.door_2.SCORES.height",            ARG_DEFAULT             },
9572   { "viewport.door_2.SCORES.border_size",       ARG_DEFAULT             },
9573   { "viewport.door_2.SCORES.align",             ARG_DEFAULT             },
9574   { "viewport.door_2.SCORES.valign",            ARG_DEFAULT             },
9575   { "viewport.door_2.EDITOR.x",                 "566"                   },
9576   { "viewport.door_2.EDITOR.y",                 "356"                   },
9577   { "viewport.door_2.EDITOR.width",             "100"                   },
9578   { "viewport.door_2.EDITOR.height",            "144"                   },
9579   { "viewport.door_2.EDITOR.border_size",       "4"                     },
9580   { "viewport.door_2.EDITOR.align",             "left"                  },
9581   { "viewport.door_2.EDITOR.valign",            "top"                   },
9582   { "viewport.door_2.PLAYING.x",                ARG_DEFAULT             },
9583   { "viewport.door_2.PLAYING.y",                ARG_DEFAULT             },
9584   { "viewport.door_2.PLAYING.width",            ARG_DEFAULT             },
9585   { "viewport.door_2.PLAYING.height",           ARG_DEFAULT             },
9586   { "viewport.door_2.PLAYING.border_size",      ARG_DEFAULT             },
9587   { "viewport.door_2.PLAYING.align",            ARG_DEFAULT             },
9588   { "viewport.door_2.PLAYING.valign",           ARG_DEFAULT             },
9589
9590   { NULL,                                       NULL                    }
9591 };