activesupport 3.0.6 → 3.0.7.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of activesupport might be problematic. Click here for more details.

Files changed (186) hide show
  1. data/CHANGELOG +5 -0
  2. data/lib/active_support.rbc +1184 -0
  3. data/lib/active_support/all.rbc +85 -0
  4. data/lib/active_support/base64.rbc +578 -0
  5. data/lib/active_support/basic_object.rbc +536 -0
  6. data/lib/active_support/benchmarkable.rbc +885 -0
  7. data/lib/active_support/buffered_logger.rbc +2367 -0
  8. data/lib/active_support/cache.rbc +8453 -0
  9. data/lib/active_support/cache/file_store.rbc +4077 -0
  10. data/lib/active_support/cache/strategy/local_cache.rbc +2930 -0
  11. data/lib/active_support/callbacks.rbc +7817 -0
  12. data/lib/active_support/concern.rbc +729 -0
  13. data/lib/active_support/configurable.rbc +985 -0
  14. data/lib/active_support/core_ext.rbc +191 -0
  15. data/lib/active_support/core_ext/array.rbc +149 -0
  16. data/lib/active_support/core_ext/array/access.rbc +627 -0
  17. data/lib/active_support/core_ext/array/conversions.rbc +1922 -0
  18. data/lib/active_support/core_ext/array/extract_options.rbc +378 -0
  19. data/lib/active_support/core_ext/array/grouping.rbc +1121 -0
  20. data/lib/active_support/core_ext/array/random_access.rbc +745 -0
  21. data/lib/active_support/core_ext/array/uniq_by.rbc +444 -0
  22. data/lib/active_support/core_ext/array/wrap.rbc +226 -0
  23. data/lib/active_support/core_ext/benchmark.rbc +261 -0
  24. data/lib/active_support/core_ext/big_decimal.rbc +53 -0
  25. data/lib/active_support/core_ext/big_decimal/conversions.rbc +681 -0
  26. data/lib/active_support/core_ext/cgi.rbc +53 -0
  27. data/lib/active_support/core_ext/cgi/escape_skipping_slashes.rbc +666 -0
  28. data/lib/active_support/core_ext/class.rbc +117 -0
  29. data/lib/active_support/core_ext/class/attribute.rbc +566 -0
  30. data/lib/active_support/core_ext/class/attribute_accessors.rbc +940 -0
  31. data/lib/active_support/core_ext/class/delegating_attributes.rbc +1266 -0
  32. data/lib/active_support/core_ext/class/inheritable_attributes.rbc +3573 -0
  33. data/lib/active_support/core_ext/class/subclasses.rbc +1140 -0
  34. data/lib/active_support/core_ext/date/acts_like.rbc +193 -0
  35. data/lib/active_support/core_ext/date/calculations.rbc +4918 -0
  36. data/lib/active_support/core_ext/date/conversions.rbc +1178 -0
  37. data/lib/active_support/core_ext/date/freeze.rbc +545 -0
  38. data/lib/active_support/core_ext/date/zones.rbc +268 -0
  39. data/lib/active_support/core_ext/date_time/acts_like.rbc +253 -0
  40. data/lib/active_support/core_ext/date_time/calculations.rbc +2133 -0
  41. data/lib/active_support/core_ext/date_time/conversions.rbc +1548 -0
  42. data/lib/active_support/core_ext/date_time/zones.rbc +328 -0
  43. data/lib/active_support/core_ext/enumerable.rbc +1472 -0
  44. data/lib/active_support/core_ext/exception.rbc +160 -0
  45. data/lib/active_support/core_ext/file.rbc +69 -0
  46. data/lib/active_support/core_ext/file/atomic.rbc +730 -0
  47. data/lib/active_support/core_ext/file/path.rbc +161 -0
  48. data/lib/active_support/core_ext/float.rbc +53 -0
  49. data/lib/active_support/core_ext/float/rounding.rbc +284 -0
  50. data/lib/active_support/core_ext/hash.rbc +165 -0
  51. data/lib/active_support/core_ext/hash/conversions.rb +1 -1
  52. data/lib/active_support/core_ext/hash/conversions.rbc +2470 -0
  53. data/lib/active_support/core_ext/hash/deep_merge.rbc +409 -0
  54. data/lib/active_support/core_ext/hash/diff.rbc +344 -0
  55. data/lib/active_support/core_ext/hash/except.rbc +328 -0
  56. data/lib/active_support/core_ext/hash/indifferent_access.rbc +211 -0
  57. data/lib/active_support/core_ext/hash/keys.rbc +822 -0
  58. data/lib/active_support/core_ext/hash/reverse_merge.rbc +343 -0
  59. data/lib/active_support/core_ext/hash/slice.rbc +816 -0
  60. data/lib/active_support/core_ext/integer.rbc +85 -0
  61. data/lib/active_support/core_ext/integer/inflections.rbc +211 -0
  62. data/lib/active_support/core_ext/integer/multiple.rbc +214 -0
  63. data/lib/active_support/core_ext/integer/time.rbc +439 -0
  64. data/lib/active_support/core_ext/kernel.rbc +117 -0
  65. data/lib/active_support/core_ext/kernel/agnostics.rbc +304 -0
  66. data/lib/active_support/core_ext/kernel/debugger.rbc +489 -0
  67. data/lib/active_support/core_ext/kernel/reporting.rbc +1056 -0
  68. data/lib/active_support/core_ext/kernel/requires.rbc +461 -0
  69. data/lib/active_support/core_ext/kernel/singleton_class.rbc +309 -0
  70. data/lib/active_support/core_ext/load_error.rbc +575 -0
  71. data/lib/active_support/core_ext/logger.rbc +1654 -0
  72. data/lib/active_support/core_ext/module.rbc +229 -0
  73. data/lib/active_support/core_ext/module/aliasing.rbc +642 -0
  74. data/lib/active_support/core_ext/module/anonymous.rbc +204 -0
  75. data/lib/active_support/core_ext/module/attr_accessor_with_default.rbc +401 -0
  76. data/lib/active_support/core_ext/module/attr_internal.rbc +796 -0
  77. data/lib/active_support/core_ext/module/attribute_accessors.rbc +849 -0
  78. data/lib/active_support/core_ext/module/delegation.rbc +850 -0
  79. data/lib/active_support/core_ext/module/deprecation.rbc +219 -0
  80. data/lib/active_support/core_ext/module/introspection.rbc +1215 -0
  81. data/lib/active_support/core_ext/module/method_names.rbc +387 -0
  82. data/lib/active_support/core_ext/module/reachable.rbc +300 -0
  83. data/lib/active_support/core_ext/module/remove_method.rbc +350 -0
  84. data/lib/active_support/core_ext/module/synchronization.rbc +644 -0
  85. data/lib/active_support/core_ext/name_error.rbc +422 -0
  86. data/lib/active_support/core_ext/numeric.rbc +69 -0
  87. data/lib/active_support/core_ext/numeric/bytes.rbc +873 -0
  88. data/lib/active_support/core_ext/numeric/time.rbc +1299 -0
  89. data/lib/active_support/core_ext/object.rbc +213 -0
  90. data/lib/active_support/core_ext/object/acts_like.rbc +211 -0
  91. data/lib/active_support/core_ext/object/blank.rbc +1219 -0
  92. data/lib/active_support/core_ext/object/conversions.rbc +101 -0
  93. data/lib/active_support/core_ext/object/duplicable.rbc +1091 -0
  94. data/lib/active_support/core_ext/object/instance_variables.rbc +746 -0
  95. data/lib/active_support/core_ext/object/returning.rbc +222 -0
  96. data/lib/active_support/core_ext/object/to_json.rbc +259 -0
  97. data/lib/active_support/core_ext/object/to_param.rbc +1057 -0
  98. data/lib/active_support/core_ext/object/to_query.rbc +771 -0
  99. data/lib/active_support/core_ext/object/try.rbc +389 -0
  100. data/lib/active_support/core_ext/object/with_options.rbc +245 -0
  101. data/lib/active_support/core_ext/proc.rbc +416 -0
  102. data/lib/active_support/core_ext/process.rbc +53 -0
  103. data/lib/active_support/core_ext/process/daemon.rbc +466 -0
  104. data/lib/active_support/core_ext/range.rbc +101 -0
  105. data/lib/active_support/core_ext/range/blockless_step.rbc +551 -0
  106. data/lib/active_support/core_ext/range/conversions.rbc +447 -0
  107. data/lib/active_support/core_ext/range/include_range.rbc +340 -0
  108. data/lib/active_support/core_ext/range/overlaps.rbc +204 -0
  109. data/lib/active_support/core_ext/regexp.rbc +201 -0
  110. data/lib/active_support/core_ext/rexml.rbc +953 -0
  111. data/lib/active_support/core_ext/string.rbc +245 -0
  112. data/lib/active_support/core_ext/string/access.rbc +1254 -0
  113. data/lib/active_support/core_ext/string/behavior.rbc +174 -0
  114. data/lib/active_support/core_ext/string/conversions.rbc +964 -0
  115. data/lib/active_support/core_ext/string/encoding.rbc +295 -0
  116. data/lib/active_support/core_ext/string/exclude.rbc +192 -0
  117. data/lib/active_support/core_ext/string/filters.rbc +640 -0
  118. data/lib/active_support/core_ext/string/inflections.rbc +1320 -0
  119. data/lib/active_support/core_ext/string/interpolation.rbc +69 -0
  120. data/lib/active_support/core_ext/string/multibyte.rbc +690 -0
  121. data/lib/active_support/core_ext/string/output_safety.rbc +2035 -0
  122. data/lib/active_support/core_ext/string/starts_ends_with.rbc +151 -0
  123. data/lib/active_support/core_ext/string/strip.rbc +301 -0
  124. data/lib/active_support/core_ext/string/xchar.rbc +294 -0
  125. data/lib/active_support/core_ext/time/acts_like.rbc +193 -0
  126. data/lib/active_support/core_ext/time/calculations.rbc +5893 -0
  127. data/lib/active_support/core_ext/time/conversions.rbc +1193 -0
  128. data/lib/active_support/core_ext/time/marshal.rbc +1245 -0
  129. data/lib/active_support/core_ext/time/publicize_conversion_methods.rbc +259 -0
  130. data/lib/active_support/core_ext/time/zones.rbc +1061 -0
  131. data/lib/active_support/core_ext/uri.rbc +516 -0
  132. data/lib/active_support/dependencies.rbc +12236 -0
  133. data/lib/active_support/dependencies/autoload.rbc +1153 -0
  134. data/lib/active_support/deprecation.rbc +411 -0
  135. data/lib/active_support/deprecation/behaviors.rbc +1200 -0
  136. data/lib/active_support/deprecation/method_wrappers.rbc +628 -0
  137. data/lib/active_support/deprecation/proxy_wrappers.rbc +1925 -0
  138. data/lib/active_support/deprecation/reporting.rbc +1516 -0
  139. data/lib/active_support/descendants_tracker.rbc +1060 -0
  140. data/lib/active_support/duration.rbc +2432 -0
  141. data/lib/active_support/file_update_checker.rbc +595 -0
  142. data/lib/active_support/hash_with_indifferent_access.rbc +2560 -0
  143. data/lib/active_support/i18n.rbc +262 -0
  144. data/lib/active_support/i18n_railtie.rbc +1869 -0
  145. data/lib/active_support/inflections.rbc +2076 -0
  146. data/lib/active_support/inflector.rbc +117 -0
  147. data/lib/active_support/inflector/inflections.rbc +3699 -0
  148. data/lib/active_support/inflector/methods.rbc +1881 -0
  149. data/lib/active_support/inflector/transliterate.rbc +684 -0
  150. data/lib/active_support/json.rbc +69 -0
  151. data/lib/active_support/json/decoding.rbc +1045 -0
  152. data/lib/active_support/json/encoding.rbc +7108 -0
  153. data/lib/active_support/json/variable.rbc +392 -0
  154. data/lib/active_support/lazy_load_hooks.rbc +703 -0
  155. data/lib/active_support/log_subscriber.rbc +2081 -0
  156. data/lib/active_support/memoizable.rbc +2164 -0
  157. data/lib/active_support/multibyte.rbc +562 -0
  158. data/lib/active_support/multibyte/utils.rbc +1062 -0
  159. data/lib/active_support/notifications.rbc +1241 -0
  160. data/lib/active_support/notifications/fanout.rbc +1632 -0
  161. data/lib/active_support/notifications/instrumenter.rbc +1207 -0
  162. data/lib/active_support/option_merger.rbc +721 -0
  163. data/lib/active_support/ordered_hash.rbc +3808 -0
  164. data/lib/active_support/ordered_options.rbc +750 -0
  165. data/lib/active_support/railtie.rbc +1051 -0
  166. data/lib/active_support/rescuable.rbc +1389 -0
  167. data/lib/active_support/ruby/shim.rbc +229 -0
  168. data/lib/active_support/secure_random.rbc +0 -0
  169. data/lib/active_support/string_inquirer.rbc +332 -0
  170. data/lib/active_support/test_case.rbc +1002 -0
  171. data/lib/active_support/testing/assertions.rbc +1063 -0
  172. data/lib/active_support/testing/declarative.rbc +904 -0
  173. data/lib/active_support/testing/default.rbc +319 -0
  174. data/lib/active_support/testing/deprecation.rbc +1562 -0
  175. data/lib/active_support/testing/isolation.rbc +4048 -0
  176. data/lib/active_support/testing/pending.rbc +961 -0
  177. data/lib/active_support/testing/setup_and_teardown.rbc +2684 -0
  178. data/lib/active_support/time.rbc +574 -0
  179. data/lib/active_support/time_with_zone.rbc +5988 -0
  180. data/lib/active_support/values/time_zone.rbc +6915 -0
  181. data/lib/active_support/version.rb +2 -2
  182. data/lib/active_support/version.rbc +295 -0
  183. data/lib/active_support/whiny_nil.rbc +826 -0
  184. data/lib/active_support/xml_mini.rbc +4291 -0
  185. data/lib/active_support/xml_mini/rexml.rbc +1744 -0
  186. metadata +196 -10
@@ -0,0 +1,2076 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 28
13
+ 99
14
+ 7
15
+ 0
16
+ 65
17
+ 49
18
+ 1
19
+ 2
20
+ 13
21
+ 99
22
+ 12
23
+ 7
24
+ 2
25
+ 12
26
+ 7
27
+ 3
28
+ 12
29
+ 65
30
+ 12
31
+ 49
32
+ 4
33
+ 4
34
+ 15
35
+ 49
36
+ 2
37
+ 0
38
+ 15
39
+ 2
40
+ 11
41
+ I
42
+ 6
43
+ I
44
+ 0
45
+ I
46
+ 0
47
+ I
48
+ 0
49
+ n
50
+ p
51
+ 5
52
+ x
53
+ 13
54
+ ActiveSupport
55
+ x
56
+ 11
57
+ open_module
58
+ x
59
+ 15
60
+ __module_init__
61
+ M
62
+ 1
63
+ n
64
+ n
65
+ x
66
+ 13
67
+ ActiveSupport
68
+ i
69
+ 11
70
+ 5
71
+ 66
72
+ 45
73
+ 0
74
+ 1
75
+ 56
76
+ 2
77
+ 50
78
+ 3
79
+ 0
80
+ 11
81
+ I
82
+ 2
83
+ I
84
+ 0
85
+ I
86
+ 0
87
+ I
88
+ 0
89
+ n
90
+ p
91
+ 4
92
+ x
93
+ 9
94
+ Inflector
95
+ n
96
+ M
97
+ 1
98
+ p
99
+ 2
100
+ x
101
+ 9
102
+ for_block
103
+ t
104
+ n
105
+ x
106
+ 13
107
+ ActiveSupport
108
+ i
109
+ 1353
110
+ 57
111
+ 19
112
+ 0
113
+ 15
114
+ 20
115
+ 0
116
+ 7
117
+ 0
118
+ 13
119
+ 70
120
+ 9
121
+ 24
122
+ 15
123
+ 44
124
+ 43
125
+ 1
126
+ 7
127
+ 2
128
+ 78
129
+ 49
130
+ 3
131
+ 2
132
+ 6
133
+ 0
134
+ 7
135
+ 4
136
+ 64
137
+ 49
138
+ 5
139
+ 2
140
+ 15
141
+ 20
142
+ 0
143
+ 7
144
+ 6
145
+ 13
146
+ 70
147
+ 9
148
+ 51
149
+ 15
150
+ 44
151
+ 43
152
+ 1
153
+ 7
154
+ 7
155
+ 79
156
+ 49
157
+ 3
158
+ 2
159
+ 6
160
+ 6
161
+ 7
162
+ 4
163
+ 64
164
+ 49
165
+ 5
166
+ 2
167
+ 15
168
+ 20
169
+ 0
170
+ 7
171
+ 8
172
+ 13
173
+ 70
174
+ 9
175
+ 78
176
+ 15
177
+ 44
178
+ 43
179
+ 1
180
+ 7
181
+ 9
182
+ 79
183
+ 49
184
+ 3
185
+ 2
186
+ 6
187
+ 8
188
+ 7
189
+ 10
190
+ 64
191
+ 49
192
+ 5
193
+ 2
194
+ 15
195
+ 20
196
+ 0
197
+ 7
198
+ 11
199
+ 13
200
+ 70
201
+ 9
202
+ 105
203
+ 15
204
+ 44
205
+ 43
206
+ 1
207
+ 7
208
+ 12
209
+ 79
210
+ 49
211
+ 3
212
+ 2
213
+ 6
214
+ 11
215
+ 7
216
+ 13
217
+ 64
218
+ 49
219
+ 5
220
+ 2
221
+ 15
222
+ 20
223
+ 0
224
+ 7
225
+ 14
226
+ 13
227
+ 70
228
+ 9
229
+ 132
230
+ 15
231
+ 44
232
+ 43
233
+ 1
234
+ 7
235
+ 15
236
+ 79
237
+ 49
238
+ 3
239
+ 2
240
+ 6
241
+ 14
242
+ 7
243
+ 13
244
+ 64
245
+ 49
246
+ 5
247
+ 2
248
+ 15
249
+ 20
250
+ 0
251
+ 7
252
+ 16
253
+ 13
254
+ 70
255
+ 9
256
+ 159
257
+ 15
258
+ 44
259
+ 43
260
+ 1
261
+ 7
262
+ 17
263
+ 79
264
+ 49
265
+ 3
266
+ 2
267
+ 6
268
+ 16
269
+ 7
270
+ 10
271
+ 64
272
+ 49
273
+ 5
274
+ 2
275
+ 15
276
+ 20
277
+ 0
278
+ 7
279
+ 18
280
+ 13
281
+ 70
282
+ 9
283
+ 186
284
+ 15
285
+ 44
286
+ 43
287
+ 1
288
+ 7
289
+ 19
290
+ 79
291
+ 49
292
+ 3
293
+ 2
294
+ 6
295
+ 18
296
+ 7
297
+ 20
298
+ 64
299
+ 49
300
+ 5
301
+ 2
302
+ 15
303
+ 20
304
+ 0
305
+ 7
306
+ 21
307
+ 13
308
+ 70
309
+ 9
310
+ 213
311
+ 15
312
+ 44
313
+ 43
314
+ 1
315
+ 7
316
+ 22
317
+ 79
318
+ 49
319
+ 3
320
+ 2
321
+ 6
322
+ 21
323
+ 7
324
+ 23
325
+ 64
326
+ 49
327
+ 5
328
+ 2
329
+ 15
330
+ 20
331
+ 0
332
+ 7
333
+ 24
334
+ 13
335
+ 70
336
+ 9
337
+ 240
338
+ 15
339
+ 44
340
+ 43
341
+ 1
342
+ 7
343
+ 25
344
+ 79
345
+ 49
346
+ 3
347
+ 2
348
+ 6
349
+ 24
350
+ 7
351
+ 26
352
+ 64
353
+ 49
354
+ 5
355
+ 2
356
+ 15
357
+ 20
358
+ 0
359
+ 7
360
+ 27
361
+ 13
362
+ 70
363
+ 9
364
+ 267
365
+ 15
366
+ 44
367
+ 43
368
+ 1
369
+ 7
370
+ 28
371
+ 79
372
+ 49
373
+ 3
374
+ 2
375
+ 6
376
+ 27
377
+ 7
378
+ 26
379
+ 64
380
+ 49
381
+ 5
382
+ 2
383
+ 15
384
+ 20
385
+ 0
386
+ 7
387
+ 29
388
+ 13
389
+ 70
390
+ 9
391
+ 294
392
+ 15
393
+ 44
394
+ 43
395
+ 1
396
+ 7
397
+ 30
398
+ 79
399
+ 49
400
+ 3
401
+ 2
402
+ 6
403
+ 29
404
+ 7
405
+ 31
406
+ 64
407
+ 49
408
+ 5
409
+ 2
410
+ 15
411
+ 20
412
+ 0
413
+ 7
414
+ 32
415
+ 13
416
+ 70
417
+ 9
418
+ 321
419
+ 15
420
+ 44
421
+ 43
422
+ 1
423
+ 7
424
+ 33
425
+ 79
426
+ 49
427
+ 3
428
+ 2
429
+ 6
430
+ 32
431
+ 7
432
+ 34
433
+ 64
434
+ 49
435
+ 5
436
+ 2
437
+ 15
438
+ 20
439
+ 0
440
+ 7
441
+ 35
442
+ 13
443
+ 70
444
+ 9
445
+ 348
446
+ 15
447
+ 44
448
+ 43
449
+ 1
450
+ 7
451
+ 36
452
+ 79
453
+ 49
454
+ 3
455
+ 2
456
+ 6
457
+ 35
458
+ 7
459
+ 37
460
+ 64
461
+ 49
462
+ 5
463
+ 2
464
+ 15
465
+ 20
466
+ 0
467
+ 7
468
+ 38
469
+ 13
470
+ 70
471
+ 9
472
+ 375
473
+ 15
474
+ 44
475
+ 43
476
+ 1
477
+ 7
478
+ 39
479
+ 79
480
+ 49
481
+ 3
482
+ 2
483
+ 6
484
+ 38
485
+ 7
486
+ 40
487
+ 64
488
+ 49
489
+ 5
490
+ 2
491
+ 15
492
+ 20
493
+ 0
494
+ 7
495
+ 41
496
+ 13
497
+ 70
498
+ 9
499
+ 402
500
+ 15
501
+ 44
502
+ 43
503
+ 1
504
+ 7
505
+ 42
506
+ 79
507
+ 49
508
+ 3
509
+ 2
510
+ 6
511
+ 41
512
+ 7
513
+ 10
514
+ 64
515
+ 49
516
+ 5
517
+ 2
518
+ 15
519
+ 20
520
+ 0
521
+ 7
522
+ 43
523
+ 13
524
+ 70
525
+ 9
526
+ 429
527
+ 15
528
+ 44
529
+ 43
530
+ 1
531
+ 7
532
+ 44
533
+ 79
534
+ 49
535
+ 3
536
+ 2
537
+ 6
538
+ 43
539
+ 7
540
+ 45
541
+ 64
542
+ 49
543
+ 5
544
+ 2
545
+ 15
546
+ 20
547
+ 0
548
+ 7
549
+ 46
550
+ 13
551
+ 70
552
+ 9
553
+ 456
554
+ 15
555
+ 44
556
+ 43
557
+ 1
558
+ 7
559
+ 47
560
+ 79
561
+ 49
562
+ 3
563
+ 2
564
+ 6
565
+ 46
566
+ 7
567
+ 48
568
+ 64
569
+ 49
570
+ 5
571
+ 2
572
+ 15
573
+ 20
574
+ 0
575
+ 7
576
+ 49
577
+ 13
578
+ 70
579
+ 9
580
+ 483
581
+ 15
582
+ 44
583
+ 43
584
+ 1
585
+ 7
586
+ 50
587
+ 79
588
+ 49
589
+ 3
590
+ 2
591
+ 6
592
+ 49
593
+ 7
594
+ 48
595
+ 64
596
+ 49
597
+ 5
598
+ 2
599
+ 15
600
+ 20
601
+ 0
602
+ 7
603
+ 51
604
+ 13
605
+ 70
606
+ 9
607
+ 510
608
+ 15
609
+ 44
610
+ 43
611
+ 1
612
+ 7
613
+ 52
614
+ 79
615
+ 49
616
+ 3
617
+ 2
618
+ 6
619
+ 51
620
+ 7
621
+ 53
622
+ 64
623
+ 49
624
+ 5
625
+ 2
626
+ 15
627
+ 20
628
+ 0
629
+ 7
630
+ 54
631
+ 13
632
+ 70
633
+ 9
634
+ 537
635
+ 15
636
+ 44
637
+ 43
638
+ 1
639
+ 7
640
+ 55
641
+ 79
642
+ 49
643
+ 3
644
+ 2
645
+ 6
646
+ 54
647
+ 7
648
+ 56
649
+ 64
650
+ 49
651
+ 5
652
+ 2
653
+ 15
654
+ 20
655
+ 0
656
+ 7
657
+ 57
658
+ 13
659
+ 70
660
+ 9
661
+ 564
662
+ 15
663
+ 44
664
+ 43
665
+ 1
666
+ 7
667
+ 58
668
+ 79
669
+ 49
670
+ 3
671
+ 2
672
+ 6
673
+ 57
674
+ 7
675
+ 59
676
+ 64
677
+ 49
678
+ 5
679
+ 2
680
+ 15
681
+ 20
682
+ 0
683
+ 7
684
+ 60
685
+ 13
686
+ 70
687
+ 9
688
+ 591
689
+ 15
690
+ 44
691
+ 43
692
+ 1
693
+ 7
694
+ 7
695
+ 79
696
+ 49
697
+ 3
698
+ 2
699
+ 6
700
+ 60
701
+ 7
702
+ 61
703
+ 64
704
+ 49
705
+ 62
706
+ 2
707
+ 15
708
+ 20
709
+ 0
710
+ 7
711
+ 63
712
+ 13
713
+ 70
714
+ 9
715
+ 618
716
+ 15
717
+ 44
718
+ 43
719
+ 1
720
+ 7
721
+ 64
722
+ 79
723
+ 49
724
+ 3
725
+ 2
726
+ 6
727
+ 63
728
+ 7
729
+ 65
730
+ 64
731
+ 49
732
+ 62
733
+ 2
734
+ 15
735
+ 20
736
+ 0
737
+ 7
738
+ 66
739
+ 13
740
+ 70
741
+ 9
742
+ 645
743
+ 15
744
+ 44
745
+ 43
746
+ 1
747
+ 7
748
+ 28
749
+ 79
750
+ 49
751
+ 3
752
+ 2
753
+ 6
754
+ 66
755
+ 7
756
+ 67
757
+ 64
758
+ 49
759
+ 62
760
+ 2
761
+ 15
762
+ 20
763
+ 0
764
+ 7
765
+ 68
766
+ 13
767
+ 70
768
+ 9
769
+ 672
770
+ 15
771
+ 44
772
+ 43
773
+ 1
774
+ 7
775
+ 69
776
+ 79
777
+ 49
778
+ 3
779
+ 2
780
+ 6
781
+ 68
782
+ 7
783
+ 70
784
+ 64
785
+ 49
786
+ 62
787
+ 2
788
+ 15
789
+ 20
790
+ 0
791
+ 7
792
+ 71
793
+ 13
794
+ 70
795
+ 9
796
+ 699
797
+ 15
798
+ 44
799
+ 43
800
+ 1
801
+ 7
802
+ 72
803
+ 79
804
+ 49
805
+ 3
806
+ 2
807
+ 6
808
+ 71
809
+ 7
810
+ 73
811
+ 64
812
+ 49
813
+ 62
814
+ 2
815
+ 15
816
+ 20
817
+ 0
818
+ 7
819
+ 74
820
+ 13
821
+ 70
822
+ 9
823
+ 726
824
+ 15
825
+ 44
826
+ 43
827
+ 1
828
+ 7
829
+ 75
830
+ 79
831
+ 49
832
+ 3
833
+ 2
834
+ 6
835
+ 74
836
+ 7
837
+ 76
838
+ 64
839
+ 49
840
+ 62
841
+ 2
842
+ 15
843
+ 20
844
+ 0
845
+ 7
846
+ 77
847
+ 13
848
+ 70
849
+ 9
850
+ 753
851
+ 15
852
+ 44
853
+ 43
854
+ 1
855
+ 7
856
+ 78
857
+ 79
858
+ 49
859
+ 3
860
+ 2
861
+ 6
862
+ 77
863
+ 7
864
+ 56
865
+ 64
866
+ 49
867
+ 62
868
+ 2
869
+ 15
870
+ 20
871
+ 0
872
+ 7
873
+ 79
874
+ 13
875
+ 70
876
+ 9
877
+ 780
878
+ 15
879
+ 44
880
+ 43
881
+ 1
882
+ 7
883
+ 80
884
+ 79
885
+ 49
886
+ 3
887
+ 2
888
+ 6
889
+ 79
890
+ 7
891
+ 56
892
+ 64
893
+ 49
894
+ 62
895
+ 2
896
+ 15
897
+ 20
898
+ 0
899
+ 7
900
+ 81
901
+ 13
902
+ 70
903
+ 9
904
+ 807
905
+ 15
906
+ 44
907
+ 43
908
+ 1
909
+ 7
910
+ 82
911
+ 79
912
+ 49
913
+ 3
914
+ 2
915
+ 6
916
+ 81
917
+ 7
918
+ 83
919
+ 64
920
+ 49
921
+ 62
922
+ 2
923
+ 15
924
+ 20
925
+ 0
926
+ 7
927
+ 84
928
+ 13
929
+ 70
930
+ 9
931
+ 834
932
+ 15
933
+ 44
934
+ 43
935
+ 1
936
+ 7
937
+ 85
938
+ 79
939
+ 49
940
+ 3
941
+ 2
942
+ 6
943
+ 84
944
+ 7
945
+ 86
946
+ 64
947
+ 49
948
+ 62
949
+ 2
950
+ 15
951
+ 20
952
+ 0
953
+ 7
954
+ 87
955
+ 13
956
+ 70
957
+ 9
958
+ 861
959
+ 15
960
+ 44
961
+ 43
962
+ 1
963
+ 7
964
+ 88
965
+ 79
966
+ 49
967
+ 3
968
+ 2
969
+ 6
970
+ 87
971
+ 7
972
+ 89
973
+ 64
974
+ 49
975
+ 62
976
+ 2
977
+ 15
978
+ 20
979
+ 0
980
+ 7
981
+ 90
982
+ 13
983
+ 70
984
+ 9
985
+ 888
986
+ 15
987
+ 44
988
+ 43
989
+ 1
990
+ 7
991
+ 91
992
+ 79
993
+ 49
994
+ 3
995
+ 2
996
+ 6
997
+ 90
998
+ 7
999
+ 92
1000
+ 64
1001
+ 49
1002
+ 62
1003
+ 2
1004
+ 15
1005
+ 20
1006
+ 0
1007
+ 7
1008
+ 93
1009
+ 13
1010
+ 70
1011
+ 9
1012
+ 915
1013
+ 15
1014
+ 44
1015
+ 43
1016
+ 1
1017
+ 7
1018
+ 94
1019
+ 79
1020
+ 49
1021
+ 3
1022
+ 2
1023
+ 6
1024
+ 93
1025
+ 7
1026
+ 56
1027
+ 64
1028
+ 49
1029
+ 62
1030
+ 2
1031
+ 15
1032
+ 20
1033
+ 0
1034
+ 7
1035
+ 95
1036
+ 13
1037
+ 70
1038
+ 9
1039
+ 942
1040
+ 15
1041
+ 44
1042
+ 43
1043
+ 1
1044
+ 7
1045
+ 50
1046
+ 79
1047
+ 49
1048
+ 3
1049
+ 2
1050
+ 6
1051
+ 95
1052
+ 7
1053
+ 96
1054
+ 64
1055
+ 49
1056
+ 62
1057
+ 2
1058
+ 15
1059
+ 20
1060
+ 0
1061
+ 7
1062
+ 97
1063
+ 13
1064
+ 70
1065
+ 9
1066
+ 969
1067
+ 15
1068
+ 44
1069
+ 43
1070
+ 1
1071
+ 7
1072
+ 98
1073
+ 79
1074
+ 49
1075
+ 3
1076
+ 2
1077
+ 6
1078
+ 97
1079
+ 7
1080
+ 56
1081
+ 64
1082
+ 49
1083
+ 62
1084
+ 2
1085
+ 15
1086
+ 20
1087
+ 0
1088
+ 7
1089
+ 99
1090
+ 13
1091
+ 70
1092
+ 9
1093
+ 996
1094
+ 15
1095
+ 44
1096
+ 43
1097
+ 1
1098
+ 7
1099
+ 100
1100
+ 79
1101
+ 49
1102
+ 3
1103
+ 2
1104
+ 6
1105
+ 99
1106
+ 7
1107
+ 56
1108
+ 64
1109
+ 49
1110
+ 62
1111
+ 2
1112
+ 15
1113
+ 20
1114
+ 0
1115
+ 7
1116
+ 101
1117
+ 13
1118
+ 70
1119
+ 9
1120
+ 1023
1121
+ 15
1122
+ 44
1123
+ 43
1124
+ 1
1125
+ 7
1126
+ 102
1127
+ 79
1128
+ 49
1129
+ 3
1130
+ 2
1131
+ 6
1132
+ 101
1133
+ 7
1134
+ 56
1135
+ 64
1136
+ 49
1137
+ 62
1138
+ 2
1139
+ 15
1140
+ 20
1141
+ 0
1142
+ 7
1143
+ 103
1144
+ 13
1145
+ 70
1146
+ 9
1147
+ 1050
1148
+ 15
1149
+ 44
1150
+ 43
1151
+ 1
1152
+ 7
1153
+ 104
1154
+ 79
1155
+ 49
1156
+ 3
1157
+ 2
1158
+ 6
1159
+ 103
1160
+ 7
1161
+ 105
1162
+ 64
1163
+ 49
1164
+ 62
1165
+ 2
1166
+ 15
1167
+ 20
1168
+ 0
1169
+ 7
1170
+ 106
1171
+ 13
1172
+ 70
1173
+ 9
1174
+ 1077
1175
+ 15
1176
+ 44
1177
+ 43
1178
+ 1
1179
+ 7
1180
+ 15
1181
+ 79
1182
+ 49
1183
+ 3
1184
+ 2
1185
+ 6
1186
+ 106
1187
+ 7
1188
+ 107
1189
+ 64
1190
+ 49
1191
+ 62
1192
+ 2
1193
+ 15
1194
+ 20
1195
+ 0
1196
+ 7
1197
+ 108
1198
+ 13
1199
+ 70
1200
+ 9
1201
+ 1104
1202
+ 15
1203
+ 44
1204
+ 43
1205
+ 1
1206
+ 7
1207
+ 109
1208
+ 79
1209
+ 49
1210
+ 3
1211
+ 2
1212
+ 6
1213
+ 108
1214
+ 7
1215
+ 56
1216
+ 64
1217
+ 49
1218
+ 62
1219
+ 2
1220
+ 15
1221
+ 20
1222
+ 0
1223
+ 7
1224
+ 110
1225
+ 13
1226
+ 70
1227
+ 9
1228
+ 1131
1229
+ 15
1230
+ 44
1231
+ 43
1232
+ 1
1233
+ 7
1234
+ 111
1235
+ 79
1236
+ 49
1237
+ 3
1238
+ 2
1239
+ 6
1240
+ 110
1241
+ 7
1242
+ 56
1243
+ 64
1244
+ 49
1245
+ 62
1246
+ 2
1247
+ 15
1248
+ 20
1249
+ 0
1250
+ 7
1251
+ 112
1252
+ 13
1253
+ 70
1254
+ 9
1255
+ 1158
1256
+ 15
1257
+ 44
1258
+ 43
1259
+ 1
1260
+ 7
1261
+ 113
1262
+ 79
1263
+ 49
1264
+ 3
1265
+ 2
1266
+ 6
1267
+ 112
1268
+ 7
1269
+ 114
1270
+ 64
1271
+ 49
1272
+ 62
1273
+ 2
1274
+ 15
1275
+ 20
1276
+ 0
1277
+ 7
1278
+ 115
1279
+ 13
1280
+ 70
1281
+ 9
1282
+ 1185
1283
+ 15
1284
+ 44
1285
+ 43
1286
+ 1
1287
+ 7
1288
+ 116
1289
+ 79
1290
+ 49
1291
+ 3
1292
+ 2
1293
+ 6
1294
+ 115
1295
+ 7
1296
+ 117
1297
+ 64
1298
+ 49
1299
+ 62
1300
+ 2
1301
+ 15
1302
+ 20
1303
+ 0
1304
+ 7
1305
+ 118
1306
+ 13
1307
+ 70
1308
+ 9
1309
+ 1212
1310
+ 15
1311
+ 44
1312
+ 43
1313
+ 1
1314
+ 7
1315
+ 119
1316
+ 79
1317
+ 49
1318
+ 3
1319
+ 2
1320
+ 6
1321
+ 118
1322
+ 7
1323
+ 56
1324
+ 64
1325
+ 49
1326
+ 62
1327
+ 2
1328
+ 15
1329
+ 20
1330
+ 0
1331
+ 7
1332
+ 120
1333
+ 13
1334
+ 70
1335
+ 9
1336
+ 1239
1337
+ 15
1338
+ 44
1339
+ 43
1340
+ 1
1341
+ 7
1342
+ 121
1343
+ 79
1344
+ 49
1345
+ 3
1346
+ 2
1347
+ 6
1348
+ 120
1349
+ 7
1350
+ 56
1351
+ 64
1352
+ 49
1353
+ 62
1354
+ 2
1355
+ 15
1356
+ 20
1357
+ 0
1358
+ 7
1359
+ 122
1360
+ 64
1361
+ 7
1362
+ 123
1363
+ 64
1364
+ 49
1365
+ 124
1366
+ 2
1367
+ 15
1368
+ 20
1369
+ 0
1370
+ 7
1371
+ 125
1372
+ 64
1373
+ 7
1374
+ 126
1375
+ 64
1376
+ 49
1377
+ 124
1378
+ 2
1379
+ 15
1380
+ 20
1381
+ 0
1382
+ 7
1383
+ 127
1384
+ 64
1385
+ 7
1386
+ 128
1387
+ 64
1388
+ 49
1389
+ 124
1390
+ 2
1391
+ 15
1392
+ 20
1393
+ 0
1394
+ 7
1395
+ 129
1396
+ 64
1397
+ 7
1398
+ 130
1399
+ 64
1400
+ 49
1401
+ 124
1402
+ 2
1403
+ 15
1404
+ 20
1405
+ 0
1406
+ 7
1407
+ 131
1408
+ 64
1409
+ 7
1410
+ 132
1411
+ 64
1412
+ 49
1413
+ 124
1414
+ 2
1415
+ 15
1416
+ 20
1417
+ 0
1418
+ 7
1419
+ 133
1420
+ 64
1421
+ 7
1422
+ 134
1423
+ 64
1424
+ 49
1425
+ 124
1426
+ 2
1427
+ 15
1428
+ 20
1429
+ 0
1430
+ 7
1431
+ 135
1432
+ 64
1433
+ 7
1434
+ 136
1435
+ 64
1436
+ 7
1437
+ 137
1438
+ 64
1439
+ 7
1440
+ 138
1441
+ 64
1442
+ 7
1443
+ 139
1444
+ 64
1445
+ 7
1446
+ 140
1447
+ 64
1448
+ 7
1449
+ 141
1450
+ 64
1451
+ 7
1452
+ 142
1453
+ 64
1454
+ 7
1455
+ 143
1456
+ 64
1457
+ 35
1458
+ 9
1459
+ 49
1460
+ 144
1461
+ 1
1462
+ 11
1463
+ I
1464
+ c
1465
+ I
1466
+ 1
1467
+ I
1468
+ 1
1469
+ I
1470
+ 1
1471
+ n
1472
+ p
1473
+ 145
1474
+ n
1475
+ x
1476
+ 6
1477
+ Regexp
1478
+ s
1479
+ 1
1480
+ $
1481
+ x
1482
+ 3
1483
+ new
1484
+ s
1485
+ 1
1486
+ s
1487
+ x
1488
+ 6
1489
+ plural
1490
+ n
1491
+ s
1492
+ 2
1493
+ s$
1494
+ n
1495
+ s
1496
+ 12
1497
+ (ax|test)is$
1498
+ s
1499
+ 4
1500
+ \1es
1501
+ n
1502
+ s
1503
+ 14
1504
+ (octop|vir)us$
1505
+ s
1506
+ 3
1507
+ \1i
1508
+ n
1509
+ s
1510
+ 13
1511
+ (octop|vir)i$
1512
+ n
1513
+ s
1514
+ 15
1515
+ (alias|status)$
1516
+ n
1517
+ s
1518
+ 6
1519
+ (bu)s$
1520
+ s
1521
+ 5
1522
+ \1ses
1523
+ n
1524
+ s
1525
+ 16
1526
+ (buffal|tomat)o$
1527
+ s
1528
+ 5
1529
+ \1oes
1530
+ n
1531
+ s
1532
+ 9
1533
+ ([ti])um$
1534
+ s
1535
+ 3
1536
+ \1a
1537
+ n
1538
+ s
1539
+ 8
1540
+ ([ti])a$
1541
+ n
1542
+ s
1543
+ 4
1544
+ sis$
1545
+ s
1546
+ 3
1547
+ ses
1548
+ n
1549
+ s
1550
+ 21
1551
+ (?:([^f])fe|([lr])f)$
1552
+ s
1553
+ 7
1554
+ \1\2ves
1555
+ n
1556
+ s
1557
+ 7
1558
+ (hive)$
1559
+ s
1560
+ 3
1561
+ \1s
1562
+ n
1563
+ s
1564
+ 16
1565
+ ([^aeiouy]|qu)y$
1566
+ s
1567
+ 5
1568
+ \1ies
1569
+ n
1570
+ s
1571
+ 13
1572
+ (x|ch|ss|sh)$
1573
+ n
1574
+ s
1575
+ 25
1576
+ (matr|vert|ind)(?:ix|ex)$
1577
+ s
1578
+ 6
1579
+ \1ices
1580
+ n
1581
+ s
1582
+ 12
1583
+ ([m|l])ouse$
1584
+ s
1585
+ 5
1586
+ \1ice
1587
+ n
1588
+ s
1589
+ 11
1590
+ ([m|l])ice$
1591
+ n
1592
+ s
1593
+ 6
1594
+ ^(ox)$
1595
+ s
1596
+ 4
1597
+ \1en
1598
+ n
1599
+ s
1600
+ 8
1601
+ ^(oxen)$
1602
+ s
1603
+ 2
1604
+ \1
1605
+ n
1606
+ s
1607
+ 7
1608
+ (quiz)$
1609
+ s
1610
+ 5
1611
+ \1zes
1612
+ n
1613
+ s
1614
+ 0
1615
+
1616
+ x
1617
+ 8
1618
+ singular
1619
+ n
1620
+ s
1621
+ 7
1622
+ (n)ews$
1623
+ s
1624
+ 5
1625
+ \1ews
1626
+ n
1627
+ s
1628
+ 4
1629
+ \1um
1630
+ n
1631
+ s
1632
+ 61
1633
+ ((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$
1634
+ s
1635
+ 7
1636
+ \1\2sis
1637
+ n
1638
+ s
1639
+ 12
1640
+ (^analy)ses$
1641
+ s
1642
+ 5
1643
+ \1sis
1644
+ n
1645
+ s
1646
+ 10
1647
+ ([^f])ves$
1648
+ s
1649
+ 4
1650
+ \1fe
1651
+ n
1652
+ s
1653
+ 8
1654
+ (hive)s$
1655
+ n
1656
+ s
1657
+ 8
1658
+ (tive)s$
1659
+ n
1660
+ s
1661
+ 10
1662
+ ([lr])ves$
1663
+ s
1664
+ 3
1665
+ \1f
1666
+ n
1667
+ s
1668
+ 18
1669
+ ([^aeiouy]|qu)ies$
1670
+ s
1671
+ 3
1672
+ \1y
1673
+ n
1674
+ s
1675
+ 9
1676
+ (s)eries$
1677
+ s
1678
+ 7
1679
+ \1eries
1680
+ n
1681
+ s
1682
+ 9
1683
+ (m)ovies$
1684
+ s
1685
+ 6
1686
+ \1ovie
1687
+ n
1688
+ s
1689
+ 15
1690
+ (x|ch|ss|sh)es$
1691
+ n
1692
+ s
1693
+ 6
1694
+ \1ouse
1695
+ n
1696
+ s
1697
+ 8
1698
+ (bus)es$
1699
+ n
1700
+ s
1701
+ 6
1702
+ (o)es$
1703
+ n
1704
+ s
1705
+ 8
1706
+ (shoe)s$
1707
+ n
1708
+ s
1709
+ 17
1710
+ (cris|ax|test)es$
1711
+ s
1712
+ 4
1713
+ \1is
1714
+ n
1715
+ s
1716
+ 4
1717
+ \1us
1718
+ n
1719
+ s
1720
+ 17
1721
+ (alias|status)es$
1722
+ n
1723
+ s
1724
+ 7
1725
+ ^(ox)en
1726
+ n
1727
+ s
1728
+ 15
1729
+ (vert|ind)ices$
1730
+ s
1731
+ 4
1732
+ \1ex
1733
+ n
1734
+ s
1735
+ 11
1736
+ (matr)ices$
1737
+ s
1738
+ 4
1739
+ \1ix
1740
+ n
1741
+ s
1742
+ 10
1743
+ (quiz)zes$
1744
+ n
1745
+ s
1746
+ 12
1747
+ (database)s$
1748
+ s
1749
+ 6
1750
+ person
1751
+ s
1752
+ 6
1753
+ people
1754
+ x
1755
+ 9
1756
+ irregular
1757
+ s
1758
+ 3
1759
+ man
1760
+ s
1761
+ 3
1762
+ men
1763
+ s
1764
+ 5
1765
+ child
1766
+ s
1767
+ 8
1768
+ children
1769
+ s
1770
+ 3
1771
+ sex
1772
+ s
1773
+ 5
1774
+ sexes
1775
+ s
1776
+ 4
1777
+ move
1778
+ s
1779
+ 5
1780
+ moves
1781
+ s
1782
+ 3
1783
+ cow
1784
+ s
1785
+ 4
1786
+ kine
1787
+ s
1788
+ 9
1789
+ equipment
1790
+ s
1791
+ 11
1792
+ information
1793
+ s
1794
+ 4
1795
+ rice
1796
+ s
1797
+ 5
1798
+ money
1799
+ s
1800
+ 7
1801
+ species
1802
+ s
1803
+ 6
1804
+ series
1805
+ s
1806
+ 4
1807
+ fish
1808
+ s
1809
+ 5
1810
+ sheep
1811
+ s
1812
+ 5
1813
+ jeans
1814
+ x
1815
+ 11
1816
+ uncountable
1817
+ p
1818
+ 109
1819
+ I
1820
+ 0
1821
+ I
1822
+ 2
1823
+ I
1824
+ 4
1825
+ I
1826
+ 3
1827
+ I
1828
+ 1f
1829
+ I
1830
+ 4
1831
+ I
1832
+ 3a
1833
+ I
1834
+ 5
1835
+ I
1836
+ 55
1837
+ I
1838
+ 6
1839
+ I
1840
+ 70
1841
+ I
1842
+ 7
1843
+ I
1844
+ 8b
1845
+ I
1846
+ 8
1847
+ I
1848
+ a6
1849
+ I
1850
+ 9
1851
+ I
1852
+ c1
1853
+ I
1854
+ a
1855
+ I
1856
+ dc
1857
+ I
1858
+ b
1859
+ I
1860
+ f7
1861
+ I
1862
+ c
1863
+ I
1864
+ 112
1865
+ I
1866
+ d
1867
+ I
1868
+ 12d
1869
+ I
1870
+ e
1871
+ I
1872
+ 148
1873
+ I
1874
+ f
1875
+ I
1876
+ 163
1877
+ I
1878
+ 10
1879
+ I
1880
+ 17e
1881
+ I
1882
+ 11
1883
+ I
1884
+ 199
1885
+ I
1886
+ 12
1887
+ I
1888
+ 1b4
1889
+ I
1890
+ 13
1891
+ I
1892
+ 1cf
1893
+ I
1894
+ 14
1895
+ I
1896
+ 1ea
1897
+ I
1898
+ 15
1899
+ I
1900
+ 205
1901
+ I
1902
+ 16
1903
+ I
1904
+ 220
1905
+ I
1906
+ 17
1907
+ I
1908
+ 23b
1909
+ I
1910
+ 19
1911
+ I
1912
+ 256
1913
+ I
1914
+ 1a
1915
+ I
1916
+ 271
1917
+ I
1918
+ 1b
1919
+ I
1920
+ 28c
1921
+ I
1922
+ 1c
1923
+ I
1924
+ 2a7
1925
+ I
1926
+ 1d
1927
+ I
1928
+ 2c2
1929
+ I
1930
+ 1e
1931
+ I
1932
+ 2dd
1933
+ I
1934
+ 1f
1935
+ I
1936
+ 2f8
1937
+ I
1938
+ 20
1939
+ I
1940
+ 313
1941
+ I
1942
+ 21
1943
+ I
1944
+ 32e
1945
+ I
1946
+ 22
1947
+ I
1948
+ 349
1949
+ I
1950
+ 23
1951
+ I
1952
+ 364
1953
+ I
1954
+ 24
1955
+ I
1956
+ 37f
1957
+ I
1958
+ 25
1959
+ I
1960
+ 39a
1961
+ I
1962
+ 26
1963
+ I
1964
+ 3b5
1965
+ I
1966
+ 27
1967
+ I
1968
+ 3d0
1969
+ I
1970
+ 28
1971
+ I
1972
+ 3eb
1973
+ I
1974
+ 29
1975
+ I
1976
+ 406
1977
+ I
1978
+ 2a
1979
+ I
1980
+ 421
1981
+ I
1982
+ 2b
1983
+ I
1984
+ 43c
1985
+ I
1986
+ 2c
1987
+ I
1988
+ 457
1989
+ I
1990
+ 2d
1991
+ I
1992
+ 472
1993
+ I
1994
+ 2e
1995
+ I
1996
+ 48d
1997
+ I
1998
+ 2f
1999
+ I
2000
+ 4a8
2001
+ I
2002
+ 30
2003
+ I
2004
+ 4c3
2005
+ I
2006
+ 31
2007
+ I
2008
+ 4de
2009
+ I
2010
+ 33
2011
+ I
2012
+ 4ea
2013
+ I
2014
+ 34
2015
+ I
2016
+ 4f6
2017
+ I
2018
+ 35
2019
+ I
2020
+ 502
2021
+ I
2022
+ 36
2023
+ I
2024
+ 50e
2025
+ I
2026
+ 37
2027
+ I
2028
+ 51a
2029
+ I
2030
+ 38
2031
+ I
2032
+ 526
2033
+ I
2034
+ 3a
2035
+ I
2036
+ 549
2037
+ x
2038
+ 84
2039
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflections.rb
2040
+ p
2041
+ 1
2042
+ x
2043
+ 7
2044
+ inflect
2045
+ x
2046
+ 11
2047
+ inflections
2048
+ p
2049
+ 3
2050
+ I
2051
+ 2
2052
+ I
2053
+ 2
2054
+ I
2055
+ b
2056
+ x
2057
+ 84
2058
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflections.rb
2059
+ p
2060
+ 0
2061
+ x
2062
+ 13
2063
+ attach_method
2064
+ p
2065
+ 3
2066
+ I
2067
+ 0
2068
+ I
2069
+ 1
2070
+ I
2071
+ 1c
2072
+ x
2073
+ 84
2074
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflections.rb
2075
+ p
2076
+ 0