-
Notifications
You must be signed in to change notification settings - Fork 9
/
PerfectHashTable.sln
447 lines (447 loc) · 32.9 KB
/
PerfectHashTable.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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2027
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{A70C4C43-F7F1-4D59-8478-3DA0797E362C}"
ProjectSection(SolutionItems) = preProject
CallStack1.dgml = CallStack1.dgml
Graph1.dgml = Graph1.dgml
IncludeFileDependencies1.dgml = IncludeFileDependencies1.dgml
Tracer.props = Tracer.props
TracerBase.props = TracerBase.props
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Rtl", "Rtl\Rtl.vcxproj", "{91695EDE-DFC2-4364-A959-3C8A0870507A}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DebugEngine", "DebugEngine\DebugEngine.vcxproj", "{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Asm", "Asm\Asm.vcxproj", "{A74874AC-5F74-42B8-9E94-4028DE4D1829}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AsmLib", "AsmLib\AsmLib.vcxproj", "{A74874AC-5F75-42B8-9E94-4028DE4D1829}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "InjectionThunk", "InjectionThunk\InjectionThunk.vcxproj", "{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ModuleLoaderExe", "ModuleLoaderExe\ModuleLoaderExe.vcxproj", "{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}"
ProjectSection(ProjectDependencies) = postProject
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D} = {8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ScratchExe", "ScratchExe\ScratchExe.vcxproj", "{681468CA-92CE-47D8-95D0-FB906CB5E80A}"
ProjectSection(ProjectDependencies) = postProject
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142} = {4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D} = {8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BenchmarkExe", "BenchmarkExe\BenchmarkExe.vcxproj", "{C4D67F0A-CD69-42D1-A07A-24B25219A716}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "StringTable2", "StringTable2\StringTable2.vcxproj", "{55053E34-1F6E-447A-AA44-0C86636D3C81}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "StringTable2BenchmarkExe", "StringTable2BenchmarkExe\StringTable2BenchmarkExe.vcxproj", "{1FCBA373-CA75-4D4B-9C25-17BF13328A06}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "StringTable2Test", "StringTable2Test\StringTable2Test.vcxproj", "{6B03819C-E931-4225-8F21-E9863D747751}"
ProjectSection(ProjectDependencies) = postProject
{55053E34-1F6E-447A-AA44-0C86636D3C81} = {55053E34-1F6E-447A-AA44-0C86636D3C81}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PerfectHashTable", "PerfectHashTable\PerfectHashTable.vcxproj", "{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PerfectHashTableSelfTestExe", "PerfectHashTableSelfTestExe\PerfectHashTableSelfTestExe.vcxproj", "{741C0AD4-D461-4E15-96E3-B6D30B7068EA}"
ProjectSection(ProjectDependencies) = postProject
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8} = {14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TracerConfigLib", "TracerConfigLib\TracerConfigLib.vcxproj", "{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TracerConfig", "TracerConfig\TracerConfig.vcxproj", "{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}"
ProjectSection(ProjectDependencies) = postProject
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142} = {4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TracerHeapLib", "TracerHeapLib\TracerHeapLib.vcxproj", "{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TraceStore", "TraceStore\TraceStore.vcxproj", "{C6FBB103-535C-4BCD-A463-B60C09481854}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PerfectHashTableBenchmarkSingleExe", "PerfectHashTableBenchmarkSingleExe\PerfectHashTableBenchmarkSingleExe.vcxproj", "{741C0AD4-D461-4E15-96E3-C6D30B7068EB}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
PGInstrument|x64 = PGInstrument|x64
PGInstrument|x86 = PGInstrument|x86
PGOptimize|x64 = PGOptimize|x64
PGOptimize|x86 = PGOptimize|x86
PGUpdate|x64 = PGUpdate|x64
PGUpdate|x86 = PGUpdate|x86
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{91695EDE-DFC2-4364-A959-3C8A0870507A}.Debug|x64.ActiveCfg = Debug|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.Debug|x64.Build.0 = Debug|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.Debug|x86.ActiveCfg = Debug|Win32
{91695EDE-DFC2-4364-A959-3C8A0870507A}.Debug|x86.Build.0 = Debug|Win32
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGInstrument|x64.Build.0 = PGInstrument|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGOptimize|x64.Build.0 = PGOptimize|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGUpdate|x64.Build.0 = PGUpdate|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{91695EDE-DFC2-4364-A959-3C8A0870507A}.Release|x64.ActiveCfg = Release|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.Release|x64.Build.0 = Release|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.Release|x86.ActiveCfg = Release|Win32
{91695EDE-DFC2-4364-A959-3C8A0870507A}.Release|x86.Build.0 = Release|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.Debug|x64.ActiveCfg = Debug|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.Debug|x64.Build.0 = Debug|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.Debug|x86.ActiveCfg = Debug|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.Debug|x86.Build.0 = Debug|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGInstrument|x64.Build.0 = PGInstrument|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGOptimize|x64.Build.0 = PGOptimize|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGUpdate|x64.Build.0 = PGUpdate|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.Release|x64.ActiveCfg = Release|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.Release|x64.Build.0 = Release|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.Release|x86.ActiveCfg = Release|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.Release|x86.Build.0 = Release|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.Debug|x64.ActiveCfg = Debug|x64
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.Debug|x64.Build.0 = Debug|x64
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.Debug|x86.ActiveCfg = Debug|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.Debug|x86.Build.0 = Debug|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGInstrument|x64.Build.0 = PGInstrument|x64
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGUpdate|x64.Build.0 = PGUpdate|x64
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.Release|x64.ActiveCfg = Release|x64
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.Release|x64.Build.0 = Release|x64
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.Release|x86.ActiveCfg = Release|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.Release|x86.Build.0 = Release|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.Debug|x64.ActiveCfg = Debug|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.Debug|x64.Build.0 = Debug|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.Debug|x86.ActiveCfg = Debug|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.Debug|x86.Build.0 = Debug|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGInstrument|x64.Build.0 = PGInstrument|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGOptimize|x64.Build.0 = PGOptimize|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGUpdate|x64.Build.0 = PGUpdate|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.Release|x64.ActiveCfg = Release|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.Release|x64.Build.0 = Release|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.Release|x86.ActiveCfg = Release|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.Release|x86.Build.0 = Release|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.Debug|x64.ActiveCfg = Debug|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.Debug|x64.Build.0 = Debug|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.Debug|x86.ActiveCfg = Debug|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.Debug|x86.Build.0 = Debug|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGInstrument|x64.Build.0 = PGInstrument|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGOptimize|x64.Build.0 = PGOptimize|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGUpdate|x64.Build.0 = PGUpdate|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.Release|x64.ActiveCfg = Release|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.Release|x64.Build.0 = Release|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.Release|x86.ActiveCfg = Release|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.Release|x86.Build.0 = Release|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.Debug|x64.ActiveCfg = Debug|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.Debug|x64.Build.0 = Debug|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.Debug|x86.ActiveCfg = Debug|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.Debug|x86.Build.0 = Debug|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGInstrument|x64.Build.0 = PGInstrument|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGOptimize|x64.Build.0 = PGOptimize|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGUpdate|x64.Build.0 = PGUpdate|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.Release|x64.ActiveCfg = Release|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.Release|x64.Build.0 = Release|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.Release|x86.ActiveCfg = Release|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.Release|x86.Build.0 = Release|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.Debug|x64.ActiveCfg = Debug|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.Debug|x64.Build.0 = Debug|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.Debug|x86.ActiveCfg = Debug|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.Debug|x86.Build.0 = Debug|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGInstrument|x64.Build.0 = PGInstrument|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGOptimize|x64.Build.0 = PGOptimize|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGUpdate|x64.Build.0 = PGUpdate|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.Release|x64.ActiveCfg = Release|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.Release|x64.Build.0 = Release|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.Release|x86.ActiveCfg = Release|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.Release|x86.Build.0 = Release|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.Debug|x64.ActiveCfg = Debug|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.Debug|x64.Build.0 = Debug|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.Debug|x86.ActiveCfg = Debug|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.Debug|x86.Build.0 = Debug|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGInstrument|x64.Build.0 = PGInstrument|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGOptimize|x64.Build.0 = PGOptimize|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGUpdate|x64.Build.0 = PGUpdate|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.Release|x64.ActiveCfg = Release|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.Release|x64.Build.0 = Release|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.Release|x86.ActiveCfg = Release|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.Release|x86.Build.0 = Release|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.Debug|x64.ActiveCfg = Debug|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.Debug|x64.Build.0 = Debug|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.Debug|x86.ActiveCfg = Debug|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.Debug|x86.Build.0 = Debug|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGInstrument|x64.Build.0 = PGInstrument|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGOptimize|x64.Build.0 = PGOptimize|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGUpdate|x64.Build.0 = PGUpdate|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.Release|x64.ActiveCfg = Release|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.Release|x64.Build.0 = Release|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.Release|x86.ActiveCfg = Release|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.Release|x86.Build.0 = Release|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.Debug|x64.ActiveCfg = Debug|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.Debug|x64.Build.0 = Debug|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.Debug|x86.ActiveCfg = Debug|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.Debug|x86.Build.0 = Debug|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGInstrument|x64.Build.0 = PGInstrument|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGOptimize|x64.Build.0 = PGOptimize|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGUpdate|x64.Build.0 = PGUpdate|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.Release|x64.ActiveCfg = Release|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.Release|x64.Build.0 = Release|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.Release|x86.ActiveCfg = Release|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.Release|x86.Build.0 = Release|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.Debug|x64.ActiveCfg = Debug|x64
{6B03819C-E931-4225-8F21-E9863D747751}.Debug|x64.Build.0 = Debug|x64
{6B03819C-E931-4225-8F21-E9863D747751}.Debug|x86.ActiveCfg = Debug|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.Debug|x86.Build.0 = Debug|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.PGInstrument|x64.ActiveCfg = Release|x64
{6B03819C-E931-4225-8F21-E9863D747751}.PGInstrument|x64.Build.0 = Release|x64
{6B03819C-E931-4225-8F21-E9863D747751}.PGInstrument|x86.ActiveCfg = Release|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.PGInstrument|x86.Build.0 = Release|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.PGOptimize|x64.ActiveCfg = Release|x64
{6B03819C-E931-4225-8F21-E9863D747751}.PGOptimize|x64.Build.0 = Release|x64
{6B03819C-E931-4225-8F21-E9863D747751}.PGOptimize|x86.ActiveCfg = Release|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.PGOptimize|x86.Build.0 = Release|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.PGUpdate|x64.ActiveCfg = Release|x64
{6B03819C-E931-4225-8F21-E9863D747751}.PGUpdate|x64.Build.0 = Release|x64
{6B03819C-E931-4225-8F21-E9863D747751}.PGUpdate|x86.ActiveCfg = Release|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.PGUpdate|x86.Build.0 = Release|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.Release|x64.ActiveCfg = Release|x64
{6B03819C-E931-4225-8F21-E9863D747751}.Release|x64.Build.0 = Release|x64
{6B03819C-E931-4225-8F21-E9863D747751}.Release|x86.ActiveCfg = Release|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.Release|x86.Build.0 = Release|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.Debug|x64.ActiveCfg = Debug|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.Debug|x64.Build.0 = Debug|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.Debug|x86.ActiveCfg = Debug|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.Debug|x86.Build.0 = Debug|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGInstrument|x64.Build.0 = PGInstrument|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGOptimize|x64.Build.0 = PGOptimize|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGUpdate|x64.Build.0 = PGUpdate|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.Release|x64.ActiveCfg = Release|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.Release|x64.Build.0 = Release|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.Release|x86.ActiveCfg = Release|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.Release|x86.Build.0 = Release|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.Debug|x64.ActiveCfg = Debug|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.Debug|x64.Build.0 = Debug|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.Debug|x86.ActiveCfg = Debug|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.Debug|x86.Build.0 = Debug|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGInstrument|x64.Build.0 = PGInstrument|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGOptimize|x64.Build.0 = PGOptimize|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGUpdate|x64.Build.0 = PGUpdate|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.Release|x64.ActiveCfg = Release|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.Release|x64.Build.0 = Release|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.Release|x86.ActiveCfg = Release|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.Release|x86.Build.0 = Release|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.Debug|x64.ActiveCfg = Debug|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.Debug|x64.Build.0 = Debug|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.Debug|x86.ActiveCfg = Debug|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.Debug|x86.Build.0 = Debug|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGInstrument|x64.Build.0 = PGInstrument|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGOptimize|x64.Build.0 = PGOptimize|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGUpdate|x64.Build.0 = PGUpdate|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.Release|x64.ActiveCfg = Release|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.Release|x64.Build.0 = Release|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.Release|x86.ActiveCfg = Release|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.Release|x86.Build.0 = Release|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.Debug|x64.ActiveCfg = Debug|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.Debug|x64.Build.0 = Debug|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.Debug|x86.ActiveCfg = Debug|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.Debug|x86.Build.0 = Debug|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGInstrument|x64.Build.0 = PGInstrument|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGOptimize|x64.Build.0 = PGOptimize|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGUpdate|x64.Build.0 = PGUpdate|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.Release|x64.ActiveCfg = Release|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.Release|x64.Build.0 = Release|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.Release|x86.ActiveCfg = Release|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.Release|x86.Build.0 = Release|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.Debug|x64.ActiveCfg = Debug|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.Debug|x64.Build.0 = Debug|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.Debug|x86.ActiveCfg = Debug|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.Debug|x86.Build.0 = Debug|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGInstrument|x64.Build.0 = PGInstrument|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGOptimize|x64.Build.0 = PGOptimize|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGUpdate|x64.Build.0 = PGUpdate|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.Release|x64.ActiveCfg = Release|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.Release|x64.Build.0 = Release|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.Release|x86.ActiveCfg = Release|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.Release|x86.Build.0 = Release|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.Debug|x64.ActiveCfg = Debug|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.Debug|x64.Build.0 = Debug|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.Debug|x86.ActiveCfg = Debug|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.Debug|x86.Build.0 = Debug|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGInstrument|x64.Build.0 = PGInstrument|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGOptimize|x64.Build.0 = PGOptimize|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGUpdate|x64.Build.0 = PGUpdate|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.Release|x64.ActiveCfg = Release|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.Release|x64.Build.0 = Release|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.Release|x86.ActiveCfg = Release|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.Release|x86.Build.0 = Release|Win32
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.Debug|x64.ActiveCfg = Debug|x64
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.Debug|x64.Build.0 = Debug|x64
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.Debug|x86.ActiveCfg = Debug|Win32
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.Debug|x86.Build.0 = Debug|Win32
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.PGInstrument|x64.Build.0 = PGInstrument|x64
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.PGOptimize|x64.Build.0 = PGOptimize|x64
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.PGUpdate|x64.Build.0 = PGUpdate|x64
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.Release|x64.ActiveCfg = Release|x64
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.Release|x64.Build.0 = Release|x64
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.Release|x86.ActiveCfg = Release|Win32
{741C0AD4-D461-4E15-96E3-C6D30B7068EB}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {0F202CA9-8660-448A-9F9D-105589BB11F9}
EndGlobalSection
EndGlobal