ScummVM API documentation
define.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef WATCHMAKER_DEFINE_H
23 #define WATCHMAKER_DEFINE_H
24 
25 namespace Watchmaker {
26 
27 // Main Chars
28 #define DARRELL 0
29 #define VICTORIA 1
30 
31 // user define for .nl
32 #define TEXT1 10000
33 #define TEXT2 10001
34 #define TEXT3 10002
35 #define TEXT4 10003
36 #define TEXT5 10004
37 #define ANIM2 10000
38 
39 // Flag per Obj, ObjInv, Room
40 #define EXAMINEACT 1 // Fa Azione in anim2 su esamina
41 #define ROOM 2 // Cambia Stanza - ma oggetto e' esaminabile
42 #define DOOR 2 // Cambia Stanza - ma oggetto e' esaminabile
43 #define CHARACTER 4 // Parte dialogo
44 #define TAKE 8 // solo per obj - Lo prende
45 #define DAR 0 // solo per inv - se per darrell
46 #define VIC 8 // solo per inv - se per victoria
47 #define USE 0 // Se puo' essere usato
48 #define USEWITH 16 // Fa Usa con
49 #define EXTRA 32 // Extra
50 #define EXTRA2 64 // Extra2
51 #define DONE 128 // Operato
52 #define ON 256 // Attivo (presente nella stanza)
53 #define WITHI 512 // se fa usacon automatico con invobj o con obj
54 #define HIDE 1024 // Se l'oggetto e' nascosto (indipendentemente dal fatto che sia ON)
55 #define HIDEIN1ST 2048 // se invisibile in prima persona
56 #define HIDEIN3RD 4096 // se invisibile in terza persona
57 #define NOSWITCH 8192 // non torna in terza se sono in prima e ci clicco sopra
58 #define FORCERIGHT 16384 // se deve prendere sempre un click col destro
59 #define NOUPDATE 32768 // se non deve utare le mesh collegate
60 
61 // Flags per animazioni
62 #define ANIM_ON 1 // Se attiva quando si entra nella stanza
63 #define ANIM_PORTAL_LINK 2 // Se collega due portali
64 #define ANIM_ABS 4 // Se non dipende da luce posizione
65 #define ANIM_BLOCK 8 // Se deve tenere ultimo frame
66 #define ANIM_NO_FIX_POS 16 // Se non deve fissare la posizione alla fine
67 #define ANIM_CHECK_BOUNDS 32 // Se deve stare dentro i bounds
68 #define ANIM_TIME 64 // Se e' un'animazione che da il tempo
69 #define ANIM_SKIP_LAST_FRAME 128 // Non Playa ultimo frame
70 #define ANIM_NULL 256 // Se serve soltanto come conta tempo
71 #define ANIM_PAUSED 512 // Se e' in pausa
72 #define ANIM_STAND 1024 // Se e' un'animazione di stand-by quando uso l'altro personaggio
73 #define ANIM_DEFAULT 2048 // Se va caricata come default
74 #define ANIM_NO_START_BLEND 4096 // Se non va blendata all'inizio
75 #define ANIM_NO_END_BLEND 8192 // Se non va blendata alla fine
76 #define ANIM_DIARY 16384 // Se e' stata lanciata da un diario
77 #define ANIM_SKIP_1ST_FRAME 32768 // Non Playa il primo frame
78 #define ANIM_BLOCK_PLAYER 65536 // Blocca anche il player
79 #define ANIM_BKG 131072 // E' una animazione di background
80 
81 // Flags per Sound - da implementare
82 #define SOUND_ON 1 // Se il suono e' attivo
83 #define SOUND_LOOP 2 // Se deve andare in loop
84 #define SOUND_BACK 4 // Se e' un suono di background
85 #define SOUND_PSX 8 // Se e' il suono del passo sinistro
86 #define SOUND_PDX 16 // Se e' i,l suono del passo destro
87 #define SOUND_STAIRS 32 // Se e' il suono di un passo sulle scale
88 #define SOUND_MUTE0 64 // Se e' MUTE0
89 #define SOUND_MUTE1 128 // Se e' MUTE1
90 
91 // Flags per crediti
92 #define CF_NULL 0 // nullo
93 #define CF_STATIC 1 // le scritte che seguono appaiono staticamente (di default scrollano)
94 #define CF_TITLE 2 // scrive la scritta nel mezzo (solo per scrolling)
95 #define CF_SPACE 4 // lascia x righe vuote prima di continuare a scrivere
96 #define CF_IMG 8 // mette sulla sinistra l'immagine 64x64 e sulla destra la descrizione
97 #define CF_IMG2 16 // mette sulla sinistra l'immagine 128x64 e sulla destra la descrizione
98 #define CF_END 32 // e' la scritta finale, una volta che e' arrivata a meta' schermo si ferma e poi finiscono i crediti (solo per scrolling)
99 
100 // Environment predefiniti per rooms
101 #define vGENERIC 0
102 #define vPADDEDCELL 1
103 #define vROOM 2
104 #define vBATHROOM 3
105 #define vLIVINGROOM 4
106 #define vSTONEROOM 5
107 #define vAUDITORIUM 6
108 #define vCONCERTHALL 7
109 #define vCAVE 8
110 #define vARENA 9
111 #define vHANGAR 10
112 #define vCARPETEDHALLWAY 11
113 #define vHALLWAY 12
114 #define vSTONECORRIDOR 13
115 #define vALLEY 14
116 #define vFOREST 15
117 #define vCITY 16
118 #define vMOUNTAINS 17
119 #define vQUARRY 18
120 #define vPLAIN 19
121 #define vPARKINGLOT 20
122 #define vSEWERPIPE 21
123 #define vUNDERWATER 22
124 #define vDRUGGED 23
125 #define vDIZZY 24
126 #define vPSYCHOTIC 25
127 
128 // Flags per dialoghi
129 #define DIALOG_RTV 1 // Se e' un RTV (non ha scelte)
130 #define DIALOG_RTV2 2 // Se deve partire RTV2
131 #define DIALOG_RTV3 4 // Se deve partire RTV3
132 #define DIALOG_PRE1 8 // Se deve partire il predialog1
133 #define DIALOG_PRE2 16 // Se deve partire il predialog2
134 #define DIALOG_PRE3 32 // Se deve partire il predialog3
135 #define DIALOG_PRE4 64 // Se deve partire il predialog4
136 #define DIALOG_PRE_RAND 128 // Se deve partire un predialog a caso tra quelli attivi
137 #define DIALOG_END1 256 // Se finire con l'enddialog1
138 #define DIALOG_END2 512 // Se finire con l'enddialog1
139 #define DIALOG_END3 1024 // Se finire con l'enddialog1
140 #define DIALOG_END_RAND 2048 // Se finire con un enddialog a caso tra quelli attivi
141 #define DIALOG_DONE 4096 // Se il dialogo e' gia' stato fatto
142 #define DIALOG_ONCE 8192 // Se dialogo deve essere eseguito una sola volta
143 
144 // Flags per le Rooms
145 #define ROOM_VISITED 1 // Se sono gia' stato in questa stanza
146 #define ROOM_VISIBLE 2 // Se e' visibile
147 #define ROOM_OLDVISIBLE 4 // Se prima era visbile
148 #define ROOM_EXTRA 8 // Se e' successa una cosa extra
149 #define ROOM_EXTRA2 16 // Se e' successa una cosa extra2
150 
151 // effetti speciali
152 #define EFFECT_FADIN 1 // Effetto FadIn
153 #define EFFECT_FADOUT 2 // Effetto FadOut
154 #define EFFECT_FADOUT_FADIN 3 // Effetto FadOut-FadIn
155 #define EFFECT_WAIT 4 // Effetto Aspetta
156 #define EFFECT_WAITDARK 5 // Effetto Aspetta con schermo nero
157 #define EFFECT_ROOMINFO 6 // Effetto RoomInfo
158 #define EFFECT_FADEIN_T1 7 // Effetto FadIn T1
159 #define EFFECT_FADEOUT_T1 8 // Effetto FadOut T1
160 #define EFFECT_FADEIN_T2 9 // Effetto FadIn T2
161 #define EFFECT_FADEOUT_T2 10 // Effetto FadOut T2
162 #define EFFECT_MOVEIN_T1 11 // Effetto MOVEIn T1
163 #define EFFECT_MOVEOUT_T1 12 // Effetto MOVEOut T1
164 #define EFFECT_MOVEIN_T2 13 // Effetto MOVEIn T2
165 #define EFFECT_MOVEOUT_T2 14 // Effetto MOVEOut T2
166 #define EFFECT_DISPLAY_NEWLOGIMG 15 // Mostra una immagine quando il log viene aggiornato
167 
168 // Per i log del PDA (menu e sottomenu)
169 #define PDA_UPDATE 1
170 #define PDA_MENU 2
171 #define PDA_ON 4
172 #define PDA_MAIN 8
173 
174 /* -----------------17/03/98 10.42-------------------
175  * AtFrame
176  * --------------------------------------------------*/
177 
178 #define ATF_DO 1 // Esegue l'evento programmabile <event>
179 #define ATF_PUSH 2 // Mette il valore <val> nello stack
180 #define ATF_POP 3 // Cancella il valore attuale dallo stack
181 #define ATF_JUMP 4 // Fa saltare animazioni NON in stack al frame <frame>
182 #define ATF_JUMP_ALL 5 // Fa saltare tutte le animazioni al frame <frame>
183 #define ATF_LOOP_LEN 6 // Definisce lunghezza del loop dal frame attuale
184 #define ATF_LOOP_END 7 // Definisce fine del loop dal frame attuale
185 #define ATF_LOOP_MASK 8 // Definisce animazioni su cui NON funziona il loop
186 #define ATF_TEXT 9 // Dice la frase <sent>
187 #define ATF_POP_TEXT 10 // Dice la frase prendendola dallo stack
188 
189 #define ATF_CHANGE_ROOM 13 // Posiziona omino in <roomname> e setta la posizione
190 #define ATF_CHANGE_ROOM_AN 14 // Come ATF_SET_ROOM solo che fa partire anim in stack
191 #define ATF_SET_CAMERA 15 // Forza la camera a diventare <cam>
192 #define ATF_SET_BND_LEVEL 16 // Setta il livello <lev> di bounds
193 #define ATF_TO_1ST_SENT 17 // Setta la frase da dire appena entra in prima
194 #define ATF_TO_1ST_ANIM 18 // Setta animazione di entrata in prima persona
195 #define ATF_FROM_1ST_ANIM 19 // Setta animazione di uscita dalla prima persona
196 #define ATF_CUROBJ 20 // Setta il CurObj
197 #define ATF_CHANGE_PLAYER 21 // Cambia personaggio con cui stai giocando
198 #define ATF_NO_INPUT 22 // Setta on/off l'input da parte del giocatore
199 #define ATF_UPDATE_BBOX 23 // Aggiorna Bounding box della mesh nel canale <mesh>
200 #define ATF_RESET_BLEND 24 // Resetta blend per la mesh nel canale <mesh>
201 #define ATF_CAMERA_TARGET 25 // Cambia oggetto su cui deve puntare la camera
202 #define ATF_UPDATE_MAX_TARGET 26 // Aggiorna il target con quello attuale
203 #define ATF_SUB_MUSIC 27 // Cambia la sottomusica attuale
204 #define ATF_EXIT 28 // Termina l'animazione istantaneamente
205 #define ATF_LINK 29 // Definisce questo frame come possibile uscita dal loop
206 
207 #define ATFO_OFF 30 // Spegne l'oggetto <obj>
208 #define ATFO_ON 31 // Attiva l'oggetto <obj>
209 #define ATFO_HIDE 32 // hida oggetto <obj>
210 #define ATFO_UNHIDE 33 // unhida oggetto <obj>
211 #define ATFOM_OFF 34 // Spegne l'oggetto <obj> e tutte le mesh collegate
212 #define ATFOM_ON 35 // Attiva l'oggetto <obj> e tutte le mesh collegate
213 #define ATFOM_HIDE 36 // hida oggetto <obj> e tutte le mesh collegate
214 #define ATFOM_UNHIDE 37 // unhida oggetto <obj> e tutte le mesh collegate
215 #define ATFD_OFF 38 // Spegne il dialogo <dlg>
216 #define ATFD_ON 39 // Attiva il dialogo <dlg>
217 #define ATFW_OFF 40 // Spegne l'effetto sonoro <wav>
218 #define ATFW_ON 41 // Attiva l'effetto sonoro <wav>
219 #define ATFI_OFF 42 // Spegne l'icona <icon>
220 #define ATFI_ON 43 // Attiva l'icona <icon>
221 #define ATFA_OFF 44 // Spegne l'animazione <anim>
222 #define ATFA_ON 45 // Attiva l'animazione <anim>
223 #define ATFA_OFF_POP 46 // Spegne l'animazione <anim> in stack
224 #define ATFA_ON_POP 47 // Attiva l'animazione <anim> in stack
225 #define ATFA_PAUSE 48 // Pausa l'animazione <anim>
226 #define ATFA_CONTINUE 49 // Continua l'animazione <anim>
227 #define ATFP_OFF 50 // Spegne il portale nella subanim <portal>
228 #define ATFP_ON 51 // Attiva il portale nella subanim <portal>
229 #define ATFM_OFF 52 // Spegne la mesh nella subanim <mesh>
230 #define ATFM_ON 53 // Attiva la mesh nella subanim <mesh>
231 #define ATFM_OFF_POP 54 // Non fa rivelare <mesh> al mouse
232 #define ATFM_ON_POP 55 // Fa rivelare <mesh> al mouse
233 #define ATFM_HIDE 56 // Spegne la mesh del canale che viene poppata
234 #define ATFM_UNHIDE 57 // Attiva la mesh del canale che viene poppata
235 #define ATFM_SET_AVFLAG 58 // Setta la mesh sempre visibile
236 #define ATFM_CLR_AVFLAG 59 // Torna a fare il normale test di visibilita'
237 #define ATFM_SETFRAME 60 // setta il frame del filmato nella <mesh>
238 #define ATFM_INCFRAME 61 // incrementa il frame del filmato nella <mesh>
239 #define ATFM_DECFRAME 62 // decrementa il frame del filmato nella <mesh>
240 #define ATFM_START_MOVIE 63 // attiva il filmato nella <mesh>
241 #define ATFM_STOP_MOVIE 64 // disattiva il filmato nella <mesh>
242 #define ATFH_ON 65 // attiva tutte le haloes nella stanza
243 #define ATFH_OFF 66 // disattiva tutte le haloes nella stanza
244 #define ATFC_HIDE 67 // Nasconde personaggio <ch>
245 #define ATFC_UNHIDE 68 // Fa apparire personaggio <ch>
246 #define ATFC_SETTO 69 // Teletrasporta personaggio in stack in <pos>
247 #define ATFC_GOTO 70 // Fa camminare personaggio in stack in <pos>
248 #define ATFC_RUNTO 71 // Fa correre personaggio in stack in <pos>
249 #define ATFC_BACKTO 72 // Fa indietreggiare personaggio in stack in <pos>
250 #define ATFC_GOTO_AN 73 // Fa camminare pers in stack in <pos> e parte anim
251 #define ATFC_RUNTO_AN 74 // Fa correre pers in stack in <pos> e parte anim
252 #define ATFC_BACKTO_AN 75 // Fa indietreggiare pers in stack in <pos> e parte anim
253 #define ATFC_FIX_POS 76 // Fissa la posizione attuale del personaggio <ch>
254 #define ATFC_SET_ALT0 77 // Setta il persoanggio <ch> come alternate default
255 #define ATFC_SET_ALT1 78 // Setta il persoanggio <ch> come alternate 1
256 #define ATFC_SET_ALT2 79 // Setta il persoanggio <ch> come alternate 2
257 #define ATFC_SET_ALT3 80 // Setta il persoanggio <ch> come alternate 3
258 #define ATFPL_SETTO 81 // Teletrasporta giocatore in <pos>
259 #define ATFPL_GOTO 82 // Fa camminare giocatore in <pos>
260 #define ATFPL_RUNTO 83 // Fa correre giocatore in stack in <pos>
261 #define ATFPL_BACKTO 84 // Fa indietreggiare giocatore in stack in <pos>
262 #define ATFPL_GOTO_AN 85 // Fa camminare giocatore in <pos> e parte anim in stack
263 #define ATFPL_RUNTO_AN 86 // Fa correre giocatore in <pos> e parte anim in stack
264 #define ATFPL_BACKTO_AN 87 // Fa indietreggiare giocatore in <pos> e parte anim
265 #define ATFDM_OFF 88 // Spegne menu item <item>
266 #define ATFDM_ON 89 // Attiva menu item <item>
267 #define ATFS_OFF 90 // Spegne effetto sonoro <sound>
268 #define ATFS_ON 91 // Attiva effetto sonoro <sound>
269 #define ATFS_PSX 92 // Suona passo di sinistra
270 #define ATFS_PDX 93 // Suona passo di destra
271 
272 #define ATFO_TEX 94 // Parte frase esamina dell'oggetto in stack
273 #define ATFO_TACT 95 // Parte frase action dell'oggetto in stack
274 #define ATFO_TEXT 96 // Parte frase text dell'oggetto in stack
275 #define ATFO_CEX 97 // Cambia frase esamina con <sent> dell'oggetto in stack
276 #define ATFO_CACT 98 // Cambia frase action con <sent> dell'oggetto in stack
277 #define ATFO_CANIM 99 // Cambia animazione con <anim> dell'oggetto in stack
278 #define ATFO_CANIM2 100 // Cambia animazione2 con <anim> dell'oggetto in stack
279 #define ATFO_CPOS 101 // Cambia posizione con <pos> dell'oggetto in stack
280 #define ATFO_SET_FLAG 102 // Setta il <flag> nell'oggetto in stack
281 #define ATFO_CLR_FLAG 103 // Cancella il <flag> nell'oggetto in stack
282 #define ATFCO_TEX 104 // Parte frase esamina dell'oggetto attuale
283 #define ATFCO_TACT 105 // Parte frase action dell'oggetto attuale
284 #define ATFCO_TEXT 106 // Parte frase text dell'oggetto attuale
285 #define ATFCO_CEX 107 // Cambia frase esamina con <sent> dell'oggetto attuale
286 #define ATFCO_CACT 108 // Cambia frase action con <sent> dell'oggetto attuale
287 #define ATFCO_CANIM 109 // Cambia animazione con <anim> dell'oggetto attuale
288 #define ATFCO_CANIM2 110 // Cambia animazione2 con <anim> dell'oggetto attuale
289 #define ATFCO_CPOS 111 // Cambia posizione con <pos> dell'oggetto attuale
290 #define ATFCO_SET_FLAG 112 // Setta il <flag> nell'oggetto attuale
291 #define ATFCO_CLR_FLAG 113 // Cancella il <flag> nell'oggetto attuale
292 #define ATFI_TEX 114 // Parte frase esamina dell'icona in stack
293 #define ATFI_TACT 115 // Parte frase action dell'icona in stack
294 #define ATFI_TEXT 116 // Parte frase text dell'icona in stack
295 #define ATFI_CEX 117 // Cambia frase esamina con <sent> dell'icona in stack
296 #define ATFI_CACT 118 // Cambia frase action con <sent> dell'icona in stack
297 #define ATFI_CANIM 119 // Cambia animazione con <anim> dell'icona in stack
298 #define ATFI_CANIM2 120 // Cambia animazione con <anim> dell'icona in stack
299 #define ATFI_CUWOBJ 121 // Cambia uwobj con <obj> dell'icona in stack
300 #define ATFI_SET_FLAG 122 // Setta il <flag> nell'icona in stack
301 #define ATFI_CLR_FLAG 123 // Cancella il <flag> nell'icona in stack
302 #define ATFI_REPLACE 124 // Rimpiazza l'icona in stack con <icon>
303 #define ATFSA_START 125 // Attiva tutte le sottoanimazioni NON in <mask>
304 #define ATFSA_BLOCK 126 // Blocca ultimo frame sottoanim <num>
305 #define ATF_PUSH_USED 127 // Mette in stack l'oggetto usato nell'usa con
306 #define ATF_PUSH_WITH 128 // Mette in stack l'oggetto destinazione nell'usa con
307 #define ATF_GG_MODE 129 // Cambia il GolfMode
308 #define ATF_VISIBILITY 130 // Forza riaggiornamento visibilita' della stanza
309 
310 #define ATF_INC_TIME 135 // Incrementa contatore interno tempo
311 #define ATF_DEC_TIME 136 // Decrementa contatore interno tempo
312 #define ATF_SET_TIME 137 // Setta contatore interno tempo
313 #define ATF_SET_STARTT 138 // Setta all'ora attuale l'ora di partenza di un diario
314 #define ATF_SET_ENDT 139 // Setta all'ora attuale l'ora di fine di un diario
315 #define ATF_START_T2D 140 // Parte sezione T2D
316 
317 #define ATFO_CANIMD 141
318 #define ATFO_CANIMV 142
319 #define ATFO_CANIM2D 143
320 #define ATFO_CANIM2V 144
321 #define ATFCO_CANIMD 145
322 #define ATFCO_CANIMV 146
323 #define ATFCO_CANIM2D 147
324 #define ATFCO_CANIM2V 148
325 #define ATFI_CANIMD 149
326 #define ATFI_CANIMV 150
327 #define ATFI_CANIM2D 151
328 #define ATFI_CANIM2V 152
329 #define ATFO_CANIMCP 153
330 #define ATFO_CANIMOP 154
331 #define ATFO_CANIM2CP 155
332 #define ATFO_CANIM2OP 156
333 #define ATFCO_CANIMCP 157
334 #define ATFCO_CANIMOP 158
335 #define ATFCO_CANIM2CP 159
336 #define ATFCO_CANIM2OP 160
337 #define ATFI_CANIMCP 161
338 #define ATFI_CANIMOP 162
339 #define ATFI_CANIM2CP 163
340 #define ATFI_CANIM2OP 164
341 #define ATFC_HIDE_BND 165
342 #define ATFC_UNHIDE_BND 166
343 #define ATFI_ON_DAR 167
344 #define ATFI_ON_VIC 168
345 #define ATFO_CEX_DLG 169
346 #define ATFO_CACT_DLG 170
347 #define ATFO_CEX_BOTH 171
348 #define ATFO_CACT_BOTH 172
349 #define ATFCO_CEX_BOTH 173
350 #define ATFCO_CACT_BOTH 174
351 #define ATFI_CEX_BOTH 175
352 #define ATFI_CACT_BOTH 176
353 #define ATFD_ON_DLG 177
354 #define ATFS_PSX_STAIRS 178
355 #define ATFS_PDX_STAIRS 179
356 #define ATFO_SET_NOUPDATE 180
357 #define ATFO_CLR_NOUPDATE 181
358 #define ATFC_DIARY_ENABLE 182
359 #define ATFC_DIARY_DISABLE 183
360 #define ATFL_ON 184
361 #define ATFC_ENABLE_SHADOWS 185
362 #define ATFC_DISABLE_SHADOWS 186
363 #define ATFD_ON_WAITTEXT 187
364 #define ATF_SET_NOSKIP 188
365 #define ATFO_TACTOP 189 // Parte frase action dell'OtherPlayer dell'oggetto in stack
366 #define ATFO_TEXOP 190 // Parte frase esamina dell'OtherPlayer dell'oggetto in stack
367 #define ATF_SET_BASAMENTO 191 // indica se il curplayer e' su oXT14BASAMENTO o meno
368 #define ATFC_ENABLE_VOLUMETRIC_SHADOWS 192
369 #define ATFC_DISABLE_VOLUMETRIC_SHADOWS 193
370 #define ATFS_SET_FLAG 194 // Setta il <flag> nel suono in stack
371 #define ATFS_CLR_FLAG 195 // Cancella il <flag> nel suono in stack
372 #define ATF_START_WIDESCREEN 196
373 #define ATF_END_WIDESCREEN 197
374 #define ATF_DONT_PLAY_STEPS 198
375 #define ATFO_CEXD 199 // Cambia frase esamina con <sent> dell'oggetto in stack (solo Darrell)
376 #define ATFO_CEXV 200 // Cambia frase esamina con <sent> dell'oggetto in stack (solo Victoria)
377 
378 /* -----------------17/03/98 10.44-------------------
379  * AtfDo
380  * --------------------------------------------------*/
381 #define fFADIN 1
382 #define fFADOUT 2
383 #define fFADOUTWAIT2 3
384 #define fFADOUTWAIT5 4
385 #define fPOP_ROOM 5
386 #define fPUSH_ROOM 6
387 #define fPOP_ROOM_dR015 7
388 #define fSET_MOGLIE_GYM 8
389 #define fSET_MOGLIE_SANGUE 9
390 #define fSET_PLAYERSWITCH_ON 10
391 #define fSET_PLAYERSWITCH_OFF 11
392 #define fUSCITAPOZZO 12
393 #define f22STOPWAVES 13
394 #define f2OENTRALIFT 14
395 #define f2OESCELIFT 15
396 #define f23ENTRALIFT 16
397 #define f23ESCELIFT 17
398 #define f25CHECK 18
399 #define f2QENTRALAB 19
400 #define f2QESCELAB 20
401 #define fFORCE_DEFAULT_ANIM 22
402 #define f34MERIDIANASX 23
403 #define f34MERIDIANADX 24
404 #define f34CRISTALLOSX 25
405 #define f34CRISTALLODX 26
406 #define f34CHECK 27
407 #define f35LIGHTS 28
408 #define f36MSD 29
409 #define f36MSS 30
410 #define f36PSD 31
411 #define f36PSS 32
412 #define f36MID 33
413 #define f36MIS 34
414 #define f36PID 35
415 #define f36PIS 36
416 #define f3BCHECK 37
417 #define f41WALK 38
418 #define f44UPDATE 39
419 #define f45STARTTIMER 40
420 #define f45STOPTIMER 41
421 #define f49CHECK 42
422 #define f4ASETBND44 43
423 #define fSTART_CACCIATORE 44
424 #define fSTOP_CACCIATORE 45
425 #define fPASSA_ICONE 48
426 #define f47SETPDALOGS 49
427 #define f41STARTTIMER 50
428 #define f41STOPTIMER 51
429 #define fDISABLESAVE 52
430 #define fENABLESAVE 53
431 #define fSAVEPARTICULAR 54
432 #define f42RESETCOMBINATION 55
433 #define fdR222CHECK 59
434 #define fCPSPEAK_PORTACHIUSA1 60
435 #define fCPSPEAK_PORTACHIUSA2 61
436 #define fSET_BLOCCO_PORTE_ESTERNO 62
437 #define fCLR_BLOCCO_PORTE_ESTERNO 63
438 #define f25CHECKFORNO 64
439 #define fCALLOTHERPLAYER_START 65
440 #define fCALLOTHERPLAYER_END 66
441 #define fLAUNCHGAMEOVERMUSIC 67
442 #define fLAUNCHCREDITSMUSIC 68
443 #define fSTART_TITOLI_CODA 69
444 #define fSTART_MAIN_MENU 70
445 #define fSTART_DISCESAPISCINA 71
446 #define fEND_DISCESAPISCINA 72
447 #define f48_STOPSOUNDS_ENDTRO 73
448 
449 #define fGG_USER1 80
450 #define fGG_USER2 81
451 
452 /* -----------------20/06/00 11.41-------------------
453  * MeshModifier
454  * --------------------------------------------------*/
455 #define MM_ADD_FLAGS 1
456 #define MM_REMOVE_FLAGS 2
457 #define MM_ADD_MAT_FLAGS 4
458 #define MM_REMOVE_MAT_FLAGS 8
459 #define MM_SET_MAT_FRAME 16
460 #define MM_ANIM_BLOCK 32
461 #define MM_SET_BND_LEVEL 64
462 #define MM_SET_HALOES 128
463 #define MM_SET_WAVES 256
464 #define MM_SET_PARTICLES 512
465 
466 /* -----------------17/09/98 11.11-------------------
467  * Item Commands
468  * --------------------------------------------------*/
469 #define IC_NULL 0 // Comando nullo
470 #define IC_SET_PLAYER 1 // Stabilisce per chi sono i comandi seguenti
471 #define IC_ANIM 2 // Parte anim
472 #define IC_SET_CAMERA 3 // Cambia la camera con un cut
473 #define IC_MOVE_CAMERA_TO 4 // Cambia la camera con un movimento
474 #define IC_SET_TARGET 5 // Setta il target su un oggetto
475 #define IC_SET_CHAR 6 // Posiziona un personaggio
476 #define IC_WALK_CHAR 7 // Fa camminare un personaggio fino a
477 #define IC_RUN_CHAR 8 // Fa correre un personaggio fino a
478 #define IC_BACK_CHAR 9 // Fa indietreggiare un personaggio fino a
479 #define IC_HIDE_CHAR 10 // Nasconde un personaggio
480 #define IC_UNHIDE_CHAR 11 // Mostra un personaggio
481 #define IC_CHANGE_ROOM 12 // Cambia la stanza
482 #define IC_EXPRESSION 13 // Attiva un'espressione facciale
483 #define IC_CHANGE_PLAYER 14 // Cambia il personaggio con cui giochi
484 #define IC_DEBUG 15 // Scrive una scritta di debug
485 #define IC_ITEM 16 // Attiva o disattiva un item di dialogo
486 #define IC_SET_FLAGS 17 // Setta flags per il dialogo
487 #define IC_CLR_FLAGS 18 // Desetta flags per il dialogo
488 #define IC_ATFRAME 19 // Lancia ATFrame all'istante
489 #define IC_NEXT_DLG 20 // Dialogo che deve partire alla fine
490 #define IC_SET_CHAR2 21 // Non fa setcahcr se e' in alternate
491 #define IC_INTRO_TEXT1 22 // Intro text1
492 #define IC_INTRO_TEXT2 23 // Intro text2
493 
494 #define IC_TIME_ANIM 24 // Parte animazione che da' il tempo
495 #define IC_TIME_ANIM2 25 // Parte animazione che da' il tempo
496 #define IC_TIME_WALK_CHAR 26 // Parte camminata che da' il tempo
497 #define IC_TIME_RUN_CHAR 27 // Parte corsa che da' il tempo
498 #define IC_TIME_BACK_CHAR 28 // Parte camminata che da' il tempo
499 #define IC_TIME_WAIT_CAMERA 29 // Aspetta che la camera abbia finito prima di continuare
500 #define IC_TIME_WAIT 30 // Aspetta tempo prima di continuare
501 #define IC_TIME_FADOUT 31 // Aspetta che abbia finito il fadout prima di continuare
502 
503 /* -----------------27/06/00 14.49-------------------
504  * Espressioni Facciali
505  * --------------------------------------------------*/
506 #define EXPR_DEFAULT 0
507 #define EXPR_SORRIDENTE 1
508 #define EXPR_SECCATO 2
509 #define EXPR_SERIO 3
510 #define EXPR_DISPERATO 4
511 #define EXPR_STUPITO 5
512 #define EXPR_IMPAURITO 6
513 #define EXPR_TRISTE 7
514 #define EXPR_IRONICO 8
515 
516 /* -----------------17/03/98 10.20-------------------
517  * Rooms
518  * --------------------------------------------------*/
519 
520 #define rNULL 0
521 #define r13 1
522 #define r15 2
523 #define r17 3
524 #define r19 4
525 #define r1B 5
526 #define r1C 6
527 #define r1D 7
528 #define r1F 8
529 #define r21 9
530 #define r22 10
531 #define r23 11
532 #define r24 12
533 #define r25 13
534 #define r26 14
535 #define r27 15
536 #define r28 16
537 #define r29 17
538 #define r2A 18
539 #define r2B 19
540 #define r2C 20
541 #define r2D 21
542 #define r2E 22
543 #define r2F 23
544 #define r2G 24
545 #define r2H 25
546 #define r2I 26
547 #define r2L 27
548 #define r2M 28
549 #define r2N 29
550 #define r2O 30
551 #define r2P 31
552 #define r2Q 32
553 #define r2R 33
554 #define r2S 34
555 #define r2T 35
556 #define r31 36
557 #define r32 37
558 #define r33 38
559 #define r34 39
560 #define r35 40
561 #define r36 41
562 #define r37 42
563 #define r38 43
564 #define r39 44
565 #define r3a 45
566 #define r3b 46
567 #define r3c 47
568 #define r41 48
569 #define r42 49
570 #define r43 50
571 #define r44 51
572 #define r45 52
573 #define r46 53
574 #define r47 54
575 #define r48 55
576 #define r49 56
577 #define r4a 57
578 #define rXT 58
579 #define r21_dR212 59
580 #define r81 60
581 #define r82 61
582 #define r83 62
583 #define r84 63
584 #define r91 64
585 #define r92 65
586 #define r71 66
587 #define r72 67
588 #define r73 68
589 #define r74 69
590 #define r97 71
591 #define r98 72
592 #define r99 73
593 /* -----------------17/03/98 10.20-------------------
594  * Objs
595  * --------------------------------------------------*/
596 #define oNULL 0
597 
598 #define ocDARRELL 1
599 #define ocVICTORIA 2
600 #define ocCUOCO 3
601 #define ocDOMESTICA 4
602 #define ocGIARDINIERE 5
603 #define ocCUSTODE 6
604 #define ocSERVETTA 7
605 #define ocSUPERVISORE 8
606 #define ocMOGLIESUPERVISORE 9
607 #define ocMOGLIE_KIMONO 10
608 #define ocCACCIATORE 11
609 #define ocVECCHIO 12
610 #define ocCHIRURGO 13
611 #define ocTRADUTTORE 14
612 #define ocOROLOGIAIO 15
613 #define ocKRENN 16
614 #define ocDUKES 17
615 #define ocCORONA 18
616 #define ocVALENCIA 19
617 #define ocNOTAIO 20
618 #define ocMOORE 21
619 #define ocDARRELLALETTO 22
620 #define ocCACCIATOREMALPRESO 23
621 #define ocMOOREBUCATO 24
622 
623 #define ocLASTCHAR 24
624 
625 #define ocCURPLAYER 25
626 #define ocBOTH 25
627 
628 #define oCAMERAMAX 26
629 #define ocNOTRANS 26
630 
631 #define oTOOLTIPS 98
632 #define oNEXTPORTAL 99
633 
634 #define o21pXT 201
635 #define o21p22 202
636 #define o21PULSANTEASC 203
637 #define o21p24 204
638 #define o21As21BDX 205
639 #define o21As21BSX 206
640 #define o21Bs21A 207
641 #define o21s26DX 208
642 #define o21s26SX 209
643 #define o21p23 210
644 #define o21QUADROPORTONEDX 211
645 #define o21QUADROPORTONESX 212
646 #define o21QUADROCX 213
647 #define o21QUADROSX 214
648 #define o21DIVANOSCALE 215
649 #define o21DIVANO 216
650 #define o21DIVANOSOPPALCO 217
651 #define o21TAVOLINOPORTONE 218
652 #define o21TAVOLINOSCALE 219
653 #define o21TAVOLINOSOPPALCO 220
654 #define o21SEDIA1PORTONE 221
655 #define o21SEDIA2PORTONE 222
656 #define o21SEDIA3PORTONE 223
657 #define o21SEDIA1SCALE 224
658 #define o21SEDIA2SCALE 225
659 #define o21SEDIA1SOPPALCO 226
660 #define o21SEDIA2SOPPALCO 227
661 #define o21PENDOLO 228
662 #define o21PIANTA1 229
663 #define o21PIANTA2 230
664 #define o21PIANTA3 231
665 #define o21PIANTA4 232
666 #define o22PISCINA 233
667 #define o22TRAMPOLINO 234
668 #define o22SCALETTA 235
669 #define o22SKIMMER1 236
670 #define o22SKIMMER2 237
671 #define o22LETTINO1 238
672 #define o22LETTINO2 239
673 #define o22LETTINO3 240
674 #define o22LETTINO4 241
675 #define o22POLTRONA 242
676 #define o22LAMPADA 243
677 #define o22TAVOLINO 244
678 #define o22SEDIA1 245
679 #define o22SEDIA2 246
680 #define o22SEDIA3 247
681 #define o22pXT 248
682 #define o22PORTA33 249
683 #define o22p33 250
684 #define o22p21 251
685 #define o22BRACCIALE 252
686 #define o22LIBRO 253
687 #define o22PISCINASCHIUMA 254
688 #define o23ATASTO1 255
689 #define o23ATASTO2 256
690 #define o23ATASTO3 257
691 #define o23ATASTOA 258
692 #define o23BTASTO1 259
693 #define o23BTASTO2 260
694 #define o23BTASTO3 261
695 #define o23BTASTOA 262
696 #define o23CTASTO1 263
697 #define o23CTASTO2 264
698 #define o23CTASTO3 265
699 #define o23CTASTOA 266
700 #define o24PORTATRAMEZZOA 267
701 #define o24p21 268
702 #define o24MOBILETTOENTRATA 269
703 #define o24BOTTE1 270
704 #define o24BOTTE2 271
705 #define o24QUADRO 272
706 #define o24TAVOLO 273
707 #define o24SEDIA1 274
708 #define o24SEDIA2 275
709 #define o24SEDIA3 276
710 #define o24SEDIA4 277
711 #define o24SEDIA5 278
712 #define o24SEDIA6 279
713 #define o24SEDIA7 280
714 #define o24SEDIA8 281
715 #define o24SEDIA9 282
716 #define o24SEDIA10 283
717 #define o24CERVO 284
718 #define o24CINGHIALE 285
719 #define o24LUPO 286
720 #define o24FINESTRA1 287
721 #define o24CAMINO 288
722 #define o24OROLOGIO 289
723 #define o24CARRELLO 290
724 #define o24CASSAPANCA 291
725 #define o24ZUPPIERA 292
726 #define o24FINESTRA2 293
727 #define o24p2M 294
728 #define o24p25 295
729 #define o24CREDENZACH 296
730 #define o24CREDENZAAP 297
731 #define o24TOVAGLIECREDENZA 298
732 #define o24POSATECREDENZA 299
733 #define o24VASSOIO 300
734 #define o24TAZZINA 301
735 #define o24VASETTTOVASSOIO 302
736 #define o24BOCCIOLO 303
737 #define o24BOCCIOLOSANGUE 304
738 #define o24CHIAVETTAOROLOGIO 305
739 #define o24PORTATRAMEZZOB 306
740 #define o25CAPPA 307
741 #define o25FORNELLI 308
742 #define o25PIASTRE 309
743 #define o25FRIGGITRICE 310
744 #define o25PIANODILAVORO 311
745 #define o25UTENSILICUOCO 312
746 #define o25LAVELLOCAPPA 313
747 #define o25FORNOCH 314
748 #define o25FORNOAP 315
749 #define o25DISPLAYFORNO 316
750 #define o25TASTOONFORNO 317
751 #define o25TASTOOFFFORNO 318
752 #define o25TASTOPIUFORNO 319
753 #define o25TASTOMENOFORNO 320
754 #define o25CONTROLLIFORNO 321
755 #define o25FIALAAFORNO 322
756 #define o25FIALABFORNO 323
757 #define o25FIALABFORNOCALDA 324
758 #define o25p24 325
759 #define o25BIDONE1 326
760 #define o25LAVANDINO1 327
761 #define o25FINESTRALAVANDINO1 328
762 #define o25LAVANDINO2 329
763 #define o25LAVASTOVIGLIE 330
764 #define o25p2Q 331
765 #define o25pXT 332
766 #define o25APPENDIOGGETTI 333
767 #define o25GANCIO 334
768 #define o25CHIAVI 335
769 #define o25MOBILETTO 336
770 #define o25TAVOLO 337
771 #define o25SEDIA2 339
772 #define o25BOTTIGLIAVUOTA 340
773 #define o25BICCHIERE 341
774 #define o25NAVE 342
775 #define o25FOTO 344
776 #define o25FINESTRATAVOLO 345
777 #define o25BIDONE2 346
778 #define o25Ap25B 347
779 #define o25Bp25A 348
780 #define o25SCAFFALEMAGAZZINO 349
781 #define o25SACCHIMAGAZZINO 350
782 #define o25SCOPAMAGAZZINO 351
783 #define o25SECCHIOMAGAZZINO 352
784 #define o25BIDONEMAGAZZINO 353
785 #define o25SEDIAMAGAZZINO 354
786 #define o25APORTACELLA 355
787 #define o25PORTACELLA 356
788 #define o25SCAFFALECELLA 357
789 #define o25CONGELATORE1 358
790 #define o25CONGELATORE2CH 359
791 #define o25CONGELATORE2AP 360
792 #define o25CONGELATORE3 361
793 #define o25DISPLAYCONGELATORE 362
794 #define o25TASTOPIUCONGELATORE 363
795 #define o25TASTOMENOCONGELATORE 364
796 #define o25CONTROLLIFRIGO 365
797 #define o25FIALAACONGELATORE 366
798 #define o25FIALABCONGELATORE 367
799 #define o25FIALAACONGELATOREFREDDA 368
800 #define o26s2Q 369
801 #define o26PORTABALCONE 370
802 #define o26TAVOLINO1BAR 371
803 #define o26TAVOLINO2BAR 372
804 #define o26SEDIA1 373
805 #define o26SEDIA2 374
806 #define o26SEDIA3 375
807 #define o26SEDIA4 376
808 #define o26BANCONE 377
809 #define o26SPINEBIRRA 378
810 #define o26SCAFFALE 379
811 #define o26SHAKER 380
812 #define o26ZUCCHERIERA 381
813 #define o26TOVAGLIOLINI 382
814 #define o26SGABELLO1 383
815 #define o26SGABELLO2 384
816 #define o26SGABELLO3 385
817 #define o26SGABELLO4 386
818 #define o26LAMPADABANCONE 387
819 #define o26QUADRO1 388
820 #define o26QUADRO2 389
821 #define o26p23 390
822 #define o26PULSANTEASC 391
823 #define o26SEDIAASC 392
824 #define o26TENDONE1 393
825 #define o26TENDONE2 394
826 #define o26DIVANO 395
827 #define o26TAVOLINODIVANO 396
828 #define o26SEDIA5 397
829 #define o26SEDIA6 398
830 #define o26s21 399
831 #define o26STATUA1 400
832 #define o26STATUA2 401
833 #define o26POLTRONASCALA 402
834 #define o26TAVOLINOSCALA 403
835 #define o26SEDIA7 404
836 #define o26SEDIA8 405
837 #define o26POLTRONCINA 406
838 #define o26FESTONE 407
839 #define o27p2P 408
840 #define o27SPECCHIO 409
841 #define o27SBARRA 410
842 #define o27STEPPER1 411
843 #define o27STEPPER2 412
844 #define o27CYCLETTE 413
845 #define o27GAMBE 414
846 #define o27PANCHETTA 415
847 #define o27PETTORALI 416
848 #define o27DORSALI 417
849 #define o27RASTRELLIERA 418
850 #define o27PANCA 419
851 #define o27CONSOLESPENTA 420
852 #define o27VANOCH 421
853 #define o27VANOAP 422
854 #define o27BATTERIE 423
855 #define o27CONSOLEACCESA 424
856 #define o28TAVOLO 425
857 #define o28SEDIA1 426
858 #define o28SEDIA2 427
859 #define o28SEDIA3 428
860 #define o28SEDIA4 429
861 #define o28SEDIA5 430
862 #define o28SEDIA6 431
863 #define o28SEDIA7 432
864 #define o28LAMPADA1 433
865 #define o28LAMPADA2 434
866 #define o28LAMPADA3 435
867 #define o28LAMPADA4 436
868 #define o28LAMPADA5 437
869 #define o28LAMPADA6 438
870 #define o28LAMPADA7 439
871 #define o28p2Q 440
872 #define o28SCHEDARIO 441
873 #define o28CARTELLA1 442
874 #define o28CARTELLA2 443
875 #define o28TENDA1 444
876 #define o28TENDA2 445
877 #define o28MAPPAMONDO 446
878 #define o28MONITOR 447
879 #define o28PULSANTEMONITOR 448
880 #define o28LIBRI1 449
881 #define o28LIBRI2 450
882 #define o28LIBRO 451
883 #define o28REGISTRI1 452
884 #define o28REGISTRI2 453
885 #define o28REGISTRI3 454
886 #define o28TARGA1 455
887 #define o28TARGA2 456
888 #define o28CAMPIONE1 457
889 #define o28CAMPIONE2 458
890 #define o28BONSAI 459
891 #define o28WALKMAN 460
892 #define o28POSTER1 461
893 #define o28GRAFICO1 462
894 #define o28GRAFICO2 463
895 #define o28GRAFICO3 464
896 #define o28POSTER2 465
897 #define o28POSTER3 466
898 #define o28ANTEDXCH 467
899 #define o28ANTEDXAP 468
900 #define o28ANTECXCH 469
901 #define o28ANTECXAP 470
902 #define o28ANTESXCH 471
903 #define o28ANTESXAP 472
904 #define o29p2Q 473
905 #define o29PIANTAPORTA 474
906 #define o29LIBRI 475
907 #define o29REGISTRI 476
908 #define o29TARGA1 477
909 #define o29TARGA2 478
910 #define o29TARGA3 479
911 #define o29TARGA4 480
912 #define o29COPPA 481
913 #define o29PIANTALIBRERIA 482
914 #define o29PORTA 483
915 #define o29FINESTRA 484
916 #define o29ATTACCAPANNI 485
917 #define o29LAMPADA 486
918 #define o29SCRIVANIA 487
919 #define o29POLTRONA 488
920 #define o29SEDIA1 489
921 #define o29SEDIA2 490
922 #define o29PORTACENERE 491
923 #define o29CESTINO 492
924 #define o29PORTAFOTOCONJUDE 493
925 #define o29PORTAFOTOVUOTO 494
926 #define o29PORTAFOTOROVESCIATO 495
927 #define o29COMPUTER 496
928 #define o29SCANNER 497
929 #define o29TELEFONO 498
930 #define o29SIGARI 499
931 #define o29LAMPADASCRIVANIA 500
932 #define o29SCHEDARIO 501
933 #define o29FOTO1 502
934 #define o29FOTO2 503
935 #define o29FOTO3 504
936 #define o29FOTO4 505
937 #define o29FOTO5 506
938 #define o29FOTO6 507
939 #define o29FOTO7 508
940 #define o29FOTO8 509
941 #define o29INGRANDIMENTO 510
942 #define o29FOTOSCANNER 511
943 #define o2ATAVOLINO 512
944 #define o2Ap2Q 513
945 #define o2ATASTIERINO 514
946 #define o2ACASSACH 515
947 #define o2ATASTOROSSO 516
948 #define o2ABUSTASANGUE 517
949 #define o2ACUORE 518
950 #define o2ARENE 519
951 #define o2ACERVELLO 520
952 #define o2ASEDIA1 521
953 #define o2ACASETTI1 522
954 #define o2AOSCILLOSCOPIO 523
955 #define o2AMICROSCOPIO1 524
956 #define o2ACARTELLA 525
957 #define o2ACENTRIFUGA1 526
958 #define o2ATESTER1 527
959 #define o2APROVETTA 528
960 #define o2AFIALE 529
961 #define o2ASCATOLE 530
962 #define o2ACONTENITORE1 531
963 #define o2ACONTENITORE2 532
964 #define o2ACONTENITORE3 533
965 #define o2ACONDIZIONATORE 534
966 #define o2ASCHEDARIO 535
967 #define o2ASEDIA2 536
968 #define o2ACASSETTI2 537
969 #define o2ATESTER2 538
970 #define o2AMICROSCOPIO2 539
971 #define o2ACONTENITORE4 540
972 #define o2AACIDO 541
973 #define o2ASCAFFALE 542
974 #define o2ACASSETTI3 543
975 #define o2ASEDIA3 544
976 #define o2ALETTORE 545
977 #define o2ACASSETTOAP 546
978 #define o2ASIRINGA 547
979 #define o2ASCANNER 548
980 #define o2ACENTRIFUGA2 549
981 #define o2ACOMPUTER 550
982 #define o2ATASTIERACOMPUTER 551
983 #define o2AVETRO 552
984 #define o2APORTA 553
985 #define o2BLAVANDINO 554
986 #define o2Bp2O 555
987 #define o2BPULSANTEASC 556
988 #define o2BDIVANO 557
989 #define o2BAp2BB 558
990 #define o2BBp2BA 559
991 #define o2BAp2BD 560
992 #define o2BDp2BA 561
993 #define o2BAp2BC 562
994 #define o2BCp2BA 563
995 #define o2BPANCHINA 564
996 #define o2BBRACIERE 565
997 #define o2BAPPENDIABITIM 566
998 #define o2BARMADIETTOMCH 567
999 #define o2BARMADIETTOMAP 568
1000 #define o2BAPPENDIABITIF 569
1001 #define o2BARMADIETTOFCH 570
1002 #define o2BARMADIETTOFAP 571
1003 #define o2BBORSA 572
1004 #define o2BSACCHETTO 573
1005 #define o2BDISPENSER 574
1006 #define o2Cp2R 575
1007 #define o2Cp2E 576
1008 #define o2Cp2F 577
1009 #define o2Cp2T 578
1010 #define o2Cp2S 579
1011 #define o2CQUADRO1 580
1012 #define o2CBUSTO 581
1013 #define o2Cp2O 582
1014 #define o2Cp23 583
1015 #define o2CCASSAPANCA 584
1016 #define o2CPIANTA1 585
1017 #define o2CQUADRO2 586
1018 #define o2CQUADRO3 587
1019 #define o2CQUADRO4 588
1020 #define o2CPULSANTEASC2O 589
1021 #define o2CPULSANTEASC23 590
1022 #define o2CPIANTA2 591
1023 #define o2Dp2P 592
1024 #define o2DSTEREO 593
1025 #define o2DTV 594
1026 #define o2DCASSA1 595
1027 #define o2DCASSA2 596
1028 #define o2DLIBRERIA 597
1029 #define o2DQUADRO1 598
1030 #define o2DVETRATA 599
1031 #define o2DTAVOLINO 600
1032 #define o2DSEDIA1 601
1033 #define o2DSEDIA2 602
1034 #define o2DDIVANO 603
1035 #define o2DQUADRO2 604
1036 #define o2DPORTACAMERA 605
1037 #define o2DCAMINO 606
1038 #define o2DPIANTA1 607
1039 #define o2DPIANTA2 608
1040 #define o2DVASSOIO 609
1041 #define o2DTAZZA 610
1042 #define o2DROSA 611
1043 #define o2DQUADRODIVANO 612
1044 #define o2DCASSAFORTECH 613
1045 #define o2DTASTIERINO 614
1046 #define o2D0 615
1047 #define o2D1 616
1048 #define o2D2 617
1049 #define o2D3 618
1050 #define o2D4 619
1051 #define o2D5 620
1052 #define o2D6 621
1053 #define o2D7 622
1054 #define o2D8 623
1055 #define o2D9 624
1056 #define o2DC 625
1057 #define o2DE 626
1058 #define o2DCASSAFORTEAP 627
1059 #define o2DSOLDI 628
1060 #define o2DTITOLI 629
1061 #define o2DTARGA 630
1062 #define o2DSESTERZO 631
1063 #define o2DANTA1 632
1064 #define o2DANTA2 633
1065 #define o2DANTA3 634
1066 #define o2DANTA4 635
1067 #define o2Ep2C 636
1068 #define o2EpBAGNO 637
1069 #define o2Ep15 638
1070 #define o2ELETTO 639
1071 #define o2ECOMODINO 640
1072 #define o2ELAMPADACOMODINO 641
1073 #define o2EMOBILEANTE 642
1074 #define o2ESCRITTOIO 643
1075 #define o2ELAMPADASCRITTOIO 644
1076 #define o2ESEDIA 645
1077 #define o2ECAMINO 646
1078 #define o2EQUADRO1 647
1079 #define o2EQUADRO2 648
1080 #define o2EQUADRO3 649
1081 #define o2EQUADRO4 650
1082 #define o2EMOBILECASSETTI 651
1083 #define o2Fp2C 652
1084 #define o2FpBAGNO 653
1085 #define o2Fp15 654
1086 #define o2FLETTO 655
1087 #define o2FCOMODINO 656
1088 #define o2FLAMPADACOMODINO 657
1089 #define o2FMOBILEANTE 658
1090 #define o2FSCRITTOIO 659
1091 #define o2FLAMPADASCRITTOIO 660
1092 #define o2FSEDIA1 661
1093 #define o2FSEDIA2 662
1094 #define o2FCAMINO 663
1095 #define o2FQUADRO1 664
1096 #define o2FQUADRO2 665
1097 #define o2FQUADRO3 666
1098 #define o2FQUADRO4 667
1099 #define o2FMOBILECASSETTI 668
1100 #define o2Gp2H 669
1101 #define o2GCALDAIA 670
1102 #define o2GESTINTORE1 671
1103 #define o2GTUBOCALDAIA 672
1104 #define o2GPOMPADX 673
1105 #define o2GPOMPASX 674
1106 #define o2GMANOMETRODX 675
1107 #define o2GMANOMETROSX 676
1108 #define o2GTUBOPOMPE 677
1109 #define o2GFILTRODXCH 678
1110 #define o2GFILTROSXCH 679
1111 #define o2GFILTRODXAP 680
1112 #define o2GFILTROSXAP 681
1113 #define o2GFILTRODXAPDETERSIVO 682
1114 #define o2GFILTROSXAPDETERSIVO 683
1115 #define o2GCONSOLE 684
1116 #define o2GON 685
1117 #define o2GOFF 686
1118 #define o2GBIDONE 687
1119 #define o2GTANICADX 688
1120 #define o2GTANICASX 689
1121 #define o2GSACCHI 690
1122 #define o2GESTINTORE2 691
1123 #define o2Hp2O 692
1124 #define o2HPULSANTEASC 693
1125 #define o2Hp2L 694
1126 #define o2Hp2G 695
1127 #define o2HPALLET 696
1128 #define o2HCASSA 697
1129 #define o2HPANNELLO 698
1130 #define o2HSCATOLONE1 699
1131 #define o2HSCATOLONE2 700
1132 #define o2HSCATOLAELETTRICA 701
1133 #define o2Hp2I 702
1134 #define o2Ip2H 703
1135 #define o2IBIDONE 704
1136 #define o2ISCOPA 705
1137 #define o2IMOBILE 706
1138 #define o2ILENZUOLA 707
1139 #define o2IASCIUGAMANI 708
1140 #define o2IFLACONE1 709
1141 #define o2IFLACONE2 710
1142 #define o2IFLACONE3 711
1143 #define o2ICESTA1 712
1144 #define o2IASSE 713
1145 #define o2IFERRO 714
1146 #define o2ITAVOLO 715
1147 #define o2IMACCHINACUCIRE 716
1148 #define o2ICAMICIA 717
1149 #define o2IMAGLIETTE 718
1150 #define o2ISEDIA1 719
1151 #define o2ISEDIA2 720
1152 #define o2ICESTA2 721
1153 #define o2ILAVATRICENUOVA 722
1154 #define o2ILAVATRICEVECCHIA 723
1155 #define o2IDISPENSER 724
1156 #define o2Lp2H 725
1157 #define o2LBOTTEPORTA 726
1158 #define o2LDAMIGIANA1 727
1159 #define o2LDAMIGIANA2 728
1160 #define o2LBOTTE1 729
1161 #define o2LBOTTE2 730
1162 #define o2LCASSETTA 731
1163 #define o2LCASSA 732
1164 #define o2LFIASCO 733
1165 #define o2LBOTTIGLIADX 734
1166 #define o2LBOTTIGLIASX 735
1167 #define o2LIMBUTI 736
1168 #define o2LFIASCOMENSOLA 737
1169 #define o2LCASSETTE 738
1170 #define o2LCASSABASSA 739
1171 #define o2LSGABELLO 740
1172 #define o2LSCAFFALE 741
1173 #define o2MSPECCHIO 742
1174 #define o2MLAVANDINOSPECCHIO 743
1175 #define o2MDISPENSERDXLAV 744
1176 #define o2MDISPENSERSXLAV 745
1177 #define o2Mp24 746
1178 #define o2MPIANTA1 747
1179 #define o2MMOBILETTO1 748
1180 #define o2MMOBILETTO2 749
1181 #define o2MPIANTA2 750
1182 #define o2MAp2MD 751
1183 #define o2MDp2MA 752
1184 #define o2MAp2MC 753
1185 #define o2MCp2MA 754
1186 #define o2MLAVANDINOM 755
1187 #define o2MLAVANDINOF 756
1188 #define o2MBIDETM 757
1189 #define o2MBIDETF 758
1190 #define o2MWCM 759
1191 #define o2MWMF 760
1192 #define o2MLAVANDINODOCCE 761
1193 #define o2MDISPENDERLAVDOCCE 762
1194 #define o2MMOBILE 763
1195 #define o2MANTECHMOBILE 764
1196 #define o2MANTEAPMOBILE 765
1197 #define o2MSAPONETTE 766
1198 #define o2MFLACONE1 767
1199 #define o2MFLACONE2 768
1200 #define o2MACIDO 769
1201 #define o2MPIANTA3 770
1202 #define o2MPIANTA4 771
1203 #define o2MPIANTA5 772
1204 #define o2MBp2MF 773
1205 #define o2MFp2MB 774
1206 #define o2MBp2ME 775
1207 #define o2MEp2MB 776
1208 #define o2MPANCHINA1M 777
1209 #define o2MPANCHINA2M 778
1210 #define o2MPANCHINA1F 779
1211 #define o2MPANCHINA2F 780
1212 #define o2MATTACCAPANNIM 781
1213 #define o2MATTACCAPANNIF 782
1214 #define o2MARMADIETTOM 783
1215 #define o2MARMADIETTOF 784
1216 #define o2MPORTA1M 785
1217 #define o2MPORTA2M 786
1218 #define o2MPORTA1F 787
1219 #define o2MPORTA2F 788
1220 #define o2Mp2O 789
1221 #define o2MPULSANTEASC 790
1222 #define o2MFLACONELAVANDINO 791
1223 #define o2OATASTOU 792
1224 #define o2OATASTO0 793
1225 #define o2OATASTO1 794
1226 #define o2OATASTO2 795
1227 #define o2OATASTO3 796
1228 #define o2OATASTOSTOP 797
1229 #define o2OATASTOALLARME 798
1230 #define o2OATASTOINTERFONO 799
1231 #define o2OBTASTOU 800
1232 #define o2OBTASTO0 801
1233 #define o2OBTASTO1 802
1234 #define o2OBTASTO2 803
1235 #define o2OBTASTO3 804
1236 #define o2OBTASTOSTOP 805
1237 #define o2OBTASTOALLARME 806
1238 #define o2OBTASTOINTERFONO 807
1239 #define o2OCTASTOU 808
1240 #define o2OCTASTO0 809
1241 #define o2OCTASTO1 810
1242 #define o2OCTASTO2 811
1243 #define o2OCTASTO3 812
1244 #define o2OCTASTOSTOP 813
1245 #define o2OCTASTOALLARME 814
1246 #define o2OCTASTOINTERFONO 815
1247 #define o2ODTASTOU 816
1248 #define o2ODTASTO0 817
1249 #define o2ODTASTO1 818
1250 #define o2ODTASTO2 819
1251 #define o2ODTASTO3 820
1252 #define o2ODTASTOSTOP 821
1253 #define o2ODTASTOALLARME 822
1254 #define o2ODTASTOINTERFONO 823
1255 #define o2OETASTOU 824
1256 #define o2OETASTO0 825
1257 #define o2OETASTO1 826
1258 #define o2OETASTO2 827
1259 #define o2OETASTO3 828
1260 #define o2OETASTOSTOP 829
1261 #define o2OETASTOALLARME 830
1262 #define o2OETASTOINTERFONO 831
1263 #define o2Pp2D 832
1264 #define o2PPIANTA1 833
1265 #define o2PPIANTA2 834
1266 #define o2PCAMINETTO 835
1267 #define o2PCANDELABRO1 836
1268 #define o2PCANDELABRO2 837
1269 #define o2POROLOGIO 838
1270 #define o2Pp2O 839
1271 #define o2PPULSANTEASC 840
1272 #define o2Pp27 841
1273 #define o2Qs26 842
1274 #define o2QQUADRO1 843
1275 #define o2QTAVOLINO 844
1276 #define o2QSEDIA1 845
1277 #define o2QSEDIA2 846
1278 #define o2QSEDIA3 847
1279 #define o2QPORTACENERE1 848
1280 #define o2QLAMPADATAVOLINO 849
1281 #define o2QPORTACENERETAVOLINO 850
1282 #define o2QFINESTRA 851
1283 #define o2Qs25 852
1284 #define o2QQUADRO2 853
1285 #define o2QATTACCAPANNI 854
1286 #define o2QPIANTA1 855
1287 #define o2Qp28 856
1288 #define o2Qp29 857
1289 #define o2Qp2N 858
1290 #define o2QQUADRO3 859
1291 #define o2QPIANTA2 860
1292 #define o2QQUADRO4 861
1293 #define o2QPORTACENERE2 862
1294 #define o2Qp2A 863
1295 #define o2QTASTIERINO 864
1296 #define o2Q0 865
1297 #define o2Q1 866
1298 #define o2Q2 867
1299 #define o2Q3 868
1300 #define o2Q4 869
1301 #define o2Q5 870
1302 #define o2Q6 871
1303 #define o2Q7 872
1304 #define o2Q8 873
1305 #define o2Q9 874
1306 #define o2QC 875
1307 #define o2QE 876
1308 #define o2QLAMPADA 877
1309 #define o2QQUADRO5 878
1310 #define o2QQUADRO6 879
1311 #define o2QQUADRO7 880
1312 #define o2Rp2C 881
1313 #define o2RPORTA 882
1314 #define o2RFINESTRA1 883
1315 #define o2RFINESTRA2 884
1316 #define o2RLETTO 885
1317 #define o2RCOMODINOSX 886
1318 #define o2RCOMODINODX 887
1319 #define o2RARMADIOANTE 888
1320 #define o2RSEPARE 889
1321 #define o2RCAMINETTO 890
1322 #define o2RSCRITTOIO 891
1323 #define o2RLAMPADA 892
1324 #define o2RSEDIA 893
1325 #define o2RQUADRO1 894
1326 #define o2RQUADRO2 895
1327 #define o2RQUADRO3 896
1328 #define o2RARMADIOCASSETTI 897
1329 #define o2RCASSETTOSCRITTOIOAP 898
1330 #define o2RBUSTE 899
1331 #define o2Sp2C 900
1332 #define o2SQUADRO1 901
1333 #define o2SPORTA 902
1334 #define o2STAVOLINO1 903
1335 #define o2SLETTO 904
1336 #define o2SCOMODINODX 905
1337 #define o2SCOMODINOSX 906
1338 #define o2SLAMPADADX 907
1339 #define o2SLAMPADASX 908
1340 #define o2SSEDIA1 909
1341 #define o2SARMADIOANTE 910
1342 #define o2SCASSAPANCA 911
1343 #define o2SCUSCINO1 912
1344 #define o2SCUSCINO2 913
1345 #define o2SPENDOLA 914
1346 #define o2SPOLTRONA1 915
1347 #define o2SPOLTRONA2 916
1348 #define o2SLAMPADA 917
1349 #define o2STAVOLINO2 918
1350 #define o2SPORTACENERE 919
1351 #define o2SCASSETTIERA 920
1352 #define o2SVASO 921
1353 #define o2SLIBRI 922
1354 #define o2SPIATTINO 923
1355 #define o2STENDADX 924
1356 #define o2STENDASX 925
1357 #define o2SQUADRO2 926
1358 #define o2SQUADRO3 927
1359 #define o2SQUADRO4 928
1360 #define o2SQUADRO5 929
1361 #define o2SARMADIOCASSETTI 930
1362 #define o2Tp2C 931
1363 #define o2TPORTA 932
1364 #define o2TTENDA 933
1365 #define o2TLETTO 934
1366 #define o2TCOMODINOSX 935
1367 #define o2TCOMODINODX 936
1368 #define o2TMOBILEANTE 937
1369 #define o2TCASSETTIERA 938
1370 #define o2TLAMPADA 939
1371 #define o2TSEDIA 940
1372 #define o2TQUADRO1 941
1373 #define o2TQUADRO2 942
1374 #define o2TQUADRO3 943
1375 #define o2TMOBILECASSETTI 944
1376 #define o31INGRANAGGI 945
1377 #define o31TUBO 946
1378 #define o31MACCHINAAP 947
1379 #define o31LEVA 948
1380 #define o31MACCHINAAPINGRANAGGGIO 949
1381 #define o31ANELLO 950
1382 #define o31SEGATURA 951
1383 #define o31s32 952
1384 #define o31BOTOLACH 953
1385 #define o31BOTOLAAP 954
1386 #define o31DISCOSANO 955
1387 #define o31DISCOROTTO 956
1388 #define o31DISCONUOVO 957
1389 #define o31BAULECH 958
1390 #define o31LEVETTA1 959
1391 #define o31LEVETTA2 960
1392 #define o31LEVETTA3 961
1393 #define o31LEVETTA4 962
1394 #define o31LEVETTA5 963
1395 #define o31BAULEAP 964
1396 #define o31DISCOBAULE 965
1397 #define o31ROBABAULE 966
1398 #define o31DISCOROTTOPAVIMENTO 967
1399 #define o31ALLOGGIAMENTO 968
1400 #define o31CRISTALLO 969
1401 #define o31CRISTALLOATTIVATO 970
1402 #define o31MACCHINACH 971
1403 #define o32s31 972
1404 #define o32LASTRONE 973
1405 #define o32LASTRONEMOSSO 974
1406 #define o32LEVA 975
1407 #define o33p35 976
1408 #define o33p22 977
1409 #define o33s36 978
1410 #define o33OROLOGIO 979
1411 #define o33LANCETTAHSX 980
1412 #define o33LANCETTAMSX 981
1413 #define o33LANCETTAHDX 982
1414 #define o33LANCETTAMDX 983
1415 #define o33DIVANETTO 984
1416 #define o33MOBILETTO 985
1417 #define o33LAMPADA 986
1418 #define o33QUADROPASSAGGIO 987
1419 #define o33QUADRO1 988
1420 #define o33QUADROOROLOGIO 989
1421 #define o33QUADROLAMAPADA 990
1422 #define o33QUADROSCALA 991
1423 #define o34ALTARE 992
1424 #define o34SFERA 993
1425 #define o34QUADRANTESFERA 994
1426 #define o34LASTRADX 995
1427 #define o34LASTRASX 996
1428 #define o34CANDELABRODX 997
1429 #define o34CANDELABROSX 998
1430 #define o34CANDELABRODXD 999
1431 #define o34CANDELABROSXD 1000
1432 #define o34FACCIABIANCA 1001
1433 #define o34FACCIANERA 1002
1434 #define o34DIARIOCH 1003
1435 #define o34PERGAMENA 1004
1436 #define o34BORSONECH 1005
1437 #define o34BORSONEAP 1006
1438 #define o34SCATOLA 1007
1439 #define o34MUROPORTA 1008
1440 #define o34LEVA 1009
1441 #define o34SFERASU 1010
1442 #define o34CRISTALLO1 1011
1443 #define o34CRISTALLO2 1012
1444 #define o34CRISTALLO3 1013
1445 #define o34CRISTALLO4 1014
1446 #define o34CRISTALLO5 1015
1447 #define o34CRISTALLO6 1016
1448 #define o34DIARIOAP 1017
1449 #define o35CASSETTIERA 1018
1450 #define o35TAVOLO 1019
1451 #define o35SEDIATAVOLO 1020
1452 #define o35DIVANO 1021
1453 #define o35SEDIADIVANODX 1022
1454 #define o35SEDIADIVANOSX 1023
1455 #define o35TAVOLINO 1024
1456 #define o35VASETTOTAVOLINO 1025
1457 #define o35CREDENZA 1026
1458 #define o35CHIODO 1027
1459 #define o35QUADRO 1028
1460 #define o35SEDIASX 1029
1461 #define o35SEDIACX 1030
1462 #define o35SEDIADX 1031
1463 #define o35VASOSX 1032
1464 #define o35VASODX 1033
1465 #define o35TENDASX 1034
1466 #define o35TENDACX 1035
1467 #define o35TENDADX 1036
1468 #define o35INTERRUTTORE 1037
1469 #define o35p32 1038
1470 #define o35CREDENZASPOSTATA 1039
1471 #define o36p39 1040
1472 #define o36p37 1041
1473 #define o36p38 1042
1474 #define o36QUADRO1 1043
1475 #define o36QUADRO2 1044
1476 #define o36s32 1045
1477 #define o36TAVOLINO 1046
1478 #define o36SPECCHIO 1047
1479 #define o36BILANCIA 1048
1480 #define o36PIATTODX 1049
1481 #define o36PIATTOSX 1050
1482 #define o36SESTERZODX 1051
1483 #define o36SESTERZOSX 1052
1484 #define o36INCENSODX 1053
1485 #define o36INCENSOSX 1054
1486 #define o37p36 1055
1487 #define o37QUADROCAMINO 1056
1488 #define o37CAMINO 1057
1489 #define o37PIANOFORTE 1058
1490 #define o37SGABELLOPIANOFORTE 1059
1491 #define o37LIBRERIA 1060
1492 #define o37CILINDRO 1061
1493 #define o37LIBRO 1062
1494 #define o37TENDA 1063
1495 #define o37SCRIVANIA 1064
1496 #define o37POLTRONA 1065
1497 #define o37SEDIASX 1066
1498 #define o37SEDIADX 1067
1499 #define o37FONOGRAFO 1068
1500 #define o37FONOGRAFOCILINDRO 1069
1501 #define o37LAMPADA 1070
1502 #define o37QUADRO 1071
1503 #define o37QUADROANNA 1072
1504 #define o37BACHECA 1073
1505 #define o37QUADRODX 1074
1506 #define o37QUADROSX 1075
1507 #define o38p36 1076
1508 #define o38PANCA1 1077
1509 #define o38PANCA2 1078
1510 #define o38LIBRERIA 1079
1511 #define o38TENDASX 1080
1512 #define o38TENDADX 1081
1513 #define o38BACHECA 1082
1514 #define o38SESTANTI 1083
1515 #define o38MANOSCRITTO 1084
1516 #define o38CANNOCCHIALE 1085
1517 #define o38TELESCOPIO1 1086
1518 #define o38SCALA 1087
1519 #define o38FINESTRASX 1088
1520 #define o38FINESTRADX 1089
1521 #define o38TAVOLO 1090
1522 #define o38TELESCOPIO2 1091
1523 #define o38SGABELLO 1092
1524 #define o38SEDIASX 1093
1525 #define o38SEDIADX 1094
1526 #define o38QUADRO1 1095
1527 #define o38MAPPA1 1096
1528 #define o38MAPPA2 1097
1529 #define o38QUADRO2 1098
1530 #define o38QUADRO3 1099
1531 #define o38MACCHINA 1100
1532 #define o38MANOVELLA 1101
1533 #define o39SCAFFALE1 1102
1534 #define o39SCAFFALE2 1103
1535 #define o39p36 1104
1536 #define o39QUADRO1 1105
1537 #define o39PENDOLADX 1106
1538 #define o39PENDOLASX 1107
1539 #define o39BACHECADX 1108
1540 #define o39BACHECASX 1109
1541 #define o39TENDA1 1110
1542 #define o39TENDA2 1111
1543 #define o39TENDA3 1112
1544 #define o39PENDOLO1 1113
1545 #define o39PENDOLO2 1114
1546 #define o39TAVOLINO 1115
1547 #define o39CANDELABRO 1116
1548 #define o39TAVOLO 1117
1549 #define o39OROLOGIO 1118
1550 #define o39SCOMPARTOCH 1119
1551 #define o39SCOMPARTOAP 1120
1552 #define o39RETTANGOLO 1121
1553 #define o39TONDO 1122
1554 #define o39SEMICERCHIO 1123
1555 #define o39CRISTALLO 1124
1556 #define o39SFERA 1125
1557 #define o39COLLANA 1126
1558 #define o39ANGELO 1127
1559 #define o39CRISTALLOATTIVATO 1128
1560 #define o3BLAPIDI 1129
1561 #define o3Bs3C 1130
1562 #define o3BFESSURA 1131
1563 #define o3BALTARE 1132
1564 #define o3BSCULTURABRACCIALI 1133
1565 #define o3BSCULTURA 1134
1566 #define o3BCOPPABRACCIALI 1135
1567 #define o3BCOPPA 1136
1568 #define o3BSESTERZOBRACCIALI 1137
1569 #define o3BSESTERZO 1138
1570 #define o3B1DOSEBRACCIALI 1139
1571 #define o3B1DOSE 1140
1572 #define o3B2DOSIBRACCIALI 1141
1573 #define o3B2DOSI 1142
1574 #define o3BNICCHIA 1143
1575 #define o3BLASTRA 1144
1576 #define o3CpXT 1145
1577 #define o3CALTARE 1146
1578 #define o3Cs3B 1147
1579 #define o3CSERRATURACH 1148
1580 #define o3CSERRATURAAP 1149
1581 #define o3CSCALA 1150
1582 #define o13p12 1151
1583 #define o13SCRITTOIO 1152
1584 #define o13LIBRERIA 1153
1585 #define o13MANGIME 1154
1586 #define o13SCALPELLO 1155
1587 #define o13STATUETTE 1156
1588 #define o13LAMPADA 1157
1589 #define o13CUSTODIA 1158
1590 #define o13FINESTRA 1159
1591 #define o13TENDA 1160
1592 #define o13PORTA 1161
1593 #define o13QUADRO1 1162
1594 #define o13QUADRO2 1163
1595 #define o13QUADRO3 1164
1596 #define o13MOBILE 1165
1597 #define o13LAMPADAMOBILE 1166
1598 #define o13COMODINO 1167
1599 #define o13VASO 1168
1600 #define o13TAVOLINO 1169
1601 #define o13POLTRONA 1170
1602 #define o13CREDENZA 1171
1603 #define o13DIVANETTO 1172
1604 #define o15COLONNINATORRE 1173
1605 #define o15COLONNINA 1174
1606 #define o15p2E 1175
1607 #define o15p2F 1176
1608 #define o15BASSORILIEVO1 1177
1609 #define o15BASSORILIEVO2 1178
1610 #define o15CREPAESTERNA 1179
1611 #define o15OROLOGIO 1180
1612 #define o15INTONACO 1181
1613 #define o15QUADRANTE 1182
1614 #define o15PASSAGGIO 1183
1615 #define o15BRECCIA 1184
1616 #define o17p16 1185
1617 #define o17AUTOSPORTIVA 1186
1618 #define o17FORD 1187
1619 #define o17FURGONE 1188
1620 #define o17PORTELLONE 1189
1621 #define o17PORTELLONECH 1190
1622 #define o17PORTELLONEAP 1191
1623 #define o17SACCO 1192
1624 #define o17SACCHI 1193
1625 #define o17COMPUTER 1194
1626 #define o17SARACINESCA 1195
1627 #define o17SERRATURA 1196
1628 #define o17ESTINTORE 1197
1629 #define o17CAVETTO 1198
1630 #define o19p18 1199
1631 #define o19TARGA 1200
1632 #define o19PANCHINA1 1201
1633 #define o19SCACCHIERA 1202
1634 #define o19BAMBOLA 1203
1635 #define o19T01 1204
1636 #define o19T02 1205
1637 #define o19T03 1206
1638 #define o19T04 1207
1639 #define o19T05 1208
1640 #define o19T06 1209
1641 #define o19T07 1210
1642 #define o19T08 1211
1643 #define o19T09 1212
1644 #define o19T10 1213
1645 #define o19T11 1214
1646 #define o19T12 1215
1647 #define o19T13 1216
1648 #define o19T14 1217
1649 #define o19T15 1218
1650 #define o19T16 1219
1651 #define o19T17 1220
1652 #define o19T18 1221
1653 #define o19T19 1222
1654 #define o19T20 1223
1655 #define o19T21 1224
1656 #define o19T22 1225
1657 #define o19T23 1226
1658 #define o19T24 1227
1659 #define o19T25 1228
1660 #define o19T26 1229
1661 #define o19T27 1230
1662 #define o19T28 1231
1663 #define o19T29 1232
1664 #define o19T30 1233
1665 #define o19T31 1234
1666 #define o19T32 1235
1667 #define o19T33 1236
1668 #define o19T34 1237
1669 #define o19T35 1238
1670 #define o19T36 1239
1671 #define o19T37 1240
1672 #define o19T38 1241
1673 #define o19T39 1242
1674 #define o19T40 1243
1675 #define o19T41 1244
1676 #define o19T42 1245
1677 #define o19T43 1246
1678 #define o19T44 1247
1679 #define o19T45 1248
1680 #define o19T46 1249
1681 #define o19T47 1250
1682 #define o19T48 1251
1683 #define o19T49 1252
1684 #define o19T50 1253
1685 #define o19T51 1254
1686 #define o19T52 1255
1687 #define o19T53 1256
1688 #define o19T54 1257
1689 #define o19T55 1258
1690 #define o19T56 1259
1691 #define o19T57 1260
1692 #define o19T58 1261
1693 #define o19T59 1262
1694 #define o19T60 1263
1695 #define o19T61 1264
1696 #define o19T62 1265
1697 #define o19T63 1266
1698 #define o19T64 1267
1699 #define o19CANDELIERE1 1268
1700 #define o19CANDELIERE2 1269
1701 #define o19PANCHINA2 1270
1702 #define o1Bp1A 1271
1703 #define o1Bp1C 1272
1704 #define o1BAIUOLA1 1273
1705 #define o1BAIUOLA2 1274
1706 #define o1BARMADIETTOCH 1275
1707 #define o1BARMADIETTOAP 1276
1708 #define o1BUTENSILI 1277
1709 #define o1BBUSTE 1278
1710 #define o1BFLACONI 1279
1711 #define o1BSCATOLONE 1280
1712 #define o1BCARTONE 1281
1713 #define o1Cp1B 1282
1714 #define o1CFONTANA 1283
1715 #define o1CSTATUA 1284
1716 #define o1CBOCCA 1285
1717 #define o1Cs41 1286
1718 #define o1CALBERO1 1287
1719 #define o1CALBERO2 1288
1720 #define o1CALBERO3 1289
1721 #define o1CALBERO4 1290
1722 #define o1DBRECCIA 1291
1723 #define o1DCREDENZACH 1292
1724 #define o1DCREDENZAAP 1293
1725 #define o1DVALIGETTACREDENZA 1294
1726 #define o1DVALIGETTACH 1295
1727 #define o1DSWITCH1 1296
1728 #define o1DSWITCH2 1297
1729 #define o1DSWITCH3 1298
1730 #define o1DSWITCH4 1299
1731 #define o1DSWITCH5 1300
1732 #define o1DTASTO 1301
1733 #define o1DVALIGETTAAP 1302
1734 #define o1DAUDIOCASSETTA 1303
1735 #define o1DBANCONOTE 1304
1736 #define o1DBOTTIGLIE 1305
1737 #define o1DCESTA 1306
1738 #define o1DBARATTOLI 1307
1739 #define o1DTRONCHESE 1308
1740 #define o1DSEMENTI 1309
1741 #define o1DSACCHI 1310
1742 #define o1DVASI 1311
1743 #define o1DDAMIGIANA 1312
1744 #define o1DFALCIATRICE 1313
1745 #define o1DSCALA 1314
1746 #define o1DSEMENTITERRA 1315
1747 #define o1Fs1A 1316
1748 #define o1FACQUA 1317
1749 #define o1FSBARREDX 1318
1750 #define o1FSBARRESX 1319
1751 #define o1FVARCO 1320
1752 #define o1FDETRITI 1321
1753 #define o1FMACCHINARIO 1322
1754 #define o1FPULSANTE 1323
1755 #define o1FPULSANTEFUSO 1324
1756 #define o1FLEVAGIU 1325
1757 #define o1FLEVASU 1326
1758 #define o1FCRISTALLODX 1327
1759 #define o1FCRISTALLOSX 1328
1760 #define o1FPORTA 1329
1761 #define o1FTUBO 1330
1762 #define o1FINDICATORE1 1332
1763 #define o1FINDICATORE2 1333
1764 #define o1FINDICATORE3 1334
1765 #define o1FINDICATORE4 1335
1766 #define o1FINDICATORE5 1336
1767 #define oXT11p21 1337
1768 #define oXT11CANCELLO 1338
1769 #define oXT11ALBERO1 1339
1770 #define oXT11ALBERO2 1340
1771 #define oXT11ALBERO3 1341
1772 #define oXT11SIEPE 1342
1773 #define oXT12CASACUSTODE 1343
1774 #define oXT12p13 1344
1775 #define oXT12ALBERO 1345
1776 #define oXT14ALBERO 1346
1777 #define oXT14PIUMA 1347
1778 #define oXT14BASAMENTO 1348
1779 #define oXT14NIDO 1349
1780 #define oXT14OCCHIALI 1350
1781 #define oXT14PIANTA 1351
1782 #define oXT14VASO 1352
1783 #define oXT14SACCHETTO 1353
1784 #define oXT14p3C 1354
1785 #define oXT1ACOLOMBAVOLA 1355
1786 #define oXT16PORTA 1356
1787 #define oXT16p17 1357
1788 #define oXT16SARACINESCA 1358
1789 #define oXT16SIEPI 1359
1790 #define oXT16ALBERI 1360
1791 #define oXT18p19 1361
1792 #define oXT18ROSETO 1362
1793 #define oXT18INTONACO 1363
1794 #define oXT18MAUSOLEO 1364
1795 #define oXT18SCACCHIERA 1365
1796 #define oXT18p25 1366
1797 #define oXT18ALBERO 1367
1798 #define oXT1Ap1B 1368
1799 #define oXT1ABUCO1 1369
1800 #define oXT1ABUCO2 1370
1801 #define oXT1AVETRI 1371
1802 #define oXT1AVOLIERA 1372
1803 #define oXT1ASPORTELLO 1373
1804 #define oXT1ALUCCHETTO 1374
1805 #define oXT1AFINESTRA 1375
1806 #define oXT1Ap22 1376
1807 #define oXT1APOZZO 1377
1808 #define oXT1AANTECH 1378
1809 #define oXT1AANTEAP 1379
1810 #define oXT1AALBERO 1380
1811 #define oXT1ASASSO 1381
1812 #define oXT1ABIDONE 1382
1813 #define oXT1ABOTTIGLIA 1383
1814 #define oXT1ECASAGIARDINIERE 1384
1815 #define oXT1EPORTA 1385
1816 #define oXT1ETARGHETTA 1386
1817 #define oXT1ELAVABO 1387
1818 #define oXT1ETESTA1 1388
1819 #define oXT1ETESTA2 1389
1820 #define oXT1EALBERO1 1390
1821 #define oXT1EALBERO2 1391
1822 #define oXT1EFINESTRA 1392
1823 #define o41SCALEPIETRA 1393
1824 #define o41PORTALABIRINTO 1394
1825 #define o41STRANOSIMBOLO 1395
1826 #define o41CADAVEREGIARDINIERE 1396
1827 #define o41MUCCHIOSABBIA 1397
1828 #define o41OGGETTOARGENTEO 1398
1829 #define o41PAVLASTRICATO 1399
1830 #define o41PRIMOTASTOSU 1400
1831 #define o41SECONDOTASTOSU 1401
1832 #define o41TERZOTASTOSU 1402
1833 #define o41QUARTOTASTOSU 1403
1834 #define o41QUINTOTASTOSU 1404
1835 #define o41SESTOTASTOSU 1405
1836 #define o41PRIMOTASTOGIU 1406
1837 #define o41SECONDOTASTOGIU 1407
1838 #define o41TERZOTASTOGIU 1408
1839 #define o41QUARTOTASTOGIU 1409
1840 #define o41QUINTOTASTOGIU 1410
1841 #define o41SESTOTASTOGIU 1411
1842 #define o42MACCHINACHIUSA 1412
1843 #define o42LEVA 1413
1844 #define o42PIATTAFORMA 1414
1845 #define o42PORTALABIRINTO 1415
1846 #define o42STRANOSIMBOLO 1416
1847 #define o42TASTO01SU 1417
1848 #define o42TASTO02SU 1418
1849 #define o42TASTO03SU 1419
1850 #define o42TASTO04SU 1420
1851 #define o42TASTO05SU 1421
1852 #define o42TASTO06SU 1422
1853 #define o42TASTO07SU 1423
1854 #define o42TASTO08SU 1424
1855 #define o42TASTO09SU 1425
1856 #define o42TASTO10SU 1426
1857 #define o42TASTO11SU 1427
1858 #define o42TASTO12SU 1428
1859 #define o42TASTO01GIU 1429
1860 #define o42TASTO02GIU 1430
1861 #define o42TASTO03GIU 1431
1862 #define o42TASTO04GIU 1432
1863 #define o42TASTO05GIU 1433
1864 #define o42TASTO06GIU 1434
1865 #define o42TASTO07GIU 1435
1866 #define o42TASTO08GIU 1436
1867 #define o42TASTO09GIU 1437
1868 #define o42TASTO10GIU 1438
1869 #define o42TASTO11GIU 1439
1870 #define o42TASTO12GIU 1440
1871 #define o42s43 1441
1872 #define o42LEVAMURATA 1442
1873 #define o42TUBOPIATTAFORMA 1443
1874 #define o43s42 1444
1875 #define o43CANCELLO01 1445
1876 #define o43CANCELLO02 1446
1877 #define o43CANCELLO03 1447
1878 #define o43s45 1448
1879 #define o43CANCELLOALZATO01 1449
1880 #define o43CANCELLOALZATO02 1450
1881 #define o43CANCELLOALZATO03 1451
1882 #define o44OROLOGIO 1452
1883 #define o44AFFRESCO 1453
1884 #define o44LEVAORE 1454
1885 #define o44LEVAMINUTI 1455
1886 #define o44LEVAGRADI 1456
1887 #define o45INGRANAGGI 1457
1888 #define o45APERTURA 1458
1889 #define o45MACCHINARIO 1459
1890 #define o45SPORTELLO 1460
1891 #define o45ALLOGGIAMENTO 1461
1892 #define o45STELLAMETALLICA 1462
1893 #define o45SCOMPARTIMENTO 1463
1894 #define o45INDICATORE1 1464
1895 #define o45INDICATORE2 1465
1896 #define o45INDICATORE3 1466
1897 #define o45INDICATORE4 1467
1898 #define o45INDICATORE5 1468
1899 #define o45s43 1469
1900 #define o45SANGUE 1470
1901 #define o46PRIMODIAGRAMMA 1471
1902 #define o46SECONDODIAGRAMMA 1472
1903 #define o46PIANTACASTELLO 1473
1904 #define o46SCRITTOIO 1474
1905 #define o46BUSTAOROLOGIAIO 1475
1906 #define o46CARTELLINA1 1476
1907 #define o46CARTELLINA2 1477
1908 #define o46CARTELLINA3 1478
1909 #define o46CARTELLINA4 1479
1910 #define o46CARTELLINA5 1480
1911 #define o46CARTELLINA6 1481
1912 #define o46CARTELLINA7 1482
1913 #define o46CARTELLINAC 1483
1914 #define o46POLTRONA 1484
1915 #define o46CANDELABRO 1485
1916 #define o46CANDELA1 1486
1917 #define o46CANDELA2 1487
1918 #define o46CASSETTO 1488
1919 #define o46PERGAMENAINGIALLITA 1489
1920 #define o46CALAMAIO 1490
1921 #define o46COMPASSO 1491
1922 #define o46SESTANTE 1492
1923 #define o46STELLAMETALLICA 1493
1924 #define o46BRACERE 1494
1925 #define o46CANDELABRACERE 1495
1926 #define o46CERABRACERE 1496
1927 #define o46CALCOBRACERE 1497
1928 #define o46SCAFFALE 1498
1929 #define o47CADAVERECORONA 1499
1930 #define o47TRAPPOLA 1500
1931 #define o47s41 1501
1932 #define o48RINGHIERA 1502
1933 #define o48PENDOLO 1503
1934 #define o48MANETTE 1504
1935 #define o48KRENNSVENUTO 1506
1936 #define o49BASSORILIEVO 1507
1937 #define o49DUKESMORTO 1508
1938 #define o49TESTALEONE 1509
1939 #define o49s4A 1510
1940 #define o49SANGUE 1511
1941 #define o49ALTARE 1512
1942 #define o49AMPOLLAAZZURRO 1513
1943 #define o49AMPOLLAVERDE 1514
1944 #define o49AMPOLLAGIALLO 1515
1945 #define o49AMPOLLAROSSO 1516
1946 #define o49PERGAMENA 1517
1947 #define o49STELLADX 1518
1948 #define o49STELLADXCIA 1519
1949 #define o49STELLASX 1520
1950 #define o49STELLASXCIA 1521
1951 #define o49INCAVODX 1522
1952 #define o49INCAVOSX 1523
1953 #define o49PORTACHIUSA 1524
1954 #define o4ALEVA 1525
1955 #define o4As49 1526
1956 #define oXT14OCCHIALI_NOTAKE 1527
1957 #define oXT14NIDO_da_sopra_il_basamento 1528
1958 #define o2CCARRELLO1 1529
1959 #define o2CCARRELLO2 1530
1960 #define o2PCARRELLO1 1531
1961 #define o37BACHECAAPERTA 1532
1962 #define o31INGRALEGNO 1533
1963 #define o46CARTELLINA8 1534
1964 #define o25SPUGNETTECUOCO 1535
1965 #define o25TEIERA 1536
1966 #define o2TBOTTIGLIACUOCO 1537
1967 #define o26PULIZIATENDA 1538
1968 #define o26PULIZIAFORCHETTA 1539
1969 #define o28FOGLIODOMESTICA 1540
1970 #define o2LOGGETTIDOMESTICA 1541
1971 #define o25OGGETTIDOMESTICA 1542
1972 #define o22OGGETTIDOMESTICA 1543
1973 #define o13OCCHIALIDIARIO 1544
1974 #define o2MOGGETTICUSTODE_TOSHOW 1545
1975 #define o2MOGGETTICUSTODE_TOHIDE 1546
1976 #define oXTSECCHIGIARDINIERE 1547
1977 #define o48DARRELLSVENUTO 1548
1978 #define o2QSTRACCIODIARIO 1549
1979 #define o26OGGETTISUPERVISORE 1550
1980 #define o48ELEKTRO 1551
1981 #define oDIARIOPAG1A 1552
1982 #define oDIARIOPAG1B 1553
1983 #define oDIARIOPAG1C 1554
1984 #define oDIARIOPAG1D 1555
1985 #define oDIARIOPAG1E 1556
1986 #define oDIARIOPAG1F 1557
1987 #define oDIARIOPAG2A 1558
1988 #define oDIARIOPAG2B 1559
1989 #define oDIARIOPAG2C 1560
1990 #define oDIARIOPAG2D 1561
1991 #define oDIARIOPAG2E 1562
1992 #define oDIARIOPAG2F 1563
1993 #define oDIARIOPAG3A 1564
1994 #define oDIARIOPAG3B 1565
1995 #define oDIARIOPAG3C 1566
1996 #define oDIARIOPAG3D 1567
1997 #define oDIARIOPAG4A 1568
1998 #define oDIARIOPAG4B 1569
1999 #define oDIARIOPAG4C 1570
2000 #define oDIARIOPAG4D 1571
2001 #define oDIARIOPAG4E 1572
2002 #define oDIARIOPAG4F 1573
2003 #define oDIARIOPAG4G 1574
2004 #define oDIARIOPAG4H 1575
2005 #define oDIARIOPAG4I 1576
2006 #define oDIARIOPAG4J 1577
2007 #define oDIARIOPAG4K 1578
2008 #define oDIARIOPAG4L 1579
2009 #define o34DIARIOKRENNAPERTO 1580
2010 #define o22LIBRORTV 1581
2011 #define oCOMPUTERDIAL 1582
2012 #define oCOMPUTEREMAIL1 1583
2013 #define oCOMPUTEREMAIL2 1584
2014 #define oTONERHELP 1585
2015 #define o2DOGGETTIRTV 1586
2016 #define o2DTAVOLINORTV 1587
2017 #define o48PISTOLAKRENN 1588
2018 #define o29ANTAWIN 1589
2019 #define o29ANTAWINROTTA 1590
2020 #define oXTTAXI 1591
2021 #define o49FUMO 1592
2022 #define o2CMEGABB_2R 1593
2023 #define o2CMEGABB_2S 1594
2024 #define o2PMEGABB_2D 1595
2025 #define oXTPISCINA 1596
2026 #define o2CTASTOVERDE 1597
2027 #define o2CTASTOROSSO 1598
2028 #define o2CTASTOBLINK 1599
2029 #define o2MTASTOVERDE 1600
2030 #define o2MTASTOROSSO 1601
2031 #define o2MTASTOBLINK 1602
2032 #define oXTPERSIANECHIUSE 1603
2033 #define oXTPERSIANEAPERTE 1604
2034 #define o98LETTER 1605
2035 #define o98PARCHMENT 1606
2036 #define o91DARRELLALETTO 1607
2037 #define o91TELEFONO 1608
2038 #define o91COPERTABASSA 1609
2039 #define o91COPERTAALTA 1610
2040 #define o97SFONDO 1611
2041 #define o97BORDI 1612
2042 #define o97COLORI 1613
2043 #define o97NETERT 1614
2044 #define o97LETTERE 1615
2045 #define o97LOGOWM 1616
2046 #define o73SFONDO 1617
2047 #define oADDTEXTOBJ 1618
2048 #define oEXTRALS 1619
2049 
2050 /* -----------------17/03/98 10.20-------------------
2051  * Anims
2052  * --------------------------------------------------*/
2053 #define aNULL 0
2054 #define aSTAND 1
2055 #define aWALK_START 2
2056 #define aWALK_LOOP 3
2057 #define aWALK_END 4
2058 #define aBACK_START 5
2059 #define aBACK_LOOP 6
2060 #define aBACK_END 7
2061 #define aRUN_START 8
2062 #define aRUN_LOOP 9
2063 #define aRUN_END 10
2064 #define aROT_DX 11
2065 #define aROT_SX 12
2066 
2067 #define aGIRO 16
2068 #define aBOH 17
2069 #define aTO1PERSON 18
2070 #define aTO3PERSON 19
2071 #define aDUMMY 20
2072 
2073 #define aCAMBIO_DARRELL_91 21
2074 #define aCAMBIO_VICTORIA_92 22
2075 #define aCAMBIO_DARRELL_93 23
2076 #define aCAMBIO_VICTORIA_94 24
2077 #define aCAMBIO_DARRELL_95 25
2078 #define aCAMBIO_VICTORIA_96 26
2079 #define aCAMBIO_DARRELL_97 27
2080 #define aCAMBIO_VICTORIA_98 28
2081 
2082 #define aFOX 29
2083 #define aPENSA 30
2084 #define aDUMMY_dR391_A 31
2085 #define aDUMMY_dR391_B 32
2086 #define aDUMMY_dR391_C 33
2087 
2088 #define aIDLE_DARRELL_1 34
2089 #define aIDLE_DARRELL_2 35
2090 #define aIDLE_VICTORIA_1 36
2091 #define aIDLE_VICTORIA_2 37
2092 
2093 #define aCUO251 51
2094 #define aCUO252 52
2095 #define aCUO253 53
2096 #define aCUO254 54
2097 #define aCUO255 55
2098 #define aCUO256 56
2099 #define aCUO257 57
2100 #define aCUO258 58
2101 #define aCUO259 59
2102 #define aCUO25s 60
2103 #define aCUO2T1 61
2104 #define aCUS131 62
2105 #define aCUS132 63
2106 #define aCUS133 64
2107 #define aCUS134 65
2108 #define aCUS135 66
2109 #define aCUS136 67
2110 #define aCUS2G1 71
2111 #define aCUS2G2 72
2112 #define aCUS2M1 74
2113 #define aCUS2M2 75
2114 #define aCUS2M3 76
2115 #define aCUS2M4 77
2116 #define aDARRELL481 78
2117 #define aDOM221 79
2118 #define aDOM222 80
2119 #define aDOM223 81
2120 #define aDOM251 82
2121 #define aDOM252 83
2122 #define aDOM261 85
2123 #define aDOM262 86
2124 #define aDOM263 87
2125 #define aDOM264 88
2126 #define aDOM265 89
2127 #define aDOM26s 90
2128 #define aDOM281 91
2129 #define aDOM2L1 93
2130 #define aDOM2L2 94
2131 #define aGIA141 95
2132 #define aGIA142 96
2133 #define aGIA143 97
2134 #define aGIA1A1 98
2135 #define aGIA1A2 99
2136 #define aGIA1A3 100
2137 #define aGIA1A4 101
2138 #define aGIA1A5 102
2139 #define aGIA1A6 103
2140 #define aGIA181 104
2141 #define aGIA182 105
2142 #define aGIA183 106
2143 #define aGIA2G1 107
2144 #define aGIA2G2 108
2145 #define aMOS221 110
2146 #define aMOS222 111
2147 #define aMOS271 112
2148 #define aMOS272 113
2149 #define aMOS273 114
2150 #define aMOS274 115
2151 #define aMOS2P1 116
2152 #define aMOS2P2 117
2153 #define aSER2C1 118
2154 #define aSER2C2 119
2155 #define aSER2C3 120
2156 #define aSER2C4 121
2157 #define aSER2C5 122
2158 #define aSER2C6 123
2159 #define aSER2C7 124
2160 #define aSER2C8 125
2161 #define aSER2C9 126
2162 #define aSER2C10 127
2163 #define aSER2I1 128
2164 #define aSER2I2 129
2165 #define aSER2P1 130
2166 #define aSER2P2 131
2167 #define aSER2P3 132
2168 #define aSER2P4 133
2169 #define aSER2P5 134
2170 #define aSER2Q1 135
2171 #define aSER2Q2 136
2172 #define aSER2Q3 137
2173 #define aSUP261 138
2174 #define aSUP262 139
2175 #define aSUP263 140
2176 #define aSUP291 141
2177 #define aSUP292 142
2178 #define aSUP293 143
2179 #define aSUP294 144
2180 #define aSUP295 145
2181 #define aSUP296 146
2182 #define aSUP297 147
2183 #define aMOS27sa 148
2184 #define aMOS27sb 149
2185 
2186 // AZIONI (come da librone)
2187 #define a211 201
2188 #define a212 202
2189 #define a213 203
2190 #define a214 204
2191 #define a215 205
2192 #define a216 206
2193 #define a217 207
2194 #define a218 208
2195 #define a219 209
2196 #define a2110 210
2197 #define a2111 211
2198 #define a2112 212
2199 #define a2113 213
2200 #define a221 214
2201 #define a222 215
2202 #define a223 216
2203 #define a224 217
2204 #define a225 218
2205 #define a226 219
2206 #define a227 220
2207 #define a2210 221
2208 #define a2211 222
2209 #define a241 223
2210 #define a242 224
2211 #define a243 225
2212 #define a244 226
2213 #define a245 227
2214 #define a246 228
2215 #define a247 229
2216 #define a248 230
2217 #define a249 231
2218 #define a2410 232
2219 #define a2411 233
2220 #define a251 234
2221 #define a252 235
2222 #define a253 236
2223 #define a254 237
2224 #define a255 238
2225 #define a256 239
2226 #define a257 240
2227 #define a258 241
2228 #define a259 242
2229 #define a2510 243
2230 #define a2511 244
2231 #define a2512 245
2232 #define a2513 246
2233 #define a2514 247
2234 #define a2515 248
2235 #define a2516 249
2236 #define a2517 250
2237 #define a2518 251
2238 #define a2519 252
2239 #define a2520 253
2240 #define a2521 254
2241 #define a2522 255
2242 #define a2523 256
2243 #define a2524 257
2244 #define a2525 258
2245 #define a2526 259
2246 #define a2527 260
2247 #define a2528 261
2248 #define a2531 262
2249 #define a2532 263
2250 #define a2533 264
2251 #define a2534 265
2252 #define a2535 266
2253 #define a2536 267
2254 #define a261 268
2255 #define a262 269
2256 #define a263 270
2257 #define a264 271
2258 #define a265 272
2259 #define a267 273
2260 #define a268 274
2261 #define a271 275
2262 #define a272 276
2263 #define a273 277
2264 #define a274 278
2265 #define a275 279
2266 #define a276 280
2267 #define a277 281
2268 #define a281 282
2269 #define a282 283
2270 #define a283 284
2271 #define a284 285
2272 #define a285 286
2273 #define a289 287
2274 #define a2811 288
2275 #define a2812 289
2276 #define a2813 290
2277 #define a2814 291
2278 #define a2815 292
2279 #define a2816 293
2280 #define a2817 294
2281 #define a291 295
2282 #define a292 296
2283 #define a293 297
2284 #define a295 298
2285 #define a297 299
2286 #define a298 300
2287 #define a299 301
2288 #define a2A1 302
2289 #define a2A2 303
2290 #define a2A3 304
2291 #define a2A4 305
2292 #define a2A5 306
2293 #define a2A6 307
2294 #define a2A7 308
2295 #define a2A8 309
2296 #define a2A9 310
2297 #define a2A10 311
2298 #define a2A11 312
2299 #define a2A12 313
2300 #define a2A13 314
2301 #define a2A14 315
2302 #define a2A15 316
2303 #define a2B1 317
2304 #define a2B2 318
2305 #define a2B3 319
2306 #define a2B4 320
2307 #define a2B5 321
2308 #define a2B6 322
2309 #define a2B7 323
2310 #define a2B8 324
2311 #define a2B9 325
2312 #define a2B10 326
2313 #define a2B11 327
2314 #define a2B12 328
2315 #define a2B13 329
2316 #define a2B14 330
2317 #define a2C1 331
2318 #define a2C2 332
2319 #define a2C3 333
2320 #define a2C4 334
2321 #define a2C5 335
2322 #define a2C6 336
2323 #define a2C7 337
2324 #define a2C9 338
2325 #define a2C10 339
2326 #define a2C11 340
2327 #define a2D1 341
2328 #define a2D2 342
2329 #define a2D3 343
2330 #define a2D4 344
2331 #define a2D5 345
2332 #define a2D6 346
2333 #define a2D7 347
2334 #define a2D11 348
2335 #define a2D12 349
2336 #define a2D13 350
2337 #define a2D14 351
2338 #define a2D15 352
2339 #define a2D16 353
2340 #define a2E1 354
2341 #define a2E2 355
2342 #define a2E3 356
2343 #define a2E4 357
2344 #define a2E5 358
2345 #define a2E6 359
2346 #define a2E7 360
2347 #define a2F1 361
2348 #define a2F2 362
2349 #define a2F3 363
2350 #define a2F4 364
2351 #define a2F5 365
2352 #define a2F6 366
2353 #define a2F7 367
2354 #define a2F8 368
2355 #define a2G1 369
2356 #define a2G2 370
2357 #define a2G3 371
2358 #define a2G4 372
2359 #define a2G5 373
2360 #define a2G6 374
2361 #define a2G7 375
2362 #define a2G8 376
2363 #define a2G9 377
2364 #define a2H1 378
2365 #define a2H2 379
2366 #define a2H3 380
2367 #define a2H4 381
2368 #define a2H5 382
2369 #define a2H6 383
2370 #define a2H7 384
2371 #define a2I1 385
2372 #define a2I2 386
2373 #define a2I3 387
2374 #define a2I4 388
2375 #define a2L1 389
2376 #define a2L2 390
2377 #define a2L3 391
2378 #define a2L4 392
2379 #define a2M1 393
2380 #define a2M3 394
2381 #define a2M4 395
2382 #define a2M5 396
2383 #define a2M6 397
2384 #define a2M7 398
2385 #define a2M8 399
2386 #define a2M9 400
2387 #define a2M10 401
2388 #define a2M11 402
2389 #define a2M12 403
2390 #define a2M13 404
2391 #define a2M14 405
2392 #define a2M15 406
2393 #define a2M16 407
2394 #define a2M17 408
2395 #define a2M18 409
2396 #define a2M19 410
2397 #define a2M20 411
2398 #define a2M21 412
2399 #define a2M22 413
2400 #define a2M23 414
2401 #define a2M24 415
2402 #define a2P1 416
2403 #define a2P2 417
2404 #define a2P3 418
2405 #define a2P4 419
2406 #define a2P5 420
2407 #define a2P6 421
2408 #define a2Q1 422
2409 #define a2Q2 423
2410 #define a2Q3 424
2411 #define a2Q4 425
2412 #define a2Q5 426
2413 #define a2Q6 427
2414 #define a2Q7 428
2415 #define a2Q11 429
2416 #define a2Q12 430
2417 #define a2Q13 431
2418 #define a2Q14 432
2419 #define a2R1 433
2420 #define a2R2 434
2421 #define a2R3 435
2422 #define a2R4 436
2423 #define a2R5 437
2424 #define a2R6 438
2425 #define a2R7 439
2426 #define a2R8 440
2427 #define a2R9 441
2428 #define a2S1 442
2429 #define a2S2 443
2430 #define a2S3 444
2431 #define a2S4 445
2432 #define a2S5 446
2433 #define a2S6 447
2434 #define a2S7 448
2435 #define a2T1 449
2436 #define a2T2 450
2437 #define a2T3 451
2438 #define a2T4 452
2439 #define a2T5 453
2440 #define a2T6 454
2441 #define a2T7 455
2442 #define a111 456
2443 #define a112 457
2444 #define a121 458
2445 #define a131 459
2446 #define a132 460
2447 #define a133 461
2448 #define a139 462
2449 #define a1310 463
2450 #define a1311 464
2451 #define a1312 465
2452 #define a141 466
2453 #define a142 467
2454 #define a143 468
2455 #define a144 469
2456 #define a145 470
2457 #define a146 471
2458 #define a147 472
2459 #define a148 473
2460 #define a151 474
2461 #define a153 475
2462 #define a154 476
2463 #define a155 477
2464 #define a156 478
2465 #define a157 479
2466 #define a158 480
2467 #define a159 481
2468 #define a1510 482
2469 #define a161 483
2470 #define a162 484
2471 #define a163 485
2472 #define a164 486
2473 #define a171 487
2474 #define a172 488
2475 #define a173 489
2476 #define a174 490
2477 #define a175 491
2478 #define a176 492
2479 #define a177 493
2480 #define a178 494
2481 #define a1710 495
2482 #define a1711 496
2483 #define a181 497
2484 #define a182 498
2485 #define a183 499
2486 #define a191 500
2487 #define a192 501
2488 #define a193 502
2489 #define a194 503
2490 #define a1A1 504
2491 #define a1A2 505
2492 #define a1A3 506
2493 #define a1A4 507
2494 #define a1A5 508
2495 #define a1A6 509
2496 #define a1A8 510
2497 #define a1A9 511
2498 #define a1A10 512
2499 #define a1A11 513
2500 #define a1A14 514
2501 #define a1A15 515
2502 #define a1A12 516
2503 #define a1B1 517
2504 #define a1B2 518
2505 #define a1B3 519
2506 #define a1B4 520
2507 #define a1B5 521
2508 #define a1B6 522
2509 #define a1C1 523
2510 #define a1C2 524
2511 #define a1D1 525
2512 #define a1D2 526
2513 #define a1D3 527
2514 #define a1D4 528
2515 #define a1D5 529
2516 #define a1D6 530
2517 #define a1D8 531
2518 #define a1D9 532
2519 #define a1D10 533
2520 #define a1D11 534
2521 #define a1D12 535
2522 #define a1E1 536
2523 #define a1E2 537
2524 #define a1E3 538
2525 #define a1E4 539
2526 #define a1F1 540
2527 #define a1F2 541
2528 #define a1F3 542
2529 #define a1F4 543
2530 #define a1F5 544
2531 #define a1F6 545
2532 #define a1F7 546
2533 #define a1F8 547
2534 #define a1F9 548
2535 #define a1F10 549
2536 #define a1F11 550
2537 #define a1F12 551
2538 #define a311 552
2539 #define a312 553
2540 #define a313 554
2541 #define a314 555
2542 #define a315 556
2543 #define a316 557
2544 #define a317 558
2545 #define a318 559
2546 #define a319 560
2547 #define a3110 561
2548 #define a3111 562
2549 #define a3112 563
2550 #define a3113 564
2551 #define a3114 565
2552 #define a3115 566
2553 #define a3116 567
2554 #define a3117 568
2555 #define a3119 569
2556 #define a3120 570
2557 #define a3121 571
2558 #define a321 572
2559 #define a322 573
2560 #define a323 574
2561 #define a326 575
2562 #define a327 576
2563 #define a324 577
2564 #define a325 578
2565 #define a331 579
2566 #define a336 580
2567 #define a337 581
2568 #define a338 582
2569 #define a339 583
2570 #define a3310 584
2571 #define a341 585
2572 #define a342 586
2573 #define a343 587
2574 #define a344 588
2575 #define a345 589
2576 #define a346 590
2577 #define a347_DARRELL 591
2578 #define a349 593
2579 #define a3410 594
2580 #define a3411 595
2581 #define a3412 596
2582 #define a3413 597
2583 #define a3414 598
2584 #define a3415 599
2585 #define a3416 600
2586 #define a3417 601
2587 #define a3418 602
2588 #define a3419 603
2589 #define a351 604
2590 #define a352 605
2591 #define a353 606
2592 #define a354 607
2593 #define a355 608
2594 #define a356 609
2595 #define a357 610
2596 #define a361 611
2597 #define a362 612
2598 #define a363 613
2599 #define a364 614
2600 #define a36MSDM 615
2601 #define a36MSSM 616
2602 #define a36MSDA 617
2603 #define a36MSSA 618
2604 #define a36PSDB 619
2605 #define a36PSSB 620
2606 #define a36PSDM 621
2607 #define a36PSSM 622
2608 #define a36MIDA 623
2609 #define a36MISA 624
2610 #define a36PIDB 625
2611 #define a36PISB 626
2612 #define a36PIDM 627
2613 #define a36PISM 628
2614 #define a36PBDB 629
2615 #define a36PBSB 630
2616 #define a36PBDM 631
2617 #define a36PBSM 632
2618 #define a3627 633
2619 #define a371 634
2620 #define a372 635
2621 #define a373 636
2622 #define a374 637
2623 #define a375 638
2624 #define a376 639
2625 #define a377 640
2626 #define a378 641
2627 #define a381 642
2628 #define a382 643
2629 #define a383 644
2630 #define a384 645
2631 #define a386 646
2632 #define a387 647
2633 #define a391 648
2634 #define a392 649
2635 #define a393 650
2636 #define a394 651
2637 #define a395 652
2638 #define a396 653
2639 #define a397 654
2640 #define a398 655
2641 #define a399 656
2642 #define a3910 657
2643 #define a3911 658
2644 #define a3912 659
2645 #define a3913 660
2646 #define a3B1 661
2647 #define a3B2 662
2648 #define a3B3 663
2649 #define a3B4 664
2650 #define a3B5 665
2651 #define a3B6 666
2652 #define a3B7 667
2653 #define a3B8 668
2654 #define a3B9 669
2655 #define a3B10 670
2656 #define a3B11 671
2657 #define a3B12 672
2658 #define a3B13 673
2659 #define a3B14 674
2660 #define a3B15 675
2661 #define a3B16 676
2662 #define a3B17 677
2663 #define a3B18 678
2664 #define a3B19 679
2665 #define a3B20 680
2666 #define a3B21 681
2667 #define a3B24 682
2668 #define a3B25 683
2669 #define a3B26 684
2670 #define a3C1 685
2671 #define a3C2 686
2672 #define a3C3 687
2673 #define a3C4 688
2674 #define a3C5 689
2675 #define a3C6 690
2676 #define a3C7 691
2677 #define a3C8 692
2678 #define a411 693
2679 #define a412 694
2680 #define a413 695
2681 #define a421 696
2682 #define a422 697
2683 #define a424 698
2684 #define a425 699
2685 #define a426 700
2686 #define a427 701
2687 #define a428 702
2688 #define a431 703
2689 #define a432 704
2690 #define a433 705
2691 #define a434 706
2692 #define a435 707
2693 #define a436 708
2694 #define a437 709
2695 #define a438 710
2696 #define a441 711
2697 #define a442 712
2698 #define a443 713
2699 #define a444 714
2700 #define a451 715
2701 #define a452 716
2702 #define a453 717
2703 #define a454 718
2704 #define a455 719
2705 #define a456 720
2706 #define a457 721
2707 #define a458 722
2708 #define a459 723
2709 #define a4510 724
2710 #define a461 725
2711 #define a462 726
2712 #define a463 727
2713 #define a464 728
2714 #define a465 729
2715 #define a466 730
2716 #define a467 731
2717 #define a468 732
2718 #define a469 733
2719 #define a4610 734
2720 #define a4611 735
2721 #define a4612 736
2722 #define a4613 737
2723 #define a4614 738
2724 #define a4615 739
2725 #define a4616 740
2726 #define a4617 741
2727 #define a4618 742
2728 #define a4619 743
2729 #define a4620 744
2730 #define a471 745
2731 #define a481 746
2732 #define a482 747
2733 #define a491 748
2734 #define a492 749
2735 #define a493a 750
2736 #define a493b 751
2737 #define a494a 752
2738 #define a494b 753
2739 #define a493ca 754
2740 #define a493cb 755
2741 #define a494ca 756
2742 #define a494cb 757
2743 #define a495 758
2744 #define a496 759
2745 #define a497 760
2746 #define a498 761
2747 #define a499 762
2748 #define a4910 763
2749 #define a4911 764
2750 #define a4912 765
2751 #define a4913 766
2752 #define a4914 767
2753 #define a4915 768
2754 #define a4916 769
2755 #define a4917 770
2756 #define a4918 771
2757 #define a4A1 774
2758 #define a4A2 775
2759 #define a4A3 776
2760 #define a4A4 777
2761 #define a1F13 778
2762 
2763 // per chris
2764 #define aGOPHER_ACTION 901
2765 //ATTENZIONE! numeri incasinati!!
2766 #define aDARRELL_PARLA 926
2767 #define aVICTORIA_PARLA 927
2768 #define aCURPLAYER_PARLA 928
2769 #define aCURPLAYER_ASCOLTA 929
2770 #define aCURPLAYER_PENSA 930
2771 #define aCUOCO_PARLA 931
2772 #define aDOMESTICA_PARLA 932
2773 #define aGIARDINIERE_PARLA 933
2774 #define aCUSTODE_PARLA 934
2775 #define aSERVETTA_PARLA 935
2776 #define aSUPERVISORE_PARLA 936
2777 #define aMOGLIESUPERVISORE_PARLA 937
2778 #define aDARRELL_ASCOLTA 938
2779 #define aVICTORIA_ASCOLTA 939
2780 #define aCUOCO_ASCOLTA 940
2781 #define aDOMESTICA_ASCOLTA 941
2782 #define aGIARDINIERE_ASCOLTA 942
2783 #define aCUSTODE_ASCOLTA 943
2784 #define aSERVETTA_ASCOLTA 944
2785 #define aSUPERVISORE_ASCOLTA 945
2786 #define aMOGLIESUPERVISORE_ASCOLTA 946
2787 #define aCUSTODE_ALZA_TESTA 947
2788 #define aCUSTODE_ABBASSA_TESTA 948
2789 #define aCAMBIA_FRASI 949
2790 #define aFINE_RTV 950
2791 #define aFINE_DEMO 951
2792 #define aPORTALE_32_34 952
2793 #define aPORTALE_34_32 953
2794 #define a48PENDOLO 954
2795 #define aCAC1a5a 955
2796 #define aCAC1a5b 956
2797 #define aCAC1c3 957
2798 #define aCAC2a1 958
2799 #define aCOL1a2a 959
2800 #define aCOL1a2b 960
2801 #define aCUO2t2a 961
2802 #define aCUO2t2b 962
2803 #define aCUS1a1d 963
2804 #define aCUS1a2 964
2805 #define aDAR1a1a 965
2806 #define aDAR1a1b 966
2807 #define aDAR1a1c 967
2808 #define aDAR1a3a 968
2809 #define aDAR1a4 969
2810 #define aDAR1c1a 970
2811 #define aDAR1c1c 971
2812 #define aDAR1c2a 972
2813 #define aDAR1c2b 973
2814 #define aDAR1c3 974
2815 #define aDAR1c3b 975
2816 #define aDAR1c3c 976
2817 #define aDAR221b 977
2818 #define aDAR421 978
2819 #define aDAR481 979
2820 #define aGIA1a1a 980
2821 #define aGIA1a1b 981
2822 #define aGIA1a1c 982
2823 #define aGIA1a1d 983
2824 #define aGIA1a3a 984
2825 #define aJUD222a 985
2826 #define aJUD222b 986
2827 #define aJUD2d1a 987
2828 #define aJUD2d1b 988
2829 #define aJUD2p1 989
2830 #define aKRE481a 990
2831 #define aKRE481b 991
2832 #define aPSG1c3a 992
2833 #define aPSG1c3b 993
2834 #define aSER1a1 994
2835 #define aSER1a2 995
2836 #define aSUP291a1 996
2837 #define aSUP291a2 997
2838 #define aSUP291a3 998
2839 #define aSUP291b 999
2840 #define aSUP291c 1000
2841 #define aSUP291d 1001
2842 #define aVIC1a3a 1002
2843 #define aVIC1a4 1003
2844 #define aVIC1a5 1004
2845 #define aVIC1e1 1005
2846 #define aVIC212b 1006
2847 #define aVIC221b 1007
2848 #define aVIC291a 1008
2849 #define aVIC291b1 1009
2850 #define aVIC291b2 1010
2851 #define aVIC291b3 1011
2852 #define aVIC291c 1012
2853 #define aVIC2a1 1013
2854 #define aVIC411a 1014
2855 #define aVIC411b 1015
2856 #define aVIC411c 1016
2857 #define aVIC491b 1017
2858 #define aVIV451 1018
2859 #define aVIV452a 1019
2860 #define aVIV452b 1020
2861 #define aVIV471a 1021
2862 #define aVIV471b 1022
2863 #define aVIV472c 1023
2864 #define aAND007a 1024
2865 #define aAND007c 1025
2866 #define aCUO009a 1026
2867 #define aCUO009b 1027
2868 #define aDAR009 1028
2869 #define aHEN002b 1029
2870 #define aVIC0010 1030
2871 #define aVIC0014 1031
2872 #define aVIC009 1032
2873 #define aSUP1a2a 1033
2874 #define aSUP1a2b 1034
2875 #define aR1f1 1035
2876 #define aDARRELL_DARE 1036
2877 #define aVICTORIA_DARE 1037
2878 #define aDARRELL_PRENDERE 1038
2879 #define aVICTORIA_PRENDERE 1039
2880 #define aDARRELL_ARRIVA_R41 1040
2881 #define aVIC1c1a 1041
2882 #define aDARRELL_ARRIVA_R1C 1042
2883 #define aCACPOR 1043
2884 #define aMOGLIE_KIMONO_PARLA 1044
2885 #define aMOGLIE_KIMONO_ASCOLTA 1045
2886 #define aCACCIATORE_PARLA 1046
2887 #define aCACCIATORE_ASCOLTA 1047
2888 #define aCACCIATORE_SCENDE 1048
2889 #define aCACCIATORE_ARRIVA_R41 1049
2890 #define aSab411 1050
2891 #define aJUD2d1c 1051
2892 #define aMOGLIE_KIMONO_DARE 1052
2893 #define aVIC1c3b 1053
2894 #define aDAR1c3d 1054
2895 #define aDAR1c3d_nopoptext 1055
2896 #define aKRENN_PARLA 1056
2897 #define aKRENN_ASCOLTA 1057
2898 #define aVALENCIA_PARLA 1058
2899 #define aVALENCIA_ASCOLTA 1059
2900 #define aSUP_PARLA 1060
2901 #define aR1A5_ENDRTV 1061
2902 #define aVIC212a 1062
2903 #define aSUP1a2c 1063
2904 #define aCOL1a2c 1064
2905 #define aCOL1a2d 1065
2906 #define aSER1a2_SHOW_OBJS 1066
2907 #define aR1f1_START 1067
2908 #define aSERVETTA_PRENDERE 1068
2909 #define aSERVETTA_DARE 1069
2910 #define aCUSTODE_PENSA 1070
2911 #define aCUSTODESEDUTO_PARLA 1071
2912 #define aCUSTODESEDUTO_ASCOLTA 1072
2913 #define aCUSTODESEDUTO_PENSA 1073
2914 #define aSUPERVISORESEDUTO_PARLA 1074
2915 #define aSUPERVISORESEDUTO_ASCOLTA 1075
2916 #define aMOGLIESEDUTA_PARLA 1076
2917 #define aMOGLIESEDUTA_ASCOLTA 1077
2918 #define aCAM461 1078
2919 #define aCUSTODE_PRENDERE 1079
2920 #define aCUSTODE_DARE 1080
2921 #define aPorta421_LEFT 1081
2922 #define aPorta421_RIGHT 1082
2923 #define aDAR421a 1083
2924 #define aVIC421a 1084
2925 #define aDAR421b 1085
2926 #define aPorta421a_LEFT 1086
2927 #define aPorta421a_RIGHT 1087
2928 #define aDOM221a 1088
2929 #define aDOM221b 1089
2930 #define aDAR000b 1091
2931 #define aDAR000c 1092
2932 #define aDAR000d 1093
2933 #define aDAR000e 1094
2934 #define aR000_SVEGLIA 1095
2935 #define aCUSTODE_PORTA 1096
2936 #define aTAXI1 1097
2937 #define aTAXI2 1098
2938 #define aVIC000tb 1099
2939 #define aTAXI3 1100
2940 #define aSUPERVISORE_ALZA 1101
2941 #define aSUPERVISORE_PARLABAR 1102
2942 #define aDAR2c1 1103
2943 #define aVIC2c1 1104
2944 #define aSUPERVISORE_PRENDERE 1105
2945 #define aSUPERVISORE_DARE 1106
2946 #define aCUSTODE_OCCHIALI 1107
2947 #define aCUSTODE_OCCHIALISEDUTO 1108
2948 #define aCUSTODE_OSSERVAPRENDE 1109
2949 #define aCUSTODE_OSSPRENDESEDUTO 1110
2950 #define aSERVETTA_OSSERVAPRENDE 1111
2951 #define aDAR000f 1112
2952 #define aDAR000g 1113
2953 #define aDAR000h 1114
2954 #define aDAR000j 1115
2955 #define aVIC000b 1117
2956 #define aVIC000c 1118
2957 #define aVIC000d 1119
2958 #define aVIC000e 1120
2959 #define aPET000a1 1121
2960 #define aPET000a2 1122
2961 #define aPET000b 1123
2962 #define aPET000c 1124
2963 #define aPET000d 1125
2964 #define aPET000e 1126
2965 #define aPET000f 1127
2966 #define aDAR_DOOR_A92 1128
2967 #define a144_switch_camera 1130
2968 #define aSUPERVISORE_APRE_PORTA 1131
2969 #define a145_con_occhiali 1132
2970 #define a148_start 1133
2971 #define a2Q4b 1134
2972 #define a1A7 1135
2973 #define aCUOCO_VERSA 1136
2974 #define aCUOCO_BEVE 1137
2975 #define aCUSTODE_SEDUTODARE 1138
2976 #define aCUSTODE_SEDUTOPRENDERE 1139
2977 #define a3123 1140
2978 #define aDAR482a 1141
2979 #define aDAR482b 1142
2980 #define aDAR482c 1143
2981 #define aDAR482in 1144
2982 #define aCAC482a 1145
2983 #define aCAC482l 1146
2984 #define aCAC482c 1147
2985 #define aCAC482d 1148
2986 #define aCAC482e 1149
2987 #define aCAC482f 1150
2988 #define aCAC482g 1151
2989 #define aCAC482h 1152
2990 #define aCAC482i 1153
2991 #define aCAC482j 1154
2992 #define aCAC482k 1155
2993 #define aVIC482a 1156
2994 #define aVIC482a1 1157
2995 #define aVIC482in 1158
2996 #define a3123_switch_to_a159 1159
2997 #define a48PORTA 1161
2998 #define aDARRELL_BOTTIGLIA 1163
2999 #define aCUOCO_VERSAUNO 1164
3000 #define aVICTORIA_BOTTIGLIA 1165
3001 #define aDARRELL_SEGNO 1166
3002 #define aVICTORIA_SEGNO 1167
3003 #define aCUOCO_MOSTRAQUADRO 1168
3004 #define aDARRELL_PRENDECHIAVI 1169
3005 #define aVICTORIA_PRENDECHIAVI 1170
3006 #define aCUOCO_INTERRUPT1 1171
3007 #define aCUOCO_INTERRUPT2 1172
3008 #define aDOMESTICA_INTERRUPT1 1173
3009 #define aDOMESTICA_INTERRUPT2 1174
3010 #define aGIARDINIERE_INTERRUPT1 1175
3011 #define aGIARDINIERE_INTERRUPT2 1176
3012 #define aCUSTODE_INTERRUPT1 1177
3013 #define aCUSTODE_INTERRUPT2 1178
3014 #define aCUSTODE_INTERRUPT3 1179
3015 #define aCUSTODE_INTERRUPT4 1180
3016 #define aCUSTODE_INTERRUPT5 1181
3017 #define aMOGLIESUP_INTERRUPT1 1182
3018 #define aMOGLIESUP_INTERRUPT2 1183
3019 #define aSUPERVISORE_INTERRUPT1 1184
3020 #define aSUPERVISORE_INTERRUPT2 1185
3021 #define aSUPERVISORE_INTERRUPT3 1186
3022 #define aSUPERVISORE_INTERRUPT4 1187
3023 #define aKREI347a 1188
3024 #define aKREI347b 1189
3025 #define aPEN347 1190
3026 #define aCORI347a 1191
3027 #define aCORI347b 1192
3028 #define aCORI347c 1193
3029 #define aKREI347c 1194
3030 #define aKREI347d 1195
3031 #define aKREI347e 1196
3032 #define aDUKI347a 1197
3033 #define aDUKI347b 1198
3034 #define aDUKI347c 1199
3035 #define a1A9_rtv 1200
3036 //#define a1A9_dice_solo_frase 1201
3037 #define a225_prima_volta 1202
3038 #define aDUKI347d 1203
3039 #define aDUKI347e 1204
3040 #define aDUKI347f 1205
3041 #define aDUKI347g 1206
3042 #define aVICI347a 1207
3043 #define aVICI347b 1208
3044 #define aGREI347a 1209
3045 #define aGREI347b 1210
3046 #define aGREI347c 1211
3047 #define a84cam 1212
3048 #define a2G9_parte_rtv 1213
3049 #define a323_tira 1214
3050 #define a323_lascia 1215
3051 #define aCUO255_nopentole 1216
3052 #define aDARI347a 1217
3053 #define aDARI347b 1218
3054 #define aFAKE_BOTTLE 1219
3055 #define aSUP295_loop 1220
3056 #define a2P7 1222
3057 #define a2P8 1223
3058 #define a41_lancia_dR411 1224
3059 #define aSUPERVISORE_GUARDAFOTO 1225
3060 #define aGIA2G_PORTA 1226
3061 #define a229 1227
3062 #define a2211_ultimavolta 1228
3063 #define aVOCEFUORICAMPO 1229
3064 #define a289_noinctime 1230
3065 #define aVOCECORONA 1231
3066 #define aVOCEDUKES 1232
3067 #define a22CAMBIA2T 1233
3068 #define a22LANCIAR2T2 1234
3069 #define a2TCAMBIA22 1235
3070 #define a1E1_rtv 1237
3071 #define aKREN491a 1239
3072 #define aKREN491b 1240
3073 #define a18GUARDA_SCACCHIERA 1241
3074 #define a1A11_primavolta 1242
3075 #define a1D3_dopo 1243
3076 #define a1D4_fine 1244
3077 #define a1F10_cambia_indicatori 1245
3078 #define a347_VICTORIA 1246
3079 #define aVIV347a 1247
3080 #define aVIV347b 1248
3081 #define aCOLOMBAMUORE 1249
3082 #define aALB1A5 1251
3083 #define a4617DARRELL 1252
3084 #define aGREI347d 1253
3085 #define a4612A 1254
3086 #define a429 1255
3087 #define aDAR241a 1256
3088 #define aDOM241 1257
3089 #define aDOM2D1 1258
3090 #define aJUD_dR241 1259
3091 #define aFINE_dR241 1260
3092 #define aDAR241b 1261
3093 #define aDUKI347d_nofrase 1262
3094 #define a426VIC 1266
3095 #define aVIC1c3c 1267
3096 #define aCACCIATOREMALPRESO_PARLA 1268
3097 #define a2513_DOM 1269
3098 #define a2512_DOM 1270
3099 #define a111_DOM 1271
3100 #define a1A4_DOM 1272
3101 #define aLancia_dR015 1273
3102 #define a2Q13_lancia_dR015 1274
3103 #define a465B 1275
3104 #define a466B 1276
3105 #define a467B 1277
3106 #define a468B 1278
3107 #define a469B 1279
3108 #define a4610B 1280
3109 #define a4611B 1281
3110 #define a4612B 1282
3111 #define a4612AB 1283
3112 #define aDARRELL_SOLO_FRASE 1284
3113 #define aVICTORIA_SOLO_FRASE 1285
3114 #define a2C4_CUOCODORME 1286
3115 #define aKRE481 1288
3116 #define aKRE482 1289
3117 #define aKRE483 1290
3118 #define aKRE484 1291
3119 #define aMOS2P1_restore 1292
3120 #define aGIA_dr1a4_doorA 1293
3121 #define aPEN73a 1294
3122 #define aKRE48indica 1295
3123 #define aKRE48spara 1296
3124 #define aLaunch_WMLetter 1297
3125 #define aLaunch_Parchment 1298
3126 #define aVIC48spavent 1299
3127 #define aDAR721 1300
3128 #define aCACinvita 1301
3129 #define aCACinvitab 1302
3130 #define aVICarresa 1303
3131 #define adR451_fine 1304
3132 #define a1A13 1305 //anim null per frase in RTV lucchetto
3133 #define aVIC_FRASE_BRACCIALE 1306 //anim null per frase da bracciale a servetta
3134 #define aPorta421_RIGHT_nocamera 1307
3135 #define a48camera 1308
3136 #define aDAR482ing_idle 1309
3137 #define aVIC482ing_idle 1310
3138 #define aMORTE_CHIRURGO 1311
3139 #define aMORTE_MOORE 1312
3140 #define aMORTE_TRADUTTORE 1313
3141 #define aMORTE_VECCHIO 1314
3142 #define aSUPERVISORE_ASCOLTABAR 1315
3143 #define aVIC000a 1316
3144 #define aVIC_PORTA_ANDERSON 1317
3145 #define aSETTA_FINESTRA_XT_ACCESA 1318
3146 #define a251_DaAcceso 1319
3147 #define aVIV471b1 1320
3148 #define aWALKMAN_STOP 1321
3149 #define aWALKMAN_PLAY 1322
3150 #define aWALKMAN_FASTF 1323
3151 #define a253_SportelloAperto 1324
3152 #define aDOOR_A_CHIUSA1 1325
3153 #define aDOOR_A_CHIUSA2 1326
3154 #define a2C6_occupato 1327
3155 #define a2M8_occupato 1328
3156 #define aTAXI483a 1329
3157 #define aDAR483_GIRATESTA 1330
3158 #define aVIC483_GIRATESTA 1331
3159 #define aDAR483_IDLE 1332
3160 #define aVIC483_IDLE 1333
3161 #define aCAMERA483 1334
3162 #define aPORTALLINK_26a_26b 1335
3163 #define aPORTALLINK_26b_26a 1336
3164 #define aPORTALLINK_24a_24b 1337
3165 #define aPORTALLINK_24b_24a 1338
3166 #define aPORTALLINK_38b_38a 1339
3167 #define aLOGOTREC_START 1340
3168 #define aLOGOTREC 1341
3169 #define aR000cam 1342
3170 #define aDAR000a 1343
3171 #define aCHIUDOCANCINTRO 1344
3172 #define a393b 1345
3173 #define a39VORTICE 1346
3174 #define a39VORTICE_CLEAN 1347
3175 #define aCAMERA483inizio 1348
3176 #define aCACMUOREFUMO 1349
3177 #define aVIC482b 1350
3178 #define aLOGOWM 1351
3179 #define a2G8_fake 1352
3180 #define aMOORE_PARLA 1353
3181 
3182 /* -----------------18/08/99 17.00-------------------
3183  * Icons
3184  * --------------------------------------------------*/
3185 #define iNULL 0
3186 #define i00TELEFONO 1
3187 #define i00TELEFONOVIC 2
3188 #define i13SCALPELLO 3
3189 #define i13INGRANAGGIO 4
3190 #define i14PIUMA 5
3191 #define i14OCCHIALI 6
3192 #define i19BAMBOLA 7
3193 #define i19FOGLIO1 8
3194 #define i19CRISTALLO 9
3195 #define i1aLUCCHETTO 10
3196 #define i1aSASSO 11
3197 #define i1aBOTTIGLIAVUOTA 12
3198 #define i1cMEDAGLIONI3 13
3199 #define i1cMEDAGLIONI2 14
3200 #define i1cMEDAGLIONE 15
3201 #define i1dAUDIOCASSETTA 16
3202 #define i1dTRONCHESE 17
3203 #define i22BRACCIALE 18
3204 #define i22LIBROCHIUSODEPLIANT 19
3205 #define i22DEPLIANT 20
3206 #define i22LIBROAPERTODEPLIANT 21
3207 #define i22LIBROAPERTO 22
3208 #define i22LIBROCHIUSO 23
3209 #define i24COLTELLO 24
3210 #define i24CHIAVETTA 25
3211 #define i25MAZZODUECHIAVI 26
3212 #define i25FIALABOK 27
3213 #define i25FIALAAOK 28
3214 #define i25FIALEABPIENE 29
3215 #define i25FIALEABUSATE 30
3216 #define i25MEDAGLIONI4 31
3217 #define i27PILE 32
3218 #define i28WALKMANVUOTO 33
3219 #define i28WALKMANNASTRO 34
3220 #define i28WALKMANPILE 35
3221 #define i28WALKMANOK 36
3222 #define i29FOTOJUDE1 37
3223 #define i29CHIAVESUPERVISORE 38
3224 #define i29FOTOPROGETTO 39
3225 #define i29FOTOIMMORTALI 40
3226 #define i29STAMPAINGRANAGGIO 41
3227 #define i2aSANGUE 42
3228 #define i2aSIRINGAVUOTA 43
3229 #define i2aSIRINGANITRICO 44
3230 #define i2bSACCHETTOINCENSO 45
3231 #define i2cBANCONOTA1 46
3232 #define i2dSESTERZO 47
3233 #define i2dCOLLANA 48
3234 #define i2iDETERSIVO 49
3235 #define i2lBOTTIGLIAVINO 50
3236 #define i2mSIRINGASOLFORICO 51
3237 #define i2mSIRINGAACIDI 52
3238 #define i2rBUSTAVUOTAA 53
3239 #define i2rBUSTAVUOTAB 54
3240 #define i31ANELLOBRONZO 55
3241 #define i31DISCONUOVO 56
3242 #define i34PERGAMENA 57
3243 #define i34DIARIO 58
3244 #define i34LASTRE 59
3245 #define i34STAMPO 60
3246 #define i34FIALAA 61
3247 #define i34FIALAB 62
3248 #define i34SFERA 63
3249 #define i35DISEGNO 64
3250 #define i36BUSTA1DOSEA 65
3251 #define i36BUSTA2DOSIA 66
3252 #define i36BUSTA1DOSEB 67
3253 #define i36BUSTA2DOSIB 68
3254 #define i37CILINDRO 69
3255 #define i39CRISTALLOATTIVATO 70
3256 #define i3bLASTRA2VOLTI 71
3257 #define i3bLASTRABIANCA 72
3258 #define i3bLASTRANERA 73
3259 #define i41OGGETTO 74
3260 #define i46BUSTAOROLOGIAIO 75
3261 #define i46CANDELA1 76
3262 #define i46CANDELA2 77
3263 #define i46PERGAMENA 78
3264 #define i46STELLA1 79
3265 #define i46STELLA2 80
3266 #define i46FIALEABVUOTE 81
3267 #define i48CHIAVIMANETTE 82
3268 #define i49ACCENDINO 83
3269 #define i2lBOTTIGLIAVINO_NOCUOCO 84
3270 
3271 /* -----------------17/03/98 10.20-------------------
3272  * Actions
3273  * --------------------------------------------------*/
3274 #define h11RACCOGLIECARTA 1
3275 
3276 /* -----------------17/03/98 10.21-------------------
3277  * Scripts
3278  * --------------------------------------------------*/
3279 #define s16CARD 1
3280 
3281 /* -----------------17/03/98 10.21-------------------
3282  * Sounds
3283  * --------------------------------------------------*/
3284 #define wNULL 0
3285 #define wPROVA 1
3286 #define wPASSODESTROCOTTO 2
3287 #define wPASSOSINISTROCOTTO 3
3288 #define wPASSODESTROTAPPETO 4
3289 #define wPASSOSINISTROTAPPETO 5
3290 #define wPASSODESTROASFALTO 6
3291 #define wPASSOSINISTROASFALTO 7
3292 #define wPASSODESTROPIETRA 8
3293 #define wPASSOSINISTROPIETRA 9
3294 #define wPASSODESTROERBA 10
3295 #define wPASSOSINISTROERBA 11
3296 #define wPASSODESTROASFALTO2 12
3297 #define wPASSOSINISTROASFALTO2 13
3298 #define wPASSODESTROASFALTO3 14
3299 #define wPASSOSINISTROASFALTO3 15
3300 #define wPASSODESTROMARMO 16
3301 #define wPASSOSINISTROMARMO 17
3302 #define wPASSODESTROLEGNO 18
3303 #define wPASSOSINISTROLEGNO 19
3304 #define wPASSODESTROTAPPETO2 20
3305 #define wPASSOSINISTROTAPPETO2 21
3306 #define wPASSODESTROTAPPETO3 22
3307 #define wPASSOSINISTROTAPPETO3 23
3308 #define wPASSODESTROTAPPETO4 24
3309 #define wPASSOSINISTROTAPPETO4 25
3310 #define wPASSODESTROTAPPETO5 26
3311 #define wPASSOSINISTROTAPPETO5 27
3312 #define w132 28
3313 #define w133a 29
3314 #define w133b 30
3315 #define w139a 31
3316 #define w139b 32
3317 #define w1311a 33
3318 #define w1311b 34
3319 #define w1312a 35
3320 #define w1312b 36
3321 #define w213a 37
3322 #define w213b 38
3323 #define w2111 39
3324 #define w221a 40
3325 #define w221b 41
3326 #define w222a 42
3327 #define w222b 43
3328 #define w2210a 44
3329 #define w2210b 45
3330 #define w2211a 46
3331 #define w2211b 47
3332 #define w2211c 48
3333 #define w2211d 49
3334 #define w223a 50
3335 #define w223b 51
3336 #define w225a 52
3337 #define w225b 53
3338 #define w226a 54
3339 #define w226b 55
3340 #define w241a 56
3341 #define w241b 57
3342 #define w242a 58
3343 #define w242b 59
3344 #define w243a 60
3345 #define w243b 61
3346 #define w243c 62
3347 #define w243d 63
3348 #define w244 64
3349 #define w245 65
3350 #define w246 66
3351 #define w247 67
3352 #define w248 68
3353 #define w249a 69
3354 #define w249b 70
3355 #define w2411 71
3356 #define w251 72
3357 #define w252 73
3358 #define w25puls 74
3359 #define w25fialf 75
3360 #define w2512a 76
3361 #define w2512b 77
3362 #define w2512c 78
3363 #define w2512d 79
3364 #define w2513a 80
3365 #define w2513b 81
3366 #define w2515 82
3367 #define w2518a 83
3368 #define w2518b 84
3369 #define w2519a 85
3370 #define w2519b 86
3371 #define w2520 87
3372 #define w2521 88
3373 #define w2522 89
3374 #define w25fialc 90
3375 #define w2531a 91
3376 #define w2531b 92
3377 #define w2532a 93
3378 #define w2532b 94
3379 #define w2533a 95
3380 #define w2533b 96
3381 #define w2534a 97
3382 #define w2534b 98
3383 #define w2535a 99
3384 #define w2535b 100
3385 #define w2536a 101
3386 #define w2536b 102
3387 #define w2536d 103
3388 #define w2536c 104
3389 #define w111a 105
3390 #define w111b 106
3391 #define w143 107
3392 #define w156A 108
3393 #define w156B 109
3394 #define w156C 110
3395 #define w157A 111
3396 #define w158A 112
3397 #define w158B 113
3398 #define w161A 114
3399 #define w161B 115
3400 #define w172 116
3401 #define w173 117
3402 #define w174 118
3403 #define w176 119
3404 #define w177 120
3405 #define w112 121
3406 #define w162A 122
3407 #define w162B 123
3408 #define w162C 124
3409 #define w164 125
3410 #define w175 126
3411 #define w178 127
3412 #define w1710A 128
3413 #define w1710B 129
3414 #define w181A 130
3415 #define w181B 131
3416 #define w182A 132
3417 #define w182B 133
3418 #define w193A 134
3419 #define w193B 135
3420 #define w195 136
3421 #define w1A5A 137
3422 #define w1A5B 138
3423 #define w1A6 139
3424 #define w1A9 140
3425 #define w1A10 141
3426 #define w1A11A 142
3427 #define w1A11B 143
3428 #define w1A15 144
3429 #define w1B3 145
3430 #define w1B4A 146
3431 #define w1B4B 147
3432 #define w1B6 148
3433 #define w1C2A 149
3434 #define w1C2B 150
3435 #define w1D1A 151
3436 #define w1D1B 152
3437 #define w1D3 153
3438 #define w1D4A 154
3439 #define w1D4B 155
3440 #define w1D5 156
3441 #define w1D6A 157
3442 #define w1D6B 158
3443 #define w1D8 159
3444 #define w1D10 160
3445 #define w1D12 161
3446 #define w1E1 162
3447 #define w1F7 163
3448 #define w1F9 164
3449 #define w262A 165
3450 #define w262B 166
3451 #define w264A 167
3452 #define w264B 168
3453 #define w268 169
3454 #define w272 170
3455 #define w273 171
3456 #define w274 172
3457 #define w275 173
3458 #define w276 174
3459 #define w277 175
3460 #define w282 176
3461 #define w283 177
3462 #define w284A 178
3463 #define w284B 179
3464 #define w2811A 180
3465 #define w2811B 181
3466 #define wBCUCINA 182
3467 #define w2812 183
3468 #define w2813 184
3469 #define w2814 185
3470 #define w2815 186
3471 #define w2816 187
3472 #define w2817 188
3473 #define w292 189
3474 #define w293A 190
3475 #define w293B 191
3476 #define w295 192
3477 #define w297 193
3478 #define w298A 194
3479 #define w298B 195
3480 #define w298C 196
3481 #define w298D 197
3482 #define w298E 198
3483 #define w298F 199
3484 #define w299 200
3485 #define w2A1A 201
3486 #define w2A1B 202
3487 #define w2A1C 203
3488 #define w2A1D 204
3489 #define w2A1E 205
3490 #define w2A2A 206
3491 #define w2A2B 207
3492 #define w2A2C 208
3493 #define w2A4A 209
3494 #define w2A4B 210
3495 #define w2A5A 211
3496 #define w2A5B 212
3497 #define w2A6A 213
3498 #define w2A6B 214
3499 #define w2A6C 215
3500 #define w2A6D 216
3501 #define w2A7A 217
3502 #define w2A7B 218
3503 #define w2A8A 219
3504 #define w2A8B 220
3505 #define w2A9 221
3506 #define w2A11 222
3507 #define w2A12A 223
3508 #define w2A12B 224
3509 #define w2B1A 225
3510 #define w2B1B 226
3511 #define w2B6 227
3512 #define w2B9 228
3513 #define w2B10A 229
3514 #define w2B10B 230
3515 #define w2B11 231
3516 #define w2B12 232
3517 #define w2B14 233
3518 #define w2C6A 234
3519 #define w2C6B 235
3520 #define w2C7A 236
3521 #define w2C7B 237
3522 #define w2C9 238
3523 #define w2C10 239
3524 #define w2C11A 240
3525 #define w2C11B 241
3526 #define w2D3A 242
3527 #define w2D3B 243
3528 #define w2D4A 244
3529 #define w2D4B 245
3530 #define w2D5A 246
3531 #define w2D5B 247
3532 #define w2D6 248
3533 #define w2D11A 249
3534 #define w2D11B 250
3535 #define w2D12 251
3536 #define w2D13 252
3537 #define w2D14A 253
3538 #define w2D14B 254
3539 #define w2D15A 255
3540 #define w2D15B 256
3541 #define w2D16A 257
3542 #define w2D16B 258
3543 #define w2E2A 259
3544 #define w2E2B 260
3545 #define w2E4A 261
3546 #define w2E4B 262
3547 #define w2E5A 263
3548 #define w2E5B 264
3549 #define w2E6A 265
3550 #define w2E6B 266
3551 #define w2E7A 267
3552 #define w2E7B 268
3553 #define w2F2A 269
3554 #define w2F2B 270
3555 #define w2F4A 271
3556 #define w2F4B 272
3557 #define w2F5A 273
3558 #define w2F5B 274
3559 #define w2F6A 275
3560 #define w2F6B 276
3561 #define w2F7A 277
3562 #define w2F7B 278
3563 #define w2F8A 279
3564 #define w2F8B 280
3565 #define w2G2A 281
3566 #define w2G2B 282
3567 #define w2G2C 283
3568 #define w2G2D 284
3569 #define w2G3A 285
3570 #define w2G3B 286
3571 #define w2G3C 287
3572 #define w2G3D 288
3573 #define w2G4 289
3574 #define w2G5 290
3575 #define w2G6 291
3576 #define w2G7 292
3577 #define w2G8 293
3578 #define w2G9 294
3579 #define w2H1A 295
3580 #define w2H1B 296
3581 #define w2H5A 297
3582 #define w2H5B 298
3583 #define w2H6A 299
3584 #define w2H6B 300
3585 #define w2H7 301
3586 #define w2I2 302
3587 #define w2I3A 303
3588 #define w2I3B 304
3589 #define w2I3C 305
3590 #define w2I3D 306
3591 #define w2I4A 307
3592 #define w2I4B 308
3593 #define w2L2 309
3594 #define w2L3 310
3595 #define w2L4A 311
3596 #define w2L4B 312
3597 #define w2M1 313
3598 #define w2M4A 314
3599 #define w2M4B 315
3600 #define w2M5A 316
3601 #define w2M5B 317
3602 #define w2M6 318
3603 #define w2M7 319
3604 #define w2M8A 320
3605 #define w2M8B 321
3606 #define w2M15A 322
3607 #define w2M15B 323
3608 #define w2M16A 324
3609 #define w2M16B 325
3610 #define w2M17A 326
3611 #define w2M17B 327
3612 #define w2P1A 328
3613 #define w2P1B 329
3614 #define w2P1C 330
3615 #define w2P1D 331
3616 #define w2P2A 332
3617 #define w2P2B 333
3618 #define w2P3A 334
3619 #define w2P3B 335
3620 #define w2P5A 336
3621 #define w2P5B 337
3622 #define w2P5C 338
3623 #define w2P5D 339
3624 #define w2P6 340
3625 #define w2R2A 341
3626 #define w2R2B 342
3627 #define w2R3 343
3628 #define w2R4A 344
3629 #define w2R4B 345
3630 #define w2R5A 346
3631 #define w2R5B 347
3632 #define w2R6A 348
3633 #define w2R6B 349
3634 #define w2R7A 350
3635 #define w2R7B 351
3636 #define w2R8 352
3637 #define w2R9 353
3638 #define w2S2A 354
3639 #define w2S2B 355
3640 #define w2S3A 356
3641 #define w2S3B 357
3642 #define w2S4A 358
3643 #define w2S4B 359
3644 #define w2S5A 360
3645 #define w2S5B 361
3646 #define w2S6A 362
3647 #define w2S6B 363
3648 #define w2S7A 364
3649 #define w2S7B 365
3650 #define w2Q5A 366
3651 #define w2Q5B 367
3652 #define w2Q7A 368
3653 #define w2Q7B 369
3654 #define w2Q7C 370
3655 #define w2Q7D 371
3656 #define w2Q7E 372
3657 #define w2Q11A 373
3658 #define w2Q11B 374
3659 #define w2Q14 375
3660 #define wCUO254A 376
3661 #define wCUO254B 377
3662 #define wCUO254C 378
3663 #define wCUO254D 379
3664 #define wCUO254E 380
3665 #define wCUO252A 381
3666 #define wCUO252B 382
3667 #define wCUO251A 383
3668 #define wCUO251B 384
3669 #define wCUO251C 385
3670 #define wCUO251D 386
3671 #define wCUO251E 387
3672 #define wCUO253A 388
3673 #define wCUO253B 389
3674 #define wCUO253C 390
3675 #define wCUO255 391
3676 #define w2517a 392
3677 #define w2517b 393
3678 #define w271a 394
3679 #define w271b 395
3680 #define w281a 396
3681 #define w281b 397
3682 #define w291a 398
3683 #define w291b 399
3684 #define w2B3a 400
3685 #define w2B3b 401
3686 #define w2B5a 402
3687 #define w2B5b 403
3688 #define w2B8a 404
3689 #define w2B8b 405
3690 #define w2E1a 406
3691 #define w2E1b 407
3692 #define w2F1a 408
3693 #define w2F1b 409
3694 #define w2H2a 410
3695 #define w2H2b 411
3696 #define w2H3a 412
3697 #define w2H3b 413
3698 #define w2I1a 414
3699 #define w2I1b 415
3700 #define w2M12a 416
3701 #define w2M12b 417
3702 #define w2M14a 418
3703 #define w2M14b 419
3704 #define w2M19a 420
3705 #define w2M19b 421
3706 #define w2M21a 422
3707 #define w2M21b 423
3708 #define w2R1a 424
3709 #define w2R1b 425
3710 #define w2S1a 426
3711 #define w2S1b 427
3712 #define w2T1a 428
3713 #define w2T1b 429
3714 #define w211a 430
3715 #define w211b 431
3716 #define w2514a 432
3717 #define w2514b 433
3718 #define w212a 434
3719 #define w212b 435
3720 #define w214a 436
3721 #define w214b 437
3722 #define w2516a 438
3723 #define w2516b 439
3724 #define w2B2a 440
3725 #define w2B2b 441
3726 #define w2B4a 442
3727 #define w2B4b 443
3728 #define w2B7a 444
3729 #define w2B7b 445
3730 #define w2C1a 446
3731 #define w2C1b 447
3732 #define w2C2a 448
3733 #define w2C2b 449
3734 #define w2C3a 450
3735 #define w2C3b 451
3736 #define w2C4a 452
3737 #define w2C4b 453
3738 #define w2C5a 454
3739 #define w2C5b 455
3740 #define w2D1a 456
3741 #define w2D1b 457
3742 #define w2E3a 458
3743 #define w2E3b 459
3744 #define w2F3A 460
3745 #define w2F3B 461
3746 #define w2G1a 462
3747 #define w2G1b 463
3748 #define w2H4a 464
3749 #define w2H4b 465
3750 #define w2L1a 466
3751 #define w2L1b 467
3752 #define w2M3a 468
3753 #define w2M3b 469
3754 #define w2M11a 470
3755 #define w2M11b 471
3756 #define w2M13a 472
3757 #define w2M13b 473
3758 #define w2M18a 474
3759 #define w2M18b 475
3760 #define w2M20a 476
3761 #define w2M20b 477
3762 #define w2P4a 478
3763 #define w2P4b 479
3764 #define w2Q3a 480
3765 #define w2Q3b 481
3766 #define w2Q4a 482
3767 #define w2Q4b 483
3768 #define w121a 484
3769 #define w121b 485
3770 #define w163a 486
3771 #define w163b 487
3772 #define w183a 488
3773 #define w183b 489
3774 #define w1A1a 490
3775 #define w1A1b 491
3776 #define w1C1a 492
3777 #define w1C1b 493
3778 #define w131a 494
3779 #define w131b 495
3780 #define w153a 496
3781 #define w153b 497
3782 #define w154a 498
3783 #define w154b 499
3784 #define w171a 500
3785 #define w171b 501
3786 #define w1B1a 502
3787 #define w1B1b 503
3788 #define w1B2a 504
3789 #define w1B2b 505
3790 #define w144A 506
3791 #define w144B 507
3792 #define w145 508
3793 #define w1D10A 509
3794 #define w1D10B 510
3795 #define w1D10C 511
3796 #define w1F1A 512
3797 #define w1F1B 513
3798 #define w1F5A 514
3799 #define w1F5B 515
3800 #define w1F5C 516
3801 #define w411 517
3802 #define w413A 518
3803 #define w413B 519
3804 #define w421A 520
3805 #define w421B 521
3806 #define w421C 522
3807 #define w425 523
3808 #define w428A 524
3809 #define w428B 525
3810 #define w442A 526
3811 #define w443A 527
3812 #define w444A 528
3813 #define w454A 529
3814 #define w454B 530
3815 #define w4510 531
3816 #define w461 532
3817 #define w462 533
3818 #define w465A 534
3819 #define w465B 535
3820 #define w465C 536
3821 #define w4613 537
3822 #define w4614A 538
3823 #define w4614B 539
3824 #define w4614C 540
3825 #define w4616 541
3826 #define w4618A 542
3827 #define w4618B 543
3828 #define w4619 544
3829 #define w4620 545
3830 #define w481 546
3831 #define w482A 547
3832 #define w482B 548
3833 #define w492A 549
3834 #define w492B 550
3835 #define w493A 551
3836 #define w493BA 552
3837 #define w493BB 553
3838 #define w494BA 554
3839 #define w494BB 555
3840 #define w495A 556
3841 #define w495B 557
3842 #define w496A 558
3843 #define w496B 559
3844 #define w497A 560
3845 #define w497B 561
3846 #define w498A 562
3847 #define w498B 563
3848 #define w499A 564
3849 #define w499B 565
3850 #define w4910A 566
3851 #define w4910B 567
3852 #define w4910C 568
3853 #define w4915 569
3854 #define w4916 570
3855 #define w4A1A 571
3856 #define w4A1B 572
3857 #define w4A2A 573
3858 #define w4A2B 574
3859 #define w494A 575
3860 #define w442B 576
3861 #define w443B 577
3862 #define w444B 578
3863 #define w4612 579
3864 #define w453 580
3865 #define w311A 581
3866 #define w311B 582
3867 #define w312 583
3868 #define w313 584
3869 #define w315 585
3870 #define w316 586
3871 #define w317 587
3872 #define w318 588
3873 #define w319 589
3874 #define w3112 590
3875 #define w3113 591
3876 #define w3114 592
3877 #define w3115 593
3878 #define w3116 594
3879 #define w3117 595
3880 #define w3119 596
3881 #define w3120 597
3882 #define w323A 598
3883 #define w323B 599
3884 #define w337A 600
3885 #define w337B 601
3886 #define w342A 602
3887 #define w342B 603
3888 #define w344 604
3889 #define w345 605
3890 #define w349A 606
3891 #define w349B 607
3892 #define w349C 608
3893 #define w3415 609
3894 #define w3416 610
3895 #define w343A 611
3896 #define w343B 612
3897 #define w331A 613
3898 #define w331B 614
3899 #define w339A 615
3900 #define w339B 616
3901 #define w351A 617
3902 #define w351B 618
3903 #define w361A 619
3904 #define w361B 620
3905 #define w362A 621
3906 #define w362B 622
3907 #define w363A 623
3908 #define w363B 624
3909 #define w352A 625
3910 #define w352B 626
3911 #define w352C 627
3912 #define w352D 628
3913 #define w353A 629
3914 #define w353B 630
3915 #define w353C 631
3916 #define w353D 632
3917 #define w355 633
3918 #define w356 634
3919 #define w371A 635
3920 #define w371B 636
3921 #define w375 637
3922 #define w376 638
3923 #define w377 639
3924 #define w378 640
3925 #define w394 641
3926 #define w395 642
3927 #define w396 643
3928 #define w397 644
3929 #define w398 645
3930 #define w399 646
3931 #define w3910 647
3932 #define w3911 648
3933 #define w3912 649
3934 #define w3913 650
3935 #define w3B21 651
3936 #define w3B24A 652
3937 #define w3B24B 653
3938 #define w3B25A 654
3939 #define w3B25B 655
3940 #define w3C4A 656
3941 #define w3C4B 657
3942 #define w3C5A 658
3943 #define w3C5B 659
3944 #define w374A 660
3945 #define w374B 661
3946 #define w347A 662
3947 #define w347B 663
3948 #define w354A 664
3949 #define w354B 665
3950 #define w3417 666
3951 #define w384A 667
3952 #define w384B 668
3953 #define w384C 669
3954 #define w384D 670
3955 #define w392 671
3956 #define wB451 672
3957 #define w197 673
3958 #define w228 674
3959 #define w2D8 675
3960 #define w2D9 676
3961 #define w2D9B 677
3962 #define w2D10 678
3963 #define w2Q8 679
3964 #define w2Q9 680
3965 #define w2Q9B 681
3966 #define w2Q10 682
3967 #define w422 683
3968 #define w424 684
3969 #define w1D7 685
3970 #define w3118 686
3971 #define w3B22 687
3972 #define wCIAERRORE 688
3973 #define wCIAPULSANTE 689
3974 #define wPDAPULSANTE 690
3975 #define wPDAALERT 691
3976 #define wPDAOFF 692
3977 #define wSCANPULSANTE 693
3978 #define w2T2A 694
3979 #define w2T2B 695
3980 #define w2T3A 696
3981 #define w2T3B 697
3982 #define w2T4A 698
3983 #define w2T4B 699
3984 #define w2T5A 700
3985 #define w2T5B 701
3986 #define w2T6A 702
3987 #define w2T6B 703
3988 #define w2T7A 704
3989 #define w2T7B 705
3990 #define w4618C 706
3991 #define w3C2A 707
3992 #define w3C2B 708
3993 #define w2D7A 709
3994 #define w2D7B 710
3995 #define w148A 711
3996 #define w148B 712
3997 #define w148C 713
3998 #define w325 714
3999 #define w3414A 715
4000 #define w3414B 716
4001 #define w3419 717
4002 #define w36MIDA 718
4003 #define w36MISA 719
4004 #define w36MSDA 720
4005 #define w36PBDBA 721
4006 #define w36PBSBA 722
4007 #define w36PSDB 723
4008 #define w3B2 724
4009 #define w3B3 725
4010 #define w3B4 726
4011 #define w3B5 727
4012 #define w3B8 728
4013 #define w3B9A 729
4014 #define w3B10A 730
4015 #define w3B19 731
4016 #define w3B20 732
4017 #define w36PBDBB 733
4018 #define w36PBSBB 734
4019 #define w3B9B 735
4020 #define w3B10B 736
4021 #define w3B9C 737
4022 #define w3B10C 738
4023 #define wCUO256A 739
4024 #define wCUO256B 740
4025 #define wCUO256C 741
4026 #define wCUO256D 742
4027 #define wCUO256E 743
4028 #define wCUO258A 744
4029 #define wCUO258B 745
4030 #define wCUO2T1A 746
4031 #define wCUO2T1B 747
4032 #define wCUO2T1C 748
4033 #define wCUS131A 749
4034 #define wCUS131B 750
4035 #define wCUS131C 751
4036 #define wCUS131D 752
4037 #define wCUS131E 753
4038 #define wCUS133 754
4039 #define wCUS134 755
4040 #define wCUS2G2 756
4041 #define wCUS2M1A 757
4042 #define wCUS2M1B 758
4043 #define wCUS2M1C 759
4044 #define wCUS2M1D 760
4045 #define wCUS2M1E 761
4046 #define wCUS2M2A 762
4047 #define wCUS2M2B 763
4048 #define wCUS2M2C 764
4049 #define wCUS2M3A 765
4050 #define wCUS2M3B 766
4051 #define wCUS2M3C 767
4052 #define wCUS2M3D 768
4053 #define wCUS2M3E 769
4054 #define wCUS2M3F 770
4055 #define wCUS2M3G 771
4056 #define wDOM221A 772
4057 #define wDOM221B 773
4058 #define wDOM221C 774
4059 #define wDOM221D 775
4060 #define wDOM221E 776
4061 #define wDOM221F 777
4062 #define wDOM261A 778
4063 #define wDOM261B 779
4064 #define wDOM263A 780
4065 #define wDOM263B 781
4066 #define wDOM263C 782
4067 #define wDOM265 783
4068 #define wDOM281A 784
4069 #define wDOM281B 785
4070 #define wGIA141 786
4071 #define wGIA142 787
4072 #define wGIA181A 788
4073 #define wGIA181B 789
4074 #define wGIA181C 790
4075 #define wGIA183A 791
4076 #define wGIA183B 792
4077 #define wGIA183C 793
4078 #define wGIA183D 794
4079 #define wGIA1A1A 795
4080 #define wGIA1A1B 796
4081 #define wGIA1A1C 797
4082 #define wGIA1A2A 798
4083 #define wGIA1A2B 799
4084 #define wGIA1A2C 800
4085 #define wGIA1A2D 801
4086 #define wGIA1A4A 802
4087 #define wGIA1A4B 803
4088 #define wGIA1A4C 804
4089 #define wGIA1A5A 805
4090 #define wGIA1A5B 806
4091 #define wGIA1A5C 807
4092 #define wGIA1A5D 808
4093 #define wGIA2G1A 809
4094 #define wGIA2G1B 810
4095 #define wGIA2G1C 811
4096 #define wGIA2G1D 812
4097 #define wGIA2G1E 813
4098 #define wGIA2G1F 814
4099 #define wMOS273A 815
4100 #define wMOS273B 816
4101 #define wMOS273C 817
4102 #define wMOS274A 818
4103 #define wMOS274B 819
4104 #define wMOS2P1 820
4105 #define wMOS2P2 821
4106 #define wSER2C1A 822
4107 #define wSER2C1B 823
4108 #define wSER2C2A 824
4109 #define wSER2C2B 825
4110 #define wSER2C2C 826
4111 #define wSER2C3A 827
4112 #define wSER2C3B 828
4113 #define wSER2C3C 829
4114 #define wSER2C3D 830
4115 #define wSER2C4A 831
4116 #define wSER2C4B 832
4117 #define wSER2C5A 833
4118 #define wSER2C5B 834
4119 #define wSER2C6A 835
4120 #define wSER2C6B 836
4121 #define wSER2C7A 837
4122 #define wSER2C7B 838
4123 #define wSER2C7C 839
4124 #define wSER2C8A 840
4125 #define wSER2C8B 841
4126 #define wSER2C8C 842
4127 #define wSER2C8D 843
4128 #define wSER2C9A 844
4129 #define wSER2C9B 845
4130 #define wSER2C10A 846
4131 #define wSER2C10B 847
4132 #define wSER2I1A 848
4133 #define wSER2I1B 849
4134 #define wSER2I2 850
4135 #define wSER2P1A 851
4136 #define wSER2P1B 852
4137 #define wSER2P2A 853
4138 #define wSER2P2B 854
4139 #define wSER2P2C 855
4140 #define wSER2P3A 856
4141 #define wSER2P3B 857
4142 #define wSER2P3C 858
4143 #define wSER2P3D 859
4144 #define wSER2P4A 860
4145 #define wSER2P4B 861
4146 #define wSER2P5A 862
4147 #define wSER2P5B 863
4148 #define wSER2Q1A 864
4149 #define wSER2Q1B 865
4150 #define wSER2Q1C 866
4151 #define wSER2Q3A 867
4152 #define wSER2Q3B 868
4153 #define wSER2Q3C 869
4154 #define wSER2Q3D 870
4155 #define wSUP261A 871
4156 #define wSUP261B 872
4157 #define wSUP261C 873
4158 #define wSUP262A 874
4159 #define wSUP262B 875
4160 #define wSUP291A 876
4161 #define wSUP291B 877
4162 #define wSUP291C 878
4163 #define wSUP295A 879
4164 #define wSUP295B 880
4165 #define wSUP295C 881
4166 #define wSUP296A 882
4167 #define wSUP296B 883
4168 #define wSUP297 884
4169 #define wPASSODESTROPIETRA2 885
4170 #define wPASSOSINISTROPIETRA2 886
4171 #define wDAR1A1B 887
4172 #define wDAR1A1CA 888
4173 #define wDAR1A1CB 889
4174 #define wDAR1A1CC 890
4175 #define wCOL1A2AA 891
4176 #define wCOL1A2AB 892
4177 #define wCOL1A2AC 893
4178 #define wCOL1A2AD 894
4179 #define wSUP1A2AA 895
4180 #define wSUP1A2AB 896
4181 #define wDAR1A3AA 897
4182 #define wDAR1A3AB 898
4183 #define wVIC1A3AA 899
4184 #define wVIC1A3AB 900
4185 #define wCUO2T2AA 901
4186 #define wCUO2T2AB 902
4187 #define wPSG1C3A 903
4188 #define wVIV451A 904
4189 #define wVIV451B 905
4190 #define wVIV452AA 906
4191 #define wVIV452AB 907
4192 #define wCAC1A5A 908
4193 #define wCAC1A5B 909
4194 #define wVIC212A 910
4195 #define wVIC291A 911
4196 #define wSUP291CA 912
4197 #define wSUP291CB 913
4198 #define wSUP291CC 914
4199 #define wSUP291CD 915
4200 #define wSUP291CE 916
4201 #define wVIC291C 917
4202 #define wVIV471AA 918
4203 #define wVIV471AB 919
4204 #define wJUD222B 920
4205 #define wVIV471B 921
4206 #define wDAR421A 922
4207 #define wDAR481A 923
4208 #define wDAR481B 924
4209 #define wDAR482IN 925
4210 #define wVIC482IN 926
4211 #define wCAC482C 927
4212 #define wKREI347A 928
4213 #define wKREI347BA 929
4214 #define wKREI347BB 930
4215 #define wCORI347A 931
4216 #define wKREI347EA 932
4217 #define wKREI347EB 933
4218 #define wKREI347EC 934
4219 #define wDUKI347DA 935
4220 #define wDUKI347DB 936
4221 #define wDUKI347DC 937
4222 #define wDUKI347DD 938
4223 #define wDUKI347DE 939
4224 #define wDUKI347DF 940
4225 #define wGREI347AA 941
4226 #define wGREI347AB 942
4227 #define wDUKI347FA 943
4228 #define wDUKI347FB 944
4229 #define wGREI347BA 945
4230 #define wGREI347BB 946
4231 #define wAND007C 947
4232 #define wCUO009AA 948
4233 #define wCUO009AB 949
4234 #define wCUO009AC 950
4235 #define wCUO009BA 951
4236 #define wCUO009BB 952
4237 #define wDAR009 953
4238 #define wGIA1A3A 954
4239 #define wGIA1A3B 955
4240 #define wGIA1A3C 956
4241 #define wKRE481A 957
4242 #define wDAR000BA 958
4243 #define wDAR000BB 959
4244 #define wDAR000BC 960
4245 #define wDAR000BD 961
4246 #define wDAR000E 962
4247 #define wDAR000J 963
4248 #define wCARLOOP 964
4249 #define wCARLOOP2 965
4250 #define wCARSTART 966
4251 #define wCARSTOP 967
4252 #define wDAR000TAA 968
4253 #define wDAR000TAB 969
4254 #define wDAR000TAC 970
4255 #define wVIV47A 971
4256 #define wPET000E 972
4257 #define wR1F1A 973
4258 #define wR1F1B 974
4259 #define wR1F1C 975
4260 #define wR1F1D 976
4261 #define wR1F1E 977
4262 #define wSABBIAA 978
4263 #define wSABBIAB 979
4264 #define wSABBIAC 980
4265 #define wSABBIAD 981
4266 #define wVIC1A5 982
4267 #define wRAGGIOSTART 983
4268 #define wCAC2A1 984
4269 #define wVIC221B 985
4270 #define wDOM221AA 986
4271 #define wDOM221AB 987
4272 #define wDAR2C1A 988
4273 #define wDAR2C1B 989
4274 #define wDOM221BA 990
4275 #define wDOM221BB 991
4276 #define wDAR_DOOR_A92A 992
4277 #define wDAR_DOOR_A92B 993
4278 #define wGREI347CA 994
4279 #define wGREI347CB 995
4280 #define wVICI347B 996
4281 #define wDARI347A 997
4282 #define wVIC491B 998
4283 #define wV_3G1A 999
4284 #define wC_3G1A 1000
4285 #define wC_3G1B 1001
4286 #define wC_3G1C 1002
4287 #define wO_3G1A 1003
4288 #define wO_3G1B 1004
4289 #define wPASSODESTROTAPPETO6 1005
4290 #define wPASSOSINISTROTAPPETO6 1006
4291 #define wPASSODESTROTAPPETO7 1007
4292 #define wPASSOSINISTROTAPPETO7 1008
4293 #define wPASSODESTROTAPPETO8 1009
4294 #define wPASSOSINISTROTAPPETO8 1010
4295 #define wPASSODESTROFERRO 1011
4296 #define wPASSOSINISTROFERRO 1012
4297 #define wELICOTTERO 1013
4298 #define wSVEGLIA 1014
4299 #define wFONTANA 1015
4300 #define wLAVATRICE 1016
4301 #define wSUP291AB 1017
4302 #define wSER1A1 1018
4303 #define wSER1A2 1019
4304 #define w336 1020
4305 #define wNASTROFFWDDAR 1021
4306 #define wNASTROFFWDVIC 1022
4307 #define wNASTROSTARTDAR 1023
4308 #define wNASTROSTARTVIC 1024
4309 #define w425B 1025
4310 #define w444C 1026
4311 #define w157B 1027
4312 #define w157C 1028
4313 #define w157D 1029
4314 #define w157E 1030
4315 #define wDOM262 1031
4316 #define w147A 1032
4317 #define w147B 1033
4318 #define w2B13 1034
4319 #define w194A 1035
4320 #define w194B 1036
4321 #define w194C 1037
4322 #define w293C 1038
4323 #define w2A3 1039
4324 #define w2A14 1040
4325 #define w1A7 1041
4326 #define w259 1042
4327 #define w3111 1043
4328 #define wCAMINETTO 1044
4329 #define wPOMPA 1045
4330 #define wRINGHIERAA 1046
4331 #define wRINGHIERAB 1047
4332 #define wCOLONA 1048
4333 #define wCOLONB 1049
4334 #define wCOLONC 1050
4335 #define wCUO257A 1051
4336 #define wCUO257B 1052
4337 #define wCUO257C 1053
4338 #define w391A 1054
4339 #define w391B 1055
4340 #define wPFERRODX 1056
4341 #define wPFERROSX 1057
4342 #define w1D11A 1058
4343 #define w1D11B 1059
4344 #define w372 1060
4345 #define wPASSODESTROCOTTO2 1061
4346 #define wPASSOSINISTROCOTTO2 1062
4347 #define wPENDOLO 1063
4348 #define wMARMOFAKE1 1064
4349 #define wTAPPETOFAKEDX1 1065
4350 #define wTAPPETOFAKESX1 1066
4351 #define wTAPPETOFAKE2 1067
4352 #define wMARMOFAKEDX2 1068
4353 #define wMARMOFAKESX2 1069
4354 #define wMARMOFAKE3 1070
4355 #define wSPAROLENTO 1071
4356 #define wTIC 1072
4357 #define wTAC 1073
4358 #define wDOM2D1 1074
4359 #define wDOM241 1075
4360 #define wLEYLINES 1076
4361 #define wCLICK 1077
4362 #define wMODEM 1078
4363 #define w231074 1079
4364 #define wCAC482B 1080
4365 #define wCAC482KA 1081
4366 #define wCAC482KB 1082
4367 #define wCAC482KC 1083
4368 #define wCAC482KD 1084
4369 #define wCAC482KE 1085
4370 #define wCAC482KF 1086
4371 #define wMANETTEA 1087
4372 #define wMANETTEB 1088
4373 #define wPORTA421 1089
4374 #define wPORTA421A 1090
4375 #define wCUOREBRUCIA 1091
4376 #define wGREIPORTA 1092
4377 #define wDUKIFIN 1093
4378 #define wSCALATAA 1094
4379 #define wSCALATAB 1095
4380 #define wSCALATAC 1096
4381 #define wPORTACHIUSA 1097
4382 #define wMODEMFULL 1098
4383 #define wVIC2C1A 1099
4384 #define wVIC2C1B 1100
4385 #define wDAR2C1 1101
4386 #define w48PORTA 1102
4387 #define wCAC482CTEL 1103
4388 
4389 /* -----------------17/03/98 10.21-------------------
4390  * Menu
4391  * --------------------------------------------------*/
4392 #define mNULL 0
4393 #define mPREDIALOG1 1
4394 #define mPREDIALOG2 2
4395 #define mPREDIALOG3 3
4396 #define mPREDIALOG4 4
4397 #define mENDDIALOG1 5
4398 #define mENDDIALOG2 6
4399 #define mENDDIALOG3 7
4400 #define mQUIT 9
4401 #define mMAIN 10
4402 #define mRTV 11
4403 #define mRTV2 12
4404 #define mRTV3 13
4405 #define mCUOCO 20
4406 #define mCUOCO1 21
4407 #define mCUOCO2 22
4408 #define mDOMESTICA 30
4409 #define mDOMESTICA1 31
4410 #define mDOMESTICA2 32
4411 #define mGIARDINIERE 40
4412 #define mGIARDINIERE1 41
4413 #define mGIARDINIERE2 42
4414 #define mGIARDINIERE3 43
4415 #define mCUSTODE 50
4416 #define mCUSTODE1 51
4417 #define mCUSTODE2 52
4418 #define mSERVETTA 60
4419 #define mSERVETTA1 61
4420 #define mSERVETTA2 62
4421 #define mSUPERVISORE 70
4422 #define mSUPERVISORE1 71
4423 #define mSUPERVISORE2 72
4424 #define mSUPERVISORE3 73
4425 #define mSUPERVISORE4 74
4426 #define mMOGLIESUPERVISORE 80
4427 #define mMOGLIESUPERVISORE1 81
4428 #define mMOGLIESUPERVISORE2 82
4429 #define mMOGLIESUPERVISORE3 83
4430 #define mMOGLIESUPERVISORE4 84
4431 #define mMOGLIESUPERVISORE5 85
4432 #define mCOSEFATTI 90
4433 #define mCOSEFATTI1 91
4434 #define mCOSEFATTI2 92
4435 #define mCOSEFATTI3 93
4436 #define mCOSEFATTI4 94
4437 #define mCOSEFATTI5 95
4438 #define mCOSEFATTI6 96
4439 #define mCOSEFATTI7 97
4440 #define mCOSEFATTI8 98
4441 #define mCOSEFATTI9 99
4442 
4443 /* -----------------17/03/98 10.21-------------------
4444  * Diary
4445  * --------------------------------------------------*/
4446 #define eNULL 0
4447 #define eCUOCO1 2
4448 #define eCUOCO2 3
4449 #define eCUOCO3 4
4450 #define eCUOCO4 5
4451 #define eCUOCO5 6
4452 #define eDOMESTICA1 7
4453 #define eDOMESTICA2 8
4454 #define eDOMESTICA3 9
4455 #define eDOMESTICA4 10
4456 #define eDOMESTICA5 11
4457 #define eDOMESTICA6 12
4458 #define eGIARDINIERE1 13
4459 #define eGIARDINIERE2 14
4460 #define eGIARDINIERE3 15
4461 #define eCUSTODE0 16
4462 #define eCUSTODE1 17
4463 #define eCUSTODE2_prima 18
4464 #define eCUSTODE2_dopo 19
4465 #define eCUSTODE3 20
4466 #define eCUSTODE4_prima 21
4467 #define eCUSTODE4_dopo 22
4468 #define eCUSTODE5 23
4469 #define eCUSTODE6 24
4470 #define eSERVETTA1 25
4471 #define eSERVETTA2 26
4472 #define eSERVETTA3 27
4473 #define eSERVETTA4 28
4474 #define eSERVETTA5 29
4475 #define eSERVETTA6 30
4476 #define eSUPERVISORE0 31
4477 #define eSUPERVISORE1 32
4478 #define eSUPERVISORE2 33
4479 #define eSUPERVISORE3 34
4480 #define eSUPERVISORE4 35
4481 #define eMOGLIESUPERVISORE1 36
4482 #define eMOGLIESUPERVISORE2 37
4483 #define eKRENN1 38
4484 
4485 /* -----------------17/03/98 10.21---------------------
4486  * Dialogs
4487  * --------------------------------------------------*/
4488 #define dNULL 0
4489 
4490 // in questi rtv si vede il mouse
4491 #define dCUOCO 1
4492 #define dCUSTODE 2
4493 #define dDOMESTICA 3
4494 #define dGIARDINIERE 4
4495 #define dMOGLIESUPERVISORE 5
4496 #define dSERVETTA 6
4497 #define dSUPERVISORE 7
4498 
4499 // in questi rtv il mouse viene nascosto
4500 #define dCUOCO_INTERRUPT1 8
4501 #define dCUOCO_INTERRUPT2 9
4502 #define dCUSTODE_INTERRUPT1 10
4503 #define dCUSTODE_INTERRUPT2 11
4504 #define dCUSTODE_INTERRUPT3 12
4505 #define dCUSTODE_INTERRUPT4 13
4506 #define dCUSTODE_INTERRUPT5 14
4507 #define dDOMESTICA_INTERRUPT1 15
4508 #define dDOMESTICA_INTERRUPT2 16
4509 #define dGIARDINIERE_INTERRUPT1 17
4510 #define dGIARDINIERE_INTERRUPT2 18
4511 #define dMOGLIESUP_INTERRUPT1 19
4512 #define dMOGLIESUP_INTERRUPT2 20
4513 #define dR000 21
4514 #define dR001 22
4515 #define dR0010 23
4516 #define dR0014_left 24
4517 #define dR0014_right 25
4518 #define dR002 26
4519 #define dR003 27
4520 #define dR004 28
4521 #define dR005 29
4522 #define dR006 30
4523 #define dR007 31
4524 #define dR008 32
4525 #define dR009 33
4526 #define dR015 34
4527 #define dR111 35
4528 #define dR1A2 36
4529 #define dR1A3 37
4530 #define dR1A5 38
4531 #define dR1C1 39
4532 #define dR1C1_fine 40
4533 #define dR1C2 41
4534 #define dR1C3 42
4535 #define dR1E1 43
4536 #define dR1F1 44
4537 #define dR1a1 45
4538 #define dR1a1_fine_DARRELL 46
4539 #define dR1a1_fine_VICTORIA 47
4540 #define dR1a3 48
4541 #define dR1a4 49
4542 #define dR211 50
4543 #define dR211_dlg 51
4544 #define dR212 52
4545 #define dR221 53
4546 #define dR222 54
4547 #define dR241 55
4548 #define dR291 56
4549 #define dR2A1 57
4550 #define dR2C1 58
4551 #define dR2D1 59
4552 #define dR2P0 60
4553 #define dR2P1 61
4554 #define dR2T1 62
4555 #define dR2T2 63
4556 #define dR321_DAR 64
4557 #define dR321_VIC 65
4558 #define dR347_DARRELL_PART1 66
4559 #define dR347_DARRELL_PART2 67
4560 #define dR347_VICTORIA_PART1 68
4561 #define dR347_VICTORIA_PART2 69
4562 #define dR371 70
4563 #define dR391 71
4564 #define dR411 72
4565 #define dR421_DAR 73
4566 #define dR421_VIC 74
4567 #define dR421_fine 75
4568 #define dR42_porta 76
4569 #define dR451 77
4570 #define dR452 78
4571 #define dR461 79
4572 #define dR471 80
4573 #define dR481 81
4574 #define dR482 82
4575 #define dR483 83
4576 #define dR483_finale 84
4577 #define dR48KRENNSPARA 85
4578 #define dR48_chiavi 86
4579 #define dR491 87
4580 #define dRCALLOTHERPLAYER 88
4581 #define dRCARTELLINA1 89
4582 #define dRCARTELLINA2 90
4583 #define dRCARTELLINA3 91
4584 #define dRCARTELLINA4 92
4585 #define dRCARTELLINA5 93
4586 #define dRCARTELLINA6 94
4587 #define dRCARTELLINA7 95
4588 #define dRCARTELLINA8 96
4589 #define dRCARTELLINAC 97
4590 #define dRGAMEOVER 98
4591 #define dRLOGHI 99
4592 #define dROLDPARCHMENT 100
4593 #define dRUN_R1a1_CENTER 101
4594 #define dRUN_R1a1_RIGHT 102
4595 #define dRWALKMAN 103
4596 #define dRWATCHMAKERSLETTER 104
4597 #define dSUPERVISORE_INTERRUPT1 105
4598 #define dSUPERVISORE_INTERRUPT2 106
4599 #define dSUPERVISORE_INTERRUPT3 107
4600 #define dSUPERVISORE_INTERRUPT4 108
4601 #define dR391_end 109
4602 #define dPROVA 110
4603 
4604 /* -----------------23/06/00 16.38---------109------------
4605 * Music
4606 * ----------------------------------------------------*/
4607 #define nNULL 0
4608 #define nPROVA 1
4609 #define nPROVA2 2
4610 #define nBACK1 3
4611 #define nBACK2 4
4612 #define nBACK3 5
4613 #define nBACK4 6
4614 #define nCRIPTA 7
4615 #define nCHIESA 8
4616 #define nCACCIATORE 9
4617 #define nOROLOGIAIO 10
4618 #define nINSEGUIMENTO 11
4619 #define nFRIGO 12
4620 #define nTRAPPOLA 13
4621 #define nLABIRINTO 14
4622 #define nBACK21 15
4623 #define nBACK22 16
4624 #define nBACK41 17
4625 #define nLABIRINTO1 18
4626 #define nINTRO 19
4627 
4628 
4629 /* -----------------15/01/99 16.41-------------------
4630  * T2D
4631  * --------------------------------------------------*/
4632 #define tNULL 0
4633 #define tSCANNER 1
4634 #define tCOMPUTER 2
4635 #define tPDA 3
4636 #define tDIARIO 4
4637 #define tLETTERA 5
4638 #define tOPTIONS 6
4639 #define tMAINMENU 7
4640 #define tGAMEOVER 8
4641 #define tPROVA 9
4642 
4643 /* -----------------26/04/00 17.01-------------------
4644  * PDA Logs
4645  * --------------------------------------------------*/
4646 #define lNULL 0
4647 #define lPDA1_TITLE0 1
4648 #define lPDA1_TITLE1 2
4649 #define lPDA1_MENU1_ITEM1 3
4650 #define lPDA1_MENU1_ITEM2 4
4651 #define lPDA1_MENU1_ITEM3 5
4652 #define lPDA1_MENU1_ITEM4 6
4653 #define lPDA1_MENU1_ITEM5 7
4654 #define lPDA1_MENU1_ITEM6 8
4655 #define lPDA1_MENU1_ITEM7 9
4656 #define lPDA1_MENU1_ITEM8 10
4657 #define lPDA2_TITLE2 11
4658 #define lPDA2_TITLE3_CUO 12
4659 #define lPDA2_MENU3_CUO_ITEM1 13
4660 #define lPDA2_MENU3_CUO_ITEM2 14
4661 #define lPDA2_MENU3_CUO_ITEM3 15
4662 #define lPDA2_TITLE4_DOM 16
4663 #define lPDA2_MENU4_DOM_ITEM1 17
4664 #define lPDA2_MENU4_DOM_ITEM2 18
4665 #define lPDA2_TITLE5_RAUL 19
4666 #define lPDA2_MENU5_RAUL_ITEM1 20
4667 #define lPDA2_MENU5_RAUL_ITEM2 21
4668 #define lPDA2_MENU5_RAUL_ITEM3 22
4669 #define lPDA2_MENU5_RAUL_ITEM4 23
4670 #define lPDA2_MENU5_RAUL_ITEM5 24
4671 #define lPDA2_TITLE6_CUS 25
4672 #define lPDA2_MENU6_CUS_ITEM1 26
4673 #define lPDA2_MENU6_CUS_ITEM2 27
4674 #define lPDA2_MENU6_CUS_ITEM3 28
4675 #define lPDA2_MENU6_CUS_ITEM4 29
4676 #define lPDA2_TITLE7_SER 30
4677 #define lPDA2_MENU7_SER_ITEM1 31
4678 #define lPDA2_MENU7_SER_ITEM2 32
4679 #define lPDA2_MENU7_SER_ITEM3 33
4680 #define lPDA2_TITLE8_SUP 34
4681 #define lPDA2_MENU8_SUP_ITEM1 35
4682 #define lPDA2_MENU8_SUP_ITEM2 36
4683 #define lPDA2_MENU8_SUP_ITEM3 37
4684 #define lPDA2_MENU8_SUP_ITEM4 38
4685 #define lPDA2_MENU8_SUP_ITEM5 39
4686 #define lPDA2_MENU8_SUP_ITEM6 40
4687 #define lPDA2_TITLE9_MOGL 41
4688 #define lPDA2_MENU9_MOGL_ITEM1 42
4689 #define lPDA2_MENU9_MOGL_ITEM2 43
4690 #define lPDA3_TITLE10 44
4691 #define lPDA3_TITLE11_CORONA 45
4692 #define lPDA3_MENU11_CORONA_ITEM1 46
4693 #define lPDA3_MENU11_CORONA_ITEM2 47
4694 #define lPDA3_MENU11_CORONA_ITEM3 48
4695 #define lPDA3_TITLE12_DUKES 49
4696 #define lPDA3_MENU12_DUKES_ITEM1 50
4697 #define lPDA3_MENU12_DUKES_ITEM2 51
4698 #define lPDA3_TITLE13_KRENN 52
4699 #define lPDA3_MENU13_KRENN_ITEM1 53
4700 #define lPDA3_MENU13_KRENN_ITEM2 54
4701 #define lPDA3_TITLE14_VALENCIA 55
4702 #define lPDA3_MENU14_VALENCIA_ITEM1 56
4703 #define lPDA3_MENU14_VALENCIA_ITEM2 57
4704 #define lPDA3_TITLE15_CONCLUSIONS 58
4705 #define lPDA3_MENU15_CONCLUSIONS_ITEM1 59
4706 #define lPDA3_MENU15_CONCLUSIONS_ITEM2 60
4707 #define lPDA3_MENU15_CONCLUSIONS_ITEM3 61
4708 #define lPDA3_MENU15_CONCLUSIONS_ITEM4 62
4709 #define lPDA4_TITLE16 63
4710 #define lPDA4_TITLE17 64
4711 #define lPDA4_MENU17_ITEM1 65
4712 #define lPDA4_TITLE18 66
4713 #define lPDA4_MENU18_ITEM1 67
4714 #define lPDA4_TITLE19 68
4715 #define lPDA4_MENU19_ITEM1 69
4716 #define lPDA4_TITLE20 70
4717 #define lPDA4_MENU20_ITEM1 71
4718 #define lPDA4_TITLE21 72
4719 #define lPDA4_MENU21_ITEM1 73
4720 #define lPDA5_TITLE22 74
4721 #define lPDA5_TITLE23 75
4722 #define lPDA5_MENU23_ITEM1 76
4723 #define lPDA5_MENU23_ITEM2 77
4724 #define lPDA5_TITLE24 78
4725 #define lPDA5_MENU24_ITEM1 79
4726 #define lPDA5_TITLE25 80
4727 #define lPDA5_MENU25_ITEM1 81
4728 #define lPDA5_TITLE26 82
4729 #define lPDA5_MENU26_ITEM1 83
4730 #define lPDA5_MENU26_ITEM2 84
4731 #define lPDA5_MENU26_ITEM3 85
4732 #define lPDA5_TITLE27 86
4733 #define lPDA5_MENU27_ITEM1 87
4734 #define lPDA6_TITLE28 88
4735 #define lPDA6_TITLE29 89
4736 #define lPDA6_MENU29_ITEM1 90
4737 #define lPDA6_MENU29_ITEM2 91
4738 #define lPDA6_TITLE30 92
4739 #define lPDA6_MENU30_ITEM1 93
4740 #define lPDA6_TITLE31 94
4741 #define lPDA6_MENU31_ITEM1 95
4742 #define lPDA6_MENU31_ITEM2 96
4743 #define lPDA6_TITLE32 97
4744 #define lPDA6_MENU32_ITEM1 98
4745 #define lPDA6_MENU32_ITEM2 99
4746 //aggiunte
4747 #define lPDA5_MENU25_ITEM2 100
4748 
4749 /* -----------------17/03/98 10.21-------------------
4750  * END.
4751  * --------------------------------------------------*/
4752 
4753 } // End of namespace Watchmaker
4754 
4755 #endif // WATCHMAKER_DEFINE_H
Definition: 2d_stuff.h:30