-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.c
504 lines (464 loc) · 199 KB
/
main.c
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
// Memory usage in the simulator will look like there is a memory leak.
// But if you remove the command buffer commit, it's gone. People online
// say this is an artifact of XCode profiling your Metal usage, not a
// memory leak in the app. I don't think it occurs in the original
// template version though... ¯\_(ツ)_/¯
// Didn't look too hard into why the texture is not mapped the same way
#include <pthread.h>
#include <simd/simd.h>
#include <objc/runtime.h>
#include <objc/message.h>
#include <objc/NSObjCRuntime.h>
#include <dispatch/semaphore.h>
#include <CoreGraphics/CGGeometry.h>
#include <CoreFoundation/CFString.h>
extern id MTLCreateSystemDefaultDevice(void);
extern id MTKModelIOVertexDescriptorFromMetal(id __nonnull metalDescriptor);
extern void NSLog(id, ...);
extern id const MDLVertexAttributePosition;
extern id const MDLVertexAttributeTextureCoordinate;
extern id const MTKTextureLoaderOptionTextureUsage;
extern id const MTKTextureLoaderOptionTextureStorageMode;
extern id const MTKTextureLoaderOptionOrigin;
extern id const MTKTextureLoaderOriginBottomLeft;
extern int UIApplicationMain(int argc, char * _Nullable *argv, id principalClassName, id delegateClassName);
id layer;
id depthTexture;
static const NSUInteger MaxBuffersInFlight = 3;
dispatch_semaphore_t _inFlightSemaphore;
id _commandQueue;
id _dynamicUniformBuffer[MaxBuffersInFlight];
id _pipelineState;
id _depthState;
id _colorMap;
matrix_float4x4 _projectionMatrix;
id _mesh;
struct Uniforms {
matrix_float4x4 projectionMatrix;
matrix_float4x4 modelViewMatrix;
};
/* Generated
// xcrun -sdk iphonesimulator metal -c Shaders.metal -o Shaders.air
// xcrun -sdk iphonesimulator metallib Shaders.air -o Shaders.metallib
// xcrun -sdk iphoneos metal -c Shaders.metal -o Shaders.air
// xcrun -sdk iphoneos metallib Shaders.air -o Shaders.metallib
// <Shaders.metallib od -vt u1 | cut -d ' ' -f 2- | sed '$d' | sed -n 'H;${x;s%^[[:space:]]*%%;s/[[:space:]]\{1,\}/,/g;p;}'
#include <metal_stdlib>
#include <simd/simd.h>
using namespace metal;
typedef struct
{
float3 position [[attribute(0)]];
float2 texCoord [[attribute(1)]];
} Vertex;
typedef struct
{
float4 position [[position]];
float2 texCoord;
} ColorInOut;
typedef struct
{
matrix_float4x4 projectionMatrix;
matrix_float4x4 modelViewMatrix;
} Uniforms;
vertex ColorInOut vertexShader(Vertex in [[stage_in]],
constant Uniforms & uniforms [[ buffer(2) ]])
{
ColorInOut out;
float4 position = float4(in.position, 1.0);
out.position = uniforms.projectionMatrix * uniforms.modelViewMatrix * position;
out.texCoord = in.texCoord;
return out;
}
fragment float4 fragmentShader(ColorInOut in [[stage_in]],
constant Uniforms & uniforms [[ buffer(2) ]],
texture2d<half> colorMap [[ texture(0) ]])
{
constexpr sampler colorSampler(mip_filter::linear,
mag_filter::linear,
min_filter::linear);
half4 colorSample = colorMap.sample(colorSampler, in.texCoord.xy);
return float4(colorSample);
}
*/
#if TARGET_OS_SIMULATOR
uint8_t bufshaders[] = {77,84,76,66,1,0,2,0,7,0,0,135,16,0,1,0,206,30,0,0,0,0,0,0,88,0,0,0,0,0,0,0,6,1,0,0,0,0,0,0,102,1,0,0,0,0,0,0,56,0,0,0,0,0,0,0,158,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,174,1,0,0,0,0,0,0,32,29,0,0,0,0,0,0,2,0,0,0,130,0,0,0,78,65,77,69,13,0,118,101,114,116,101,120,83,104,97,100,101,114,0,84,89,80,69,1,0,0,72,65,83,72,32,0,202,204,211,58,15,220,105,211,251,172,135,99,167,148,104,114,56,78,128,207,237,240,126,253,19,29,225,35,214,248,184,51,77,68,83,90,8,0,112,14,0,0,0,0,0,0,79,70,70,84,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,69,82,83,8,0,2,0,5,0,3,0,0,0,69,78,68,84,132,0,0,0,78,65,77,69,15,0,102,114,97,103,109,101,110,116,83,104,97,100,101,114,0,84,89,80,69,1,0,1,72,65,83,72,32,0,25,132,46,133,0,221,58,207,87,150,54,119,108,75,189,196,24,175,183,64,101,244,202,129,71,209,133,158,94,44,122,246,77,68,83,90,8,0,176,14,0,0,0,0,0,0,79,70,70,84,24,0,48,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,112,14,0,0,0,0,0,0,86,69,82,83,8,0,2,0,5,0,3,0,0,0,69,78,68,84,69,78,68,84,44,0,0,0,86,65,84,84,24,0,2,0,112,111,115,105,116,105,111,110,0,0,128,116,101,120,67,111,111,114,100,0,1,128,86,65,84,89,4,0,2,0,5,4,69,78,68,84,4,0,0,0,69,78,68,84,4,0,0,0,69,78,68,84,4,0,0,0,69,78,68,84,222,192,23,11,0,0,0,0,20,0,0,0,88,14,0,0,255,255,255,255,66,67,192,222,53,20,0,0,3,0,0,0,98,12,48,36,128,16,5,200,20,0,0,0,33,12,0,0,92,3,0,0,11,2,33,0,2,0,0,0,19,0,0,0,7,129,35,145,65,200,4,73,6,16,50,57,146,1,132,12,37,5,8,25,30,4,139,98,128,20,69,2,66,146,11,66,164,16,50,20,56,8,24,75,10,50,82,136,72,144,20,32,67,70,136,165,0,25,50,66,4,73,14,144,145,34,196,80,65,81,129,140,225,131,229,138,4,41,70,6,137,32,0,0,32,0,0,0,50,34,72,9,32,100,133,4,147,34,164,132,4,147,34,227,132,161,144,20,18,76,138,140,11,132,164,76,16,72,51,0,195,8,4,48,140,32,0,86,8,98,24,97,0,146,32,204,68,205,3,61,200,67,61,140,3,61,184,65,59,148,3,61,132,3,59,232,129,30,180,67,56,208,131,60,164,3,62,160,160,220,35,77,17,37,76,190,219,32,133,19,49,18,18,140,25,68,56,132,66,12,34,16,165,129,128,57,2,48,72,1,54,71,0,10,131,8,129,48,140,64,48,35,0,0,0,0,81,24,0,0,131,0,0,0,27,200,37,248,255,255,255,255,1,144,128,138,24,135,119,144,7,121,40,135,113,160,7,118,200,135,54,144,135,119,168,7,119,32,135,114,32,135,54,32,135,116,176,135,116,32,135,114,104,131,121,136,7,121,160,135,54,48,7,120,104,131,118,8,7,122,64,7,192,28,194,129,29,230,161,28,0,130,28,210,97,30,194,65,28,216,161,28,218,128,30,194,33,29,216,161,13,198,33,28,216,129,29,230,1,48,135,112,96,135,121,40,7,128,96,135,114,152,135,121,104,3,120,144,135,114,24,135,116,152,135,114,104,3,115,128,135,118,8,7,114,0,204,33,28,216,97,30,202,1,32,220,225,29,218,192,28,228,33,28,218,161,28,218,0,30,222,33,29,220,129,30,202,65,30,218,160,28,216,33,29,218,1,160,7,121,168,135,114,0,6,119,120,135,54,48,7,121,8,135,118,40,135,54,128,135,119,72,7,119,160,135,114,144,135,54,40,7,118,72,135,118,104,3,119,120,7,119,104,3,118,40,135,112,48,7,128,112,135,119,104,131,116,112,7,115,152,135,54,48,7,120,104,131,118,8,7,122,64,7,128,30,228,161,30,202,1,32,220,225,29,218,64,29,234,161,29,224,161,13,232,33,28,196,129,29,202,97,30,0,115,8,7,118,152,135,114,0,8,119,120,135,54,112,135,112,112,135,121,104,3,115,128,135,54,104,135,112,160,7,116,0,232,65,30,234,161,28,0,194,29,222,161,13,230,33,29,206,193,29,202,129,28,218,64,31,202,65,30,222,97,30,218,192,28,224,161,13,218,33,28,232,1,29,0,122,144,135,122,40,7,128,112,135,119,104,3,122,144,135,112,128,7,120,72,7,119,56,135,54,104,135,112,160,7,116,0,232,65,30,234,161,28,0,98,30,232,33,28,198,97,29,218,0,30,228,225,29,232,161,28,198,129,30,222,65,30,218,64,28,234,193,28,204,161,28,228,161,13,230,33,29,244,161,28,0,60,0,136,122,112,135,121,8,7,115,40,135,54,48,7,120,104,131,118,8,7,122,64,7,128,30,228,161,30,202,1,32,234,97,30,202,161,13,230,225,29,204,129,30,218,192,28,216,225,29,194,129,30,0,115,8,7,118,152,135,114,0,54,44,194,0,36,192,2,84,65,26,128,4,0,0,0,0,73,24,0,0,1,0,0,0,19,132,64,0,19,190,112,72,7,121,176,3,58,104,131,112,128,7,120,96,135,114,104,131,116,120,135,121,136,3,59,112,131,56,112,3,56,104,131,121,72,135,118,168,7,118,8,7,122,120,7,121,216,112,27,229,208,6,240,160,7,118,64,7,122,96,7,116,160,7,118,64,7,109,144,14,113,160,7,120,160,7,120,208,6,233,128,7,122,128,7,122,128,7,109,144,14,113,96,7,122,16,7,118,160,7,113,96,7,109,144,14,115,32,7,122,48,7,114,160,7,115,32,7,109,144,14,118,64,7,122,96,7,116,160,7,118,64,7,109,96,14,115,32,7,122,48,7,114,160,7,115,32,7,109,96,14,118,64,7,122,96,7,116,160,7,118,64,7,109,96,15,113,96,7,122,16,7,118,160,7,113,96,7,109,96,15,114,64,7,122,48,7,114,160,7,115,32,7,109,96,15,115,32,7,122,48,7,114,160,7,115,32,7,109,96,15,116,128,7,122,96,7,116,160,7,118,64,7,109,96,15,118,64,7,122,96,7,116,160,7,118,64,7,109,96,15,121,96,7,122,16,7,114,128,7,122,16,7,114,128,7,109,96,15,113,32,7,120,160,7,113,32,7,120,160,7,113,32,7,120,208,6,246,16,7,121,32,7,122,32,7,117,96,7,122,32,7,117,96,7,109,96,15,114,80,7,118,160,7,114,80,7,118,160,7,114,80,7,118,208,6,246,80,7,113,32,7,122,80,7,113,32,7,122,80,7,113,32,7,109,96,15,113,0,7,114,64,7,122,16,7,112,32,7,116,160,7,113,0,7,114,64,7,109,224,14,120,160,7,113,96,7,122,48,7,114,160,17,194,144,76,69,68,19,113,177,7,48,16,209,16,9,96,18,0,0,2,0,0,0,1,0,0,0,0,36,54,8,20,245,26,0,0,200,2,1,0,0,0,12,0,0,0,50,30,152,16,25,17,76,144,140,9,38,71,198,4,67,98,69,80,2,133,80,14,229,83,128,2,5,81,32,165,48,2,80,6,5,24,64,110,4,128,218,88,2,20,0,0,0,0,177,24,0,0,123,0,0,0,51,8,128,28,196,225,28,102,20,1,61,136,67,56,132,195,140,66,128,7,121,120,7,115,152,113,12,230,0,15,237,16,14,244,128,14,51,12,66,30,194,193,29,206,161,28,102,48,5,61,136,67,56,132,131,27,204,3,61,200,67,61,140,3,61,204,120,140,116,112,7,123,8,7,121,72,135,112,112,7,122,112,3,118,120,135,112,32,135,25,204,17,14,236,144,14,225,48,15,110,48,15,227,240,14,240,80,14,51,16,196,29,222,33,28,216,33,29,194,97,30,102,48,137,59,188,131,59,208,67,57,180,3,60,188,131,60,132,3,59,204,240,20,118,96,7,123,104,7,55,104,135,114,104,7,55,128,135,112,144,135,112,96,7,118,40,7,118,248,5,118,120,135,119,128,135,95,8,135,113,24,135,114,152,135,121,152,129,44,238,240,14,238,224,14,245,192,14,236,48,3,98,200,161,28,228,161,28,204,161,28,228,161,28,220,97,28,202,33,28,196,129,29,202,97,6,214,144,67,57,200,67,57,152,67,57,200,67,57,184,195,56,148,67,56,136,3,59,148,195,47,188,131,60,252,130,59,212,3,59,176,195,12,199,105,135,112,88,135,114,112,131,116,104,7,120,96,135,116,24,135,116,160,135,25,206,83,15,238,0,15,242,80,14,228,144,14,227,64,15,225,32,14,236,80,14,51,32,40,29,220,193,30,194,65,30,210,33,28,220,129,30,220,224,28,228,225,29,234,1,30,102,24,81,56,176,67,58,156,131,59,204,80,36,118,96,7,123,104,7,55,96,135,119,120,7,120,152,81,76,244,144,15,240,80,14,51,30,106,30,202,97,28,232,33,29,222,193,29,126,1,30,228,161,28,204,33,29,240,97,6,84,133,131,56,204,195,59,176,67,61,208,67,57,252,194,60,228,67,59,136,195,59,176,195,140,197,10,135,121,152,135,119,24,135,116,8,7,122,40,7,114,152,129,92,227,16,14,236,192,14,229,80,14,243,48,35,193,210,65,30,228,225,23,216,225,29,222,1,30,102,80,89,56,164,131,60,184,129,57,212,131,59,140,3,61,164,195,59,184,195,47,156,131,60,188,67,61,192,195,60,0,121,32,0,0,15,1,0,0,98,30,72,32,67,136,12,25,57,25,36,144,145,64,198,200,200,104,34,80,8,20,50,158,24,25,33,71,200,144,81,44,3,48,64,41,139,98,97,27,180,65,115,80,108,28,25,48,145,193,32,81,102,32,144,100,40,15,18,81,8,244,68,23,130,0,0,0,83,68,75,32,86,101,114,115,105,111,110,119,99,104,97,114,95,115,105,122,101,97,105,114,46,109,97,120,95,100,101,118,105,99,101,95,98,117,102,102,101,114,115,97,105,114,46,109,97,120,95,99,111,110,115,116,97,110,116,95,98,117,102,102,101,114,115,97,105,114,46,109,97,120,95,116,104,114,101,97,100,103,114,111,117,112,95,98,117,102,102,101,114,115,97,105,114,46,109,97,120,95,116,101,120,116,117,114,101,115,97,105,114,46,109,97,120,95,114,101,97,100,95,119,114,105,116,101,95,116,101,120,116,117,114,101,115,97,105,114,46,109,97,120,95,115,97,109,112,108,101,114,115,65,112,112,108,101,32,109,101,116,97,108,32,118,101,114,115,105,111,110,32,51,49,48,48,49,46,54,54,48,32,40,109,101,116,97,108,102,101,45,51,49,48,48,49,46,54,54,48,46,54,41,77,101,116,97,108,97,105,114,46,99,111,109,112,105,108,101,46,100,101,110,111,114,109,115,95,100,105,115,97,98,108,101,97,105,114,46,99,111,109,112,105,108,101,46,102,97,115,116,95,109,97,116,104,95,101,110,97,98,108,101,97,105,114,46,99,111,109,112,105,108,101,46,102,114,97,109,101,98,117,102,102,101,114,95,102,101,116,99,104,95,101,110,97,98,108,101,97,105,114,46,112,111,115,105,116,105,111,110,97,105,114,46,97,114,103,95,116,121,112,101,95,110,97,109,101,102,108,111,97,116,52,97,105,114,46,97,114,103,95,110,97,109,101,112,111,115,105,116,105,111,110,97,105,114,46,118,101,114,116,101,120,95,111,117,116,112,117,116,103,101,110,101,114,97,116,101,100,40,56,116,101,120,67,111,111,114,100,68,118,50,95,102,41,102,108,111,97,116,50,116,101,120,67,111,111,114,100,97,105,114,46,118,101,114,116,101,120,95,105,110,112,117,116,97,105,114,46,108,111,99,97,116,105,111,110,95,105,110,100,101,120,102,108,111,97,116,51,97,105,114,46,98,117,102,102,101,114,97,105,114,46,98,117,102,102,101,114,95,115,105,122,101,97,105,114,46,114,101,97,100,97,105,114,46,97,100,100,114,101,115,115,95,115,112,97,99,101,97,105,114,46,115,116,114,117,99,116,95,116,121,112,101,95,105,110,102,111,102,108,111,97,116,52,120,52,112,114,111,106,101,99,116,105,111,110,77,97,116,114,105,120,109,111,100,101,108,86,105,101,119,77,97,116,114,105,120,97,105,114,46,97,114,103,95,116,121,112,101,95,115,105,122,101,97,105,114,46,97,114,103,95,116,121,112,101,95,97,108,105,103,110,95,115,105,122,101,85,110,105,102,111,114,109,115,117,110,105,102,111,114,109,115,198,106,0,0,0,0,0,0,48,130,192,4,35,8,141,51,130,192,8,35,8,204,48,130,192,16,35,8,76,49,130,192,24,35,8,204,49,130,192,32,35,8,76,50,130,192,40,35,8,204,50,130,160,0,35,8,12,51,195,96,6,193,25,204,48,160,129,144,6,51,12,106,48,172,193,12,131,26,16,107,48,195,160,6,197,26,204,48,168,129,193,6,51,12,106,112,180,193,12,131,26,32,110,48,67,144,204,48,152,193,27,192,193,12,132,18,7,112,0,7,51,4,203,12,1,51,67,208,204,80,56,15,20,73,51,24,19,245,84,145,53,131,32,10,163,48,67,2,7,23,6,7,104,240,100,145,52,67,130,6,23,134,6,104,240,84,145,53,131,2,7,115,0,7,31,24,204,193,28,192,193,23,6,51,80,102,160,109,108,128,153,1,26,112,157,25,120,167,32,6,108,48,6,110,240,144,65,84,6,51,12,165,96,10,168,48,195,32,7,164,144,10,87,6,0,199,113,28,199,113,28,199,113,28,199,185,129,27,184,129,27,184,129,27,184,129,27,88,116,160,7,150,101,185,1,29,160,1,46,224,2,63,192,6,29,200,72,96,130,50,98,99,179,107,115,105,123,35,171,99,43,115,49,99,11,59,155,27,5,153,3,58,168,3,59,184,3,60,200,3,61,72,133,141,205,174,205,37,141,172,204,141,110,148,96,15,114,9,75,147,115,177,43,147,155,75,123,115,27,37,224,131,164,194,210,228,92,216,194,220,206,234,194,206,202,190,236,202,228,230,210,222,220,70,9,250,32,167,176,52,57,151,177,183,54,184,52,182,178,175,55,56,186,180,55,183,185,81,6,63,248,3,80,72,37,44,77,206,197,174,76,142,174,12,111,148,32,21,0,0,169,24,0,0,11,0,0,0,11,10,114,40,135,119,128,7,122,88,112,152,67,61,184,195,56,176,67,57,208,195,130,230,28,198,161,13,232,65,30,194,193,29,230,33,29,232,33,29,222,193,29,0,209,16,0,0,6,0,0,0,7,204,60,164,131,59,156,3,59,148,3,61,160,131,60,148,67,56,144,195,1,0,0,0,97,32,0,0,124,0,0,0,19,4,65,44,16,0,0,0,9,0,0,0,228,74,160,8,202,128,224,8,192,88,68,16,4,193,88,132,32,8,194,88,196,48,12,3,133,25,0,26,51,0,68,102,0,0,0,0,241,48,0,0,17,0,0,0,34,71,200,144,81,10,132,24,0,0,0,0,207,3,0,0,111,109,110,105,112,111,116,101,110,116,32,99,104,97,114,83,105,109,112,108,101,32,67,43,43,32,84,66,65,65,0,0,19,4,167,217,16,176,194,134,97,21,92,161,21,54,12,175,240,10,173,0,251,20,203,163,73,15,5,161,236,83,52,17,69,69,20,132,50,200,48,28,139,9,129,248,239,83,68,21,134,65,20,132,50,200,112,44,142,9,129,248,91,80,128,255,62,133,165,117,29,69,65,40,131,12,12,36,153,16,136,191,21,1,248,239,83,108,159,24,136,1,70,65,40,131,12,81,101,153,16,136,191,21,1,248,239,83,128,1,25,188,193,25,124,20,132,50,200,16,104,158,5,149,248,15,50,12,220,103,193,36,254,54,4,224,63,200,96,124,97,96,65,36,254,54,4,224,63,200,144,136,193,24,88,240,136,191,13,1,248,239,83,180,65,28,240,1,29,172,1,5,161,12,50,4,103,176,6,22,136,129,248,15,50,12,105,192,6,22,128,129,248,219,16,128,255,32,131,193,6,110,96,129,39,254,54,4,224,63,200,144,188,1,28,88,192,137,191,13,1,248,239,83,232,129,31,164,66,40,220,1,5,161,12,50,4,116,128,7,22,188,129,248,15,50,12,118,144,7,22,180,129,248,15,50,20,120,160,7,22,168,129,248,15,50,28,122,176,7,22,156,129,248,15,50,152,130,30,128,130,153,65,32,254,131,12,168,192,7,161,96,91,32,254,131,12,170,224,7,162,96,80,32,254,182,20,224,111,129,3,254,22,44,224,111,129,2,254,22,28,224,111,129,1,254,179,13,167,16,0,179,13,129,44,4,25,4,196,0,0,0,11,0,0,0,91,134,32,120,133,45,195,16,188,194,150,225,8,94,97,203,192,4,175,176,101,136,130,87,216,50,88,193,43,108,25,198,32,120,133,45,3,28,4,175,0,0,0,0,0,0,0,0,113,32,0,0,3,0,0,0,50,14,16,34,132,0,224,5,0,0,0,0,0,0,0,0,101,12,0,0,29,0,0,0,18,3,148,232,0,0,0,0,1,0,0,0,12,0,0,0,11,0,0,0,68,0,0,0,1,0,0,0,80,0,0,0,0,0,0,0,80,0,0,0,1,0,0,0,104,0,0,0,0,0,0,0,23,0,0,0,31,0,0,0,0,0,0,0,12,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,12,0,0,0,255,255,255,255,0,36,0,0,0,0,0,0,93,12,0,0,17,0,0,0,18,3,148,118,0,0,0,0,118,101,114,116,101,120,83,104,97,100,101,114,51,49,48,48,49,46,54,54,48,46,54,97,105,114,54,52,45,97,112,112,108,101,45,105,111,115,49,54,46,49,46,48,45,115,105,109,117,108,97,116,111,114,0,0,0,0,0,0,0,0,0,0,222,192,23,11,0,0,0,0,20,0,0,0,152,14,0,0,255,255,255,255,66,67,192,222,53,20,0,0,3,0,0,0,98,12,48,36,128,16,5,200,20,0,0,0,33,12,0,0,71,3,0,0,11,2,33,0,2,0,0,0,19,0,0,0,7,129,35,145,65,200,4,73,6,16,50,57,146,1,132,12,37,5,8,25,30,4,139,98,128,20,69,2,66,146,11,66,164,16,50,20,56,8,24,75,10,50,82,136,72,144,20,32,67,70,136,165,0,25,50,66,4,73,14,144,145,34,196,80,65,81,129,140,225,131,229,138,4,41,70,6,137,32,0,0,48,0,0,0,50,34,72,9,32,100,133,4,147,34,164,132,4,147,34,227,132,161,144,20,18,76,138,140,11,132,164,76,16,116,115,4,160,48,136,0,8,51,0,195,8,132,48,140,32,8,73,48,102,162,230,129,30,228,161,30,198,129,30,220,160,29,202,129,30,194,129,29,244,64,15,218,33,28,232,65,30,210,1,31,80,80,238,145,166,136,18,38,223,109,144,194,137,24,9,9,198,12,34,28,194,81,210,20,81,194,228,255,19,113,77,84,68,252,246,240,79,99,4,192,32,66,18,148,98,12,130,20,173,81,128,97,4,162,41,194,112,244,230,8,16,35,184,120,145,52,69,148,48,249,191,4,48,207,66,68,255,52,70,0,12,34,76,194,28,65,48,71,0,6,195,8,130,85,20,169,40,169,183,10,97,9,15,4,164,128,29,1,0,0,0,0,81,24,0,0,142,0,0,0,27,204,37,248,255,255,255,255,1,88,3,64,2,42,98,28,222,65,30,228,161,28,198,129,30,216,33,31,218,64,30,222,161,30,220,129,28,202,129,28,218,128,28,210,193,30,210,129,28,202,161,13,230,33,30,228,129,30,218,192,28,224,161,13,218,33,28,232,1,29,0,115,8,7,118,152,135,114,0,8,114,72,135,121,8,7,113,96,135,114,104,3,122,8,135,116,96,135,54,24,135,112,96,7,118,152,7,192,28,194,129,29,230,161,28,0,130,29,202,97,30,230,161,13,224,65,30,202,97,28,210,97,30,202,161,13,204,1,30,218,33,28,200,1,48,135,112,96,135,121,40,7,128,112,135,119,104,3,115,144,135,112,104,135,114,104,3,120,120,135,116,112,7,122,40,7,121,104,131,114,96,135,116,104,7,128,30,228,161,30,202,1,24,220,225,29,218,192,28,228,33,28,218,161,28,218,0,30,222,33,29,220,129,30,202,65,30,218,160,28,216,33,29,218,161,13,220,225,29,220,161,13,216,161,28,194,193,28,0,194,29,222,161,13,210,193,29,204,97,30,218,192,28,224,161,13,218,33,28,232,1,29,0,122,144,135,122,40,7,128,112,135,119,104,3,117,168,135,118,128,135,54,160,135,112,16,7,118,40,135,121,0,204,33,28,216,97,30,202,1,32,220,225,29,218,192,29,194,193,29,230,161,13,204,1,30,218,160,29,194,129,30,208,1,160,7,121,168,135,114,0,8,119,120,135,54,152,135,116,56,7,119,40,7,114,104,3,125,40,7,121,120,135,121,104,3,115,128,135,54,104,135,112,160,7,116,0,232,65,30,234,161,28,0,194,29,222,161,13,232,65,30,194,1,30,224,33,29,220,225,28,218,160,29,194,129,30,208,1,160,7,121,168,135,114,0,136,121,160,135,112,24,135,117,104,3,120,144,135,119,160,135,114,24,7,122,120,7,121,104,3,113,168,7,115,48,135,114,144,135,54,152,135,116,208,135,114,0,240,0,32,234,193,29,230,33,28,204,161,28,218,192,28,224,161,13,218,33,28,232,1,29,0,122,144,135,122,40,7,128,168,135,121,40,135,54,152,135,119,48,7,122,104,3,115,96,135,119,8,7,122,0,204,33,28,216,97,30,202,1,216,176,8,3,144,0,11,64,5,105,0,18,27,140,129,0,22,160,218,96,16,255,255,255,255,63,0,18,64,109,80,138,255,255,255,255,31,128,54,0,214,0,144,128,106,131,97,4,192,2,84,27,140,67,0,22,160,2,73,24,0,0,3,0,0,0,19,134,64,24,38,4,196,132,161,48,14,0,19,190,112,72,7,121,176,3,58,104,131,112,128,7,120,96,135,114,104,131,116,120,135,121,136,3,59,112,131,56,112,3,56,104,131,121,72,135,118,168,7,118,8,7,122,120,7,121,216,112,27,229,208,6,240,160,7,118,64,7,122,96,7,116,160,7,118,64,7,109,144,14,113,160,7,120,160,7,120,208,6,233,128,7,122,128,7,122,128,7,109,144,14,113,96,7,122,16,7,118,160,7,113,96,7,109,144,14,115,32,7,122,48,7,114,160,7,115,32,7,109,144,14,118,64,7,122,96,7,116,160,7,118,64,7,109,96,14,115,32,7,122,48,7,114,160,7,115,32,7,109,96,14,118,64,7,122,96,7,116,160,7,118,64,7,109,96,15,113,96,7,122,16,7,118,160,7,113,96,7,109,96,15,114,64,7,122,48,7,114,160,7,115,32,7,109,96,15,115,32,7,122,48,7,114,160,7,115,32,7,109,96,15,116,128,7,122,96,7,116,160,7,118,64,7,109,96,15,118,64,7,122,96,7,116,160,7,118,64,7,109,96,15,121,96,7,122,16,7,114,128,7,122,16,7,114,128,7,109,96,15,113,32,7,120,160,7,113,32,7,120,160,7,113,32,7,120,208,6,246,16,7,121,32,7,122,32,7,117,96,7,122,32,7,117,96,7,109,96,15,114,80,7,118,160,7,114,80,7,118,160,7,114,80,7,118,208,6,246,80,7,113,32,7,122,80,7,113,32,7,122,80,7,113,32,7,109,96,15,113,0,7,114,64,7,122,16,7,112,32,7,116,160,7,113,0,7,114,64,7,109,224,14,120,160,7,113,96,7,122,48,7,114,160,244,128,16,33,1,100,200,72,145,17,64,35,132,97,157,34,2,12,134,104,38,246,0,6,34,218,1,1,19,176,20,3,1,0,0,0,0,0,16,12,145,38,103,1,0,32,0,0,0,16,0,0,0,0,96,136,20,6,219,3,4,128,0,0,0,32,0,0,0,0,192,16,137,15,54,12,8,128,1,0,0,64,0,0,0,0,0,137,13,2,133,147,6,0,0,178,64,0,14,0,0,0,50,30,152,20,25,17,76,144,140,9,38,71,198,4,67,2,245,110,221,251,255,255,11,72,248,31,64,182,8,74,160,16,202,161,124,10,80,160,32,10,164,20,70,0,202,160,0,3,104,143,37,64,1,0,0,0,177,24,0,0,123,0,0,0,51,8,128,28,196,225,28,102,20,1,61,136,67,56,132,195,140,66,128,7,121,120,7,115,152,113,12,230,0,15,237,16,14,244,128,14,51,12,66,30,194,193,29,206,161,28,102,48,5,61,136,67,56,132,131,27,204,3,61,200,67,61,140,3,61,204,120,140,116,112,7,123,8,7,121,72,135,112,112,7,122,112,3,118,120,135,112,32,135,25,204,17,14,236,144,14,225,48,15,110,48,15,227,240,14,240,80,14,51,16,196,29,222,33,28,216,33,29,194,97,30,102,48,137,59,188,131,59,208,67,57,180,3,60,188,131,60,132,3,59,204,240,20,118,96,7,123,104,7,55,104,135,114,104,7,55,128,135,112,144,135,112,96,7,118,40,7,118,248,5,118,120,135,119,128,135,95,8,135,113,24,135,114,152,135,121,152,129,44,238,240,14,238,224,14,245,192,14,236,48,3,98,200,161,28,228,161,28,204,161,28,228,161,28,220,97,28,202,33,28,196,129,29,202,97,6,214,144,67,57,200,67,57,152,67,57,200,67,57,184,195,56,148,67,56,136,3,59,148,195,47,188,131,60,252,130,59,212,3,59,176,195,12,199,105,135,112,88,135,114,112,131,116,104,7,120,96,135,116,24,135,116,160,135,25,206,83,15,238,0,15,242,80,14,228,144,14,227,64,15,225,32,14,236,80,14,51,32,40,29,220,193,30,194,65,30,210,33,28,220,129,30,220,224,28,228,225,29,234,1,30,102,24,81,56,176,67,58,156,131,59,204,80,36,118,96,7,123,104,7,55,96,135,119,120,7,120,152,81,76,244,144,15,240,80,14,51,30,106,30,202,97,28,232,33,29,222,193,29,126,1,30,228,161,28,204,33,29,240,97,6,84,133,131,56,204,195,59,176,67,61,208,67,57,252,194,60,228,67,59,136,195,59,176,195,140,197,10,135,121,152,135,119,24,135,116,8,7,122,40,7,114,152,129,92,227,16,14,236,192,14,229,80,14,243,48,35,193,210,65,30,228,225,23,216,225,29,222,1,30,102,80,89,56,164,131,60,184,129,57,212,131,59,140,3,61,164,195,59,184,195,47,156,131,60,188,67,61,192,195,60,0,121,32,0,0,58,1,0,0,98,30,72,32,67,136,12,25,57,25,36,144,145,64,198,200,200,104,34,80,8,20,50,158,24,25,33,71,200,144,81,108,3,50,48,49,139,98,97,27,180,65,115,80,108,28,25,68,145,193,40,18,131,56,82,246,24,136,242,72,72,68,33,208,19,93,8,178,40,23,18,1,83,68,75,32,86,101,114,115,105,111,110,119,99,104,97,114,95,115,105,122,101,97,105,114,46,109,97,120,95,100,101,118,105,99,101,95,98,117,102,102,101,114,115,97,105,114,46,109,97,120,95,99,111,110,115,116,97,110,116,95,98,117,102,102,101,114,115,97,105,114,46,109,97,120,95,116,104,114,101,97,100,103,114,111,117,112,95,98,117,102,102,101,114,115,97,105,114,46,109,97,120,95,116,101,120,116,117,114,101,115,97,105,114,46,109,97,120,95,114,101,97,100,95,119,114,105,116,101,95,116,101,120,116,117,114,101,115,97,105,114,46,109,97,120,95,115,97,109,112,108,101,114,115,65,112,112,108,101,32,109,101,116,97,108,32,118,101,114,115,105,111,110,32,51,49,48,48,49,46,54,54,48,32,40,109,101,116,97,108,102,101,45,51,49,48,48,49,46,54,54,48,46,54,41,77,101,116,97,108,97,105,114,46,99,111,109,112,105,108,101,46,100,101,110,111,114,109,115,95,100,105,115,97,98,108,101,97,105,114,46,99,111,109,112,105,108,101,46,102,97,115,116,95,109,97,116,104,95,101,110,97,98,108,101,97,105,114,46,99,111,109,112,105,108,101,46,102,114,97,109,101,98,117,102,102,101,114,95,102,101,116,99,104,95,101,110,97,98,108,101,97,105,114,46,114,101,110,100,101,114,95,116,97,114,103,101,116,97,105,114,46,97,114,103,95,116,121,112,101,95,110,97,109,101,102,108,111,97,116,52,97,105,114,46,112,111,115,105,116,105,111,110,97,105,114,46,99,101,110,116,101,114,97,105,114,46,110,111,95,112,101,114,115,112,101,99,116,105,118,101,97,105,114,46,97,114,103,95,110,97,109,101,112,111,115,105,116,105,111,110,97,105,114,46,97,114,103,95,117,110,117,115,101,100,97,105,114,46,102,114,97,103,109,101,110,116,95,105,110,112,117,116,103,101,110,101,114,97,116,101,100,40,56,116,101,120,67,111,111,114,100,68,118,50,95,102,41,97,105,114,46,112,101,114,115,112,101,99,116,105,118,101,102,108,111,97,116,50,116,101,120,67,111,111,114,100,97,105,114,46,98,117,102,102,101,114,97,105,114,46,98,117,102,102,101,114,95,115,105,122,101,97,105,114,46,108,111,99,97,116,105,111,110,95,105,110,100,101,120,97,105,114,46,114,101,97,100,97,105,114,46,97,100,100,114,101,115,115,95,115,112,97,99,101,97,105,114,46,115,116,114,117,99,116,95,116,121,112,101,95,105,110,102,111,102,108,111,97,116,52,120,52,112,114,111,106,101,99,116,105,111,110,77,97,116,114,105,120,109,111,100,101,108,86,105,101,119,77,97,116,114,105,120,97,105,114,46,97,114,103,95,116,121,112,101,95,115,105,122,101,97,105,114,46,97,114,103,95,116,121,112,101,95,97,108,105,103,110,95,115,105,122,101,85,110,105,102,111,114,109,115,117,110,105,102,111,114,109,115,97,105,114,46,116,101,120,116,117,114,101,97,105,114,46,115,97,109,112,108,101,116,101,120,116,117,114,101,50,100,60,104,97,108,102,44,32,115,97,109,112,108,101,62,99,111,108,111,114,77,97,112,97,105,114,46,115,97,109,112,108,101,114,95,115,116,97,116,101,0,0,70,116,0,0,0,0,0,0,48,130,96,21,35,8,91,52,130,96,25,35,8,214,49,130,96,33,35,8,86,50,130,96,41,35,8,214,50,130,96,49,35,8,86,51,130,96,57,35,8,214,51,130,192,4,35,8,22,52,130,16,0,51,12,110,16,188,193,12,3,28,8,113,48,195,32,7,195,28,204,48,200,1,49,7,51,12,114,80,204,193,12,131,28,24,116,48,195,32,7,71,29,204,48,200,1,98,7,51,4,201,12,131,27,220,1,30,204,64,40,121,128,7,120,48,67,176,204,16,48,51,4,205,12,133,131,7,120,240,64,51,4,171,48,67,130,7,145,52,61,16,85,89,51,36,112,112,97,82,246,104,212,54,131,130,7,123,128,7,98,48,6,123,176,7,120,32,6,100,48,67,229,6,92,71,7,158,27,192,193,7,6,110,16,6,175,80,6,116,96,6,118,240,156,1,133,6,214,12,74,30,164,129,135,7,112,160,6,207,26,80,108,48,3,209,10,174,0,11,177,48,195,160,7,172,32,11,51,8,109,192,7,119,6,0,199,113,28,199,113,28,199,113,28,199,113,110,224,6,110,224,6,110,224,6,110,224,6,22,29,232,129,101,89,122,192,177,2,43,160,132,120,216,3,40,208,129,140,4,38,40,35,54,54,187,54,151,182,55,178,58,182,50,23,51,182,176,179,185,81,16,62,232,3,63,248,3,80,8,5,81,24,133,84,216,216,236,218,92,210,200,202,220,232,70,9,72,33,151,176,52,57,23,187,50,185,185,180,55,183,81,130,82,72,42,44,77,206,133,45,204,237,172,46,236,172,236,203,174,76,110,46,237,205,109,148,192,20,114,10,75,147,115,25,123,107,131,75,99,43,251,122,131,163,75,123,115,155,27,101,56,5,84,72,133,100,194,210,228,92,204,228,194,206,218,202,220,232,70,9,100,33,165,176,52,57,151,185,176,54,56,182,50,185,175,57,186,48,186,178,185,81,130,89,0,169,24,0,0,11,0,0,0,11,10,114,40,135,119,128,7,122,88,112,152,67,61,184,195,56,176,67,57,208,195,130,230,28,198,161,13,232,65,30,194,193,29,230,33,29,232,33,29,222,193,29,0,209,16,0,0,6,0,0,0,7,204,60,164,131,59,156,3,59,148,3,61,160,131,60,148,67,56,144,195,1,0,0,0,97,32,0,0,15,0,0,0,19,4,65,44,16,0,0,0,4,0,0,0,84,107,96,4,128,238,8,0,137,17,0,162,182,1,0,0,35,6,205,16,130,96,128,97,70,128,20,3,33,8,205,104,66,0,140,24,24,66,8,130,133,127,60,91,144,1,0,0,113,32,0,0,3,0,0,0,50,14,16,34,132,1,184,6,0,0,0,0,0,0,0,0,101,12,0,0,47,0,0,0,18,3,148,112,1,0,0,0,1,0,0,0,87,0,0,0,11,0,0,0,68,0,0,0,1,0,0,0,80,0,0,0,0,0,0,0,80,0,0,0,4,0,0,0,176,0,0,0,0,0,0,0,98,0,0,0,31,0,0,0,19,0,0,0,14,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,19,0,0,0,14,0,0,0,19,0,0,0,14,0,0,0,255,255,255,255,0,36,0,0,33,0,0,0,27,0,0,0,33,0,0,0,27,0,0,0,255,255,255,255,8,36,0,0,60,0,0,0,27,0,0,0,60,0,0,0,27,0,0,0,255,255,255,255,8,36,0,0,0,0,0,0,19,0,0,0,0,0,0,0,19,0,0,0,255,255,255,255,0,0,0,0,0,0,0,0,93,12,0,0,36,0,0,0,18,3,148,33,1,0,0,0,95,95,97,105,114,95,115,97,109,112,108,101,114,95,115,116,97,116,101,102,114,97,103,109,101,110,116,83,104,97,100,101,114,97,105,114,46,99,111,110,118,101,114,116,46,102,46,118,52,102,51,50,46,102,46,118,52,102,49,54,97,105,114,46,115,97,109,112,108,101,95,116,101,120,116,117,114,101,95,50,100,46,118,52,102,49,54,51,49,48,48,49,46,54,54,48,46,54,97,105,114,54,52,45,97,112,112,108,101,45,105,111,115,49,54,46,49,46,48,45,115,105,109,117,108,97,116,111,114,0,0,0,0,0,0,0,0,0,0,0};
#else
uint8_t bufshaders[] = {77,84,76,66,1,0,2,0,7,0,0,130,16,0,1,0,142,30,0,0,0,0,0,0,88,0,0,0,0,0,0,0,6,1,0,0,0,0,0,0,102,1,0,0,0,0,0,0,56,0,0,0,0,0,0,0,158,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,174,1,0,0,0,0,0,0,224,28,0,0,0,0,0,0,2,0,0,0,130,0,0,0,78,65,77,69,13,0,118,101,114,116,101,120,83,104,97,100,101,114,0,84,89,80,69,1,0,0,72,65,83,72,32,0,75,91,212,96,48,100,0,69,189,9,150,233,195,113,129,151,100,200,140,28,175,134,20,59,69,222,170,171,94,117,106,118,77,68,83,90,8,0,80,14,0,0,0,0,0,0,79,70,70,84,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,69,82,83,8,0,2,0,5,0,3,0,0,0,69,78,68,84,132,0,0,0,78,65,77,69,15,0,102,114,97,103,109,101,110,116,83,104,97,100,101,114,0,84,89,80,69,1,0,1,72,65,83,72,32,0,51,224,162,252,176,124,24,67,193,166,20,125,116,222,1,226,250,212,233,144,169,214,215,173,33,106,39,215,69,203,99,245,77,68,83,90,8,0,144,14,0,0,0,0,0,0,79,70,70,84,24,0,48,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,80,14,0,0,0,0,0,0,86,69,82,83,8,0,2,0,5,0,3,0,0,0,69,78,68,84,69,78,68,84,44,0,0,0,86,65,84,84,24,0,2,0,112,111,115,105,116,105,111,110,0,0,128,116,101,120,67,111,111,114,100,0,1,128,86,65,84,89,4,0,2,0,5,4,69,78,68,84,4,0,0,0,69,78,68,84,4,0,0,0,69,78,68,84,4,0,0,0,69,78,68,84,222,192,23,11,0,0,0,0,20,0,0,0,60,14,0,0,255,255,255,255,66,67,192,222,53,20,0,0,3,0,0,0,98,12,48,36,128,16,5,200,20,0,0,0,33,12,0,0,88,3,0,0,11,2,33,0,2,0,0,0,19,0,0,0,7,129,35,145,65,200,4,73,6,16,50,57,146,1,132,12,37,5,8,25,30,4,139,98,128,20,69,2,66,146,11,66,164,16,50,20,56,8,24,75,10,50,82,136,72,144,20,32,67,70,136,165,0,25,50,66,4,73,14,144,145,34,196,80,65,81,129,140,225,131,229,138,4,41,70,6,137,32,0,0,32,0,0,0,50,34,72,9,32,100,133,4,147,34,164,132,4,147,34,227,132,161,144,20,18,76,138,140,11,132,164,76,16,72,51,0,195,8,4,48,140,32,0,86,8,98,24,97,0,146,32,204,68,205,3,61,200,67,61,140,3,61,184,65,59,148,3,61,132,3,59,232,129,30,180,67,56,208,131,60,164,3,62,160,160,220,35,77,17,37,76,190,219,32,133,19,49,18,18,140,25,68,56,132,66,12,34,16,165,129,128,57,2,48,72,1,54,71,0,10,131,8,129,48,140,64,48,35,0,0,0,0,81,24,0,0,131,0,0,0,27,200,37,248,255,255,255,255,1,144,128,138,24,135,119,144,7,121,40,135,113,160,7,118,200,135,54,144,135,119,168,7,119,32,135,114,32,135,54,32,135,116,176,135,116,32,135,114,104,131,121,136,7,121,160,135,54,48,7,120,104,131,118,8,7,122,64,7,192,28,194,129,29,230,161,28,0,130,28,210,97,30,194,65,28,216,161,28,218,128,30,194,33,29,216,161,13,198,33,28,216,129,29,230,1,48,135,112,96,135,121,40,7,128,96,135,114,152,135,121,104,3,120,144,135,114,24,135,116,152,135,114,104,3,115,128,135,118,8,7,114,0,204,33,28,216,97,30,202,1,32,220,225,29,218,192,28,228,33,28,218,161,28,218,0,30,222,33,29,220,129,30,202,65,30,218,160,28,216,33,29,218,1,160,7,121,168,135,114,0,6,119,120,135,54,48,7,121,8,135,118,40,135,54,128,135,119,72,7,119,160,135,114,144,135,54,40,7,118,72,135,118,104,3,119,120,7,119,104,3,118,40,135,112,48,7,128,112,135,119,104,131,116,112,7,115,152,135,54,48,7,120,104,131,118,8,7,122,64,7,128,30,228,161,30,202,1,32,220,225,29,218,64,29,234,161,29,224,161,13,232,33,28,196,129,29,202,97,30,0,115,8,7,118,152,135,114,0,8,119,120,135,54,112,135,112,112,135,121,104,3,115,128,135,54,104,135,112,160,7,116,0,232,65,30,234,161,28,0,194,29,222,161,13,230,33,29,206,193,29,202,129,28,218,64,31,202,65,30,222,97,30,218,192,28,224,161,13,218,33,28,232,1,29,0,122,144,135,122,40,7,128,112,135,119,104,3,122,144,135,112,128,7,120,72,7,119,56,135,54,104,135,112,160,7,116,0,232,65,30,234,161,28,0,98,30,232,33,28,198,97,29,218,0,30,228,225,29,232,161,28,198,129,30,222,65,30,218,64,28,234,193,28,204,161,28,228,161,13,230,33,29,244,161,28,0,60,0,136,122,112,135,121,8,7,115,40,135,54,48,7,120,104,131,118,8,7,122,64,7,128,30,228,161,30,202,1,32,234,97,30,202,161,13,230,225,29,204,129,30,218,192,28,216,225,29,194,129,30,0,115,8,7,118,152,135,114,0,54,44,194,0,36,192,2,84,65,26,128,4,0,0,0,0,73,24,0,0,1,0,0,0,19,132,64,0,19,170,112,72,7,121,176,3,58,104,131,112,128,7,120,96,135,114,104,131,116,120,135,121,136,3,59,112,131,56,112,3,56,216,112,27,229,208,6,240,160,7,118,64,7,122,96,7,116,160,7,118,64,7,109,144,14,113,160,7,120,160,7,120,208,6,233,128,7,122,128,7,122,128,7,109,144,14,113,96,7,122,16,7,118,160,7,113,96,7,109,144,14,115,32,7,122,48,7,114,160,7,115,32,7,109,144,14,118,64,7,122,96,7,116,160,7,118,64,7,109,96,14,115,32,7,122,48,7,114,160,7,115,32,7,109,96,14,118,64,7,122,96,7,116,160,7,118,64,7,109,96,15,113,96,7,122,16,7,118,160,7,113,96,7,109,96,15,114,64,7,122,48,7,114,160,7,115,32,7,109,96,15,115,32,7,122,48,7,114,160,7,115,32,7,109,96,15,116,128,7,122,96,7,116,160,7,118,64,7,109,96,15,118,64,7,122,96,7,116,160,7,118,64,7,109,96,15,121,96,7,122,16,7,114,128,7,122,16,7,114,128,7,109,96,15,113,32,7,120,160,7,113,32,7,120,160,7,113,32,7,120,208,6,246,16,7,121,32,7,122,32,7,117,96,7,122,32,7,117,96,7,109,96,15,114,80,7,118,160,7,114,80,7,118,160,7,114,80,7,118,208,6,246,80,7,113,32,7,122,80,7,113,32,7,122,80,7,113,32,7,109,96,15,113,0,7,114,64,7,122,16,7,112,32,7,116,160,7,113,0,7,114,64,7,109,224,14,120,160,7,113,96,7,122,48,7,114,160,17,194,144,76,69,68,19,113,177,7,48,16,209,16,9,96,18,0,0,2,0,0,0,1,0,0,0,0,36,54,8,20,213,26,0,0,200,2,1,0,0,12,0,0,0,50,30,152,16,25,17,76,144,140,9,38,71,198,4,67,98,69,80,2,133,80,14,229,83,128,2,5,81,32,165,48,2,80,6,5,24,64,110,4,128,218,88,2,20,0,0,0,0,177,24,0,0,123,0,0,0,51,8,128,28,196,225,28,102,20,1,61,136,67,56,132,195,140,66,128,7,121,120,7,115,152,113,12,230,0,15,237,16,14,244,128,14,51,12,66,30,194,193,29,206,161,28,102,48,5,61,136,67,56,132,131,27,204,3,61,200,67,61,140,3,61,204,120,140,116,112,7,123,8,7,121,72,135,112,112,7,122,112,3,118,120,135,112,32,135,25,204,17,14,236,144,14,225,48,15,110,48,15,227,240,14,240,80,14,51,16,196,29,222,33,28,216,33,29,194,97,30,102,48,137,59,188,131,59,208,67,57,180,3,60,188,131,60,132,3,59,204,240,20,118,96,7,123,104,7,55,104,135,114,104,7,55,128,135,112,144,135,112,96,7,118,40,7,118,248,5,118,120,135,119,128,135,95,8,135,113,24,135,114,152,135,121,152,129,44,238,240,14,238,224,14,245,192,14,236,48,3,98,200,161,28,228,161,28,204,161,28,228,161,28,220,97,28,202,33,28,196,129,29,202,97,6,214,144,67,57,200,67,57,152,67,57,200,67,57,184,195,56,148,67,56,136,3,59,148,195,47,188,131,60,252,130,59,212,3,59,176,195,12,199,105,135,112,88,135,114,112,131,116,104,7,120,96,135,116,24,135,116,160,135,25,206,83,15,238,0,15,242,80,14,228,144,14,227,64,15,225,32,14,236,80,14,51,32,40,29,220,193,30,194,65,30,210,33,28,220,129,30,220,224,28,228,225,29,234,1,30,102,24,81,56,176,67,58,156,131,59,204,80,36,118,96,7,123,104,7,55,96,135,119,120,7,120,152,81,76,244,144,15,240,80,14,51,30,106,30,202,97,28,232,33,29,222,193,29,126,1,30,228,161,28,204,33,29,240,97,6,84,133,131,56,204,195,59,176,67,61,208,67,57,252,194,60,228,67,59,136,195,59,176,195,140,197,10,135,121,152,135,119,24,135,116,8,7,122,40,7,114,152,129,92,227,16,14,236,192,14,229,80,14,243,48,35,193,210,65,30,228,225,23,216,225,29,222,1,30,102,80,89,56,164,131,60,184,129,57,212,131,59,140,3,61,164,195,59,184,195,47,156,131,60,188,67,61,192,195,60,0,121,32,0,0,15,1,0,0,98,30,72,32,67,136,12,25,57,25,36,144,145,64,198,200,200,104,34,80,8,20,50,158,24,25,33,71,200,144,81,44,3,48,64,41,139,98,97,27,180,65,115,80,108,28,25,48,145,193,32,81,102,32,144,100,40,15,18,81,8,244,68,23,130,0,0,0,83,68,75,32,86,101,114,115,105,111,110,119,99,104,97,114,95,115,105,122,101,97,105,114,46,109,97,120,95,100,101,118,105,99,101,95,98,117,102,102,101,114,115,97,105,114,46,109,97,120,95,99,111,110,115,116,97,110,116,95,98,117,102,102,101,114,115,97,105,114,46,109,97,120,95,116,104,114,101,97,100,103,114,111,117,112,95,98,117,102,102,101,114,115,97,105,114,46,109,97,120,95,116,101,120,116,117,114,101,115,97,105,114,46,109,97,120,95,114,101,97,100,95,119,114,105,116,101,95,116,101,120,116,117,114,101,115,97,105,114,46,109,97,120,95,115,97,109,112,108,101,114,115,65,112,112,108,101,32,109,101,116,97,108,32,118,101,114,115,105,111,110,32,51,49,48,48,49,46,54,54,48,32,40,109,101,116,97,108,102,101,45,51,49,48,48,49,46,54,54,48,46,54,41,77,101,116,97,108,97,105,114,46,99,111,109,112,105,108,101,46,100,101,110,111,114,109,115,95,100,105,115,97,98,108,101,97,105,114,46,99,111,109,112,105,108,101,46,102,97,115,116,95,109,97,116,104,95,101,110,97,98,108,101,97,105,114,46,99,111,109,112,105,108,101,46,102,114,97,109,101,98,117,102,102,101,114,95,102,101,116,99,104,95,101,110,97,98,108,101,97,105,114,46,112,111,115,105,116,105,111,110,97,105,114,46,97,114,103,95,116,121,112,101,95,110,97,109,101,102,108,111,97,116,52,97,105,114,46,97,114,103,95,110,97,109,101,112,111,115,105,116,105,111,110,97,105,114,46,118,101,114,116,101,120,95,111,117,116,112,117,116,103,101,110,101,114,97,116,101,100,40,56,116,101,120,67,111,111,114,100,68,118,50,95,102,41,102,108,111,97,116,50,116,101,120,67,111,111,114,100,97,105,114,46,118,101,114,116,101,120,95,105,110,112,117,116,97,105,114,46,108,111,99,97,116,105,111,110,95,105,110,100,101,120,102,108,111,97,116,51,97,105,114,46,98,117,102,102,101,114,97,105,114,46,98,117,102,102,101,114,95,115,105,122,101,97,105,114,46,114,101,97,100,97,105,114,46,97,100,100,114,101,115,115,95,115,112,97,99,101,97,105,114,46,115,116,114,117,99,116,95,116,121,112,101,95,105,110,102,111,102,108,111,97,116,52,120,52,112,114,111,106,101,99,116,105,111,110,77,97,116,114,105,120,109,111,100,101,108,86,105,101,119,77,97,116,114,105,120,97,105,114,46,97,114,103,95,116,121,112,101,95,115,105,122,101,97,105,114,46,97,114,103,95,116,121,112,101,95,97,108,105,103,110,95,115,105,122,101,85,110,105,102,111,114,109,115,117,110,105,102,111,114,109,115,198,106,0,0,0,0,0,0,48,130,192,4,35,8,141,51,130,192,8,35,8,204,48,130,192,16,35,8,76,49,130,192,24,35,8,204,49,130,192,32,35,8,76,50,130,192,40,35,8,204,50,130,160,0,35,8,12,51,195,96,6,193,25,204,48,160,129,144,6,51,12,106,48,172,193,12,131,26,16,107,48,195,160,6,197,26,204,48,168,129,193,6,51,12,106,112,180,193,12,131,26,32,110,48,67,144,204,48,152,193,27,192,193,12,132,18,7,112,0,7,51,4,203,12,1,51,67,208,204,80,56,15,20,73,51,24,19,245,84,145,53,131,32,10,163,48,67,2,7,23,6,7,104,240,100,145,52,67,130,6,23,134,6,104,240,84,145,53,131,2,7,115,0,7,31,24,204,193,28,192,193,23,6,51,80,102,160,109,108,128,153,1,26,112,157,25,120,167,32,6,108,48,6,110,240,144,65,84,6,51,12,165,96,10,168,48,195,32,7,164,144,10,87,6,0,199,113,28,199,113,28,199,113,28,199,185,129,27,184,129,27,184,129,27,184,129,27,88,116,160,7,150,101,185,1,29,160,1,46,224,2,63,192,6,29,200,72,96,130,50,98,99,179,107,115,105,123,35,171,99,43,115,49,99,11,59,155,27,5,153,3,58,168,3,59,184,3,60,200,3,61,72,133,141,205,174,205,37,141,172,204,141,110,148,96,15,114,9,75,147,115,177,43,147,155,75,123,115,27,37,224,131,164,194,210,228,92,216,194,220,206,234,194,206,202,190,236,202,228,230,210,222,220,70,9,250,32,167,176,52,57,151,177,183,54,184,52,182,178,175,55,56,186,180,55,183,185,81,6,63,248,3,80,72,37,44,77,206,197,174,76,142,174,12,111,148,32,21,0,0,169,24,0,0,11,0,0,0,11,10,114,40,135,119,128,7,122,88,112,152,67,61,184,195,56,176,67,57,208,195,130,230,28,198,161,13,232,65,30,194,193,29,230,33,29,232,33,29,222,193,29,0,209,16,0,0,6,0,0,0,7,204,60,164,131,59,156,3,59,148,3,61,160,131,60,148,67,56,144,195,1,0,0,0,97,32,0,0,124,0,0,0,19,4,65,44,16,0,0,0,9,0,0,0,228,74,160,8,202,128,224,8,192,88,68,16,4,193,88,132,32,8,194,88,196,48,12,3,133,25,0,26,51,0,68,102,0,0,0,0,241,48,0,0,17,0,0,0,34,71,200,144,81,10,132,24,0,0,0,0,207,3,0,0,111,109,110,105,112,111,116,101,110,116,32,99,104,97,114,83,105,109,112,108,101,32,67,43,43,32,84,66,65,65,0,0,19,4,167,217,16,176,194,134,97,21,92,161,21,54,12,175,240,10,173,0,251,20,203,163,73,15,5,161,236,83,52,17,69,69,20,132,50,200,48,28,139,9,129,248,239,83,68,21,134,65,20,132,50,200,112,44,142,9,129,248,91,80,128,255,62,133,165,117,29,69,65,40,131,12,12,36,153,16,136,191,21,1,248,239,83,108,159,24,136,1,70,65,40,131,12,81,101,153,16,136,191,21,1,248,239,83,128,1,25,188,193,25,124,20,132,50,200,16,104,158,5,149,248,15,50,12,220,103,193,36,254,54,4,224,63,200,96,124,97,96,65,36,254,54,4,224,63,200,144,136,193,24,88,240,136,191,13,1,248,239,83,180,65,28,240,1,29,172,1,5,161,12,50,4,103,176,6,22,136,129,248,15,50,12,105,192,6,22,128,129,248,219,16,128,255,32,131,193,6,110,96,129,39,254,54,4,224,63,200,144,188,1,28,88,192,137,191,13,1,248,239,83,232,129,31,164,66,40,220,1,5,161,12,50,4,116,128,7,22,188,129,248,15,50,12,118,144,7,22,180,129,248,15,50,20,120,160,7,22,168,129,248,15,50,28,122,176,7,22,156,129,248,15,50,152,130,30,128,130,153,65,32,254,131,12,168,192,7,161,96,91,32,254,131,12,170,224,7,162,96,80,32,254,182,20,224,111,129,3,254,22,44,224,111,129,2,254,22,28,224,111,129,1,254,179,13,167,16,0,179,13,129,44,4,25,4,196,0,0,0,11,0,0,0,91,134,32,120,133,45,195,16,188,194,150,225,8,94,97,203,192,4,175,176,101,136,130,87,216,50,88,193,43,108,25,198,32,120,133,45,3,28,4,175,0,0,0,0,0,0,0,0,113,32,0,0,3,0,0,0,50,14,16,34,132,0,220,5,0,0,0,0,0,0,0,0,101,12,0,0,29,0,0,0,18,3,148,232,0,0,0,0,1,0,0,0,12,0,0,0,11,0,0,0,68,0,0,0,1,0,0,0,80,0,0,0,0,0,0,0,80,0,0,0,1,0,0,0,104,0,0,0,0,0,0,0,23,0,0,0,21,0,0,0,0,0,0,0,12,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,12,0,0,0,255,255,255,255,0,36,0,0,0,0,0,0,93,12,0,0,14,0,0,0,18,3,148,108,0,0,0,0,118,101,114,116,101,120,83,104,97,100,101,114,51,49,48,48,49,46,54,54,48,46,54,97,105,114,54,52,45,97,112,112,108,101,45,105,111,115,49,54,46,49,46,48,0,0,0,0,222,192,23,11,0,0,0,0,20,0,0,0,124,14,0,0,255,255,255,255,66,67,192,222,53,20,0,0,3,0,0,0,98,12,48,36,128,16,5,200,20,0,0,0,33,12,0,0,67,3,0,0,11,2,33,0,2,0,0,0,19,0,0,0,7,129,35,145,65,200,4,73,6,16,50,57,146,1,132,12,37,5,8,25,30,4,139,98,128,20,69,2,66,146,11,66,164,16,50,20,56,8,24,75,10,50,82,136,72,144,20,32,67,70,136,165,0,25,50,66,4,73,14,144,145,34,196,80,65,81,129,140,225,131,229,138,4,41,70,6,137,32,0,0,48,0,0,0,50,34,72,9,32,100,133,4,147,34,164,132,4,147,34,227,132,161,144,20,18,76,138,140,11,132,164,76,16,116,115,4,160,48,136,0,8,51,0,195,8,132,48,140,32,8,73,48,102,162,230,129,30,228,161,30,198,129,30,220,160,29,202,129,30,194,129,29,244,64,15,218,33,28,232,65,30,210,1,31,80,80,238,145,166,136,18,38,223,109,144,194,137,24,9,9,198,12,34,28,194,81,210,20,81,194,228,255,19,113,77,84,68,252,246,240,79,99,4,192,32,66,18,148,98,12,130,20,173,81,128,97,4,162,41,194,112,244,230,8,16,35,184,120,145,52,69,148,48,249,191,4,48,207,66,68,255,52,70,0,12,34,76,194,28,65,48,71,0,6,195,8,130,85,20,169,40,169,183,10,97,9,15,4,164,128,29,1,0,0,0,0,81,24,0,0,142,0,0,0,27,204,37,248,255,255,255,255,1,88,3,64,2,42,98,28,222,65,30,228,161,28,198,129,30,216,33,31,218,64,30,222,161,30,220,129,28,202,129,28,218,128,28,210,193,30,210,129,28,202,161,13,230,33,30,228,129,30,218,192,28,224,161,13,218,33,28,232,1,29,0,115,8,7,118,152,135,114,0,8,114,72,135,121,8,7,113,96,135,114,104,3,122,8,135,116,96,135,54,24,135,112,96,7,118,152,7,192,28,194,129,29,230,161,28,0,130,29,202,97,30,230,161,13,224,65,30,202,97,28,210,97,30,202,161,13,204,1,30,218,33,28,200,1,48,135,112,96,135,121,40,7,128,112,135,119,104,3,115,144,135,112,104,135,114,104,3,120,120,135,116,112,7,122,40,7,121,104,131,114,96,135,116,104,7,128,30,228,161,30,202,1,24,220,225,29,218,192,28,228,33,28,218,161,28,218,0,30,222,33,29,220,129,30,202,65,30,218,160,28,216,33,29,218,161,13,220,225,29,220,161,13,216,161,28,194,193,28,0,194,29,222,161,13,210,193,29,204,97,30,218,192,28,224,161,13,218,33,28,232,1,29,0,122,144,135,122,40,7,128,112,135,119,104,3,117,168,135,118,128,135,54,160,135,112,16,7,118,40,135,121,0,204,33,28,216,97,30,202,1,32,220,225,29,218,192,29,194,193,29,230,161,13,204,1,30,218,160,29,194,129,30,208,1,160,7,121,168,135,114,0,8,119,120,135,54,152,135,116,56,7,119,40,7,114,104,3,125,40,7,121,120,135,121,104,3,115,128,135,54,104,135,112,160,7,116,0,232,65,30,234,161,28,0,194,29,222,161,13,232,65,30,194,1,30,224,33,29,220,225,28,218,160,29,194,129,30,208,1,160,7,121,168,135,114,0,136,121,160,135,112,24,135,117,104,3,120,144,135,119,160,135,114,24,7,122,120,7,121,104,3,113,168,7,115,48,135,114,144,135,54,152,135,116,208,135,114,0,240,0,32,234,193,29,230,33,28,204,161,28,218,192,28,224,161,13,218,33,28,232,1,29,0,122,144,135,122,40,7,128,168,135,121,40,135,54,152,135,119,48,7,122,104,3,115,96,135,119,8,7,122,0,204,33,28,216,97,30,202,1,216,176,8,3,144,0,11,64,5,105,0,18,27,140,129,0,22,160,218,96,16,255,255,255,255,63,0,18,64,109,80,138,255,255,255,255,31,128,54,0,214,0,144,128,106,131,97,4,192,2,84,27,140,67,0,22,160,2,73,24,0,0,3,0,0,0,19,134,64,24,38,4,196,132,161,48,14,0,19,170,112,72,7,121,176,3,58,104,131,112,128,7,120,96,135,114,104,131,116,120,135,121,136,3,59,112,131,56,112,3,56,216,112,27,229,208,6,240,160,7,118,64,7,122,96,7,116,160,7,118,64,7,109,144,14,113,160,7,120,160,7,120,208,6,233,128,7,122,128,7,122,128,7,109,144,14,113,96,7,122,16,7,118,160,7,113,96,7,109,144,14,115,32,7,122,48,7,114,160,7,115,32,7,109,144,14,118,64,7,122,96,7,116,160,7,118,64,7,109,96,14,115,32,7,122,48,7,114,160,7,115,32,7,109,96,14,118,64,7,122,96,7,116,160,7,118,64,7,109,96,15,113,96,7,122,16,7,118,160,7,113,96,7,109,96,15,114,64,7,122,48,7,114,160,7,115,32,7,109,96,15,115,32,7,122,48,7,114,160,7,115,32,7,109,96,15,116,128,7,122,96,7,116,160,7,118,64,7,109,96,15,118,64,7,122,96,7,116,160,7,118,64,7,109,96,15,121,96,7,122,16,7,114,128,7,122,16,7,114,128,7,109,96,15,113,32,7,120,160,7,113,32,7,120,160,7,113,32,7,120,208,6,246,16,7,121,32,7,122,32,7,117,96,7,122,32,7,117,96,7,109,96,15,114,80,7,118,160,7,114,80,7,118,160,7,114,80,7,118,208,6,246,80,7,113,32,7,122,80,7,113,32,7,122,80,7,113,32,7,109,96,15,113,0,7,114,64,7,122,16,7,112,32,7,116,160,7,113,0,7,114,64,7,109,224,14,120,160,7,113,96,7,122,48,7,114,160,244,128,16,33,1,100,200,72,145,17,64,35,132,97,157,34,2,12,134,104,38,246,0,6,34,218,1,1,19,176,20,3,1,0,0,0,0,0,16,12,145,38,103,1,0,32,0,0,0,16,0,0,0,0,96,136,20,6,219,3,4,128,0,0,0,32,0,0,0,0,192,16,137,15,54,12,8,128,1,0,0,64,0,0,0,0,0,137,13,2,133,139,6,0,0,178,64,14,0,0,0,50,30,152,20,25,17,76,144,140,9,38,71,198,4,67,2,245,110,221,251,255,255,11,72,248,31,64,182,8,74,160,16,202,161,124,10,80,160,32,10,164,20,70,0,202,160,0,3,104,143,37,64,1,0,0,0,177,24,0,0,123,0,0,0,51,8,128,28,196,225,28,102,20,1,61,136,67,56,132,195,140,66,128,7,121,120,7,115,152,113,12,230,0,15,237,16,14,244,128,14,51,12,66,30,194,193,29,206,161,28,102,48,5,61,136,67,56,132,131,27,204,3,61,200,67,61,140,3,61,204,120,140,116,112,7,123,8,7,121,72,135,112,112,7,122,112,3,118,120,135,112,32,135,25,204,17,14,236,144,14,225,48,15,110,48,15,227,240,14,240,80,14,51,16,196,29,222,33,28,216,33,29,194,97,30,102,48,137,59,188,131,59,208,67,57,180,3,60,188,131,60,132,3,59,204,240,20,118,96,7,123,104,7,55,104,135,114,104,7,55,128,135,112,144,135,112,96,7,118,40,7,118,248,5,118,120,135,119,128,135,95,8,135,113,24,135,114,152,135,121,152,129,44,238,240,14,238,224,14,245,192,14,236,48,3,98,200,161,28,228,161,28,204,161,28,228,161,28,220,97,28,202,33,28,196,129,29,202,97,6,214,144,67,57,200,67,57,152,67,57,200,67,57,184,195,56,148,67,56,136,3,59,148,195,47,188,131,60,252,130,59,212,3,59,176,195,12,199,105,135,112,88,135,114,112,131,116,104,7,120,96,135,116,24,135,116,160,135,25,206,83,15,238,0,15,242,80,14,228,144,14,227,64,15,225,32,14,236,80,14,51,32,40,29,220,193,30,194,65,30,210,33,28,220,129,30,220,224,28,228,225,29,234,1,30,102,24,81,56,176,67,58,156,131,59,204,80,36,118,96,7,123,104,7,55,96,135,119,120,7,120,152,81,76,244,144,15,240,80,14,51,30,106,30,202,97,28,232,33,29,222,193,29,126,1,30,228,161,28,204,33,29,240,97,6,84,133,131,56,204,195,59,176,67,61,208,67,57,252,194,60,228,67,59,136,195,59,176,195,140,197,10,135,121,152,135,119,24,135,116,8,7,122,40,7,114,152,129,92,227,16,14,236,192,14,229,80,14,243,48,35,193,210,65,30,228,225,23,216,225,29,222,1,30,102,80,89,56,164,131,60,184,129,57,212,131,59,140,3,61,164,195,59,184,195,47,156,131,60,188,67,61,192,195,60,0,121,32,0,0,58,1,0,0,98,30,72,32,67,136,12,25,57,25,36,144,145,64,198,200,200,104,34,80,8,20,50,158,24,25,33,71,200,144,81,108,3,50,48,49,139,98,97,27,180,65,115,80,108,28,25,68,145,193,40,18,131,56,82,246,24,136,242,72,72,68,33,208,19,93,8,178,40,23,18,1,83,68,75,32,86,101,114,115,105,111,110,119,99,104,97,114,95,115,105,122,101,97,105,114,46,109,97,120,95,100,101,118,105,99,101,95,98,117,102,102,101,114,115,97,105,114,46,109,97,120,95,99,111,110,115,116,97,110,116,95,98,117,102,102,101,114,115,97,105,114,46,109,97,120,95,116,104,114,101,97,100,103,114,111,117,112,95,98,117,102,102,101,114,115,97,105,114,46,109,97,120,95,116,101,120,116,117,114,101,115,97,105,114,46,109,97,120,95,114,101,97,100,95,119,114,105,116,101,95,116,101,120,116,117,114,101,115,97,105,114,46,109,97,120,95,115,97,109,112,108,101,114,115,65,112,112,108,101,32,109,101,116,97,108,32,118,101,114,115,105,111,110,32,51,49,48,48,49,46,54,54,48,32,40,109,101,116,97,108,102,101,45,51,49,48,48,49,46,54,54,48,46,54,41,77,101,116,97,108,97,105,114,46,99,111,109,112,105,108,101,46,100,101,110,111,114,109,115,95,100,105,115,97,98,108,101,97,105,114,46,99,111,109,112,105,108,101,46,102,97,115,116,95,109,97,116,104,95,101,110,97,98,108,101,97,105,114,46,99,111,109,112,105,108,101,46,102,114,97,109,101,98,117,102,102,101,114,95,102,101,116,99,104,95,101,110,97,98,108,101,97,105,114,46,114,101,110,100,101,114,95,116,97,114,103,101,116,97,105,114,46,97,114,103,95,116,121,112,101,95,110,97,109,101,102,108,111,97,116,52,97,105,114,46,112,111,115,105,116,105,111,110,97,105,114,46,99,101,110,116,101,114,97,105,114,46,110,111,95,112,101,114,115,112,101,99,116,105,118,101,97,105,114,46,97,114,103,95,110,97,109,101,112,111,115,105,116,105,111,110,97,105,114,46,97,114,103,95,117,110,117,115,101,100,97,105,114,46,102,114,97,103,109,101,110,116,95,105,110,112,117,116,103,101,110,101,114,97,116,101,100,40,56,116,101,120,67,111,111,114,100,68,118,50,95,102,41,97,105,114,46,112,101,114,115,112,101,99,116,105,118,101,102,108,111,97,116,50,116,101,120,67,111,111,114,100,97,105,114,46,98,117,102,102,101,114,97,105,114,46,98,117,102,102,101,114,95,115,105,122,101,97,105,114,46,108,111,99,97,116,105,111,110,95,105,110,100,101,120,97,105,114,46,114,101,97,100,97,105,114,46,97,100,100,114,101,115,115,95,115,112,97,99,101,97,105,114,46,115,116,114,117,99,116,95,116,121,112,101,95,105,110,102,111,102,108,111,97,116,52,120,52,112,114,111,106,101,99,116,105,111,110,77,97,116,114,105,120,109,111,100,101,108,86,105,101,119,77,97,116,114,105,120,97,105,114,46,97,114,103,95,116,121,112,101,95,115,105,122,101,97,105,114,46,97,114,103,95,116,121,112,101,95,97,108,105,103,110,95,115,105,122,101,85,110,105,102,111,114,109,115,117,110,105,102,111,114,109,115,97,105,114,46,116,101,120,116,117,114,101,97,105,114,46,115,97,109,112,108,101,116,101,120,116,117,114,101,50,100,60,104,97,108,102,44,32,115,97,109,112,108,101,62,99,111,108,111,114,77,97,112,97,105,114,46,115,97,109,112,108,101,114,95,115,116,97,116,101,0,0,70,116,0,0,0,0,0,0,48,130,96,21,35,8,91,52,130,96,25,35,8,214,49,130,96,33,35,8,86,50,130,96,41,35,8,214,50,130,96,49,35,8,86,51,130,96,57,35,8,214,51,130,192,4,35,8,22,52,130,16,0,51,12,110,16,188,193,12,3,28,8,113,48,195,32,7,195,28,204,48,200,1,49,7,51,12,114,80,204,193,12,131,28,24,116,48,195,32,7,71,29,204,48,200,1,98,7,51,4,201,12,131,27,220,1,30,204,64,40,121,128,7,120,48,67,176,204,16,48,51,4,205,12,133,131,7,120,240,64,51,4,171,48,67,130,7,145,52,61,16,85,89,51,36,112,112,97,82,246,104,212,54,131,130,7,123,128,7,98,48,6,123,176,7,120,32,6,100,48,67,229,6,92,71,7,158,27,192,193,7,6,110,16,6,175,80,6,116,96,6,118,240,156,1,133,6,214,12,74,30,164,129,135,7,112,160,6,207,26,80,108,48,3,209,10,174,0,11,177,48,195,160,7,172,32,11,51,8,109,192,7,119,6,0,199,113,28,199,113,28,199,113,28,199,113,110,224,6,110,224,6,110,224,6,110,224,6,22,29,232,129,101,89,122,192,177,2,43,160,132,120,216,3,40,208,129,140,4,38,40,35,54,54,187,54,151,182,55,178,58,182,50,23,51,182,176,179,185,81,16,62,232,3,63,248,3,80,8,5,81,24,133,84,216,216,236,218,92,210,200,202,220,232,70,9,72,33,151,176,52,57,23,187,50,185,185,180,55,183,81,130,82,72,42,44,77,206,133,45,204,237,172,46,236,172,236,203,174,76,110,46,237,205,109,148,192,20,114,10,75,147,115,25,123,107,131,75,99,43,251,122,131,163,75,123,115,155,27,101,56,5,84,72,133,100,194,210,228,92,204,228,194,206,218,202,220,232,70,9,100,33,165,176,52,57,151,185,176,54,56,182,50,185,175,57,186,48,186,178,185,81,130,89,0,169,24,0,0,11,0,0,0,11,10,114,40,135,119,128,7,122,88,112,152,67,61,184,195,56,176,67,57,208,195,130,230,28,198,161,13,232,65,30,194,193,29,230,33,29,232,33,29,222,193,29,0,209,16,0,0,6,0,0,0,7,204,60,164,131,59,156,3,59,148,3,61,160,131,60,148,67,56,144,195,1,0,0,0,97,32,0,0,15,0,0,0,19,4,65,44,16,0,0,0,4,0,0,0,84,107,96,4,128,238,8,0,137,17,0,162,182,1,0,0,35,6,205,16,130,96,128,97,70,128,20,3,33,8,205,104,66,0,140,24,24,66,8,130,133,127,60,91,144,1,0,0,113,32,0,0,3,0,0,0,50,14,16,34,132,1,180,6,0,0,0,0,0,0,0,0,101,12,0,0,47,0,0,0,18,3,148,112,1,0,0,0,1,0,0,0,87,0,0,0,11,0,0,0,68,0,0,0,1,0,0,0,80,0,0,0,0,0,0,0,80,0,0,0,4,0,0,0,176,0,0,0,0,0,0,0,98,0,0,0,21,0,0,0,19,0,0,0,14,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,19,0,0,0,14,0,0,0,19,0,0,0,14,0,0,0,255,255,255,255,0,36,0,0,33,0,0,0,27,0,0,0,33,0,0,0,27,0,0,0,255,255,255,255,8,36,0,0,60,0,0,0,27,0,0,0,60,0,0,0,27,0,0,0,255,255,255,255,8,36,0,0,0,0,0,0,19,0,0,0,0,0,0,0,19,0,0,0,255,255,255,255,0,0,0,0,0,0,0,0,93,12,0,0,33,0,0,0,18,3,148,247,0,0,0,0,95,95,97,105,114,95,115,97,109,112,108,101,114,95,115,116,97,116,101,102,114,97,103,109,101,110,116,83,104,97,100,101,114,97,105,114,46,99,111,110,118,101,114,116,46,102,46,118,52,102,51,50,46,102,46,118,52,102,49,54,97,105,114,46,115,97,109,112,108,101,95,116,101,120,116,117,114,101,95,50,100,46,118,52,102,49,54,51,49,48,48,49,46,54,54,48,46,54,97,105,114,54,52,45,97,112,112,108,101,45,105,111,115,49,54,46,49,46,48,0,0,0,0,0};
#endif
uint8_t bufcolormap[] = {137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,4,0,0,0,4,0,8,6,0,0,0,127,29,43,131,0,0,1,81,105,67,67,80,73,67,67,32,80,114,111,102,105,108,101,0,0,40,145,99,96,96,82,72,44,40,200,97,97,96,96,200,205,43,41,10,114,119,82,136,136,140,82,96,127,200,192,194,192,204,32,194,160,192,96,144,152,92,92,224,24,16,224,3,84,194,0,163,81,193,183,107,12,140,32,250,178,46,200,44,205,203,60,57,55,244,126,54,191,84,9,152,252,237,202,23,107,76,245,40,128,43,37,181,56,25,72,255,1,226,226,228,130,162,18,6,6,198,2,32,91,185,188,164,0,196,158,2,100,139,20,1,29,5,100,175,0,177,211,33,236,61,32,118,18,132,125,1,172,38,36,200,25,200,126,2,100,11,36,103,36,166,0,217,95,128,108,157,36,36,241,116,36,54,212,94,16,144,44,6,121,220,211,213,217,204,208,210,204,76,215,72,207,80,193,39,51,47,53,177,136,128,219,73,6,37,169,21,37,32,218,57,191,160,178,40,51,61,163,68,193,17,24,98,169,10,158,121,201,122,58,10,70,6,134,230,12,12,160,240,135,168,254,28,8,14,87,70,177,51,8,177,252,69,12,12,22,95,25,24,152,39,32,196,146,102,50,48,108,111,101,96,144,184,133,16,83,89,192,192,192,223,194,192,176,237,124,65,98,81,34,220,1,64,243,138,211,140,141,32,108,30,39,6,6,214,123,255,255,127,86,99,96,96,159,204,192,240,119,194,255,255,191,23,253,255,255,119,49,208,252,59,12,12,7,242,0,133,212,101,39,46,215,233,8,0,0,64,0,73,68,65,84,120,1,236,220,7,184,44,199,149,24,230,55,187,203,156,115,206,57,231,28,215,202,146,101,89,150,101,37,203,178,44,203,178,44,203,178,44,203,178,44,203,187,171,156,115,206,57,231,156,9,48,2,4,8,18,32,1,16,32,65,130,68,36,65,130,32,152,185,97,220,13,226,190,112,223,189,51,211,221,85,93,117,170,254,209,167,125,247,206,116,87,157,243,159,126,247,161,206,61,187,155,51,219,225,255,121,17,32,64,128,0,1,2,4,8,16,32,208,147,192,120,6,240,255,251,52,24,159,115,181,239,212,224,251,182,155,51,223,215,211,79,58,185,18,32,64,128,0,1,2,4,8,16,32,64,128,0,129,238,4,54,219,159,24,15,255,155,161,9,240,253,221,37,47,97,2,4,8,16,32,64,128,0,1,2,4,8,16,32,208,131,192,102,251,227,99,154,247,53,0,134,63,199,38,192,15,244,144,183,28,9,16,32,64,128,0,1,2,4,8,16,32,64,128,64,55,2,155,237,143,29,229,122,182,1,48,188,49,54,1,30,112,244,129,63,9,16,32,64,128,0,1,2,4,8,16,32,64,128,0,129,192,2,155,237,143,158,31,253,5,13,128,225,131,177,9,240,192,243,47,240,53,1,2,4,8,16,32,64,128,0,1,2,4,8,16,32,16,76,96,179,253,238,241,136,47,106,0,12,23,140,77,128,7,29,191,208,247,4,8,16,32,64,128,0,1,2,4,8,16,32,64,128,64,0,129,205,246,59,39,69,121,98,3,96,184,112,108,2,60,248,164,27,188,71,128,0,1,2,4,8,16,32,64,128,0,1,2,4,8,84,42,176,217,126,251,180,200,78,109,0,12,55,140,77,128,135,156,118,163,247,9,16,32,64,128,0,1,2,4,8,16,32,64,128,0,129,138,4,54,219,111,237,138,102,103,3,96,184,113,108,2,60,116,215,2,62,35,64,128,0,1,2,4,8,16,32,64,128,0,1,2,4,10,11,108,182,223,220,23,193,222,6,192,176,192,216,4,120,216,190,133,124,78,128,0,1,2,4,8,16,32,64,128,0,1,2,4,8,20,16,216,108,191,113,200,174,7,53,0,134,133,198,38,192,195,15,89,208,53,4,8,16,32,64,128,0,1,2,4,8,16,32,64,128,192,74,2,155,237,215,15,221,233,224,6,192,176,224,216,4,120,196,161,11,187,142,0,1,2,4,8,16,32,64,128,0,1,2,4,8,16,200,40,176,217,126,109,202,234,147,26,0,195,194,99,19,224,145,83,54,112,45,1,2,4,8,16,32,64,128,0,1,2,4,8,16,32,144,88,96,179,189,119,234,138,147,27,0,195,6,99,19,224,81,83,55,114,61,1,2,4,8,16,32,64,128,0,1,2,4,8,16,32,144,64,96,179,253,234,156,85,102,53,0,134,141,198,38,192,163,231,108,232,30,2,4,8,16,32,64,128,0,1,2,4,8,16,32,64,96,166,192,102,123,207,204,59,207,204,110,0,12,27,142,77,128,199,204,221,216,125,4,8,16,32,64,128,0,1,2,4,8,16,32,64,128,192,4,129,205,246,43,19,174,190,232,210,69,13,128,97,181,177,9,240,216,139,86,245,6,1,2,4,8,16,32,64,128,0,1,2,4,8,16,32,144,78,96,179,189,123,233,98,139,27,0,67,0,99,19,224,113,75,3,113,63,1,2,4,8,16,32,64,128,0,1,2,4,8,16,32,112,130,192,102,251,229,19,222,157,252,86,146,6,192,176,235,216,4,120,252,228,221,221,64,128,0,1,2,4,8,16,32,64,128,0,1,2,4,8,156,46,176,217,126,233,244,15,167,125,146,172,1,48,108,59,54,1,158,48,109,123,87,19,32,64,128,0,1,2,4,8,16,32,64,128,0,1,2,39,10,108,182,119,157,248,254,204,55,147,54,0,134,24,198,38,192,19,103,198,226,54,2,4,8,16,32,64,128,0,1,2,4,8,16,32,64,96,20,216,108,191,152,26,34,121,3,224,190,48,55,103,158,148,58,80,235,17,32,64,128,0,1,2,4,8,16,32,64,128,0,129,46,4,54,219,47,228,200,51,75,3,96,8,116,156,4,120,114,142,128,173,73,128,0,1,2,4,8,16,32,64,128,0,1,2,4,154,21,216,108,239,204,149,91,182,6,192,16,240,216,4,120,74,174,192,173,75,128,0,1,2,4,8,16,32,64,128,0,1,2,4,154,18,216,108,239,200,153,79,214,6,192,16,248,216,4,120,106,206,4,172,77,128,0,1,2,4,8,16,32,64,128,0,1,2,4,194,11,108,182,183,231,206,33,123,3,96,72,96,108,2,60,45,119,34,214,39,64,128,0,1,2,4,8,16,32,64,128,0,1,2,33,5,54,219,219,214,136,123,149,6,192,144,200,216,4,120,250,26,9,217,131,0,1,2,4,8,16,32,64,128,0,1,2,4,8,132,17,216,108,111,93,43,214,213,26,0,67,66,99,19,224,25,107,37,102,31,2,4,8,16,32,64,128,0,1,2,4,8,16,32,80,181,192,102,123,203,154,241,173,218,0,24,18,27,155,0,207,92,51,65,123,17,32,64,128,0,1,2,4,8,16,32,64,128,0,129,234,4,54,219,207,175,29,211,234,13,128,33,193,177,9,240,172,181,19,181,31,1,2,4,8,16,32,64,128,0,1,2,4,8,16,168,66,96,179,253,92,137,56,138,52,0,134,68,199,38,192,179,75,36,108,79,2,4,8,16,32,64,128,0,1,2,4,8,16,32,80,76,96,179,189,185,212,222,197,26,0,67,194,99,19,224,57,165,18,183,47,1,2,4,8,16,32,64,128,0,1,2,4,8,16,88,85,96,179,253,236,170,251,29,219,172,104,3,96,136,101,108,2,60,247,88,76,190,37,64,128,0,1,2,4,8,16,32,64,128,0,1,2,109,9,108,182,159,41,157,80,241,6,192,0,48,54,1,158,87,26,194,254,4,8,16,32,64,128,0,1,2,4,8,16,32,64,32,139,192,102,123,83,150,117,39,46,90,69,3,96,136,121,108,2,60,127,98,236,46,39,64,128,0,1,2,4,8,16,32,64,128,0,1,2,117,11,108,182,159,174,37,192,106,26,0,3,200,216,4,120,65,45,48,226,32,64,128,0,1,2,4,8,16,32,64,128,0,1,2,139,4,54,219,79,45,186,63,241,205,85,53,0,134,220,198,38,192,11,19,231,104,57,2,4,8,16,32,64,128,0,1,2,4,8,16,32,176,174,192,102,123,227,186,27,238,223,173,186,6,192,16,242,216,4,120,209,254,208,93,65,128,0,1,2,4,8,16,32,64,128,0,1,2,4,42,20,216,108,111,168,48,170,51,85,54,0,6,168,177,9,240,226,26,193,196,68,128,0,1,2,4,8,16,32,64,128,0,1,2,4,78,21,216,108,63,121,234,103,133,63,168,182,1,48,184,140,77,128,151,20,246,177,61,1,2,4,8,16,32,64,128,0,1,2,4,8,16,56,76,96,179,189,254,176,11,203,92,85,117,3,96,32,25,155,0,47,45,67,99,87,2,4,8,16,32,64,128,0,1,2,4,8,16,32,112,160,192,102,123,221,129,87,22,187,172,250,6,192,32,51,54,1,94,86,76,200,198,4,8,16,32,64,128,0,1,2,4,8,16,32,64,96,151,192,102,123,237,174,143,107,249,44,68,3,96,192,26,155,0,47,175,5,77,28,4,8,16,32,64,128,0,1,2,4,8,16,32,64,224,62,129,205,246,19,81,36,194,52,0,6,208,177,9,240,138,40,176,226,36,64,128,0,1,2,4,8,16,32,64,128,0,129,198,5,54,219,143,71,202,48,84,3,96,128,29,155,0,175,140,4,44,86,2,4,8,16,32,64,128,0,1,2,4,8,16,104,80,96,179,189,38,90,86,225,26,0,3,240,216,4,120,85,52,104,241,18,32,64,128,0,1,2,4,8,16,32,64,128,64,35,2,155,237,213,17,51,9,217,0,24,160,199,38,192,171,35,130,139,153,0,1,2,4,8,16,32,64,128,0,1,2,4,2,11,108,182,31,139,26,125,216,6,192,0,62,54,1,94,19,21,94,220,4,8,16,32,64,128,0,1,2,4,8,16,32,16,76,96,179,253,104,176,136,47,8,55,116,3,96,200,100,108,2,188,246,130,140,124,67,128,0,1,2,4,8,16,32,64,128,0,1,2,4,82,11,108,182,87,165,94,114,237,245,194,55,0,6,176,177,9,240,186,181,225,236,71,128,0,1,2,4,8,16,32,64,128,0,1,2,157,8,108,182,31,105,33,211,38,26,0,67,33,198,38,192,235,91,40,136,28,8,16,32,64,128,0,1,2,4,8,16,32,64,160,34,129,205,246,202,138,162,89,20,74,51,13,128,65,97,108,2,188,97,145,134,155,9,16,32,64,128,0,1,2,4,8,16,32,64,128,192,145,192,102,123,197,209,151,45,252,217,84,3,96,40,200,216,4,120,99,11,133,145,3,1,2,4,8,16,32,64,128,0,1,2,4,8,20,20,216,108,63,92,112,247,44,91,55,215,0,24,148,198,38,192,155,178,104,89,148,0,1,2,4,8,16,32,64,128,0,1,2,4,218,23,216,108,47,111,49,201,38,27,0,67,161,198,38,192,155,91,44,152,156,8,16,32,64,128,0,1,2,4,8,16,32,64,32,163,192,102,123,89,198,213,139,46,221,108,3,96,80,29,155,0,111,41,170,107,115,2,4,8,16,32,64,128,0,1,2,4,8,16,136,35,176,217,126,40,78,176,211,35,109,186,1,48,112,140,77,128,183,78,103,113,7,1,2,4,8,16,32,64,128,0,1,2,4,8,116,37,176,217,126,176,245,124,155,111,0,12,5,28,155,0,111,107,189,144,242,35,64,128,0,1,2,4,8,16,32,64,128,0,129,153,2,155,237,7,102,222,25,234,182,46,26,0,67,69,198,38,192,219,67,85,70,176,4,8,16,32,64,128,0,1,2,4,8,16,32,144,95,96,179,125,127,254,77,234,216,161,155,6,192,192,61,54,1,222,81,7,187,40,8,16,32,64,128,0,1,2,4,8,16,32,64,160,184,192,102,251,190,226,49,172,24,64,87,13,128,193,117,108,2,188,115,69,95,91,17,32,64,128,0,1,2,4,8,16,32,64,128,64,141,2,155,237,123,107,12,43,103,76,221,53,0,6,204,177,9,240,174,156,168,214,38,64,128,0,1,2,4,8,16,32,64,128,0,129,138,5,54,219,75,43,142,46,91,104,93,54,0,6,205,177,9,240,238,108,170,22,38,64,128,0,1,2,4,8,16,32,64,128,0,129,58,5,54,219,75,234,12,44,127,84,221,54,0,6,218,177,9,240,131,249,137,237,64,128,0,1,2,4,8,16,32,64,128,0,1,2,85,8,108,182,239,169,34,142,66,65,116,221,0,24,204,199,38,192,127,86,200,222,182,4,8,16,32,64,128,0,1,2,4,8,16,32,176,150,192,102,251,159,214,218,170,214,125,186,111,0,12,133,25,155,0,63,169,214,2,137,139,0,1,2,4,8,16,32,64,128,0,1,2,4,22,10,108,182,255,113,225,10,77,220,174,1,48,52,0,134,74,142,77,128,159,220,68,69,37,65,128,0,1,2,4,8,16,32,64,128,0,1,2,231,4,54,219,255,112,238,155,190,191,210,0,184,191,1,48,60,6,99,19,224,167,244,253,56,200,158,0,1,2,4,8,16,32,64,128,0,1,2,13,9,108,182,255,190,161,108,22,167,162,1,112,94,3,96,208,28,155,0,63,117,177,170,5,8,16,32,64,128,0,1,2,4,8,16,32,64,160,172,192,102,251,239,202,6,80,223,238,26,0,199,26,0,67,137,198,38,192,79,171,175,84,34,34,64,128,0,1,2,4,8,16,32,64,128,0,129,131,4,54,219,127,123,208,117,157,93,164,1,112,66,3,96,120,6,198,38,192,79,239,236,89,144,46,1,2,4,8,16,32,64,128,0,1,2,4,226,11,108,182,255,38,126,18,121,50,208,0,56,165,1,48,112,143,77,128,159,145,135,221,170,4,8,16,32,64,128,0,1,2,4,8,16,32,144,92,96,179,253,215,201,215,108,104,65,13,128,29,13,128,161,206,99,19,224,103,54,84,111,169,16,32,64,128,0,1,2,4,8,16,32,64,160,77,129,205,246,95,181,153,88,186,172,52,0,246,52,0,6,234,177,9,240,179,210,145,91,137,0,1,2,4,8,16,32,64,128,0,1,2,4,146,10,108,182,255,50,233,122,141,46,166,1,112,64,3,96,168,253,216,4,248,207,27,125,6,164,69,128,0,1,2,4,8,16,32,64,128,0,129,184,2,155,237,191,136,27,252,186,145,107,0,28,216,0,24,202,50,54,1,126,246,186,229,177,27,1,2,4,8,16,32,64,128,0,1,2,4,8,156,42,176,217,254,243,83,63,243,193,69,2,26,0,19,26,0,131,222,216,4,248,47,46,82,244,6,1,2,4,8,16,32,64,128,0,1,2,4,8,172,43,176,217,254,179,117,55,140,191,155,6,192,196,6,192,80,242,177,9,240,115,226,151,94,6,4,8,16,32,64,128,0,1,2,4,8,16,8,42,176,217,254,211,160,145,23,13,91,3,96,70,3,96,168,216,216,4,248,47,139,86,206,230,4,8,16,32,64,128,0,1,2,4,8,16,232,81,96,179,253,39,61,166,157,34,103,13,128,153,13,128,1,127,108,2,252,220,20,69,176,6,1,2,4,8,16,32,64,128,0,1,2,4,8,28,32,176,217,254,227,3,174,114,201,41,2,26,0,11,26,0,131,233,216,4,248,175,78,177,245,54,1,2,4,8,16,32,64,128,0,1,2,4,8,164,18,216,108,255,81,170,165,122,93,71,3,96,97,3,96,120,112,198,38,192,207,235,245,1,146,55,1,2,4,8,16,32,64,128,0,1,2,4,178,11,108,182,255,48,251,30,29,108,160,1,144,160,1,48,60,39,99,19,224,191,238,224,121,145,34,1,2,4,8,16,32,64,128,0,1,2,4,214,21,216,108,255,193,186,27,182,187,155,6,64,162,6,192,240,136,140,77,128,159,223,238,163,34,51,2,4,8,16,32,64,128,0,1,2,4,8,172,44,176,217,254,253,149,119,108,122,59,13,128,132,13,128,225,73,25,155,0,255,77,211,79,140,228,8,16,32,64,128,0,1,2,4,8,16,32,176,134,192,102,251,247,214,216,166,167,61,52,0,18,55,0,134,135,103,108,2,252,130,158,30,34,185,18,32,64,128,0,1,2,4,8,16,32,64,32,169,192,102,251,119,147,174,103,177,251,4,52,0,50,52,0,6,217,177,9,240,11,61,99,4,8,16,32,64,128,0,1,2,4,8,16,32,48,81,96,179,253,59,19,239,112,249,129,2,26,0,153,26,0,131,255,216,4,248,69,7,214,193,101,4,8,16,32,64,128,0,1,2,4,8,16,32,176,217,254,109,8,249,4,52,0,50,54,0,134,178,141,77,128,95,156,175,124,86,38,64,128,0,1,2,4,8,16,32,64,128,64,35,2,155,237,223,106,36,147,106,211,208,0,200,220,0,24,42,63,54,1,126,73,181,79,128,192,8,16,32,64,128,0,1,2,4,8,16,32,80,90,96,179,253,155,165,67,232,97,127,13,128,21,26,0,195,131,52,54,1,254,219,30,30,40,57,18,32,64,128,0,1,2,4,8,16,32,64,96,146,192,102,251,55,38,93,239,226,217,2,26,0,43,53,0,134,10,141,77,128,95,58,187,82,110,36,64,128,0,1,2,4,8,16,32,64,128,64,107,2,155,237,95,111,45,165,154,243,209,0,88,177,1,48,60,8,99,19,224,191,171,249,129,16,27,1,2,4,8,16,32,64,128,0,1,2,4,86,17,216,108,255,218,42,251,216,228,172,128,6,192,202,13,128,65,126,108,2,252,178,179,21,240,5,1,2,4,8,16,32,64,128,0,1,2,4,122,19,216,108,255,106,111,41,215,144,175,6,64,129,6,192,80,248,177,9,240,223,215,240,0,136,129,0,1,2,4,8,16,32,64,128,0,1,2,171,10,108,182,127,101,213,253,108,118,86,64,3,160,80,3,96,168,192,216,4,248,229,103,43,225,11,2,4,8,16,32,64,128,0,1,2,4,8,180,46,176,217,254,229,214,83,172,57,63,13,128,130,13,128,225,193,24,155,0,255,67,205,15,136,216,8,16,32,64,128,0,1,2,4,8,16,32,144,68,96,179,253,75,73,214,177,200,108,1,13,128,194,13,128,161,114,99,19,224,87,204,174,160,27,9,16,32,64,128,0,1,2,4,8,16,32,80,187,192,102,251,23,107,15,177,135,248,52,0,42,104,0,12,15,218,216,4,248,31,123,120,224,228,72,128,0,1,2,4,8,16,32,64,128,64,103,2,155,237,95,232,44,227,106,211,213,0,168,164,1,48,60,33,99,19,224,87,86,251,164,8,140,0,1,2,4,8,16,32,64,128,0,1,2,83,5,54,219,63,63,245,22,215,231,19,208,0,168,168,1,48,148,121,108,2,252,79,249,202,109,101,2,4,8,16,32,64,128,0,1,2,4,8,172,36,176,217,254,185,149,118,178,205,129,2,26,0,149,53,0,134,186,141,77,128,95,117,96,253,92,70,128,0,1,2,4,8,16,32,64,128,0,129,250,4,54,219,63,91,95,80,34,210,0,168,176,1,48,60,150,99,19,224,127,246,120,18,32,64,128,0,1,2,4,8,16,32,64,32,156,192,102,251,103,194,197,220,73,192,26,0,149,54,0,134,231,111,108,2,252,234,78,158,67,105,18,32,64,128,0,1,2,4,8,16,32,208,130,192,102,251,167,91,72,163,213,28,52,0,42,110,0,12,15,221,216,4,248,95,90,125,248,228,69,128,0,1,2,4,8,16,32,64,128,64,67,2,155,237,159,106,40,155,38,83,209,0,168,188,1,48,60,117,99,19,224,215,52,249,244,73,138,0,1,2,4,8,16,32,64,128,0,129,54,4,54,219,63,217,70,34,109,103,161,1,16,160,1,48,60,130,99,19,224,127,109,251,81,148,29,1,2,4,8,16,32,64,128,0,1,2,33,5,54,219,63,17,50,238,14,131,214,0,8,210,0,24,158,205,177,9,240,107,59,124,70,165,76,128,0,1,2,4,8,16,32,64,128,64,173,2,155,237,31,175,53,52,113,93,44,160,1,16,168,1,48,148,111,108,2,252,111,23,151,209,59,4,8,16,32,64,128,0,1,2,4,8,16,88,89,96,179,253,99,43,239,104,187,133,2,26,0,193,26,0,67,189,199,38,192,175,91,88,119,183,19,32,64,128,0,1,2,4,8,16,32,64,96,190,192,102,251,71,231,223,236,206,82,2,26,0,1,27,0,195,195,50,54,1,254,247,82,15,141,125,9,16,32,64,128,0,1,2,4,8,16,232,88,96,179,253,35,29,103,31,58,117,13,128,160,13,128,225,169,27,155,0,191,62,244,211,39,120,2,4,8,16,32,64,128,0,1,2,4,98,9,108,182,127,56,86,192,162,61,95,64,3,32,112,3,96,40,228,216,4,248,63,206,47,168,175,9,16,32,64,128,0,1,2,4,8,16,32,144,69,96,179,253,67,89,214,181,232,106,2,26,0,193,27,0,195,147,50,54,1,126,195,106,79,140,141,8,16,32,64,128,0,1,2,4,8,16,232,79,96,179,253,131,253,37,221,94,198,26,0,13,52,0,134,199,114,108,2,252,159,237,61,158,50,34,64,128,0,1,2,4,8,16,32,64,160,184,192,102,251,7,138,199,32,128,36,2,26,0,141,52,0,134,167,97,108,2,252,198,36,79,133,69,8,16,32,64,128,0,1,2,4,8,16,32,48,10,108,182,191,31,68,59,2,26,0,13,53,0,238,251,235,185,57,243,127,181,243,120,202,132,0,1,2,4,8,16,32,64,128,0,129,98,2,155,237,239,43,182,183,141,179,8,104,0,52,214,0,24,158,146,113,18,224,55,101,121,90,44,74,128,0,1,2,4,8,16,32,64,128,64,31,2,155,237,239,237,35,209,190,178,212,0,104,176,1,48,60,194,99,19,224,255,238,235,81,150,45,1,2,4,8,16,32,64,128,0,1,2,73,4,54,219,223,147,100,29,139,84,39,160,1,208,104,3,96,120,210,198,38,192,111,174,238,137,19,16,1,2,4,8,16,32,64,128,0,1,2,245,10,108,182,191,187,222,224,68,182,84,64,3,160,225,6,192,240,112,140,77,128,255,103,233,67,226,126,2,4,8,16,32,64,128,0,1,2,4,58,16,216,108,127,87,7,89,118,157,162,6,64,227,13,128,225,233,30,155,0,191,165,235,167,92,242,4,8,16,32,64,128,0,1,2,4,8,236,22,216,108,127,231,238,11,124,218,130,128,6,64,7,13,128,225,65,29,155,0,255,111,11,15,172,28,8,16,32,64,128,0,1,2,4,8,16,72,44,176,217,254,142,196,43,90,174,82,1,13,128,78,26,0,195,243,55,54,1,126,107,165,207,161,176,8,16,32,64,128,0,1,2,4,8,16,40,33,176,217,254,246,18,219,218,179,140,128,6,64,71,13,128,225,17,27,155,0,255,95,153,71,205,174,4,8,16,32,64,128,0,1,2,4,8,84,37,176,217,254,182,170,226,17,76,118,1,13,128,206,26,0,195,19,53,54,1,126,40,251,147,101,3,2,4,8,16,32,64,128,0,1,2,4,234,21,216,108,127,164,222,224,68,150,75,64,3,160,195,6,192,240,48,141,77,128,31,206,245,80,89,151,0,1,2,4,8,16,32,64,128,0,129,138,5,54,219,31,174,56,58,161,101,20,216,108,207,56,8,102,244,173,126,233,205,25,211,0,213,23,105,141,0,135,7,225,190,151,63,57,140,2,158,131,190,158,3,53,247,204,251,59,223,215,223,249,163,122,127,47,107,255,179,71,129,241,4,232,213,173,192,56,1,224,213,177,128,191,254,29,23,95,234,4,8,16,32,64,128,0,1,2,125,9,104,0,245,85,239,19,178,253,129,225,61,143,193,9,48,61,189,53,54,1,60,4,61,85,92,174,4,8,16,32,64,128,0,1,2,221,9,248,15,254,238,74,126,82,194,26,0,39,169,116,248,158,38,64,135,69,151,50,1,2,4,8,16,32,64,128,64,31,2,14,255,125,212,249,128,44,53,0,14,64,234,229,18,77,128,94,42,45,79,2,4,8,16,32,64,128,0,129,110,4,28,254,187,41,245,33,137,106,0,28,162,212,209,53,154,0,29,21,91,170,4,8,16,32,64,128,0,1,2,109,11,56,252,183,93,223,25,217,105,0,204,64,107,253,22,77,128,214,43,44,63,2,4,8,16,32,64,128,0,129,230,5,28,254,155,47,241,156,4,53,0,230,168,117,112,143,38,64,7,69,150,34,1,2,4,8,16,32,64,128,64,155,2,14,255,109,214,53,65,86,26,0,9,16,91,93,66,19,160,213,202,202,139,0,1,2,4,8,16,32,64,160,89,1,135,255,102,75,155,34,49,13,128,20,138,13,175,161,9,208,112,113,165,70,128,0,1,2,4,8,16,32,208,150,128,195,127,91,245,204,144,141,6,64,6,212,214,150,212,4,104,173,162,242,33,64,128,0,1,2,4,8,16,104,78,192,225,191,185,146,230,72,72,3,32,135,106,131,107,106,2,52,88,84,41,17,32,64,128,0,1,2,4,8,180,33,224,240,223,70,29,87,200,66,3,96,5,228,86,182,208,4,104,165,146,242,32,64,128,0,1,2,4,8,16,104,70,192,225,191,153,82,174,145,136,6,192,26,202,13,237,161,9,208,80,49,165,66,128,0,1,2,4,8,16,32,16,91,192,225,63,118,253,10,68,175,1,80,0,61,250,150,154,0,209,43,40,126,2,4,8,16,32,64,128,0,129,240,2,14,255,225,75,88,34,1,13,128,18,234,13,236,169,9,208,64,17,165,64,128,0,1,2,4,8,16,32,16,83,192,225,63,102,221,42,136,90,3,160,130,34,68,13,65,19,32,106,229,196,77,128,0,1,2,4,8,16,32,16,86,192,225,63,108,233,106,8,92,3,160,134,42,4,142,65,19,32,112,241,132,78,128,0,1,2,4,8,16,32,16,75,192,225,63,86,189,42,140,86,3,160,194,162,68,11,73,19,32,90,197,196,75,128,0,1,2,4,8,16,32,16,78,192,225,63,92,201,106,12,88,3,160,198,170,4,140,73,19,32,96,209,132,76,128,0,1,2,4,8,16,32,16,67,192,225,63,70,157,2,68,169,1,16,160,72,81,66,212,4,136,82,41,113,18,32,64,128,0,1,2,4,8,132,17,112,248,15,83,170,8,129,106,0,68,168,82,160,24,53,1,2,21,75,168,4,8,16,32,64,128,0,1,2,117,11,56,252,215,93,159,128,209,105,0,4,44,90,237,33,107,2,212,94,33,241,17,32,64,128,0,1,2,4,8,84,47,224,240,95,125,137,34,6,168,1,16,177,106,1,98,214,4,8,80,36,33,18,32,64,128,0,1,2,4,8,212,41,224,240,95,103,93,26,136,74,3,160,129,34,214,154,130,38,64,173,149,17,23,1,2,4,8,16,32,64,128,64,181,2,14,255,213,150,166,133,192,52,0,90,168,98,197,57,104,2,84,92,28,161,17,32,64,128,0,1,2,4,8,212,37,224,240,95,87,61,26,140,70,3,160,193,162,214,150,146,38,64,109,21,17,15,1,2,4,8,16,32,64,128,64,117,2,14,255,213,149,164,197,128,52,0,90,172,106,133,57,105,2,84,88,20,33,17,32,64,128,0,1,2,4,8,212,33,224,240,95,71,29,58,136,66,3,160,131,34,215,146,162,38,64,45,149,16,7,1,2,4,8,16,32,64,128,64,53,2,14,255,213,148,162,135,64,52,0,122,168,114,69,57,106,2,84,84,12,161,16,32,64,128,0,1,2,4,8,148,21,112,248,47,235,223,225,238,26,0,29,22,189,116,202,154,0,165,43,96,127,2,4,8,16,32,64,128,0,129,226,2,14,255,197,75,208,99,0,26,0,61,86,189,130,156,53,1,42,40,130,16,8,16,32,64,128,0,1,2,4,202,8,56,252,151,113,183,235,25,13,0,15,65,49,1,77,128,98,244,54,38,64,128,0,1,2,4,8,16,40,37,224,240,95,74,222,190,131,128,6,128,199,160,168,128,38,64,81,126,155,19,32,64,128,0,1,2,4,8,172,41,224,240,191,166,182,189,78,16,208,0,56,1,197,91,235,10,104,2,172,235,109,55,2,4,8,16,32,64,128,0,129,2,2,14,255,5,208,109,121,92,64,3,224,184,136,239,139,8,104,2,20,97,183,41,1,2,4,8,16,32,64,128,192,26,2,14,255,107,40,219,227,0,1,13,128,3,144,92,178,142,128,38,192,58,206,118,33,64,128,0,1,2,4,8,16,88,81,192,225,127,69,108,91,237,19,208,0,216,39,228,243,85,5,52,1,86,229,182,25,1,2,4,8,16,32,64,128,64,78,1,135,255,156,186,214,158,33,160,1,48,3,205,45,121,5,52,1,242,250,90,157,0,1,2,4,8,16,32,64,96,5,1,135,255,21,144,109,49,85,64,3,96,170,152,235,87,17,208,4,88,133,217,38,4,8,16,32,64,128,0,1,2,57,4,28,254,115,168,90,51,129,128,6,64,2,68,75,228,17,208,4,200,227,106,85,2,4,8,16,32,64,128,0,129,140,2,14,255,25,113,45,189,84,64,3,96,169,160,251,179,10,104,2,100,229,181,56,1,2,4,8,16,32,64,128,64,74,1,135,255,148,154,214,202,32,160,1,144,1,213,146,105,5,52,1,210,122,90,141,0,1,2,4,8,16,32,64,32,131,128,195,127,6,84,75,166,22,208,0,72,45,106,189,44,2,154,0,89,88,45,74,128,0,1,2,4,8,16,32,144,66,192,225,63,133,162,53,86,16,208,0,88,1,217,22,105,4,52,1,210,56,90,133,0,1,2,4,8,16,32,64,32,161,128,195,127,66,76,75,229,22,208,0,200,45,108,253,164,2,154,0,73,57,45,70,128,0,1,2,4,8,16,32,176,68,192,225,127,137,158,123,11,8,104,0,20,64,183,229,50,1,77,128,101,126,238,38,64,128,0,1,2,4,8,16,72,32,224,240,159,0,209,18,107,11,104,0,172,45,110,191,36,2,154,0,73,24,45,66,128,0,1,2,4,8,16,32,48,71,192,225,127,142,154,123,42,16,208,0,168,160,8,66,152,39,160,9,48,207,205,93,4,8,16,32,64,128,0,1,2,11,4,28,254,23,224,185,181,180,128,6,64,233,10,216,127,145,128,38,192,34,62,55,19,32,64,128,0,1,2,4,8,76,17,112,248,159,162,229,218,10,5,52,0,42,44,138,144,166,9,104,2,76,243,114,53,1,2,4,8,16,32,64,128,192,12,1,135,255,25,104,110,169,77,64,3,160,182,138,136,103,150,128,38,192,44,54,55,17,32,64,128,0,1,2,4,8,28,34,224,240,127,136,146,107,2,8,104,0,4,40,146,16,15,19,208,4,56,204,201,85,4,8,16,32,64,128,0,1,2,19,4,28,254,39,96,185,180,118,1,13,128,218,43,36,190,73,2,154,0,147,184,92,76,128,0,1,2,4,8,16,32,176,75,192,225,127,151,142,207,2,10,104,0,4,44,154,144,119,11,104,2,236,246,241,41,1,2,4,8,16,32,64,128,192,1,2,14,255,7,32,185,36,154,128,6,64,180,138,137,247,32,1,77,128,131,152,92,68,128,0,1,2,4,8,16,32,112,146,128,195,255,73,42,222,107,64,64,3,160,129,34,74,225,100,1,77,128,147,93,188,75,128,0,1,2,4,8,16,32,176,67,192,225,127,7,142,143,162,11,104,0,68,175,160,248,119,10,104,2,236,228,241,33,1,2,4,8,16,32,64,128,192,249,2,14,255,231,107,248,186,65,1,13,128,6,139,42,165,11,5,52,1,46,244,240,29,1,2,4,8,16,32,64,128,192,9,2,14,255,39,160,120,171,53,1,13,128,214,42,42,159,19,5,52,1,78,100,241,38,1,2,4,8,16,32,64,128,192,40,224,240,239,57,232,68,64,3,160,147,66,75,243,204,25,77,0,79,1,1,2,4,8,16,32,64,128,192,69,2,14,255,23,145,120,163,93,1,13,128,118,107,43,179,19,4,52,1,78,64,241,22,1,2,4,8,16,32,64,160,87,1,135,255,94,43,223,109,222,26,0,221,150,190,223,196,53,1,250,173,189,204,9,16,32,64,128,0,1,2,103,5,28,254,207,82,248,162,31,1,13,128,126,106,45,211,243,4,52,1,206,195,240,37,1,2,4,8,16,32,64,160,55,1,135,255,222,42,46,223,251,5,52,0,60,10,221,10,104,2,116,91,122,137,19,32,64,128,0,1,2,61,11,56,252,247,92,253,238,115,215,0,232,254,17,232,27,64,19,160,239,250,203,158,0,1,2,4,8,16,232,76,192,225,191,179,130,75,247,184,128,6,192,113,17,223,119,39,160,9,208,93,201,37,76,128,0,1,2,4,8,244,40,224,240,223,99,213,229,124,76,64,3,224,24,136,111,251,20,208,4,232,179,238,178,38,64,128,0,1,2,4,58,17,112,248,239,164,208,210,220,39,160,1,176,79,200,231,221,8,104,2,116,83,106,137,18,32,64,128,0,1,2,61,9,56,252,247,84,109,185,238,17,208,0,216,3,228,227,190,4,52,1,250,170,183,108,9,16,32,64,128,0,129,198,5,28,254,27,47,176,244,166,10,104,0,76,21,115,125,243,2,154,0,205,151,88,130,4,8,16,32,64,128,64,15,2,14,255,61,84,89,142,19,5,52,0,38,130,185,188,15,1,77,128,62,234,44,75,2,4,8,16,32,64,160,81,1,135,255,70,11,43,173,165,2,26,0,75,5,221,223,172,128,38,64,179,165,149,24,1,2,4,8,16,32,208,178,128,195,127,203,213,149,219,66,1,13,128,133,128,110,111,91,64,19,160,237,250,202,142,0,1,2,4,8,16,104,76,192,225,191,177,130,74,39,181,128,6,64,106,81,235,53,39,160,9,208,92,73,37,68,128,0,1,2,4,8,180,40,224,240,223,98,85,229,148,88,64,3,32,49,168,229,218,20,208,4,104,179,174,178,34,64,128,0,1,2,4,26,17,112,248,111,164,144,210,200,45,160,1,144,91,216,250,205,8,104,2,52,83,74,137,16,32,64,128,0,1,2,45,9,56,252,183,84,77,185,100,22,208,0,200,12,108,249,182,4,52,1,218,170,167,108,8,16,32,64,128,0,129,224,2,14,255,193,11,40,252,181,5,52,0,214,22,183,95,120,1,77,128,240,37,148,0,1,2,4,8,16,32,208,130,128,195,127,11,85,148,195,202,2,26,0,43,131,219,174,13,1,77,128,54,234,40,11,2,4,8,16,32,64,32,168,128,195,127,208,194,9,187,180,128,6,64,233,10,216,63,172,128,38,64,216,210,9,156,0,1,2,4,8,16,136,44,224,240,31,185,122,98,47,44,160,1,80,184,0,182,143,45,160,9,16,187,126,162,39,64,128,0,1,2,4,130,9,56,252,7,43,152,112,107,19,208,0,168,173,34,226,9,39,160,9,16,174,100,2,38,64,128,0,1,2,4,34,10,56,252,71,172,154,152,43,19,208,0,168,172,32,194,137,41,160,9,16,179,110,162,38,64,128,0,1,2,4,130,8,56,252,7,41,148,48,107,23,208,0,168,189,66,226,11,35,160,9,16,166,84,2,37,64,128,0,1,2,4,34,9,56,252,71,170,150,88,43,23,208,0,168,188,64,194,139,37,160,9,16,171,94,162,37,64,128,0,1,2,4,42,23,112,248,175,188,64,194,139,38,160,1,16,173,98,226,173,94,64,19,160,250,18,9,144,0,1,2,4,8,16,136,32,224,240,31,161,74,98,12,38,160,1,16,172,96,194,141,33,160,9,16,163,78,162,36,64,128,0,1,2,4,42,21,112,248,175,180,48,194,138,46,160,1,16,189,130,226,175,86,64,19,160,218,210,8,140,0,1,2,4,8,16,168,89,192,225,191,230,234,136,45,184,128,6,64,240,2,10,191,110,1,77,128,186,235,35,58,2,4,8,16,32,64,160,50,1,135,255,202,10,34,156,214,4,52,0,90,171,168,124,170,19,208,4,168,174,36,2,34,64,128,0,1,2,4,106,20,112,248,175,177,42,98,106,76,64,3,160,177,130,74,167,78,1,77,128,58,235,34,42,2,4,8,16,32,64,160,18,1,135,255,74,10,33,140,214,5,52,0,90,175,176,252,170,17,208,4,168,166,20,2,33,64,128,0,1,2,4,106,18,112,248,175,169,26,98,105,92,64,3,160,241,2,75,175,46,1,77,128,186,234,33,26,2,4,8,16,32,64,160,176,128,195,127,225,2,216,190,55,1,13,128,222,42,46,223,226,2,154,0,197,75,32,0,2,4,8,16,32,64,160,6,1,135,255,26,170,32,134,206,4,52,0,58,43,184,116,235,16,208,4,168,163,14,162,32,64,128,0,1,2,4,10,9,56,252,23,130,183,109,239,2,26,0,189,63,1,242,47,38,160,9,80,140,222,198,4,8,16,32,64,128,64,73,1,135,255,146,250,246,238,92,64,3,160,243,7,64,250,101,5,52,1,202,250,219,157,0,1,2,4,8,16,88,89,192,225,127,101,112,219,17,184,80,64,3,224,66,15,223,17,88,93,64,19,96,117,114,27,18,32,64,128,0,1,2,37,4,28,254,75,168,219,147,192,5,2,26,0,23,112,248,134,64,25,1,77,128,50,238,118,37,64,128,0,1,2,4,86,18,112,248,95,9,218,54,4,118,11,104,0,236,246,241,41,129,213,4,52,1,86,163,182,17,1,2,4,8,16,32,176,166,128,195,255,154,218,246,34,176,83,64,3,96,39,143,15,9,172,43,160,9,176,174,183,221,8,16,32,64,128,0,129,204,2,14,255,153,129,45,79,96,154,128,6,192,52,47,87,19,200,46,160,9,144,157,216,6,4,8,16,32,64,128,192,26,2,14,255,107,40,219,131,192,36,1,13,128,73,92,46,38,176,142,128,38,192,58,206,118,33,64,128,0,1,2,4,50,9,56,252,103,130,181,44,129,101,2,26,0,203,252,220,77,32,155,128,38,64,54,90,11,19,32,64,128,0,1,2,57,5,28,254,115,234,90,155,192,34,1,13,128,69,124,110,38,144,87,64,19,32,175,175,213,9,16,32,64,128,0,129,196,2,14,255,137,65,45,71,32,173,128,6,64,90,79,171,17,72,46,160,9,144,156,212,130,4,8,16,32,64,128,64,14,1,135,255,28,170,214,36,144,84,64,3,32,41,167,197,8,228,17,208,4,200,227,106,85,2,4,8,16,32,64,32,145,128,195,127,34,72,203,16,200,43,160,1,144,215,215,234,4,146,9,104,2,36,163,180,16,1,2,4,8,16,32,144,82,192,225,63,165,166,181,8,100,21,208,0,200,202,107,113,2,105,5,52,1,210,122,90,141,0,1,2,4,8,16,88,40,224,240,191,16,208,237,4,214,21,208,0,88,215,219,110,4,22,11,104,2,44,38,180,0,1,2,4,8,16,32,144,66,192,225,63,133,162,53,8,172,42,160,1,176,42,183,205,8,164,17,208,4,72,227,104,21,2,4,8,16,32,64,96,166,128,195,255,76,56,183,17,40,43,160,1,80,214,223,238,4,102,11,104,2,204,166,115,35,1,2,4,8,16,32,176,68,192,225,127,137,158,123,9,20,21,208,0,40,202,111,115,2,203,4,52,1,150,249,185,155,0,1,2,4,8,16,152,40,224,240,63,17,204,229,4,234,18,208,0,168,171,30,162,33,48,89,64,19,96,50,153,27,8,16,32,64,128,0,129,57,2,14,255,115,212,220,67,160,42,1,13,128,170,202,33,24,2,243,4,52,1,230,185,185,139,0,1,2,4,8,16,56,80,192,225,255,64,40,151,17,168,91,64,3,160,238,250,136,142,192,193,2,154,0,7,83,185,144,0,1,2,4,8,16,152,34,224,240,63,69,203,181,4,170,22,208,0,168,186,60,130,35,48,77,64,19,96,154,151,171,9,16,32,64,128,0,129,61,2,14,255,123,128,124,76,32,150,128,6,64,172,122,137,150,192,94,1,77,128,189,68,46,32,64,128,0,1,2,4,14,17,112,248,63,68,201,53,4,66,9,104,0,132,42,151,96,9,28,38,160,9,112,152,147,171,8,16,32,64,128,0,129,83,4,28,254,79,129,241,54,129,216,2,26,0,177,235,39,122,2,167,10,104,2,156,74,227,3,2,4,8,16,32,64,96,151,128,195,255,46,29,159,17,8,45,160,1,16,186,124,130,39,176,91,64,19,96,183,143,79,9,16,32,64,128,0,129,99,2,14,255,199,64,124,75,160,45,1,13,128,182,234,41,27,2,23,9,104,2,92,68,226,13,2,4,8,16,32,64,224,36,1,135,255,147,84,188,71,160,41,1,13,128,166,202,41,25,2,39,11,104,2,156,236,226,93,2,4,8,16,32,64,224,126,1,135,127,143,2,129,46,4,52,0,186,40,179,36,9,156,57,163,9,224,41,32,64,128,0,1,2,4,78,20,112,248,63,145,197,155,4,90,20,208,0,104,177,170,114,34,112,138,128,38,192,41,48,222,38,64,128,0,1,2,189,10,56,252,247,90,121,121,119,42,160,1,208,105,225,165,221,175,128,38,64,191,181,151,57,1,2,4,8,16,184,64,192,225,255,2,14,223,16,232,65,64,3,160,135,42,203,145,192,49,1,77,128,99,32,190,37,64,128,0,1,2,189,9,56,252,247,86,113,249,18,184,79,64,3,192,131,64,160,83,129,251,155,0,254,249,239,180,254,210,38,64,128,0,129,142,5,54,247,253,159,6,234,24,64,234,4,250,21,248,190,126,83,151,57,1,2,99,19,192,139,0,1,2,4,8,16,232,72,64,235,191,163,98,75,149,192,197,2,227,4,128,87,199,2,14,128,29,23,255,254,212,127,98,248,83,39,208,115,64,128,0,1,2,4,58,16,248,62,167,255,14,170,44,69,2,59,5,252,119,255,78,30,31,18,232,67,224,39,116,130,250,40,180,44,9,16,32,64,160,95,1,135,255,126,107,47,115,2,231,9,152,0,56,15,163,199,47,157,251,122,172,250,201,57,255,248,240,48,124,191,95,12,156,140,227,93,2,4,8,16,32,16,89,224,251,253,206,47,114,249,196,78,32,165,128,159,6,41,53,173,69,32,184,192,143,143,255,251,0,94,4,8,16,32,64,128,64,59,2,14,255,237,212,82,38,4,18,8,152,0,72,128,24,121,9,19,0,145,171,151,39,246,31,27,154,0,63,240,253,121,214,182,42,1,2,4,8,16,32,176,162,128,127,208,87,196,182,21,129,24,2,38,0,98,212,73,148,4,86,21,248,177,31,95,117,59,155,17,32,64,128,0,1,2,169,5,28,254,83,139,90,143,64,19,2,38,0,154,40,227,252,36,76,0,204,183,107,253,206,31,29,154,0,15,240,19,162,245,50,203,143,0,1,2,4,90,20,240,15,120,139,85,149,19,129,36,2,38,0,146,48,90,132,64,155,2,63,250,99,109,230,37,43,2,4,8,16,32,208,172,128,195,127,179,165,149,24,129,20,2,126,191,151,66,49,240,26,38,0,2,23,111,165,208,191,59,52,1,30,248,128,149,54,179,13,1,2,4,8,16,32,48,95,192,63,216,243,237,220,73,160,19,1,19,0,157,20,90,154,4,150,8,124,247,71,151,220,237,94,2,4,8,16,32,64,32,187,128,195,127,118,98,27,16,104,65,192,4,64,11,85,92,144,131,9,128,5,120,157,221,250,157,161,9,240,160,7,118,150,180,116,9,16,32,64,128,64,4,1,255,64,71,168,146,24,9,84,33,96,2,160,138,50,8,130,64,12,129,239,124,55,70,156,162,36,64,128,0,1,2,221,8,56,252,119,83,106,137,18,72,33,96,2,32,133,98,224,53,76,0,4,46,94,161,208,191,61,52,1,30,252,160,66,155,219,150,0,1,2,4,8,16,56,39,224,31,228,115,22,190,34,64,224,32,1,19,0,7,49,185,136,0,129,243,5,190,253,157,243,191,243,53,1,2,4,8,16,32,176,186,128,195,255,234,228,54,36,208,130,128,9,128,22,170,184,32,7,19,0,11,240,58,191,245,91,67,19,224,33,15,238,28,65,250,4,8,16,32,64,160,132,128,127,128,75,168,219,147,64,19,2,38,0,154,40,163,36,8,148,17,248,214,183,203,236,107,87,2,4,8,16,32,208,173,128,195,127,183,165,151,56,129,20,2,38,0,82,40,6,94,195,4,64,224,226,85,18,250,55,135,38,192,67,31,82,73,48,194,32,64,128,0,1,2,45,11,248,7,183,229,234,202,141,192,42,2,38,0,86,97,182,9,129,182,5,190,249,173,182,243,147,29,1,2,4,8,16,40,46,224,240,95,188,4,2,32,208,130,128,9,128,22,170,184,32,7,19,0,11,240,220,122,129,192,55,134,38,192,195,30,122,193,91,190,33,64,128,0,1,2,4,82,8,248,7,54,133,162,53,8,16,24,4,76,0,120,12,8,16,72,38,240,141,111,38,91,202,66,4,8,16,32,64,128,192,40,224,240,239,57,32,64,32,161,128,9,128,132,152,17,151,50,1,16,177,106,117,199,252,245,161,9,240,240,135,213,29,163,232,8,16,32,64,128,64,8,1,255,160,134,40,147,32,9,68,18,48,1,16,169,90,98,37,16,68,224,235,223,8,18,168,48,9,16,32,64,128,64,173,2,14,255,181,86,70,92,4,66,11,152,0,8,93,190,229,193,155,0,88,110,104,133,147,5,190,54,52,1,30,241,240,147,63,243,46,1,2,4,8,16,32,176,67,192,63,160,59,112,124,68,128,192,18,1,19,0,75,244,220,75,128,192,78,129,175,125,125,231,199,62,36,64,128,0,1,2,4,142,11,56,252,31,23,241,61,1,2,9,5,76,0,36,196,140,184,148,9,128,136,85,139,21,243,189,67,19,224,145,143,136,21,179,104,9,16,32,64,128,64,17,1,255,96,22,97,183,41,129,158,4,76,0,244,84,109,185,18,40,36,112,239,215,10,109,108,91,2,4,8,16,32,16,69,192,225,63,74,165,196,73,32,180,128,9,128,208,229,91,30,188,9,128,229,134,86,56,76,224,171,67,19,224,81,143,60,236,90,87,17,32,64,128,0,129,174,4,252,3,217,85,185,37,75,160,164,128,9,128,146,250,246,38,208,153,192,87,239,237,44,97,233,18,32,64,128,0,129,125,2,14,255,251,132,124,78,128,64,66,1,19,0,9,49,35,46,101,2,32,98,213,98,199,124,207,208,4,120,244,163,98,231,32,122,2,4,8,16,32,144,68,192,63,136,73,24,45,66,128,192,225,2,38,0,14,183,114,37,1,2,137,4,238,249,106,162,133,44,67,128,0,1,2,4,162,10,56,252,71,173,156,184,9,132,22,48,1,16,186,124,203,131,55,1,176,220,208,10,243,4,190,50,52,1,30,243,232,121,247,186,139,0,1,2,4,8,132,22,240,15,96,232,242,9,158,64,100,1,19,0,145,171,39,118,2,193,5,190,114,79,240,4,132,79,128,0,1,2,4,166,10,56,252,79,21,115,61,1,2,9,5,76,0,36,196,140,184,148,9,128,136,85,107,43,230,187,135,38,192,99,31,211,86,78,178,33,64,128,0,1,2,39,10,248,7,239,68,22,111,18,32,176,158,128,9,128,245,172,237,68,128,192,41,2,119,127,229,148,15,188,77,128,0,1,2,4,90,17,112,248,111,165,146,242,32,16,90,192,4,64,232,242,45,15,222,4,192,114,67,43,164,17,248,242,208,4,120,220,99,211,172,101,21,2,4,8,16,32,80,149,128,127,224,170,42,135,96,8,244,44,96,2,160,231,234,203,157,64,101,2,95,190,187,178,128,132,67,128,0,1,2,4,150,10,56,252,47,21,116,63,1,2,9,5,76,0,36,196,140,184,148,9,128,136,85,107,59,230,47,13,77,128,199,63,174,237,28,101,71,128,0,1,2,157,8,248,7,173,147,66,75,147,64,28,1,19,0,113,106,37,82,2,221,8,124,233,203,221,164,42,81,2,4,8,16,104,85,192,225,191,213,202,202,139,64,104,1,19,0,161,203,183,60,120,19,0,203,13,173,144,71,224,174,161,9,240,132,199,231,89,219,170,4,8,16,32,64,32,171,128,127,192,178,242,90,156,0,129,249,2,38,0,230,219,185,147,0,129,204,2,119,125,41,243,6,150,39,64,128,0,1,2,169,5,28,254,83,139,90,143,0,129,132,2,38,0,18,98,70,92,202,4,64,196,170,245,21,243,23,135,38,192,19,159,208,87,206,178,37,64,128,0,129,160,2,254,193,10,90,56,97,19,232,71,192,4,64,63,181,150,41,129,176,2,95,188,43,108,232,2,39,64,128,0,129,94,4,28,254,123,169,180,60,9,132,22,48,1,16,186,124,203,131,55,1,176,220,208,10,235,8,124,97,104,2,60,233,137,235,236,101,23,2,4,8,16,32,48,73,192,63,80,147,184,92,76,128,64,57,1,19,0,229,236,237,76,128,192,68,129,47,124,113,226,13,46,39,64,128,0,1,2,185,5,28,254,115,11,91,159,0,129,132,2,38,0,18,98,70,92,202,4,64,196,170,245,29,243,157,67,19,224,201,79,234,219,64,246,4,8,16,32,80,137,128,127,144,42,41,132,48,8,16,56,84,192,4,192,161,82,174,35,64,160,26,129,59,191,80,77,40,2,33,64,128,0,129,94,5,28,254,123,173,188,188,9,132,22,48,1,16,186,124,203,131,55,1,176,220,208,10,101,4,238,24,154,0,79,121,114,153,189,237,74,128,0,1,2,157,11,248,7,168,243,7,64,250,4,226,10,152,0,136,91,59,145,19,232,94,224,142,59,187,39,0,64,128,0,1,2,107,11,56,252,175,45,110,63,2,4,18,10,152,0,72,136,25,113,41,19,0,17,171,38,230,243,5,110,31,154,0,79,125,202,249,239,248,154,0,1,2,4,8,100,18,240,15,78,38,88,203,18,32,176,150,128,9,128,181,164,237,67,128,64,54,129,219,239,200,182,180,133,9,16,32,64,128,192,247,4,28,254,61,9,4,8,52,32,96,2,160,129,34,46,73,193,4,192,18,61,247,214,36,112,219,208,4,120,218,83,107,138,72,44,4,8,16,32,208,140,128,127,96,154,41,165,68,8,244,46,96,2,160,247,39,64,254,4,26,18,184,237,246,134,146,145,10,1,2,4,8,212,33,224,240,95,71,29,68,65,128,64,18,1,19,0,73,24,227,46,98,2,32,110,237,68,126,178,192,173,67,19,224,233,79,59,249,51,239,18,32,64,128,0,129,73,2,254,65,153,196,229,98,2,4,234,23,48,1,80,127,141,68,72,128,192,68,129,91,111,155,120,131,203,9,16,32,64,128,192,113,1,135,255,227,34,190,39,64,160,1,1,19,0,13,20,113,73,10,38,0,150,232,185,183,102,129,91,134,38,192,51,158,94,115,132,98,35,64,128,0,129,106,5,252,3,82,109,105,4,70,128,192,50,1,19,0,203,252,220,77,128,64,197,2,183,220,90,113,112,66,35,64,128,0,129,58,5,28,254,235,172,139,168,8,16,72,34,96,2,32,9,99,220,69,76,0,196,173,157,200,15,19,248,252,208,4,120,230,51,14,187,214,85,4,8,16,32,208,185,128,127,48,58,127,0,164,79,160,125,1,19,0,237,215,88,134,4,186,23,248,252,45,221,19,0,32,64,128,0,129,125,2,14,255,251,132,124,78,128,64,3,2,38,0,26,40,226,146,20,76,0,44,209,115,111,36,129,207,13,77,128,103,61,51,82,196,98,37,64,128,0,129,213,4,252,3,177,26,181,141,8,16,40,43,96,2,160,172,191,221,9,16,88,81,224,115,159,95,113,51,91,17,32,64,128,64,12,1,135,255,24,117,18,37,1,2,73,4,76,0,36,97,140,187,136,9,128,184,181,19,249,60,129,155,135,38,192,179,159,53,239,94,119,17,32,64,128,64,99,2,254,65,104,172,160,210,33,64,96,159,128,9,128,125,66,62,39,64,160,57,129,155,63,215,92,74,18,34,64,128,0,129,169,2,14,255,83,197,92,79,128,64,3,2,38,0,26,40,226,146,20,76,0,44,209,115,111,100,129,207,14,77,128,231,60,59,114,6,98,39,64,128,0,129,217,2,207,121,246,236,91,221,72,128,0,129,200,2,38,0,34,87,79,236,4,8,44,18,248,236,205,139,110,119,51,1,2,4,8,68,20,120,206,179,35,70,45,102,2,4,8,36,17,48,1,144,132,49,238,34,38,0,226,214,78,228,105,4,62,115,243,153,51,207,125,78,154,181,172,66,128,0,1,2,149,11,248,129,95,121,129,132,71,128,64,110,1,19,0,185,133,173,79,128,64,245,2,159,249,108,245,33,10,144,0,1,2,4,150,10,56,252,47,21,116,63,1,2,13,8,152,0,104,160,136,75,82,48,1,176,68,207,189,45,9,220,52,52,1,158,247,220,150,50,146,11,1,2,4,8,156,21,240,3,254,44,133,47,8,16,232,91,192,4,64,223,245,151,61,1,2,231,9,220,244,153,243,190,241,37,1,2,4,8,180,33,224,240,223,70,29,101,65,128,64,18,1,19,0,73,24,227,46,98,2,32,110,237,68,158,71,224,211,67,19,224,249,207,203,179,182,85,9,16,32,64,96,101,1,63,208,87,6,183,29,1,2,181,11,152,0,168,189,66,226,35,64,96,117,129,79,223,180,250,150,54,36,64,128,0,129,212,2,14,255,169,69,173,71,128,64,3,2,38,0,26,40,226,146,20,76,0,44,209,115,111,203,2,159,26,154,0,47,120,126,203,25,202,141,0,1,2,13,11,248,1,222,112,113,165,70,128,192,18,1,19,0,75,244,220,75,128,64,211,2,159,250,116,211,233,73,142,0,1,2,109,10,56,252,183,89,87,89,17,32,144,68,192,4,64,18,198,184,139,152,0,136,91,59,145,175,35,112,227,208,4,120,225,11,214,217,203,46,4,8,16,32,176,80,192,15,236,133,128,110,39,64,160,117,1,19,0,173,87,88,126,4,8,44,22,184,241,83,139,151,176,0,1,2,4,8,228,22,112,248,207,45,108,125,2,4,26,16,48,1,208,64,17,151,164,96,2,96,137,158,123,123,18,184,97,104,2,188,232,133,61,101,44,87,2,4,8,4,18,240,3,58,80,177,132,74,128,64,73,1,19,0,37,245,237,77,128,64,40,129,27,110,12,21,174,96,9,16,32,208,135,128,195,127,31,117,150,37,1,2,73,4,76,0,36,97,140,187,136,9,128,184,181,19,121,25,129,79,14,77,128,23,191,168,204,222,118,37,64,128,0,129,99,2,126,32,31,3,241,45,1,2,4,118,11,152,0,216,237,227,83,2,4,8,92,36,240,201,27,46,122,203,27,4,8,16,32,176,182,128,195,255,218,226,246,35,64,160,1,1,19,0,13,20,113,73,10,38,0,150,232,185,183,103,129,235,135,38,192,75,94,220,179,128,220,9,16,32,80,80,192,15,224,130,248,182,38,64,32,178,128,9,128,200,213,19,59,1,2,69,5,174,255,100,209,237,109,78,128,0,129,62,5,28,254,251,172,187,172,9,16,72,34,96,2,32,9,99,220,69,76,0,196,173,157,200,235,16,184,110,104,2,188,244,37,117,196,34,10,2,4,8,52,47,224,7,110,243,37,150,32,1,2,121,5,76,0,228,245,181,58,1,2,29,8,92,119,125,7,73,74,145,0,1,2,165,5,28,254,75,87,192,254,4,8,52,32,96,2,160,129,34,46,73,193,4,192,18,61,247,18,56,39,112,237,208,4,120,217,75,207,125,239,43,2,4,8,16,72,40,224,7,108,66,76,75,17,32,208,179,128,9,128,158,171,47,119,2,4,146,10,92,123,93,210,229,44,70,128,0,1,2,163,128,195,191,231,128,0,1,2,201,4,76,0,36,163,140,185,144,9,128,152,117,19,117,189,2,159,24,154,0,47,127,89,189,241,137,140,0,1,2,161,4,252,64,13,85,46,193,18,32,80,191,128,9,128,250,107,36,66,2,4,130,9,124,226,218,96,1,11,151,0,1,2,53,10,56,252,215,88,21,49,17,32,16,92,192,4,64,240,2,46,13,223,4,192,82,65,247,19,56,89,224,227,67,19,224,21,47,63,249,51,239,18,32,64,128,192,30,1,63,64,247,0,249,152,0,1,2,243,4,76,0,204,115,115,23,1,2,4,246,10,124,252,19,123,47,113,1,1,2,4,8,28,23,112,248,63,46,226,123,2,4,8,36,19,48,1,144,140,50,230,66,38,0,98,214,77,212,113,4,174,25,154,0,175,124,69,156,120,69,74,128,0,129,162,2,126,96,22,229,183,57,1,2,237,11,152,0,104,191,198,50,36,64,160,176,192,53,31,47,28,128,237,9,16,32,16,65,192,225,63,66,149,196,72,128,64,112,1,19,0,193,11,184,52,124,19,0,75,5,221,79,224,48,129,171,135,38,192,171,94,121,216,181,174,34,64,128,64,119,2,126,64,118,87,114,9,19,32,80,70,192,4,64,25,119,187,18,32,208,161,192,213,215,116,152,180,148,9,16,32,176,79,192,225,127,159,144,207,9,16,32,144,76,192,4,64,50,202,152,11,153,0,136,89,55,81,199,21,248,216,208,4,120,245,171,226,198,47,114,2,4,8,36,21,240,3,49,41,167,197,8,16,32,176,79,192,4,192,62,33,159,19,32,64,32,177,192,199,174,78,188,160,229,8,16,32,16,81,192,225,63,98,213,196,76,128,64,112,1,19,0,193,11,184,52,124,19,0,75,5,221,79,96,158,192,71,135,38,192,107,94,61,239,94,119,17,32,64,32,188,128,31,128,225,75,40,1,2,4,98,10,152,0,136,89,55,81,19,32,208,128,192,71,63,214,64,18,82,32,64,128,192,84,1,135,255,169,98,174,39,64,128,64,50,1,19,0,201,40,99,46,100,2,32,102,221,68,221,142,192,85,67,19,224,181,175,105,39,31,153,16,32,64,96,167,128,31,120,59,121,124,72,128,0,129,220,2,38,0,114,11,91,159,0,1,2,123,4,174,250,232,158,11,124,76,128,0,129,22,4,28,254,91,168,162,28,8,16,8,46,96,2,32,120,1,151,134,111,2,96,169,160,251,9,164,17,248,200,208,4,120,221,107,211,172,101,21,2,4,8,84,39,224,7,92,117,37,17,16,1,2,125,10,152,0,232,179,238,178,38,64,160,66,129,143,92,85,97,80,66,34,64,128,192,82,1,135,255,165,130,238,39,64,128,64,50,1,19,0,201,40,99,46,100,2,32,102,221,68,221,174,192,149,67,19,224,245,175,107,55,63,153,17,32,208,153,128,31,104,157,21,92,186,4,8,212,46,96,2,160,246,10,137,143,0,129,238,4,174,252,72,119,41,75,152,0,129,22,5,28,254,91,172,170,156,8,16,8,46,96,2,32,120,1,151,134,111,2,96,169,160,251,9,228,17,184,98,104,2,188,225,245,121,214,182,42,1,2,4,178,11,248,1,150,157,216,6,4,8,16,152,35,96,2,96,142,154,123,8,16,32,176,130,192,21,87,174,176,137,45,8,16,32,144,90,192,225,63,181,168,245,8,16,32,144,76,192,4,64,50,202,152,11,153,0,136,89,55,81,247,35,240,225,161,9,240,198,55,244,147,175,76,9,16,8,46,224,7,86,240,2,10,159,0,129,214,5,76,0,180,94,97,249,17,32,16,94,224,195,87,132,79,65,2,4,8,244,32,224,240,223,67,149,229,72,128,64,112,1,19,0,193,11,184,52,124,19,0,75,5,221,79,96,29,129,203,135,38,192,155,222,184,206,94,118,33,64,128,192,100,1,63,160,38,147,185,129,0,1,2,37,4,76,0,148,80,183,39,1,2,4,102,8,92,254,225,25,55,185,133,0,1,2,185,5,28,254,115,11,91,159,0,1,2,201,4,76,0,36,163,140,185,144,9,128,152,117,19,117,191,2,151,13,77,128,55,191,169,223,252,101,78,128,64,101,2,126,32,85,86,16,225,16,32,64,96,183,128,9,128,221,62,62,37,64,128,64,117,2,151,93,94,93,72,2,34,64,160,71,1,135,255,30,171,46,103,2,4,130,11,152,0,8,94,192,165,225,155,0,88,42,232,126,2,101,4,62,52,52,1,222,242,230,50,123,219,149,0,1,2,126,0,121,6,8,16,32,16,83,192,4,64,204,186,137,154,0,1,2,103,62,116,25,4,2,4,8,20,16,208,125,44,128,110,75,2,4,8,164,17,48,1,144,198,49,236,42,38,0,194,150,78,224,4,238,19,248,224,208,4,120,235,91,96,16,32,64,96,37,1,63,112,86,130,182,13,1,2,4,242,8,152,0,200,227,106,85,2,4,8,172,38,240,193,15,173,182,149,141,8,16,232,89,192,225,191,231,234,203,157,0,129,70,4,76,0,52,82,200,185,105,152,0,152,43,231,62,2,117,9,124,96,104,2,188,237,173,117,197,36,26,2,4,26,18,240,3,166,161,98,74,133,0,129,158,5,76,0,244,92,125,185,19,32,208,148,192,7,62,216,84,58,146,33,64,160,22,1,135,255,90,42,33,14,2,4,8,44,22,48,1,176,152,48,246,2,38,0,98,215,79,244,4,142,11,188,127,104,2,188,253,109,199,223,245,61,1,2,4,102,10,248,129,50,19,206,109,4,8,16,168,83,192,4,64,157,117,17,21,1,2,4,102,11,188,255,3,179,111,117,35,1,2,4,206,9,56,252,159,179,240,21,1,2,4,26,17,48,1,208,72,33,231,166,97,2,96,174,156,251,8,212,45,240,190,161,9,240,142,183,215,29,163,232,8,16,168,88,192,15,144,138,139,35,52,2,4,8,204,23,48,1,48,223,206,157,4,8,16,168,90,224,125,239,175,58,60,193,17,32,80,171,128,195,127,173,149,17,23,1,2,4,22,11,152,0,88,76,24,123,1,19,0,177,235,39,122,2,251,4,222,59,52,1,222,249,142,125,87,249,156,0,1,2,247,11,248,129,225,81,32,64,128,64,211,2,38,0,154,46,175,228,8,16,32,112,230,204,123,223,71,129,0,1,2,7,8,56,252,31,128,228,18,2,4,8,196,22,48,1,16,187,126,139,163,55,1,176,152,208,2,4,66,8,92,58,52,1,222,245,206,16,161,10,146,0,129,18,2,126,64,148,80,183,39,1,2,4,86,23,48,1,176,58,185,13,9,16,32,80,70,224,210,247,150,217,215,174,4,8,84,46,224,240,95,121,129,132,71,128,0,129,116,2,38,0,210,89,134,92,201,4,64,200,178,9,154,192,108,129,75,134,38,192,187,223,53,251,118,55,18,32,208,154,128,31,8,173,85,84,62,4,8,16,216,41,96,2,96,39,143,15,9,16,32,208,158,192,37,151,182,151,147,140,8,16,152,33,224,240,63,3,205,45,4,8,16,136,45,96,2,32,118,253,22,71,111,2,96,49,161,5,8,132,20,120,207,208,4,248,65,63,0,66,214,78,208,4,146,8,108,222,157,100,25,139,16,32,64,128,64,44,1,19,0,177,234,37,90,2,4,8,36,19,216,110,146,45,101,33,2,4,34,9,108,116,255,34,149,75,172,4,8,16,72,41,96,2,32,165,102,192,181,252,39,64,192,162,9,153,64,66,129,177,9,224,44,144,16,212,82,4,106,23,56,251,23,94,7,176,246,82,137,143,0,1,2,57,4,76,0,228,80,181,38,1,2,4,2,9,152,4,8,84,44,161,18,88,34,112,246,240,191,100,17,247,18,32,64,128,64,100,1,19,0,145,171,151,32,118,19,0,9,16,45,65,160,1,1,147,0,13,20,81,10,4,118,9,92,116,248,55,1,176,139,203,103,4,8,16,104,85,192,4,64,171,149,149,23,1,2,4,38,10,152,4,152,8,230,114,2,81,4,46,58,252,71,9,92,156,4,8,16,32,144,90,192,4,64,106,209,96,235,153,0,8,86,48,225,18,200,44,96,18,32,51,176,229,9,172,45,112,234,225,223,4,192,218,165,176,31,1,2,4,106,16,48,1,80,67,21,196,64,128,0,129,138,4,76,2,84,84,12,161,16,88,34,112,234,225,127,201,162,238,37,64,128,0,129,200,2,38,0,34,87,47,65,236,38,0,18,32,90,130,64,131,2,38,1,26,44,170,148,250,18,216,123,248,55,1,208,215,3,33,91,2,4,8,124,79,192,4,128,39,129,0,1,2,4,78,20,48,9,112,34,139,55,9,212,47,176,247,240,95,127,10,34,36,64,128,0,129,60,2,38,0,242,184,134,89,213,4,64,152,82,9,148,64,17,1,147,0,69,216,109,74,96,190,192,193,135,127,19,0,243,145,221,73,128,0,129,184,2,38,0,226,214,78,228,4,8,16,88,69,192,36,192,42,204,54,33,176,92,224,224,195,255,242,173,172,64,128,0,1,2,49,5,76,0,196,172,91,178,168,77,0,36,163,180,16,129,166,5,76,2,52,93,94,201,181,32,48,249,240,111,2,160,133,178,203,129,0,1,2,83,5,76,0,76,21,115,61,1,2,4,58,21,48,9,208,105,225,165,93,191,192,228,195,127,253,41,137,144,0,1,2,4,242,8,152,0,200,227,26,102,85,19,0,97,74,37,80,2,85,8,152,4,168,162,12,130,32,112,78,96,246,225,223,4,192,57,68,95,17,32,64,160,31,1,19,0,253,212,90,166,4,8,16,72,34,96,18,32,9,163,69,8,44,23,152,125,248,95,190,181,21,8,16,32,64,32,166,128,9,128,152,117,75,22,181,9,128,100,148,22,34,208,149,128,73,128,174,202,45,217,26,5,22,31,254,77,0,212,88,86,49,17,32,64,32,183,128,9,128,220,194,214,39,64,128,64,163,2,38,1,26,45,172,180,234,23,88,124,248,175,63,69,17,18,32,64,128,64,30,1,19,0,121,92,195,172,106,2,32,76,169,4,74,160,74,1,147,0,85,150,69,80,45,11,36,59,252,155,0,104,249,49,145,27,1,2,4,78,19,48,1,112,154,140,247,9,16,32,64,224,32,1,147,0,7,49,185,136,192,114,129,100,135,255,229,161,88,129,0,1,2,4,98,10,152,0,136,89,183,100,81,155,0,72,70,105,33,2,93,11,152,4,232,186,252,146,95,67,32,249,225,223,4,192,26,101,179,7,1,2,4,106,19,48,1,80,91,69,196,67,128,0,129,160,2,38,1,130,22,78,216,245,11,36,63,252,215,159,178,8,9,16,32,64,32,143,128,9,128,60,174,97,86,53,1,16,166,84,2,37,16,66,192,36,64,136,50,9,50,146,64,182,195,191,9,128,72,143,129,88,9,16,32,144,74,192,4,64,42,73,235,16,32,64,128,192,125,2,38,1,60,8,4,18,9,100,59,252,39,138,207,50,4,8,16,32,16,78,192,4,64,184,146,165,13,216,4,64,90,79,171,17,32,240,61,1,147,0,158,4,2,11,5,178,31,254,77,0,44,172,144,219,9,16,32,16,82,192,4,64,200,178,9,154,0,1,2,245,11,152,4,168,191,70,34,172,84,32,251,225,191,210,188,133,69,128,0,1,2,217,5,76,0,100,39,174,123,3,19,0,117,215,71,116,4,162,11,152,4,136,94,65,241,175,46,176,218,225,223,4,192,234,181,181,33,1,2,4,42,16,48,1,80,65,17,132,64,128,0,129,150,5,76,2,180,92,93,185,37,21,88,237,240,159,52,106,139,17,32,64,128,64,32,1,19,0,129,138,149,35,84,19,0,57,84,173,73,128,192,113,1,147,0,199,69,124,79,224,152,192,234,135,127,19,0,199,42,224,91,2,4,8,116,33,96,2,160,139,50,75,146,0,1,2,229,5,76,2,148,175,129,8,42,21,88,253,240,95,169,131,176,8,16,32,64,32,187,128,9,128,236,196,117,111,96,2,160,238,250,136,142,64,107,2,38,1,90,171,168,124,22,11,20,59,252,155,0,88,92,59,11,16,32,64,32,160,128,9,128,128,69,19,50,1,2,4,34,11,152,4,136,92,61,177,39,21,40,118,248,79,154,133,197,8,16,32,64,32,144,128,9,128,64,197,202,17,170,9,128,28,170,214,36,64,96,159,128,73,128,125,66,62,111,94,160,248,225,223,4,64,243,207,152,4,9,16,32,112,130,128,9,128,19,80,188,69,128,0,1,2,249,5,76,2,228,55,182,67,165,2,197,15,255,149,186,8,139,0,1,2,4,178,11,152,0,200,78,92,247,6,38,0,234,174,143,232,8,180,46,96,18,160,245,10,203,239,34,129,106,14,255,38,0,46,170,141,55,8,16,32,208,129,128,9,128,14,138,44,69,2,4,8,212,44,96,18,160,230,234,136,45,169,64,53,135,255,164,89,89,140,0,1,2,4,2,9,152,0,8,84,172,28,161,154,0,200,161,106,77,2,4,166,10,152,4,152,42,230,250,112,2,213,29,254,77,0,132,123,134,4,76,128,0,129,4,2,38,0,18,32,90,130,0,1,2,4,150,11,152,4,88,110,104,133,74,5,170,59,252,87,234,36,44,2,4,8,16,200,46,96,2,32,59,113,221,27,152,0,168,187,62,162,35,208,155,128,73,128,222,42,222,65,190,213,30,254,77,0,116,240,244,73,145,0,1,2,23,9,152,0,184,136,196,27,4,8,16,32,80,82,192,36,64,73,125,123,39,21,168,246,240,159,52,75,139,17,32,64,128,64,32,1,19,0,129,138,149,35,84,19,0,57,84,173,73,128,192,82,1,147,0,75,5,221,95,92,160,250,195,191,9,128,226,207,136,0,8,16,32,80,64,192,4,64,1,116,91,18,32,64,128,192,126,1,147,0,251,141,92,81,169,64,245,135,255,74,221,132,69,128,0,1,2,217,5,76,0,100,39,174,123,3,19,0,117,215,71,116,4,122,23,48,9,208,251,19,16,48,255,48,135,127,19,0,1,159,46,33,19,32,64,96,177,128,9,128,197,132,22,32,64,128,0,129,156,2,38,1,114,234,90,59,169,64,152,195,127,210,172,45,70,128,0,1,2,129,4,76,0,4,42,86,142,80,77,0,228,80,181,38,1,2,169,5,76,2,164,22,181,94,114,129,112,135,127,19,0,201,159,1,11,18,32,64,32,128,128,9,128,0,69,18,34,1,2,4,8,156,57,99,18,192,83,80,173,64,184,195,127,181,146,2,35,64,128,0,129,204,2,38,0,50,3,215,190,188,9,128,218,43,36,62,2,4,206,23,48,9,112,190,134,175,171,16,8,123,248,55,1,80,197,243,35,8,2,4,8,172,44,96,2,96,101,112,219,17,32,64,128,192,50,1,147,0,203,252,220,157,80,32,236,225,63,161,129,165,8,16,32,64,32,148,128,9,128,80,229,74,31,172,9,128,244,166,86,36,64,32,191,128,73,128,252,198,118,216,35,16,254,240,111,2,96,79,133,125,76,128,0,129,38,5,76,0,52,89,86,73,17,32,64,160,125,1,147,0,237,215,184,218,12,195,31,254,171,149,21,24,1,2,4,8,100,22,48,1,144,25,184,246,229,77,0,212,94,33,241,17,32,176,75,192,36,192,46,29,159,101,17,104,230,240,111,2,32,203,243,97,81,2,4,8,84,46,96,2,160,242,2,9,143,0,1,2,4,118,11,152,4,216,237,227,211,132,2,205,28,254,19,154,88,138,0,1,2,4,66,9,152,0,8,85,174,244,193,154,0,72,111,106,69,2,4,214,23,48,9,176,190,121,119,59,54,119,248,55,1,208,221,51,44,97,2,4,8,12,2,38,0,60,6,4,8,16,32,208,132,128,73,128,38,202,88,103,18,205,29,254,235,100,22,21,1,2,4,8,228,23,48,1,144,223,184,234,29,76,0,84,93,30,193,17,32,48,81,192,36,192,68,48,151,239,23,104,246,240,111,2,96,127,241,93,65,128,0,129,246,4,76,0,180,87,83,25,17,32,64,160,107,1,147,0,93,151,63,109,242,205,30,254,211,50,89,141,0,1,2,4,226,8,152,0,136,83,171,44,145,154,0,200,194,106,81,2,4,10,11,152,4,40,92,128,22,182,111,254,240,111,2,160,133,199,84,14,4,8,16,152,42,96,2,96,170,152,235,9,16,32,64,32,132,128,73,128,16,101,170,51,200,230,15,255,117,178,139,138,0,1,2,4,242,11,152,0,200,111,92,245,14,38,0,170,46,143,224,8,16,88,40,96,18,96,33,96,143,183,119,115,248,55,1,208,227,227,45,103,2,4,8,152,0,240,12,16,32,64,128,64,211,2,38,1,154,46,111,218,228,186,57,252,167,101,179,26,1,2,4,8,196,17,48,1,16,167,86,89,34,53,1,144,133,213,162,4,8,84,38,96,18,160,178,130,212,24,78,119,135,127,19,0,53,62,134,98,34,64,128,64,110,1,19,0,185,133,173,79,128,0,1,2,85,8,152,4,168,162,12,117,6,209,221,225,191,206,50,136,138,0,1,2,4,242,11,152,0,200,111,92,245,14,38,0,170,46,143,224,8,16,72,44,96,18,32,49,104,11,203,117,123,248,55,1,208,194,227,43,7,2,4,8,76,21,48,1,48,85,204,245,4,8,16,32,16,90,192,36,64,232,242,165,13,190,219,195,127,90,70,171,17,32,64,128,64,28,1,19,0,113,106,149,37,82,19,0,89,88,45,74,128,64,229,2,38,1,42,47,208,26,225,117,127,248,55,1,176,198,99,102,15,2,4,8,212,38,96,2,160,182,138,136,135,0,1,2,4,86,17,48,9,176,10,115,157,155,116,127,248,175,179,44,162,34,64,128,0,129,252,2,38,0,242,27,87,189,131,9,128,170,203,35,56,2,4,50,11,152,4,200,12,92,227,242,14,255,247,87,197,4,64,141,143,167,152,8,16,32,144,91,192,4,64,110,97,235,19,32,64,128,64,213,2,38,1,170,46,79,218,224,28,254,211,122,90,141,0,1,2,4,194,9,152,0,8,87,178,180,1,155,0,72,235,105,53,2,4,98,10,152,4,136,89,183,73,81,59,252,31,227,50,1,112,12,196,183,4,8,16,232,66,192,4,64,23,101,150,36,1,2,4,8,236,19,48,9,176,79,40,240,231,14,255,129,139,39,116,2,4,8,16,72,41,96,2,32,165,102,192,181,76,0,4,44,154,144,9,16,200,38,96,18,32,27,109,185,133,29,254,79,177,55,1,112,10,140,183,9,16,32,208,180,128,9,128,166,203,43,57,2,4,8,16,152,42,96,18,96,170,88,197,215,59,252,87,92,28,161,17,32,64,128,64,9,1,19,0,37,212,43,218,211,4,64,69,57,246,217,189,0,0,64,0,73,68,65,84,197,16,10,1,2,213,8,152,4,168,166,20,243,3,113,248,223,99,103,2,96,15,144,143,9,16,32,208,164,128,9,128,38,203,42,41,2,4,8,16,88,42,96,18,96,169,96,193,251,29,254,11,226,219,154,0,1,2,4,106,22,48,1,80,115,117,86,136,205,4,192,10,200,182,32,64,32,172,128,73,128,128,165,115,248,63,176,104,38,0,14,132,114,25,1,2,4,154,18,48,1,208,84,57,37,67,128,0,1,2,169,5,76,2,164,22,205,184,158,195,127,70,92,75,19,32,64,128,64,11,2,38,0,90,168,226,130,28,76,0,44,192,115,43,1,2,221,8,152,4,8,80,106,135,255,137,69,50,1,48,17,204,229,4,8,16,104,66,192,4,64,19,101,148,4,1,2,4,8,228,22,48,9,144,91,120,193,250,14,255,11,240,220,74,128,0,1,2,61,9,152,0,232,169,218,39,228,106,2,224,4,20,111,17,32,64,224,20,1,147,0,167,192,148,124,219,225,127,166,190,9,128,153,112,110,35,64,128,64,104,1,19,0,161,203,39,120,2,4,8,16,88,91,192,36,192,218,226,59,246,115,248,223,129,227,35,2,4,8,16,32,112,177,128,9,128,139,77,186,122,199,4,64,87,229,150,44,1,2,137,4,76,2,36,130,92,178,140,195,255,18,189,225,94,19,0,11,1,221,78,128,0,129,144,2,38,0,66,150,77,208,4,8,16,32,80,90,192,36,64,193,10,56,252,23,196,183,53,1,2,4,8,68,22,48,1,16,185,122,9,98,55,1,144,0,209,18,4,8,116,43,96,18,160,64,233,29,254,19,161,155,0,72,4,105,25,2,4,8,132,18,48,1,16,170,92,130,37,64,128,0,129,218,4,76,2,172,88,17,135,255,21,177,109,69,128,0,1,2,45,10,152,0,104,177,170,19,114,50,1,48,1,203,165,4,8,16,56,69,192,36,192,41,48,41,223,118,248,79,169,57,172,101,2,32,49,168,229,8,16,32,16,66,192,4,64,136,50,9,146,0,1,2,4,106,23,48,9,144,177,66,14,255,25,113,45,77,128,0,1,2,61,9,152,0,232,169,218,39,228,106,2,224,4,20,111,17,32,64,96,166,128,73,128,153,112,187,110,115,248,223,165,179,224,51,19,0,11,240,220,74,128,0,129,176,2,38,0,194,150,78,224,4,8,16,32,80,163,128,73,128,132,85,113,248,79,136,105,41,2,4,8,16,32,112,230,140,9,128,206,159,2,19,0,157,63,0,210,39,64,32,139,128,73,128,4,172,14,255,9,16,119,45,97,2,96,151,142,207,8,16,32,208,170,128,9,128,86,43,43,47,2,4,8,16,40,42,96,18,96,1,191,195,255,2,60,183,18,32,64,128,0,129,211,5,76,0,156,110,211,197,39,38,0,186,40,179,36,9,16,40,36,96,18,96,6,188,195,255,12,180,57,183,152,0,152,163,230,30,2,4,8,68,23,48,1,16,189,130,226,39,64,128,0,129,170,5,76,2,76,40,143,195,255,4,44,151,18,32,64,128,0,129,233,2,38,0,166,155,53,117,135,9,128,166,202,41,25,2,4,42,21,48,9,112,64,97,28,254,15,64,74,121,137,9,128,148,154,214,34,64,128,64,20,1,19,0,81,42,37,78,2,4,8,16,8,45,96,18,96,71,249,28,254,119,224,248,136,0,1,2,4,8,164,19,48,1,144,206,50,228,74,38,0,66,150,77,208,4,8,4,21,48,9,112,66,225,28,254,79,64,89,227,45,19,0,107,40,219,131,0,1,2,181,9,152,0,168,173,34,226,33,64,128,0,129,166,5,76,2,156,87,94,135,255,243,48,124,73,128,0,1,2,4,242,11,152,0,200,111,92,245,14,38,0,170,46,143,224,8,16,104,84,192,36,192,80,88,135,255,194,79,183,9,128,194,5,176,61,1,2,4,138,8,152,0,40,194,110,83,2,4,8,16,232,93,160,235,73,0,135,255,222,31,127,249,19,32,64,128,64,33,1,19,0,133,224,107,217,214,4,64,45,149,16,7,1,2,61,10,116,57,9,224,240,95,201,163,110,2,160,146,66,8,131,0,1,2,171,10,152,0,88,149,219,102,4,8,16,32,64,224,66,129,174,38,1,28,254,47,44,190,239,8,16,32,64,128,192,202,2,38,0,86,6,175,109,59,19,0,181,85,68,60,4,8,244,40,208,197,36,128,195,127,101,143,182,9,128,202,10,34,28,2,4,8,172,34,96,2,96,21,102,155,16,32,64,128,0,129,221,2,77,79,2,56,252,239,46,190,79,9,16,32,64,128,192,74,2,38,0,86,130,174,117,27,19,0,181,86,70,92,4,8,244,40,208,228,36,128,195,127,165,143,178,9,128,74,11,35,44,2,4,8,100,21,48,1,144,149,215,226,4,8,16,32,64,96,154,64,83,147,0,14,255,211,138,239,106,2,4,8,16,32,144,89,192,4,64,102,224,218,151,55,1,80,123,133,196,71,128,64,143,2,77,76,2,56,252,87,254,232,154,0,168,188,64,194,35,64,128,64,22,1,19,0,89,88,45,74,128,0,1,2,4,150,9,132,158,4,112,248,95,86,124,119,19,32,64,128,0,129,76,2,38,0,50,193,70,89,214,4,64,148,74,137,147,0,129,30,5,66,78,2,56,252,7,121,84,77,0,4,41,148,48,9,16,32,144,84,192,4,64,82,78,139,17,32,64,128,0,129,180,2,161,38,1,28,254,211,22,223,106,4,8,16,32,64,32,177,128,9,128,196,160,209,150,51,1,16,173,98,226,37,64,160,71,129,16,147,0,14,255,193,30,77,19,0,193,10,38,92,2,4,8,36,17,48,1,144,132,209,34,4,8,16,32,64,32,175,64,213,147,0,14,255,121,139,111,117,2,4,8,16,32,144,72,192,4,64,34,200,168,203,152,0,136,90,57,113,19,32,208,163,64,149,147,0,14,255,65,31,69,19,0,65,11,39,108,2,4,8,44,18,48,1,176,136,207,205,4,8,16,32,64,96,93,129,170,38,1,28,254,215,45,190,221,8,16,32,64,128,192,66,1,19,0,11,1,163,223,110,2,32,122,5,197,79,128,64,143,2,85,76,2,56,252,7,127,244,76,0,4,47,160,240,9,16,32,48,75,192,4,192,44,54,55,17,32,64,128,0,129,178,2,69,39,1,28,254,203,22,223,238,4,8,16,32,64,96,166,128,9,128,153,112,173,220,102,2,160,149,74,202,131,0,129,30,5,138,76,2,56,252,55,242,168,153,0,104,164,144,210,32,64,128,192,36,1,19,0,147,184,92,76,128,0,1,2,4,234,18,88,117,18,192,225,191,174,226,139,134,0,1,2,4,8,76,20,48,1,48,17,172,181,203,77,0,180,86,81,249,16,32,208,163,192,42,147,0,14,255,141,61,90,38,0,26,43,168,116,8,16,32,112,144,128,9,128,131,152,92,68,128,0,1,2,4,234,22,200,58,9,224,240,95,119,241,69,71,128,0,1,2,4,14,20,48,1,112,32,84,171,151,153,0,104,181,178,242,34,64,160,71,129,44,147,0,14,255,141,62,74,38,0,26,45,172,180,8,16,32,176,83,192,4,192,78,30,31,18,32,64,128,0,129,88,2,73,39,1,28,254,99,21,95,180,4,8,16,32,64,96,143,128,9,128,61,64,173,127,108,2,160,245,10,203,143,0,129,30,5,146,76,2,56,252,55,254,232,152,0,104,188,192,210,35,64,128,192,137,2,38,0,78,100,241,38,1,2,4,8,16,136,45,176,104,18,192,225,63,118,241,69,79,128,0,1,2,4,78,17,48,1,112,10,76,47,111,155,0,232,165,210,242,36,64,160,71,129,89,147,0,14,255,157,60,42,38,0,58,41,180,52,9,16,32,112,129,128,9,128,11,56,124,67,128,0,1,2,4,218,18,152,52,9,224,240,223,86,241,101,67,128,0,1,2,4,142,9,152,0,56,6,210,219,183,38,0,122,171,184,124,9,16,232,81,224,160,73,0,135,255,206,30,13,19,0,157,21,92,186,4,8,16,184,79,192,4,128,7,129,0,1,2,4,8,116,32,176,115,18,192,225,191,131,39,64,138,4,8,16,32,64,224,204,25,19,0,157,63,5,38,0,58,127,0,164,79,128,64,87,2,39,78,2,56,252,119,245,12,156,75,214,4,192,57,11,95,17,32,64,160,31,1,19,0,253,212,90,166,4,8,16,32,64,224,204,5,147,0,14,255,158,8,2,4,8,16,32,208,149,128,9,128,174,202,45,89,2,4,8,16,32,112,230,190,38,192,230,140,25,176,190,159,5,19,0,125,215,95,246,4,8,244,42,160,1,208,107,229,239,207,219,127,254,117,254,0,72,159,0,129,62,5,182,219,251,142,255,27,103,192,62,235,47,107,2,4,8,16,232,86,192,255,10,64,183,165,151,56,1,2,4,8,116,41,48,28,254,143,94,231,125,121,244,150,63,9,16,32,64,128,0,129,134,5,76,0,52,92,220,67,82,59,247,159,129,135,92,237,26,2,4,8,16,8,45,112,194,137,127,124,203,36,64,232,170,206,12,222,248,199,76,56,183,17,32,64,32,180,128,9,128,208,229,19,60,1,2,4,8,16,56,80,224,132,195,255,209,157,59,62,58,186,196,159,4,8,16,32,64,128,64,3,2,38,0,26,40,226,146,20,76,0,44,209,115,47,1,2,4,130,8,28,112,194,55,9,16,164,150,201,194,52,1,144,140,210,66,4,8,16,8,36,96,2,32,80,177,132,74,128,0,1,2,4,38,11,28,112,248,63,90,115,194,165,71,183,248,147,0,1,2,4,8,16,8,36,96,2,32,80,177,114,132,106,2,32,135,170,53,9,16,32,80,137,192,140,19,189,73,128,74,106,151,61,12,19,0,217,137,109,64,128,0,129,10,5,76,0,84,88,20,33,17,32,64,128,0,129,197,2,51,14,255,71,123,46,184,245,104,9,127,18,32,64,128,0,1,2,21,10,152,0,168,176,40,107,134,100,2,96,77,109,123,17,32,64,96,37,129,4,39,120,147,0,43,213,170,216,54,38,0,138,209,219,152,0,1,2,5,5,76,0,20,196,183,53,1,2,4,8,16,72,46,144,224,240,127,20,83,194,165,142,150,244,39,1,2,4,8,16,32,80,80,192,4,64,65,252,26,182,54,1,80,67,21,196,64,128,0,129,68,2,25,78,236,38,1,18,213,166,186,101,76,0,84,87,18,1,17,32,64,96,5,1,19,0,43,32,219,130,0,1,2,4,8,100,23,200,112,248,63,138,57,227,210,71,91,248,147,0,1,2,4,8,16,88,65,192,4,192,10,200,53,111,97,2,160,230,234,136,141,0,1,2,7,10,172,112,66,55,9,112,96,45,194,92,102,2,32,76,169,4,74,128,0,129,132,2,38,0,18,98,90,138,0,1,2,4,8,172,46,176,194,225,255,40,167,21,183,58,218,210,159,4,8,16,32,64,128,64,66,1,19,0,9,49,35,46,101,2,32,98,213,196,76,128,0,129,251,5,10,156,200,77,2,180,242,244,153,0,104,165,146,242,32,64,128,192,20,1,19,0,83,180,92,75,128,0,1,2,4,106,17,40,112,248,63,74,189,224,214,71,33,248,147,0,1,2,4,8,16,152,33,96,2,96,6,90,75,183,152,0,104,169,154,114,33,64,160,27,129,10,78,224,38,1,162,63,109,38,0,162,87,80,252,4,8,16,152,35,96,2,96,142,154,123,8,16,32,64,128,64,41,129,10,14,255,71,169,87,20,202,81,72,254,36,64,128,0,1,2,4,118,8,152,0,216,129,211,195,71,38,0,122,168,178,28,9,16,104,70,160,194,19,183,73,128,168,79,151,9,128,168,149,19,55,1,2,4,150,8,152,0,88,162,231,94,2,4,8,16,32,176,150,64,133,135,255,163,212,43,14,237,40,68,127,18,32,64,128,0,1,2,131,128,9,128,206,31,3,19,0,157,63,0,210,39,64,32,134,64,128,19,182,73,128,24,143,210,185,40,77,0,156,179,240,21,1,2,4,250,17,48,1,208,79,173,101,74,128,0,1,2,17,5,2,28,254,143,88,3,133,122,20,178,63,9,16,32,64,128,64,87,2,38,0,186,42,247,197,201,154,0,184,216,196,59,4,8,16,168,70,32,224,137,218,36,64,53,79,207,158,64,76,0,236,1,242,49,1,2,4,154,20,48,1,208,100,89,37,69,128,0,1,2,225,5,2,30,254,143,204,3,135,126,148,130,63,9,16,32,64,128,64,147,2,38,0,154,44,235,225,73,153,0,56,220,202,149,4,8,16,88,77,160,129,19,180,73,128,213,158,150,153,27,153,0,152,9,231,54,2,4,8,132,22,48,1,16,186,124,130,39,64,128,0,129,230,4,26,56,252,31,213,164,161,84,142,82,242,39,1,2,4,8,16,8,45,96,2,32,116,249,150,7,111,2,96,185,161,21,8,16,32,144,76,160,193,19,179,73,128,100,79,71,226,133,76,0,36,6,181,28,1,2,4,66,8,152,0,8,81,38,65,18,32,64,128,64,243,2,13,30,254,143,106,214,112,106,71,41,250,147,0,1,2,4,8,132,16,48,1,16,162,76,249,130,52,1,144,207,214,202,4,8,16,56,88,160,131,19,178,73,128,131,159,134,149,46,52,1,176,18,180,109,8,16,32,80,149,128,9,128,170,202,33,24,2,4,8,16,232,78,160,131,195,255,81,77,59,74,245,40,101,127,18,32,64,128,0,129,170,4,76,0,84,85,142,245,131,49,1,176,190,185,29,9,16,32,112,86,160,195,19,177,73,128,179,213,47,252,133,9,128,194,5,176,61,1,2,4,138,8,152,0,40,194,110,83,2,4,8,16,232,94,160,195,195,255,81,205,59,78,253,136,192,159,4,8,16,32,64,160,136,128,9,128,34,236,245,108,106,2,160,158,90,136,132,0,129,142,4,156,128,207,152,4,40,253,188,155,0,40,93,1,251,19,32,64,160,132,128,9,128,18,234,246,36,64,128,0,129,126,5,28,254,207,214,30,197,89,10,95,16,32,64,128,0,129,85,4,76,0,172,194,92,239,38,38,0,234,173,141,200,8,16,104,80,192,137,247,162,162,154,4,184,136,100,165,55,76,0,172,4,109,27,2,4,8,84,37,96,2,160,170,114,8,134,0,1,2,4,154,21,112,248,63,181,180,104,78,165,241,1,1,2,4,8,16,72,42,96,2,32,41,103,188,197,76,0,196,171,153,136,9,16,8,40,224,132,187,183,104,38,1,246,18,37,190,192,4,64,98,80,203,17,32,64,32,132,128,9,128,16,101,18,36,1,2,4,8,132,21,112,248,63,184,116,168,14,166,114,33,1,2,4,8,16,152,37,96,2,96,22,91,59,55,153,0,104,167,150,50,33,64,160,66,1,39,218,201,69,49,9,48,153,108,230,13,38,0,102,194,185,141,0,1,2,161,5,76,0,132,46,159,224,9,16,32,64,160,90,1,135,255,217,165,65,55,155,206,141,4,8,16,32,64,96,167,128,9,128,157,60,237,127,104,2,160,253,26,203,144,0,129,2,2,78,176,139,209,77,2,44,38,220,179,128,9,128,61,64,62,38,64,128,64,147,2,38,0,154,44,171,164,8,16,32,64,160,152,128,195,127,50,122,148,201,40,45,68,128,0,1,2,4,238,19,48,1,208,249,131,96,2,160,243,7,64,250,4,8,164,21,112,98,77,235,57,172,102,18,32,57,233,253,11,154,0,200,37,107,93,2,4,8,212,44,96,2,160,230,234,136,141,0,1,2,4,226,8,56,252,103,171,21,218,108,180,22,38,64,128,0,129,206,4,76,0,116,86,240,227,233,154,0,56,46,226,123,2,4,8,204,16,112,66,157,129,54,237,22,147,0,211,188,246,95,109,2,96,191,145,43,8,16,32,208,158,128,9,128,246,106,42,35,2,4,8,16,88,83,192,225,127,53,109,212,171,81,219,136,0,1,2,4,26,21,48,1,208,104,97,15,77,203,4,192,161,82,174,35,64,128,192,9,2,78,164,39,160,228,125,203,36,64,42,95,19,0,169,36,173,67,128,0,129,72,2,38,0,34,85,75,172,4,8,16,32,80,143,128,195,127,177,90,160,47,70,111,99,2,4,8,16,8,46,96,2,32,120,1,151,134,111,2,96,169,160,251,9,16,232,82,192,9,180,120,217,77,2,44,45,129,9,128,165,130,238,39,64,128,64,68,1,19,0,17,171,38,102,2,4,8,16,40,39,224,240,95,206,254,216,206,74,113,12,196,183,4,8,16,32,64,96,143,128,9,128,61,64,173,127,108,2,160,245,10,203,143,0,129,164,2,78,156,73,57,83,44,102,18,96,174,162,9,128,185,114,238,35,64,128,64,100,1,19,0,145,171,39,118,2,4,8,16,88,79,192,225,127,61,235,137,59,41,205,68,48,151,19,32,64,128,64,183,2,38,0,186,45,253,247,18,55,1,208,249,3,32,125,2,4,14,19,112,194,60,204,169,224,85,38,1,166,226,155,0,152,42,230,122,2,4,8,180,32,96,2,160,133,42,202,129,0,1,2,4,242,9,56,252,231,179,77,188,178,82,37,6,181,28,1,2,4,8,52,39,96,2,160,185,146,78,75,200,4,192,52,47,87,19,32,208,153,128,19,101,184,130,155,4,56,180,100,38,0,14,149,114,29,1,2,4,90,18,48,1,208,82,53,229,66,128,0,1,2,233,4,28,254,211,89,174,188,146,210,173,12,110,59,2,4,8,16,8,35,96,2,32,76,169,242,4,106,2,32,143,171,85,9,16,8,46,224,4,25,188,128,103,206,152,4,216,87,66,19,0,251,132,124,78,128,0,129,22,5,76,0,180,88,85,57,17,32,64,128,192,124,1,135,255,249,118,149,221,169,148,149,21,68,56,4,8,16,32,80,92,192,4,64,241,18,148,13,192,4,64,89,127,187,19,32,80,153,128,19,99,101,5,89,30,142,73,128,211,12,77,0,156,38,227,125,2,4,8,180,44,96,2,160,229,234,202,141,0,1,2,4,14,23,112,248,63,220,42,216,149,74,27,172,96,194,37,64,128,0,129,108,2,38,0,178,209,198,88,216,4,64,140,58,137,146,0,129,204,2,78,136,153,129,203,47,111,18,224,120,13,76,0,28,23,241,61,1,2,4,122,16,48,1,208,67,149,229,72,128,0,1,2,167,11,56,252,159,110,211,216,39,74,221,88,65,165,67,128,0,1,2,147,5,76,0,76,38,107,235,6,19,0,109,213,83,54,4,8,76,20,112,34,156,8,22,255,114,147,0,71,53,52,1,112,36,225,79,2,4,8,244,36,96,2,160,167,106,203,149,0,1,2,4,206,9,56,252,159,179,232,236,43,165,239,172,224,210,37,64,128,0,129,179,2,38,0,206,82,244,249,133,9,128,62,235,46,107,2,221,11,56,1,122,4,134,127,0,55,93,255,18,188,235,228,187,127,254,1,16,32,208,175,128,9,128,126,107,47,115,2,4,8,244,41,224,240,223,103,221,79,200,218,163,112,2,138,183,8,16,32,64,160,105,1,19,0,77,151,119,127,114,38,0,246,27,185,130,0,129,134,4,156,248,26,42,102,154,84,198,71,162,207,73,0,19,0,105,158,32,171,16,32,64,32,150,128,9,128,88,245,18,45,1,2,4,8,204,21,112,248,159,43,215,252,125,30,141,230,75,44,65,2,4,8,16,184,95,192,4,64,231,143,130,9,128,206,31,0,233,19,232,69,192,9,175,151,74,207,206,179,191,73,0,19,0,179,31,22,55,18,32,64,32,176,128,9,128,192,197,19,58,1,2,4,8,28,32,224,240,127,0,146,75,70,1,143,138,231,128,0,1,2,4,90,23,48,1,208,122,133,247,228,103,2,96,15,144,143,9,16,136,45,224,68,23,187,126,5,162,239,103,18,192,4,64,129,199,203,150,4,8,16,40,46,96,2,160,120,9,4,64,128,0,1,2,89,4,28,254,179,176,246,176,168,71,167,135,42,203,145,0,1,2,125,10,152,0,232,179,238,103,179,54,1,112,150,194,23,4,8,180,36,224,4,215,82,53,139,228,210,254,36,128,9,128,34,15,150,77,9,16,32,80,88,192,4,64,225,2,216,158,0,1,2,4,18,11,56,252,39,6,237,119,57,143,82,191,181,151,57,1,2,4,90,21,48,1,208,106,101,15,204,203,4,192,129,80,46,35,64,32,134,128,19,91,140,58,5,138,178,221,73,0,19,0,129,30,67,161,18,32,64,32,153,128,9,128,100,148,22,34,64,128,0,129,162,2,14,255,69,249,91,222,220,163,213,114,117,229,70,128,0,129,190,4,76,0,244,85,239,139,178,53,1,112,17,137,55,8,16,136,40,224,132,22,177,106,161,98,110,111,18,192,4,64,168,7,80,176,4,8,16,72,36,96,2,32,17,164,101,8,16,32,64,160,144,128,195,127,33,248,254,182,245,168,245,87,115,25,19,32,64,160,53,1,19,0,173,85,116,98,62,38,0,38,130,185,156,0,129,186,4,156,200,234,170,71,7,209,180,51,9,96,2,160,131,199,85,138,4,8,16,184,72,192,4,192,69,36,222,32,64,128,0,129,16,2,14,255,33,202,212,98,144,30,189,22,171,42,39,2,4,8,244,33,96,2,160,143,58,159,154,165,9,128,83,105,124,64,128,64,205,2,78,96,53,87,167,139,216,226,79,2,152,0,232,226,65,149,36,1,2,4,142,9,152,0,56,6,226,91,2,4,8,16,168,92,192,225,191,242,2,245,19,158,71,177,159,90,203,148,0,1,2,173,8,152,0,104,165,146,51,243,48,1,48,19,206,109,4,8,148,17,112,226,42,227,110,215,83,5,226,78,2,152,0,56,181,168,62,32,64,128,64,195,2,38,0,26,46,174,212,8,16,32,208,148,128,195,127,83,229,108,41,25,143,102,75,213,148,11,1,2,4,218,22,48,1,208,118,125,247,102,103,2,96,47,145,11,8,16,168,65,192,9,171,134,42,136,97,135,64,188,73,0,19,0,59,202,233,35,2,4,8,52,43,96,2,160,217,210,74,140,0,1,2,141,8,56,252,55,82,200,246,211,240,168,182,95,99,25,18,32,64,32,186,128,9,128,232,21,92,24,191,9,128,133,128,110,39,64,32,175,128,19,85,94,95,171,39,23,136,51,9,96,2,32,121,241,45,72,128,0,129,0,2,38,0,2,20,73,136,4,8,16,232,82,192,225,191,203,178,183,144,180,71,183,133,42,202,129,0,1,2,109,10,152,0,104,179,174,7,103,101,2,224,96,42,23,18,32,176,166,128,19,212,154,218,246,202,32,80,255,36,128,9,128,12,101,183,36,1,2,4,170,23,48,1,80,125,137,4,72,128,0,129,206,4,28,254,59,43,120,187,233,122,148,219,173,173,204,8,16,32,16,85,192,4,64,212,202,37,138,219,4,64,34,72,203,16,32,144,70,192,137,41,141,163,85,170,17,168,119,18,192,4,64,53,15,137,64,8,16,32,176,162,128,9,128,21,177,109,69,128,0,1,2,59,4,28,254,119,224,248,40,178,128,71,59,114,245,196,78,128,0,129,182,4,76,0,180,85,207,201,217,152,0,152,76,230,6,2,4,114,8,56,33,229,80,181,102,69,2,245,77,2,152,0,168,232,241,16,10,1,2,4,86,19,48,1,176,26,181,141,8,16,32,64,224,68,1,135,255,19,89,188,217,158,128,71,189,189,154,202,136,0,1,2,209,4,76,0,68,171,88,226,120,77,0,36,6,181,28,1,2,211,4,156,136,166,121,185,58,188,64,61,147,0,38,0,194,63,76,18,32,64,128,192,12,1,19,0,51,208,220,66,128,0,1,2,9,4,28,254,19,32,90,34,162,128,71,63,98,213,196,76,128,0,129,54,4,76,0,180,81,199,217,89,152,0,152,77,231,70,2,4,150,8,56,1,45,209,115,111,3,2,229,39,1,76,0,52,240,24,73,129,0,1,2,147,5,76,0,76,38,115,3,1,2,4,8,44,18,112,248,95,196,231,230,118,4,252,85,104,167,150,50,33,64,128,64,20,1,19,0,81,42,149,41,78,19,0,153,96,45,75,128,192,201,2,78,60,39,187,120,183,91,129,114,147,0,38,0,186,125,232,36,78,128,64,215,2,38,0,186,46,191,228,9,16,32,176,162,128,195,255,138,216,182,138,36,224,175,70,164,106,137,149,0,1,2,177,5,76,0,196,174,223,226,232,77,0,44,38,180,0,1,2,135,8,56,225,28,162,228,154,142,5,214,159,4,48,1,208,241,227,38,117,2,4,58,22,48,1,208,113,241,165,78,128,0,129,85,4,28,254,87,97,182,73,124,1,127,85,226,215,80,6,4,8,16,168,93,192,4,64,237,21,202,28,159,9,128,204,192,150,39,208,187,128,19,77,239,79,128,252,39,10,172,55,9,96,2,96,98,105,92,78,128,0,129,38,4,76,0,52,81,70,73,16,32,64,160,66,1,135,255,10,139,34,164,8,2,254,234,68,168,146,24,9,16,32,16,83,192,4,64,204,186,37,139,218,4,64,50,74,11,17,32,112,190,128,19,204,249,26,190,38,48,89,32,255,36,128,9,128,201,69,113,3,1,2,4,26,16,48,1,208,64,17,165,64,128,0,129,170,4,28,254,171,42,135,96,226,10,248,171,20,183,118,34,39,64,128,64,173,2,38,0,106,173,204,74,113,153,0,88,9,218,54,4,122,17,112,98,233,165,210,242,92,73,32,223,36,128,9,128,149,74,104,27,2,4,8,84,37,96,2,160,170,114,8,134,0,1,2,129,5,28,254,3,23,79,232,53,11,248,171,85,115,117,196,70,128,0,129,88,2,38,0,98,213,43,121,180,38,0,146,147,90,144,64,159,2,78,40,125,214,93,214,171,9,164,159,4,48,1,176,90,241,108,68,128,0,129,138,4,76,0,84,84,12,161,16,32,64,32,164,128,195,127,200,178,9,58,158,128,191,106,241,106,38,98,2,4,8,212,38,96,2,160,182,138,172,28,143,9,128,149,193,109,71,160,53,1,39,146,214,42,42,159,202,5,210,77,2,152,0,168,188,212,194,35,64,128,64,22,1,19,0,89,88,45,74,128,0,129,14,4,28,254,59,40,178,20,107,20,240,87,175,198,170,136,137,0,1,2,49,4,76,0,196,168,83,182,40,77,0,100,163,181,48,129,182,5,156,64,218,174,175,236,170,23,88,62,9,96,2,160,250,34,11,144,0,1,2,25,4,76,0,100,64,181,36,1,2,4,154,22,112,248,111,186,188,146,139,35,224,175,98,156,90,137,148,0,1,2,181,8,152,0,168,165,18,133,226,48,1,80,8,222,182,4,162,10,56,113,68,173,156,184,27,21,152,63,9,96,2,160,209,71,66,90,4,8,16,216,41,96,2,96,39,143,15,9,16,32,64,224,172,128,195,255,89,10,95,16,168,73,192,95,205,154,170,33,22,2,4,8,212,45,96,2,160,238,250,100,143,206,4,64,118,98,27,16,104,67,192,9,163,141,58,202,162,89,129,233,147,0,38,0,154,125,24,36,70,128,0,129,29,2,38,0,118,224,248,136,0,1,2,4,6,1,135,127,143,1,129,16,2,254,170,134,40,147,32,9,16,32,80,84,192,4,64,81,254,242,155,155,0,40,95,3,17,16,168,90,192,137,162,234,242,8,142,192,113,129,195,39,1,76,0,28,183,243,61,1,2,4,122,16,48,1,208,67,149,229,72,128,0,129,57,2,14,255,115,212,220,67,160,184,128,191,186,197,75,32,0,2,4,8,84,43,96,2,160,218,210,172,19,152,9,128,117,156,237,66,32,156,128,19,68,184,146,9,152,192,249,2,251,39,1,76,0,156,239,229,107,2,4,8,244,34,96,2,160,151,74,203,147,0,1,2,135,10,56,252,31,42,229,58,2,85,11,248,171,92,117,121,4,71,128,0,129,34,2,38,0,138,176,215,179,169,9,128,122,106,33,18,2,85,8,56,49,84,81,6,65,16,72,37,112,250,36,128,9,128,84,198,214,33,64,128,64,36,1,19,0,145,170,37,86,2,4,8,228,20,112,248,207,169,107,109,2,197,4,252,213,46,70,111,99,2,4,8,84,39,96,2,160,186,146,172,27,144,9,128,117,189,237,70,160,90,1,39,132,106,75,35,48,2,41,4,46,158,4,48,1,144,194,213,26,4,8,16,136,38,96,2,32,90,197,196,75,128,0,129,212,2,14,255,169,69,173,71,160,74,1,127,213,171,44,139,160,8,16,32,176,170,128,9,128,85,185,235,219,204,4,64,125,53,17,17,129,85,5,156,8,86,229,182,25,129,210,2,231,38,1,76,0,148,174,133,253,9,16,32,80,66,96,51,28,0,157,1,75,200,87,178,231,15,86,18,135,48,138,9,248,47,192,98,244,229,55,254,161,247,188,231,190,32,182,247,55,1,252,249,189,127,14,123,113,24,139,223,75,174,242,188,248,217,190,228,146,31,42,255,67,72,4,37,5,190,247,80,148,140,192,222,5,5,222,93,112,111,91,151,22,48,1,80,186,2,133,247,247,211,191,112,1,108,79,160,144,192,143,92,114,201,217,195,95,161,16,108,75,128,64,65,129,119,191,251,71,206,92,114,201,15,23,140,192,214,4,8,16,32,80,66,192,255,13,128,18,234,246,36,64,128,64,65,129,241,240,239,69,128,0,129,119,189,203,20,128,167,128,0,1,2,189,9,152,0,232,173,226,199,242,53,1,112,12,196,183,4,26,23,248,237,151,94,234,55,255,141,215,88,122,4,166,8,140,77,128,75,47,253,109,83,110,113,45,1,2,4,8,4,22,48,1,16,184,120,66,39,64,128,192,20,129,241,240,239,69,128,0,129,227,2,239,124,231,111,61,254,150,239,9,16,32,64,160,81,1,19,0,141,22,246,208,180,76,0,28,42,229,58,2,177,5,126,231,123,223,235,55,255,177,75,40,122,2,89,5,198,38,192,123,223,251,59,178,238,97,113,2,4,8,16,40,47,96,2,160,124,13,68,64,128,0,129,172,2,227,225,223,139,0,1,2,251,4,222,241,142,223,178,239,18,159,19,32,64,128,64,112,1,19,0,193,11,184,52,124,19,0,75,5,221,79,160,110,129,223,253,190,247,249,205,127,221,37,18,29,129,170,4,198,38,192,251,222,247,187,170,138,73,48,4,8,16,32,144,78,192,4,64,58,75,43,17,32,64,160,42,129,241,240,239,69,128,0,129,169,2,111,127,251,111,158,122,139,235,9,16,32,64,32,136,128,9,128,32,133,202,21,166,9,128,92,178,214,37,80,86,224,247,190,255,253,126,243,95,182,4,118,39,16,90,96,108,2,188,255,253,191,39,116,14,130,39,64,128,0,129,139,5,76,0,92,108,226,29,2,4,8,132,22,24,15,255,94,4,8,16,88,42,240,182,183,253,166,165,75,184,159,0,1,2,4,42,19,48,1,80,89,65,214,14,199,4,192,218,226,246,35,144,87,224,247,127,224,3,126,243,159,151,216,234,4,186,18,24,155,0,31,248,192,239,235,42,103,201,18,32,64,160,101,1,19,0,45,87,87,110,4,8,116,37,48,30,254,189,8,16,32,144,90,224,173,111,253,141,169,151,180,30,1,2,4,8,20,18,48,1,80,8,190,150,109,77,0,212,82,9,113,16,88,38,240,7,63,248,65,191,249,95,70,232,110,2,4,118,8,140,77,128,15,126,240,15,236,184,194,71,4,8,16,32,16,65,192,4,64,132,42,137,145,0,1,2,59,4,198,195,191,23,1,2,4,114,11,188,229,45,191,33,247,22,214,39,64,128,0,129,204,2,38,0,50,3,215,190,188,9,128,218,43,36,62,2,187,5,254,240,135,62,228,55,255,187,137,124,74,128,64,66,129,177,9,240,161,15,253,161,132,43,90,138,0,1,2,4,214,20,48,1,176,166,182,189,8,16,32,144,80,96,60,252,123,17,32,64,96,109,129,55,191,249,215,175,189,165,253,8,16,32,64,32,145,128,9,128,68,144,81,151,49,1,16,181,114,226,238,93,224,143,94,118,153,223,252,247,254,16,200,159,64,65,129,177,9,112,217,101,127,164,96,4,182,38,64,128,0,129,57,2,38,0,230,168,185,135,0,1,2,5,5,198,195,191,23,1,2,4,74,11,188,233,77,191,174,116,8,246,39,64,128,0,129,137,2,38,0,38,130,181,118,185,9,128,214,42,42,159,214,5,254,248,229,151,251,205,127,235,69,150,31,129,64,2,99,19,224,242,203,255,88,160,136,133,74,128,0,129,190,5,76,0,244,93,127,217,19,32,16,72,96,60,252,123,17,32,64,160,54,129,55,190,241,215,214,22,146,120,8,16,32,64,224,20,1,19,0,167,192,244,242,182,9,128,94,42,45,207,232,2,127,242,195,31,246,155,255,232,69,20,63,129,134,5,198,38,192,135,63,252,39,26,206,80,106,4,8,16,104,67,192,4,64,27,117,148,5,1,2,13,11,140,135,127,47,2,4,8,212,46,240,134,55,252,154,218,67,20,31,1,2,4,186,23,48,1,208,249,35,96,2,160,243,7,64,250,213,11,252,233,43,174,240,155,255,234,171,36,64,2,4,142,4,198,38,192,21,87,252,169,163,111,253,73,128,0,1,2,149,9,152,0,168,172,32,194,33,64,128,192,145,192,120,248,247,34,64,128,64,52,129,215,191,254,87,71,11,89,188,4,8,16,232,70,192,4,64,55,165,62,57,81,19,0,39,187,120,151,64,105,129,63,123,229,149,126,243,95,186,8,246,39,64,96,182,192,216,4,184,242,202,63,51,251,126,55,18,32,64,128,64,30,1,19,0,121,92,173,74,128,0,129,217,2,227,225,223,139,0,1,2,209,5,94,247,186,95,21,61,5,241,19,32,64,160,57,1,19,0,205,149,116,90,66,38,0,166,121,185,154,64,110,129,63,255,145,143,248,205,127,110,100,235,19,32,176,154,192,216,4,248,200,71,254,220,106,251,217,136,0,1,2,4,118,11,152,0,216,237,227,83,2,4,8,172,38,48,30,254,189,8,16,32,208,154,192,107,95,251,43,91,75,73,62,4,8,16,8,43,96,2,32,108,233,210,4,110,2,32,141,163,85,8,44,21,248,139,87,93,229,55,255,75,17,221,79,128,64,181,2,99,19,224,170,171,254,66,181,241,9,140,0,1,2,189,8,152,0,232,165,210,242,36,64,160,90,129,241,240,239,69,128,0,129,214,5,94,243,154,95,209,122,138,242,35,64,128,64,245,2,38,0,170,47,81,222,0,77,0,228,245,181,58,129,125,2,127,249,163,31,245,155,255,125,72,62,39,64,160,25,129,177,9,240,209,143,254,165,102,242,145,8,1,2,4,162,9,152,0,136,86,49,241,18,32,208,140,192,120,248,247,34,64,128,64,111,2,175,126,245,47,239,45,101,249,18,32,64,160,26,1,19,0,213,148,162,76,32,38,0,202,184,219,149,192,95,253,216,199,252,230,223,99,64,128,64,183,2,99,19,224,99,31,251,43,221,230,47,113,2,4,8,148,18,48,1,80,74,222,190,4,8,116,43,48,30,254,189,8,16,32,208,187,192,171,94,245,203,122,39,144,63,1,2,4,86,23,48,1,176,58,121,93,27,154,0,168,171,30,162,105,95,224,175,95,125,181,223,252,183,95,102,25,18,32,112,160,192,216,4,184,250,234,191,118,224,213,46,35,64,128,0,129,165,2,38,0,150,10,186,159,0,1,2,7,10,140,135,127,47,2,4,8,16,184,80,224,149,175,252,165,23,190,225,59,2,4,8,16,200,38,96,2,32,27,109,140,133,77,0,196,168,147,40,227,11,252,205,107,174,241,155,255,248,101,148,1,1,2,153,4,198,38,192,53,215,252,141,76,171,91,150,0,1,2,4,142,4,76,0,28,73,248,147,0,1,2,153,4,198,195,191,23,1,2,4,8,236,22,120,197,43,126,201,238,11,124,74,128,0,1,2,139,5,76,0,44,38,140,189,128,9,128,216,245,19,125,253,2,127,251,227,31,247,155,255,250,203,36,66,2,4,42,17,24,155,0,31,255,248,223,170,36,26,97,16,32,64,160,61,1,19,0,237,213,84,70,4,8,84,34,48,30,254,189,8,16,32,64,96,154,192,203,95,254,139,166,221,224,106,2,4,8,16,56,88,192,4,192,193,84,109,94,104,2,160,205,186,202,170,188,192,223,253,196,39,252,230,191,124,25,68,64,128,64,80,129,177,9,240,137,79,252,157,160,209,11,155,0,1,2,245,10,152,0,168,183,54,34,35,64,32,168,192,120,248,247,34,64,128,0,129,101,2,47,123,217,47,88,182,128,187,9,16,32,64,224,34,1,19,0,23,145,244,245,134,9,128,190,234,45,219,252,2,127,255,218,107,253,230,63,63,179,29,8,16,232,68,96,108,2,92,123,237,223,235,36,91,105,18,32,64,32,191,128,9,128,252,198,118,32,64,160,19,129,241,240,239,69,128,0,1,2,105,5,94,250,210,159,159,118,65,171,17,32,64,160,99,1,19,0,29,23,127,76,221,4,64,231,15,128,244,147,9,252,195,235,174,243,155,255,100,154,22,34,64,128,192,133,2,99,19,224,186,235,254,193,133,111,250,142,0,1,2,4,38,11,152,0,152,76,230,6,2,4,8,92,40,48,30,254,189,8,16,32,64,32,175,192,75,94,242,243,242,110,96,117,2,4,8,116,32,96,2,160,131,34,239,74,209,4,192,46,29,159,17,216,47,240,143,175,191,222,111,254,247,51,185,130,0,1,2,73,4,198,38,192,245,215,255,163,36,107,89,132,0,1,2,61,10,152,0,232,177,234,114,38,64,32,137,192,120,248,247,34,64,128,0,129,117,5,94,252,226,159,187,238,134,118,35,64,128,64,67,2,38,0,26,42,230,156,84,76,0,204,81,115,15,129,51,103,254,233,39,63,233,55,255,30,4,2,4,8,20,18,24,155,0,159,252,228,63,41,180,187,109,9,16,32,16,87,192,4,64,220,218,137,156,0,129,66,2,227,225,223,139,0,1,2,4,202,10,188,232,69,63,167,108,0,118,39,64,128,64,64,1,19,0,1,139,150,50,100,19,0,41,53,173,213,131,192,63,191,225,6,191,249,239,161,208,114,36,64,32,132,192,216,4,184,225,134,127,22,34,86,65,18,32,64,160,6,1,19,0,53,84,65,12,4,8,132,16,24,15,255,94,4,8,16,32,80,151,192,11,95,248,179,235,10,72,52,4,8,16,168,88,192,4,64,197,197,89,35,52,19,0,107,40,219,163,5,129,127,121,227,141,126,243,223,66,33,229,64,128,64,147,2,99,19,224,198,27,255,69,147,185,73,138,0,1,2,41,5,76,0,164,212,180,22,1,2,77,10,140,135,127,47,2,4,8,16,168,91,224,5,47,248,89,117,7,40,58,2,4,8,84,32,96,2,160,130,34,148,12,193,4,64,73,125,123,71,16,248,215,159,250,148,223,252,71,40,148,24,9,16,32,48,8,140,77,128,79,125,234,95,177,32,64,128,0,129,83,4,76,0,156,2,227,109,2,4,8,140,135,127,47,2,4,8,16,136,37,240,252,231,255,140,88,1,139,150,0,1,2,43,10,152,0,88,17,187,198,173,76,0,212,88,21,49,213,32,240,111,63,253,105,191,249,175,161,16,98,32,64,128,192,12,129,177,9,240,233,79,255,155,25,119,186,133,0,1,2,109,11,152,0,104,187,190,178,35,64,96,134,192,120,248,247,34,64,128,0,129,216,2,207,123,222,79,139,157,128,232,9,16,32,144,65,192,4,64,6,212,72,75,154,0,136,84,45,177,174,33,240,239,111,186,201,111,254,215,128,182,7,1,2,4,86,16,24,155,0,55,221,244,239,86,216,201,22,4,8,16,136,33,96,2,32,70,157,68,73,128,192,10,2,227,225,223,139,0,1,2,4,218,18,120,238,115,127,74,91,9,201,134,0,1,2,11,4,76,0,44,192,107,225,86,19,0,45,84,81,14,41,4,254,227,103,62,227,55,255,41,32,173,65,128,0,129,10,5,198,38,192,103,62,243,31,42,140,76,72,4,8,16,88,87,192,4,192,186,222,118,35,64,160,66,129,241,240,239,69,128,0,1,2,109,11,60,231,57,63,169,237,4,101,71,128,0,129,3,4,76,0,28,128,212,242,37,38,0,90,174,174,220,14,17,120,207,103,63,235,55,255,135,64,185,134,0,1,2,13,8,140,77,128,207,126,246,63,53,144,137,20,8,16,32,48,79,192,4,192,60,55,119,17,32,208,128,192,120,248,247,34,64,128,0,129,190,4,158,253,236,31,236,43,97,217,18,32,64,224,60,1,19,0,231,97,244,248,165,9,128,30,171,46,231,81,224,210,155,111,246,155,127,143,2,1,2,4,58,21,24,155,0,55,223,124,73,167,217,75,155,0,129,158,5,76,0,244,92,125,185,19,232,84,96,60,252,123,17,32,64,128,64,223,2,207,122,214,187,250,6,144,61,1,2,93,10,152,0,232,178,236,231,146,54,1,112,206,194,87,125,8,188,239,115,159,243,155,255,62,74,45,75,2,4,8,236,21,24,155,0,159,251,220,123,247,94,231,2,2,4,8,180,34,96,2,160,149,74,202,131,0,129,189,2,227,225,223,139,0,1,2,4,8,156,47,240,204,103,190,227,252,111,125,77,128,0,129,166,5,76,0,52,93,222,253,201,153,0,216,111,228,138,54,4,62,240,249,207,251,205,127,27,165,148,5,1,2,4,146,11,140,77,128,207,127,254,253,201,215,181,32,1,2,4,106,19,48,1,80,91,69,196,67,128,64,114,129,241,240,239,69,128,0,1,2,4,118,9,60,227,25,111,219,245,177,207,8,16,32,208,132,128,9,128,38,202,56,63,9,19,0,243,237,220,25,67,224,67,183,220,226,55,255,49,74,37,74,2,4,8,20,23,24,155,0,183,220,242,193,226,113,8,128,0,1,2,185,4,76,0,228,146,181,46,1,2,197,5,198,195,191,23,1,2,4,8,16,152,34,240,244,167,191,101,202,229,174,37,64,128,64,40,1,19,0,161,202,149,62,88,19,0,233,77,173,88,135,192,229,183,222,234,55,255,117,148,66,20,4,8,16,8,39,48,54,1,110,189,245,178,112,113,11,152,0,1,2,251,4,76,0,236,19,242,57,1,2,225,4,198,195,191,23,1,2,4,8,16,88,34,240,180,167,189,105,201,237,238,37,64,128,64,149,2,38,0,170,44,203,122,65,153,0,88,207,218,78,235,8,92,113,219,109,126,243,191,14,181,93,8,16,32,208,188,192,216,4,184,237,182,15,55,159,167,4,9,16,232,71,192,4,64,63,181,150,41,129,230,5,198,195,191,23,1,2,4,8,16,72,41,240,212,167,190,33,229,114,214,34,64,128,64,81,1,19,0,69,249,203,111,110,2,160,124,13,68,144,70,224,35,183,223,238,55,255,105,40,173,66,128,0,1,2,199,4,198,38,192,237,183,95,121,236,93,223,18,32,64,32,158,128,9,128,120,53,19,49,1,2,199,4,198,195,191,23,1,2,4,8,16,200,41,240,148,167,188,46,231,242,214,38,64,128,192,42,2,38,0,86,97,174,119,19,19,0,245,214,70,100,135,9,124,244,142,59,252,230,255,48,42,87,17,32,64,128,192,66,129,177,9,112,199,29,87,45,92,197,237,4,8,16,40,39,96,2,160,156,189,157,9,16,88,40,48,30,254,189,8,16,32,64,128,192,154,2,79,126,242,107,214,220,206,94,4,8,16,72,42,96,2,32,41,103,188,197,76,0,196,171,153,136,191,39,112,245,157,119,250,205,191,135,129,0,1,2,4,138,8,140,77,128,59,239,252,88,145,189,109,74,128,0,129,37,2,38,0,150,232,185,151,0,129,34,2,227,225,223,139,0,1,2,4,8,148,20,120,210,147,94,85,114,123,123,19,32,64,96,150,128,9,128,89,108,237,220,100,2,160,157,90,246,146,201,199,191,240,5,191,249,239,165,216,242,36,64,128,64,229,2,99,19,224,11,95,184,166,242,40,133,71,128,0,129,115,2,38,0,206,89,248,138,0,129,202,5,198,195,191,23,1,2,4,8,16,168,73,224,137,79,124,69,77,225,136,133,0,1,2,59,5,76,0,236,228,105,255,67,19,0,237,215,184,149,12,175,253,226,23,253,230,191,149,98,202,131,0,1,2,141,9,140,77,128,47,126,241,19,141,101,37,29,2,4,90,20,48,1,208,98,85,229,68,160,49,129,241,240,239,69,128,0,1,2,4,106,22,120,194,19,94,86,115,120,98,35,64,128,192,125,2,38,0,58,127,16,76,0,116,254,0,4,72,255,250,187,238,242,155,255,0,117,18,34,1,2,4,8,156,57,51,54,1,238,186,235,58,20,4,8,16,168,86,192,4,64,181,165,17,24,1,2,227,225,223,139,0,1,2,4,8,68,18,120,252,227,95,18,41,92,177,18,32,208,153,128,9,128,206,10,126,60,93,19,0,199,69,124,95,139,192,13,95,250,146,223,252,215,82,12,113,16,32,64,128,192,36,129,177,9,240,165,47,125,114,210,61,46,38,64,128,192,26,2,38,0,214,80,182,7,1,2,147,4,198,195,191,23,1,2,4,8,16,136,44,240,184,199,189,40,114,248,98,39,64,160,81,1,19,0,141,22,246,208,180,76,0,28,42,229,186,181,4,62,245,229,47,251,205,255,90,216,246,33,64,128,0,129,172,2,99,19,224,203,95,190,49,235,30,22,39,64,128,192,20,1,19,0,83,180,92,75,128,64,86,129,241,240,239,69,128,0,1,2,4,90,18,120,236,99,95,208,82,58,114,33,64,32,184,128,9,128,224,5,92,26,190,9,128,165,130,238,79,37,112,211,221,119,251,205,127,42,76,235,16,32,64,128,64,85,2,99,19,224,238,187,63,93,85,76,130,33,64,160,79,1,19,0,125,214,93,214,4,170,18,24,15,255,94,4,8,16,32,64,160,101,129,199,60,230,121,45,167,39,55,2,4,130,8,152,0,8,82,168,92,97,154,0,200,37,107,221,67,5,62,251,149,175,248,205,255,161,88,174,35,64,128,0,129,208,2,99,19,224,43,95,249,76,232,28,4,79,128,64,108,1,19,0,177,235,39,122,2,161,5,198,195,191,23,1,2,4,8,16,232,73,224,209,143,126,78,79,233,202,149,0,129,202,4,76,0,84,86,144,181,195,49,1,176,182,184,253,142,4,62,119,207,61,126,243,127,132,225,79,2,4,8,16,232,74,96,108,2,220,115,207,205,93,229,44,89,2,4,234,16,48,1,80,71,29,68,65,160,43,129,241,240,239,69,128,0,1,2,4,122,22,120,212,163,158,213,115,250,114,39,64,160,144,128,9,128,66,240,181,108,107,2,160,150,74,244,19,199,45,95,253,170,223,252,247,83,110,153,18,32,64,128,192,14,129,177,9,240,213,175,126,126,199,21,62,34,64,128,64,90,1,19,0,105,61,173,70,128,192,14,129,241,240,239,69,128,0,1,2,4,8,156,19,120,228,35,159,113,238,27,95,17,32,64,32,179,128,9,128,204,192,181,47,111,2,160,246,10,181,19,223,109,247,222,235,55,255,237,148,83,38,4,8,16,32,144,80,96,108,2,220,123,239,173,9,87,180,20,1,2,4,78,22,48,1,112,178,139,119,9,16,72,40,48,30,254,189,8,16,32,64,128,0,129,211,5,30,241,136,167,157,254,161,79,8,16,32,144,72,192,4,64,34,200,168,203,152,0,136,90,185,56,113,223,241,181,175,249,205,127,156,114,137,148,0,1,2,4,10,10,140,77,128,175,125,237,246,130,17,216,154,0,129,214,5,76,0,180,94,97,249,17,40,40,48,30,254,189,8,16,32,64,128,0,129,195,5,30,254,240,167,28,126,177,43,9,16,32,48,81,192,4,192,68,176,214,46,55,1,208,90,69,235,201,231,11,95,255,186,223,252,215,83,14,145,16,32,64,128,64,32,129,177,9,240,245,175,223,25,40,98,161,18,32,16,69,192,4,64,148,74,137,147,64,32,129,241,240,239,69,128,0,1,2,4,8,204,23,120,216,195,158,52,255,102,119,18,32,64,224,20,1,19,0,167,192,244,242,182,9,128,94,42,189,94,158,119,125,227,27,126,243,191,30,183,157,8,16,32,64,160,97,129,177,9,240,141,111,124,177,225,12,165,70,128,192,218,2,38,0,214,22,183,31,129,134,5,198,195,191,23,1,2,4,8,16,32,144,78,224,161,15,125,66,186,197,172,68,128,64,247,2,38,0,58,127,4,76,0,116,254,0,36,76,255,203,223,252,166,223,252,39,244,180,20,1,2,4,8,16,56,18,24,155,0,223,252,230,151,142,190,245,39,1,2,4,102,11,152,0,152,77,231,70,2,4,142,4,198,195,191,23,1,2,4,8,16,32,144,79,224,33,15,121,92,190,197,173,76,128,64,55,2,38,0,186,41,245,201,137,154,0,56,217,197,187,135,11,124,229,91,223,242,155,255,195,185,92,73,128,0,1,2,4,102,11,140,77,128,111,125,235,238,217,247,187,145,0,1,2,38,0,60,3,4,8,204,22,24,15,255,94,4,8,16,32,64,128,192,122,2,15,126,240,99,214,219,204,78,4,8,52,39,96,2,160,185,146,78,75,200,4,192,52,47,87,159,19,248,234,183,191,237,55,255,231,56,124,69,128,0,1,2,4,86,19,24,155,0,223,254,246,61,171,237,103,35,2,4,218,17,48,1,208,78,45,101,66,96,53,129,241,240,239,69,128,0,1,2,4,8,148,19,120,208,131,30,85,110,115,59,19,32,16,86,192,4,64,216,210,165,9,220,4,64,26,199,158,86,249,218,119,190,227,55,255,61,21,92,174,4,8,16,32,80,173,192,216,4,248,206,119,238,173,54,62,129,17,32,80,159,128,9,128,250,106,34,34,2,213,10,140,135,127,47,2,4,8,16,32,64,160,30,129,7,62,240,17,245,4,35,18,2,4,170,23,48,1,80,125,137,242,6,104,2,32,175,111,75,171,127,227,187,223,245,155,255,150,10,42,23,2,4,8,16,104,70,96,108,2,124,247,187,95,111,38,31,137,16,32,144,79,192,4,64,62,91,43,19,104,70,96,60,252,123,17,32,64,128,0,1,2,245,10,60,224,1,15,171,55,56,145,253,255,237,221,5,184,44,199,113,6,80,145,227,56,204,204,204,204,204,204,204,204,204,12,14,51,51,51,51,51,51,51,51,51,39,118,28,65,165,86,146,245,174,222,91,152,217,237,153,105,56,250,62,71,247,237,206,118,87,157,234,181,211,191,174,19,2,4,170,17,240,27,0,213,140,98,155,66,252,6,192,54,238,45,237,250,208,219,111,247,79,254,91,26,152,90,9,16,32,64,96,88,129,93,8,112,251,237,15,25,182,127,141,19,32,112,90,192,111,0,156,54,242,4,129,97,5,118,151,127,127,17,32,64,128,0,1,2,237,8,220,118,219,131,218,41,86,165,4,8,172,46,224,55,0,86,39,175,107,67,191,1,80,215,60,106,170,230,97,119,220,225,159,252,215,52,16,181,16,32,64,128,0,129,137,2,187,16,224,142,59,252,191,236,157,200,229,49,2,67,9,248,13,128,161,198,173,89,2,211,4,118,151,127,127,17,32,64,128,0,1,2,237,10,220,122,235,3,219,45,94,229,4,8,44,38,224,55,0,22,163,109,99,97,191,1,208,198,156,214,172,242,246,59,239,244,79,254,215,4,183,23,1,2,4,8,16,88,72,96,23,2,220,121,167,255,67,190,11,241,90,150,64,147,2,126,3,160,201,177,41,154,192,50,2,187,203,191,191,8,16,32,64,128,0,129,126,4,110,185,229,1,253,52,163,19,2,4,46,22,240,27,0,23,19,182,189,128,223,0,104,123,126,37,171,191,243,174,187,252,147,255,146,160,214,34,64,128,0,1,2,149,8,236,66,128,187,238,242,95,239,171,100,28,202,32,176,169,128,223,0,216,148,223,230,4,234,16,216,93,254,253,69,128,0,1,2,4,8,244,43,112,243,205,183,246,219,156,206,8,16,152,44,224,55,0,38,83,245,249,160,223,0,232,115,174,115,186,138,8,255,228,127,14,152,103,9,16,32,64,128,64,163,2,187,16,32,66,232,223,232,248,148,77,160,136,128,0,160,8,163,69,8,180,41,144,151,127,25,80,155,163,83,53,1,2,4,8,16,56,83,224,230,252,156,255,248,63,19,207,199,8,52,47,32,0,104,126,132,26,32,112,158,128,187,255,121,110,62,69,128,0,1,2,4,218,23,16,2,180,63,195,139,58,144,0,93,196,215,246,135,5,0,109,207,79,245,4,206,18,112,249,63,139,205,135,8,16,32,64,128,64,71,2,66,128,142,134,57,183,21,1,192,92,177,142,158,23,0,116,52,76,173,16,152,34,224,242,63,69,201,51,4,8,16,32,64,96,4,1,33,192,8,83,222,211,163,0,96,15,202,40,47,9,0,70,153,180,62,9,164,128,203,191,99,64,128,0,1,2,4,8,220,95,64,8,112,127,143,33,254,36,0,24,98,204,251,155,20,0,236,119,241,42,129,238,4,92,254,187,27,169,134,8,16,32,64,128,64,33,1,33,64,33,200,86,150,17,0,180,50,169,5,234,20,0,44,128,106,73,2,181,9,184,252,215,54,17,245,16,32,64,128,0,129,218,4,132,0,181,77,100,193,122,4,0,11,226,214,190,180,0,160,246,9,169,143,192,133,2,46,255,23,2,250,56,1,2,4,8,16,24,70,64,8,48,200,168,5,0,131,12,122,95,155,2,128,125,42,94,35,208,137,128,203,127,39,131,212,6,1,2,4,8,16,88,77,64,8,176,26,245,118,27,9,0,182,179,223,124,103,1,192,230,35,80,0,129,101,4,92,254,151,113,181,42,1,2,4,8,16,232,95,64,8,208,249,140,5,0,157,15,248,88,123,2,128,99,58,222,35,208,168,128,203,127,163,131,83,54,1,2,4,8,16,168,70,64,8,80,205,40,202,23,34,0,40,111,218,204,138,2,128,102,70,165,80,2,211,4,92,254,167,57,121,138,0,1,2,4,8,16,56,37,32,4,56,37,212,232,251,2,128,70,7,87,162,108,1,64,9,69,107,16,168,68,192,229,191,146,65,40,131,0,1,2,4,8,116,35,32,4,232,102,148,215,26,17,0,92,179,24,238,39,1,192,112,35,215,112,175,2,46,255,189,78,86,95,4,8,16,32,64,96,107,1,33,192,214,19,40,188,191,0,160,48,104,75,203,9,0,90,154,150,90,9,28,16,112,249,63,0,227,101,2,4,8,16,32,64,160,144,128,16,160,16,100,13,203,8,0,106,152,194,70,53,8,0,54,130,183,45,129,82,2,46,255,165,36,173,67,128,0,1,2,4,8,28,23,16,2,28,247,105,230,93,1,64,51,163,42,95,168,0,160,188,169,21,9,172,38,224,242,191,26,181,141,8,16,32,64,128,0,129,187,5,132,0,29,28,4,1,64,7,67,60,183,5,1,192,185,114,62,71,96,99,1,151,255,141,7,96,123,2,4,8,16,32,48,172,128,16,160,241,209,11,0,26,31,224,37,229,11,0,46,209,243,89,2,27,9,184,252,111,4,111,91,2,4,8,16,32,64,224,94,1,33,64,195,71,65,0,208,240,240,46,45,93,0,112,169,160,207,19,88,89,192,229,127,101,112,219,17,32,64,128,0,1,2,7,4,132,0,7,96,106,127,89,0,80,251,132,22,172,79,0,176,32,174,165,9,148,22,112,249,47,45,106,61,2,4,8,16,32,64,224,50,1,33,192,101,126,155,124,90,0,176,9,123,29,155,10,0,234,152,131,42,8,156,20,112,249,63,73,228,1,2,4,8,16,32,64,96,19,1,33,192,38,236,231,111,42,0,56,223,174,249,79,10,0,154,31,161,6,70,16,112,249,31,97,202,122,36,64,128,0,1,2,45,11,8,1,26,154,158,0,160,161,97,149,46,85,0,80,90,212,122,4,10,11,184,252,23,6,181,28,1,2,4,8,16,32,176,144,128,16,96,33,216,210,203,10,0,74,139,54,180,158,0,160,161,97,41,117,60,1,151,255,241,102,174,99,2,4,8,16,32,208,182,128,16,160,129,249,9,0,26,24,210,82,37,10,0,150,146,181,46,129,11,5,92,254,47,4,244,113,2,4,8,16,32,64,96,35,1,33,192,70,240,83,183,21,0,76,149,234,240,57,1,64,135,67,213,82,251,2,46,255,237,207,80,7,4,8,16,32,64,96,108,1,33,64,197,243,23,0,84,60,156,165,75,19,0,44,45,108,125,2,51,5,92,254,103,130,121,156,0,1,2,4,8,16,168,84,64,8,80,233,96,4,0,149,14,102,141,178,4,0,107,40,219,131,192,68,1,151,255,137,80,30,35,64,128,0,1,2,4,26,17,16,2,84,56,40,1,64,133,67,89,171,36,1,192,90,210,246,33,112,66,192,229,255,4,144,183,9,16,32,64,128,0,129,70,5,132,0,149,13,78,0,80,217,64,214,44,71,0,176,166,182,189,8,28,16,112,249,63,0,227,101,2,4,8,16,32,64,160,19,1,33,64,69,131,20,0,84,52,140,181,75,17,0,172,45,110,63,2,215,9,184,252,95,7,226,143,4,8,16,32,64,128,64,167,2,66,128,74,6,43,0,168,100,16,91,148,33,0,216,66,221,158,4,238,21,112,249,119,20,8,16,32,64,128,0,129,177,4,132,0,21,204,91,0,80,193,16,182,42,65,0,176,149,188,125,135,23,112,249,31,254,8,0,32,64,128,0,1,2,131,10,8,1,54,30,188,0,96,227,1,108,185,189,0,96,75,125,123,15,43,224,242,63,236,232,53,78,128,0,1,2,4,8,220,45,32,4,216,240,32,8,0,54,196,223,122,107,1,192,214,19,176,255,112,2,46,255,195,141,92,195,4,8,16,32,64,128,192,94,1,33,192,94,150,229,95,20,0,44,111,92,237,14,2,128,106,71,163,176,30,5,92,254,123,156,170,158,8,16,32,64,128,0,129,243,5,132,0,231,219,157,253,73,1,192,217,116,237,127,80,0,208,254,12,117,208,136,128,203,127,35,131,82,38,1,2,4,8,16,32,176,178,128,16,96,101,112,1,192,202,224,53,109,39,0,168,105,26,106,233,86,192,229,191,219,209,106,140,0,1,2,4,8,16,40,34,32,4,40,194,56,109,17,1,192,52,167,46,159,18,0,116,57,86,77,213,36,224,242,95,211,52,212,66,128,0,1,2,4,8,212,43,32,4,88,105,54,2,128,149,160,107,220,70,0,80,227,84,212,212,141,128,203,127,55,163,212,8,1,2,4,8,16,32,176,138,128,16,96,5,102,1,192,10,200,181,110,33,0,168,117,50,234,106,94,192,229,191,249,17,106,128,0,1,2,4,8,16,216,68,64,8,176,48,187,0,96,97,224,154,151,23,0,212,60,29,181,53,43,224,242,223,236,232,20,78,128,0,1,2,4,8,84,33,32,4,88,112,12,2,128,5,113,107,95,90,0,80,251,132,212,215,156,128,203,127,115,35,83,48,1,2,4,8,16,32,80,165,128,16,96,161,177,8,0,22,130,109,97,89,1,64,11,83,82,99,51,2,46,255,205,140,74,161,4,8,16,32,64,128,64,19,2,66,128,5,198,36,0,88,0,181,149,37,5,0,173,76,74,157,213,11,184,252,87,63,34,5,18,32,64,128,0,1,2,77,10,8,1,10,143,77,0,80,24,180,165,229,4,0,45,77,75,173,213,10,184,252,87,59,26,133,17,32,64,128,0,1,2,93,8,8,1,10,142,81,0,80,16,179,181,165,4,0,173,77,76,189,213,9,184,252,87,55,18,5,17,32,64,128,0,1,2,93,10,8,1,10,141,85,0,80,8,178,197,101,4,0,45,78,77,205,213,8,184,252,87,51,10,133,16,32,64,128,0,1,2,67,8,8,1,10,140,89,0,80,0,177,213,37,4,0,173,78,78,221,155,11,184,252,111,62,2,5,16,32,64,128,0,1,2,67,10,8,1,46,28,187,0,224,66,192,150,63,46,0,104,121,122,106,223,76,192,229,127,51,122,27,19,32,64,128,0,1,2,4,82,64,8,112,193,49,16,0,92,128,215,250,71,5,0,173,79,80,253,171,11,184,252,175,78,110,67,2,4,8,16,32,64,128,192,30,1,33,192,30,148,41,47,9,0,166,40,117,250,140,0,160,211,193,106,107,25,1,151,255,101,92,173,74,128,0,1,2,4,8,16,56,79,64,8,112,134,155,0,224,12,180,94,62,34,0,232,101,146,250,88,92,192,229,127,113,98,27,16,32,64,128,0,1,2,4,206,16,16,2,204,68,19,0,204,4,235,233,113,1,64,79,211,212,203,98,2,46,255,139,209,90,152,0,1,2,4,8,16,32,80,64,64,8,48,3,81,0,48,3,171,183,71,5,0,189,77,84,63,197,5,92,254,139,147,90,144,0,1,2,4,8,16,32,176,128,128,16,96,34,170,0,96,34,84,143,143,9,0,122,156,170,158,138,9,184,252,23,163,180,16,1,2,4,8,16,32,64,96,5,1,33,192,4,100,1,192,4,164,94,31,17,0,244,58,89,125,93,44,224,242,127,49,161,5,8,16,32,64,128,0,1,2,27,8,8,1,78,160,11,0,78,0,245,252,182,0,160,231,233,234,237,108,1,151,255,179,233,124,144,0,1,2,4,8,16,32,80,129,128,16,224,200,16,4,0,71,112,122,127,75,0,208,251,132,245,55,91,192,229,127,54,153,15,16,32,64,128,0,1,2,4,42,20,16,2,28,24,138,0,224,0,204,8,47,11,0,70,152,178,30,39,11,184,252,79,166,242,32,1,2,4,8,16,32,64,160,1,1,33,192,158,33,9,0,246,160,140,242,146,0,96,148,73,235,243,164,128,203,255,73,34,15,16,32,64,128,0,1,2,4,26,20,16,2,92,55,52,1,192,117,32,35,253,81,0,48,210,180,245,122,80,192,229,255,32,141,55,8,16,32,64,128,0,1,2,29,8,8,1,174,12,81,0,112,5,99,180,31,5,0,163,77,92,191,55,8,184,252,223,64,226,5,2,4,8,16,32,64,128,64,135,2,66,128,123,135,42,0,232,240,116,79,109,73,0,48,85,202,115,93,10,184,252,119,57,86,77,17,32,64,128,0,1,2,4,14,8,8,1,18,70,0,112,224,116,140,240,178,0,96,132,41,235,113,175,128,203,255,94,22,47,18,32,64,128,0,1,2,4,58,23,24,62,4,16,0,116,126,194,143,181,39,0,56,166,227,189,110,5,92,254,187,29,173,198,8,16,32,64,128,0,1,2,19,4,134,14,1,4,0,19,78,72,175,143,8,0,122,157,172,190,14,10,184,252,31,164,241,6,1,2,4,8,16,32,64,96,32,129,97,67,0,1,192,64,167,252,250,86,5,0,215,139,248,115,215,2,46,255,93,143,87,115,4,8,16,32,64,128,0,129,153,2,67,134,0,2,128,153,167,164,167,199,5,0,61,77,83,47,71,5,92,254,143,242,120,147,0,1,2,4,8,16,32,48,168,192,112,33,128,0,96,208,147,190,107,91,0,48,240,240,71,106,221,229,127,164,105,235,149,0,1,2,4,8,16,32,48,87,96,168,16,64,0,48,247,120,116,244,188,0,160,163,97,106,101,191,128,203,255,126,23,175,18,32,64,128,0,1,2,4,8,92,21,24,38,4,16,0,92,29,251,96,63,11,0,6,27,248,104,237,186,252,143,54,113,253,18,32,64,128,0,1,2,4,46,17,24,34,4,16,0,92,114,68,26,255,172,0,160,241,1,42,255,176,128,203,255,97,27,239,16,32,64,128,0,1,2,4,8,28,18,232,62,4,16,0,28,26,253,0,175,11,0,6,24,242,136,45,186,252,143,56,117,61,19,32,64,128,0,1,2,4,74,9,116,29,2,8,0,74,29,147,6,215,17,0,52,56,52,37,31,23,112,249,63,238,227,93,2,4,8,16,32,64,128,0,129,41,2,221,134,0,2,128,41,227,239,244,25,1,64,167,131,29,181,45,151,255,81,39,175,111,2,4,8,16,32,64,128,192,18,2,93,134,0,2,128,37,142,74,35,107,10,0,26,25,148,50,79,11,184,252,159,54,242,4,1,2,4,8,16,32,64,128,192,92,129,238,66,0,1,192,220,35,208,209,243,2,128,142,134,57,114,43,46,255,35,79,95,239,4,8,16,32,64,128,0,129,165,5,186,10,1,4,0,75,31,151,138,215,23,0,84,60,28,165,77,19,112,249,159,230,228,41,2,4,8,16,32,64,128,0,129,75,4,186,9,1,4,0,151,28,131,198,63,43,0,104,124,128,163,151,239,242,63,250,9,208,63,1,2,4,8,16,32,64,96,77,129,46,66,0,1,192,154,71,166,178,189,4,0,149,13,68,57,211,5,92,254,167,91,121,146,0,1,2,4,8,16,32,64,160,148,64,243,33,128,0,160,212,81,104,112,29,1,64,131,67,83,242,77,55,185,252,59,5,4,8,16,32,64,128,0,1,2,219,9,52,29,2,8,0,182,59,56,155,239,44,0,216,124,4,10,152,43,224,242,63,87,204,243,4,8,16,32,64,128,0,1,2,229,5,154,13,1,4,0,229,15,67,51,43,10,0,154,25,149,66,119,2,46,255,206,1,1,2,4,8,16,32,64,128,64,61,2,77,134,0,2,128,122,14,208,234,149,8,0,86,39,183,225,185,2,46,255,231,202,249,28,1,2,4,8,16,32,64,128,192,114,2,205,133,0,2,128,229,14,67,245,43,11,0,170,31,145,2,119,2,46,255,206,1,1,2,4,8,16,32,64,128,64,189,2,77,133,0,2,128,122,15,210,226,149,9,0,22,39,182,193,165,2,46,255,151,10,250,60,1,2,4,8,16,32,64,128,192,242,2,205,132,0,2,128,229,15,67,181,59,8,0,170,29,141,194,118,2,46,255,206,1,1,2,4,8,16,32,64,128,64,59,2,77,132,0,2,128,118,14,84,241,74,5,0,197,73,45,88,74,192,229,191,148,164,117,8,16,32,64,128,0,1,2,4,214,19,168,62,4,16,0,172,119,24,170,219,73,0,80,221,72,20,180,19,112,249,119,14,8,16,32,64,128,0,1,2,4,218,21,168,58,4,16,0,180,123,176,46,174,92,0,112,49,161,5,74,11,184,252,151,22,181,30,1,2,4,8,16,32,64,128,192,250,2,213,134,0,2,128,245,15,67,53,59,10,0,170,25,133,66,118,2,46,255,206,1,1,2,4,8,16,32,64,128,64,63,2,85,134,0,2,128,126,14,216,236,78,4,0,179,201,124,96,41,1,151,255,165,100,173,75,128,0,1,2,4,8,16,32,176,157,64,117,33,128,0,96,187,195,176,249,206,2,128,205,71,160,128,157,128,203,191,115,64,128,0,1,2,4,8,16,32,208,175,64,85,33,128,0,160,223,131,118,178,51,1,192,73,34,15,44,45,224,242,191,180,176,245,9,16,32,64,128,0,1,2,4,182,23,168,38,4,16,0,108,127,24,54,171,64,0,176,25,189,141,119,2,46,255,206,1,1,2,4,8,16,32,64,128,192,56,2,85,132,0,2,128,113,14,220,13,157,10,0,110,32,241,194,90,2,46,255,107,73,219,135,0,1,2,4,8,16,32,64,160,30,129,205,67,0,1,64,61,135,97,245,74,4,0,171,147,219,112,39,224,242,239,28,16,32,64,128,0,1,2,4,8,140,43,176,105,8,32,0,24,247,224,221,36,0,24,120,248,91,181,238,242,191,149,188,125,9,16,32,64,128,0,1,2,4,234,17,216,44,4,16,0,212,115,8,86,175,68,0,176,58,249,216,27,186,252,143,61,127,221,19,32,64,128,0,1,2,4,8,92,21,216,36,4,16,0,92,29,193,96,63,11,0,6,27,248,150,237,186,252,111,169,111,111,2,4,8,16,32,64,128,0,129,58,5,86,15,1,4,0,117,30,132,85,170,18,0,172,194,108,19,151,127,103,128,0,1,2,4,8,16,32,64,128,192,33,129,85,67,0,1,192,161,49,12,240,186,0,96,128,33,111,221,162,203,255,214,19,176,63,1,2,4,8,16,32,64,128,64,253,2,171,133,0,2,128,250,15,195,98,21,10,0,22,163,181,240,78,192,229,223,57,32,64,128,0,1,2,4,8,16,32,48,85,96,149,16,64,0,48,117,28,29,62,39,0,232,112,168,181,180,228,242,95,203,36,212,65,128,0,1,2,4,8,16,32,208,142,192,226,33,128,0,160,157,195,80,188,82,1,64,113,82,11,238,4,92,254,157,3,2,4,8,16,32,64,128,0,1,2,231,10,44,26,2,8,0,206,29,75,7,159,19,0,116,48,196,218,90,112,249,175,109,34,234,33,64,128,0,1,2,4,8,16,104,79,96,177,16,64,0,208,222,97,40,86,177,0,160,24,165,133,118,2,46,255,206,1,1,2,4,8,16,32,64,128,0,129,82,2,139,132,0,2,128,82,227,105,112,29,1,64,131,67,171,181,100,151,255,90,39,163,46,2,4,8,16,32,64,128,0,129,118,5,138,135,0,2,128,118,15,195,197,149,11,0,46,38,180,192,78,192,229,223,57,32,64,128,0,1,2,4,8,16,32,176,148,64,209,16,64,0,176,212,152,26,88,87,0,208,192,144,106,47,209,229,191,246,9,169,143,0,1,2,4,8,16,32,64,160,125,129,98,33,128,0,160,253,195,112,118,7,2,128,179,233,124,112,39,224,242,239,28,16,32,64,128,0,1,2,4,8,16,88,75,160,72,8,32,0,88,107,92,21,238,35,0,168,112,40,173,148,228,242,223,202,164,212,73,128,0,1,2,4,8,16,32,208,143,192,197,33,128,0,160,159,195,48,187,19,1,192,108,50,31,216,9,184,252,59,7,4,8,16,32,64,128,0,1,2,4,182,18,184,40,4,16,0,108,53,182,10,246,21,0,84,48,132,214,74,112,249,111,109,98,234,37,64,128,0,1,2,4,8,16,232,79,224,236,16,64,0,208,223,97,152,220,145,0,96,50,149,7,119,2,46,255,206,1,1,2,4,8,16,32,64,128,0,129,90,4,206,10,1,4,0,181,140,111,131,58,4,0,27,160,183,186,165,203,127,171,147,83,55,1,2,4,8,16,32,64,128,64,191,2,179,67,0,1,64,191,135,225,100,103,2,128,147,68,30,216,9,184,252,59,7,4,8,16,32,64,128,0,1,2,4,106,21,152,21,2,8,0,106,29,227,10,117,9,0,86,64,110,125,11,151,255,214,39,168,126,2,4,8,16,32,64,128,0,129,254,5,38,135,0,2,128,254,15,195,193,14,5,0,7,105,188,177,19,112,249,119,14,8,16,32,64,128,0,1,2,4,8,180,34,48,41,4,16,0,180,50,206,5,234,20,0,44,128,218,203,146,46,255,189,76,82,31,4,8,16,32,64,128,0,1,2,227,8,156,12,1,4,0,227,28,134,27,58,21,0,220,64,226,133,157,128,203,191,115,64,128,0,1,2,4,8,16,32,64,160,85,129,163,33,128,0,160,213,177,22,168,91,0,80,0,177,183,37,92,254,123,155,168,126,8,16,32,64,128,0,1,2,4,198,19,56,24,2,8,0,198,59,12,247,117,44,0,184,143,194,15,59,1,151,127,231,128,0,1,2,4,8,16,32,64,128,64,47,2,123,67,0,1,64,47,227,61,163,15,1,192,25,104,189,126,196,229,191,215,201,234,139,0,1,2,4,8,16,32,64,96,92,129,27,66,0,1,192,184,135,225,38,1,192,192,195,191,218,186,203,255,85,13,63,19,32,64,128,0,1,2,4,8,16,232,73,224,126,33,128,0,160,167,209,206,236,69,0,48,19,172,199,199,93,254,123,156,170,158,8,16,32,64,128,0,1,2,4,8,92,21,184,47,4,16,0,92,101,25,236,103,1,192,96,3,191,190,221,188,252,127,196,189,175,237,254,29,193,191,198,52,184,233,230,155,119,163,207,230,239,253,251,221,127,240,63,8,16,32,64,128,0,1,2,4,186,19,240,191,238,117,55,210,89,13,221,50,235,105,15,247,37,16,241,224,190,26,210,13,1,2,4,8,16,32,64,128,0,1,2,199,4,34,110,250,240,124,127,247,91,0,254,53,160,129,0,224,216,183,163,231,247,34,118,95,124,127,17,32,64,128,0,1,2,4,8,16,32,48,152,64,134,0,15,206,150,5,0,3,26,8,0,6,251,178,223,221,110,196,135,141,216,182,158,9,16,32,64,128,0,1,2,4,8,16,184,71,32,67,128,221,127,21,88,8,48,152,129,0,96,180,127,7,136,248,208,209,90,214,47,1,2,4,8,16,32,64,128,0,1,2,55,10,100,8,240,145,249,170,16,96,32,3,1,192,143,10,212,149,0,0,16,245,73,68,65,84,141,223,131,126,95,137,248,144,126,155,211,25,1,2,4,8,16,32,64,128,0,1,2,115,5,50,4,248,168,252,140,16,96,16,3,1,192,220,111,72,171,207,71,124,112,171,165,171,155,0,1,2,4,8,16,32,64,128,0,129,229,4,50,4,248,232,92,93,8,48,128,129,0,96,185,239,81,61,43,71,124,80,61,197,168,132,0,1,2,4,8,16,32,64,128,0,129,218,4,50,4,248,152,172,73,8,208,185,129,0,160,182,111,94,233,122,34,62,176,244,146,214,35,64,128,0,1,2,4,8,16,32,64,160,63,129,12,1,62,54,187,18,2,116,108,32,0,232,239,123,123,173,163,136,15,184,246,7,63,17,32,64,128,0,1,2,4,8,16,32,64,224,184,64,134,0,31,151,79,8,1,58,53,16,0,28,63,255,237,190,27,241,254,237,22,175,114,2,4,8,16,32,64,128,0,1,2,4,182,18,200,16,224,227,115,111,33,64,135,6,2,128,173,190,85,75,238,27,241,126,75,46,111,109,2,4,8,16,32,64,128,0,1,2,4,250,22,200,16,224,19,178,67,33,64,103,6,2,128,222,190,183,17,239,219,91,75,250,33,64,128,0,1,2,4,8,16,32,64,96,125,129,12,1,62,49,119,21,2,116,100,32,0,88,255,123,180,220,142,17,239,179,220,226,86,38,64,128,0,1,2,4,8,16,32,64,96,52,129,12,1,62,41,123,22,2,116,98,32,0,232,229,27,28,241,222,189,180,162,15,2,4,8,16,32,64,128,0,1,2,4,234,17,200,16,224,147,179,26,33,64,7,6,2,128,122,190,87,231,87,18,241,94,231,127,216,39,9,16,32,64,128,0,1,2,4,8,16,32,112,92,32,67,128,79,201,39,132,0,141,27,8,0,142,159,243,250,223,141,120,207,250,139,84,33,1,2,4,8,16,32,64,128,0,1,2,173,11,100,8,240,169,217,131,16,160,97,3,1,64,203,223,194,136,247,104,185,124,181,19,32,64,128,0,1,2,4,8,16,32,208,150,64,134,0,159,150,21,11,1,26,53,16,0,180,245,125,187,86,109,196,187,95,251,131,159,8,16,32,64,128,0,1,2,4,8,16,32,176,142,64,134,0,159,158,59,9,1,26,52,16,0,172,243,29,41,187,75,196,187,149,93,208,106,4,8,16,32,64,128,0,1,2,4,8,16,152,46,144,33,192,103,228,211,66,128,198,12,4,0,211,207,120,29,79,70,188,107,29,133,168,130,0,1,2,4,8,16,32,64,128,0,129,145,5,50,4,248,204,236,95,8,208,144,129,0,160,165,111,108,196,187,180,84,174,90,9,16,32,64,128,0,1,2,4,8,16,232,91,32,67,128,207,202,14,133,0,141,24,8,0,90,249,62,70,188,115,43,165,170,147,0,1,2,4,8,16,32,64,128,0,129,113,4,50,4,248,236,236,86,8,208,128,129,0,160,133,239,101,196,59,181,80,166,26,9,16,32,64,128,0,1,2,4,8,16,24,83,32,67,128,207,201,206,133,0,149,27,8,0,106,255,126,70,188,99,237,37,170,143,0,1,2,4,8,16,32,64,128,0,1,2,25,2,124,110,42,8,1,42,54,16,0,212,252,61,141,120,135,154,203,83,27,1,2,4,8,16,32,64,128,0,1,2,4,174,10,100,8,240,121,249,103,33,64,165,6,2,128,171,167,181,166,159,35,222,190,166,114,212,66,128,0,1,2,4,8,16,32,64,128,0,129,41,2,25,2,124,126,62,39,4,168,208,64,0,48,229,4,175,253,76,196,219,173,189,165,253,8,16,32,64,128,0,1,2,4,8,16,32,80,74,32,67,128,47,200,181,132,0,149,25,8,0,74,157,240,82,235,68,188,109,169,165,172,67,128,0,1,2,4,8,16,32,64,128,0,129,173,4,50,4,248,194,220,91,8,80,145,129,0,96,171,111,195,190,125,35,222,102,223,203,94,35,64,128,0,1,2,4,8,16,32,64,128,64,139,2,25,2,124,81,214,45,4,168,196,64,0,80,203,183,40,226,173,107,41,69,29,4,8,16,32,64,128,0,1,2,4,8,16,40,37,144,33,192,23,231,90,66,128,10,12,4,0,165,78,245,37,235,68,188,213,37,31,247,89,2,4,8,16,32,64,128,0,1,2,4,8,212,44,144,33,192,151,100,125,66,128,141,13,4,0,91,127,75,34,222,114,235,18,236,79,128,0,1,2,4,8,16,32,64,128,0,129,165,5,50,4,248,210,220,67,8,176,161,129,0,96,233,83,126,108,253,136,183,56,246,182,247,8,16,32,64,128,0,1,2,4,8,16,32,208,147,64,134,0,95,150,253,8,1,54,50,16,0,108,245,109,138,120,243,173,182,182,47,1,2,4,8,16,32,64,128,0,1,2,4,182,18,200,16,224,203,115,111,33,192,6,6,2,128,45,78,125,196,155,109,177,173,61,9,16,32,64,128,0,1,2,4,8,16,32,80,131,64,134,0,95,145,117,8,1,86,54,16,0,172,125,250,35,222,116,237,45,237,71,128,0,1,2,4,8,16,32,64,128,0,129,218,4,50,4,248,202,172,73,8,176,162,129,0,96,205,111,65,196,155,172,185,157,189,8,16,32,64,128,0,1,2,4,8,16,32,80,179,64,134,0,95,149,245,9,1,86,50,16,0,172,245,109,136,120,227,181,182,178,15,1,2,4,8,16,32,64,128,0,1,2,4,90,17,200,16,224,171,179,86,33,192,10,6,2,128,53,190,21,17,111,180,198,54,246,32,64,128,0,1,2,4,8,16,32,64,128,64,139,2,25,2,124,77,214,45,4,88,216,64,0,176,244,183,35,226,13,151,222,194,250,4,8,16,32,64,128,0,1,2,4,8,16,104,93,32,67,128,175,205,30,132,0,11,26,8,0,150,252,150,68,188,193,146,203,91,155,0,1,2,4,8,16,32,64,128,0,1,2,61,9,100,8,240,117,217,143,16,96,33,3,1,192,82,223,150,136,215,95,106,105,235,18,32,64,128,0,1,2,4,8,16,32,64,160,87,129,12,1,190,62,123,19,2,44,96,32,0,88,226,91,19,241,122,75,44,107,77,2,4,8,16,32,64,128,0,1,2,4,8,140,32,144,33,192,55,100,159,66,128,194,6,2,128,210,223,158,136,215,45,189,164,245,8,16,32,64,128,0,1,2,4,8,16,32,48,154,64,134,0,223,152,61,11,1,10,26,8,0,74,126,139,34,94,167,228,114,214,34,64,128,0,1,2,4,8,16,32,64,128,192,200,2,25,2,124,83,246,47,4,40,100,32,0,40,245,109,138,120,237,82,75,89,135,0,1,2,4,8,16,32,64,128,0,1,2,4,238,17,200,16,224,155,243,39,33,64,1,3,1,64,137,111,85,196,107,149,88,198,26,4,8,16,32,64,128,0,1,2,4,8,16,32,112,163,64,134,0,223,146,175,10,1,46,52,16,0,220,120,182,230,189,18,241,154,243,62,224,105,2,4,8,16,32,64,128,0,1,2,4,8,16,152,43,144,33,192,183,230,103,132,0,23,24,8,0,230,158,186,171,207,71,188,198,213,63,250,153,0,1,2,4,8,16,32,64,128,0,1,2,4,150,19,200,16,224,219,114,117,33,192,153,6,2,128,115,207,102,196,171,159,251,81,159,35,64,128,0,1,2,4,8,16,32,64,128,0,129,243,4,50,4,248,246,252,164,16,224,12,3,1,192,57,103,46,226,213,206,249,152,207,16,32,64,128,0,1,2,4,8,16,32,64,128,192,229,2,25,2,124,71,174,34,4,152,105,32,0,152,123,246,34,94,117,238,71,60,79,128,0,1,2,4,8,16,32,64,128,0,1,2,101,5,50,4,248,206,92,81,8,48,195,64,0,48,231,12,70,188,202,156,199,61,75,128,0,1,2,4,8,16,32,64,128,0,1,2,203,9,100,8,240,93,185,186,16,96,162,129,0,96,234,89,140,120,229,169,143,122,142,0,1,2,4,8,16,32,64,128,0,1,2,4,214,17,200,16,224,187,115,39,33,192,4,3,1,192,148,51,25,241,74,83,30,243,12,1,2,4,8,16,32,64,128,0,1,2,4,8,172,47,144,33,192,247,228,174,66,128,19,6,2,128,83,103,51,226,21,79,61,226,125,2,4,8,16,32,64,128,0,1,2,4,8,16,216,86,32,67,128,239,205,10,132,0,71,12,4,0,199,206,104,196,43,28,123,219,123,4,8,16,32,64,128,0,1,2,4,8,16,32,80,143,64,134,0,223,151,213,8,1,14,24,8,0,14,157,213,136,151,63,244,150,215,9,16,32,64,128,0,1,2,4,8,16,32,64,160,78,129,12,1,190,63,43,19,2,236,49,16,0,236,59,179,17,47,183,239,101,175,17,32,64,128,0,1,2,4,8,16,32,64,128,64,253,2,25,2,252,64,86,41,4,184,206,64,0,112,253,217,141,120,217,235,95,242,103,2,4,8,16,32,64,128,0,1,2,4,8,16,104,75,32,67,128,31,204,138,133,0,87,12,4,0,87,207,112,196,203,92,253,163,159,9,16,32,64,128,0,1,2,4,8,16,32,64,160,93,129,12,1,126,40,171,23,2,220,107,32,0,120,248,89,142,120,233,135,255,232,239,4,8,16,32,64,128,0,1,2,4,8,16,32,208,135,64,134,0,63,156,157,8,1,210,64,0,176,59,211,17,47,213,199,209,214,5,1,2,4,8,16,32,64,128,0,1,2,4,8,92,47,144,33,192,143,228,107,195,135,0,2,128,136,151,188,254,112,248,51,1,2,4,8,16,32,64,128,0,1,2,4,8,244,37,144,33,192,143,102,71,67,135,0,99,7,0,17,47,209,215,145,214,13,1,2,4,8,16,32,64,128,0,1,2,4,8,28,18,200,16,224,199,242,189,97,67,128,113,3,128,136,23,63,116,40,188,78,128,0,1,2,4,8,16,32,64,128,0,1,2,125,10,100,8,240,227,217,217,144,33,192,152,1,64,196,139,245,121,148,117,69,128,0,1,2,4,8,16,32,64,128,0,1,2,167,4,50,4,248,137,124,102,184,16,96,188,0,32,226,69,79,29,6,239,19,32,64,128,0,1,2,4,8,16,32,64,128,64,223,2,25,2,252,100,118,56,84,8,48,86,0,16,241,34,125,31,97,221,17,32,64,128,0,1,2,4,8,16,32,64,128,192,84,129,12,1,126,42,159,29,38,4,24,39,0,136,120,225,169,135,192,115,4,8,16,32,64,128,0,1,2,4,8,16,32,48,134,64,134,0,63,157,157,14,17,2,140,17,0,68,188,208,24,71,87,151,4,8,16,32,64,128,0,1,2,4,8,16,32,48,87,32,67,128,159,201,207,116,31,2,244,31,0,68,188,224,220,225,123,158,0,1,2,4,8,16,32,64,128,0,1,2,4,198,18,200,16,224,103,179,227,174,67,128,190,3,128,136,23,24,235,200,234,150,0,1,2,4,8,16,32,64,128,0,1,2,4,206,21,200,16,224,231,242,179,221,134,0,253,6,0,17,207,127,238,208,125,142,0,1,2,4,8,16,32,64,128,0,1,2,4,198,20,200,16,224,231,179,243,46,67,128,62,3,128,136,231,27,243,168,234,154,0,1,2,4,8,16,32,64,128,0,1,2,4,46,21,200,16,224,23,114,141,238,66,128,254,2,128,136,231,189,116,216,62,79,128,0,1,2,4,8,16,32,64,128,0,1,2,99,11,100,8,240,139,41,208,85,8,208,87,0,16,241,60,99,31,81,221,19,32,64,128,0,1,2,4,8,16,32,64,128,64,41,129,12,1,126,41,215,234,38,4,232,39,0,136,120,238,82,67,182,14,1,2,4,8,16,32,64,128,0,1,2,4,8,16,216,9,100,8,240,203,187,191,245,240,175,62,2,128,136,231,218,13,198,95,4,8,16,32,64,128,0,1,2,4,8,16,32,64,160,180,64,134,0,191,146,107,54,31,2,180,31,0,68,60,103,233,225,90,143,0,1,2,4,8,16,32,64,128,0,1,2,4,8,92,21,200,16,224,87,243,207,77,135,0,109,7,0,17,207,113,117,32,126,38,64,128,0,1,2,4,8,16,32,64,128,0,1,2,75,9,100,8,240,107,185,118,179,33,64,187,1,64,196,179,47,53,84,235,18,32,64,128,0,1,2,4,8,16,32,64,128,0,129,125,2,25,2,252,122,190,222,100,8,208,102,0,16,241,108,251,6,225,53,2,4,8,16,32,64,128,0,1,2,4,8,16,32,176,180,64,134,0,191,145,123,52,23,2,180,23,0,68,60,235,210,195,180,62,1,2,4,8,16,32,64,128,0,1,2,4,8,16,56,38,144,33,192,111,230,251,77,133,0,109,5,0,17,207,114,108,0,222,35,64,128,0,1,2,4,8,16,32,64,128,0,1,2,107,9,100,8,240,91,185,87,51,33,64,59,1,64,196,51,175,53,68,251,16,32,64,128,0,1,2,4,8,16,32,64,128,0,129,41,2,25,2,252,118,62,215,68,8,208,70,0,16,241,76,83,224,61,67,128,0,1,2,4,8,16,32,64,128,0,1,2,4,214,22,200,16,224,119,114,207,234,67,128,250,3,128,136,103,92,123,120,246,35,64,128,0,1,2,4,8,16,32,64,128,0,1,2,115,4,50,4,248,221,124,190,234,16,160,238,0,32,226,25,230,128,123,150,0,1,2,4,8,16,32,64,128,0,1,2,4,8,108,37,144,33,192,239,229,222,213,134,0,245,6,0,17,79,191,213,208,236,75,128,0,1,2,4,8,16,32,64,128,0,1,2,4,206,17,200,16,224,247,243,115,85,134,0,117,6,0,17,79,119,14,180,207,16,32,64,128,0,1,2,4,8,16,32,64,128,0,129,173,5,50,4,248,131,172,161,186,16,160,190,0,32,226,105,183,30,150,253,9,16,32,64,128,0,1,2,4,8,16,32,64,128,192,37,2,25,2,252,97,126,190,170,16,160,174,0,32,226,105,46,1,246,89,2,4,8,16,32,64,128,0,1,2,4,8,16,32,80,139,64,134,0,127,148,181,84,19,2,212,19,0,68,60,117,45,67,82,7,1,2,4,8,16,32,64,128,0,1,2,4,8,16,40,33,144,33,192,31,231,58,85,132,0,117,4,0,17,79,85,2,214,26,4,8,16,32,64,128,0,1,2,4,8,16,32,64,160,54,129,12,1,254,36,107,218,60,4,216,62,0,136,120,202,218,134,163,30,2,4,8,16,32,64,128,0,1,2,4,8,16,32,80,82,32,67,128,63,205,245,54,13,1,182,13,0,34,158,162,36,168,181,8,16,32,64,128,0,1,2,4,8,16,32,64,128,64,173,2,25,2,252,89,214,182,89,8,176,93,0,16,241,228,181,14,69,93,4,8,16,32,64,128,0,1,2,4,8,16,32,64,96,9,129,12,1,254,60,215,221,36,4,216,38,0,136,120,178,37,32,173,73,128,0,1,2,4,8,16,32,64,128,0,1,2,4,106,23,200,16,224,47,178,198,213,67,128,245,3,128,136,39,173,125,24,234,35,64,128,0,1,2,4,8,16,32,64,128,0,1,2,75,10,100,8,240,151,185,254,170,33,192,186,1,64,196,147,44,9,104,109,2,4,8,16,32,64,128,0,1,2,4,8,16,32,208,138,64,134,0,127,149,181,174,22,2,172,23,0,68,60,113,43,67,80,39,1,2,4,8,16,32,64,128,0,1,2,4,8,16,88,67,32,67,128,191,206,125,86,9,1,214,9,0,34,158,104,13,56,123,16,32,64,128,0,1,2,4,8,16,32,64,128,0,129,214,4,50,4,248,155,172,121,241,16,96,249,0,32,226,9,91,195,87,47,1,2,4,8,16,32,64,128,0,1,2,4,8,16,88,83,32,67,128,191,205,253,22,13,1,150,13,0,34,158,96,77,48,123,17,32,64,128,0,1,2,4,8,16,32,64,128,0,129,86,5,50,4,248,187,172,125,177,16,96,185,0,32,226,241,91,69,87,55,1,2,4,8,16,32,64,128,0,1,2,4,8,16,216,66,32,67,128,191,207,125,23,9,1,150,9,0,34,30,111,11,40,123,18,32,64,128,0,1,2,4,8,16,32,64,128,0,129,214,5,50,4,248,135,236,161,120,8,80,62,0,136,120,220,214,177,213,79,128,0,1,2,4,8,16,32,64,128,0,1,2,4,182,20,200,16,224,31,115,255,162,33,64,217,0,32,226,113,182,4,178,55,1,2,4,8,16,32,64,128,0,1,2,4,8,16,232,69,32,67,128,127,202,94,138,133,0,229,2,128,136,199,238,5,89,31,4,8,16,32,64,128,0,1,2,4,8,16,32,64,160,6,129,12,1,254,57,235,40,18,2,148,9,0,34,30,171,6,24,53,16,32,64,128,0,1,2,4,8,16,32,64,128,0,129,222,4,50,4,248,151,236,233,226,16,224,242,0,32,226,49,123,195,213,15,1,2,4,8,16,32,64,128,0,1,2,4,8,16,168,73,32,67,128,127,205,122,46,10,1,46,11,0,34,30,163,38,16,181,16,32,64,128,0,1,2,4,8,16,32,64,128,0,129,94,5,50,4,248,183,236,237,236,16,224,252,0,32,226,209,123,69,213,23,1,2,4,8,16,32,64,128,0,1,2,4,8,16,168,81,32,67,128,127,207,186,206,10,1,206,11,0,34,30,173,70,8,53,17,32,64,128,0,1,2,4,8,16,32,64,128,0,129,222,5,50,4,248,143,236,113,118,8,48,63,0,136,120,212,222,49,245,71,128,0,1,2,4,8,16,32,64,128,0,1,2,4,106,22,200,16,224,63,179,190,89,33,192,188,0,32,226,81,106,6,80,27,1,2,4,8,16,32,64,128,0,1,2,4,8,16,24,69,32,67,128,255,202,94,39,135,0,211,3,128,136,71,30,5,81,159,4,8,16,32,64,128,0,1,2,4,8,16,32,64,160,5,129,12,1,254,59,235,156,20,2,76,11,0,34,30,169,133,198,213,72,128,0,1,2,4,8,16,32,64,128,0,1,2,4,70,19,200,16,224,127,178,231,147,33,192,233,0,32,226,65,163,225,233,151,0,1,2,4,8,16,32,64,128,0,1,2,4,8,180,36,144,33,192,67,178,222,163,33,192,241,0,32,226,17,91,106,88,173,4,8,16,32,64,128,0,1,2,4,8,16,32,64,96,84,129,12,1,30,154,189,31,12,1,14,7,0,17,15,28,21,77,223,4,8,16,32,64,128,0,1,2,4,8,16,32,64,160,69,129,12,1,254,55,235,222,27,2,236,15,0,34,30,161,197,70,213,76,128,0,1,2,4,8,16,32,64,128,0,1,2,4,70,23,200,16,224,97,105,112,67,8,112,99,0,16,241,128,209,177,244,79,128,0,1,2,4,8,16,32,64,128,0,1,2,4,90,22,200,16,224,255,178,254,251,133,0,247,15,0,34,110,107,185,65,181,19,32,64,128,0,1,2,4,8,16,32,64,128,0,1,2,247,8,100,8,112,123,254,116,95,8,112,45,0,136,184,21,18,1,2,4,8,16,32,64,128,0,1,2,4,8,16,32,208,143,64,134,0,119,100,55,119,135,0,247,4,0,17,215,130,128,126,250,212,9,1,2,4,8,16,32,64,128,0,1,2,4,8,16,24,94,32,67,128,59,19,33,254,31,32,198,111,230,98,221,92,103,0,0,0,0,73,69,78,68,174,66,96,130};
void*
dodraw(void* arg)
{
// Initialize autorelease pool
//NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
id pool = ((id(*)(id,SEL))objc_msgSend)((id)objc_getClass("NSAutoreleasePool"), sel_registerName("alloc"));
pool = ((id(*)(id,SEL))objc_msgSend)(pool, sel_registerName("init"));
// Loop forever drawing
while (1) {
// Drain and re-init autorelease pool
//[pool drain];
((void(*)(id,SEL))objc_msgSend)(pool, sel_registerName("drain"));
//pool = [[NSAutoreleasePool alloc] init];
pool = ((id(*)(id,SEL))objc_msgSend)((id)objc_getClass("NSAutoreleasePool"), sel_registerName("alloc"));
pool = ((id(*)(id,SEL))objc_msgSend)(pool, sel_registerName("init"));
// Get next frame when ready with index
//id<CAMetalDrawable> currentDrawable = [layer nextDrawable];
id currentDrawable = ((id(*)(id, SEL))objc_msgSend)(layer, sel_getUid("nextDrawable"));
if (!currentDrawable) continue;
dispatch_semaphore_wait(_inFlightSemaphore, DISPATCH_TIME_FOREVER);
static uint8_t _uniformBufferIndex = 0;
_uniformBufferIndex = (_uniformBufferIndex + 1) % MaxBuffersInFlight;
// Initialize command buffer
//id <MTLCommandBuffer> commandBuffer = [_commandQueue commandBuffer];
id commandBuffer = ((id(*)(id, SEL))objc_msgSend)(_commandQueue, sel_getUid("commandBuffer"));
//commandBuffer.label = @"MyCommand";
((void(*)(id, SEL, id))objc_msgSend)(commandBuffer, sel_getUid("setLabel:"), (id)CFSTR("MyCommand"));
// Set up the semaphore to signal when done
__block dispatch_semaphore_t block_sema = _inFlightSemaphore;
// So this "block" function code is actually a C extension supported by Apple's compilers:
// https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/Blocks/Articles/00_Introduction.html#//apple_ref/doc/uid/TP40007502-CH1-SW1
// Maybe we can do something with [commandBuffer waitUntilCompleted] instead if we need to ditch it
//[commandBuffer addCompletedHandler:^(id<MTLCommandBuffer> buffer) { dispatch_semaphore_signal(block_sema); }];
((void(*)(id, SEL, void(^)(id)))objc_msgSend)(commandBuffer, sel_getUid("addCompletedHandler:"), ^(id buffer) { dispatch_semaphore_signal(block_sema); });
// Update uniforms and rotation
//struct Uniforms * uniforms = (struct Uniforms*)_dynamicUniformBuffer[_uniformBufferIndex].contents;
struct Uniforms * uniforms = (/*__bridge*/ struct Uniforms*)((id(*)(id, SEL))objc_msgSend)(_dynamicUniformBuffer[_uniformBufferIndex], sel_getUid("contents"));
uniforms->projectionMatrix = _projectionMatrix;
vector_float3 rotationAxis = {1, 1, 0};
vector_float3 axis = vector_normalize(rotationAxis);
static float _rotation = 0;
float ct = cosf(_rotation);
float st = sinf(_rotation);
float ci = 1 - ct;
float x = axis.x, y = axis.y, z = axis.z;
matrix_float4x4 modelMatrix = {{
{ct+x*x*ci, y*x*ci+z*st, z*x*ci-y*st, 0},
{x*y*ci-z*st, ct+y*y*ci, z*y*ci+x*st, 0},
{x*z*ci+y*st, y*z*ci-x*st, ct+z*z*ci, 0},
{0, 0, 0, 1}
}};
matrix_float4x4 viewMatrix = {{
{1, 0, 0, 0},
{0, 1, 0, 0},
{0, 0, 1, 0},
{0, 0, -8, 1}
}};
uniforms->modelViewMatrix = matrix_multiply(viewMatrix, modelMatrix);
_rotation += .01;
// Create render pass descriptor
//MTLRenderPassDescriptor* renderPassDescriptor = [MTLRenderPassDescriptor new];
id renderPassDescriptor = ((id(*)(id, SEL))objc_msgSend)((id)objc_getClass("MTLRenderPassDescriptor"), sel_getUid("new"));
//((MTLRenderPassDescriptor*)renderPassDescriptor).colorAttachments[0].texture = ((id<CAMetalDrawable>)currentDrawable).texture;
id renderPassDescriptor_colorAttachments = ((id(*)(id, SEL))objc_msgSend)(renderPassDescriptor, sel_getUid("colorAttachments"));
id renderPassDescriptor_colorAttachments_0 = ((id(*)(id,SEL,NSUInteger))objc_msgSend)(renderPassDescriptor_colorAttachments, sel_getUid("objectAtIndexedSubscript:"), 0);
id currentDrawable_texture = ((id(*)(id, SEL))objc_msgSend)(currentDrawable, sel_getUid("texture"));
((void(*)(id,SEL,id))objc_msgSend)(renderPassDescriptor_colorAttachments_0, sel_getUid("setTexture:"), currentDrawable_texture);
//((MTLRenderPassDescriptor*)renderPassDescriptor).colorAttachments[0].loadAction = MTLLoadActionClear;
((void(*)(id,SEL,NSUInteger))objc_msgSend)(renderPassDescriptor_colorAttachments_0, sel_getUid("setLoadAction:"), 2);
//((MTLRenderPassDescriptor*)renderPassDescriptor).depthAttachment.texture = depthTexture;
id renderPassDescriptor_depthAttachment = ((id(*)(id,SEL))objc_msgSend)(renderPassDescriptor, sel_getUid("depthAttachment"));
((void(*)(id,SEL,id))objc_msgSend)(renderPassDescriptor_depthAttachment, sel_getUid("setTexture:"), depthTexture);
//((MTLRenderPassDescriptor*)renderPassDescriptor).stencilAttachment.texture = depthTexture;
id renderPassDescriptor_stencilAttachment = ((id(*)(id,SEL))objc_msgSend)(renderPassDescriptor, sel_getUid("stencilAttachment"));
((void(*)(id,SEL,id))objc_msgSend)(renderPassDescriptor_stencilAttachment, sel_getUid("setTexture:"), depthTexture);
//if (renderPassDescriptor == nil) { [commandBuffer commit]; continue; }
if (renderPassDescriptor == NULL) { ((void(*)(id,SEL))objc_msgSend)(commandBuffer,sel_getUid("commit")); continue; }
// Create render encoder
//id <MTLRenderCommandEncoder> renderEncoder = [commandBuffer renderCommandEncoderWithDescriptor:((MTLRenderPassDescriptor*)renderPassDescriptor)];
id renderEncoder = ((id(*)(id,SEL,id))objc_msgSend)(commandBuffer, sel_getUid("renderCommandEncoderWithDescriptor:"), renderPassDescriptor);
//renderEncoder.label = @"MyRenderEncoder";
((void(*)(id,SEL,id))objc_msgSend)(renderEncoder, sel_getUid("setLabel:"), (id)CFSTR("MyRenderEncoder"));
//[renderEncoder pushDebugGroup:@"DrawBox"];
((void(*)(id,SEL,id))objc_msgSend)(renderEncoder, sel_getUid("pushDebugGroup:"), (id)CFSTR("DrawBox"));
//[renderEncoder setFrontFacingWinding:MTLWindingCounterClockwise];
((void(*)(id,SEL,NSUInteger))objc_msgSend)(renderEncoder, sel_getUid("setFrontFacingWinding:"), 1);
//[renderEncoder setCullMode:MTLCullModeBack];
((void(*)(id,SEL,NSUInteger))objc_msgSend)(renderEncoder, sel_getUid("setCullMode:"), 2);
//[renderEncoder setRenderPipelineState:_pipelineState];
((void(*)(id,SEL,id))objc_msgSend)(renderEncoder, sel_getUid("setRenderPipelineState:"), _pipelineState);
//[renderEncoder setDepthStencilState:_depthState];
((void(*)(id,SEL,id))objc_msgSend)(renderEncoder, sel_getUid("setDepthStencilState:"), _depthState);
//[renderEncoder setVertexBuffer:_dynamicUniformBuffer[_uniformBufferIndex] offset:0 atIndex:2];
((void(*)(id,SEL,id,NSUInteger,NSUInteger))objc_msgSend)(renderEncoder, sel_getUid("setVertexBuffer:offset:atIndex:"), _dynamicUniformBuffer[_uniformBufferIndex], 0, 2);
//[renderEncoder setFragmentBuffer:_dynamicUniformBuffer[_uniformBufferIndex] offset:0 atIndex:2];
((void(*)(id,SEL,id,NSUInteger,NSUInteger))objc_msgSend)(renderEncoder, sel_getUid("setFragmentBuffer:offset:atIndex:"), _dynamicUniformBuffer[_uniformBufferIndex], 0, 2);
//NSUInteger nbufs = ((MTKMesh*)_mesh).vertexBuffers.count;
id mesh_vertexBuffers = ((id(*)(id,SEL))objc_msgSend)(_mesh, sel_getUid("vertexBuffers"));
NSUInteger nbufs = ((NSUInteger(*)(id,SEL))objc_msgSend)(mesh_vertexBuffers, sel_getUid("count"));
id NSNull_null = ((id(*)(id,SEL))objc_msgSend)((id)objc_getClass("NSNull"), sel_getUid("null"));
for (NSUInteger bufferIndex = 0; bufferIndex < nbufs; bufferIndex++) {
//MTKMeshBuffer *vertexBuffer = ((MTKMesh*)_mesh).vertexBuffers[bufferIndex];
id vertexBuffer = ((id(*)(id,SEL,NSUInteger))objc_msgSend)(mesh_vertexBuffers, sel_getUid("objectAtIndexedSubscript:"), bufferIndex);
//if((NSNull*)vertexBuffer != [NSNull null])
// [renderEncoder setVertexBuffer:vertexBuffer.buffer offset:vertexBuffer.offset atIndex:bufferIndex];
if (vertexBuffer != NSNull_null) {
id vertexBuffer_buffer = ((id(*)(id,SEL))objc_msgSend)(vertexBuffer, sel_getUid("buffer"));
NSUInteger vertexBuffer_offset = ((NSUInteger(*)(id,SEL))objc_msgSend)(vertexBuffer, sel_getUid("offset"));
((void(*)(id,SEL,id,NSUInteger,NSUInteger))objc_msgSend)(renderEncoder, sel_getUid("setVertexBuffer:offset:atIndex:"), vertexBuffer_buffer, vertexBuffer_offset, bufferIndex);
}
}
//[renderEncoder setFragmentTexture:_colorMap atIndex:0];
((void(*)(id,SEL,id,NSUInteger))objc_msgSend)(renderEncoder, sel_getUid("setFragmentTexture:atIndex:"), _colorMap, 0);
//for(MTKSubmesh *submesh in ((MTKMesh*)_mesh).submeshes)
// [renderEncoder drawIndexedPrimitives:submesh.primitiveType indexCount:submesh.indexCount indexType:submesh.indexType indexBuffer:submesh.indexBuffer.buffer indexBufferOffset:submesh.indexBuffer.offset];
id mesh_submeshes = ((id(*)(id,SEL))objc_msgSend)(_mesh, sel_getUid("submeshes"));
NSUInteger nsubmeshes = ((NSUInteger(*)(id,SEL))objc_msgSend)(mesh_submeshes, sel_getUid("count"));
for (NSUInteger isubmesh=0; isubmesh<nsubmeshes; isubmesh++) {
id submesh = ((id(*)(id,SEL,NSUInteger))objc_msgSend)(mesh_submeshes, sel_getUid("objectAtIndexedSubscript:"), isubmesh);
NSUInteger submesh_primitiveType = ((NSUInteger(*)(id,SEL))objc_msgSend)(submesh, sel_getUid("primitiveType"));
NSUInteger submesh_indexCount = ((NSUInteger(*)(id,SEL))objc_msgSend)(submesh, sel_getUid("indexCount"));
NSUInteger submesh_indexType = ((NSUInteger(*)(id,SEL))objc_msgSend)(submesh, sel_getUid("indexType"));
id submesh_indexBuffer = ((id(*)(id,SEL))objc_msgSend)(submesh, sel_getUid("indexBuffer"));
id submesh_indexBuffer_buffer = ((id(*)(id,SEL))objc_msgSend)(submesh_indexBuffer, sel_getUid("buffer"));
NSUInteger submesh_indexBuffer_offset = ((NSUInteger(*)(id,SEL))objc_msgSend)(submesh_indexBuffer, sel_getUid("offset"));
((void(*)(id,SEL,NSUInteger,NSUInteger,NSUInteger,id,NSUInteger))objc_msgSend)(renderEncoder, sel_getUid("drawIndexedPrimitives:indexCount:indexType:indexBuffer:indexBufferOffset:"), submesh_primitiveType, submesh_indexCount, submesh_indexType, submesh_indexBuffer_buffer, submesh_indexBuffer_offset);
}
//[renderEncoder popDebugGroup];
((void(*)(id,SEL))objc_msgSend)(renderEncoder, sel_getUid("popDebugGroup"));
//[renderEncoder endEncoding];
((void(*)(id,SEL))objc_msgSend)(renderEncoder, sel_getUid("endEncoding"));
// Present and commit
//[commandBuffer presentDrawable:currentDrawable];
((void(*)(id,SEL,id))objc_msgSend)(commandBuffer, sel_getUid("presentDrawable:"), currentDrawable);
//[commandBuffer commit];
//continue; // stops the "memory leak" (XCode Metal profiling?)
((void(*)(id,SEL))objc_msgSend)(commandBuffer, sel_getUid("commit"));
}
}
struct UIViewMetal {
Class isa;
};
Class UIViewMetalClass;
Class
UIViewMetal_layerClass(id self, SEL _cmd)
{
return objc_getClass("CAMetalLayer");
}
__attribute__((constructor))
static void
init_UIViewMetal(void)
{
UIViewMetalClass = objc_allocateClassPair(objc_getClass("UIView"), "UIViewMetal", 0);
if (!(class_addMethod(object_getClass((id)UIViewMetalClass), sel_registerName("layerClass"), (IMP)UIViewMetal_layerClass, "@@:"))) { NSLog((id)CFSTR("failed to add layerClass method")); exit(1); }
objc_registerClassPair(UIViewMetalClass);
}
struct AppDelegate {
Class isa;
id window;
};
Class AppDelegateClass;
BOOL
AppDelegate_application_didFinishLaunchingWithOptions(/*id*/struct AppDelegate *self, SEL _cmd, id application, id launchOptions)
{
// Create view with CAMetalLayer
id _view = ((id(*)(id,SEL))objc_msgSend)((id)objc_getClass("UIViewMetal"), sel_getUid("alloc"));
//_view = [_view initWithFrame:CGRectMake(0.0, 0.0, 375.0, 667.0)];
_view = ((id(*)(id, SEL, CGRect))objc_msgSend)(_view, sel_registerName("initWithFrame:"), CGRectMake(0.0, 0.0, 375.0, 667.0));
//_view.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
((void(*)(id, SEL, NSUInteger))objc_msgSend)((id)_view, sel_registerName("setAutoresizingMask:"), 18);
//_view.backgroundColor = [UIColor systemBackgroundColor];
id systemBackgroundColor = ((id(*)(id, SEL))objc_msgSend)((id)objc_getClass("UIColor"), sel_registerName("systemBackgroundColor"));
((void(*)(id, SEL, id))objc_msgSend)((id)_view, sel_registerName("setBackgroundColor:"), systemBackgroundColor);
//layer = (CAMetalLayer*)_view.layer;
layer = ((id(*)(id, SEL))objc_msgSend)((id)_view, sel_registerName("layer"));
//_view.backgroundColor = UIColor.blackColor;
id blackColor = ((id(*)(id, SEL))objc_msgSend)((id)objc_getClass("UIColor"), sel_registerName("blackColor"));
((void(*)(id, SEL, id))objc_msgSend)((id)_view, sel_registerName("setBackgroundColor:"), blackColor);
// Get graphics device
id _device = MTLCreateSystemDefaultDevice();
if (!_device) { NSLog((id)CFSTR("Metal is not supported on this device")); exit(1); }
// Initialize semaphore
_inFlightSemaphore = dispatch_semaphore_create(MaxBuffersInFlight);
// Load shaders
dispatch_data_t datashaders = dispatch_data_create(bufshaders, sizeof(bufshaders), NULL, DISPATCH_DATA_DESTRUCTOR_DEFAULT);
//NSError *error=nil; id<MTLLibrary> libshaders = [_device newLibraryWithData:datashaders error:&error];
id error=NULL; id libshaders = ((id(*)(id, SEL, id, id*))objc_msgSend)(_device, sel_registerName("newLibraryWithData:error:"), (id)datashaders, &error);
//id <MTLFunction> vertexFunction = [libshaders newFunctionWithName:@"vertexShader"];
id vertexFunction = ((id(*)(id, SEL, id))objc_msgSend)(libshaders, sel_registerName("newFunctionWithName:"), (id)CFSTR("vertexShader"));
//id <MTLFunction> fragmentFunction = [libshaders newFunctionWithName:@"fragmentShader"];
id fragmentFunction = ((id(*)(id, SEL, id))objc_msgSend)(libshaders, sel_registerName("newFunctionWithName:"), (id)CFSTR("fragmentShader"));
// Make vertex descriptors
//MTLVertexDescriptor *_mtlVertexDescriptor = [[MTLVertexDescriptor alloc] init];
id _mtlVertexDescriptor = ((id(*)(id, SEL))objc_msgSend)((id)objc_getClass("MTLVertexDescriptor"), sel_registerName("alloc"));
_mtlVertexDescriptor = ((id(*)(id, SEL))objc_msgSend)(_mtlVertexDescriptor, sel_registerName("init"));
//_mtlVertexDescriptor.attributes[0].format = MTLVertexFormatFloat3;
id attributes = ((id(*)(id, SEL))objc_msgSend)(_mtlVertexDescriptor, sel_registerName("attributes"));
id attributes0 = ((id(*)(id, SEL, NSUInteger))objc_msgSend)(attributes, sel_registerName("objectAtIndexedSubscript:"), 0);
((void(*)(id, SEL, NSUInteger))objc_msgSend)(attributes0, sel_registerName("setFormat:"), 30);
//_mtlVertexDescriptor.attributes[0].offset = 0;
((void(*)(id, SEL, NSUInteger))objc_msgSend)(attributes0, sel_registerName("setOffset:"), 0);
//_mtlVertexDescriptor.attributes[0].bufferIndex = 0;
((void(*)(id, SEL, NSUInteger))objc_msgSend)(attributes0, sel_registerName("setBufferIndex:"), 0);
//_mtlVertexDescriptor.attributes[1].format = MTLVertexFormatFloat2;
id attributes1 = ((id(*)(id, SEL, NSUInteger))objc_msgSend)(attributes, sel_registerName("objectAtIndexedSubscript:"), 1);
((void(*)(id, SEL, NSUInteger))objc_msgSend)(attributes1, sel_registerName("setFormat:"), 29);
//_mtlVertexDescriptor.attributes[1].offset = 0;
((void(*)(id, SEL, NSUInteger))objc_msgSend)(attributes1, sel_registerName("setOffset:"), 0);
//_mtlVertexDescriptor.attributes[1].bufferIndex = 1;
((void(*)(id, SEL, NSUInteger))objc_msgSend)(attributes1, sel_registerName("setBufferIndex:"), 1);
//_mtlVertexDescriptor.layouts[0].stride = 12;
id layouts = ((id(*)(id, SEL))objc_msgSend)(_mtlVertexDescriptor, sel_registerName("layouts"));
id layouts0 = ((id(*)(id, SEL, NSUInteger))objc_msgSend)(layouts, sel_registerName("objectAtIndexedSubscript:"), 0);
((void(*)(id, SEL, NSUInteger))objc_msgSend)(layouts0, sel_registerName("setStride:"), 12);
//_mtlVertexDescriptor.layouts[0].stepRate = 1;
((void(*)(id, SEL, NSUInteger))objc_msgSend)(layouts0, sel_registerName("setStepRate:"), 1);
//_mtlVertexDescriptor.layouts[0].stepFunction = MTLVertexStepFunctionPerVertex;
((void(*)(id, SEL, NSUInteger))objc_msgSend)(layouts0, sel_registerName("setStepFunction:"), 1);
//_mtlVertexDescriptor.layouts[1].stride = 8;
id layouts1 = ((id(*)(id, SEL, NSUInteger))objc_msgSend)(layouts, sel_registerName("objectAtIndexedSubscript:"), 1);
((void(*)(id, SEL, NSUInteger))objc_msgSend)(layouts1, sel_registerName("setStride:"), 8);
//_mtlVertexDescriptor.layouts[1].stepRate = 1;
((void(*)(id, SEL, NSUInteger))objc_msgSend)(layouts1, sel_registerName("setStepRate:"), 1);
//_mtlVertexDescriptor.layouts[1].stepFunction = MTLVertexStepFunctionPerVertex;
((void(*)(id, SEL, NSUInteger))objc_msgSend)(layouts1, sel_registerName("setStepFunction:"), 1);
// Initialize depth texture
//MTLDepthStencilDescriptor *depthStateDesc = [[MTLDepthStencilDescriptor alloc] init];
id depthStateDesc = ((id(*)(id, SEL))objc_msgSend)((id)objc_getClass("MTLDepthStencilDescriptor"), sel_registerName("alloc"));
((id(*)(id, SEL))objc_msgSend)(depthStateDesc, sel_registerName("init"));
//depthStateDesc.depthCompareFunction = MTLCompareFunctionLess;
((void(*)(id, SEL, NSUInteger))objc_msgSend)(depthStateDesc, sel_registerName("setDepthCompareFunction:"), 1);
//depthStateDesc.depthWriteEnabled = YES;
((void(*)(id, SEL, BOOL))objc_msgSend)(depthStateDesc, sel_registerName("setDepthWriteEnabled:"), YES);
//_depthState = [_device newDepthStencilStateWithDescriptor:depthStateDesc];
_depthState = ((id(*)(id, SEL, id))objc_msgSend)(_device, sel_registerName("newDepthStencilStateWithDescriptor:"), depthStateDesc);
//MTLTextureDescriptor *depthTextureDescriptor = [MTLTextureDescriptor texture2DDescriptorWithPixelFormat:MTLPixelFormatDepth32Float_Stencil8 width:1179 height:2556 mipmapped:YES];
id depthTextureDescriptor = ((id(*)(id, SEL, NSUInteger, NSUInteger, NSUInteger, BOOL))objc_msgSend)((id)objc_getClass("MTLTextureDescriptor"), sel_registerName("texture2DDescriptorWithPixelFormat:width:height:mipmapped:"), 260, 1179, 2556, YES);
//depthTextureDescriptor.usage = MTLTextureUsageRenderTarget;
((void(*)(id, SEL, NSUInteger))objc_msgSend)(depthTextureDescriptor, sel_registerName("setUsage:"), 4);
//depthTextureDescriptor.mipmapLevelCount = 1;
((void(*)(id, SEL, NSUInteger))objc_msgSend)(depthTextureDescriptor, sel_registerName("setMipmapLevelCount:"), 1);
//depthTextureDescriptor.storageMode = MTLStorageModePrivate;
((void(*)(id, SEL, NSUInteger))objc_msgSend)(depthTextureDescriptor, sel_registerName("setStorageMode:"), 2);
//depthTexture = [_device newTextureWithDescriptor:depthTextureDescriptor];
depthTexture = ((id(*)(id, SEL, id))objc_msgSend)(_device, sel_registerName("newTextureWithDescriptor:"), depthTextureDescriptor);
// Initialize uniform buffers
for (NSUInteger i=0; i<MaxBuffersInFlight; i++) {
//_dynamicUniformBuffer[i] = [_device newBufferWithLength:sizeof(struct Uniforms) options:MTLResourceStorageModeShared];
_dynamicUniformBuffer[i] = ((id(*)(id, SEL, NSUInteger, NSUInteger))objc_msgSend)(_device, sel_registerName("newBufferWithLength:options:"), sizeof(struct Uniforms), 0);
//_dynamicUniformBuffer[i].label = @"UniformBuffer";
((void(*)(id, SEL, id))objc_msgSend)(_dynamicUniformBuffer[i], sel_registerName("setLabel:"), (id)CFSTR("UniformBuffer"));
}
// Create pipeline state
//MTLRenderPipelineDescriptor *pipelineStateDescriptor = [[MTLRenderPipelineDescriptor alloc] init];
id pipelineStateDescriptor = ((id(*)(id, SEL))objc_msgSend)((id)objc_getClass("MTLRenderPipelineDescriptor"), sel_registerName("alloc"));
((id(*)(id, SEL))objc_msgSend)(pipelineStateDescriptor, sel_registerName("init"));
//pipelineStateDescriptor.label = @"MyPipeline";
((void(*)(id, SEL, id))objc_msgSend)(pipelineStateDescriptor, sel_registerName("setLabel:"), (id)CFSTR("MyPipeline"));
//pipelineStateDescriptor.rasterSampleCount = 1;
((void(*)(id, SEL, NSUInteger))objc_msgSend)(pipelineStateDescriptor, sel_registerName("setRasterSampleCount:"), 1);
//pipelineStateDescriptor.vertexFunction = vertexFunction;
((void(*)(id, SEL, id))objc_msgSend)(pipelineStateDescriptor, sel_registerName("setVertexFunction:"), vertexFunction);
//pipelineStateDescriptor.fragmentFunction = fragmentFunction;
((void(*)(id, SEL, id))objc_msgSend)(pipelineStateDescriptor, sel_registerName("setFragmentFunction:"), fragmentFunction);
//pipelineStateDescriptor.vertexDescriptor = _mtlVertexDescriptor;
((void(*)(id, SEL, id))objc_msgSend)(pipelineStateDescriptor, sel_registerName("setVertexDescriptor:"), _mtlVertexDescriptor);
//pipelineStateDescriptor.colorAttachments[0].pixelFormat = MTLPixelFormatBGRA8Unorm_sRGB;
id colorAttachments = ((id(*)(id, SEL))objc_msgSend)(pipelineStateDescriptor, sel_registerName("colorAttachments"));
id colorAttachments0 = ((id(*)(id, SEL, NSUInteger))objc_msgSend)(colorAttachments, sel_registerName("objectAtIndexedSubscript:"), 0);
((void(*)(id, SEL, NSUInteger))objc_msgSend)(colorAttachments0, sel_registerName("setPixelFormat:"), 81);
//pipelineStateDescriptor.depthAttachmentPixelFormat = MTLPixelFormatDepth32Float_Stencil8;
((void(*)(id, SEL, NSUInteger))objc_msgSend)(pipelineStateDescriptor, sel_registerName("setDepthAttachmentPixelFormat:"), 260);
//pipelineStateDescriptor.stencilAttachmentPixelFormat = MTLPixelFormatDepth32Float_Stencil8;
((void(*)(id, SEL, NSUInteger))objc_msgSend)(pipelineStateDescriptor, sel_registerName("setStencilAttachmentPixelFormat:"), 260);
error = NULL;
//_pipelineState = [_device newRenderPipelineStateWithDescriptor:pipelineStateDescriptor error:&error];
_pipelineState = ((id(*)(id, SEL, id, id*))objc_msgSend)(_device, sel_registerName("newRenderPipelineStateWithDescriptor:error:"), pipelineStateDescriptor, &error);
if (!_pipelineState) { NSLog((id)CFSTR("Failed to created pipeline state, error %@"),error); exit(1); }
// Make command queue
//_commandQueue = [_device newCommandQueue];
_commandQueue = ((id(*)(id, SEL))objc_msgSend)(_device, sel_registerName("newCommandQueue"));
// Initialize mesh
//MTKMeshBufferAllocator *metalAllocator = [[MTKMeshBufferAllocator alloc] initWithDevice: _device];
id metalAllocator = ((id(*)(id, SEL, id))objc_msgSend)((id)objc_getClass("MTKMeshBufferAllocator"), sel_registerName("alloc"), _device);
metalAllocator = ((id(*)(id,SEL,id))objc_msgSend)(metalAllocator, sel_registerName("initWithDevice:"), _device);
//MDLMesh *mdlMesh = [MDLMesh newBoxWithDimensions:(vector_float3){4, 4, 4} segments:(vector_uint3){2, 2, 2} geometryType:MDLGeometryTypeTriangles inwardNormals:NO allocator:metalAllocator];
id mdlMesh = ((id(*)(id, SEL, vector_float3, vector_uint3, NSUInteger, BOOL, id))objc_msgSend)((id)objc_getClass("MDLMesh"), sel_registerName("newBoxWithDimensions:segments:geometryType:inwardNormals:allocator:"), (vector_float3){4, 4, 4}, (vector_uint3){2, 2, 2}, 2, NO, metalAllocator);
//MDLVertexDescriptor *mdlVertexDescriptor = MTKModelIOVertexDescriptorFromMetal(_mtlVertexDescriptor);
id mdlVertexDescriptor = MTKModelIOVertexDescriptorFromMetal(_mtlVertexDescriptor);
//mdlVertexDescriptor.attributes[0].name = MDLVertexAttributePosition;
id mdlVertexDescriptor_attributes = ((id(*)(id, SEL))objc_msgSend)(mdlVertexDescriptor, sel_registerName("attributes"));
id mdlVertexDescriptor_attributes_0 = ((id(*)(id, SEL, NSUInteger))objc_msgSend)(mdlVertexDescriptor_attributes, sel_registerName("objectAtIndexedSubscript:"), 0);
((void(*)(id, SEL, id))objc_msgSend)(mdlVertexDescriptor_attributes_0, sel_registerName("setName:"), MDLVertexAttributePosition);
//mdlVertexDescriptor.attributes[1].name = MDLVertexAttributeTextureCoordinate;
id mdlVertexDescriptor_attributes_1 = ((id(*)(id, SEL, NSUInteger))objc_msgSend)(mdlVertexDescriptor_attributes, sel_registerName("objectAtIndexedSubscript:"), 1);
((void(*)(id, SEL, id))objc_msgSend)(mdlVertexDescriptor_attributes_1, sel_registerName("setName:"), MDLVertexAttributeTextureCoordinate);
//mdlMesh.vertexDescriptor = mdlVertexDescriptor;
((void(*)(id, SEL, id))objc_msgSend)(mdlMesh, sel_registerName("setVertexDescriptor:"), mdlVertexDescriptor);
//_mesh = [[MTKMesh alloc] initWithMesh:mdlMesh device:_device error:&error];
_mesh = ((id(*)(id,SEL))objc_msgSend)((id)objc_getClass("MTKMesh"), sel_registerName("alloc"));
_mesh = ((id(*)(id,SEL,id,id,id*))objc_msgSend)(_mesh, sel_registerName("initWithMesh:device:error:"), mdlMesh, _device, &error);
//if(!_mesh || error) { NSLog(@"Error creating MetalKit mesh %@", error.localizedDescription); exit(1); }
if (!_mesh || error) { NSLog((id)CFSTR("Error creating MetalKit mesh %@"), ((id(*)(id, SEL))objc_msgSend)(error, sel_registerName("localizedDescription"))); exit(1); }
// Load color map texture
//MTKTextureLoader* textureLoader = [[MTKTextureLoader alloc] initWithDevice:_device];
id textureLoader = ((id(*)(id,SEL))objc_msgSend)((id)objc_getClass("MTKTextureLoader"), sel_registerName("alloc"));
textureLoader = ((id(*)(id,SEL,id))objc_msgSend)(textureLoader, sel_registerName("initWithDevice:"), _device);
//NSDictionary *textureLoaderOptions = @{
// MTKTextureLoaderOptionTextureUsage: @(MTLTextureUsageShaderRead),
// MTKTextureLoaderOptionTextureStorageMode: @(MTLStorageModePrivate),
// MTKTextureLoaderOptionOrigin: MTKTextureLoaderOriginBottomLeft
//};
id numMTLTextureUsageShaderRead = ((id(*)(id, SEL, NSUInteger))objc_msgSend)((id)objc_getClass("NSNumber"), sel_registerName("numberWithUnsignedInteger:"), 1);
id numMTLStorageModePrivate = ((id(*)(id, SEL, NSUInteger))objc_msgSend)((id)objc_getClass("NSNumber"), sel_registerName("numberWithUnsignedInteger:"), 2);
id textureLoaderOptions = ((id(*)(id,SEL,id*,id*,NSUInteger))objc_msgSend)((id)objc_getClass("NSDictionary"), sel_registerName("dictionaryWithObjects:forKeys:count:"), (id[]){numMTLTextureUsageShaderRead,numMTLStorageModePrivate,MTKTextureLoaderOriginBottomLeft}, (id[]){MTKTextureLoaderOptionTextureUsage,MTKTextureLoaderOptionTextureStorageMode,MTKTextureLoaderOptionOrigin}, 3);
//_colorMap = [textureLoader newTextureWithName:@"ColorMap" scaleFactor:1.0 bundle:nil options:textureLoaderOptions error:&error];
//_colorMap = ((id(*)(id,SEL,id,CGFloat,id,id,id*))objc_msgSend)(textureLoader, sel_registerName("newTextureWithName:scaleFactor:bundle:options:error:"), (id)CFSTR("ColorMap"), (CGFloat)1.0, NULL, textureLoaderOptions, &error);
dispatch_data_t datacolormap = dispatch_data_create(bufcolormap, sizeof(bufcolormap), NULL, DISPATCH_DATA_DESTRUCTOR_DEFAULT);
//_colorMap = [textureLoader newTextureWithData:datacolormap options:textureLoaderOptions error:&error];
_colorMap = ((id(*)(id,SEL,id,id,id*))objc_msgSend)(textureLoader, sel_registerName("newTextureWithData:options:error:"), (id)datacolormap, textureLoaderOptions, &error);
//if (!_colorMap || error) { NSLog(@"Error creating texture %@", error.localizedDescription); exit(1); }
if (!_colorMap || error) { NSLog((id)CFSTR("Error creating texture %@"), ((id(*)(id, SEL))objc_msgSend)(error, sel_registerName("localizedDescription"))); exit(1); }
// Initialize the projection matrix
//float aspect = _view.bounds.size.width / (float)_view.bounds.size.height;
CGRect view_bounds = ((CGRect(*)(id, SEL))objc_msgSend)((id)_view, sel_registerName("bounds"));
float aspect = view_bounds.size.width / view_bounds.size.height;
float ys = 1 / tanf(65.0f * (M_PI / 180.0f) * 0.5);
float xs = ys / aspect;
float zs = 100.0f / (0.1f - 100.0f);
_projectionMatrix = (matrix_float4x4) {{
{xs, 0, 0, 0},
{0, ys, 0, 0},
{0, 0, zs, -1},
{0, 0, 0.1f*zs, 0}
}};
// Set up layer
//layer.device = _device;
((void(*)(id, SEL, id))objc_msgSend)(layer, sel_registerName("setDevice:"), _device);
//_view.layer.pixelFormat = MTLPixelFormatBGRA8Unorm_sRGB;
((void(*)(id, SEL, NSUInteger))objc_msgSend)(layer, sel_registerName("setPixelFormat:"), 81);
// Create root view controller with view
//UIViewController *viewController = [[UIViewController alloc] init];
id viewController = ((id(*)(id, SEL))objc_msgSend)((id)objc_getClass("UIViewController"), sel_registerName("alloc"));
viewController = ((id(*)(id, SEL))objc_msgSend)(viewController, sel_registerName("init"));
//viewController.view = _view;
((void(*)(id, SEL, id))objc_msgSend)(viewController, sel_registerName("setView:"), _view);
// Create window with root view controller
//self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
id window = ((id(*)(id,SEL))objc_msgSend)((id)objc_getClass("UIWindow"), sel_registerName("alloc"));
id mainScreen = ((id(*)(id,SEL))objc_msgSend)((id)objc_getClass("UIScreen"), sel_registerName("mainScreen"));
CGRect mainScreen_bounds = ((CGRect(*)(id, SEL))objc_msgSend)(mainScreen, sel_registerName("bounds"));
window = ((id(*)(id,SEL,CGRect))objc_msgSend)(window, sel_registerName("initWithFrame:"), mainScreen_bounds);
self->window = window;
//self.window.rootViewController = viewController;
((void(*)(id,SEL,id))objc_msgSend)(self->window, sel_registerName("setRootViewController:"), (id)viewController);
//[self.window makeKeyAndVisible];
((void(*)(id,SEL))objc_msgSend)(window, sel_registerName("makeKeyAndVisible"));
// Start draw thread
pthread_t tdraw; int res = pthread_create(&tdraw, NULL, dodraw, NULL); if (res) { NSLog((id)CFSTR("pthread create failed")); exit(1); }
return YES;
}
__attribute__((constructor))
static void
init_AppDelegate(void)
{
AppDelegateClass = objc_allocateClassPair(objc_getClass("UIResponder"), "AppDelegate", 0);
class_addIvar(AppDelegateClass, "window", sizeof(id), /*log2(sizeof(id))*/0, "@");
class_addMethod(AppDelegateClass, sel_registerName("application:didFinishLaunchingWithOptions:"), (IMP)AppDelegate_application_didFinishLaunchingWithOptions, "B@:@@");
objc_registerClassPair(AppDelegateClass);
}
int
main(int argc, char *argv[])
{
return UIApplicationMain(argc, argv, NULL, (id)CFSTR("AppDelegate"));
}