Commit 6c9f1173 authored by SHREYANSH JAIN's avatar SHREYANSH JAIN

Merge branch 'test' into 'master'

mse final leaderboard

See merge request !1
parents 8ae28015 a74db5fc
This source diff could not be displayed because it is too large. You can view the blob instead.
import numpy as np import numpy as np
import argparse import argparse
import csv import csv
# import matplotlib.pyplot as plt # import matplotlib.pyplot as plt
''' '''
You are only required to fill the following functions You are only required to fill the following functions
...@@ -41,17 +42,15 @@ def mean_absolute_loss(xdata, ydata, weights): ...@@ -41,17 +42,15 @@ def mean_absolute_loss(xdata, ydata, weights):
guess = np.dot(xdata,weights) guess = np.dot(xdata,weights)
samples = np.shape(guess)[0] samples = np.shape(guess)[0]
err = (1/samples)*np.sum(np.absolute(ydata-guess)) err = 0.5*samples*np.sum(np.absolute(ydata-guess))
return err return err
raise NotImplementedError raise NotImplementedError
def mean_absolute_gradient(xdata, ydata, weights): def mean_absolute_gradient(xdata, ydata, weights):
samples = np.shape(xdata)[0]
guess = np.dot(xdata,weights) guess = np.dot(xdata,weights)
if np.sum(ydata-guess) < 0: gradient = (1/samples)*np.dot(xdata.T,(guess-ydata))
gradient = np.random.randint(0,10,np.shape(weights)[0])
else:
gradient = np.random.randint(-10,0,np.shape(weights)[0])
return gradient return gradient
raise NotImplementedError raise NotImplementedError
...@@ -60,15 +59,17 @@ def mean_log_cosh_loss(xdata, ydata, weights): ...@@ -60,15 +59,17 @@ def mean_log_cosh_loss(xdata, ydata, weights):
guess = np.dot(xdata,weights) guess = np.dot(xdata,weights)
samples = np.shape(guess)[0] samples = np.shape(guess)[0]
err = (1/samples)*np.sum(np.square(ydata-guess)) err = samples*np.sum(np.log(np.cosh(ydata-guess)))
return err return err
raise NotImplementedError raise NotImplementedError
def mean_log_cosh_gradient(xdata, ydata, weights): def mean_log_cosh_gradient(xdata, ydata, weights):
guess = np.dot(xdata,weights) guess = np.dot(xdata,weights)
simplerr = np.multiply(2,ydata-guess)
samples = np.shape(guess)[0] samples = np.shape(guess)[0]
gradient = np.dot(xdata.T,np.tanh(guess-ydata)) derivative = np.divide(np.exp(simplerr)-1,np.exp(simplerr)+1)
gradient = (1/samples)*np.dot(xdata.T,derivative)
return gradient return gradient
raise NotImplementedError raise NotImplementedError
...@@ -91,10 +92,11 @@ def root_mean_squared_gradient(xdata, ydata, weights): ...@@ -91,10 +92,11 @@ def root_mean_squared_gradient(xdata, ydata, weights):
class LinearRegressor: class LinearRegressor:
def __init__(self,dims): def __init__(self, dims):
self.dims = dims self.dims = dims
self.W = np.zeros(dims) self.W = np.random.rand(dims)
#self.W = np.random.uniform(low=0.0, high=1.0, size=dims)
return return
raise NotImplementedError raise NotImplementedError
...@@ -140,16 +142,93 @@ def read_dataset(trainfile, testfile): ...@@ -140,16 +142,93 @@ def read_dataset(trainfile, testfile):
return np.array(xtrain), np.array(ytrain), np.array(xtest) return np.array(xtrain), np.array(ytrain), np.array(xtest)
def one_hot_encoding(value_list, classes):
res = np.eye(classes)[value_list.reshape(-1)]
return res.reshape(list(value_list.shape)+[classes])
norm_dict = {}
dictionary_of_classes_for_features = {
2 : 5,
3 : 25,
5: 8,
7: 5
}
dictionary_of_days = {
'Monday' : 1,
'Tuesday': 2,
'Wednesday': 3,
'Thursday' : 4,
'Friday' : 5,
'Saturday': 6,
'Sunday' : 7
}
def slicer(arr, beg, end):
return np.array([i[beg:end] for i in arr]).reshape(-1, 1)
"""
#for normalization of parametes 'wind speed' and 'humidity' uncoment
def normalize(arr):
arr = arr
if not norm_dict: # make dictionary once at training to be used later during test
# for i in range(arr.shape[1]):
norm_dict['init'] = [np.min(arr), np.max(arr)]
#norm_dict['init'] = [np.mean(arr), np.std(arr)]
# for i in range(arr.shape[1]):
arr = np.array([(x - norm_dict['init'][0])/(norm_dict['init'][1] - norm_dict['init'][0]) for x in arr]) # min-max
#arr = np.array([(x - norm_dict['init'][0])/(norm_dict['init'][1]) for x in arr]) # standardization
return arr
"""
# 4 hours band
# 1/-1 encoding
# use feature selection and tuning in Jupyter then apply it back here
def preprocess_dataset(xdata, ydata=None): def preprocess_dataset(xdata, ydata=None):
xdata = xdata[:,[2,3,4,7,9]]
xdata = xdata.astype('float32') # converting weekdays to numeric for one_hot_encoding
bias = np.ones((np.shape(xdata)[0],1)) """
xdata = np.concatenate((bias,xdata),axis=1)
if ydata is None: #for normalization of parametes 'wind speed' and 'humidity' uncoment
return xdata xdata[:, 10] = normalize(xdata[:, 10].astype('float'))# normalized
ydata = ydata.astype('float32') xdata[:, 11] = normalize(xdata[:, 10].astype('float'))"""
return xdata,ydata xdata[:, 5] = [dictionary_of_days[i] for i in xdata[:, 5]]
raise NotImplementedError
cat_cols = [2, 3, 5, 7]
for i in cat_cols:
# dropping 2 columns for C-1 encoding and removing additional 0 column
t = one_hot_encoding(xdata[:, i].astype('int'), dictionary_of_classes_for_features[i])[:, 2:]
xdata = np.concatenate((xdata, t),axis=1)
xdata = np.delete(xdata, cat_cols, 1) # removing useless columns
xdata = np.delete(xdata, 6, 1)
xdata = np.delete(xdata, 8, 1)
# extracting features from date
month = slicer(xdata[:, 1], 5,7)
t = one_hot_encoding(month[:,0].astype('int'), 13)[:, 2:]
xdata = np.concatenate((xdata, t), axis=1)
date = slicer(xdata[:, 1], 8, 10)
week = np.ceil(date.astype('int') / 7) # week of month
t = one_hot_encoding(week[:,0].astype('int'), 6)[:, 2:]
xdata = np.concatenate((xdata, t), axis=1)
xdata = xdata[:,2:] # dropping first 2 unnecessary columns
print(xdata[0:5])
xdata = xdata.astype('float32')
bias = np.ones((np.shape(xdata)[0],1))
xdata = np.concatenate((bias,xdata),axis=1)
if ydata is None:
return xdata
ydata = ydata.astype('float32')
return xdata,ydata
raise NotImplementedError
dictionary_of_losses = { dictionary_of_losses = {
'mse':(mean_squared_loss, mean_squared_gradient), 'mse':(mean_squared_loss, mean_squared_gradient),
...@@ -158,26 +237,51 @@ dictionary_of_losses = { ...@@ -158,26 +237,51 @@ dictionary_of_losses = {
'logcosh':(mean_log_cosh_loss, mean_log_cosh_gradient), 'logcosh':(mean_log_cosh_loss, mean_log_cosh_gradient),
} }
def main(): """
#For outliers removal from wind speed column uncomment
def out(x, std, mean):
if ((x < mean + 2 * std)and (x > mean - 2 * std)):
return 0
else:
return 1
def outlier(xtrain, ytrain, std, mean):
a =[]
for i in xtrain[:, 11].astype('float32'):
a.append(out(i,std, mean))
a = np.array(a)
xdata = np.concatenate((xtrain, a.reshape(-1, 1)), axis=1)
ytrain = np.delete(ytrain, np.argwhere(xdata[:, -1].astype('int') > 0), 0)
xdata = np.delete(xdata, np.argwhere(xdata[:, -1].astype('int') > 0), 0)
xdata = np.delete(xdata, -1, 1)
return (xdata, ytrain)"""
# You are free to modify the main function as per your requirements. def main():
# You are free to modify the main function as per your requirements.
# Uncomment the below lines and pass the appropriate value # Uncomment the below lines and pass the appropriate value
xtrain, ytrain, xtest = read_dataset(args.train_file, args.test_file) xtrain, ytrain, xtest = read_dataset(args.train_file, args.test_file)
xtrainprocessed, ytrainprocessed = preprocess_dataset(xtrain, ytrain)
xtestprocessed = preprocess_dataset(xtest) """
#For outliers removal from wind speed column uncomment
std = np.std(xtrain[:, 11].astype('float32'))
mean = np.mean(xtrain[:, 11].astype('float32'))
xtrain, ytrain =outlier(xtrain, ytrain, std, mean)"""
xtrainprocessed, ytrainprocessed = preprocess_dataset(xtrain, ytrain)
xtestprocessed = preprocess_dataset(xtest)
model = LinearRegressor(np.shape(xtrainprocessed)[1]) model = LinearRegressor(np.shape(xtrainprocessed)[1])
# The loss function is provided by command line argument # The loss function is provided by command line argument
loss_fn, loss_grad = dictionary_of_losses[args.loss] loss_fn, loss_grad = dictionary_of_losses[args.loss]
errlog = model.train(xtrainprocessed, ytrainprocessed, loss_fn, loss_grad, args.epoch, args.lr) errlog = model.train(xtrainprocessed, ytrainprocessed, loss_fn, loss_grad, args.epoch, args.lr)
ytest = model.predict(xtestprocessed) ytest = model.predict(xtestprocessed)
ytest = ytest.astype('int') ytest = ytest.astype('int')
output = [(i,np.absolute(ytest[i])) for i in range(len(ytest))] output = [(i,np.absolute(ytest[i])) for i in range(len(ytest))]
np.savetxt("output.csv",output,delimiter=',',fmt="%d",header="instance (id),count",comments='') np.savetxt("output.csv",output,delimiter=',',fmt="%d",header="instance (id),count",comments='')
np.savetxt("error.log",errlog,delimiter='\n',fmt="%f") np.savetxt("error.log",errlog,delimiter='\n',fmt="%f")
if __name__ == '__main__': if __name__ == '__main__':
...@@ -192,4 +296,4 @@ if __name__ == '__main__': ...@@ -192,4 +296,4 @@ if __name__ == '__main__':
args = parser.parse_args() args = parser.parse_args()
main() main()
\ No newline at end of file
instance (id),count instance (id),count
0,308 0,494
1,169 1,49
2,89 2,285
3,296 3,336
4,38 4,120
5,352 5,158
6,354 6,236
7,266 7,442
8,269 8,202
9,60 9,33
10,277 10,297
11,102 11,3
12,139 12,191
13,49 13,76
14,114 14,38
15,236 15,435
16,50 16,9
17,90 17,47
18,281 18,321
19,170 19,57
20,20 20,44
21,246 21,258
22,150 22,22
23,254 23,263
24,57 24,32
25,275 25,232
26,24 26,34
27,350 27,188
28,138 28,226
29,241 29,313
30,225 30,117
31,265 31,130
32,291 32,464
33,158 33,211
34,284 34,138
35,93 35,180
36,19 36,83
37,98 37,312
38,141 38,206
39,193 39,208
40,373 40,159
41,223 41,230
42,279 42,343
43,268 43,287
44,198 44,245
45,117 45,75
46,55 46,15
47,120 47,331
48,174 48,198
49,286 49,287
50,206 50,224
51,367 51,220
52,288 52,246
53,4 53,68
54,183 54,201
55,359 55,260
56,234 56,253
57,332 57,198
58,181 58,190
59,86 59,25
60,263 60,222
61,167 61,247
62,278 62,483
63,348 63,352
64,257 64,470
65,320 65,557
66,229 66,245
67,188 67,115
68,338 68,337
69,257 69,201
70,240 70,285
71,251 71,59
72,249 72,294
73,236 73,446
74,210 74,229
75,253 75,489
76,102 76,31
77,184 77,207
78,314 78,227
79,213 79,236
80,202 80,250
81,196 81,385
82,178 82,58
83,34 83,35
84,210 84,159
85,225 85,246
86,232 86,262
87,168 87,173
88,216 88,253
89,263 89,328
90,232 90,267
91,254 91,284
92,178 92,28
93,128 93,111
94,184 94,242
95,201 95,241
96,116 96,27
97,268 97,156
98,229 98,267
99,210 99,258
100,194 100,208
101,210 101,247
102,53 102,0
103,76 103,58
104,188 104,412
105,104 105,153
106,260 106,422
107,278 107,473
108,126 108,62
109,240 109,182
110,85 110,36
111,115 111,69
112,70 112,65
113,217 113,289
114,38 114,88
115,133 115,86
116,245 116,321
117,53 117,14
118,268 118,227
119,159 119,157
120,116 120,341
121,89 121,22
122,166 122,366
123,213 123,241
124,25 124,25
125,115 125,66
126,24 126,109
127,199 127,64
128,200 128,190
129,295 129,504
130,9 130,53
131,257 131,361
132,25 132,53
133,307 133,173
134,324 134,139
135,1 135,97
136,149 136,243
137,255 137,270
138,70 138,19
139,267 139,67
140,244 140,292
141,218 141,180
142,211 142,273
143,268 143,315
144,331 144,343
145,165 145,183
146,303 146,369
147,361 147,395
148,270 148,487
149,350 149,242
150,92 150,133
151,234 151,240
152,110 152,160
153,315 153,343
154,171 154,404
155,232 155,283
156,351 156,489
157,114 157,30
158,202 158,209
159,139 159,175
160,159 160,160
161,295 161,170
162,219 162,386
163,202 163,113
164,200 164,93
165,100 165,135
166,186 166,219
167,268 167,289
168,185 168,220
169,324 169,380
170,154 170,114
171,182 171,154
172,125 172,100
173,279 173,244
174,291 174,170
175,191 175,103
176,287 176,506
177,318 177,292
178,139 178,60
179,139 179,61
180,20 180,58
181,287 181,273
182,300 182,382
183,184 183,25
184,167 184,241
185,35 185,62
186,147 186,383
187,208 187,22
188,147 188,60
189,218 189,293
190,262 190,263
191,59 191,42
192,298 192,341
193,145 193,226
194,193 194,354
195,61 195,31
196,260 196,245
197,20 197,1
198,156 198,75
199,157 199,25
200,223 200,227
201,143 201,50
202,207 202,426
203,304 203,312
204,299 204,103
205,179 205,73
206,324 206,329
207,338 207,226
208,119 208,42
209,175 209,75
210,236 210,441
211,138 211,53
212,94 212,48
213,67 213,7
214,333 214,190
215,245 215,290
216,296 216,468
217,105 217,20
218,101 218,280
219,164 219,166
220,227 220,427
221,90 221,108
222,295 222,480
223,203 223,193
224,314 224,513
225,225 225,243
226,338 226,528
227,67 227,11
228,197 228,346
229,263 229,348
230,211 230,279
231,190 231,233
232,290 232,207
233,123 233,60
234,359 234,170
235,147 235,68
236,100 236,9
237,293 237,277
238,124 238,79
239,22 239,5
240,324 240,196
241,256 241,307
242,176 242,119
243,46 243,11
244,179 244,25
245,106 245,2
246,107 246,77
247,389 247,205
248,341 248,265
249,188 249,47
250,174 250,185
251,20 251,71
252,63 252,18
253,81 253,142
254,328 254,199
255,369 255,153
256,101 256,36
257,5 257,61
258,93 258,129
259,47 259,13
260,239 260,253
261,123 261,95
262,341 262,150
263,217 263,291
264,160 264,333
265,141 265,175
266,164 266,79
267,239 267,251
268,120 268,70
269,99 269,81
270,354 270,166
271,270 271,272
272,223 272,231
273,301 273,262
274,144 274,171
275,333 275,368
276,253 276,291
277,192 277,122
278,186 278,160
279,256 279,88
280,153 280,242
281,96 281,58
282,244 282,280
283,123 283,109
284,291 284,318
285,54 285,19
286,215 286,400
287,262 287,330
288,142 288,60
289,78 289,71
290,187 290,58
291,89 291,11
292,271 292,333
293,402 293,160
294,65 294,30
295,75 295,74
296,316 296,519
297,347 297,549
298,130 298,94
299,217 299,274
300,243 300,256
301,326 301,491
302,234 302,261
303,302 303,189
304,181 304,113
305,284 305,274
306,316 306,556
307,218 307,143
308,252 308,319
309,270 309,493
310,120 310,39
311,8 311,56
312,178 312,257
313,149 313,124
314,154 314,380
315,141 315,12
316,122 316,173
317,127 317,108
318,272 318,494
319,0 319,29
320,161 320,199
321,286 321,135
322,254 322,298
323,85 323,73
324,140 324,71
325,250 325,242
326,37 326,11
327,207 327,196
328,202 328,263
329,120 329,99
330,111 330,202
331,171 331,407
332,27 332,71
333,155 333,95
334,343 334,383
335,174 335,77
336,177 336,184
337,91 337,20
338,314 338,273
339,190 339,212
340,150 340,184
341,312 341,136
342,117 342,137
343,76 343,69
344,302 344,334
345,159 345,181
346,124 346,296
347,245 347,292
348,189 348,231
349,158 349,151
350,44 350,19
351,163 351,375
352,295 352,472
353,83 353,141
354,175 354,380
355,210 355,252
356,202 356,199
357,334 357,393
358,69 358,44
359,152 359,181
360,224 360,287
361,218 361,141
362,167 362,31
363,148 363,172
364,198 364,406
365,296 365,467
366,204 366,294
367,334 367,413
368,261 368,466
369,206 369,242
370,214 370,223
371,280 371,343
372,199 372,416
373,218 373,281
374,40 374,10
375,65 375,56
376,88 376,2
377,95 377,32
378,101 378,30
379,195 379,57
380,202 380,257
381,294 381,135
382,188 382,103
383,275 383,345
384,168 384,253
385,52 385,31
386,239 386,286
387,102 387,50
388,169 388,40
389,307 389,198
390,356 390,343
391,52 391,66
392,154 392,206
393,152 393,97
394,175 394,76
395,241 395,403
396,199 396,96
397,226 397,35
398,99 398,43
399,138 399,326
400,249 400,309
401,145 401,55
402,52 402,95
403,304 403,494
404,119 404,43
405,91 405,180
406,282 406,488
407,329 407,257
408,81 408,43
409,185 409,220
410,186 410,389
411,96 411,163
412,54 412,0
413,141 413,10
414,108 414,132
415,166 415,131
416,190 416,243
417,300 417,280
418,21 418,141
419,185 419,218
420,323 420,238
421,116 421,332
422,185 422,183
423,189 423,260
424,208 424,277
425,297 425,274
426,219 426,409
427,232 427,380
428,377 428,157
429,340 429,499
430,316 430,335
431,142 431,69
432,147 432,63
433,223 433,244
434,275 434,173
435,236 435,263
436,107 436,58
437,83 437,60
438,198 438,232
439,206 439,393
440,197 440,295
441,7 441,84
442,242 442,214
443,254 443,429
444,78 444,162
445,300 445,293
446,192 446,125
447,311 447,176
448,263 448,52
449,244 449,302
450,262 450,504
451,334 451,234
452,100 452,63
453,227 453,426
454,77 454,133
455,80 455,19
456,62 456,12
457,333 457,233
458,100 458,7
459,159 459,117
460,171 460,248
461,277 461,353
462,65 462,23
463,350 463,259
464,134 464,41
465,102 465,115
466,246 466,315
467,75 467,28
468,248 468,338
469,364 469,170
470,45 470,53
471,153 471,127
472,214 472,290
473,120 473,58
474,143 474,223
475,192 475,58
476,319 476,338
477,141 477,144
478,165 478,67
479,191 479,273
480,148 480,175
481,104 481,6
482,123 482,104
483,88 483,5
484,155 484,84
485,101 485,122
486,166 486,176
487,99 487,64
488,174 488,161
489,277 489,187
490,259 490,268
491,141 491,119
492,110 492,163
493,151 493,56
494,223 494,429
495,209 495,226
496,148 496,59
497,29 497,16
498,242 498,301
499,154 499,46
500,237 500,285
501,164 501,74
502,129 502,77
503,63 503,93
504,164 504,144
505,206 505,256
506,303 506,168
507,258 507,229
508,47 508,4
509,237 509,220
510,173 510,235
511,229 511,432
512,380 512,254
513,127 513,140
514,333 514,151
515,347 515,410
516,93 516,10
517,307 517,401
518,129 518,159
519,146 519,104
520,93 520,194
521,287 521,314
522,197 522,117
523,103 523,13
524,269 524,320
525,308 525,213
526,81 526,146
527,102 527,86
528,92 528,64
529,266 529,286
530,234 530,203
531,281 531,328
532,138 532,166
533,131 533,79
534,273 534,448
535,294 535,135
536,195 536,165
537,292 537,231
538,121 538,204
539,300 539,383
540,104 540,124
541,208 541,255
542,256 542,123
543,248 543,437
544,184 544,114
545,185 545,189
546,288 546,287
547,159 547,124
548,254 548,334
549,173 549,106
550,40 550,49
551,206 551,80
552,316 552,135
553,180 553,211
554,71 554,0
555,39 555,245
556,52 556,259
557,204 557,250
558,154 558,225
559,198 559,232
560,259 560,137
561,94 561,44
562,202 562,203
563,196 563,428
564,169 564,209
565,197 565,262
566,288 566,294
567,241 567,302
568,190 568,233
569,9 569,33
570,237 570,325
571,139 571,72
572,350 572,265
573,38 573,0
574,183 574,419
575,88 575,17
576,320 576,316
577,114 577,26
578,268 578,310
579,265 579,492
580,321 580,200
581,147 581,99
582,290 582,353
583,75 583,136
584,346 584,345
585,136 585,146
586,95 586,15
587,137 587,196
588,163 588,96
589,284 589,330
590,288 590,364
591,271 591,318
592,102 592,68
593,120 593,52
594,87 594,46
595,35 595,37
596,131 596,335
597,305 597,365
598,94 598,37
599,88 599,123
600,256 600,302
601,279 601,331
602,83 602,5
603,78 603,51
604,160 604,88
605,138 605,111
606,111 606,176
607,222 607,387
608,68 608,43
609,31 609,75
610,178 610,35
611,286 611,133
612,66 612,13
613,371 613,233
614,160 614,182
615,136 615,196
616,146 616,101
617,300 617,291
618,121 618,194
619,116 619,337
620,305 620,284
621,199 621,401
622,126 622,82
623,289 623,328
624,176 624,211
625,191 625,291
626,89 626,15
627,172 627,341
628,116 628,101
629,204 629,100
630,112 630,191
631,141 631,326
632,355 632,185
633,138 633,184
634,253 634,69
635,54 635,21
636,268 636,291
637,168 637,84
638,213 638,260
639,204 639,426
640,127 640,112
641,267 641,215
642,136 642,37
643,324 643,564
644,146 644,75
645,122 645,48
646,96 646,143
647,173 647,220
648,174 648,219
649,210 649,241
650,307 650,161
651,296 651,201
652,264 652,225
653,235 653,263
654,0 654,70
655,64 655,71
656,314 656,289
657,143 657,72
658,263 658,266
659,184 659,24
660,216 660,388
661,250 661,299
662,153 662,251
663,173 663,105
664,150 664,349
665,140 665,93
666,204 666,51
667,110 667,40
668,310 668,183
669,156 669,196
670,234 670,113
671,111 671,39
672,17 672,54
673,223 673,256
674,191 674,197
675,108 675,146
676,266 676,440
677,133 677,83
678,215 678,276
679,144 679,59
680,61 680,35
681,203 681,164
682,180 682,443
683,169 683,181
684,202 684,217
685,259 685,312
686,309 686,387
687,128 687,132
688,287 688,100
689,134 689,55
690,324 690,347
691,334 691,198
692,273 692,176
693,204 693,90
694,286 694,136
695,319 695,465
696,293 696,285
697,263 697,98
698,164 698,206
699,272 699,205
700,115 700,50
701,264 701,305
702,329 702,320
703,314 703,235
704,249 704,44
705,77 705,8
706,9 706,62
707,311 707,523
708,103 708,50
709,145 709,214
710,27 710,89
711,212 711,389
712,294 712,26
713,176 713,222
714,177 714,261
715,243 715,242
716,169 716,177
717,321 717,359
718,193 718,195
719,225 719,80
720,237 720,36
721,174 721,242
722,198 722,250
723,158 723,220
724,128 724,218
725,303 725,284
726,307 726,404
727,220 727,185
728,53 728,31
729,194 729,272
730,61 730,0
731,59 731,30
732,341 732,578
733,214 733,252
734,277 734,300
735,112 735,34
736,150 736,366
737,174 737,353
738,185 738,178
739,197 739,209
740,197 740,272
741,170 741,275
742,293 742,107
743,123 743,40
744,155 744,210
745,280 745,278
746,323 746,113
747,117 747,153
748,107 748,84
749,41 749,11
750,193 750,338
751,39 751,0
752,175 752,248
753,169 753,190
754,21 754,66
755,110 755,113
756,176 756,115
757,141 757,203
758,184 758,212
759,250 759,228
760,225 760,297
761,257 761,221
762,347 762,193
763,295 763,93
764,165 764,213
765,101 765,204
766,111 766,22
767,246 767,203
768,119 768,47
769,304 769,135
770,178 770,359
771,305 771,373
772,244 772,268
773,9 773,63
774,1 774,92
775,183 775,299
776,160 776,110
777,28 777,13
778,316 778,153
779,177 779,116
780,195 780,249
781,324 781,126
782,241 782,404
783,131 783,114
784,345 784,279
785,286 785,311
786,189 786,209
787,156 787,87
788,146 788,383
789,138 789,166
790,179 790,391
791,72 791,176
792,250 792,282
793,186 793,171
794,269 794,424
795,128 795,108
796,291 796,97
797,50 797,32
798,298 798,115
799,96 799,19
800,82 800,36
801,90 801,133
802,309 802,204
803,69 803,42
804,106 804,59
805,61 805,46
806,199 806,409
807,220 807,246
808,73 808,29
809,271 809,319
810,196 810,346
811,138 811,70
812,198 812,192
813,18 813,68
814,326 814,373
815,290 815,378
816,323 816,226
817,323 817,474
818,189 818,222
819,309 819,380
820,305 820,371
821,284 821,339
822,292 822,493
823,156 823,65
824,115 824,72
825,235 825,280
826,281 826,322
827,153 827,7
828,306 828,327
829,220 829,71
830,196 830,75
831,108 831,125
832,345 832,339
833,268 833,98
834,227 834,243
835,141 835,346
836,323 836,220
837,199 837,380
838,229 838,75
839,134 839,141
840,183 840,240
841,214 841,253
842,284 842,203
843,185 843,218
844,186 844,209
845,235 845,273
846,294 846,310
847,213 847,293
848,219 848,254
849,313 849,386
850,287 850,497
851,55 851,262
852,319 852,469
853,135 853,359
854,82 854,126
855,287 855,512
856,129 856,88
857,298 857,320
858,209 858,0
859,121 859,94
860,312 860,316
861,67 861,103
862,102 862,89
863,324 863,180
864,63 864,13
865,201 865,358
866,54 866,11
867,214 867,224
868,190 868,125
869,172 869,268
870,184 870,203
871,147 871,97
872,27 872,52
873,188 873,253
874,311 874,352
875,88 875,9
876,20 876,14
877,341 877,150
878,234 878,331
879,192 879,212
880,323 880,475
881,204 881,89
882,337 882,270
883,341 883,279
884,345 884,290
885,258 885,438
886,76 886,294
887,282 887,290
888,209 888,236
889,205 889,249
890,355 890,193
891,153 891,56
892,107 892,32
893,314 893,183
894,271 894,226
895,141 895,349
896,157 896,42
897,11 897,88
898,309 898,385
899,170 899,262
900,79 900,19
901,293 901,342
902,91 902,17
903,307 903,169
904,197 904,395
905,257 905,283
906,294 906,215
907,122 907,298
908,154 908,377
909,275 909,315
910,174 910,229
911,306 911,225
912,352 912,515
913,100 913,132
914,207 914,265
915,128 915,112
916,169 916,196
917,305 917,223
918,249 918,297
919,199 919,197
920,26 920,36
921,115 921,85
922,329 922,259
923,371 923,311
924,329 924,283
925,172 925,173
926,163 926,201
927,85 927,126
928,232 928,263
929,314 929,237
930,161 930,169
931,272 931,83
932,240 932,410
933,95 933,123
934,86 934,51
935,189 935,270
936,150 936,196
937,201 937,346
938,61 938,37
939,213 939,155
940,268 940,174
941,150 941,347
942,310 942,101
943,129 943,159
944,183 944,51
945,139 945,360
946,123 946,101
947,187 947,403
948,64 948,14
949,167 949,49
950,48 950,61
951,181 951,268
952,183 952,221
953,74 953,76
954,71 954,2
955,301 955,347
956,198 956,403
957,92 957,19
958,324 958,549
959,213 959,95
960,169 960,84
961,342 961,287
962,83 962,90
963,308 963,497
964,36 964,35
965,208 965,57
966,171 966,230
967,313 967,391
968,73 968,31
969,181 969,255
970,158 970,177
971,265 971,127
972,255 972,218
973,106 973,316
974,6 974,102
975,312 975,212
976,61 976,53
977,304 977,489
978,132 978,50
979,290 979,454
980,215 980,178
981,185 981,231
982,178 982,33
983,137 983,137
984,196 984,427
985,363 985,256
986,258 986,306
987,247 987,463
988,217 988,394
989,99 989,108
990,225 990,252
991,212 991,217
992,70 992,110
993,233 993,416
994,20 994,94
995,3 995,43
996,19 996,117
997,124 997,76
998,208 998,286
999,107 999,106
1000,152 1000,75
1001,25 1001,34
1002,210 1002,257
1003,327 1003,226
1004,276 1004,310
1005,323 1005,358
1006,244 1006,356
1007,64 1007,114
1008,59 1008,122
1009,279 1009,93
1010,79 1010,273
1011,291 1011,484
1012,81 1012,65
1013,29 1013,18
1014,298 1014,164
1015,172 1015,209
1016,350 1016,226
1017,260 1017,173
1018,254 1018,156
1019,137 1019,135
1020,174 1020,248
1021,190 1021,242
1022,177 1022,100
1023,309 1023,357
1024,83 1024,22
1025,264 1025,292
1026,33 1026,72
1027,122 1027,183
1028,7 1028,25
1029,255 1029,278
1030,311 1030,533
1031,257 1031,259
1032,291 1032,360
1033,356 1033,129
1034,96 1034,46
1035,163 1035,382
1036,210 1036,264
1037,0 1037,78
1038,122 1038,37
1039,381 1039,167
1040,106 1040,46
1041,169 1041,58
1042,312 1042,558
1043,188 1043,395
1044,42 1044,84
1045,129 1045,57
1046,210 1046,258
1047,149 1047,129
1048,254 1048,218
1049,254 1049,89
1050,94 1050,9
1051,225 1051,217
1052,153 1052,167
1053,359 1053,237
1054,128 1054,188
1055,159 1055,211
1056,250 1056,296
1057,154 1057,50
1058,139 1058,52
1059,87 1059,314
1060,52 1060,45
1061,153 1061,142
1062,206 1062,262
1063,352 1063,334
1064,207 1064,76
1065,115 1065,50
1066,266 1066,74
1067,198 1067,278
1068,124 1068,51
1069,327 1069,472
1070,7 1070,126
1071,138 1071,73
1072,237 1072,397
1073,178 1073,79
1074,241 1074,297
1075,208 1075,174
1076,242 1076,300
1077,347 1077,416
1078,282 1078,318
1079,71 1079,1
1080,218 1080,215
1081,178 1081,136
1082,152 1082,37
1083,230 1083,237
1084,139 1084,38
1085,255 1085,246
1086,197 1086,336
1087,239 1087,149
1088,83 1088,26
1089,154 1089,192
1090,42 1090,29
1091,124 1091,86
1092,81 1092,16
1093,108 1093,314
1094,61 1094,34
1095,145 1095,28
1096,239 1096,121
1097,287 1097,93
1098,309 1098,378
1099,178 1099,100
1100,203 1100,273
1101,314 1101,529
1102,226 1102,16
1103,249 1103,69
1104,111 1104,90
1105,188 1105,214
1106,141 1106,38
1107,67 1107,157
1108,194 1108,246
1109,327 1109,500
1110,318 1110,170
1111,268 1111,281
1112,98 1112,66
1113,166 1113,70
1114,128 1114,26
1115,296 1115,470
1116,316 1116,134
1117,142 1117,295
1118,20 1118,6
1119,14 1119,43
1120,267 1120,466
1121,155 1121,216
1122,164 1122,93
1123,159 1123,226
1124,102 1124,120
1125,111 1125,88
1126,323 1126,230
1127,169 1127,37
1128,322 1128,176
1129,270 1129,88
1130,202 1130,281
1131,368 1131,164
1132,165 1132,51
1133,138 1133,66
1134,106 1134,62
1135,24 1135,80
1136,193 1136,334
1137,359 1137,229
1138,75 1138,101
1139,56 1139,25
1140,321 1140,360
1141,234 1141,45
1142,114 1142,55
1143,92 1143,22
1144,370 1144,250
1145,146 1145,72
1146,234 1146,183
1147,170 1147,228
1148,102 1148,63
1149,200 1149,221
1150,206 1150,258
1151,114 1151,98
1152,35 1152,73
1153,111 1153,87
1154,255 1154,204
1155,47 1155,134
1156,216 1156,165
1157,172 1157,115
1158,99 1158,77
1159,113 1159,17
1160,135 1160,161
1161,258 1161,229
1162,174 1162,252
1163,59 1163,157
1164,153 1164,153
1165,270 1165,505
1166,26 1166,51
1167,205 1167,232
1168,102 1168,63
1169,315 1169,181
1170,94 1170,92
1171,20 1171,39
1172,323 1172,500
1173,16 1173,9
1174,188 1174,337
1175,244 1175,302
1176,253 1176,207
1177,213 1177,250
1178,103 1178,127
1179,109 1179,58
1180,233 1180,118
1181,173 1181,186
1182,134 1182,168
1183,113 1183,41
1184,146 1184,203
1185,129 1185,185
1186,160 1186,78
1187,175 1187,69
1188,246 1188,240
1189,24 1189,50
1190,208 1190,260
1191,305 1191,218
1192,200 1192,219
1193,173 1193,67
1194,106 1194,310
1195,27 1195,11
1196,122 1196,45
1197,136 1197,130
1198,227 1198,246
1199,298 1199,328
1200,116 1200,70
1201,127 1201,86
1202,71 1202,129
1203,35 1203,143
1204,24 1204,62
1205,103 1205,51
1206,163 1206,382
1207,198 1207,284
1208,187 1208,277
1209,59 1209,234
1210,120 1210,27
1211,68 1211,34
1212,144 1212,46
1213,221 1213,288
1214,189 1214,124
1215,232 1215,437
1216,179 1216,417
1217,119 1217,86
1218,180 1218,332
1219,251 1219,275
1220,260 1220,282
1221,324 1221,179
1222,98 1222,87
1223,168 1223,106
1224,174 1224,268
1225,277 1225,357
1226,241 1226,39
1227,341 1227,270
1228,286 1228,156
1229,32 1229,115
1230,47 1230,5
1231,234 1231,267
1232,166 1232,266
1233,341 1233,269
1234,314 1234,518
1235,285 1235,185
1236,205 1236,223
1237,241 1237,298
1238,343 1238,533
1239,304 1239,318
1240,23 1240,67
1241,310 1241,100
1242,143 1242,326
1243,189 1243,185
1244,131 1244,100
1245,180 1245,136
1246,333 1246,175
1247,341 1247,165
1248,112 1248,111
1249,174 1249,46
1250,271 1250,341
1251,129 1251,230
1252,68 1252,292
1253,77 1253,137
1254,154 1254,367
1255,324 1255,145
1256,67 1256,136
1257,245 1257,298
1258,316 1258,111
1259,255 1259,257
1260,132 1260,198
1261,287 1261,500
1262,295 1262,485
1263,215 1263,217
1264,132 1264,192
1265,150 1265,88
1266,244 1266,307
1267,289 1267,255
1268,183 1268,209
1269,259 1269,57
1270,218 1270,231
1271,268 1271,290
1272,114 1272,126
1273,202 1273,225
1274,99 1274,58
1275,370 1275,376
1276,52 1276,60
1277,121 1277,84
1278,174 1278,41
1279,250 1279,309
1280,359 1280,417
1281,96 1281,115
1282,11 1282,94
1283,129 1283,230
1284,217 1284,19
1285,150 1285,202
1286,3 1286,72
1287,204 1287,287
1288,115 1288,91
1289,154 1289,182
1290,305 1290,282
1291,80 1291,131
1292,341 1292,274
1293,316 1293,171
1294,294 1294,147
1295,376 1295,182
1296,295 1296,509
1297,145 1297,48
1298,148 1298,213
1299,154 1299,166
1300,107 1300,135
1301,157 1301,215
1302,51 1302,5
1303,33 1303,14
1304,168 1304,270
1305,223 1305,261
1306,350 1306,268
1307,183 1307,69
1308,329 1308,274
1309,131 1309,147
1310,191 1310,242
1311,303 1311,177
1312,202 1312,153
1313,136 1313,130
1314,49 1314,68
1315,295 1315,515
1316,138 1316,106
1317,212 1317,245
1318,91 1318,182
1319,275 1319,324
1320,159 1320,223
1321,263 1321,232
1322,353 1322,390
1323,185 1323,192
1324,258 1324,318
1325,157 1325,100
1326,186 1326,141
1327,133 1327,60
1328,138 1328,342
1329,280 1329,89
1330,47 1330,89
1331,194 1331,215
1332,154 1332,385
1333,227 1333,402
1334,127 1334,132
1335,162 1335,187
1336,238 1336,51
1337,304 1337,494
1338,87 1338,30
1339,129 1339,356
1340,337 1340,286
1341,236 1341,278
1342,265 1342,423
1343,109 1343,117
1344,212 1344,274
1345,267 1345,360
1346,227 1346,279
1347,240 1347,236
1348,217 1348,253
1349,203 1349,271
1350,141 1350,177
1351,261 1351,286
1352,149 1352,311
1353,241 1353,413
1354,160 1354,101
1355,241 1355,400
1356,240 1356,438
1357,56 1357,248
1358,77 1358,32
1359,270 1359,519
1360,61 1360,53
1361,249 1361,289
1362,325 1362,514
1363,59 1363,270
1364,275 1364,340
1365,225 1365,241
1366,176 1366,264
1367,124 1367,81
1368,169 1368,202
1369,29 1369,15
1370,73 1370,168
1371,235 1371,284
1372,162 1372,206
1373,224 1373,234
1374,310 1374,492
1375,207 1375,82
1376,116 1376,65
1377,190 1377,270
1378,168 1378,77
1379,202 1379,121
1380,322 1380,379
1381,385 1381,150
1382,288 1382,375
1383,288 1383,259
1384,361 1384,228
1385,113 1385,292
1386,167 1386,200
1387,124 1387,32
1388,204 1388,258
1389,99 1389,47
1390,220 1390,240
1391,319 1391,234
1392,166 1392,53
1393,209 1393,408
1394,127 1394,41
1395,162 1395,175
1396,204 1396,278
1397,143 1397,221
1398,216 1398,224
1399,227 1399,261
1400,91 1400,169
1401,91 1401,307
1402,100 1402,20
1403,311 1403,53
1404,173 1404,111
1405,29 1405,74
1406,15 1406,86
1407,81 1407,23
1408,281 1408,364
1409,47 1409,41
1410,305 1410,365
1411,296 1411,319
1412,64 1412,52
1413,184 1413,240
1414,246 1414,278
1415,154 1415,107
1416,216 1416,107
1417,299 1417,117
1418,65 1418,40
1419,148 1419,62
1420,167 1420,404
1421,102 1421,54
1422,244 1422,296
1423,265 1423,295
1424,158 1424,53
1425,7 1425,45
1426,160 1426,60
1427,176 1427,106
1428,155 1428,384
1429,265 1429,317
1430,210 1430,235
1431,354 1431,357
1432,171 1432,419
1433,39 1433,102
1434,197 1434,124
1435,86 1435,7
1436,233 1436,135
1437,235 1437,290
1438,166 1438,267
1439,75 1439,26
1440,95 1440,23
1441,85 1441,9
1442,330 1442,365
1443,214 1443,92
1444,174 1444,62
1445,231 1445,296
1446,336 1446,359
1447,332 1447,366
1448,318 1448,127
1449,357 1449,384
1450,52 1450,40
1451,282 1451,305
1452,21 1452,19
1453,116 1453,138
1454,131 1454,133
1455,288 1455,247
1456,225 1456,80
1457,192 1457,278
1458,249 1458,194
1459,84 1459,2
1460,78 1460,91
1461,142 1461,165
1462,28 1462,66
1463,93 1463,90
1464,136 1464,202
1465,230 1465,307
1466,241 1466,299
1467,232 1467,410
1468,143 1468,48
1469,307 1469,314
1470,180 1470,90
1471,157 1471,134
1472,162 1472,110
1473,106 1473,50
1474,131 1474,54
1475,258 1475,163
1476,249 1476,418
1477,204 1477,426
1478,316 1478,205
1479,286 1479,298
1480,316 1480,342
1481,195 1481,75
1482,196 1482,396
1483,189 1483,220
1484,282 1484,394
1485,140 1485,151
1486,65 1486,49
1487,76 1487,120
1488,207 1488,389
1489,329 1489,236
1490,155 1490,94
1491,183 1491,58
1492,123 1492,190
1493,15 1493,159
1494,139 1494,40
1495,193 1495,173
1496,169 1496,35
1497,324 1497,283
1498,79 1498,266
1499,376 1499,192
1500,284 1500,343
1501,39 1501,136
1502,305 1502,275
1503,359 1503,246
1504,38 1504,17
1505,2 1505,91
1506,202 1506,205
1507,91 1507,65
1508,140 1508,181
1509,25 1509,63
1510,120 1510,67
1511,3 1511,107
1512,190 1512,72
1513,87 1513,6
1514,268 1514,178
1515,207 1515,384
1516,288 1516,336
1517,258 1517,421
1518,141 1518,227
1519,324 1519,545
1520,90 1520,45
1521,256 1521,423
1522,106 1522,148
1523,214 1523,231
1524,70 1524,20
1525,167 1525,120
1526,297 1526,345
1527,15 1527,89
1528,252 1528,415
1529,17 1529,36
1530,191 1530,263
1531,70 1531,20
1532,124 1532,19
1533,131 1533,185
1534,213 1534,11
1535,206 1535,204
1536,181 1536,94
1537,195 1537,61
1538,340 1538,226
1539,233 1539,290
1540,259 1540,209
1541,134 1541,64
1542,96 1542,50
1543,182 1543,84
1544,230 1544,320
1545,347 1545,157
1546,265 1546,357
1547,173 1547,219
1548,156 1548,173
1549,107 1549,16
1550,190 1550,215
1551,142 1551,184
1552,156 1552,156
1553,276 1553,243
1554,298 1554,211
1555,80 1555,275
1556,241 1556,261
1557,280 1557,271
1558,323 1558,245
1559,277 1559,188
1560,100 1560,52
1561,28 1561,79
1562,216 1562,260
1563,218 1563,318
1564,212 1564,100
1565,151 1565,199
1566,222 1566,292
1567,225 1567,266
1568,314 1568,528
1569,306 1569,200
1570,195 1570,72
1571,288 1571,332
1572,149 1572,195
1573,33 1573,13
1574,198 1574,223
1575,175 1575,218
1576,221 1576,196
1577,229 1577,207
1578,208 1578,453
1579,149 1579,213
1580,28 1580,51
1581,331 1581,480
1582,281 1582,330
1583,66 1583,305
1584,300 1584,343
1585,173 1585,230
1586,263 1586,38
1587,216 1587,255
1588,164 1588,160
1589,10 1589,182
1590,303 1590,117
1591,327 1591,496
1592,39 1592,252
1593,155 1593,197
1594,269 1594,293
1595,319 1595,255
1596,153 1596,155
1597,103 1597,200
1598,141 1598,116
1599,265 1599,463
1600,190 1600,170
1601,141 1601,230
1602,305 1602,281
1603,179 1603,83
1604,110 1604,74
1605,211 1605,311
1606,265 1606,299
1607,20 1607,28
1608,323 1608,490
1609,276 1609,317
1610,272 1610,462
1611,202 1611,263
1612,178 1612,86
1613,225 1613,297
1614,103 1614,82
1615,72 1615,28
1616,230 1616,206
1617,65 1617,17
1618,94 1618,18
1619,89 1619,35
1620,37 1620,8
1621,139 1621,231
1622,197 1622,225
1623,347 1623,395
1624,319 1624,342
1625,12 1625,34
1626,364 1626,149
1627,120 1627,106
1628,300 1628,319
1629,246 1629,303
1630,125 1630,347
1631,142 1631,209
1632,201 1632,184
1633,169 1633,174
1634,217 1634,198
1635,185 1635,189
1636,288 1636,264
1637,303 1637,340
1638,303 1638,171
1639,111 1639,86
1640,176 1640,181
1641,287 1641,470
1642,268 1642,154
1643,258 1643,216
1644,248 1644,402
1645,276 1645,291
1646,190 1646,202
1647,38 1647,13
1648,97 1648,9
1649,218 1649,236
1650,98 1650,91
1651,255 1651,271
1652,251 1652,98
1653,343 1653,543
1654,157 1654,121
1655,62 1655,14
1656,117 1656,145
1657,217 1657,71
1658,288 1658,364
1659,28 1659,87
1660,144 1660,129
1661,288 1661,247
1662,274 1662,311
1663,32 1663,25
1664,266 1664,68
1665,74 1665,17
1666,94 1666,54
1667,36 1667,75
1668,122 1668,19
1669,192 1669,399
1670,124 1670,56
1671,189 1671,208
1672,102 1672,138
1673,171 1673,74
1674,286 1674,377
1675,66 1675,13
1676,199 1676,399
1677,308 1677,481
1678,188 1678,98
1679,281 1679,457
1680,271 1680,275
1681,60 1681,25
1682,308 1682,479
1683,128 1683,108
1684,137 1684,64
1685,157 1685,131
1686,273 1686,350
1687,93 1687,66
1688,173 1688,72
1689,224 1689,18
1690,131 1690,41
1691,281 1691,267
1692,107 1692,111
1693,158 1693,131
1694,251 1694,303
1695,273 1695,62
1696,194 1696,123
1697,126 1697,34
1698,94 1698,13
1699,244 1699,307
1700,163 1700,208
1701,184 1701,267
1702,192 1702,200
1703,314 1703,280
1704,98 1704,27
1705,264 1705,294
1706,182 1706,417
1707,57 1707,11
1708,207 1708,19
1709,235 1709,290
1710,17 1710,21
1711,148 1711,194
1712,201 1712,207
1713,151 1713,148
1714,213 1714,201
1715,50 1715,26
1716,284 1716,247
1717,237 1717,277
1718,115 1718,338
1719,98 1719,55
1720,28 1720,3
1721,69 1721,25
1722,137 1722,189
1723,151 1723,231
1724,179 1724,234
1725,158 1725,207
1726,220 1726,90
1727,200 1727,329
1728,164 1728,78
1729,213 1729,252
1730,123 1730,150
1731,274 1731,442
1732,177 1732,189
1733,134 1733,90
1734,136 1734,49
1735,204 1735,339
1736,227 1736,95
1737,50 1737,57
1738,182 1738,405
1739,223 1739,227
1740,185 1740,213
1741,118 1741,31
1742,137 1742,153
1743,337 1743,153
1744,305 1744,278
1745,316 1745,133
1746,257 1746,152
1747,340 1747,228
1748,336 1748,379
1749,180 1749,213
1750,174 1750,65
1751,62 1751,14
1752,307 1752,170
1753,88 1753,13
1754,232 1754,306
1755,230 1755,282
1756,29 1756,3
1757,212 1757,270
1758,192 1758,60
1759,202 1759,142
1760,277 1760,118
1761,48 1761,78
1762,269 1762,320
1763,211 1763,260
1764,137 1764,96
1765,271 1765,479
1766,310 1766,468
1767,84 1767,8
1768,85 1768,52
1769,298 1769,338
1770,126 1770,70
1771,147 1771,69
1772,280 1772,269
1773,107 1773,47
1774,200 1774,425
1775,66 1775,33
1776,198 1776,231
1777,155 1777,187
1778,91 1778,16
1779,52 1779,53
1780,253 1780,357
1781,206 1781,282
1782,155 1782,76
1783,133 1783,348
1784,252 1784,319
1785,179 1785,71
1786,236 1786,434
1787,228 1787,124
1788,140 1788,144
1789,236 1789,277
1790,98 1790,87
1791,246 1791,252
1792,222 1792,149
1793,212 1793,240
1794,120 1794,141
1795,260 1795,298
1796,259 1796,340
1797,192 1797,224
1798,272 1798,335
1799,189 1799,303
1800,51 1800,129
1801,102 1801,145
1802,162 1802,34
1803,196 1803,80
1804,215 1804,175
1805,68 1805,142
1806,244 1806,340
1807,165 1807,339
1808,119 1808,100
1809,281 1809,351
1810,102 1810,26
1811,275 1811,347
1812,332 1812,189
1813,209 1813,8
1814,326 1814,128
1815,82 1815,22
1816,227 1816,383
1817,346 1817,224
1818,214 1818,288
1819,369 1819,175
1820,182 1820,173
1821,301 1821,335
1822,235 1822,283
1823,105 1823,16
1824,350 1824,186
1825,169 1825,65
1826,184 1826,361
1827,310 1827,327
1828,228 1828,261
1829,361 1829,382
1830,47 1830,25
1831,16 1831,34
1832,96 1832,14
1833,198 1833,221
1834,172 1834,218
1835,82 1835,42
1836,291 1836,321
1837,225 1837,151
1838,315 1838,192
1839,190 1839,225
1840,102 1840,107
1841,253 1841,419
1842,345 1842,172
1843,303 1843,316
1844,228 1844,279
1845,148 1845,29
1846,197 1846,207
1847,86 1847,29
1848,331 1848,522
1849,5 1849,81
1850,69 1850,24
1851,379 1851,347
1852,294 1852,210
1853,244 1853,282
1854,219 1854,299
1855,253 1855,454
1856,108 1856,157
1857,302 1857,498
1858,140 1858,101
1859,286 1859,128
1860,340 1860,340
1861,10 1861,3
1862,208 1862,257
1863,128 1863,195
1864,148 1864,77
1865,156 1865,72
1866,268 1866,327
1867,195 1867,67
1868,193 1868,16
1869,269 1869,279
1870,201 1870,450
1871,159 1871,229
1872,265 1872,359
1873,197 1873,138
1874,221 1874,463
1875,356 1875,117
1876,327 1876,244
1877,246 1877,227
1878,313 1878,370
1879,273 1879,331
1880,163 1880,70
1881,284 1881,351
1882,172 1882,106
1883,85 1883,106
1884,203 1884,37
1885,141 1885,33
1886,87 1886,56
1887,247 1887,306
1888,41 1888,79
1889,272 1889,348
1890,251 1890,273
1891,28 1891,102
1892,352 1892,134
1893,133 1893,80
1894,178 1894,172
1895,128 1895,6
1896,148 1896,85
1897,121 1897,85
1898,98 1898,84
1899,277 1899,368
1900,257 1900,316
1901,114 1901,85
1902,185 1902,230
1903,244 1903,301
1904,333 1904,224
1905,233 1905,406
1906,249 1906,283
1907,351 1907,395
1908,98 1908,86
1909,68 1909,46
1910,255 1910,321
1911,243 1911,247
1912,326 1912,171
1913,120 1913,125
1914,220 1914,222
1915,37 1915,12
1916,156 1916,77
1917,196 1917,206
1918,115 1918,29
1919,249 1919,281
1920,140 1920,175
1921,52 1921,60
1922,345 1922,319
1923,331 1923,337
1924,97 1924,12
1925,79 1925,108
1926,129 1926,41
1927,279 1927,443
1928,339 1928,508
1929,329 1929,250
1930,160 1930,78
1931,313 1931,400
1932,60 1932,70
1933,133 1933,48
1934,129 1934,361
1935,252 1935,298
1936,357 1936,389
1937,209 1937,382
1938,330 1938,350
1939,278 1939,68
1940,28 1940,13
1941,255 1941,252
1942,201 1942,230
1943,109 1943,61
1944,106 1944,6
1945,45 1945,51
1946,138 1946,82
1947,220 1947,279
1948,244 1948,427
1949,71 1949,131
1950,61 1950,21
1951,54 1951,26
1952,111 1952,109
1953,270 1953,153
1954,151 1954,68
1955,214 1955,250
1956,169 1956,60
1957,40 1957,28
1958,375 1958,328
1959,7 1959,31
1960,118 1960,49
1961,358 1961,277
1962,312 1962,317
1963,314 1963,526
1964,274 1964,246
1965,297 1965,255
1966,132 1966,119
1967,158 1967,367
1968,263 1968,287
1969,38 1969,28
1970,337 1970,150
1971,47 1971,23
1972,10 1972,84
1973,181 1973,186
1974,162 1974,391
1975,188 1975,245
1976,361 1976,374
1977,310 1977,360
1978,331 1978,321
1979,353 1979,382
1980,120 1980,224
1981,203 1981,23
1982,275 1982,238
1983,57 1983,54
1984,218 1984,238
1985,279 1985,246
1986,87 1986,33
1987,150 1987,105
1988,213 1988,296
1989,312 1989,120
1990,16 1990,44
1991,179 1991,85
1992,205 1992,288
1993,293 1993,494
1994,218 1994,146
1995,232 1995,36
1996,110 1996,95
1997,246 1997,228
1998,220 1998,297
1999,78 1999,78
2000,134 2000,171
2001,105 2001,126
2002,91 2002,0
2003,123 2003,38
2004,56 2004,16
2005,335 2005,156
2006,264 2006,169
2007,134 2007,157
2008,126 2008,310
2009,137 2009,165
2010,321 2010,303
2011,120 2011,55
2012,112 2012,315
2013,223 2013,253
2014,317 2014,373
2015,360 2015,128
2016,168 2016,89
2017,56 2017,109
2018,270 2018,466
2019,117 2019,7
2020,256 2020,160
2021,274 2021,248
2022,245 2022,272
2023,288 2023,342
2024,70 2024,14
2025,279 2025,323
2026,172 2026,194
2027,93 2027,13
2028,164 2028,199
2029,223 2029,426
2030,136 2030,174
2031,303 2031,318
2032,334 2032,188
2033,214 2033,278
2034,178 2034,198
2035,169 2035,218
2036,125 2036,43
2037,161 2037,197
2038,100 2038,1
2039,368 2039,174
2040,272 2040,277
2041,110 2041,23
2042,171 2042,388
2043,279 2043,297
2044,312 2044,123
2045,199 2045,64
2046,317 2046,326
2047,40 2047,53
2048,183 2048,421
2049,311 2049,470
2050,329 2050,339
2051,71 2051,62
2052,35 2052,129
2053,131 2053,119
2054,124 2054,197
2055,4 2055,73
2056,126 2056,216
2057,81 2057,11
2058,265 2058,399
2059,129 2059,90
2060,155 2060,110
2061,214 2061,23
2062,275 2062,62
2063,110 2063,54
2064,156 2064,249
2065,226 2065,264
2066,167 2066,232
2067,136 2067,74
2068,79 2068,0
2069,81 2069,52
2070,303 2070,317
2071,137 2071,9
2072,117 2072,355
2073,221 2073,34
2074,252 2074,316
2075,132 2075,208
2076,306 2076,355
2077,311 2077,180
2078,145 2078,263
2079,326 2079,196
2080,231 2080,310
2081,117 2081,332
2082,357 2082,474
2083,360 2083,134
2084,116 2084,111
2085,282 2085,501
2086,156 2086,182
2087,94 2087,64
2088,138 2088,78
2089,167 2089,19
2090,143 2090,63
2091,93 2091,14
2092,1 2092,56
2093,225 2093,408
2094,303 2094,393
2095,278 2095,319
2096,99 2096,16
2097,200 2097,425
2098,52 2098,19
2099,228 2099,439
2100,21 2100,53
2101,273 2101,324
2102,20 2102,75
2103,152 2103,183
2104,384 2104,265
2105,216 2105,248
2106,369 2106,144
2107,136 2107,157
2108,257 2108,458
2109,207 2109,225
2110,255 2110,259
2111,172 2111,81
2112,125 2112,158
2113,28 2113,19
2114,142 2114,72
2115,320 2115,536
2116,134 2116,65
2117,121 2117,46
2118,124 2118,309
2119,161 2119,70
2120,70 2120,61
2121,148 2121,143
2122,185 2122,200
2123,88 2123,66
2124,150 2124,187
2125,124 2125,182
2126,338 2126,401
2127,206 2127,115
2128,97 2128,74
2129,68 2129,28
2130,145 2130,131
2131,147 2131,110
2132,305 2132,251
2133,170 2133,50
2134,195 2134,147
2135,232 2135,270
2136,186 2136,226
2137,131 2137,134
2138,272 2138,496
2139,234 2139,255
2140,362 2140,284
2141,115 2141,96
2142,336 2142,354
2143,334 2143,409
2144,86 2144,13
2145,142 2145,106
2146,211 2146,178
2147,178 2147,216
2148,295 2148,300
2149,74 2149,138
2150,267 2150,230
2151,78 2151,0
2152,295 2152,525
2153,296 2153,308
2154,273 2154,289
2155,210 2155,236
2156,304 2156,288
2157,111 2157,178
2158,151 2158,207
2159,110 2159,136
2160,222 2160,233
2161,181 2161,253
2162,257 2162,466
2163,17 2163,67
2164,18 2164,30
2165,344 2165,265
2166,201 2166,286
2167,254 2167,312
2168,266 2168,429
2169,165 2169,214
2170,271 2170,314
2171,187 2171,274
2172,196 2172,420
2173,96 2173,11
2174,244 2174,280
2175,150 2175,38
2176,309 2176,367
2177,306 2177,322
2178,161 2178,231
2179,236 2179,428
2180,109 2180,19
2181,200 2181,273
2182,2 2182,119
2183,263 2183,464
2184,155 2184,117
2185,307 2185,283
2186,159 2186,95
2187,155 2187,84
2188,367 2188,250
2189,335 2189,525
2190,35 2190,13
2191,163 2191,44
2192,284 2192,322
2193,308 2193,139
2194,188 2194,54
2195,146 2195,213
2196,256 2196,304
2197,114 2197,161
2198,336 2198,465
2199,270 2199,479
2200,194 2200,205
2201,42 2201,114
2202,107 2202,98
2203,65 2203,40
2204,277 2204,333
2205,211 2205,146
2206,49 2206,17
2207,182 2207,213
2208,167 2208,10
2209,155 2209,211
2210,168 2210,148
2211,141 2211,88
2212,361 2212,233
2213,216 2213,397
2214,155 2214,242
2215,89 2215,9
2216,109 2216,52
2217,82 2217,60
2218,139 2218,144
2219,158 2219,272
2220,383 2220,392
2221,57 2221,6
2222,192 2222,271
2223,232 2223,263
2224,117 2224,39
2225,232 2225,248
2226,105 2226,24
2227,281 2227,293
2228,190 2228,72
2229,204 2229,244
2230,92 2230,157
2231,65 2231,38
2232,212 2232,282
2233,77 2233,13
2234,257 2234,55
2235,47 2235,52
2236,262 2236,261
2237,196 2237,422
2238,250 2238,286
2239,51 2239,263
2240,125 2240,179
2241,291 2241,501
2242,254 2242,321
2243,253 2243,290
2244,290 2244,381
2245,183 2245,73
2246,298 2246,287
2247,250 2247,307
2248,176 2248,259
2249,183 2249,411
2250,65 2250,16
2251,304 2251,508
2252,324 2252,196
2253,227 2253,264
2254,294 2254,211
2255,146 2255,47
2256,237 2256,317
2257,304 2257,498
2258,83 2258,0
2259,153 2259,250
2260,304 2260,308
2261,354 2261,230
2262,223 2262,261
2263,100 2263,147
2264,268 2264,229
2265,284 2265,345
2266,209 2266,25
2267,278 2267,479
2268,165 2268,182
2269,105 2269,273
2270,106 2270,111
2271,286 2271,126
2272,49 2272,117
2273,253 2273,102
2274,282 2274,356
2275,124 2275,209
2276,240 2276,306
2277,249 2277,321
2278,267 2278,211
2279,373 2279,129
2280,258 2280,295
2281,35 2281,45
2282,143 2282,170
2283,207 2283,247
2284,102 2284,55
2285,119 2285,149
2286,355 2286,152
2287,109 2287,164
2288,347 2288,163
2289,343 2289,293
2290,200 2290,90
2291,79 2291,280
2292,124 2292,76
2293,69 2293,19
2294,152 2294,258
2295,110 2295,39
2296,47 2296,12
2297,196 2297,65
2298,39 2298,81
2299,253 2299,361
2300,102 2300,88
2301,267 2301,327
2302,290 2302,321
2303,334 2303,416
2304,189 2304,224
2305,364 2305,394
2306,174 2306,345
2307,169 2307,196
2308,192 2308,131
2309,136 2309,81
2310,258 2310,78
2311,103 2311,48
2312,70 2312,61
2313,178 2313,238
2314,198 2314,212
2315,26 2315,62
2316,268 2316,288
2317,199 2317,245
2318,47 2318,152
2319,270 2319,163
2320,206 2320,376
2321,50 2321,85
2322,66 2322,26
2323,214 2323,268
2324,290 2324,151
2325,84 2325,6
2326,341 2326,273
2327,90 2327,38
2328,22 2328,76
2329,86 2329,20
2330,199 2330,203
2331,321 2331,361
2332,90 2332,142
2333,80 2333,42
2334,381 2334,147
2335,51 2335,28
2336,152 2336,104
2337,109 2337,11
2338,322 2338,522
2339,270 2339,436
2340,26 2340,57
2341,290 2341,355
2342,324 2342,326
2343,125 2343,355
2344,329 2344,253
2345,59 2345,69
2346,188 2346,227
2347,291 2347,281
2348,90 2348,143
2349,190 2349,204
2350,141 2350,239
2351,179 2351,242
2352,264 2352,251
2353,260 2353,225
2354,188 2354,77
2355,0 2355,129
2356,304 2356,487
2357,260 2357,57
2358,204 2358,56
2359,157 2359,141
2360,39 2360,79
2361,285 2361,320
2362,310 2362,209
2363,281 2363,483
2364,305 2364,506
2365,315 2365,343
2366,31 2366,57
2367,155 2367,192
2368,161 2368,75
2369,320 2369,135
2370,295 2370,292
2371,202 2371,252
2372,316 2372,333
2373,293 2373,235
2374,93 2374,11
2375,234 2375,245
2376,316 2376,105
2377,251 2377,275
2378,188 2378,64
2379,354 2379,276
2380,270 2380,239
2381,101 2381,7
2382,154 2382,34
2383,327 2383,318
2384,339 2384,325
2385,61 2385,254
2386,105 2386,132
2387,333 2387,321
2388,64 2388,278
2389,293 2389,331
2390,286 2390,202
2391,298 2391,346
2392,226 2392,22
2393,88 2393,6
2394,77 2394,39
2395,256 2395,309
2396,197 2396,211
2397,295 2397,91
2398,215 2398,419
2399,237 2399,280
2400,181 2400,35
2401,77 2401,56
2402,61 2402,82
2403,277 2403,173
2404,281 2404,158
2405,115 2405,95
2406,319 2406,358
2407,135 2407,64
2408,183 2408,268
2409,150 2409,210
2410,193 2410,204
2411,357 2411,395
2412,134 2412,191
2413,214 2413,268
2414,80 2414,281
2415,38 2415,79
2416,50 2416,4
2417,266 2417,453
2418,273 2418,184
2419,167 2419,195
2420,326 2420,503
2421,157 2421,205
2422,320 2422,328
2423,156 2423,191
2424,179 2424,390
2425,176 2425,255
2426,129 2426,26
2427,129 2427,141
2428,199 2428,62
2429,58 2429,4
2430,284 2430,237
2431,305 2431,524
2432,189 2432,269
2433,127 2433,159
2434,206 2434,264
2435,319 2435,325
2436,265 2436,334
2437,182 2437,159
2438,122 2438,151
2439,63 2439,152
2440,140 2440,111
2441,286 2441,481
2442,147 2442,79
2443,160 2443,190
2444,269 2444,394
2445,196 2445,352
2446,20 2446,61
2447,389 2447,199
2448,263 2448,203
2449,267 2449,217
2450,56 2450,24
2451,106 2451,73
2452,273 2452,357
2453,251 2453,285
2454,8 2454,50
2455,272 2455,284
2456,208 2456,246
2457,316 2457,107
2458,251 2458,145
2459,309 2459,477
2460,245 2460,286
2461,194 2461,373
2462,364 2462,162
2463,346 2463,543
2464,193 2464,356
2465,138 2465,47
2466,211 2466,157
2467,197 2467,297
2468,226 2468,266
2469,249 2469,332
2470,142 2470,172
2471,334 2471,161
2472,255 2472,297
2473,282 2473,91
2474,95 2474,42
2475,295 2475,88
2476,255 2476,245
2477,195 2477,198
2478,272 2478,162
2479,161 2479,86
2480,90 2480,33
2481,192 2481,113
2482,287 2482,515
2483,16 2483,101
2484,263 2484,346
2485,263 2485,338
2486,190 2486,244
2487,197 2487,129
2488,312 2488,313
2489,143 2489,56
2490,159 2490,97
2491,150 2491,378
2492,305 2492,362
2493,113 2493,26
2494,360 2494,136
2495,240 2495,420
2496,159 2496,104
2497,258 2497,245
2498,55 2498,257
2499,286 2499,281
2500,311 2500,156
2501,106 2501,16
2502,192 2502,368
2503,277 2503,323
2504,154 2504,334
2505,314 2505,319
2506,336 2506,197
2507,108 2507,45
2508,231 2508,274
2509,256 2509,125
2510,180 2510,213
2511,35 2511,85
2512,114 2512,101
2513,104 2513,175
2514,227 2514,265
2515,192 2515,264
2516,106 2516,48
2517,141 2517,119
2518,339 2518,527
2519,143 2519,138
2520,164 2520,206
2521,354 2521,211
2522,277 2522,323
2523,68 2523,46
2524,85 2524,148
2525,301 2525,134
2526,286 2526,53
2527,94 2527,119
2528,120 2528,342
2529,108 2529,11
2530,85 2530,280
2531,108 2531,73
2532,154 2532,265
2533,261 2533,316
2534,153 2534,20
2535,269 2535,447
2536,119 2536,107
2537,284 2537,355
2538,231 2538,297
2539,122 2539,184
2540,2 2540,90
2541,343 2541,148
2542,41 2542,3
2543,94 2543,36
2544,102 2544,170
2545,187 2545,229
2546,310 2546,475
2547,297 2547,257
2548,238 2548,324
2549,95 2549,31
2550,294 2550,395
2551,259 2551,202
2552,153 2552,220
2553,328 2553,214
2554,291 2554,358
2555,153 2555,221
2556,139 2556,306
2557,66 2557,34
2558,166 2558,247
2559,232 2559,271
2560,282 2560,74
2561,222 2561,256
2562,218 2562,372
2563,261 2563,478
2564,176 2564,206
2565,82 2565,22
2566,272 2566,236
2567,127 2567,140
2568,132 2568,89
2569,293 2569,110
2570,110 2570,32
2571,155 2571,364
2572,57 2572,44
2573,329 2573,158
2574,250 2574,291
2575,162 2575,362
2576,38 2576,112
2577,257 2577,324
2578,289 2578,107
2579,86 2579,42
2580,13 2580,13
2581,216 2581,370
2582,337 2582,377
2583,312 2583,320
2584,359 2584,237
2585,190 2585,99
2586,175 2586,188
2587,203 2587,248
2588,196 2588,317
2589,345 2589,283
2590,227 2590,159
2591,121 2591,82
2592,128 2592,195
2593,138 2593,195
2594,315 2594,486
2595,208 2595,265
2596,43 2596,17
2597,299 2597,259
2598,126 2598,321
2599,310 2599,287
2600,343 2600,539
2601,286 2601,366
2602,190 2602,134
2603,131 2603,80
2604,129 2604,49
2605,132 2605,211
2606,86 2606,7
2607,77 2607,25
2608,277 2608,317
2609,183 2609,51
2610,186 2610,248
2611,284 2611,301
2612,21 2612,151
2613,203 2613,402
2614,157 2614,183
2615,190 2615,198
2616,124 2616,79
2617,302 2617,498
2618,70 2618,37
2619,164 2619,212
2620,112 2620,12
2621,179 2621,311
2622,104 2622,2
2623,192 2623,137
2624,270 2624,40
2625,131 2625,55
2626,253 2626,132
2627,219 2627,226
2628,250 2628,300
2629,268 2629,310
2630,183 2630,101
2631,105 2631,74
2632,145 2632,222
2633,360 2633,154
2634,277 2634,300
2635,120 2635,143
2636,269 2636,102
2637,239 2637,324
2638,38 2638,84
2639,219 2639,407
2640,164 2640,246
2641,285 2641,173
2642,222 2642,384
2643,208 2643,280
2644,107 2644,88
2645,200 2645,418
2646,25 2646,40
2647,97 2647,11
2648,240 2648,439
2649,225 2649,282
2650,178 2650,61
2651,32 2651,25
2652,169 2652,197
2653,117 2653,63
2654,168 2654,171
2655,350 2655,213
2656,106 2656,41
2657,93 2657,34
2658,30 2658,105
2659,150 2659,88
2660,244 2660,456
2661,173 2661,92
2662,86 2662,42
2663,183 2663,44
2664,256 2664,312
2665,81 2665,32
2666,344 2666,496
2667,176 2667,415
2668,4 2668,25
2669,322 2669,173
2670,100 2670,321
2671,124 2671,103
2672,168 2672,165
2673,265 2673,309
2674,156 2674,77
2675,227 2675,408
2676,161 2676,379
2677,59 2677,93
2678,278 2678,152
2679,103 2679,23
2680,250 2680,298
2681,288 2681,337
2682,277 2682,304
2683,328 2683,570
2684,310 2684,280
2685,315 2685,412
2686,93 2686,31
2687,101 2687,125
2688,330 2688,379
2689,178 2689,42
2690,19 2690,5
2691,251 2691,462
2692,59 2692,31
2693,33 2693,90
2694,119 2694,92
2695,244 2695,397
2696,252 2696,407
2697,332 2697,177
2698,68 2698,40
2699,172 2699,176
2700,322 2700,233
2701,195 2701,47
2702,191 2702,18
2703,164 2703,175
2704,95 2704,118
2705,190 2705,406
2706,112 2706,215
2707,103 2707,337
2708,326 2708,118
2709,173 2709,48
2710,180 2710,3
2711,310 2711,491
2712,233 2712,124
2713,159 2713,100
2714,297 2714,276
2715,172 2715,326
2716,168 2716,264
2717,267 2717,102
2718,99 2718,77
2719,197 2719,362
2720,46 2720,35
2721,184 2721,16
2722,287 2722,507
2723,240 2723,282
2724,133 2724,339
2725,105 2725,105
2726,139 2726,121
2727,276 2727,268
2728,297 2728,245
2729,192 2729,198
2730,329 2730,298
2731,99 2731,104
2732,114 2732,76
2733,11 2733,38
2734,31 2734,86
2735,165 2735,134
2736,210 2736,233
2737,343 2737,334
2738,254 2738,79
2739,122 2739,48
2740,16 2740,29
2741,97 2741,8
2742,166 2742,268
2743,165 2743,165
2744,223 2744,238
2745,177 2745,87
2746,159 2746,381
2747,170 2747,225
2748,299 2748,318
2749,222 2749,150
2750,134 2750,69
2751,41 2751,8
2752,351 2752,194
2753,335 2753,169
2754,201 2754,214
2755,295 2755,527
2756,213 2756,407
2757,121 2757,99
2758,116 2758,112
2759,250 2759,190
2760,88 2760,15
2761,68 2761,275
2762,225 2762,279
2763,95 2763,136
2764,6 2764,81
2765,238 2765,197
2766,220 2766,179
2767,124 2767,76
2768,216 2768,242
2769,172 2769,326
2770,190 2770,393
2771,27 2771,126
2772,150 2772,91
2773,38 2773,111
2774,213 2774,223
2775,38 2775,35
2776,126 2776,201
2777,277 2777,366
2778,289 2778,298
2779,287 2779,513
2780,262 2780,146
2781,259 2781,266
2782,94 2782,72
2783,226 2783,249
2784,101 2784,138
2785,215 2785,304
2786,183 2786,223
2787,325 2787,493
2788,132 2788,163
2789,279 2789,351
2790,245 2790,407
2791,249 2791,67
2792,254 2792,221
2793,139 2793,59
2794,34 2794,66
2795,305 2795,404
2796,254 2796,315
2797,224 2797,273
2798,139 2798,39
2799,204 2799,282
2800,114 2800,339
2801,129 2801,62
2802,341 2802,289
2803,241 2803,296
2804,241 2804,440
2805,241 2805,264
2806,150 2806,37
2807,256 2807,337
2808,380 2808,194
2809,34 2809,96
2810,113 2810,34
2811,150 2811,88
2812,286 2812,112
2813,0 2813,50
2814,2 2814,60
2815,278 2815,373
2816,184 2816,23
2817,179 2817,72
2818,138 2818,59
2819,187 2819,348
2820,287 2820,520
2821,241 2821,314
2822,284 2822,349
2823,44 2823,5
2824,134 2824,293
2825,106 2825,152
2826,322 2826,163
2827,96 2827,21
2828,89 2828,68
2829,140 2829,126
2830,270 2830,455
2831,160 2831,352
2832,290 2832,384
2833,39 2833,5
2834,134 2834,48
2835,241 2835,392
2836,64 2836,100
2837,150 2837,102
2838,264 2838,284
2839,12 2839,51
2840,289 2840,251
2841,132 2841,197
2842,196 2842,10
2843,258 2843,234
2844,109 2844,63
2845,42 2845,13
2846,163 2846,192
2847,127 2847,143
2848,318 2848,304
2849,356 2849,144
2850,142 2850,205
2851,82 2851,178
2852,108 2852,27
2853,0 2853,53
2854,47 2854,98
2855,133 2855,316
2856,87 2856,163
2857,243 2857,131
2858,91 2858,12
2859,54 2859,32
2860,242 2860,283
2861,55 2861,9
2862,166 2862,227
2863,97 2863,18
2864,61 2864,29
2865,235 2865,256
2866,215 2866,248
2867,94 2867,45
2868,158 2868,364
2869,228 2869,295
2870,178 2870,216
2871,193 2871,229
2872,68 2872,281
2873,166 2873,233
2874,279 2874,517
2875,163 2875,86
2876,117 2876,17
2877,143 2877,184
2878,227 2878,269
2879,117 2879,189
2880,37 2880,69
2881,248 2881,193
2882,167 2882,104
2883,153 2883,44
2884,251 2884,229
2885,272 2885,273
2886,26 2886,44
2887,182 2887,225
2888,194 2888,410
2889,48 2889,26
2890,19 2890,67
2891,263 2891,307
2892,169 2892,166
2893,298 2893,235
2894,328 2894,143
2895,337 2895,294
2896,262 2896,427
2897,173 2897,193
2898,223 2898,233
2899,350 2899,276
2900,124 2900,344
2901,201 2901,253
2902,282 2902,483
2903,261 2903,117
2904,258 2904,294
2905,113 2905,27
2906,160 2906,181
2907,139 2907,55
2908,129 2908,52
2909,78 2909,50
2910,291 2910,164
2911,263 2911,290
2912,119 2912,91
2913,27 2913,47
2914,254 2914,240
2915,209 2915,147
2916,358 2916,305
2917,94 2917,93
2918,145 2918,123
2919,113 2919,46
2920,256 2920,307
2921,263 2921,73
2922,12 2922,34
2923,146 2923,179
2924,153 2924,170
2925,113 2925,20
2926,153 2926,173
2927,277 2927,297
2928,204 2928,219
2929,188 2929,225
2930,332 2930,197
2931,135 2931,132
2932,271 2932,364
2933,168 2933,88
2934,69 2934,3
2935,90 2935,153
2936,145 2936,54
2937,328 2937,492
2938,298 2938,322
2939,122 2939,169
2940,308 2940,124
2941,262 2941,80
2942,267 2942,251
2943,160 2943,183
2944,237 2944,275
2945,394 2945,166
2946,198 2946,217
2947,92 2947,103
2948,133 2948,342
2949,214 2949,278
2950,58 2950,12
2951,85 2951,139
2952,135 2952,72
2953,197 2953,107
2954,133 2954,135
2955,16 2955,81
2956,195 2956,413
2957,8 2957,38
2958,89 2958,48
2959,204 2959,242
2960,142 2960,185
2961,169 2961,211
2962,240 2962,101
2963,76 2963,7
2964,127 2964,74
2965,300 2965,326
2966,237 2966,395
2967,112 2967,344
2968,272 2968,74
2969,66 2969,34
2970,259 2970,102
2971,66 2971,8
2972,210 2972,213
2973,103 2973,33
2974,295 2974,110
2975,335 2975,498
2976,168 2976,147
2977,253 2977,465
2978,212 2978,53
2979,237 2979,198
2980,223 2980,284
2981,195 2981,283
2982,333 2982,312
2983,326 2983,521
2984,242 2984,282
2985,76 2985,294
2986,30 2986,161
2987,124 2987,340
2988,24 2988,55
2989,251 2989,270
2990,245 2990,57
2991,71 2991,24
2992,239 2992,230
2993,33 2993,45
2994,212 2994,322
2995,290 2995,381
2996,72 2996,65
2997,229 2997,317
2998,218 2998,223
2999,155 2999,90
3000,183 3000,32
3001,185 3001,266
3002,91 3002,54
3003,225 3003,212
3004,143 3004,77
3005,92 3005,178
3006,272 3006,255
3007,39 3007,137
3008,240 3008,256
3009,240 3009,284
3010,329 3010,269
3011,278 3011,75
3012,152 3012,57
3013,4 3013,99
3014,116 3014,105
3015,89 3015,26
3016,304 3016,138
3017,194 3017,125
3018,33 3018,60
3019,213 3019,216
3020,232 3020,267
3021,46 3021,14
3022,290 3022,222
3023,350 3023,168
3024,326 3024,536
3025,220 3025,246
3026,323 3026,244
3027,95 3027,120
3028,310 3028,274
3029,98 3029,77
3030,286 3030,309
3031,163 3031,100
3032,163 3032,55
3033,151 3033,84
3034,244 3034,336
3035,176 3035,401
3036,195 3036,217
3037,157 3037,127
3038,77 3038,5
3039,163 3039,192
3040,259 3040,142
3041,225 3041,310
3042,45 3042,24
3043,101 3043,79
3044,355 3044,179
3045,122 3045,128
3046,197 3046,143
3047,184 3047,239
3048,91 3048,172
3049,192 3049,63
3050,280 3050,134
3051,191 3051,279
3052,197 3052,127
3053,92 3053,153
3054,197 3054,217
3055,211 3055,246
3056,178 3056,348
3057,289 3057,278
3058,263 3058,233
3059,338 3059,191
3060,220 3060,102
3061,345 3061,283
3062,186 3062,199
3063,84 3063,21
3064,320 3064,123
3065,33 3065,12
3066,150 3066,10
3067,83 3067,20
3068,177 3068,97
3069,270 3069,325
3070,264 3070,323
3071,166 3071,77
3072,183 3072,231
3073,220 3073,109
3074,113 3074,160
3075,188 3075,200
3076,190 3076,76
3077,120 3077,50
3078,214 3078,143
3079,124 3079,191
3080,119 3080,95
3081,304 3081,254
3082,90 3082,135
3083,272 3083,316
3084,219 3084,400
3085,245 3085,321
3086,207 3086,267
3087,276 3087,240
3088,172 3088,123
3089,86 3089,13
3090,94 3090,71
3091,134 3091,359
3092,34 3092,69
3093,182 3093,188
3094,181 3094,121
3095,168 3095,91
3096,177 3096,77
3097,305 3097,351
3098,69 3098,54
3099,122 3099,52
3100,312 3100,347
3101,186 3101,62
3102,336 3102,500
3103,360 3103,529
3104,243 3104,337
3105,153 3105,222
3106,268 3106,220
3107,83 3107,16
3108,58 3108,10
3109,70 3109,71
3110,256 3110,317
3111,164 3111,167
3112,194 3112,236
3113,312 3113,120
3114,100 3114,28
3115,232 3115,384
3116,328 3116,185
3117,101 3117,295
3118,51 3118,153
3119,233 3119,403
3120,226 3120,95
3121,161 3121,135
3122,350 3122,251
3123,299 3123,300
3124,307 3124,308
3125,236 3125,297
3126,23 3126,19
3127,235 3127,150
3128,268 3128,176
3129,323 3129,498
3130,256 3130,283
3131,120 3131,206
3132,364 3132,153
3133,301 3133,340
3134,147 3134,242
3135,122 3135,24
3136,132 3136,325
3137,257 3137,378
3138,169 3138,79
3139,154 3139,70
3140,319 3140,241
3141,274 3141,430
3142,69 3142,121
3143,157 3143,133
3144,302 3144,336
3145,120 3145,137
3146,52 3146,69
3147,27 3147,0
3148,100 3148,326
3149,345 3149,211
3150,168 3150,86
3151,216 3151,289
3152,191 3152,65
3153,262 3153,312
3154,242 3154,294
3155,33 3155,182
3156,312 3156,139
3157,56 3157,115
3158,31 3158,101
3159,223 3159,243
3160,198 3160,207
3161,315 3161,208
3162,234 3162,450
3163,103 3163,31
3164,248 3164,267
3165,65 3165,54
3166,152 3166,76
3167,237 3167,419
3168,249 3168,142
3169,202 3169,84
3170,249 3170,279
3171,321 3171,371
3172,65 3172,20
3173,67 3173,148
3174,137 3174,92
3175,77 3175,80
3176,102 3176,65
3177,172 3177,212
3178,188 3178,99
3179,264 3179,279
3180,133 3180,245
3181,97 3181,46
3182,44 3182,8
3183,163 3183,219
3184,190 3184,247
3185,122 3185,120
3186,213 3186,93
3187,75 3187,53
3188,189 3188,209
3189,282 3189,322
3190,43 3190,87
3191,223 3191,275
3192,267 3192,322
3193,185 3193,65
3194,179 3194,78
3195,327 3195,233
3196,102 3196,63
3197,185 3197,168
3198,27 3198,11
3199,320 3199,147
3200,30 3200,112
3201,3 3201,29
3202,167 3202,208
3203,13 3203,79
3204,120 3204,223
3205,120 3205,9
3206,277 3206,297
3207,102 3207,54
3208,225 3208,322
3209,169 3209,45
3210,322 3210,495
3211,77 3211,154
3212,258 3212,267
3213,53 3213,47
3214,254 3214,286
3215,211 3215,279
3216,195 3216,247
3217,300 3217,309
3218,290 3218,144
3219,204 3219,30
3220,171 3220,208
3221,179 3221,69
3222,186 3222,193
3223,267 3223,329
3224,103 3224,197
3225,75 3225,7
3226,228 3226,239
3227,124 3227,12
3228,310 3228,288
3229,329 3229,266
3230,124 3230,85
3231,354 3231,197
3232,279 3232,348
3233,284 3233,483
3234,203 3234,181
3235,256 3235,277
3236,167 3236,205
3237,69 3237,51
3238,188 3238,54
3239,233 3239,7
3240,159 3240,96
3241,146 3241,185
3242,143 3242,68
3243,99 3243,15
3244,123 3244,60
3245,144 3245,89
3246,167 3246,215
3247,136 3247,119
3248,194 3248,189
3249,92 3249,10
3250,208 3250,260
3251,152 3251,81
3252,253 3252,113
3253,105 3253,152
3254,201 3254,265
3255,23 3255,69
3256,230 3256,253
3257,276 3257,434
3258,316 3258,170
3259,137 3259,237
3260,330 3260,398
3261,122 3261,162
3262,220 3262,77
3263,53 3263,85
3264,45 3264,82
3265,190 3265,413
3266,137 3266,142
3267,321 3267,321
3268,148 3268,171
3269,86 3269,74
3270,165 3270,112
3271,103 3271,154
3272,189 3272,268
3273,262 3273,500
3274,270 3274,428
3275,114 3275,103
3276,216 3276,221
3277,161 3277,62
3278,53 3278,42
3279,216 3279,277
3280,235 3280,296
3281,103 3281,124
3282,249 3282,321
3283,175 3283,154
3284,55 3284,18
3285,185 3285,258
3286,19 3286,130
3287,77 3287,138
3288,273 3288,343
3289,181 3289,133
3290,314 3290,307
3291,226 3291,260
3292,159 3292,94
3293,230 3293,441
3294,116 3294,174
3295,263 3295,263
3296,295 3296,125
3297,94 3297,87
3298,129 3298,210
3299,312 3299,285
3300,214 3300,221
3301,129 3301,55
3302,347 3302,529
3303,71 3303,10
3304,118 3304,26
3305,231 3305,83
3306,97 3306,0
3307,249 3307,329
3308,136 3308,57
3309,183 3309,268
3310,362 3310,174
3311,115 3311,122
3312,54 3312,139
3313,256 3313,151
3314,199 3314,218
3315,250 3315,304
3316,251 3316,48
3317,268 3317,292
3318,249 3318,297
3319,327 3319,241
3320,38 3320,253
3321,243 3321,272
3322,295 3322,475
3323,135 3323,73
3324,135 3324,62
3325,69 3325,34
3326,194 3326,236
3327,125 3327,163
3328,21 3328,20
3329,291 3329,294
3330,152 3330,174
3331,208 3331,249
3332,133 3332,39
3333,87 3333,176
3334,14 3334,87
3335,168 3335,93
3336,88 3336,161
3337,245 3337,416
3338,298 3338,218
3339,8 3339,44
3340,118 3340,97
3341,216 3341,280
3342,183 3342,258
3343,144 3343,135
3344,134 3344,145
3345,197 3345,153
3346,290 3346,352
3347,68 3347,94
3348,58 3348,262
3349,130 3349,78
3350,227 3350,268
3351,119 3351,172
3352,298 3352,323
3353,108 3353,26
3354,284 3354,320
3355,119 3355,27
3356,42 3356,4
3357,86 3357,159
3358,183 3358,66
3359,25 3359,28
3360,30 3360,35
3361,212 3361,249
3362,92 3362,137
3363,327 3363,473
3364,234 3364,306
3365,177 3365,202
3366,178 3366,48
3367,277 3367,329
3368,234 3368,257
3369,102 3369,60
3370,166 3370,174
3371,164 3371,82
3372,92 3372,48
3373,146 3373,387
3374,258 3374,30
3375,29 3375,35
3376,178 3376,181
3377,159 3377,111
3378,140 3378,106
3379,276 3379,71
3380,128 3380,195
3381,232 3381,275
3382,298 3382,224
3383,65 3383,45
3384,257 3384,456
3385,305 3385,365
3386,294 3386,304
3387,218 3387,257
3388,259 3388,335
3389,136 3389,147
3390,321 3390,321
3391,144 3391,137
3392,103 3392,185
3393,178 3393,212
3394,14 3394,54
3395,299 3395,183
3396,146 3396,94
3397,209 3397,285
3398,207 3398,207
3399,119 3399,100
3400,154 3400,56
3401,314 3401,274
3402,127 3402,137
3403,202 3403,263
3404,102 3404,83
3405,195 3405,300
3406,60 3406,8
3407,149 3407,114
3408,164 3408,75
3409,334 3409,377
3410,150 3410,273
3411,298 3411,326
3412,277 3412,353
3413,154 3413,379
3414,184 3414,189
3415,133 3415,44
3416,220 3416,289
3417,326 3417,162
3418,289 3418,189
3419,307 3419,184
3420,188 3420,359
3421,206 3421,297
3422,153 3422,128
3423,331 3423,510
3424,246 3424,281
3425,49 3425,122
3426,162 3426,120
3427,167 3427,175
3428,74 3428,54
3429,253 3429,308
3430,371 3430,192
3431,196 3431,71
3432,117 3432,34
3433,3 3433,62
3434,158 3434,264
3435,40 3435,60
3436,284 3436,380
3437,380 3437,270
3438,100 3438,0
3439,63 3439,142
3440,224 3440,234
3441,302 3441,455
3442,119 3442,131
3443,88 3443,15
3444,138 3444,160
3445,63 3445,145
3446,262 3446,504
3447,133 3447,66
3448,211 3448,292
3449,305 3449,279
3450,253 3450,452
3451,229 3451,292
3452,150 3452,94
3453,11 3453,58
3454,196 3454,245
3455,343 3455,123
3456,195 3456,277
3457,39 3457,7
3458,352 3458,110
3459,134 3459,167
3460,188 3460,147
3461,231 3461,284
3462,279 3462,98
3463,235 3463,296
3464,224 3464,386
3465,277 3465,179
3466,165 3466,141
3467,92 3467,115
3468,260 3468,345
3469,48 3469,105
3470,124 3470,67
3471,246 3471,218
3472,54 3472,0
3473,286 3473,85
3474,109 3474,52
3475,182 3475,213
3476,96 3476,11
3477,174 3477,262
3478,32 3478,101
3479,313 3479,206
3480,314 3480,286
3481,73 3481,23
3482,291 3482,314
3483,115 3483,119
3484,329 3484,512
3485,81 3485,45
3486,54 3486,8
3487,98 3487,128
3488,289 3488,375
3489,189 3489,171
3490,293 3490,207
3491,190 3491,102
3492,115 3492,96
3493,251 3493,317
3494,328 3494,355
3495,25 3495,42
3496,105 3496,39
3497,270 3497,370
3498,171 3498,23
3499,199 3499,229
3500,325 3500,216
3501,200 3501,161
3502,330 3502,369
3503,119 3503,92
3504,144 3504,147
3505,82 3505,48
3506,193 3506,371
3507,277 3507,132
3508,92 3508,127
3509,153 3509,199
3510,198 3510,215
3511,302 3511,322
3512,192 3512,397
3513,124 3513,73
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment