-
Notifications
You must be signed in to change notification settings - Fork 6
/
XRay.sln
530 lines (530 loc) · 40.9 KB
/
XRay.sln
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.3.32825.248
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "utils", "utils", "{89F6A7EE-3BBE-45D3-A8A8-5D9366CD987B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "dedicated", "dedicated", "{3FC858CB-4888-42FF-ABC5-82DAECB59C2C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "3rd party", "3rd party", "{2BFC806B-CE92-4EA4-8FE8-5F2EA54BA348}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "XR_3DA", "src\xr_3da\XR_3DA.vcxproj", "{2578C6D8-660D-48AE-9322-7422F8664F06}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrCPU_Pipe", "src\xr_3da\xrCPU_Pipe\xrCPU_Pipe.vcxproj", "{CA0649DD-D089-423A-981C-46B57A884EB9}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrGame", "src\xr_3da\xrGame\xrGame.vcxproj", "{200652A6-043E-4634-8837-87983B3BD5E0}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrSound", "src\xrSound\xrSound.vcxproj", "{CCCA7859-EB86-493E-9B53-C4235F45B3C5}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrCore", "src\xrCore\xrCore.vcxproj", "{A0F7D1FB-59A7-4717-A7E4-96F37E91998E}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrCDB", "src\xrCDB\xrCDB.vcxproj", "{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrRender_R1", "src\xr_3da\xrRender_R1\xrRender_R1.vcxproj", "{57A498C9-A741-4DDF-8EFC-BFB9EB6B00E2}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrRender_R2", "src\xr_3da\xrRender_R2\xrRender_R2.vcxproj", "{963BA4E5-499A-454D-B002-1D5ECE0527A6}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ode", "src\xrODE\contrib\msvc7\ode_default\default.vcxproj", "{1BF75FEB-87DD-486C-880B-227987D191C2}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrParticles", "src\xrParticles\xrParticles.vcxproj", "{94A1C366-3D19-48E6-8170-4ADC2E70DF97}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrNetServer", "src\xrNetServer\xrNetServer.vcxproj", "{435BAC9A-B225-457D-AB40-C9BD0CC8838C}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrSE_Factory", "src\xrSE_Factory\xrSE_Factory.vcxproj", "{3AD26FD3-4F52-4E22-A4CF-AD4C49E74C61}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrCompress", "src\xrCompress\xrCompress.vcxproj", "{EF76867B-6EB8-4DC0-A1D6-E964FAD6FC7B}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DXT", "src\xrDXT\DXT.vcxproj", "{EBF9B543-0830-4866-9B48-DC0740E87E8A}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrLC", "src\xrLC\xrLC.vcxproj", "{A4ABD75E-825B-4D09-B3B2-2709682E40C8}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrQSlim", "src\xrQSlim\xrQSlim.vcxproj", "{F1836CE2-59EF-4189-8B9C-D103A511CB27}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrDO_Light", "src\xrLC\xrDO_Light\xrDO_Light.vcxproj", "{B730F54D-1199-481A-AAD0-5DB684E067C0}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrAI", "src\xrAI\xrAI.vcxproj", "{EA5932F3-02FE-4AD3-89E8-7072DC465D25}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ETools", "src\ETools\ETools.vcxproj", "{65CBB9D0-FBC6-41A4-8316-F5E9B5D7FB33}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrD3D9-Null", "src\xr_3da\xrGame\xrD3D9-Null\xrD3D9-Null.vcxproj", "{0899B131-F1D4-4876-9BA1-67AC821DB9E1}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrGameSpy", "src\xr_3da\xrGame\xrGameSpy\xrGameSpy.vcxproj", "{5535F6B4-7AE6-4B66-8AEA-CC31C14D7AB7}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "stalker_net", "src\xr_3da\Stalker_Net\Stalker_net.vcxproj", "{AF9ACB0D-451A-4878-A04C-0B9E221CC705}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrStatisticConvert", "src\xr_3da\xrStatisticConvert\xrStatisticConvert.vcxproj", "{2EA2CBBA-16BD-4B97-80B3-3F824CFBD4F1}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrLUA", "src\xrLua\xrLua.vcxproj", "{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xrCoreStatic", "src\xrCore\xrCoreStatic.vcxproj", "{F1066EAC-EE25-4C7A-9023-5957A6F7BA27}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LWO", "src\LWO\LWO.vcxproj", "{A6EBBBBB-5FEF-4C20-8460-DFAB11734DED}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "engine_game", "engine_game", "{6DB2417B-534D-4570-A206-11B54EF6E129}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "engine_core", "engine_core", "{020377D8-F744-48CA-8743-BDB1F495A52A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "renders", "renders", "{D051F079-DA17-4645-8382-02E76381B051}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug_Dedicated|x86 = Debug_Dedicated|x86
Debug_Priquel|x86 = Debug_Priquel|x86
Debug|x86 = Debug|x86
Mixed_Dedicated|x86 = Mixed_Dedicated|x86
Mixed_Priquel|x86 = Mixed_Priquel|x86
Mixed|x86 = Mixed|x86
Release_Dedicated|x86 = Release_Dedicated|x86
Release_Priquel|x86 = Release_Priquel|x86
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2578C6D8-660D-48AE-9322-7422F8664F06}.Debug_Dedicated|x86.ActiveCfg = Debug_Dedicated|Win32
{2578C6D8-660D-48AE-9322-7422F8664F06}.Debug_Dedicated|x86.Build.0 = Debug_Dedicated|Win32
{2578C6D8-660D-48AE-9322-7422F8664F06}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{2578C6D8-660D-48AE-9322-7422F8664F06}.Debug_Priquel|x86.Build.0 = Debug|Win32
{2578C6D8-660D-48AE-9322-7422F8664F06}.Debug|x86.ActiveCfg = Debug|Win32
{2578C6D8-660D-48AE-9322-7422F8664F06}.Debug|x86.Build.0 = Debug|Win32
{2578C6D8-660D-48AE-9322-7422F8664F06}.Mixed_Dedicated|x86.ActiveCfg = Mixed_Dedicated|Win32
{2578C6D8-660D-48AE-9322-7422F8664F06}.Mixed_Dedicated|x86.Build.0 = Mixed_Dedicated|Win32
{2578C6D8-660D-48AE-9322-7422F8664F06}.Mixed_Priquel|x86.ActiveCfg = Debug|Win32
{2578C6D8-660D-48AE-9322-7422F8664F06}.Mixed_Priquel|x86.Build.0 = Debug|Win32
{2578C6D8-660D-48AE-9322-7422F8664F06}.Mixed|x86.ActiveCfg = Mixed|Win32
{2578C6D8-660D-48AE-9322-7422F8664F06}.Mixed|x86.Build.0 = Mixed|Win32
{2578C6D8-660D-48AE-9322-7422F8664F06}.Release_Dedicated|x86.ActiveCfg = Release_Dedicated|Win32
{2578C6D8-660D-48AE-9322-7422F8664F06}.Release_Dedicated|x86.Build.0 = Release_Dedicated|Win32
{2578C6D8-660D-48AE-9322-7422F8664F06}.Release_Priquel|x86.ActiveCfg = Release|Win32
{2578C6D8-660D-48AE-9322-7422F8664F06}.Release_Priquel|x86.Build.0 = Release|Win32
{2578C6D8-660D-48AE-9322-7422F8664F06}.Release|x86.ActiveCfg = Release|Win32
{2578C6D8-660D-48AE-9322-7422F8664F06}.Release|x86.Build.0 = Release|Win32
{CA0649DD-D089-423A-981C-46B57A884EB9}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{CA0649DD-D089-423A-981C-46B57A884EB9}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{CA0649DD-D089-423A-981C-46B57A884EB9}.Debug_Priquel|x86.Build.0 = Debug|Win32
{CA0649DD-D089-423A-981C-46B57A884EB9}.Debug|x86.ActiveCfg = Debug|Win32
{CA0649DD-D089-423A-981C-46B57A884EB9}.Debug|x86.Build.0 = Debug|Win32
{CA0649DD-D089-423A-981C-46B57A884EB9}.Mixed_Dedicated|x86.ActiveCfg = Mixed|Win32
{CA0649DD-D089-423A-981C-46B57A884EB9}.Mixed_Priquel|x86.ActiveCfg = Mixed|Win32
{CA0649DD-D089-423A-981C-46B57A884EB9}.Mixed_Priquel|x86.Build.0 = Mixed|Win32
{CA0649DD-D089-423A-981C-46B57A884EB9}.Mixed|x86.ActiveCfg = Mixed|Win32
{CA0649DD-D089-423A-981C-46B57A884EB9}.Mixed|x86.Build.0 = Mixed|Win32
{CA0649DD-D089-423A-981C-46B57A884EB9}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{CA0649DD-D089-423A-981C-46B57A884EB9}.Release_Priquel|x86.ActiveCfg = Release|Win32
{CA0649DD-D089-423A-981C-46B57A884EB9}.Release_Priquel|x86.Build.0 = Release|Win32
{CA0649DD-D089-423A-981C-46B57A884EB9}.Release|x86.ActiveCfg = Release|Win32
{CA0649DD-D089-423A-981C-46B57A884EB9}.Release|x86.Build.0 = Release|Win32
{200652A6-043E-4634-8837-87983B3BD5E0}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{200652A6-043E-4634-8837-87983B3BD5E0}.Debug_Priquel|x86.ActiveCfg = Debug_Priquel|Win32
{200652A6-043E-4634-8837-87983B3BD5E0}.Debug_Priquel|x86.Build.0 = Debug_Priquel|Win32
{200652A6-043E-4634-8837-87983B3BD5E0}.Debug|x86.ActiveCfg = Debug|Win32
{200652A6-043E-4634-8837-87983B3BD5E0}.Debug|x86.Build.0 = Debug|Win32
{200652A6-043E-4634-8837-87983B3BD5E0}.Mixed_Dedicated|x86.ActiveCfg = Mixed|Win32
{200652A6-043E-4634-8837-87983B3BD5E0}.Mixed_Priquel|x86.ActiveCfg = Mixed_Priquel|Win32
{200652A6-043E-4634-8837-87983B3BD5E0}.Mixed_Priquel|x86.Build.0 = Mixed_Priquel|Win32
{200652A6-043E-4634-8837-87983B3BD5E0}.Mixed|x86.ActiveCfg = Mixed|Win32
{200652A6-043E-4634-8837-87983B3BD5E0}.Mixed|x86.Build.0 = Mixed|Win32
{200652A6-043E-4634-8837-87983B3BD5E0}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{200652A6-043E-4634-8837-87983B3BD5E0}.Release_Priquel|x86.ActiveCfg = Release_Priquel|Win32
{200652A6-043E-4634-8837-87983B3BD5E0}.Release_Priquel|x86.Build.0 = Release_Priquel|Win32
{200652A6-043E-4634-8837-87983B3BD5E0}.Release|x86.ActiveCfg = Release|Win32
{200652A6-043E-4634-8837-87983B3BD5E0}.Release|x86.Build.0 = Release|Win32
{CCCA7859-EB86-493E-9B53-C4235F45B3C5}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{CCCA7859-EB86-493E-9B53-C4235F45B3C5}.Debug_Dedicated|x86.Build.0 = Debug|Win32
{CCCA7859-EB86-493E-9B53-C4235F45B3C5}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{CCCA7859-EB86-493E-9B53-C4235F45B3C5}.Debug_Priquel|x86.Build.0 = Debug|Win32
{CCCA7859-EB86-493E-9B53-C4235F45B3C5}.Debug|x86.ActiveCfg = Debug|Win32
{CCCA7859-EB86-493E-9B53-C4235F45B3C5}.Debug|x86.Build.0 = Debug|Win32
{CCCA7859-EB86-493E-9B53-C4235F45B3C5}.Mixed_Dedicated|x86.ActiveCfg = Mixed|Win32
{CCCA7859-EB86-493E-9B53-C4235F45B3C5}.Mixed_Dedicated|x86.Build.0 = Mixed|Win32
{CCCA7859-EB86-493E-9B53-C4235F45B3C5}.Mixed_Priquel|x86.ActiveCfg = Mixed|Win32
{CCCA7859-EB86-493E-9B53-C4235F45B3C5}.Mixed_Priquel|x86.Build.0 = Mixed|Win32
{CCCA7859-EB86-493E-9B53-C4235F45B3C5}.Mixed|x86.ActiveCfg = Mixed|Win32
{CCCA7859-EB86-493E-9B53-C4235F45B3C5}.Mixed|x86.Build.0 = Mixed|Win32
{CCCA7859-EB86-493E-9B53-C4235F45B3C5}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{CCCA7859-EB86-493E-9B53-C4235F45B3C5}.Release_Dedicated|x86.Build.0 = Release|Win32
{CCCA7859-EB86-493E-9B53-C4235F45B3C5}.Release_Priquel|x86.ActiveCfg = Release|Win32
{CCCA7859-EB86-493E-9B53-C4235F45B3C5}.Release_Priquel|x86.Build.0 = Release|Win32
{CCCA7859-EB86-493E-9B53-C4235F45B3C5}.Release|x86.ActiveCfg = Release|Win32
{CCCA7859-EB86-493E-9B53-C4235F45B3C5}.Release|x86.Build.0 = Release|Win32
{A0F7D1FB-59A7-4717-A7E4-96F37E91998E}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{A0F7D1FB-59A7-4717-A7E4-96F37E91998E}.Debug_Dedicated|x86.Build.0 = Debug|Win32
{A0F7D1FB-59A7-4717-A7E4-96F37E91998E}.Debug_Priquel|x86.ActiveCfg = Mixed|Win32
{A0F7D1FB-59A7-4717-A7E4-96F37E91998E}.Debug_Priquel|x86.Build.0 = Mixed|Win32
{A0F7D1FB-59A7-4717-A7E4-96F37E91998E}.Debug|x86.ActiveCfg = Debug|Win32
{A0F7D1FB-59A7-4717-A7E4-96F37E91998E}.Debug|x86.Build.0 = Debug|Win32
{A0F7D1FB-59A7-4717-A7E4-96F37E91998E}.Mixed_Dedicated|x86.ActiveCfg = Mixed|Win32
{A0F7D1FB-59A7-4717-A7E4-96F37E91998E}.Mixed_Dedicated|x86.Build.0 = Mixed|Win32
{A0F7D1FB-59A7-4717-A7E4-96F37E91998E}.Mixed_Priquel|x86.ActiveCfg = Mixed|Win32
{A0F7D1FB-59A7-4717-A7E4-96F37E91998E}.Mixed_Priquel|x86.Build.0 = Mixed|Win32
{A0F7D1FB-59A7-4717-A7E4-96F37E91998E}.Mixed|x86.ActiveCfg = Mixed|Win32
{A0F7D1FB-59A7-4717-A7E4-96F37E91998E}.Mixed|x86.Build.0 = Mixed|Win32
{A0F7D1FB-59A7-4717-A7E4-96F37E91998E}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{A0F7D1FB-59A7-4717-A7E4-96F37E91998E}.Release_Dedicated|x86.Build.0 = Release|Win32
{A0F7D1FB-59A7-4717-A7E4-96F37E91998E}.Release_Priquel|x86.ActiveCfg = Release|Win32
{A0F7D1FB-59A7-4717-A7E4-96F37E91998E}.Release_Priquel|x86.Build.0 = Release|Win32
{A0F7D1FB-59A7-4717-A7E4-96F37E91998E}.Release|x86.ActiveCfg = Release|Win32
{A0F7D1FB-59A7-4717-A7E4-96F37E91998E}.Release|x86.Build.0 = Release|Win32
{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5}.Debug_Dedicated|x86.Build.0 = Debug|Win32
{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5}.Debug_Priquel|x86.Build.0 = Debug|Win32
{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5}.Debug|x86.ActiveCfg = Debug|Win32
{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5}.Debug|x86.Build.0 = Debug|Win32
{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5}.Mixed_Dedicated|x86.ActiveCfg = Mixed|Win32
{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5}.Mixed_Dedicated|x86.Build.0 = Mixed|Win32
{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5}.Mixed_Priquel|x86.ActiveCfg = Mixed|Win32
{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5}.Mixed_Priquel|x86.Build.0 = Mixed|Win32
{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5}.Mixed|x86.ActiveCfg = Mixed|Win32
{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5}.Mixed|x86.Build.0 = Mixed|Win32
{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5}.Release_Dedicated|x86.Build.0 = Release|Win32
{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5}.Release_Priquel|x86.ActiveCfg = Release|Win32
{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5}.Release_Priquel|x86.Build.0 = Release|Win32
{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5}.Release|x86.ActiveCfg = Release|Win32
{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5}.Release|x86.Build.0 = Release|Win32
{57A498C9-A741-4DDF-8EFC-BFB9EB6B00E2}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{57A498C9-A741-4DDF-8EFC-BFB9EB6B00E2}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{57A498C9-A741-4DDF-8EFC-BFB9EB6B00E2}.Debug_Priquel|x86.Build.0 = Debug|Win32
{57A498C9-A741-4DDF-8EFC-BFB9EB6B00E2}.Debug|x86.ActiveCfg = Debug|Win32
{57A498C9-A741-4DDF-8EFC-BFB9EB6B00E2}.Debug|x86.Build.0 = Debug|Win32
{57A498C9-A741-4DDF-8EFC-BFB9EB6B00E2}.Mixed_Dedicated|x86.ActiveCfg = Mixed|Win32
{57A498C9-A741-4DDF-8EFC-BFB9EB6B00E2}.Mixed_Priquel|x86.ActiveCfg = Debug|Win32
{57A498C9-A741-4DDF-8EFC-BFB9EB6B00E2}.Mixed_Priquel|x86.Build.0 = Debug|Win32
{57A498C9-A741-4DDF-8EFC-BFB9EB6B00E2}.Mixed|x86.ActiveCfg = Mixed|Win32
{57A498C9-A741-4DDF-8EFC-BFB9EB6B00E2}.Mixed|x86.Build.0 = Mixed|Win32
{57A498C9-A741-4DDF-8EFC-BFB9EB6B00E2}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{57A498C9-A741-4DDF-8EFC-BFB9EB6B00E2}.Release_Priquel|x86.ActiveCfg = Release|Win32
{57A498C9-A741-4DDF-8EFC-BFB9EB6B00E2}.Release_Priquel|x86.Build.0 = Release|Win32
{57A498C9-A741-4DDF-8EFC-BFB9EB6B00E2}.Release|x86.ActiveCfg = Release|Win32
{57A498C9-A741-4DDF-8EFC-BFB9EB6B00E2}.Release|x86.Build.0 = Release|Win32
{963BA4E5-499A-454D-B002-1D5ECE0527A6}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{963BA4E5-499A-454D-B002-1D5ECE0527A6}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{963BA4E5-499A-454D-B002-1D5ECE0527A6}.Debug_Priquel|x86.Build.0 = Debug|Win32
{963BA4E5-499A-454D-B002-1D5ECE0527A6}.Debug|x86.ActiveCfg = Debug|Win32
{963BA4E5-499A-454D-B002-1D5ECE0527A6}.Debug|x86.Build.0 = Debug|Win32
{963BA4E5-499A-454D-B002-1D5ECE0527A6}.Mixed_Dedicated|x86.ActiveCfg = Mixed|Win32
{963BA4E5-499A-454D-B002-1D5ECE0527A6}.Mixed_Priquel|x86.ActiveCfg = Debug|Win32
{963BA4E5-499A-454D-B002-1D5ECE0527A6}.Mixed_Priquel|x86.Build.0 = Debug|Win32
{963BA4E5-499A-454D-B002-1D5ECE0527A6}.Mixed|x86.ActiveCfg = Mixed|Win32
{963BA4E5-499A-454D-B002-1D5ECE0527A6}.Mixed|x86.Build.0 = Mixed|Win32
{963BA4E5-499A-454D-B002-1D5ECE0527A6}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{963BA4E5-499A-454D-B002-1D5ECE0527A6}.Release_Priquel|x86.ActiveCfg = Release|Win32
{963BA4E5-499A-454D-B002-1D5ECE0527A6}.Release_Priquel|x86.Build.0 = Release|Win32
{963BA4E5-499A-454D-B002-1D5ECE0527A6}.Release|x86.ActiveCfg = Release|Win32
{963BA4E5-499A-454D-B002-1D5ECE0527A6}.Release|x86.Build.0 = Release|Win32
{1BF75FEB-87DD-486C-880B-227987D191C2}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{1BF75FEB-87DD-486C-880B-227987D191C2}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{1BF75FEB-87DD-486C-880B-227987D191C2}.Debug_Priquel|x86.Build.0 = Debug|Win32
{1BF75FEB-87DD-486C-880B-227987D191C2}.Debug|x86.ActiveCfg = Debug|Win32
{1BF75FEB-87DD-486C-880B-227987D191C2}.Debug|x86.Build.0 = Debug|Win32
{1BF75FEB-87DD-486C-880B-227987D191C2}.Mixed_Dedicated|x86.ActiveCfg = Mixed|Win32
{1BF75FEB-87DD-486C-880B-227987D191C2}.Mixed_Priquel|x86.ActiveCfg = Mixed|Win32
{1BF75FEB-87DD-486C-880B-227987D191C2}.Mixed_Priquel|x86.Build.0 = Mixed|Win32
{1BF75FEB-87DD-486C-880B-227987D191C2}.Mixed|x86.ActiveCfg = Mixed|Win32
{1BF75FEB-87DD-486C-880B-227987D191C2}.Mixed|x86.Build.0 = Mixed|Win32
{1BF75FEB-87DD-486C-880B-227987D191C2}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{1BF75FEB-87DD-486C-880B-227987D191C2}.Release_Priquel|x86.ActiveCfg = Release|Win32
{1BF75FEB-87DD-486C-880B-227987D191C2}.Release_Priquel|x86.Build.0 = Release|Win32
{1BF75FEB-87DD-486C-880B-227987D191C2}.Release|x86.ActiveCfg = Release|Win32
{1BF75FEB-87DD-486C-880B-227987D191C2}.Release|x86.Build.0 = Release|Win32
{94A1C366-3D19-48E6-8170-4ADC2E70DF97}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{94A1C366-3D19-48E6-8170-4ADC2E70DF97}.Debug_Dedicated|x86.Build.0 = Debug|Win32
{94A1C366-3D19-48E6-8170-4ADC2E70DF97}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{94A1C366-3D19-48E6-8170-4ADC2E70DF97}.Debug_Priquel|x86.Build.0 = Debug|Win32
{94A1C366-3D19-48E6-8170-4ADC2E70DF97}.Debug|x86.ActiveCfg = Debug|Win32
{94A1C366-3D19-48E6-8170-4ADC2E70DF97}.Debug|x86.Build.0 = Debug|Win32
{94A1C366-3D19-48E6-8170-4ADC2E70DF97}.Mixed_Dedicated|x86.ActiveCfg = Mixed|Win32
{94A1C366-3D19-48E6-8170-4ADC2E70DF97}.Mixed_Dedicated|x86.Build.0 = Mixed|Win32
{94A1C366-3D19-48E6-8170-4ADC2E70DF97}.Mixed_Priquel|x86.ActiveCfg = Mixed|Win32
{94A1C366-3D19-48E6-8170-4ADC2E70DF97}.Mixed_Priquel|x86.Build.0 = Mixed|Win32
{94A1C366-3D19-48E6-8170-4ADC2E70DF97}.Mixed|x86.ActiveCfg = Mixed|Win32
{94A1C366-3D19-48E6-8170-4ADC2E70DF97}.Mixed|x86.Build.0 = Mixed|Win32
{94A1C366-3D19-48E6-8170-4ADC2E70DF97}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{94A1C366-3D19-48E6-8170-4ADC2E70DF97}.Release_Dedicated|x86.Build.0 = Release|Win32
{94A1C366-3D19-48E6-8170-4ADC2E70DF97}.Release_Priquel|x86.ActiveCfg = Release|Win32
{94A1C366-3D19-48E6-8170-4ADC2E70DF97}.Release_Priquel|x86.Build.0 = Release|Win32
{94A1C366-3D19-48E6-8170-4ADC2E70DF97}.Release|x86.ActiveCfg = Release|Win32
{94A1C366-3D19-48E6-8170-4ADC2E70DF97}.Release|x86.Build.0 = Release|Win32
{435BAC9A-B225-457D-AB40-C9BD0CC8838C}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{435BAC9A-B225-457D-AB40-C9BD0CC8838C}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{435BAC9A-B225-457D-AB40-C9BD0CC8838C}.Debug_Priquel|x86.Build.0 = Debug|Win32
{435BAC9A-B225-457D-AB40-C9BD0CC8838C}.Debug|x86.ActiveCfg = Debug|Win32
{435BAC9A-B225-457D-AB40-C9BD0CC8838C}.Debug|x86.Build.0 = Debug|Win32
{435BAC9A-B225-457D-AB40-C9BD0CC8838C}.Mixed_Dedicated|x86.ActiveCfg = Mixed|Win32
{435BAC9A-B225-457D-AB40-C9BD0CC8838C}.Mixed_Priquel|x86.ActiveCfg = Mixed|Win32
{435BAC9A-B225-457D-AB40-C9BD0CC8838C}.Mixed_Priquel|x86.Build.0 = Mixed|Win32
{435BAC9A-B225-457D-AB40-C9BD0CC8838C}.Mixed|x86.ActiveCfg = Mixed|Win32
{435BAC9A-B225-457D-AB40-C9BD0CC8838C}.Mixed|x86.Build.0 = Mixed|Win32
{435BAC9A-B225-457D-AB40-C9BD0CC8838C}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{435BAC9A-B225-457D-AB40-C9BD0CC8838C}.Release_Priquel|x86.ActiveCfg = Release|Win32
{435BAC9A-B225-457D-AB40-C9BD0CC8838C}.Release_Priquel|x86.Build.0 = Release|Win32
{435BAC9A-B225-457D-AB40-C9BD0CC8838C}.Release|x86.ActiveCfg = Release|Win32
{435BAC9A-B225-457D-AB40-C9BD0CC8838C}.Release|x86.Build.0 = Release|Win32
{3AD26FD3-4F52-4E22-A4CF-AD4C49E74C61}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{3AD26FD3-4F52-4E22-A4CF-AD4C49E74C61}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{3AD26FD3-4F52-4E22-A4CF-AD4C49E74C61}.Debug_Priquel|x86.Build.0 = Debug|Win32
{3AD26FD3-4F52-4E22-A4CF-AD4C49E74C61}.Debug|x86.ActiveCfg = Debug|Win32
{3AD26FD3-4F52-4E22-A4CF-AD4C49E74C61}.Debug|x86.Build.0 = Debug|Win32
{3AD26FD3-4F52-4E22-A4CF-AD4C49E74C61}.Mixed_Dedicated|x86.ActiveCfg = Mixed|Win32
{3AD26FD3-4F52-4E22-A4CF-AD4C49E74C61}.Mixed_Priquel|x86.ActiveCfg = Mixed|Win32
{3AD26FD3-4F52-4E22-A4CF-AD4C49E74C61}.Mixed_Priquel|x86.Build.0 = Mixed|Win32
{3AD26FD3-4F52-4E22-A4CF-AD4C49E74C61}.Mixed|x86.ActiveCfg = Mixed|Win32
{3AD26FD3-4F52-4E22-A4CF-AD4C49E74C61}.Mixed|x86.Build.0 = Mixed|Win32
{3AD26FD3-4F52-4E22-A4CF-AD4C49E74C61}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{3AD26FD3-4F52-4E22-A4CF-AD4C49E74C61}.Release_Priquel|x86.ActiveCfg = Release|Win32
{3AD26FD3-4F52-4E22-A4CF-AD4C49E74C61}.Release_Priquel|x86.Build.0 = Release|Win32
{3AD26FD3-4F52-4E22-A4CF-AD4C49E74C61}.Release|x86.ActiveCfg = Release|Win32
{3AD26FD3-4F52-4E22-A4CF-AD4C49E74C61}.Release|x86.Build.0 = Release|Win32
{EF76867B-6EB8-4DC0-A1D6-E964FAD6FC7B}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{EF76867B-6EB8-4DC0-A1D6-E964FAD6FC7B}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{EF76867B-6EB8-4DC0-A1D6-E964FAD6FC7B}.Debug_Priquel|x86.Build.0 = Debug|Win32
{EF76867B-6EB8-4DC0-A1D6-E964FAD6FC7B}.Debug|x86.ActiveCfg = Debug|Win32
{EF76867B-6EB8-4DC0-A1D6-E964FAD6FC7B}.Debug|x86.Build.0 = Debug|Win32
{EF76867B-6EB8-4DC0-A1D6-E964FAD6FC7B}.Mixed_Dedicated|x86.ActiveCfg = Mixed|Win32
{EF76867B-6EB8-4DC0-A1D6-E964FAD6FC7B}.Mixed_Priquel|x86.ActiveCfg = Mixed|Win32
{EF76867B-6EB8-4DC0-A1D6-E964FAD6FC7B}.Mixed_Priquel|x86.Build.0 = Mixed|Win32
{EF76867B-6EB8-4DC0-A1D6-E964FAD6FC7B}.Mixed|x86.ActiveCfg = Mixed|Win32
{EF76867B-6EB8-4DC0-A1D6-E964FAD6FC7B}.Mixed|x86.Build.0 = Mixed|Win32
{EF76867B-6EB8-4DC0-A1D6-E964FAD6FC7B}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{EF76867B-6EB8-4DC0-A1D6-E964FAD6FC7B}.Release_Priquel|x86.ActiveCfg = Release|Win32
{EF76867B-6EB8-4DC0-A1D6-E964FAD6FC7B}.Release_Priquel|x86.Build.0 = Release|Win32
{EF76867B-6EB8-4DC0-A1D6-E964FAD6FC7B}.Release|x86.ActiveCfg = Release|Win32
{EF76867B-6EB8-4DC0-A1D6-E964FAD6FC7B}.Release|x86.Build.0 = Release|Win32
{EBF9B543-0830-4866-9B48-DC0740E87E8A}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{EBF9B543-0830-4866-9B48-DC0740E87E8A}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{EBF9B543-0830-4866-9B48-DC0740E87E8A}.Debug_Priquel|x86.Build.0 = Debug|Win32
{EBF9B543-0830-4866-9B48-DC0740E87E8A}.Debug|x86.ActiveCfg = Debug|Win32
{EBF9B543-0830-4866-9B48-DC0740E87E8A}.Debug|x86.Build.0 = Debug|Win32
{EBF9B543-0830-4866-9B48-DC0740E87E8A}.Mixed_Dedicated|x86.ActiveCfg = Release|Win32
{EBF9B543-0830-4866-9B48-DC0740E87E8A}.Mixed_Priquel|x86.ActiveCfg = Mixed|Win32
{EBF9B543-0830-4866-9B48-DC0740E87E8A}.Mixed_Priquel|x86.Build.0 = Mixed|Win32
{EBF9B543-0830-4866-9B48-DC0740E87E8A}.Mixed|x86.ActiveCfg = Mixed|Win32
{EBF9B543-0830-4866-9B48-DC0740E87E8A}.Mixed|x86.Build.0 = Mixed|Win32
{EBF9B543-0830-4866-9B48-DC0740E87E8A}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{EBF9B543-0830-4866-9B48-DC0740E87E8A}.Release_Priquel|x86.ActiveCfg = Release|Win32
{EBF9B543-0830-4866-9B48-DC0740E87E8A}.Release_Priquel|x86.Build.0 = Release|Win32
{EBF9B543-0830-4866-9B48-DC0740E87E8A}.Release|x86.ActiveCfg = Release|Win32
{EBF9B543-0830-4866-9B48-DC0740E87E8A}.Release|x86.Build.0 = Release|Win32
{A4ABD75E-825B-4D09-B3B2-2709682E40C8}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{A4ABD75E-825B-4D09-B3B2-2709682E40C8}.Debug_Priquel|x86.ActiveCfg = Debug_Priquel|Win32
{A4ABD75E-825B-4D09-B3B2-2709682E40C8}.Debug_Priquel|x86.Build.0 = Debug_Priquel|Win32
{A4ABD75E-825B-4D09-B3B2-2709682E40C8}.Debug|x86.ActiveCfg = Debug|Win32
{A4ABD75E-825B-4D09-B3B2-2709682E40C8}.Debug|x86.Build.0 = Debug|Win32
{A4ABD75E-825B-4D09-B3B2-2709682E40C8}.Mixed_Dedicated|x86.ActiveCfg = Mixed|Win32
{A4ABD75E-825B-4D09-B3B2-2709682E40C8}.Mixed_Priquel|x86.ActiveCfg = Mixed_Priquel|Win32
{A4ABD75E-825B-4D09-B3B2-2709682E40C8}.Mixed_Priquel|x86.Build.0 = Mixed_Priquel|Win32
{A4ABD75E-825B-4D09-B3B2-2709682E40C8}.Mixed|x86.ActiveCfg = Mixed|Win32
{A4ABD75E-825B-4D09-B3B2-2709682E40C8}.Mixed|x86.Build.0 = Mixed|Win32
{A4ABD75E-825B-4D09-B3B2-2709682E40C8}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{A4ABD75E-825B-4D09-B3B2-2709682E40C8}.Release_Priquel|x86.ActiveCfg = Release_Priquel|Win32
{A4ABD75E-825B-4D09-B3B2-2709682E40C8}.Release_Priquel|x86.Build.0 = Release_Priquel|Win32
{A4ABD75E-825B-4D09-B3B2-2709682E40C8}.Release|x86.ActiveCfg = Release|Win32
{A4ABD75E-825B-4D09-B3B2-2709682E40C8}.Release|x86.Build.0 = Release|Win32
{F1836CE2-59EF-4189-8B9C-D103A511CB27}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{F1836CE2-59EF-4189-8B9C-D103A511CB27}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{F1836CE2-59EF-4189-8B9C-D103A511CB27}.Debug_Priquel|x86.Build.0 = Debug|Win32
{F1836CE2-59EF-4189-8B9C-D103A511CB27}.Debug|x86.ActiveCfg = Debug|Win32
{F1836CE2-59EF-4189-8B9C-D103A511CB27}.Debug|x86.Build.0 = Debug|Win32
{F1836CE2-59EF-4189-8B9C-D103A511CB27}.Mixed_Dedicated|x86.ActiveCfg = Mixed|Win32
{F1836CE2-59EF-4189-8B9C-D103A511CB27}.Mixed_Priquel|x86.ActiveCfg = Mixed|Win32
{F1836CE2-59EF-4189-8B9C-D103A511CB27}.Mixed_Priquel|x86.Build.0 = Mixed|Win32
{F1836CE2-59EF-4189-8B9C-D103A511CB27}.Mixed|x86.ActiveCfg = Mixed|Win32
{F1836CE2-59EF-4189-8B9C-D103A511CB27}.Mixed|x86.Build.0 = Mixed|Win32
{F1836CE2-59EF-4189-8B9C-D103A511CB27}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{F1836CE2-59EF-4189-8B9C-D103A511CB27}.Release_Priquel|x86.ActiveCfg = Release|Win32
{F1836CE2-59EF-4189-8B9C-D103A511CB27}.Release_Priquel|x86.Build.0 = Release|Win32
{F1836CE2-59EF-4189-8B9C-D103A511CB27}.Release|x86.ActiveCfg = Release|Win32
{F1836CE2-59EF-4189-8B9C-D103A511CB27}.Release|x86.Build.0 = Release|Win32
{B730F54D-1199-481A-AAD0-5DB684E067C0}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{B730F54D-1199-481A-AAD0-5DB684E067C0}.Debug_Priquel|x86.ActiveCfg = Debug_Priquel|Win32
{B730F54D-1199-481A-AAD0-5DB684E067C0}.Debug_Priquel|x86.Build.0 = Debug_Priquel|Win32
{B730F54D-1199-481A-AAD0-5DB684E067C0}.Debug|x86.ActiveCfg = Debug|Win32
{B730F54D-1199-481A-AAD0-5DB684E067C0}.Debug|x86.Build.0 = Debug|Win32
{B730F54D-1199-481A-AAD0-5DB684E067C0}.Mixed_Dedicated|x86.ActiveCfg = Mixed|Win32
{B730F54D-1199-481A-AAD0-5DB684E067C0}.Mixed_Priquel|x86.ActiveCfg = Mixed_Priquel|Win32
{B730F54D-1199-481A-AAD0-5DB684E067C0}.Mixed_Priquel|x86.Build.0 = Mixed_Priquel|Win32
{B730F54D-1199-481A-AAD0-5DB684E067C0}.Mixed|x86.ActiveCfg = Mixed|Win32
{B730F54D-1199-481A-AAD0-5DB684E067C0}.Mixed|x86.Build.0 = Mixed|Win32
{B730F54D-1199-481A-AAD0-5DB684E067C0}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{B730F54D-1199-481A-AAD0-5DB684E067C0}.Release_Priquel|x86.ActiveCfg = Release_Priquel|Win32
{B730F54D-1199-481A-AAD0-5DB684E067C0}.Release_Priquel|x86.Build.0 = Release_Priquel|Win32
{B730F54D-1199-481A-AAD0-5DB684E067C0}.Release|x86.ActiveCfg = Release|Win32
{B730F54D-1199-481A-AAD0-5DB684E067C0}.Release|x86.Build.0 = Release|Win32
{EA5932F3-02FE-4AD3-89E8-7072DC465D25}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{EA5932F3-02FE-4AD3-89E8-7072DC465D25}.Debug_Priquel|x86.ActiveCfg = Debug_Priquel|Win32
{EA5932F3-02FE-4AD3-89E8-7072DC465D25}.Debug_Priquel|x86.Build.0 = Debug_Priquel|Win32
{EA5932F3-02FE-4AD3-89E8-7072DC465D25}.Debug|x86.ActiveCfg = Debug|Win32
{EA5932F3-02FE-4AD3-89E8-7072DC465D25}.Debug|x86.Build.0 = Debug|Win32
{EA5932F3-02FE-4AD3-89E8-7072DC465D25}.Mixed_Dedicated|x86.ActiveCfg = Mixed|Win32
{EA5932F3-02FE-4AD3-89E8-7072DC465D25}.Mixed_Priquel|x86.ActiveCfg = Mixed_Priquel|Win32
{EA5932F3-02FE-4AD3-89E8-7072DC465D25}.Mixed_Priquel|x86.Build.0 = Mixed_Priquel|Win32
{EA5932F3-02FE-4AD3-89E8-7072DC465D25}.Mixed|x86.ActiveCfg = Mixed|Win32
{EA5932F3-02FE-4AD3-89E8-7072DC465D25}.Mixed|x86.Build.0 = Mixed|Win32
{EA5932F3-02FE-4AD3-89E8-7072DC465D25}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{EA5932F3-02FE-4AD3-89E8-7072DC465D25}.Release_Priquel|x86.ActiveCfg = Release_Priquel|Win32
{EA5932F3-02FE-4AD3-89E8-7072DC465D25}.Release_Priquel|x86.Build.0 = Release_Priquel|Win32
{EA5932F3-02FE-4AD3-89E8-7072DC465D25}.Release|x86.ActiveCfg = Release|Win32
{EA5932F3-02FE-4AD3-89E8-7072DC465D25}.Release|x86.Build.0 = Release|Win32
{65CBB9D0-FBC6-41A4-8316-F5E9B5D7FB33}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{65CBB9D0-FBC6-41A4-8316-F5E9B5D7FB33}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{65CBB9D0-FBC6-41A4-8316-F5E9B5D7FB33}.Debug_Priquel|x86.Build.0 = Debug|Win32
{65CBB9D0-FBC6-41A4-8316-F5E9B5D7FB33}.Debug|x86.ActiveCfg = Debug|Win32
{65CBB9D0-FBC6-41A4-8316-F5E9B5D7FB33}.Debug|x86.Build.0 = Debug|Win32
{65CBB9D0-FBC6-41A4-8316-F5E9B5D7FB33}.Mixed_Dedicated|x86.ActiveCfg = Mixed|Win32
{65CBB9D0-FBC6-41A4-8316-F5E9B5D7FB33}.Mixed_Priquel|x86.ActiveCfg = Mixed|Win32
{65CBB9D0-FBC6-41A4-8316-F5E9B5D7FB33}.Mixed_Priquel|x86.Build.0 = Mixed|Win32
{65CBB9D0-FBC6-41A4-8316-F5E9B5D7FB33}.Mixed|x86.ActiveCfg = Mixed|Win32
{65CBB9D0-FBC6-41A4-8316-F5E9B5D7FB33}.Mixed|x86.Build.0 = Mixed|Win32
{65CBB9D0-FBC6-41A4-8316-F5E9B5D7FB33}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{65CBB9D0-FBC6-41A4-8316-F5E9B5D7FB33}.Release_Priquel|x86.ActiveCfg = Release|Win32
{65CBB9D0-FBC6-41A4-8316-F5E9B5D7FB33}.Release_Priquel|x86.Build.0 = Release|Win32
{65CBB9D0-FBC6-41A4-8316-F5E9B5D7FB33}.Release|x86.ActiveCfg = Release|Win32
{65CBB9D0-FBC6-41A4-8316-F5E9B5D7FB33}.Release|x86.Build.0 = Release|Win32
{0899B131-F1D4-4876-9BA1-67AC821DB9E1}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{0899B131-F1D4-4876-9BA1-67AC821DB9E1}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{0899B131-F1D4-4876-9BA1-67AC821DB9E1}.Debug_Priquel|x86.Build.0 = Debug|Win32
{0899B131-F1D4-4876-9BA1-67AC821DB9E1}.Debug|x86.ActiveCfg = Debug|Win32
{0899B131-F1D4-4876-9BA1-67AC821DB9E1}.Debug|x86.Build.0 = Debug|Win32
{0899B131-F1D4-4876-9BA1-67AC821DB9E1}.Mixed_Dedicated|x86.ActiveCfg = Debug|Win32
{0899B131-F1D4-4876-9BA1-67AC821DB9E1}.Mixed_Priquel|x86.ActiveCfg = Release|Win32
{0899B131-F1D4-4876-9BA1-67AC821DB9E1}.Mixed_Priquel|x86.Build.0 = Release|Win32
{0899B131-F1D4-4876-9BA1-67AC821DB9E1}.Mixed|x86.ActiveCfg = Debug|Win32
{0899B131-F1D4-4876-9BA1-67AC821DB9E1}.Mixed|x86.Build.0 = Debug|Win32
{0899B131-F1D4-4876-9BA1-67AC821DB9E1}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{0899B131-F1D4-4876-9BA1-67AC821DB9E1}.Release_Priquel|x86.ActiveCfg = Release|Win32
{0899B131-F1D4-4876-9BA1-67AC821DB9E1}.Release_Priquel|x86.Build.0 = Release|Win32
{0899B131-F1D4-4876-9BA1-67AC821DB9E1}.Release|x86.ActiveCfg = Release|Win32
{0899B131-F1D4-4876-9BA1-67AC821DB9E1}.Release|x86.Build.0 = Release|Win32
{5535F6B4-7AE6-4B66-8AEA-CC31C14D7AB7}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{5535F6B4-7AE6-4B66-8AEA-CC31C14D7AB7}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{5535F6B4-7AE6-4B66-8AEA-CC31C14D7AB7}.Debug_Priquel|x86.Build.0 = Debug|Win32
{5535F6B4-7AE6-4B66-8AEA-CC31C14D7AB7}.Debug|x86.ActiveCfg = Debug|Win32
{5535F6B4-7AE6-4B66-8AEA-CC31C14D7AB7}.Debug|x86.Build.0 = Debug|Win32
{5535F6B4-7AE6-4B66-8AEA-CC31C14D7AB7}.Mixed_Dedicated|x86.ActiveCfg = Release|Win32
{5535F6B4-7AE6-4B66-8AEA-CC31C14D7AB7}.Mixed_Priquel|x86.ActiveCfg = Release|Win32
{5535F6B4-7AE6-4B66-8AEA-CC31C14D7AB7}.Mixed_Priquel|x86.Build.0 = Release|Win32
{5535F6B4-7AE6-4B66-8AEA-CC31C14D7AB7}.Mixed|x86.ActiveCfg = Debug|Win32
{5535F6B4-7AE6-4B66-8AEA-CC31C14D7AB7}.Mixed|x86.Build.0 = Debug|Win32
{5535F6B4-7AE6-4B66-8AEA-CC31C14D7AB7}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{5535F6B4-7AE6-4B66-8AEA-CC31C14D7AB7}.Release_Priquel|x86.ActiveCfg = Release|Win32
{5535F6B4-7AE6-4B66-8AEA-CC31C14D7AB7}.Release_Priquel|x86.Build.0 = Release|Win32
{5535F6B4-7AE6-4B66-8AEA-CC31C14D7AB7}.Release|x86.ActiveCfg = Release|Win32
{5535F6B4-7AE6-4B66-8AEA-CC31C14D7AB7}.Release|x86.Build.0 = Release|Win32
{AF9ACB0D-451A-4878-A04C-0B9E221CC705}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{AF9ACB0D-451A-4878-A04C-0B9E221CC705}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{AF9ACB0D-451A-4878-A04C-0B9E221CC705}.Debug_Priquel|x86.Build.0 = Debug|Win32
{AF9ACB0D-451A-4878-A04C-0B9E221CC705}.Debug|x86.ActiveCfg = Debug|Win32
{AF9ACB0D-451A-4878-A04C-0B9E221CC705}.Debug|x86.Build.0 = Debug|Win32
{AF9ACB0D-451A-4878-A04C-0B9E221CC705}.Mixed_Dedicated|x86.ActiveCfg = Release|Win32
{AF9ACB0D-451A-4878-A04C-0B9E221CC705}.Mixed_Priquel|x86.ActiveCfg = Debug|Win32
{AF9ACB0D-451A-4878-A04C-0B9E221CC705}.Mixed_Priquel|x86.Build.0 = Debug|Win32
{AF9ACB0D-451A-4878-A04C-0B9E221CC705}.Mixed|x86.ActiveCfg = Debug|Win32
{AF9ACB0D-451A-4878-A04C-0B9E221CC705}.Mixed|x86.Build.0 = Debug|Win32
{AF9ACB0D-451A-4878-A04C-0B9E221CC705}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{AF9ACB0D-451A-4878-A04C-0B9E221CC705}.Release_Priquel|x86.ActiveCfg = Release|Win32
{AF9ACB0D-451A-4878-A04C-0B9E221CC705}.Release_Priquel|x86.Build.0 = Release|Win32
{AF9ACB0D-451A-4878-A04C-0B9E221CC705}.Release|x86.ActiveCfg = Release|Win32
{AF9ACB0D-451A-4878-A04C-0B9E221CC705}.Release|x86.Build.0 = Release|Win32
{2EA2CBBA-16BD-4B97-80B3-3F824CFBD4F1}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{2EA2CBBA-16BD-4B97-80B3-3F824CFBD4F1}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{2EA2CBBA-16BD-4B97-80B3-3F824CFBD4F1}.Debug_Priquel|x86.Build.0 = Debug|Win32
{2EA2CBBA-16BD-4B97-80B3-3F824CFBD4F1}.Debug|x86.ActiveCfg = Debug|Win32
{2EA2CBBA-16BD-4B97-80B3-3F824CFBD4F1}.Debug|x86.Build.0 = Debug|Win32
{2EA2CBBA-16BD-4B97-80B3-3F824CFBD4F1}.Mixed_Dedicated|x86.ActiveCfg = Release|Win32
{2EA2CBBA-16BD-4B97-80B3-3F824CFBD4F1}.Mixed_Priquel|x86.ActiveCfg = Release|Win32
{2EA2CBBA-16BD-4B97-80B3-3F824CFBD4F1}.Mixed_Priquel|x86.Build.0 = Release|Win32
{2EA2CBBA-16BD-4B97-80B3-3F824CFBD4F1}.Mixed|x86.ActiveCfg = Debug|Win32
{2EA2CBBA-16BD-4B97-80B3-3F824CFBD4F1}.Mixed|x86.Build.0 = Debug|Win32
{2EA2CBBA-16BD-4B97-80B3-3F824CFBD4F1}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{2EA2CBBA-16BD-4B97-80B3-3F824CFBD4F1}.Release_Priquel|x86.ActiveCfg = Release|Win32
{2EA2CBBA-16BD-4B97-80B3-3F824CFBD4F1}.Release_Priquel|x86.Build.0 = Release|Win32
{2EA2CBBA-16BD-4B97-80B3-3F824CFBD4F1}.Release|x86.ActiveCfg = Release|Win32
{2EA2CBBA-16BD-4B97-80B3-3F824CFBD4F1}.Release|x86.Build.0 = Release|Win32
{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F}.Debug_Dedicated|x86.Build.0 = Debug|Win32
{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F}.Debug_Priquel|x86.Build.0 = Debug|Win32
{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F}.Debug|x86.ActiveCfg = Debug|Win32
{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F}.Debug|x86.Build.0 = Debug|Win32
{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F}.Mixed_Dedicated|x86.ActiveCfg = Mixed|Win32
{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F}.Mixed_Dedicated|x86.Build.0 = Mixed|Win32
{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F}.Mixed_Priquel|x86.ActiveCfg = Mixed|Win32
{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F}.Mixed_Priquel|x86.Build.0 = Mixed|Win32
{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F}.Mixed|x86.ActiveCfg = Mixed|Win32
{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F}.Mixed|x86.Build.0 = Mixed|Win32
{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F}.Release_Dedicated|x86.Build.0 = Release|Win32
{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F}.Release_Priquel|x86.ActiveCfg = Release|Win32
{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F}.Release_Priquel|x86.Build.0 = Release|Win32
{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F}.Release|x86.ActiveCfg = Release|Win32
{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F}.Release|x86.Build.0 = Release|Win32
{F1066EAC-EE25-4C7A-9023-5957A6F7BA27}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{F1066EAC-EE25-4C7A-9023-5957A6F7BA27}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{F1066EAC-EE25-4C7A-9023-5957A6F7BA27}.Debug_Priquel|x86.Build.0 = Debug|Win32
{F1066EAC-EE25-4C7A-9023-5957A6F7BA27}.Debug|x86.ActiveCfg = Debug|Win32
{F1066EAC-EE25-4C7A-9023-5957A6F7BA27}.Debug|x86.Build.0 = Debug|Win32
{F1066EAC-EE25-4C7A-9023-5957A6F7BA27}.Mixed_Dedicated|x86.ActiveCfg = Mixed|Win32
{F1066EAC-EE25-4C7A-9023-5957A6F7BA27}.Mixed_Priquel|x86.ActiveCfg = Mixed|Win32
{F1066EAC-EE25-4C7A-9023-5957A6F7BA27}.Mixed_Priquel|x86.Build.0 = Mixed|Win32
{F1066EAC-EE25-4C7A-9023-5957A6F7BA27}.Mixed|x86.ActiveCfg = Mixed|Win32
{F1066EAC-EE25-4C7A-9023-5957A6F7BA27}.Mixed|x86.Build.0 = Mixed|Win32
{F1066EAC-EE25-4C7A-9023-5957A6F7BA27}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{F1066EAC-EE25-4C7A-9023-5957A6F7BA27}.Release_Priquel|x86.ActiveCfg = Release|Win32
{F1066EAC-EE25-4C7A-9023-5957A6F7BA27}.Release_Priquel|x86.Build.0 = Release|Win32
{F1066EAC-EE25-4C7A-9023-5957A6F7BA27}.Release|x86.ActiveCfg = Release|Win32
{F1066EAC-EE25-4C7A-9023-5957A6F7BA27}.Release|x86.Build.0 = Release|Win32
{A6EBBBBB-5FEF-4C20-8460-DFAB11734DED}.Debug_Dedicated|x86.ActiveCfg = Debug|Win32
{A6EBBBBB-5FEF-4C20-8460-DFAB11734DED}.Debug_Priquel|x86.ActiveCfg = Debug|Win32
{A6EBBBBB-5FEF-4C20-8460-DFAB11734DED}.Debug_Priquel|x86.Build.0 = Debug|Win32
{A6EBBBBB-5FEF-4C20-8460-DFAB11734DED}.Debug|x86.ActiveCfg = Debug|Win32
{A6EBBBBB-5FEF-4C20-8460-DFAB11734DED}.Debug|x86.Build.0 = Debug|Win32
{A6EBBBBB-5FEF-4C20-8460-DFAB11734DED}.Mixed_Dedicated|x86.ActiveCfg = Debug|Win32
{A6EBBBBB-5FEF-4C20-8460-DFAB11734DED}.Mixed_Priquel|x86.ActiveCfg = Release|Win32
{A6EBBBBB-5FEF-4C20-8460-DFAB11734DED}.Mixed_Priquel|x86.Build.0 = Release|Win32
{A6EBBBBB-5FEF-4C20-8460-DFAB11734DED}.Mixed|x86.ActiveCfg = Release|Win32
{A6EBBBBB-5FEF-4C20-8460-DFAB11734DED}.Mixed|x86.Build.0 = Release|Win32
{A6EBBBBB-5FEF-4C20-8460-DFAB11734DED}.Release_Dedicated|x86.ActiveCfg = Release|Win32
{A6EBBBBB-5FEF-4C20-8460-DFAB11734DED}.Release_Priquel|x86.ActiveCfg = Release|Win32
{A6EBBBBB-5FEF-4C20-8460-DFAB11734DED}.Release_Priquel|x86.Build.0 = Release|Win32
{A6EBBBBB-5FEF-4C20-8460-DFAB11734DED}.Release|x86.ActiveCfg = Release|Win32
{A6EBBBBB-5FEF-4C20-8460-DFAB11734DED}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{2578C6D8-660D-48AE-9322-7422F8664F06} = {6DB2417B-534D-4570-A206-11B54EF6E129}
{CA0649DD-D089-423A-981C-46B57A884EB9} = {020377D8-F744-48CA-8743-BDB1F495A52A}
{200652A6-043E-4634-8837-87983B3BD5E0} = {6DB2417B-534D-4570-A206-11B54EF6E129}
{CCCA7859-EB86-493E-9B53-C4235F45B3C5} = {020377D8-F744-48CA-8743-BDB1F495A52A}
{A0F7D1FB-59A7-4717-A7E4-96F37E91998E} = {020377D8-F744-48CA-8743-BDB1F495A52A}
{A19B1DF2-82EC-4364-8BDF-85D13A1C89B5} = {020377D8-F744-48CA-8743-BDB1F495A52A}
{57A498C9-A741-4DDF-8EFC-BFB9EB6B00E2} = {D051F079-DA17-4645-8382-02E76381B051}
{963BA4E5-499A-454D-B002-1D5ECE0527A6} = {D051F079-DA17-4645-8382-02E76381B051}
{1BF75FEB-87DD-486C-880B-227987D191C2} = {2BFC806B-CE92-4EA4-8FE8-5F2EA54BA348}
{94A1C366-3D19-48E6-8170-4ADC2E70DF97} = {020377D8-F744-48CA-8743-BDB1F495A52A}
{435BAC9A-B225-457D-AB40-C9BD0CC8838C} = {020377D8-F744-48CA-8743-BDB1F495A52A}
{3AD26FD3-4F52-4E22-A4CF-AD4C49E74C61} = {89F6A7EE-3BBE-45D3-A8A8-5D9366CD987B}
{EF76867B-6EB8-4DC0-A1D6-E964FAD6FC7B} = {89F6A7EE-3BBE-45D3-A8A8-5D9366CD987B}
{EBF9B543-0830-4866-9B48-DC0740E87E8A} = {89F6A7EE-3BBE-45D3-A8A8-5D9366CD987B}
{A4ABD75E-825B-4D09-B3B2-2709682E40C8} = {89F6A7EE-3BBE-45D3-A8A8-5D9366CD987B}
{F1836CE2-59EF-4189-8B9C-D103A511CB27} = {89F6A7EE-3BBE-45D3-A8A8-5D9366CD987B}
{B730F54D-1199-481A-AAD0-5DB684E067C0} = {89F6A7EE-3BBE-45D3-A8A8-5D9366CD987B}
{EA5932F3-02FE-4AD3-89E8-7072DC465D25} = {89F6A7EE-3BBE-45D3-A8A8-5D9366CD987B}
{65CBB9D0-FBC6-41A4-8316-F5E9B5D7FB33} = {89F6A7EE-3BBE-45D3-A8A8-5D9366CD987B}
{0899B131-F1D4-4876-9BA1-67AC821DB9E1} = {3FC858CB-4888-42FF-ABC5-82DAECB59C2C}
{5535F6B4-7AE6-4B66-8AEA-CC31C14D7AB7} = {6DB2417B-534D-4570-A206-11B54EF6E129}
{AF9ACB0D-451A-4878-A04C-0B9E221CC705} = {89F6A7EE-3BBE-45D3-A8A8-5D9366CD987B}
{2EA2CBBA-16BD-4B97-80B3-3F824CFBD4F1} = {89F6A7EE-3BBE-45D3-A8A8-5D9366CD987B}
{9ACE5473-6D68-4B96-AC42-B39EABA0FE1F} = {020377D8-F744-48CA-8743-BDB1F495A52A}
{F1066EAC-EE25-4C7A-9023-5957A6F7BA27} = {89F6A7EE-3BBE-45D3-A8A8-5D9366CD987B}
{A6EBBBBB-5FEF-4C20-8460-DFAB11734DED} = {89F6A7EE-3BBE-45D3-A8A8-5D9366CD987B}
{D051F079-DA17-4645-8382-02E76381B051} = {6DB2417B-534D-4570-A206-11B54EF6E129}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {250FF14C-0B1D-4463-A294-333EDB9AAADD}
EndGlobalSection
GlobalSection(DPCodeReviewSolutionGUID) = preSolution
DPCodeReviewSolutionGUID = {00000000-0000-0000-0000-000000000000}
EndGlobalSection
EndGlobal