Advertisement
PJH

4nlikes +1000

PJH
Jan 19th, 2015
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 97.72 KB | None | 0 0
  1.  
  2. WITH RECURSIVE Counter AS (
  3. SELECT 1 i
  4. UNION ALL
  5. SELECT i * 4 -- Exponential!
  6. FROM Counter
  7. WHERE i < 100000
  8. ),
  9. user_like_count AS (
  10. SELECT pa.user_id, count(pa.user_id) count
  11. FROM post_actions pa
  12. LEFT OUTER JOIN posts p ON pa.post_id = p.id
  13. WHERE post_action_type_id = 2
  14. -- Exclude Likes Topic
  15. -- AND p.topic_id NOT IN (1000)
  16. GROUP BY pa.user_id
  17. -- HAVING count(pa.user_id) > 10
  18. )
  19. SELECT u.username, current_timestamp - (Counter.i * INTERVAL '0.0001 seconds') granted_at, user_like_count.count, Counter.i
  20. FROM user_like_count
  21. JOIN Counter ON user_like_count.count > Counter.i
  22. JOIN users u on u.id=user_like_count.user_id
  23. -- ORDER BY Counter.i DESC, user_id ASC
  24.  
  25.  
  26. username | granted_at | count | i
  27. ----------------------+-------------------------------+-------+-------
  28. Salamander | 2015-01-20 01:27:05.359144+00 | 300 | 1
  29. cconroy | 2015-01-20 01:27:05.359144+00 | 27 | 1
  30. hungrier | 2015-01-20 01:27:05.359144+00 | 3611 | 1
  31. nerd4sale | 2015-01-20 01:27:05.359144+00 | 2 | 1
  32. obeselymorbid | 2015-01-20 01:27:05.359144+00 | 34937 | 1
  33. RTapeLoadingError | 2015-01-20 01:27:05.359144+00 | 263 | 1
  34. AwesomeRick | 2015-01-20 01:27:05.359144+00 | 18 | 1
  35. piisawheel314 | 2015-01-20 01:27:05.359144+00 | 3 | 1
  36. jaming | 2015-01-20 01:27:05.359144+00 | 375 | 1
  37. jape | 2015-01-20 01:27:05.359144+00 | 5 | 1
  38. gnannann | 2015-01-20 01:27:05.359144+00 | 23 | 1
  39. evandentremont | 2015-01-20 01:27:05.359144+00 | 20 | 1
  40. fatbull | 2015-01-20 01:27:05.359144+00 | 78 | 1
  41. JazzyJosh | 2015-01-20 01:27:05.359144+00 | 264 | 1
  42. loopback0 | 2015-01-20 01:27:05.359144+00 | 1989 | 1
  43. Minimaul | 2015-01-20 01:27:05.359144+00 | 22 | 1
  44. SummonBot | 2015-01-20 01:27:05.359144+00 | 36 | 1
  45. FrostCat | 2015-01-20 01:27:05.359144+00 | 1001 | 1
  46. s73v3r | 2015-01-20 01:27:05.359144+00 | 6 | 1
  47. mratt | 2015-01-20 01:27:05.359144+00 | 21 | 1
  48. M_Adams | 2015-01-20 01:27:05.359144+00 | 9494 | 1
  49. presidentsdaughter | 2015-01-20 01:27:05.359144+00 | 524 | 1
  50. Jeddix | 2015-01-20 01:27:05.359144+00 | 2 | 1
  51. Matt_Westwood | 2015-01-20 01:27:05.359144+00 | 3 | 1
  52. error | 2015-01-20 01:27:05.359144+00 | 2427 | 1
  53. Frank | 2015-01-20 01:27:05.359144+00 | 504 | 1
  54. Cataria | 2015-01-20 01:27:05.359144+00 | 2 | 1
  55. Discourse | 2015-01-20 01:27:05.359144+00 | 700 | 1
  56. Felipe_Budinich | 2015-01-20 01:27:05.359144+00 | 18 | 1
  57. Zecc | 2015-01-20 01:27:05.359144+00 | 4559 | 1
  58. kylehutson | 2015-01-20 01:27:05.359144+00 | 5 | 1
  59. scudsucker | 2015-01-20 01:27:05.359144+00 | 16 | 1
  60. LurkerAbove | 2015-01-20 01:27:05.359144+00 | 106 | 1
  61. grkvlt | 2015-01-20 01:27:05.359144+00 | 16 | 1
  62. wood | 2015-01-20 01:27:05.359144+00 | 80 | 1
  63. dahaka | 2015-01-20 01:27:05.359144+00 | 158 | 1
  64. MRAholeDBA | 2015-01-20 01:27:05.359144+00 | 2 | 1
  65. NetBot | 2015-01-20 01:27:05.359144+00 | 553 | 1
  66. Nprz | 2015-01-20 01:27:05.359144+00 | 36 | 1
  67. Shoreline | 2015-01-20 01:27:05.359144+00 | 260 | 1
  68. Arantor | 2015-01-20 01:27:05.359144+00 | 20552 | 1
  69. xaade | 2015-01-20 01:27:05.359144+00 | 86 | 1
  70. exitcode1 | 2015-01-20 01:27:05.359144+00 | 2 | 1
  71. deadman | 2015-01-20 01:27:05.359144+00 | 7 | 1
  72. superjer | 2015-01-20 01:27:05.359144+00 | 20 | 1
  73. TwelveBaud | 2015-01-20 01:27:05.359144+00 | 1092 | 1
  74. DocMonster | 2015-01-20 01:27:05.359144+00 | 9 | 1
  75. foxyshadis | 2015-01-20 01:27:05.359144+00 | 27 | 1
  76. CarrieVS | 2015-01-20 01:27:05.359144+00 | 68 | 1
  77. PJH | 2015-01-20 01:27:05.359144+00 | 1688 | 1
  78. Supermathie | 2015-01-20 01:27:05.359144+00 | 5 | 1
  79. Luhmann | 2015-01-20 01:27:05.359144+00 | 29358 | 1
  80. ComputerForumUser | 2015-01-20 01:27:05.359144+00 | 5 | 1
  81. Matosawitko | 2015-01-20 01:27:05.359144+00 | 8 | 1
  82. Monarch | 2015-01-20 01:27:05.359144+00 | 615 | 1
  83. codlnghorror | 2015-01-20 01:27:05.359144+00 | 53 | 1
  84. CodingHorrorBot | 2015-01-20 01:27:05.359144+00 | 33751 | 1
  85. Vempele | 2015-01-20 01:27:05.359144+00 | 2 | 1
  86. cpradio | 2015-01-20 01:27:05.359144+00 | 13 | 1
  87. Lorne_Kates | 2015-01-20 01:27:05.359144+00 | 15 | 1
  88. Peter_Wolff | 2015-01-20 01:27:05.359144+00 | 7 | 1
  89. fancypants | 2015-01-20 01:27:05.359144+00 | 4 | 1
  90. RichardNixonBot | 2015-01-20 01:27:05.359144+00 | 3 | 1
  91. LoremIpsum | 2015-01-20 01:27:05.359144+00 | 475 | 1
  92. ntqz | 2015-01-20 01:27:05.359144+00 | 6 | 1
  93. Watson | 2015-01-20 01:27:05.359144+00 | 7 | 1
  94. dcon | 2015-01-20 01:27:05.359144+00 | 48 | 1
  95. JohnnyFive | 2015-01-20 01:27:05.359144+00 | 33583 | 1
  96. immibis_ | 2015-01-20 01:27:05.359144+00 | 47 | 1
  97. ufmace | 2015-01-20 01:27:05.359144+00 | 23 | 1
  98. Question_Mark | 2015-01-20 01:27:05.359144+00 | 2 | 1
  99. Spencer | 2015-01-20 01:27:05.359144+00 | 30913 | 1
  100. Vilx | 2015-01-20 01:27:05.359144+00 | 2 | 1
  101. sjw | 2015-01-20 01:27:05.359144+00 | 5 | 1
  102. WTFeveryday | 2015-01-20 01:27:05.359144+00 | 2 | 1
  103. tarunik | 2015-01-20 01:27:05.359144+00 | 12834 | 1
  104. Cursorkeys | 2015-01-20 01:27:05.359144+00 | 1064 | 1
  105. CreatedToDislikeThis | 2015-01-20 01:27:05.359144+00 | 146 | 1
  106. Kuro | 2015-01-20 01:27:05.359144+00 | 170 | 1
  107. flwf | 2015-01-20 01:27:05.359144+00 | 64 | 1
  108. Buddy | 2015-01-20 01:27:05.359144+00 | 6301 | 1
  109. diegose | 2015-01-20 01:27:05.359144+00 | 4 | 1
  110. RandyHickey | 2015-01-20 01:27:05.359144+00 | 13 | 1
  111. Mikael_Svahnberg | 2015-01-20 01:27:05.359144+00 | 57 | 1
  112. Apple | 2015-01-20 01:27:05.359144+00 | 24 | 1
  113. Jaloopa | 2015-01-20 01:27:05.359144+00 | 1311 | 1
  114. KillaCoder | 2015-01-20 01:27:05.359144+00 | 719 | 1
  115. oesor | 2015-01-20 01:27:05.359144+00 | 565 | 1
  116. razerwolf | 2015-01-20 01:27:05.359144+00 | 2 | 1
  117. Groaner | 2015-01-20 01:27:05.359144+00 | 198 | 1
  118. Masaaki_Hosoi | 2015-01-20 01:27:05.359144+00 | 2 | 1
  119. DCRoss | 2015-01-20 01:27:05.359144+00 | 3 | 1
  120. frsfnrrg | 2015-01-20 01:27:05.359144+00 | 347 | 1
  121. DJSpudplucker | 2015-01-20 01:27:05.359144+00 | 33 | 1
  122. CoyneTheDup | 2015-01-20 01:27:05.359144+00 | 39 | 1
  123. YellowOnline | 2015-01-20 01:27:05.359144+00 | 38 | 1
  124. ben_lubar | 2015-01-20 01:27:05.359144+00 | 5215 | 1
  125. Meltea | 2015-01-20 01:27:05.359144+00 | 2 | 1
  126. russ0519 | 2015-01-20 01:27:05.359144+00 | 3 | 1
  127. Fellshard | 2015-01-20 01:27:05.359144+00 | 8 | 1
  128. Avram | 2015-01-20 01:27:05.359144+00 | 4 | 1
  129. svieira | 2015-01-20 01:27:05.359144+00 | 66 | 1
  130. jkshapiro | 2015-01-20 01:27:05.359144+00 | 10 | 1
  131. aliceif | 2015-01-20 01:27:05.359144+00 | 25191 | 1
  132. asdf | 2015-01-20 01:27:05.359144+00 | 787 | 1
  133. machtyn | 2015-01-20 01:27:05.359144+00 | 3 | 1
  134. HaximusPrime | 2015-01-20 01:27:05.359144+00 | 4 | 1
  135. Gazzonyx | 2015-01-20 01:27:05.359144+00 | 4 | 1
  136. drachenstern | 2015-01-20 01:27:05.359144+00 | 2 | 1
  137. crazyal02 | 2015-01-20 01:27:05.359144+00 | 107 | 1
  138. Yamikuronue | 2015-01-20 01:27:05.359144+00 | 6417 | 1
  139. Zacrath | 2015-01-20 01:27:05.359144+00 | 113 | 1
  140. garaden | 2015-01-20 01:27:05.359144+00 | 9 | 1
  141. systern | 2015-01-20 01:27:05.359144+00 | 542 | 1
  142. npe | 2015-01-20 01:27:05.359144+00 | 34 | 1
  143. Squiggle | 2015-01-20 01:27:05.359144+00 | 24 | 1
  144. bp_ | 2015-01-20 01:27:05.359144+00 | 134 | 1
  145. ijij | 2015-01-20 01:27:05.359144+00 | 381 | 1
  146. JBert | 2015-01-20 01:27:05.359144+00 | 6563 | 1
  147. blakeyrat | 2015-01-20 01:27:05.359144+00 | 4 | 1
  148. some_damn_yank | 2015-01-20 01:27:05.359144+00 | 29 | 1
  149. pure | 2015-01-20 01:27:05.359144+00 | 2 | 1
  150. Cyxxon | 2015-01-20 01:27:05.359144+00 | 15 | 1
  151. WTF | 2015-01-20 01:27:05.359144+00 | 18 | 1
  152. danixdefcon5 | 2015-01-20 01:27:05.359144+00 | 2 | 1
  153. Rhywden | 2015-01-20 01:27:05.359144+00 | 14 | 1
  154. The_Bytemaster | 2015-01-20 01:27:05.359144+00 | 6 | 1
  155. LB_ | 2015-01-20 01:27:05.359144+00 | 4 | 1
  156. ChestRockwell | 2015-01-20 01:27:05.359144+00 | 28 | 1
  157. flabdablet | 2015-01-20 01:27:05.359144+00 | 1713 | 1
  158. Deadfast | 2015-01-20 01:27:05.359144+00 | 987 | 1
  159. TCotCDCK | 2015-01-20 01:27:05.359144+00 | 544 | 1
  160. dkf | 2015-01-20 01:27:05.359144+00 | 6331 | 1
  161. AquaDuck | 2015-01-20 01:27:05.359144+00 | 4 | 1
  162. agbeladem | 2015-01-20 01:27:05.359144+00 | 98 | 1
  163. Voldemort | 2015-01-20 01:27:05.359144+00 | 2 | 1
  164. myself | 2015-01-20 01:27:05.359144+00 | 4 | 1
  165. stillwater | 2015-01-20 01:27:05.359144+00 | 33 | 1
  166. KillerDucky | 2015-01-20 01:27:05.359144+00 | 2 | 1
  167. royal_poet | 2015-01-20 01:27:05.359144+00 | 1502 | 1
  168. DarthVader | 2015-01-20 01:27:05.359144+00 | 5 | 1
  169. another_sam | 2015-01-20 01:27:05.359144+00 | 445 | 1
  170. john_a | 2015-01-20 01:27:05.359144+00 | 3 | 1
  171. mott555 | 2015-01-20 01:27:05.359144+00 | 37035 | 1
  172. delta534 | 2015-01-20 01:27:05.359144+00 | 2 | 1
  173. OffByOne | 2015-01-20 01:27:05.359144+00 | 34447 | 1
  174. Quinnum | 2015-01-20 01:27:05.359144+00 | 2 | 1
  175. cartman82 | 2015-01-20 01:27:05.359144+00 | 4134 | 1
  176. Dragnslcr | 2015-01-20 01:27:05.359144+00 | 6 | 1
  177. Douglasac | 2015-01-20 01:27:05.359144+00 | 4 | 1
  178. tufty | 2015-01-20 01:27:05.359144+00 | 3223 | 1
  179. FILE_NOT_FOUND | 2015-01-20 01:27:05.359144+00 | 13 | 1
  180. Bender | 2015-01-20 01:27:05.359144+00 | 33583 | 1
  181. RFoxmich | 2015-01-20 01:27:05.359144+00 | 3 | 1
  182. whatever | 2015-01-20 01:27:05.359144+00 | 3 | 1
  183. Zemm | 2015-01-20 01:27:05.359144+00 | 7 | 1
  184. jmk | 2015-01-20 01:27:05.359144+00 | 3 | 1
  185. BernieTheBernie | 2015-01-20 01:27:05.359144+00 | 3 | 1
  186. TheIrritainer | 2015-01-20 01:27:05.359144+00 | 6 | 1
  187. Excelsior | 2015-01-20 01:27:05.359144+00 | 2 | 1
  188. sloosecannon | 2015-01-20 01:27:05.359144+00 | 21 | 1
  189. boomzilla | 2015-01-20 01:27:05.359144+00 | 37447 | 1
  190. devmonkey | 2015-01-20 01:27:05.359144+00 | 5 | 1
  191. GettinSadda | 2015-01-20 01:27:05.359144+00 | 6 | 1
  192. operagost | 2015-01-20 01:27:05.359144+00 | 4 | 1
  193. subscript_error | 2015-01-20 01:27:05.359144+00 | 100 | 1
  194. penprog | 2015-01-20 01:27:05.359144+00 | 33 | 1
  195. Keith | 2015-01-20 01:27:05.359144+00 | 2115 | 1
  196. DividedByZer0 | 2015-01-20 01:27:05.359144+00 | 2 | 1
  197. FuckOffBob | 2015-01-20 01:27:05.359144+00 | 31 | 1
  198. kmeixner | 2015-01-20 01:27:05.359144+00 | 8 | 1
  199. thegoryone | 2015-01-20 01:27:05.359144+00 | 23 | 1
  200. smallshellscript | 2015-01-20 01:27:05.359144+00 | 235 | 1
  201. monkeyArms | 2015-01-20 01:27:05.359144+00 | 53 | 1
  202. nullptr | 2015-01-20 01:27:05.359144+00 | 35 | 1
  203. Mo6eB | 2015-01-20 01:27:05.359144+00 | 46 | 1
  204. eternaldensity | 2015-01-20 01:27:05.359144+00 | 2 | 1
  205. Scarlet_Manuka | 2015-01-20 01:27:05.359144+00 | 11 | 1
  206. necromancer | 2015-01-20 01:27:05.359144+00 | 7 | 1
  207. ofcource | 2015-01-20 01:27:05.359144+00 | 20 | 1
  208. ender | 2015-01-20 01:27:05.359144+00 | 308 | 1
  209. coldandtired | 2015-01-20 01:27:05.359144+00 | 13 | 1
  210. mark_bowytz | 2015-01-20 01:27:05.359144+00 | 195 | 1
  211. Anonymous | 2015-01-20 01:27:05.359144+00 | 15 | 1
  212. TGV | 2015-01-20 01:27:05.359144+00 | 76 | 1
  213. stinerman | 2015-01-20 01:27:05.359144+00 | 2 | 1
  214. cvi | 2015-01-20 01:27:05.359144+00 | 606 | 1
  215. Mikerad1979 | 2015-01-20 01:27:05.359144+00 | 4 | 1
  216. Mason_Wheeler | 2015-01-20 01:27:05.359144+00 | 6 | 1
  217. lyptt | 2015-01-20 01:27:05.359144+00 | 17 | 1
  218. rad131304 | 2015-01-20 01:27:05.359144+00 | 43 | 1
  219. YouCanCallMeAl | 2015-01-20 01:27:05.359144+00 | 57 | 1
  220. bugmenot | 2015-01-20 01:27:05.359144+00 | 30 | 1
  221. trithne | 2015-01-20 01:27:05.359144+00 | 137 | 1
  222. scrib | 2015-01-20 01:27:05.359144+00 | 358 | 1
  223. techAPJ | 2015-01-20 01:27:05.359144+00 | 6 | 1
  224. Magus | 2015-01-20 01:27:05.359144+00 | 663 | 1
  225. discoursebot | 2015-01-20 01:27:05.359144+00 | 33765 | 1
  226. PWolff | 2015-01-20 01:27:05.359144+00 | 9 | 1
  227. ZPedro | 2015-01-20 01:27:05.359144+00 | 199 | 1
  228. darkmatter | 2015-01-20 01:27:05.359144+00 | 31480 | 1
  229. Matches | 2015-01-20 01:27:05.359144+00 | 359 | 1
  230. SirZed | 2015-01-20 01:27:05.359144+00 | 8 | 1
  231. Kraiden | 2015-01-20 01:27:05.359144+00 | 13 | 1
  232. Quietust | 2015-01-20 01:27:05.359144+00 | 4 | 1
  233. kevinranks | 2015-01-20 01:27:05.359144+00 | 2 | 1
  234. lucas | 2015-01-20 01:27:05.359144+00 | 134 | 1
  235. balazs | 2015-01-20 01:27:05.359144+00 | 3 | 1
  236. random_garbage | 2015-01-20 01:27:05.359144+00 | 6 | 1
  237. PythonBot | 2015-01-20 01:27:05.359144+00 | 11 | 1
  238. cbretana | 2015-01-20 01:27:05.359144+00 | 2 | 1
  239. tharpa | 2015-01-20 01:27:05.359144+00 | 18 | 1
  240. dhromed | 2015-01-20 01:27:05.359144+00 | 903 | 1
  241. rikkit | 2015-01-20 01:27:05.359144+00 | 118 | 1
  242. nzcode | 2015-01-20 01:27:05.359144+00 | 2 | 1
  243. redwizard | 2015-01-20 01:27:05.359144+00 | 5688 | 1
  244. Spectre | 2015-01-20 01:27:05.359144+00 | 2 | 1
  245. cdmwebs | 2015-01-20 01:27:05.359144+00 | 2 | 1
  246. John_Imrie | 2015-01-20 01:27:05.359144+00 | 8 | 1
  247. AlexMedia | 2015-01-20 01:27:05.359144+00 | 46 | 1
  248. Michel_Renaud | 2015-01-20 01:27:05.359144+00 | 3 | 1
  249. jamesn | 2015-01-20 01:27:05.359144+00 | 6 | 1
  250. Gonzalob | 2015-01-20 01:27:05.359144+00 | 3 | 1
  251. GOG | 2015-01-20 01:27:05.359144+00 | 9774 | 1
  252. NedFodder | 2015-01-20 01:27:05.359144+00 | 18 | 1
  253. Webinsane | 2015-01-20 01:27:05.359144+00 | 37 | 1
  254. EvanED | 2015-01-20 01:27:05.359144+00 | 89 | 1
  255. Ragnax | 2015-01-20 01:27:05.359144+00 | 53 | 1
  256. Planar | 2015-01-20 01:27:05.359144+00 | 8 | 1
  257. lcrawford | 2015-01-20 01:27:05.359144+00 | 11 | 1
  258. cellocgw | 2015-01-20 01:27:05.359144+00 | 12 | 1
  259. Simen | 2015-01-20 01:27:05.359144+00 | 3 | 1
  260. foobar | 2015-01-20 01:27:05.359144+00 | 2 | 1
  261. tar | 2015-01-20 01:27:05.359144+00 | 492 | 1
  262. Slapout | 2015-01-20 01:27:05.359144+00 | 12 | 1
  263. RaceProUK | 2015-01-20 01:27:05.359144+00 | 2715 | 1
  264. LikeBot | 2015-01-20 01:27:05.359144+00 | 1286 | 1
  265. locallunatic | 2015-01-20 01:27:05.359144+00 | 2779 | 1
  266. D3vy | 2015-01-20 01:27:05.359144+00 | 4 | 1
  267. SockAdept | 2015-01-20 01:27:05.359144+00 | 532 | 1
  268. morbiuswilters | 2015-01-20 01:27:05.359144+00 | 71 | 1
  269. anonymous234 | 2015-01-20 01:27:05.359144+00 | 601 | 1
  270. RobFreundlich | 2015-01-20 01:27:05.359144+00 | 13 | 1
  271. spenk | 2015-01-20 01:27:05.359144+00 | 3 | 1
  272. apapadimoulis | 2015-01-20 01:27:05.359144+00 | 361 | 1
  273. tin | 2015-01-20 01:27:05.359144+00 | 14 | 1
  274. lightsoff | 2015-01-20 01:27:05.359144+00 | 33 | 1
  275. GusTarballs | 2015-01-20 01:27:05.359144+00 | 17 | 1
  276. Zylon | 2015-01-20 01:27:05.359144+00 | 10 | 1
  277. michaelb958 | 2015-01-20 01:27:05.359144+00 | 29 | 1
  278. Medinoc | 2015-01-20 01:27:05.359144+00 | 164 | 1
  279. Zoidberg | 2015-01-20 01:27:05.359144+00 | 33663 | 1
  280. Onyx | 2015-01-20 01:27:05.359144+00 | 18543 | 1
  281. Bort | 2015-01-20 01:27:05.359144+00 | 578 | 1
  282. HardwareGeek | 2015-01-20 01:27:05.359144+00 | 36767 | 1
  283. lettucemode | 2015-01-20 01:27:05.359144+00 | 2 | 1
  284. Maciejasjmj | 2015-01-20 01:27:05.359144+00 | 15943 | 1
  285. Snuffles | 2015-01-20 01:27:05.359144+00 | 59 | 1
  286. Steve_The_Cynic | 2015-01-20 01:27:05.359144+00 | 19 | 1
  287. CanuckMonkey | 2015-01-20 01:27:05.359144+00 | 24 | 1
  288. DaveK | 2015-01-20 01:27:05.359144+00 | 3 | 1
  289. Drakkie | 2015-01-20 01:27:05.359144+00 | 2 | 1
  290. lidel | 2015-01-20 01:27:05.359144+00 | 15 | 1
  291. heterodox | 2015-01-20 01:27:05.359144+00 | 15 | 1
  292. Sacr | 2015-01-20 01:27:05.359144+00 | 3 | 1
  293. DoctorJones | 2015-01-20 01:27:05.359144+00 | 8688 | 1
  294. Weng | 2015-01-20 01:27:05.359144+00 | 112 | 1
  295. NBeezy | 2015-01-20 01:27:05.359144+00 | 3 | 1
  296. Evo | 2015-01-20 01:27:05.359144+00 | 22 | 1
  297. e4tmyl33t | 2015-01-20 01:27:05.359144+00 | 24 | 1
  298. SockPuppet | 2015-01-20 01:27:05.359144+00 | 8876 | 1
  299. JonasKlose | 2015-01-20 01:27:05.359144+00 | 2 | 1
  300. sockbot | 2015-01-20 01:27:05.359144+00 | 33669 | 1
  301. BruceW | 2015-01-20 01:27:05.359144+00 | 2 | 1
  302. zogstrip | 2015-01-20 01:27:05.359144+00 | 53 | 1
  303. BobbyTables | 2015-01-20 01:27:05.359144+00 | 4 | 1
  304. JoeCool | 2015-01-20 01:27:05.359144+00 | 39 | 1
  305. impinball | 2015-01-20 01:27:05.359144+00 | 2 | 1
  306. awesomerobot | 2015-01-20 01:27:05.359144+00 | 9 | 1
  307. antipattern | 2015-01-20 01:27:05.359144+00 | 7 | 1
  308. Husky | 2015-01-20 01:27:05.359144+00 | 3 | 1
  309. tenshino | 2015-01-20 01:27:05.359144+00 | 2 | 1
  310. lolwhat | 2015-01-20 01:27:05.359144+00 | 546 | 1
  311. vdeogmer | 2015-01-20 01:27:05.359144+00 | 11 | 1
  312. PleegWat | 2015-01-20 01:27:05.359144+00 | 181 | 1
  313. codinghorror | 2015-01-20 01:27:05.359144+00 | 1039 | 1
  314. ScholRLEA | 2015-01-20 01:27:05.359144+00 | 38 | 1
  315. mikeTheLiar | 2015-01-20 01:27:05.359144+00 | 241 | 1
  316. Nutster | 2015-01-20 01:27:05.359144+00 | 9 | 1
  317. Nagesh | 2015-01-20 01:27:05.359144+00 | 1154 | 1
  318. the_dragon | 2015-01-20 01:27:05.359144+00 | 21329 | 1
  319. Wukl | 2015-01-20 01:27:05.359144+00 | 240 | 1
  320. GigaBitWare | 2015-01-20 01:27:05.359144+00 | 8 | 1
  321. dtech | 2015-01-20 01:27:05.359144+00 | 29 | 1
  322. sanddorn | 2015-01-20 01:27:05.359144+00 | 141 | 1
  323. confused | 2015-01-20 01:27:05.359144+00 | 3 | 1
  324. Kian | 2015-01-20 01:27:05.359144+00 | 15 | 1
  325. StatsBot | 2015-01-20 01:27:05.359144+00 | 3 | 1
  326. Jaime | 2015-01-20 01:27:05.359144+00 | 5 | 1
  327. Lee_Ars | 2015-01-20 01:27:05.359144+00 | 6 | 1
  328. wft | 2015-01-20 01:27:05.359144+00 | 4 | 1
  329. accalia | 2015-01-20 01:27:05.359144+00 | 38729 | 1
  330. Seahen | 2015-01-20 01:27:05.359144+00 | 7 | 1
  331. Bulb | 2015-01-20 01:27:05.359144+00 | 894 | 1
  332. delfinom | 2015-01-20 01:27:05.359144+00 | 775 | 1
  333. tatsu | 2015-01-20 01:27:05.359144+00 | 6 | 1
  334. ScrambleBot | 2015-01-20 01:27:05.359144+00 | 16 | 1
  335. Initech | 2015-01-20 01:27:05.359144+00 | 21 | 1
  336. skotl | 2015-01-20 01:27:05.359144+00 | 138 | 1
  337. Cleverbot | 2015-01-20 01:27:05.359144+00 | 27 | 1
  338. Pippo | 2015-01-20 01:27:05.359144+00 | 4 | 1
  339. LorenPechtel | 2015-01-20 01:27:05.359144+00 | 11 | 1
  340. Captain | 2015-01-20 01:27:05.359144+00 | 969 | 1
  341. Ineentho | 2015-01-20 01:27:05.359144+00 | 2 | 1
  342. lolatu | 2015-01-20 01:27:05.359144+00 | 2 | 1
  343. Boner | 2015-01-20 01:27:05.359144+00 | 24 | 1
  344. hhaamu | 2015-01-20 01:27:05.359144+00 | 3 | 1
  345. TDWTFTest | 2015-01-20 01:27:05.359144+00 | 2 | 1
  346. Russell | 2015-01-20 01:27:05.359144+00 | 2 | 1
  347. honnza | 2015-01-20 01:27:05.359144+00 | 2 | 1
  348. izzion | 2015-01-20 01:27:05.359144+00 | 5730 | 1
  349. fwd | 2015-01-20 01:27:05.359144+00 | 4 | 1
  350. riking | 2015-01-20 01:27:05.359144+00 | 2639 | 1
  351. johnsnick | 2015-01-20 01:27:05.359144+00 | 18 | 1
  352. DaveZych | 2015-01-20 01:27:05.359144+00 | 14 | 1
  353. ChrisH | 2015-01-20 01:27:05.359144+00 | 36 | 1
  354. brettzink | 2015-01-20 01:27:05.359144+00 | 3 | 1
  355. chubertdev | 2015-01-20 01:27:05.359144+00 | 8316 | 1
  356. Martin_Piper | 2015-01-20 01:27:05.359144+00 | 3 | 1
  357. kupfernigk | 2015-01-20 01:27:05.359144+00 | 87 | 1
  358. SheriffFatman | 2015-01-20 01:27:05.359144+00 | 6 | 1
  359. SpoofedEx | 2015-01-20 01:27:05.359144+00 | 9 | 1
  360. Hanzo | 2015-01-20 01:27:05.359144+00 | 81 | 1
  361. lushr | 2015-01-20 01:27:05.359144+00 | 67 | 1
  362. jambot | 2015-01-20 01:27:05.359144+00 | 8 | 1
  363. callcopse | 2015-01-20 01:27:05.359144+00 | 12 | 1
  364. Dogsworth | 2015-01-20 01:27:05.359144+00 | 82 | 1
  365. eekysam | 2015-01-20 01:27:05.359144+00 | 2 | 1
  366. c__ | 2015-01-20 01:27:05.359144+00 | 412 | 1
  367. APerson | 2015-01-20 01:27:05.359144+00 | 6 | 1
  368. Mathias | 2015-01-20 01:27:05.359144+00 | 12 | 1
  369. andreas | 2015-01-20 01:27:05.359144+00 | 5 | 1
  370. Barbaz | 2015-01-20 01:27:05.359144+00 | 5 | 1
  371. Remy | 2015-01-20 01:27:05.359144+00 | 15 | 1
  372. ThisUsernameIsUnique | 2015-01-20 01:27:05.359144+00 | 4 | 1
  373. neil | 2015-01-20 01:27:05.359144+00 | 6 | 1
  374. Dreikin | 2015-01-20 01:27:05.359144+00 | 586 | 1
  375. toon | 2015-01-20 01:27:05.359144+00 | 93 | 1
  376. Minkovsky | 2015-01-20 01:27:05.359144+00 | 113 | 1
  377. algorythmics | 2015-01-20 01:27:05.359144+00 | 188 | 1
  378. The_Quiet_One | 2015-01-20 01:27:05.359144+00 | 42 | 1
  379. henke37 | 2015-01-20 01:27:05.359144+00 | 51 | 1
  380. mjmilan1 | 2015-01-20 01:27:05.359144+00 | 2 | 1
  381. antiquarian | 2015-01-20 01:27:05.359144+00 | 7497 | 1
  382. Polygeekery | 2015-01-20 01:27:05.359144+00 | 5909 | 1
  383. VaelynPhi | 2015-01-20 01:27:05.359144+00 | 1153 | 1
  384. NTAuthority | 2015-01-20 01:27:05.359144+00 | 9 | 1
  385. Eldelshell | 2015-01-20 01:27:05.359144+00 | 150 | 1
  386. Vault_Dweller | 2015-01-20 01:27:05.359144+00 | 33784 | 1
  387. SignatureGuy | 2015-01-20 01:27:05.359144+00 | 2 | 1
  388. MottBott | 2015-01-20 01:27:05.359144+00 | 20 | 1
  389. cdosrun1 | 2015-01-20 01:27:05.359144+00 | 100 | 1
  390. sam | 2015-01-20 01:27:05.359144+00 | 339 | 1
  391. jello | 2015-01-20 01:27:05.359144+00 | 90 | 1
  392. greek49 | 2015-01-20 01:27:05.359144+00 | 4 | 1
  393. Tsaukpaetra | 2015-01-20 01:27:05.359144+00 | 116 | 1
  394. jakjawagon | 2015-01-20 01:27:05.359144+00 | 54 | 1
  395. flash | 2015-01-20 01:27:05.359144+00 | 3 | 1
  396. moderator | 2015-01-20 01:27:05.359144+00 | 19 | 1
  397. ChaosTheEternal | 2015-01-20 01:27:05.359144+00 | 30409 | 1
  398. faoileag | 2015-01-20 01:27:05.359144+00 | 17094 | 1
  399. jonsjava | 2015-01-20 01:27:05.359144+00 | 4 | 1
  400. scboffspring | 2015-01-20 01:27:05.359144+00 | 30 | 1
  401. VinDuv | 2015-01-20 01:27:05.359144+00 | 33886 | 1
  402. zlogic | 2015-01-20 01:27:05.359144+00 | 24 | 1
  403. chouchuuchochouchou | 2015-01-20 01:27:05.359144+00 | 242 | 1
  404. Michael | 2015-01-20 01:27:05.359144+00 | 6 | 1
  405. silentd | 2015-01-20 01:27:05.359144+00 | 4 | 1
  406. CodeClown | 2015-01-20 01:27:05.359144+00 | 16 | 1
  407. nevesrorre | 2015-01-20 01:27:05.359144+00 | 22 | 1
  408. Musaran | 2015-01-20 01:27:05.359144+00 | 9 | 1
  409. peedub | 2015-01-20 01:27:05.359144+00 | 140 | 1
  410. JonW | 2015-01-20 01:27:05.359144+00 | 3 | 1
  411. hotmailcom | 2015-01-20 01:27:05.359144+00 | 110 | 1
  412. nobulate | 2015-01-20 01:27:05.359144+00 | 1052 | 1
  413. Lawrence | 2015-01-20 01:27:05.359144+00 | 5 | 1
  414. urkerab | 2015-01-20 01:27:05.359144+00 | 154 | 1
  415. abarker | 2015-01-20 01:27:05.359144+00 | 32175 | 1
  416. RogerC | 2015-01-20 01:27:05.359144+00 | 4 | 1
  417. aapis | 2015-01-20 01:27:05.359144+00 | 14 | 1
  418. shmosel | 2015-01-20 01:27:05.359144+00 | 4 | 1
  419. hominid | 2015-01-20 01:27:05.359144+00 | 71 | 1
  420. nexekho | 2015-01-20 01:27:05.359144+00 | 3 | 1
  421. Nipo | 2015-01-20 01:27:05.359144+00 | 193 | 1
  422. atimson | 2015-01-20 01:27:05.359144+00 | 65 | 1
  423. EatenByAGrue | 2015-01-20 01:27:05.359144+00 | 2 | 1
  424. MrL | 2015-01-20 01:27:05.359144+00 | 75 | 1
  425. Parody | 2015-01-20 01:27:05.359144+00 | 6 | 1
  426. MathNerdCNU | 2015-01-20 01:27:05.359144+00 | 19 | 1
  427. ObiWayneKenobi | 2015-01-20 01:27:05.359144+00 | 12 | 1
  428. powerlord | 2015-01-20 01:27:05.359144+00 | 228 | 1
  429. nightware | 2015-01-20 01:27:05.359144+00 | 420 | 1
  430. MiffTheFox | 2015-01-20 01:27:05.359144+00 | 12 | 1
  431. Zainab58 | 2015-01-20 01:27:05.359144+00 | 23 | 1
  432. Gaska | 2015-01-20 01:27:05.359144+00 | 162 | 1
  433. Nazar | 2015-01-20 01:27:05.359144+00 | 8 | 1
  434. DrakeSmith | 2015-01-20 01:27:05.359144+00 | 2501 | 1
  435. reverendryan | 2015-01-20 01:27:05.359144+00 | 33695 | 1
  436. David_C | 2015-01-20 01:27:05.359144+00 | 3 | 1
  437. meglio | 2015-01-20 01:27:05.359144+00 | 14 | 1
  438. Gurth | 2015-01-20 01:27:05.359144+00 | 3 | 1
  439. Daniel15 | 2015-01-20 01:27:05.359144+00 | 79 | 1
  440. dfcowell | 2015-01-20 01:27:05.359144+00 | 20 | 1
  441. oojimaflib | 2015-01-20 01:27:05.359144+00 | 3931 | 1
  442. chooks | 2015-01-20 01:27:05.359144+00 | 2 | 1
  443. menugarit | 2015-01-20 01:27:05.359144+00 | 399 | 1
  444. Jarry | 2015-01-20 01:27:05.359144+00 | 22 | 1
  445. anotherusername | 2015-01-20 01:27:05.359144+00 | 23 | 1
  446. swayde | 2015-01-20 01:27:05.359144+00 | 36 | 1
  447. ggeens | 2015-01-20 01:27:05.359144+00 | 2 | 1
  448. minuSeven | 2015-01-20 01:27:05.359144+00 | 2 | 1
  449. eviltrout | 2015-01-20 01:27:05.359144+00 | 9 | 1
  450. xi_ | 2015-01-20 01:27:05.359144+00 | 102 | 1
  451. marinus | 2015-01-20 01:27:05.359144+00 | 283 | 1
  452. papadumbass | 2015-01-20 01:27:05.359144+00 | 2 | 1
  453. null_loop | 2015-01-20 01:27:05.359144+00 | 2570 | 1
  454. charlieda | 2015-01-20 01:27:05.359144+00 | 2 | 1
  455. martijntje | 2015-01-20 01:27:05.359144+00 | 31 | 1
  456. WernerCD | 2015-01-20 01:27:05.359144+00 | 8 | 1
  457. No_1 | 2015-01-20 01:27:05.359144+00 | 36 | 1
  458. Salamander | 2015-01-20 01:27:05.358844+00 | 300 | 4
  459. cconroy | 2015-01-20 01:27:05.358844+00 | 27 | 4
  460. hungrier | 2015-01-20 01:27:05.358844+00 | 3611 | 4
  461. obeselymorbid | 2015-01-20 01:27:05.358844+00 | 34937 | 4
  462. RTapeLoadingError | 2015-01-20 01:27:05.358844+00 | 263 | 4
  463. AwesomeRick | 2015-01-20 01:27:05.358844+00 | 18 | 4
  464. jaming | 2015-01-20 01:27:05.358844+00 | 375 | 4
  465. jape | 2015-01-20 01:27:05.358844+00 | 5 | 4
  466. gnannann | 2015-01-20 01:27:05.358844+00 | 23 | 4
  467. evandentremont | 2015-01-20 01:27:05.358844+00 | 20 | 4
  468. fatbull | 2015-01-20 01:27:05.358844+00 | 78 | 4
  469. JazzyJosh | 2015-01-20 01:27:05.358844+00 | 264 | 4
  470. loopback0 | 2015-01-20 01:27:05.358844+00 | 1989 | 4
  471. Minimaul | 2015-01-20 01:27:05.358844+00 | 22 | 4
  472. SummonBot | 2015-01-20 01:27:05.358844+00 | 36 | 4
  473. FrostCat | 2015-01-20 01:27:05.358844+00 | 1001 | 4
  474. s73v3r | 2015-01-20 01:27:05.358844+00 | 6 | 4
  475. mratt | 2015-01-20 01:27:05.358844+00 | 21 | 4
  476. M_Adams | 2015-01-20 01:27:05.358844+00 | 9494 | 4
  477. presidentsdaughter | 2015-01-20 01:27:05.358844+00 | 524 | 4
  478. error | 2015-01-20 01:27:05.358844+00 | 2427 | 4
  479. Frank | 2015-01-20 01:27:05.358844+00 | 504 | 4
  480. Discourse | 2015-01-20 01:27:05.358844+00 | 700 | 4
  481. Felipe_Budinich | 2015-01-20 01:27:05.358844+00 | 18 | 4
  482. Zecc | 2015-01-20 01:27:05.358844+00 | 4559 | 4
  483. kylehutson | 2015-01-20 01:27:05.358844+00 | 5 | 4
  484. scudsucker | 2015-01-20 01:27:05.358844+00 | 16 | 4
  485. LurkerAbove | 2015-01-20 01:27:05.358844+00 | 106 | 4
  486. grkvlt | 2015-01-20 01:27:05.358844+00 | 16 | 4
  487. wood | 2015-01-20 01:27:05.358844+00 | 80 | 4
  488. dahaka | 2015-01-20 01:27:05.358844+00 | 158 | 4
  489. NetBot | 2015-01-20 01:27:05.358844+00 | 553 | 4
  490. Nprz | 2015-01-20 01:27:05.358844+00 | 36 | 4
  491. Shoreline | 2015-01-20 01:27:05.358844+00 | 260 | 4
  492. Arantor | 2015-01-20 01:27:05.358844+00 | 20552 | 4
  493. xaade | 2015-01-20 01:27:05.358844+00 | 86 | 4
  494. deadman | 2015-01-20 01:27:05.358844+00 | 7 | 4
  495. superjer | 2015-01-20 01:27:05.358844+00 | 20 | 4
  496. TwelveBaud | 2015-01-20 01:27:05.358844+00 | 1092 | 4
  497. DocMonster | 2015-01-20 01:27:05.358844+00 | 9 | 4
  498. foxyshadis | 2015-01-20 01:27:05.358844+00 | 27 | 4
  499. CarrieVS | 2015-01-20 01:27:05.358844+00 | 68 | 4
  500. PJH | 2015-01-20 01:27:05.358844+00 | 1688 | 4
  501. Supermathie | 2015-01-20 01:27:05.358844+00 | 5 | 4
  502. Luhmann | 2015-01-20 01:27:05.358844+00 | 29358 | 4
  503. ComputerForumUser | 2015-01-20 01:27:05.358844+00 | 5 | 4
  504. Matosawitko | 2015-01-20 01:27:05.358844+00 | 8 | 4
  505. Monarch | 2015-01-20 01:27:05.358844+00 | 615 | 4
  506. codlnghorror | 2015-01-20 01:27:05.358844+00 | 53 | 4
  507. CodingHorrorBot | 2015-01-20 01:27:05.358844+00 | 33751 | 4
  508. cpradio | 2015-01-20 01:27:05.358844+00 | 13 | 4
  509. Lorne_Kates | 2015-01-20 01:27:05.358844+00 | 15 | 4
  510. Peter_Wolff | 2015-01-20 01:27:05.358844+00 | 7 | 4
  511. LoremIpsum | 2015-01-20 01:27:05.358844+00 | 475 | 4
  512. ntqz | 2015-01-20 01:27:05.358844+00 | 6 | 4
  513. Watson | 2015-01-20 01:27:05.358844+00 | 7 | 4
  514. dcon | 2015-01-20 01:27:05.358844+00 | 48 | 4
  515. JohnnyFive | 2015-01-20 01:27:05.358844+00 | 33583 | 4
  516. immibis_ | 2015-01-20 01:27:05.358844+00 | 47 | 4
  517. ufmace | 2015-01-20 01:27:05.358844+00 | 23 | 4
  518. Spencer | 2015-01-20 01:27:05.358844+00 | 30913 | 4
  519. sjw | 2015-01-20 01:27:05.358844+00 | 5 | 4
  520. tarunik | 2015-01-20 01:27:05.358844+00 | 12834 | 4
  521. Cursorkeys | 2015-01-20 01:27:05.358844+00 | 1064 | 4
  522. CreatedToDislikeThis | 2015-01-20 01:27:05.358844+00 | 146 | 4
  523. Kuro | 2015-01-20 01:27:05.358844+00 | 170 | 4
  524. flwf | 2015-01-20 01:27:05.358844+00 | 64 | 4
  525. Buddy | 2015-01-20 01:27:05.358844+00 | 6301 | 4
  526. RandyHickey | 2015-01-20 01:27:05.358844+00 | 13 | 4
  527. Mikael_Svahnberg | 2015-01-20 01:27:05.358844+00 | 57 | 4
  528. Apple | 2015-01-20 01:27:05.358844+00 | 24 | 4
  529. Jaloopa | 2015-01-20 01:27:05.358844+00 | 1311 | 4
  530. KillaCoder | 2015-01-20 01:27:05.358844+00 | 719 | 4
  531. oesor | 2015-01-20 01:27:05.358844+00 | 565 | 4
  532. Groaner | 2015-01-20 01:27:05.358844+00 | 198 | 4
  533. frsfnrrg | 2015-01-20 01:27:05.358844+00 | 347 | 4
  534. DJSpudplucker | 2015-01-20 01:27:05.358844+00 | 33 | 4
  535. CoyneTheDup | 2015-01-20 01:27:05.358844+00 | 39 | 4
  536. YellowOnline | 2015-01-20 01:27:05.358844+00 | 38 | 4
  537. ben_lubar | 2015-01-20 01:27:05.358844+00 | 5215 | 4
  538. Fellshard | 2015-01-20 01:27:05.358844+00 | 8 | 4
  539. svieira | 2015-01-20 01:27:05.358844+00 | 66 | 4
  540. jkshapiro | 2015-01-20 01:27:05.358844+00 | 10 | 4
  541. aliceif | 2015-01-20 01:27:05.358844+00 | 25191 | 4
  542. asdf | 2015-01-20 01:27:05.358844+00 | 787 | 4
  543. crazyal02 | 2015-01-20 01:27:05.358844+00 | 107 | 4
  544. Yamikuronue | 2015-01-20 01:27:05.358844+00 | 6417 | 4
  545. Zacrath | 2015-01-20 01:27:05.358844+00 | 113 | 4
  546. garaden | 2015-01-20 01:27:05.358844+00 | 9 | 4
  547. systern | 2015-01-20 01:27:05.358844+00 | 542 | 4
  548. npe | 2015-01-20 01:27:05.358844+00 | 34 | 4
  549. Squiggle | 2015-01-20 01:27:05.358844+00 | 24 | 4
  550. bp_ | 2015-01-20 01:27:05.358844+00 | 134 | 4
  551. ijij | 2015-01-20 01:27:05.358844+00 | 381 | 4
  552. JBert | 2015-01-20 01:27:05.358844+00 | 6563 | 4
  553. some_damn_yank | 2015-01-20 01:27:05.358844+00 | 29 | 4
  554. Cyxxon | 2015-01-20 01:27:05.358844+00 | 15 | 4
  555. WTF | 2015-01-20 01:27:05.358844+00 | 18 | 4
  556. Rhywden | 2015-01-20 01:27:05.358844+00 | 14 | 4
  557. The_Bytemaster | 2015-01-20 01:27:05.358844+00 | 6 | 4
  558. ChestRockwell | 2015-01-20 01:27:05.358844+00 | 28 | 4
  559. flabdablet | 2015-01-20 01:27:05.358844+00 | 1713 | 4
  560. Deadfast | 2015-01-20 01:27:05.358844+00 | 987 | 4
  561. TCotCDCK | 2015-01-20 01:27:05.358844+00 | 544 | 4
  562. dkf | 2015-01-20 01:27:05.358844+00 | 6331 | 4
  563. agbeladem | 2015-01-20 01:27:05.358844+00 | 98 | 4
  564. stillwater | 2015-01-20 01:27:05.358844+00 | 33 | 4
  565. royal_poet | 2015-01-20 01:27:05.358844+00 | 1502 | 4
  566. DarthVader | 2015-01-20 01:27:05.358844+00 | 5 | 4
  567. another_sam | 2015-01-20 01:27:05.358844+00 | 445 | 4
  568. mott555 | 2015-01-20 01:27:05.358844+00 | 37035 | 4
  569. OffByOne | 2015-01-20 01:27:05.358844+00 | 34447 | 4
  570. cartman82 | 2015-01-20 01:27:05.358844+00 | 4134 | 4
  571. Dragnslcr | 2015-01-20 01:27:05.358844+00 | 6 | 4
  572. tufty | 2015-01-20 01:27:05.358844+00 | 3223 | 4
  573. FILE_NOT_FOUND | 2015-01-20 01:27:05.358844+00 | 13 | 4
  574. Bender | 2015-01-20 01:27:05.358844+00 | 33583 | 4
  575. Zemm | 2015-01-20 01:27:05.358844+00 | 7 | 4
  576. TheIrritainer | 2015-01-20 01:27:05.358844+00 | 6 | 4
  577. sloosecannon | 2015-01-20 01:27:05.358844+00 | 21 | 4
  578. boomzilla | 2015-01-20 01:27:05.358844+00 | 37447 | 4
  579. devmonkey | 2015-01-20 01:27:05.358844+00 | 5 | 4
  580. GettinSadda | 2015-01-20 01:27:05.358844+00 | 6 | 4
  581. subscript_error | 2015-01-20 01:27:05.358844+00 | 100 | 4
  582. penprog | 2015-01-20 01:27:05.358844+00 | 33 | 4
  583. Keith | 2015-01-20 01:27:05.358844+00 | 2115 | 4
  584. FuckOffBob | 2015-01-20 01:27:05.358844+00 | 31 | 4
  585. kmeixner | 2015-01-20 01:27:05.358844+00 | 8 | 4
  586. thegoryone | 2015-01-20 01:27:05.358844+00 | 23 | 4
  587. smallshellscript | 2015-01-20 01:27:05.358844+00 | 235 | 4
  588. monkeyArms | 2015-01-20 01:27:05.358844+00 | 53 | 4
  589. nullptr | 2015-01-20 01:27:05.358844+00 | 35 | 4
  590. Mo6eB | 2015-01-20 01:27:05.358844+00 | 46 | 4
  591. Scarlet_Manuka | 2015-01-20 01:27:05.358844+00 | 11 | 4
  592. necromancer | 2015-01-20 01:27:05.358844+00 | 7 | 4
  593. ofcource | 2015-01-20 01:27:05.358844+00 | 20 | 4
  594. ender | 2015-01-20 01:27:05.358844+00 | 308 | 4
  595. coldandtired | 2015-01-20 01:27:05.358844+00 | 13 | 4
  596. mark_bowytz | 2015-01-20 01:27:05.358844+00 | 195 | 4
  597. Anonymous | 2015-01-20 01:27:05.358844+00 | 15 | 4
  598. TGV | 2015-01-20 01:27:05.358844+00 | 76 | 4
  599. cvi | 2015-01-20 01:27:05.358844+00 | 606 | 4
  600. Mason_Wheeler | 2015-01-20 01:27:05.358844+00 | 6 | 4
  601. lyptt | 2015-01-20 01:27:05.358844+00 | 17 | 4
  602. rad131304 | 2015-01-20 01:27:05.358844+00 | 43 | 4
  603. YouCanCallMeAl | 2015-01-20 01:27:05.358844+00 | 57 | 4
  604. bugmenot | 2015-01-20 01:27:05.358844+00 | 30 | 4
  605. trithne | 2015-01-20 01:27:05.358844+00 | 137 | 4
  606. scrib | 2015-01-20 01:27:05.358844+00 | 358 | 4
  607. techAPJ | 2015-01-20 01:27:05.358844+00 | 6 | 4
  608. Magus | 2015-01-20 01:27:05.358844+00 | 663 | 4
  609. discoursebot | 2015-01-20 01:27:05.358844+00 | 33765 | 4
  610. PWolff | 2015-01-20 01:27:05.358844+00 | 9 | 4
  611. ZPedro | 2015-01-20 01:27:05.358844+00 | 199 | 4
  612. darkmatter | 2015-01-20 01:27:05.358844+00 | 31480 | 4
  613. Matches | 2015-01-20 01:27:05.358844+00 | 359 | 4
  614. SirZed | 2015-01-20 01:27:05.358844+00 | 8 | 4
  615. Kraiden | 2015-01-20 01:27:05.358844+00 | 13 | 4
  616. lucas | 2015-01-20 01:27:05.358844+00 | 134 | 4
  617. random_garbage | 2015-01-20 01:27:05.358844+00 | 6 | 4
  618. PythonBot | 2015-01-20 01:27:05.358844+00 | 11 | 4
  619. tharpa | 2015-01-20 01:27:05.358844+00 | 18 | 4
  620. dhromed | 2015-01-20 01:27:05.358844+00 | 903 | 4
  621. rikkit | 2015-01-20 01:27:05.358844+00 | 118 | 4
  622. redwizard | 2015-01-20 01:27:05.358844+00 | 5688 | 4
  623. John_Imrie | 2015-01-20 01:27:05.358844+00 | 8 | 4
  624. AlexMedia | 2015-01-20 01:27:05.358844+00 | 46 | 4
  625. jamesn | 2015-01-20 01:27:05.358844+00 | 6 | 4
  626. GOG | 2015-01-20 01:27:05.358844+00 | 9774 | 4
  627. NedFodder | 2015-01-20 01:27:05.358844+00 | 18 | 4
  628. Webinsane | 2015-01-20 01:27:05.358844+00 | 37 | 4
  629. EvanED | 2015-01-20 01:27:05.358844+00 | 89 | 4
  630. Ragnax | 2015-01-20 01:27:05.358844+00 | 53 | 4
  631. Planar | 2015-01-20 01:27:05.358844+00 | 8 | 4
  632. lcrawford | 2015-01-20 01:27:05.358844+00 | 11 | 4
  633. cellocgw | 2015-01-20 01:27:05.358844+00 | 12 | 4
  634. tar | 2015-01-20 01:27:05.358844+00 | 492 | 4
  635. Slapout | 2015-01-20 01:27:05.358844+00 | 12 | 4
  636. RaceProUK | 2015-01-20 01:27:05.358844+00 | 2715 | 4
  637. LikeBot | 2015-01-20 01:27:05.358844+00 | 1286 | 4
  638. locallunatic | 2015-01-20 01:27:05.358844+00 | 2779 | 4
  639. SockAdept | 2015-01-20 01:27:05.358844+00 | 532 | 4
  640. morbiuswilters | 2015-01-20 01:27:05.358844+00 | 71 | 4
  641. anonymous234 | 2015-01-20 01:27:05.358844+00 | 601 | 4
  642. RobFreundlich | 2015-01-20 01:27:05.358844+00 | 13 | 4
  643. apapadimoulis | 2015-01-20 01:27:05.358844+00 | 361 | 4
  644. tin | 2015-01-20 01:27:05.358844+00 | 14 | 4
  645. lightsoff | 2015-01-20 01:27:05.358844+00 | 33 | 4
  646. GusTarballs | 2015-01-20 01:27:05.358844+00 | 17 | 4
  647. Zylon | 2015-01-20 01:27:05.358844+00 | 10 | 4
  648. michaelb958 | 2015-01-20 01:27:05.358844+00 | 29 | 4
  649. Medinoc | 2015-01-20 01:27:05.358844+00 | 164 | 4
  650. Zoidberg | 2015-01-20 01:27:05.358844+00 | 33663 | 4
  651. Onyx | 2015-01-20 01:27:05.358844+00 | 18543 | 4
  652. Bort | 2015-01-20 01:27:05.358844+00 | 578 | 4
  653. HardwareGeek | 2015-01-20 01:27:05.358844+00 | 36767 | 4
  654. Maciejasjmj | 2015-01-20 01:27:05.358844+00 | 15943 | 4
  655. Snuffles | 2015-01-20 01:27:05.358844+00 | 59 | 4
  656. Steve_The_Cynic | 2015-01-20 01:27:05.358844+00 | 19 | 4
  657. CanuckMonkey | 2015-01-20 01:27:05.358844+00 | 24 | 4
  658. lidel | 2015-01-20 01:27:05.358844+00 | 15 | 4
  659. heterodox | 2015-01-20 01:27:05.358844+00 | 15 | 4
  660. DoctorJones | 2015-01-20 01:27:05.358844+00 | 8688 | 4
  661. Weng | 2015-01-20 01:27:05.358844+00 | 112 | 4
  662. Evo | 2015-01-20 01:27:05.358844+00 | 22 | 4
  663. e4tmyl33t | 2015-01-20 01:27:05.358844+00 | 24 | 4
  664. SockPuppet | 2015-01-20 01:27:05.358844+00 | 8876 | 4
  665. sockbot | 2015-01-20 01:27:05.358844+00 | 33669 | 4
  666. zogstrip | 2015-01-20 01:27:05.358844+00 | 53 | 4
  667. JoeCool | 2015-01-20 01:27:05.358844+00 | 39 | 4
  668. awesomerobot | 2015-01-20 01:27:05.358844+00 | 9 | 4
  669. antipattern | 2015-01-20 01:27:05.358844+00 | 7 | 4
  670. lolwhat | 2015-01-20 01:27:05.358844+00 | 546 | 4
  671. vdeogmer | 2015-01-20 01:27:05.358844+00 | 11 | 4
  672. PleegWat | 2015-01-20 01:27:05.358844+00 | 181 | 4
  673. codinghorror | 2015-01-20 01:27:05.358844+00 | 1039 | 4
  674. ScholRLEA | 2015-01-20 01:27:05.358844+00 | 38 | 4
  675. mikeTheLiar | 2015-01-20 01:27:05.358844+00 | 241 | 4
  676. Nutster | 2015-01-20 01:27:05.358844+00 | 9 | 4
  677. Nagesh | 2015-01-20 01:27:05.358844+00 | 1154 | 4
  678. the_dragon | 2015-01-20 01:27:05.358844+00 | 21329 | 4
  679. Wukl | 2015-01-20 01:27:05.358844+00 | 240 | 4
  680. GigaBitWare | 2015-01-20 01:27:05.358844+00 | 8 | 4
  681. dtech | 2015-01-20 01:27:05.358844+00 | 29 | 4
  682. sanddorn | 2015-01-20 01:27:05.358844+00 | 141 | 4
  683. Kian | 2015-01-20 01:27:05.358844+00 | 15 | 4
  684. Jaime | 2015-01-20 01:27:05.358844+00 | 5 | 4
  685. Lee_Ars | 2015-01-20 01:27:05.358844+00 | 6 | 4
  686. accalia | 2015-01-20 01:27:05.358844+00 | 38729 | 4
  687. Seahen | 2015-01-20 01:27:05.358844+00 | 7 | 4
  688. Bulb | 2015-01-20 01:27:05.358844+00 | 894 | 4
  689. delfinom | 2015-01-20 01:27:05.358844+00 | 775 | 4
  690. tatsu | 2015-01-20 01:27:05.358844+00 | 6 | 4
  691. ScrambleBot | 2015-01-20 01:27:05.358844+00 | 16 | 4
  692. Initech | 2015-01-20 01:27:05.358844+00 | 21 | 4
  693. skotl | 2015-01-20 01:27:05.358844+00 | 138 | 4
  694. Cleverbot | 2015-01-20 01:27:05.358844+00 | 27 | 4
  695. LorenPechtel | 2015-01-20 01:27:05.358844+00 | 11 | 4
  696. Captain | 2015-01-20 01:27:05.358844+00 | 969 | 4
  697. Boner | 2015-01-20 01:27:05.358844+00 | 24 | 4
  698. izzion | 2015-01-20 01:27:05.358844+00 | 5730 | 4
  699. riking | 2015-01-20 01:27:05.358844+00 | 2639 | 4
  700. johnsnick | 2015-01-20 01:27:05.358844+00 | 18 | 4
  701. DaveZych | 2015-01-20 01:27:05.358844+00 | 14 | 4
  702. ChrisH | 2015-01-20 01:27:05.358844+00 | 36 | 4
  703. chubertdev | 2015-01-20 01:27:05.358844+00 | 8316 | 4
  704. kupfernigk | 2015-01-20 01:27:05.358844+00 | 87 | 4
  705. SheriffFatman | 2015-01-20 01:27:05.358844+00 | 6 | 4
  706. SpoofedEx | 2015-01-20 01:27:05.358844+00 | 9 | 4
  707. Hanzo | 2015-01-20 01:27:05.358844+00 | 81 | 4
  708. lushr | 2015-01-20 01:27:05.358844+00 | 67 | 4
  709. jambot | 2015-01-20 01:27:05.358844+00 | 8 | 4
  710. callcopse | 2015-01-20 01:27:05.358844+00 | 12 | 4
  711. Dogsworth | 2015-01-20 01:27:05.358844+00 | 82 | 4
  712. c__ | 2015-01-20 01:27:05.358844+00 | 412 | 4
  713. APerson | 2015-01-20 01:27:05.358844+00 | 6 | 4
  714. Mathias | 2015-01-20 01:27:05.358844+00 | 12 | 4
  715. andreas | 2015-01-20 01:27:05.358844+00 | 5 | 4
  716. Barbaz | 2015-01-20 01:27:05.358844+00 | 5 | 4
  717. Remy | 2015-01-20 01:27:05.358844+00 | 15 | 4
  718. neil | 2015-01-20 01:27:05.358844+00 | 6 | 4
  719. Dreikin | 2015-01-20 01:27:05.358844+00 | 586 | 4
  720. toon | 2015-01-20 01:27:05.358844+00 | 93 | 4
  721. Minkovsky | 2015-01-20 01:27:05.358844+00 | 113 | 4
  722. algorythmics | 2015-01-20 01:27:05.358844+00 | 188 | 4
  723. The_Quiet_One | 2015-01-20 01:27:05.358844+00 | 42 | 4
  724. henke37 | 2015-01-20 01:27:05.358844+00 | 51 | 4
  725. antiquarian | 2015-01-20 01:27:05.358844+00 | 7497 | 4
  726. Polygeekery | 2015-01-20 01:27:05.358844+00 | 5909 | 4
  727. VaelynPhi | 2015-01-20 01:27:05.358844+00 | 1153 | 4
  728. NTAuthority | 2015-01-20 01:27:05.358844+00 | 9 | 4
  729. Eldelshell | 2015-01-20 01:27:05.358844+00 | 150 | 4
  730. Vault_Dweller | 2015-01-20 01:27:05.358844+00 | 33784 | 4
  731. MottBott | 2015-01-20 01:27:05.358844+00 | 20 | 4
  732. cdosrun1 | 2015-01-20 01:27:05.358844+00 | 100 | 4
  733. sam | 2015-01-20 01:27:05.358844+00 | 339 | 4
  734. jello | 2015-01-20 01:27:05.358844+00 | 90 | 4
  735. Tsaukpaetra | 2015-01-20 01:27:05.358844+00 | 116 | 4
  736. jakjawagon | 2015-01-20 01:27:05.358844+00 | 54 | 4
  737. moderator | 2015-01-20 01:27:05.358844+00 | 19 | 4
  738. ChaosTheEternal | 2015-01-20 01:27:05.358844+00 | 30409 | 4
  739. faoileag | 2015-01-20 01:27:05.358844+00 | 17094 | 4
  740. scboffspring | 2015-01-20 01:27:05.358844+00 | 30 | 4
  741. VinDuv | 2015-01-20 01:27:05.358844+00 | 33886 | 4
  742. zlogic | 2015-01-20 01:27:05.358844+00 | 24 | 4
  743. chouchuuchochouchou | 2015-01-20 01:27:05.358844+00 | 242 | 4
  744. Michael | 2015-01-20 01:27:05.358844+00 | 6 | 4
  745. CodeClown | 2015-01-20 01:27:05.358844+00 | 16 | 4
  746. nevesrorre | 2015-01-20 01:27:05.358844+00 | 22 | 4
  747. Musaran | 2015-01-20 01:27:05.358844+00 | 9 | 4
  748. peedub | 2015-01-20 01:27:05.358844+00 | 140 | 4
  749. hotmailcom | 2015-01-20 01:27:05.358844+00 | 110 | 4
  750. nobulate | 2015-01-20 01:27:05.358844+00 | 1052 | 4
  751. Lawrence | 2015-01-20 01:27:05.358844+00 | 5 | 4
  752. urkerab | 2015-01-20 01:27:05.358844+00 | 154 | 4
  753. abarker | 2015-01-20 01:27:05.358844+00 | 32175 | 4
  754. aapis | 2015-01-20 01:27:05.358844+00 | 14 | 4
  755. hominid | 2015-01-20 01:27:05.358844+00 | 71 | 4
  756. Nipo | 2015-01-20 01:27:05.358844+00 | 193 | 4
  757. atimson | 2015-01-20 01:27:05.358844+00 | 65 | 4
  758. MrL | 2015-01-20 01:27:05.358844+00 | 75 | 4
  759. Parody | 2015-01-20 01:27:05.358844+00 | 6 | 4
  760. MathNerdCNU | 2015-01-20 01:27:05.358844+00 | 19 | 4
  761. ObiWayneKenobi | 2015-01-20 01:27:05.358844+00 | 12 | 4
  762. powerlord | 2015-01-20 01:27:05.358844+00 | 228 | 4
  763. nightware | 2015-01-20 01:27:05.358844+00 | 420 | 4
  764. MiffTheFox | 2015-01-20 01:27:05.358844+00 | 12 | 4
  765. Zainab58 | 2015-01-20 01:27:05.358844+00 | 23 | 4
  766. Gaska | 2015-01-20 01:27:05.358844+00 | 162 | 4
  767. Nazar | 2015-01-20 01:27:05.358844+00 | 8 | 4
  768. DrakeSmith | 2015-01-20 01:27:05.358844+00 | 2501 | 4
  769. reverendryan | 2015-01-20 01:27:05.358844+00 | 33695 | 4
  770. meglio | 2015-01-20 01:27:05.358844+00 | 14 | 4
  771. Daniel15 | 2015-01-20 01:27:05.358844+00 | 79 | 4
  772. dfcowell | 2015-01-20 01:27:05.358844+00 | 20 | 4
  773. oojimaflib | 2015-01-20 01:27:05.358844+00 | 3931 | 4
  774. menugarit | 2015-01-20 01:27:05.358844+00 | 399 | 4
  775. Jarry | 2015-01-20 01:27:05.358844+00 | 22 | 4
  776. anotherusername | 2015-01-20 01:27:05.358844+00 | 23 | 4
  777. swayde | 2015-01-20 01:27:05.358844+00 | 36 | 4
  778. eviltrout | 2015-01-20 01:27:05.358844+00 | 9 | 4
  779. xi_ | 2015-01-20 01:27:05.358844+00 | 102 | 4
  780. marinus | 2015-01-20 01:27:05.358844+00 | 283 | 4
  781. null_loop | 2015-01-20 01:27:05.358844+00 | 2570 | 4
  782. martijntje | 2015-01-20 01:27:05.358844+00 | 31 | 4
  783. WernerCD | 2015-01-20 01:27:05.358844+00 | 8 | 4
  784. No_1 | 2015-01-20 01:27:05.358844+00 | 36 | 4
  785. Salamander | 2015-01-20 01:27:05.357644+00 | 300 | 16
  786. cconroy | 2015-01-20 01:27:05.357644+00 | 27 | 16
  787. hungrier | 2015-01-20 01:27:05.357644+00 | 3611 | 16
  788. obeselymorbid | 2015-01-20 01:27:05.357644+00 | 34937 | 16
  789. RTapeLoadingError | 2015-01-20 01:27:05.357644+00 | 263 | 16
  790. AwesomeRick | 2015-01-20 01:27:05.357644+00 | 18 | 16
  791. jaming | 2015-01-20 01:27:05.357644+00 | 375 | 16
  792. gnannann | 2015-01-20 01:27:05.357644+00 | 23 | 16
  793. evandentremont | 2015-01-20 01:27:05.357644+00 | 20 | 16
  794. fatbull | 2015-01-20 01:27:05.357644+00 | 78 | 16
  795. JazzyJosh | 2015-01-20 01:27:05.357644+00 | 264 | 16
  796. loopback0 | 2015-01-20 01:27:05.357644+00 | 1989 | 16
  797. Minimaul | 2015-01-20 01:27:05.357644+00 | 22 | 16
  798. SummonBot | 2015-01-20 01:27:05.357644+00 | 36 | 16
  799. FrostCat | 2015-01-20 01:27:05.357644+00 | 1001 | 16
  800. mratt | 2015-01-20 01:27:05.357644+00 | 21 | 16
  801. M_Adams | 2015-01-20 01:27:05.357644+00 | 9494 | 16
  802. presidentsdaughter | 2015-01-20 01:27:05.357644+00 | 524 | 16
  803. error | 2015-01-20 01:27:05.357644+00 | 2427 | 16
  804. Frank | 2015-01-20 01:27:05.357644+00 | 504 | 16
  805. Discourse | 2015-01-20 01:27:05.357644+00 | 700 | 16
  806. Felipe_Budinich | 2015-01-20 01:27:05.357644+00 | 18 | 16
  807. Zecc | 2015-01-20 01:27:05.357644+00 | 4559 | 16
  808. LurkerAbove | 2015-01-20 01:27:05.357644+00 | 106 | 16
  809. wood | 2015-01-20 01:27:05.357644+00 | 80 | 16
  810. dahaka | 2015-01-20 01:27:05.357644+00 | 158 | 16
  811. NetBot | 2015-01-20 01:27:05.357644+00 | 553 | 16
  812. Nprz | 2015-01-20 01:27:05.357644+00 | 36 | 16
  813. Shoreline | 2015-01-20 01:27:05.357644+00 | 260 | 16
  814. Arantor | 2015-01-20 01:27:05.357644+00 | 20552 | 16
  815. xaade | 2015-01-20 01:27:05.357644+00 | 86 | 16
  816. superjer | 2015-01-20 01:27:05.357644+00 | 20 | 16
  817. TwelveBaud | 2015-01-20 01:27:05.357644+00 | 1092 | 16
  818. foxyshadis | 2015-01-20 01:27:05.357644+00 | 27 | 16
  819. CarrieVS | 2015-01-20 01:27:05.357644+00 | 68 | 16
  820. PJH | 2015-01-20 01:27:05.357644+00 | 1688 | 16
  821. Luhmann | 2015-01-20 01:27:05.357644+00 | 29358 | 16
  822. Monarch | 2015-01-20 01:27:05.357644+00 | 615 | 16
  823. codlnghorror | 2015-01-20 01:27:05.357644+00 | 53 | 16
  824. CodingHorrorBot | 2015-01-20 01:27:05.357644+00 | 33751 | 16
  825. LoremIpsum | 2015-01-20 01:27:05.357644+00 | 475 | 16
  826. dcon | 2015-01-20 01:27:05.357644+00 | 48 | 16
  827. JohnnyFive | 2015-01-20 01:27:05.357644+00 | 33583 | 16
  828. immibis_ | 2015-01-20 01:27:05.357644+00 | 47 | 16
  829. ufmace | 2015-01-20 01:27:05.357644+00 | 23 | 16
  830. Spencer | 2015-01-20 01:27:05.357644+00 | 30913 | 16
  831. tarunik | 2015-01-20 01:27:05.357644+00 | 12834 | 16
  832. Cursorkeys | 2015-01-20 01:27:05.357644+00 | 1064 | 16
  833. CreatedToDislikeThis | 2015-01-20 01:27:05.357644+00 | 146 | 16
  834. Kuro | 2015-01-20 01:27:05.357644+00 | 170 | 16
  835. flwf | 2015-01-20 01:27:05.357644+00 | 64 | 16
  836. Buddy | 2015-01-20 01:27:05.357644+00 | 6301 | 16
  837. Mikael_Svahnberg | 2015-01-20 01:27:05.357644+00 | 57 | 16
  838. Apple | 2015-01-20 01:27:05.357644+00 | 24 | 16
  839. Jaloopa | 2015-01-20 01:27:05.357644+00 | 1311 | 16
  840. KillaCoder | 2015-01-20 01:27:05.357644+00 | 719 | 16
  841. oesor | 2015-01-20 01:27:05.357644+00 | 565 | 16
  842. Groaner | 2015-01-20 01:27:05.357644+00 | 198 | 16
  843. frsfnrrg | 2015-01-20 01:27:05.357644+00 | 347 | 16
  844. DJSpudplucker | 2015-01-20 01:27:05.357644+00 | 33 | 16
  845. CoyneTheDup | 2015-01-20 01:27:05.357644+00 | 39 | 16
  846. YellowOnline | 2015-01-20 01:27:05.357644+00 | 38 | 16
  847. ben_lubar | 2015-01-20 01:27:05.357644+00 | 5215 | 16
  848. svieira | 2015-01-20 01:27:05.357644+00 | 66 | 16
  849. aliceif | 2015-01-20 01:27:05.357644+00 | 25191 | 16
  850. asdf | 2015-01-20 01:27:05.357644+00 | 787 | 16
  851. crazyal02 | 2015-01-20 01:27:05.357644+00 | 107 | 16
  852. Yamikuronue | 2015-01-20 01:27:05.357644+00 | 6417 | 16
  853. Zacrath | 2015-01-20 01:27:05.357644+00 | 113 | 16
  854. systern | 2015-01-20 01:27:05.357644+00 | 542 | 16
  855. npe | 2015-01-20 01:27:05.357644+00 | 34 | 16
  856. Squiggle | 2015-01-20 01:27:05.357644+00 | 24 | 16
  857. bp_ | 2015-01-20 01:27:05.357644+00 | 134 | 16
  858. ijij | 2015-01-20 01:27:05.357644+00 | 381 | 16
  859. JBert | 2015-01-20 01:27:05.357644+00 | 6563 | 16
  860. some_damn_yank | 2015-01-20 01:27:05.357644+00 | 29 | 16
  861. WTF | 2015-01-20 01:27:05.357644+00 | 18 | 16
  862. ChestRockwell | 2015-01-20 01:27:05.357644+00 | 28 | 16
  863. flabdablet | 2015-01-20 01:27:05.357644+00 | 1713 | 16
  864. Deadfast | 2015-01-20 01:27:05.357644+00 | 987 | 16
  865. TCotCDCK | 2015-01-20 01:27:05.357644+00 | 544 | 16
  866. dkf | 2015-01-20 01:27:05.357644+00 | 6331 | 16
  867. agbeladem | 2015-01-20 01:27:05.357644+00 | 98 | 16
  868. stillwater | 2015-01-20 01:27:05.357644+00 | 33 | 16
  869. royal_poet | 2015-01-20 01:27:05.357644+00 | 1502 | 16
  870. another_sam | 2015-01-20 01:27:05.357644+00 | 445 | 16
  871. mott555 | 2015-01-20 01:27:05.357644+00 | 37035 | 16
  872. OffByOne | 2015-01-20 01:27:05.357644+00 | 34447 | 16
  873. cartman82 | 2015-01-20 01:27:05.357644+00 | 4134 | 16
  874. tufty | 2015-01-20 01:27:05.357644+00 | 3223 | 16
  875. Bender | 2015-01-20 01:27:05.357644+00 | 33583 | 16
  876. sloosecannon | 2015-01-20 01:27:05.357644+00 | 21 | 16
  877. boomzilla | 2015-01-20 01:27:05.357644+00 | 37447 | 16
  878. subscript_error | 2015-01-20 01:27:05.357644+00 | 100 | 16
  879. penprog | 2015-01-20 01:27:05.357644+00 | 33 | 16
  880. Keith | 2015-01-20 01:27:05.357644+00 | 2115 | 16
  881. FuckOffBob | 2015-01-20 01:27:05.357644+00 | 31 | 16
  882. thegoryone | 2015-01-20 01:27:05.357644+00 | 23 | 16
  883. smallshellscript | 2015-01-20 01:27:05.357644+00 | 235 | 16
  884. monkeyArms | 2015-01-20 01:27:05.357644+00 | 53 | 16
  885. nullptr | 2015-01-20 01:27:05.357644+00 | 35 | 16
  886. Mo6eB | 2015-01-20 01:27:05.357644+00 | 46 | 16
  887. ofcource | 2015-01-20 01:27:05.357644+00 | 20 | 16
  888. ender | 2015-01-20 01:27:05.357644+00 | 308 | 16
  889. mark_bowytz | 2015-01-20 01:27:05.357644+00 | 195 | 16
  890. TGV | 2015-01-20 01:27:05.357644+00 | 76 | 16
  891. cvi | 2015-01-20 01:27:05.357644+00 | 606 | 16
  892. lyptt | 2015-01-20 01:27:05.357644+00 | 17 | 16
  893. rad131304 | 2015-01-20 01:27:05.357644+00 | 43 | 16
  894. YouCanCallMeAl | 2015-01-20 01:27:05.357644+00 | 57 | 16
  895. bugmenot | 2015-01-20 01:27:05.357644+00 | 30 | 16
  896. trithne | 2015-01-20 01:27:05.357644+00 | 137 | 16
  897. scrib | 2015-01-20 01:27:05.357644+00 | 358 | 16
  898. Magus | 2015-01-20 01:27:05.357644+00 | 663 | 16
  899. discoursebot | 2015-01-20 01:27:05.357644+00 | 33765 | 16
  900. ZPedro | 2015-01-20 01:27:05.357644+00 | 199 | 16
  901. darkmatter | 2015-01-20 01:27:05.357644+00 | 31480 | 16
  902. Matches | 2015-01-20 01:27:05.357644+00 | 359 | 16
  903. lucas | 2015-01-20 01:27:05.357644+00 | 134 | 16
  904. tharpa | 2015-01-20 01:27:05.357644+00 | 18 | 16
  905. dhromed | 2015-01-20 01:27:05.357644+00 | 903 | 16
  906. rikkit | 2015-01-20 01:27:05.357644+00 | 118 | 16
  907. redwizard | 2015-01-20 01:27:05.357644+00 | 5688 | 16
  908. AlexMedia | 2015-01-20 01:27:05.357644+00 | 46 | 16
  909. GOG | 2015-01-20 01:27:05.357644+00 | 9774 | 16
  910. NedFodder | 2015-01-20 01:27:05.357644+00 | 18 | 16
  911. Webinsane | 2015-01-20 01:27:05.357644+00 | 37 | 16
  912. EvanED | 2015-01-20 01:27:05.357644+00 | 89 | 16
  913. Ragnax | 2015-01-20 01:27:05.357644+00 | 53 | 16
  914. tar | 2015-01-20 01:27:05.357644+00 | 492 | 16
  915. RaceProUK | 2015-01-20 01:27:05.357644+00 | 2715 | 16
  916. LikeBot | 2015-01-20 01:27:05.357644+00 | 1286 | 16
  917. locallunatic | 2015-01-20 01:27:05.357644+00 | 2779 | 16
  918. SockAdept | 2015-01-20 01:27:05.357644+00 | 532 | 16
  919. morbiuswilters | 2015-01-20 01:27:05.357644+00 | 71 | 16
  920. anonymous234 | 2015-01-20 01:27:05.357644+00 | 601 | 16
  921. apapadimoulis | 2015-01-20 01:27:05.357644+00 | 361 | 16
  922. lightsoff | 2015-01-20 01:27:05.357644+00 | 33 | 16
  923. GusTarballs | 2015-01-20 01:27:05.357644+00 | 17 | 16
  924. michaelb958 | 2015-01-20 01:27:05.357644+00 | 29 | 16
  925. Medinoc | 2015-01-20 01:27:05.357644+00 | 164 | 16
  926. Zoidberg | 2015-01-20 01:27:05.357644+00 | 33663 | 16
  927. Onyx | 2015-01-20 01:27:05.357644+00 | 18543 | 16
  928. Bort | 2015-01-20 01:27:05.357644+00 | 578 | 16
  929. HardwareGeek | 2015-01-20 01:27:05.357644+00 | 36767 | 16
  930. Maciejasjmj | 2015-01-20 01:27:05.357644+00 | 15943 | 16
  931. Snuffles | 2015-01-20 01:27:05.357644+00 | 59 | 16
  932. Steve_The_Cynic | 2015-01-20 01:27:05.357644+00 | 19 | 16
  933. CanuckMonkey | 2015-01-20 01:27:05.357644+00 | 24 | 16
  934. DoctorJones | 2015-01-20 01:27:05.357644+00 | 8688 | 16
  935. Weng | 2015-01-20 01:27:05.357644+00 | 112 | 16
  936. Evo | 2015-01-20 01:27:05.357644+00 | 22 | 16
  937. e4tmyl33t | 2015-01-20 01:27:05.357644+00 | 24 | 16
  938. SockPuppet | 2015-01-20 01:27:05.357644+00 | 8876 | 16
  939. sockbot | 2015-01-20 01:27:05.357644+00 | 33669 | 16
  940. zogstrip | 2015-01-20 01:27:05.357644+00 | 53 | 16
  941. JoeCool | 2015-01-20 01:27:05.357644+00 | 39 | 16
  942. lolwhat | 2015-01-20 01:27:05.357644+00 | 546 | 16
  943. PleegWat | 2015-01-20 01:27:05.357644+00 | 181 | 16
  944. codinghorror | 2015-01-20 01:27:05.357644+00 | 1039 | 16
  945. ScholRLEA | 2015-01-20 01:27:05.357644+00 | 38 | 16
  946. mikeTheLiar | 2015-01-20 01:27:05.357644+00 | 241 | 16
  947. Nagesh | 2015-01-20 01:27:05.357644+00 | 1154 | 16
  948. the_dragon | 2015-01-20 01:27:05.357644+00 | 21329 | 16
  949. Wukl | 2015-01-20 01:27:05.357644+00 | 240 | 16
  950. dtech | 2015-01-20 01:27:05.357644+00 | 29 | 16
  951. sanddorn | 2015-01-20 01:27:05.357644+00 | 141 | 16
  952. accalia | 2015-01-20 01:27:05.357644+00 | 38729 | 16
  953. Bulb | 2015-01-20 01:27:05.357644+00 | 894 | 16
  954. delfinom | 2015-01-20 01:27:05.357644+00 | 775 | 16
  955. Initech | 2015-01-20 01:27:05.357644+00 | 21 | 16
  956. skotl | 2015-01-20 01:27:05.357644+00 | 138 | 16
  957. Cleverbot | 2015-01-20 01:27:05.357644+00 | 27 | 16
  958. Captain | 2015-01-20 01:27:05.357644+00 | 969 | 16
  959. Boner | 2015-01-20 01:27:05.357644+00 | 24 | 16
  960. izzion | 2015-01-20 01:27:05.357644+00 | 5730 | 16
  961. riking | 2015-01-20 01:27:05.357644+00 | 2639 | 16
  962. johnsnick | 2015-01-20 01:27:05.357644+00 | 18 | 16
  963. ChrisH | 2015-01-20 01:27:05.357644+00 | 36 | 16
  964. chubertdev | 2015-01-20 01:27:05.357644+00 | 8316 | 16
  965. kupfernigk | 2015-01-20 01:27:05.357644+00 | 87 | 16
  966. Hanzo | 2015-01-20 01:27:05.357644+00 | 81 | 16
  967. lushr | 2015-01-20 01:27:05.357644+00 | 67 | 16
  968. Dogsworth | 2015-01-20 01:27:05.357644+00 | 82 | 16
  969. c__ | 2015-01-20 01:27:05.357644+00 | 412 | 16
  970. Dreikin | 2015-01-20 01:27:05.357644+00 | 586 | 16
  971. toon | 2015-01-20 01:27:05.357644+00 | 93 | 16
  972. Minkovsky | 2015-01-20 01:27:05.357644+00 | 113 | 16
  973. algorythmics | 2015-01-20 01:27:05.357644+00 | 188 | 16
  974. The_Quiet_One | 2015-01-20 01:27:05.357644+00 | 42 | 16
  975. henke37 | 2015-01-20 01:27:05.357644+00 | 51 | 16
  976. antiquarian | 2015-01-20 01:27:05.357644+00 | 7497 | 16
  977. Polygeekery | 2015-01-20 01:27:05.357644+00 | 5909 | 16
  978. VaelynPhi | 2015-01-20 01:27:05.357644+00 | 1153 | 16
  979. Eldelshell | 2015-01-20 01:27:05.357644+00 | 150 | 16
  980. Vault_Dweller | 2015-01-20 01:27:05.357644+00 | 33784 | 16
  981. MottBott | 2015-01-20 01:27:05.357644+00 | 20 | 16
  982. cdosrun1 | 2015-01-20 01:27:05.357644+00 | 100 | 16
  983. sam | 2015-01-20 01:27:05.357644+00 | 339 | 16
  984. jello | 2015-01-20 01:27:05.357644+00 | 90 | 16
  985. Tsaukpaetra | 2015-01-20 01:27:05.357644+00 | 116 | 16
  986. jakjawagon | 2015-01-20 01:27:05.357644+00 | 54 | 16
  987. moderator | 2015-01-20 01:27:05.357644+00 | 19 | 16
  988. ChaosTheEternal | 2015-01-20 01:27:05.357644+00 | 30409 | 16
  989. faoileag | 2015-01-20 01:27:05.357644+00 | 17094 | 16
  990. scboffspring | 2015-01-20 01:27:05.357644+00 | 30 | 16
  991. VinDuv | 2015-01-20 01:27:05.357644+00 | 33886 | 16
  992. zlogic | 2015-01-20 01:27:05.357644+00 | 24 | 16
  993. chouchuuchochouchou | 2015-01-20 01:27:05.357644+00 | 242 | 16
  994. nevesrorre | 2015-01-20 01:27:05.357644+00 | 22 | 16
  995. peedub | 2015-01-20 01:27:05.357644+00 | 140 | 16
  996. hotmailcom | 2015-01-20 01:27:05.357644+00 | 110 | 16
  997. nobulate | 2015-01-20 01:27:05.357644+00 | 1052 | 16
  998. urkerab | 2015-01-20 01:27:05.357644+00 | 154 | 16
  999. abarker | 2015-01-20 01:27:05.357644+00 | 32175 | 16
  1000. hominid | 2015-01-20 01:27:05.357644+00 | 71 | 16
  1001. Nipo | 2015-01-20 01:27:05.357644+00 | 193 | 16
  1002. atimson | 2015-01-20 01:27:05.357644+00 | 65 | 16
  1003. MrL | 2015-01-20 01:27:05.357644+00 | 75 | 16
  1004. MathNerdCNU | 2015-01-20 01:27:05.357644+00 | 19 | 16
  1005. powerlord | 2015-01-20 01:27:05.357644+00 | 228 | 16
  1006. nightware | 2015-01-20 01:27:05.357644+00 | 420 | 16
  1007. Zainab58 | 2015-01-20 01:27:05.357644+00 | 23 | 16
  1008. Gaska | 2015-01-20 01:27:05.357644+00 | 162 | 16
  1009. DrakeSmith | 2015-01-20 01:27:05.357644+00 | 2501 | 16
  1010. reverendryan | 2015-01-20 01:27:05.357644+00 | 33695 | 16
  1011. Daniel15 | 2015-01-20 01:27:05.357644+00 | 79 | 16
  1012. dfcowell | 2015-01-20 01:27:05.357644+00 | 20 | 16
  1013. oojimaflib | 2015-01-20 01:27:05.357644+00 | 3931 | 16
  1014. menugarit | 2015-01-20 01:27:05.357644+00 | 399 | 16
  1015. Jarry | 2015-01-20 01:27:05.357644+00 | 22 | 16
  1016. anotherusername | 2015-01-20 01:27:05.357644+00 | 23 | 16
  1017. swayde | 2015-01-20 01:27:05.357644+00 | 36 | 16
  1018. xi_ | 2015-01-20 01:27:05.357644+00 | 102 | 16
  1019. marinus | 2015-01-20 01:27:05.357644+00 | 283 | 16
  1020. null_loop | 2015-01-20 01:27:05.357644+00 | 2570 | 16
  1021. martijntje | 2015-01-20 01:27:05.357644+00 | 31 | 16
  1022. No_1 | 2015-01-20 01:27:05.357644+00 | 36 | 16
  1023. Salamander | 2015-01-20 01:27:05.352844+00 | 300 | 64
  1024. hungrier | 2015-01-20 01:27:05.352844+00 | 3611 | 64
  1025. obeselymorbid | 2015-01-20 01:27:05.352844+00 | 34937 | 64
  1026. RTapeLoadingError | 2015-01-20 01:27:05.352844+00 | 263 | 64
  1027. jaming | 2015-01-20 01:27:05.352844+00 | 375 | 64
  1028. fatbull | 2015-01-20 01:27:05.352844+00 | 78 | 64
  1029. JazzyJosh | 2015-01-20 01:27:05.352844+00 | 264 | 64
  1030. loopback0 | 2015-01-20 01:27:05.352844+00 | 1989 | 64
  1031. FrostCat | 2015-01-20 01:27:05.352844+00 | 1001 | 64
  1032. M_Adams | 2015-01-20 01:27:05.352844+00 | 9494 | 64
  1033. presidentsdaughter | 2015-01-20 01:27:05.352844+00 | 524 | 64
  1034. error | 2015-01-20 01:27:05.352844+00 | 2427 | 64
  1035. Frank | 2015-01-20 01:27:05.352844+00 | 504 | 64
  1036. Discourse | 2015-01-20 01:27:05.352844+00 | 700 | 64
  1037. Zecc | 2015-01-20 01:27:05.352844+00 | 4559 | 64
  1038. LurkerAbove | 2015-01-20 01:27:05.352844+00 | 106 | 64
  1039. wood | 2015-01-20 01:27:05.352844+00 | 80 | 64
  1040. dahaka | 2015-01-20 01:27:05.352844+00 | 158 | 64
  1041. NetBot | 2015-01-20 01:27:05.352844+00 | 553 | 64
  1042. Shoreline | 2015-01-20 01:27:05.352844+00 | 260 | 64
  1043. Arantor | 2015-01-20 01:27:05.352844+00 | 20552 | 64
  1044. xaade | 2015-01-20 01:27:05.352844+00 | 86 | 64
  1045. TwelveBaud | 2015-01-20 01:27:05.352844+00 | 1092 | 64
  1046. CarrieVS | 2015-01-20 01:27:05.352844+00 | 68 | 64
  1047. PJH | 2015-01-20 01:27:05.352844+00 | 1688 | 64
  1048. Luhmann | 2015-01-20 01:27:05.352844+00 | 29358 | 64
  1049. Monarch | 2015-01-20 01:27:05.352844+00 | 615 | 64
  1050. CodingHorrorBot | 2015-01-20 01:27:05.352844+00 | 33751 | 64
  1051. LoremIpsum | 2015-01-20 01:27:05.352844+00 | 475 | 64
  1052. JohnnyFive | 2015-01-20 01:27:05.352844+00 | 33583 | 64
  1053. Spencer | 2015-01-20 01:27:05.352844+00 | 30913 | 64
  1054. tarunik | 2015-01-20 01:27:05.352844+00 | 12834 | 64
  1055. Cursorkeys | 2015-01-20 01:27:05.352844+00 | 1064 | 64
  1056. CreatedToDislikeThis | 2015-01-20 01:27:05.352844+00 | 146 | 64
  1057. Kuro | 2015-01-20 01:27:05.352844+00 | 170 | 64
  1058. Buddy | 2015-01-20 01:27:05.352844+00 | 6301 | 64
  1059. Jaloopa | 2015-01-20 01:27:05.352844+00 | 1311 | 64
  1060. KillaCoder | 2015-01-20 01:27:05.352844+00 | 719 | 64
  1061. oesor | 2015-01-20 01:27:05.352844+00 | 565 | 64
  1062. Groaner | 2015-01-20 01:27:05.352844+00 | 198 | 64
  1063. frsfnrrg | 2015-01-20 01:27:05.352844+00 | 347 | 64
  1064. ben_lubar | 2015-01-20 01:27:05.352844+00 | 5215 | 64
  1065. svieira | 2015-01-20 01:27:05.352844+00 | 66 | 64
  1066. aliceif | 2015-01-20 01:27:05.352844+00 | 25191 | 64
  1067. asdf | 2015-01-20 01:27:05.352844+00 | 787 | 64
  1068. crazyal02 | 2015-01-20 01:27:05.352844+00 | 107 | 64
  1069. Yamikuronue | 2015-01-20 01:27:05.352844+00 | 6417 | 64
  1070. Zacrath | 2015-01-20 01:27:05.352844+00 | 113 | 64
  1071. systern | 2015-01-20 01:27:05.352844+00 | 542 | 64
  1072. bp_ | 2015-01-20 01:27:05.352844+00 | 134 | 64
  1073. ijij | 2015-01-20 01:27:05.352844+00 | 381 | 64
  1074. JBert | 2015-01-20 01:27:05.352844+00 | 6563 | 64
  1075. flabdablet | 2015-01-20 01:27:05.352844+00 | 1713 | 64
  1076. Deadfast | 2015-01-20 01:27:05.352844+00 | 987 | 64
  1077. TCotCDCK | 2015-01-20 01:27:05.352844+00 | 544 | 64
  1078. dkf | 2015-01-20 01:27:05.352844+00 | 6331 | 64
  1079. agbeladem | 2015-01-20 01:27:05.352844+00 | 98 | 64
  1080. royal_poet | 2015-01-20 01:27:05.352844+00 | 1502 | 64
  1081. another_sam | 2015-01-20 01:27:05.352844+00 | 445 | 64
  1082. mott555 | 2015-01-20 01:27:05.352844+00 | 37035 | 64
  1083. OffByOne | 2015-01-20 01:27:05.352844+00 | 34447 | 64
  1084. cartman82 | 2015-01-20 01:27:05.352844+00 | 4134 | 64
  1085. tufty | 2015-01-20 01:27:05.352844+00 | 3223 | 64
  1086. Bender | 2015-01-20 01:27:05.352844+00 | 33583 | 64
  1087. boomzilla | 2015-01-20 01:27:05.352844+00 | 37447 | 64
  1088. subscript_error | 2015-01-20 01:27:05.352844+00 | 100 | 64
  1089. Keith | 2015-01-20 01:27:05.352844+00 | 2115 | 64
  1090. smallshellscript | 2015-01-20 01:27:05.352844+00 | 235 | 64
  1091. ender | 2015-01-20 01:27:05.352844+00 | 308 | 64
  1092. mark_bowytz | 2015-01-20 01:27:05.352844+00 | 195 | 64
  1093. TGV | 2015-01-20 01:27:05.352844+00 | 76 | 64
  1094. cvi | 2015-01-20 01:27:05.352844+00 | 606 | 64
  1095. trithne | 2015-01-20 01:27:05.352844+00 | 137 | 64
  1096. scrib | 2015-01-20 01:27:05.352844+00 | 358 | 64
  1097. Magus | 2015-01-20 01:27:05.352844+00 | 663 | 64
  1098. discoursebot | 2015-01-20 01:27:05.352844+00 | 33765 | 64
  1099. ZPedro | 2015-01-20 01:27:05.352844+00 | 199 | 64
  1100. darkmatter | 2015-01-20 01:27:05.352844+00 | 31480 | 64
  1101. Matches | 2015-01-20 01:27:05.352844+00 | 359 | 64
  1102. lucas | 2015-01-20 01:27:05.352844+00 | 134 | 64
  1103. dhromed | 2015-01-20 01:27:05.352844+00 | 903 | 64
  1104. rikkit | 2015-01-20 01:27:05.352844+00 | 118 | 64
  1105. redwizard | 2015-01-20 01:27:05.352844+00 | 5688 | 64
  1106. GOG | 2015-01-20 01:27:05.352844+00 | 9774 | 64
  1107. EvanED | 2015-01-20 01:27:05.352844+00 | 89 | 64
  1108. tar | 2015-01-20 01:27:05.352844+00 | 492 | 64
  1109. RaceProUK | 2015-01-20 01:27:05.352844+00 | 2715 | 64
  1110. LikeBot | 2015-01-20 01:27:05.352844+00 | 1286 | 64
  1111. locallunatic | 2015-01-20 01:27:05.352844+00 | 2779 | 64
  1112. SockAdept | 2015-01-20 01:27:05.352844+00 | 532 | 64
  1113. morbiuswilters | 2015-01-20 01:27:05.352844+00 | 71 | 64
  1114. anonymous234 | 2015-01-20 01:27:05.352844+00 | 601 | 64
  1115. apapadimoulis | 2015-01-20 01:27:05.352844+00 | 361 | 64
  1116. Medinoc | 2015-01-20 01:27:05.352844+00 | 164 | 64
  1117. Zoidberg | 2015-01-20 01:27:05.352844+00 | 33663 | 64
  1118. Onyx | 2015-01-20 01:27:05.352844+00 | 18543 | 64
  1119. Bort | 2015-01-20 01:27:05.352844+00 | 578 | 64
  1120. HardwareGeek | 2015-01-20 01:27:05.352844+00 | 36767 | 64
  1121. Maciejasjmj | 2015-01-20 01:27:05.352844+00 | 15943 | 64
  1122. DoctorJones | 2015-01-20 01:27:05.352844+00 | 8688 | 64
  1123. Weng | 2015-01-20 01:27:05.352844+00 | 112 | 64
  1124. SockPuppet | 2015-01-20 01:27:05.352844+00 | 8876 | 64
  1125. sockbot | 2015-01-20 01:27:05.352844+00 | 33669 | 64
  1126. lolwhat | 2015-01-20 01:27:05.352844+00 | 546 | 64
  1127. PleegWat | 2015-01-20 01:27:05.352844+00 | 181 | 64
  1128. codinghorror | 2015-01-20 01:27:05.352844+00 | 1039 | 64
  1129. mikeTheLiar | 2015-01-20 01:27:05.352844+00 | 241 | 64
  1130. Nagesh | 2015-01-20 01:27:05.352844+00 | 1154 | 64
  1131. the_dragon | 2015-01-20 01:27:05.352844+00 | 21329 | 64
  1132. Wukl | 2015-01-20 01:27:05.352844+00 | 240 | 64
  1133. sanddorn | 2015-01-20 01:27:05.352844+00 | 141 | 64
  1134. accalia | 2015-01-20 01:27:05.352844+00 | 38729 | 64
  1135. Bulb | 2015-01-20 01:27:05.352844+00 | 894 | 64
  1136. delfinom | 2015-01-20 01:27:05.352844+00 | 775 | 64
  1137. skotl | 2015-01-20 01:27:05.352844+00 | 138 | 64
  1138. Captain | 2015-01-20 01:27:05.352844+00 | 969 | 64
  1139. izzion | 2015-01-20 01:27:05.352844+00 | 5730 | 64
  1140. riking | 2015-01-20 01:27:05.352844+00 | 2639 | 64
  1141. chubertdev | 2015-01-20 01:27:05.352844+00 | 8316 | 64
  1142. kupfernigk | 2015-01-20 01:27:05.352844+00 | 87 | 64
  1143. Hanzo | 2015-01-20 01:27:05.352844+00 | 81 | 64
  1144. lushr | 2015-01-20 01:27:05.352844+00 | 67 | 64
  1145. Dogsworth | 2015-01-20 01:27:05.352844+00 | 82 | 64
  1146. c__ | 2015-01-20 01:27:05.352844+00 | 412 | 64
  1147. Dreikin | 2015-01-20 01:27:05.352844+00 | 586 | 64
  1148. toon | 2015-01-20 01:27:05.352844+00 | 93 | 64
  1149. Minkovsky | 2015-01-20 01:27:05.352844+00 | 113 | 64
  1150. algorythmics | 2015-01-20 01:27:05.352844+00 | 188 | 64
  1151. antiquarian | 2015-01-20 01:27:05.352844+00 | 7497 | 64
  1152. Polygeekery | 2015-01-20 01:27:05.352844+00 | 5909 | 64
  1153. VaelynPhi | 2015-01-20 01:27:05.352844+00 | 1153 | 64
  1154. Eldelshell | 2015-01-20 01:27:05.352844+00 | 150 | 64
  1155. Vault_Dweller | 2015-01-20 01:27:05.352844+00 | 33784 | 64
  1156. cdosrun1 | 2015-01-20 01:27:05.352844+00 | 100 | 64
  1157. sam | 2015-01-20 01:27:05.352844+00 | 339 | 64
  1158. jello | 2015-01-20 01:27:05.352844+00 | 90 | 64
  1159. Tsaukpaetra | 2015-01-20 01:27:05.352844+00 | 116 | 64
  1160. ChaosTheEternal | 2015-01-20 01:27:05.352844+00 | 30409 | 64
  1161. faoileag | 2015-01-20 01:27:05.352844+00 | 17094 | 64
  1162. VinDuv | 2015-01-20 01:27:05.352844+00 | 33886 | 64
  1163. chouchuuchochouchou | 2015-01-20 01:27:05.352844+00 | 242 | 64
  1164. peedub | 2015-01-20 01:27:05.352844+00 | 140 | 64
  1165. hotmailcom | 2015-01-20 01:27:05.352844+00 | 110 | 64
  1166. nobulate | 2015-01-20 01:27:05.352844+00 | 1052 | 64
  1167. urkerab | 2015-01-20 01:27:05.352844+00 | 154 | 64
  1168. abarker | 2015-01-20 01:27:05.352844+00 | 32175 | 64
  1169. hominid | 2015-01-20 01:27:05.352844+00 | 71 | 64
  1170. Nipo | 2015-01-20 01:27:05.352844+00 | 193 | 64
  1171. atimson | 2015-01-20 01:27:05.352844+00 | 65 | 64
  1172. MrL | 2015-01-20 01:27:05.352844+00 | 75 | 64
  1173. powerlord | 2015-01-20 01:27:05.352844+00 | 228 | 64
  1174. nightware | 2015-01-20 01:27:05.352844+00 | 420 | 64
  1175. Gaska | 2015-01-20 01:27:05.352844+00 | 162 | 64
  1176. DrakeSmith | 2015-01-20 01:27:05.352844+00 | 2501 | 64
  1177. reverendryan | 2015-01-20 01:27:05.352844+00 | 33695 | 64
  1178. Daniel15 | 2015-01-20 01:27:05.352844+00 | 79 | 64
  1179. oojimaflib | 2015-01-20 01:27:05.352844+00 | 3931 | 64
  1180. menugarit | 2015-01-20 01:27:05.352844+00 | 399 | 64
  1181. xi_ | 2015-01-20 01:27:05.352844+00 | 102 | 64
  1182. marinus | 2015-01-20 01:27:05.352844+00 | 283 | 64
  1183. null_loop | 2015-01-20 01:27:05.352844+00 | 2570 | 64
  1184. Salamander | 2015-01-20 01:27:05.333644+00 | 300 | 256
  1185. hungrier | 2015-01-20 01:27:05.333644+00 | 3611 | 256
  1186. obeselymorbid | 2015-01-20 01:27:05.333644+00 | 34937 | 256
  1187. RTapeLoadingError | 2015-01-20 01:27:05.333644+00 | 263 | 256
  1188. jaming | 2015-01-20 01:27:05.333644+00 | 375 | 256
  1189. JazzyJosh | 2015-01-20 01:27:05.333644+00 | 264 | 256
  1190. loopback0 | 2015-01-20 01:27:05.333644+00 | 1989 | 256
  1191. FrostCat | 2015-01-20 01:27:05.333644+00 | 1001 | 256
  1192. M_Adams | 2015-01-20 01:27:05.333644+00 | 9494 | 256
  1193. presidentsdaughter | 2015-01-20 01:27:05.333644+00 | 524 | 256
  1194. error | 2015-01-20 01:27:05.333644+00 | 2427 | 256
  1195. Frank | 2015-01-20 01:27:05.333644+00 | 504 | 256
  1196. Discourse | 2015-01-20 01:27:05.333644+00 | 700 | 256
  1197. Zecc | 2015-01-20 01:27:05.333644+00 | 4559 | 256
  1198. NetBot | 2015-01-20 01:27:05.333644+00 | 553 | 256
  1199. Shoreline | 2015-01-20 01:27:05.333644+00 | 260 | 256
  1200. Arantor | 2015-01-20 01:27:05.333644+00 | 20552 | 256
  1201. TwelveBaud | 2015-01-20 01:27:05.333644+00 | 1092 | 256
  1202. PJH | 2015-01-20 01:27:05.333644+00 | 1688 | 256
  1203. Luhmann | 2015-01-20 01:27:05.333644+00 | 29358 | 256
  1204. Monarch | 2015-01-20 01:27:05.333644+00 | 615 | 256
  1205. CodingHorrorBot | 2015-01-20 01:27:05.333644+00 | 33751 | 256
  1206. LoremIpsum | 2015-01-20 01:27:05.333644+00 | 475 | 256
  1207. JohnnyFive | 2015-01-20 01:27:05.333644+00 | 33583 | 256
  1208. Spencer | 2015-01-20 01:27:05.333644+00 | 30913 | 256
  1209. tarunik | 2015-01-20 01:27:05.333644+00 | 12834 | 256
  1210. Cursorkeys | 2015-01-20 01:27:05.333644+00 | 1064 | 256
  1211. Buddy | 2015-01-20 01:27:05.333644+00 | 6301 | 256
  1212. Jaloopa | 2015-01-20 01:27:05.333644+00 | 1311 | 256
  1213. KillaCoder | 2015-01-20 01:27:05.333644+00 | 719 | 256
  1214. oesor | 2015-01-20 01:27:05.333644+00 | 565 | 256
  1215. frsfnrrg | 2015-01-20 01:27:05.333644+00 | 347 | 256
  1216. ben_lubar | 2015-01-20 01:27:05.333644+00 | 5215 | 256
  1217. aliceif | 2015-01-20 01:27:05.333644+00 | 25191 | 256
  1218. asdf | 2015-01-20 01:27:05.333644+00 | 787 | 256
  1219. Yamikuronue | 2015-01-20 01:27:05.333644+00 | 6417 | 256
  1220. systern | 2015-01-20 01:27:05.333644+00 | 542 | 256
  1221. ijij | 2015-01-20 01:27:05.333644+00 | 381 | 256
  1222. JBert | 2015-01-20 01:27:05.333644+00 | 6563 | 256
  1223. flabdablet | 2015-01-20 01:27:05.333644+00 | 1713 | 256
  1224. Deadfast | 2015-01-20 01:27:05.333644+00 | 987 | 256
  1225. TCotCDCK | 2015-01-20 01:27:05.333644+00 | 544 | 256
  1226. dkf | 2015-01-20 01:27:05.333644+00 | 6331 | 256
  1227. royal_poet | 2015-01-20 01:27:05.333644+00 | 1502 | 256
  1228. another_sam | 2015-01-20 01:27:05.333644+00 | 445 | 256
  1229. mott555 | 2015-01-20 01:27:05.333644+00 | 37035 | 256
  1230. OffByOne | 2015-01-20 01:27:05.333644+00 | 34447 | 256
  1231. cartman82 | 2015-01-20 01:27:05.333644+00 | 4134 | 256
  1232. tufty | 2015-01-20 01:27:05.333644+00 | 3223 | 256
  1233. Bender | 2015-01-20 01:27:05.333644+00 | 33583 | 256
  1234. boomzilla | 2015-01-20 01:27:05.333644+00 | 37447 | 256
  1235. Keith | 2015-01-20 01:27:05.333644+00 | 2115 | 256
  1236. ender | 2015-01-20 01:27:05.333644+00 | 308 | 256
  1237. cvi | 2015-01-20 01:27:05.333644+00 | 606 | 256
  1238. scrib | 2015-01-20 01:27:05.333644+00 | 358 | 256
  1239. Magus | 2015-01-20 01:27:05.333644+00 | 663 | 256
  1240. discoursebot | 2015-01-20 01:27:05.333644+00 | 33765 | 256
  1241. darkmatter | 2015-01-20 01:27:05.333644+00 | 31480 | 256
  1242. Matches | 2015-01-20 01:27:05.333644+00 | 359 | 256
  1243. dhromed | 2015-01-20 01:27:05.333644+00 | 903 | 256
  1244. redwizard | 2015-01-20 01:27:05.333644+00 | 5688 | 256
  1245. GOG | 2015-01-20 01:27:05.333644+00 | 9774 | 256
  1246. tar | 2015-01-20 01:27:05.333644+00 | 492 | 256
  1247. RaceProUK | 2015-01-20 01:27:05.333644+00 | 2715 | 256
  1248. LikeBot | 2015-01-20 01:27:05.333644+00 | 1286 | 256
  1249. locallunatic | 2015-01-20 01:27:05.333644+00 | 2779 | 256
  1250. SockAdept | 2015-01-20 01:27:05.333644+00 | 532 | 256
  1251. anonymous234 | 2015-01-20 01:27:05.333644+00 | 601 | 256
  1252. apapadimoulis | 2015-01-20 01:27:05.333644+00 | 361 | 256
  1253. Zoidberg | 2015-01-20 01:27:05.333644+00 | 33663 | 256
  1254. Onyx | 2015-01-20 01:27:05.333644+00 | 18543 | 256
  1255. Bort | 2015-01-20 01:27:05.333644+00 | 578 | 256
  1256. HardwareGeek | 2015-01-20 01:27:05.333644+00 | 36767 | 256
  1257. Maciejasjmj | 2015-01-20 01:27:05.333644+00 | 15943 | 256
  1258. DoctorJones | 2015-01-20 01:27:05.333644+00 | 8688 | 256
  1259. SockPuppet | 2015-01-20 01:27:05.333644+00 | 8876 | 256
  1260. sockbot | 2015-01-20 01:27:05.333644+00 | 33669 | 256
  1261. lolwhat | 2015-01-20 01:27:05.333644+00 | 546 | 256
  1262. codinghorror | 2015-01-20 01:27:05.333644+00 | 1039 | 256
  1263. Nagesh | 2015-01-20 01:27:05.333644+00 | 1154 | 256
  1264. the_dragon | 2015-01-20 01:27:05.333644+00 | 21329 | 256
  1265. accalia | 2015-01-20 01:27:05.333644+00 | 38729 | 256
  1266. Bulb | 2015-01-20 01:27:05.333644+00 | 894 | 256
  1267. delfinom | 2015-01-20 01:27:05.333644+00 | 775 | 256
  1268. Captain | 2015-01-20 01:27:05.333644+00 | 969 | 256
  1269. izzion | 2015-01-20 01:27:05.333644+00 | 5730 | 256
  1270. riking | 2015-01-20 01:27:05.333644+00 | 2639 | 256
  1271. chubertdev | 2015-01-20 01:27:05.333644+00 | 8316 | 256
  1272. c__ | 2015-01-20 01:27:05.333644+00 | 412 | 256
  1273. Dreikin | 2015-01-20 01:27:05.333644+00 | 586 | 256
  1274. antiquarian | 2015-01-20 01:27:05.333644+00 | 7497 | 256
  1275. Polygeekery | 2015-01-20 01:27:05.333644+00 | 5909 | 256
  1276. VaelynPhi | 2015-01-20 01:27:05.333644+00 | 1153 | 256
  1277. Vault_Dweller | 2015-01-20 01:27:05.333644+00 | 33784 | 256
  1278. sam | 2015-01-20 01:27:05.333644+00 | 339 | 256
  1279. ChaosTheEternal | 2015-01-20 01:27:05.333644+00 | 30409 | 256
  1280. faoileag | 2015-01-20 01:27:05.333644+00 | 17094 | 256
  1281. VinDuv | 2015-01-20 01:27:05.333644+00 | 33886 | 256
  1282. nobulate | 2015-01-20 01:27:05.333644+00 | 1052 | 256
  1283. abarker | 2015-01-20 01:27:05.333644+00 | 32175 | 256
  1284. nightware | 2015-01-20 01:27:05.333644+00 | 420 | 256
  1285. DrakeSmith | 2015-01-20 01:27:05.333644+00 | 2501 | 256
  1286. reverendryan | 2015-01-20 01:27:05.333644+00 | 33695 | 256
  1287. oojimaflib | 2015-01-20 01:27:05.333644+00 | 3931 | 256
  1288. menugarit | 2015-01-20 01:27:05.333644+00 | 399 | 256
  1289. marinus | 2015-01-20 01:27:05.333644+00 | 283 | 256
  1290. null_loop | 2015-01-20 01:27:05.333644+00 | 2570 | 256
  1291. hungrier | 2015-01-20 01:27:05.256844+00 | 3611 | 1024
  1292. obeselymorbid | 2015-01-20 01:27:05.256844+00 | 34937 | 1024
  1293. loopback0 | 2015-01-20 01:27:05.256844+00 | 1989 | 1024
  1294. M_Adams | 2015-01-20 01:27:05.256844+00 | 9494 | 1024
  1295. error | 2015-01-20 01:27:05.256844+00 | 2427 | 1024
  1296. Zecc | 2015-01-20 01:27:05.256844+00 | 4559 | 1024
  1297. Arantor | 2015-01-20 01:27:05.256844+00 | 20552 | 1024
  1298. TwelveBaud | 2015-01-20 01:27:05.256844+00 | 1092 | 1024
  1299. PJH | 2015-01-20 01:27:05.256844+00 | 1688 | 1024
  1300. Luhmann | 2015-01-20 01:27:05.256844+00 | 29358 | 1024
  1301. CodingHorrorBot | 2015-01-20 01:27:05.256844+00 | 33751 | 1024
  1302. JohnnyFive | 2015-01-20 01:27:05.256844+00 | 33583 | 1024
  1303. Spencer | 2015-01-20 01:27:05.256844+00 | 30913 | 1024
  1304. tarunik | 2015-01-20 01:27:05.256844+00 | 12834 | 1024
  1305. Cursorkeys | 2015-01-20 01:27:05.256844+00 | 1064 | 1024
  1306. Buddy | 2015-01-20 01:27:05.256844+00 | 6301 | 1024
  1307. Jaloopa | 2015-01-20 01:27:05.256844+00 | 1311 | 1024
  1308. ben_lubar | 2015-01-20 01:27:05.256844+00 | 5215 | 1024
  1309. aliceif | 2015-01-20 01:27:05.256844+00 | 25191 | 1024
  1310. Yamikuronue | 2015-01-20 01:27:05.256844+00 | 6417 | 1024
  1311. JBert | 2015-01-20 01:27:05.256844+00 | 6563 | 1024
  1312. flabdablet | 2015-01-20 01:27:05.256844+00 | 1713 | 1024
  1313. dkf | 2015-01-20 01:27:05.256844+00 | 6331 | 1024
  1314. royal_poet | 2015-01-20 01:27:05.256844+00 | 1502 | 1024
  1315. mott555 | 2015-01-20 01:27:05.256844+00 | 37035 | 1024
  1316. OffByOne | 2015-01-20 01:27:05.256844+00 | 34447 | 1024
  1317. cartman82 | 2015-01-20 01:27:05.256844+00 | 4134 | 1024
  1318. tufty | 2015-01-20 01:27:05.256844+00 | 3223 | 1024
  1319. Bender | 2015-01-20 01:27:05.256844+00 | 33583 | 1024
  1320. boomzilla | 2015-01-20 01:27:05.256844+00 | 37447 | 1024
  1321. Keith | 2015-01-20 01:27:05.256844+00 | 2115 | 1024
  1322. discoursebot | 2015-01-20 01:27:05.256844+00 | 33765 | 1024
  1323. darkmatter | 2015-01-20 01:27:05.256844+00 | 31480 | 1024
  1324. redwizard | 2015-01-20 01:27:05.256844+00 | 5688 | 1024
  1325. GOG | 2015-01-20 01:27:05.256844+00 | 9774 | 1024
  1326. RaceProUK | 2015-01-20 01:27:05.256844+00 | 2715 | 1024
  1327. LikeBot | 2015-01-20 01:27:05.256844+00 | 1286 | 1024
  1328. locallunatic | 2015-01-20 01:27:05.256844+00 | 2779 | 1024
  1329. Zoidberg | 2015-01-20 01:27:05.256844+00 | 33663 | 1024
  1330. Onyx | 2015-01-20 01:27:05.256844+00 | 18543 | 1024
  1331. HardwareGeek | 2015-01-20 01:27:05.256844+00 | 36767 | 1024
  1332. Maciejasjmj | 2015-01-20 01:27:05.256844+00 | 15943 | 1024
  1333. DoctorJones | 2015-01-20 01:27:05.256844+00 | 8688 | 1024
  1334. SockPuppet | 2015-01-20 01:27:05.256844+00 | 8876 | 1024
  1335. sockbot | 2015-01-20 01:27:05.256844+00 | 33669 | 1024
  1336. codinghorror | 2015-01-20 01:27:05.256844+00 | 1039 | 1024
  1337. Nagesh | 2015-01-20 01:27:05.256844+00 | 1154 | 1024
  1338. the_dragon | 2015-01-20 01:27:05.256844+00 | 21329 | 1024
  1339. accalia | 2015-01-20 01:27:05.256844+00 | 38729 | 1024
  1340. izzion | 2015-01-20 01:27:05.256844+00 | 5730 | 1024
  1341. riking | 2015-01-20 01:27:05.256844+00 | 2639 | 1024
  1342. chubertdev | 2015-01-20 01:27:05.256844+00 | 8316 | 1024
  1343. antiquarian | 2015-01-20 01:27:05.256844+00 | 7497 | 1024
  1344. Polygeekery | 2015-01-20 01:27:05.256844+00 | 5909 | 1024
  1345. VaelynPhi | 2015-01-20 01:27:05.256844+00 | 1153 | 1024
  1346. Vault_Dweller | 2015-01-20 01:27:05.256844+00 | 33784 | 1024
  1347. ChaosTheEternal | 2015-01-20 01:27:05.256844+00 | 30409 | 1024
  1348. faoileag | 2015-01-20 01:27:05.256844+00 | 17094 | 1024
  1349. VinDuv | 2015-01-20 01:27:05.256844+00 | 33886 | 1024
  1350. nobulate | 2015-01-20 01:27:05.256844+00 | 1052 | 1024
  1351. abarker | 2015-01-20 01:27:05.256844+00 | 32175 | 1024
  1352. DrakeSmith | 2015-01-20 01:27:05.256844+00 | 2501 | 1024
  1353. reverendryan | 2015-01-20 01:27:05.256844+00 | 33695 | 1024
  1354. oojimaflib | 2015-01-20 01:27:05.256844+00 | 3931 | 1024
  1355. null_loop | 2015-01-20 01:27:05.256844+00 | 2570 | 1024
  1356. obeselymorbid | 2015-01-20 01:27:04.949644+00 | 34937 | 4096
  1357. M_Adams | 2015-01-20 01:27:04.949644+00 | 9494 | 4096
  1358. Zecc | 2015-01-20 01:27:04.949644+00 | 4559 | 4096
  1359. Arantor | 2015-01-20 01:27:04.949644+00 | 20552 | 4096
  1360. Luhmann | 2015-01-20 01:27:04.949644+00 | 29358 | 4096
  1361. CodingHorrorBot | 2015-01-20 01:27:04.949644+00 | 33751 | 4096
  1362. JohnnyFive | 2015-01-20 01:27:04.949644+00 | 33583 | 4096
  1363. Spencer | 2015-01-20 01:27:04.949644+00 | 30913 | 4096
  1364. tarunik | 2015-01-20 01:27:04.949644+00 | 12834 | 4096
  1365. Buddy | 2015-01-20 01:27:04.949644+00 | 6301 | 4096
  1366. ben_lubar | 2015-01-20 01:27:04.949644+00 | 5215 | 4096
  1367. aliceif | 2015-01-20 01:27:04.949644+00 | 25191 | 4096
  1368. Yamikuronue | 2015-01-20 01:27:04.949644+00 | 6417 | 4096
  1369. JBert | 2015-01-20 01:27:04.949644+00 | 6563 | 4096
  1370. dkf | 2015-01-20 01:27:04.949644+00 | 6331 | 4096
  1371. mott555 | 2015-01-20 01:27:04.949644+00 | 37035 | 4096
  1372. OffByOne | 2015-01-20 01:27:04.949644+00 | 34447 | 4096
  1373. cartman82 | 2015-01-20 01:27:04.949644+00 | 4134 | 4096
  1374. Bender | 2015-01-20 01:27:04.949644+00 | 33583 | 4096
  1375. boomzilla | 2015-01-20 01:27:04.949644+00 | 37447 | 4096
  1376. discoursebot | 2015-01-20 01:27:04.949644+00 | 33765 | 4096
  1377. darkmatter | 2015-01-20 01:27:04.949644+00 | 31480 | 4096
  1378. redwizard | 2015-01-20 01:27:04.949644+00 | 5688 | 4096
  1379. GOG | 2015-01-20 01:27:04.949644+00 | 9774 | 4096
  1380. Zoidberg | 2015-01-20 01:27:04.949644+00 | 33663 | 4096
  1381. Onyx | 2015-01-20 01:27:04.949644+00 | 18543 | 4096
  1382. HardwareGeek | 2015-01-20 01:27:04.949644+00 | 36767 | 4096
  1383. Maciejasjmj | 2015-01-20 01:27:04.949644+00 | 15943 | 4096
  1384. DoctorJones | 2015-01-20 01:27:04.949644+00 | 8688 | 4096
  1385. SockPuppet | 2015-01-20 01:27:04.949644+00 | 8876 | 4096
  1386. sockbot | 2015-01-20 01:27:04.949644+00 | 33669 | 4096
  1387. the_dragon | 2015-01-20 01:27:04.949644+00 | 21329 | 4096
  1388. accalia | 2015-01-20 01:27:04.949644+00 | 38729 | 4096
  1389. izzion | 2015-01-20 01:27:04.949644+00 | 5730 | 4096
  1390. chubertdev | 2015-01-20 01:27:04.949644+00 | 8316 | 4096
  1391. antiquarian | 2015-01-20 01:27:04.949644+00 | 7497 | 4096
  1392. Polygeekery | 2015-01-20 01:27:04.949644+00 | 5909 | 4096
  1393. Vault_Dweller | 2015-01-20 01:27:04.949644+00 | 33784 | 4096
  1394. ChaosTheEternal | 2015-01-20 01:27:04.949644+00 | 30409 | 4096
  1395. faoileag | 2015-01-20 01:27:04.949644+00 | 17094 | 4096
  1396. VinDuv | 2015-01-20 01:27:04.949644+00 | 33886 | 4096
  1397. abarker | 2015-01-20 01:27:04.949644+00 | 32175 | 4096
  1398. reverendryan | 2015-01-20 01:27:04.949644+00 | 33695 | 4096
  1399. obeselymorbid | 2015-01-20 01:27:03.720844+00 | 34937 | 16384
  1400. Arantor | 2015-01-20 01:27:03.720844+00 | 20552 | 16384
  1401. Luhmann | 2015-01-20 01:27:03.720844+00 | 29358 | 16384
  1402. CodingHorrorBot | 2015-01-20 01:27:03.720844+00 | 33751 | 16384
  1403. JohnnyFive | 2015-01-20 01:27:03.720844+00 | 33583 | 16384
  1404. Spencer | 2015-01-20 01:27:03.720844+00 | 30913 | 16384
  1405. aliceif | 2015-01-20 01:27:03.720844+00 | 25191 | 16384
  1406. mott555 | 2015-01-20 01:27:03.720844+00 | 37035 | 16384
  1407. OffByOne | 2015-01-20 01:27:03.720844+00 | 34447 | 16384
  1408. Bender | 2015-01-20 01:27:03.720844+00 | 33583 | 16384
  1409. boomzilla | 2015-01-20 01:27:03.720844+00 | 37447 | 16384
  1410. discoursebot | 2015-01-20 01:27:03.720844+00 | 33765 | 16384
  1411. darkmatter | 2015-01-20 01:27:03.720844+00 | 31480 | 16384
  1412. Zoidberg | 2015-01-20 01:27:03.720844+00 | 33663 | 16384
  1413. Onyx | 2015-01-20 01:27:03.720844+00 | 18543 | 16384
  1414. HardwareGeek | 2015-01-20 01:27:03.720844+00 | 36767 | 16384
  1415. sockbot | 2015-01-20 01:27:03.720844+00 | 33669 | 16384
  1416. the_dragon | 2015-01-20 01:27:03.720844+00 | 21329 | 16384
  1417. accalia | 2015-01-20 01:27:03.720844+00 | 38729 | 16384
  1418. Vault_Dweller | 2015-01-20 01:27:03.720844+00 | 33784 | 16384
  1419. ChaosTheEternal | 2015-01-20 01:27:03.720844+00 | 30409 | 16384
  1420. faoileag | 2015-01-20 01:27:03.720844+00 | 17094 | 16384
  1421. VinDuv | 2015-01-20 01:27:03.720844+00 | 33886 | 16384
  1422. abarker | 2015-01-20 01:27:03.720844+00 | 32175 | 16384
  1423. reverendryan | 2015-01-20 01:27:03.720844+00 | 33695 | 16384
  1424. (1396 rows)
  1425.  
  1426. Elapsed: 0.744s
  1427. Backup taken: 2015-01-19 03:56:06.53156
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement