summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askbot/__init__.py2
-rw-r--r--askbot/doc/source/changelog.rst15
-rw-r--r--askbot/doc/source/customizing-style-css-file-in-askbot.rst12
-rw-r--r--askbot/skins/default/media/style/style.less24
-rw-r--r--askbot/skins/default/templates/widgets/header.html8
-rw-r--r--askbot/skins/default/templates/widgets/logo.html4
-rw-r--r--askbot/tests/test_data.json14464
7 files changed, 14513 insertions, 16 deletions
diff --git a/askbot/__init__.py b/askbot/__init__.py
index 1c822e05..45017768 100644
--- a/askbot/__init__.py
+++ b/askbot/__init__.py
@@ -9,7 +9,7 @@ import smtplib
import sys
import logging
-VERSION = (0, 7, 29)
+VERSION = (0, 7, 30)
#necessary for interoperability of django and coffin
try:
diff --git a/askbot/doc/source/changelog.rst b/askbot/doc/source/changelog.rst
index 31b21813..ed81ff27 100644
--- a/askbot/doc/source/changelog.rst
+++ b/askbot/doc/source/changelog.rst
@@ -1,8 +1,10 @@
Changes in Askbot
=================
-Development version (not yet published)
----------------------------------------
+0.7.30 (Current Version)
+------------------------
+Note: some of these features were added in one of the three previous versions.
+
* Context-sensitive RSS url (`Dejan Noveski <http://www.atomidata.com/>`_)
* Implemented new version of skin (Byron Corrales)
* Show unused vote count (Tomasz Zielinski)
@@ -22,9 +24,14 @@ Development version (not yet published)
* Updated Italian localization (Luca Ferroni)
* Added Catalan localization (Jordi Bofill)
* Added management command ``askbot_add_test_content`` (Dejan Noveski)
+* Continued work on refactoring the database schema (Tomasz Zielinski)
-0.7.26 (Current Version)
-------------------------
+0.7.27 - 0.7.29
+---------------
+For these versions we did not keep consistent record of features.
+
+0.7.26
+------
* Added settings for email subscription defaults (Adolfo)
* Resolved `bug #102<http://bugs.askbot.org/issues/102>`_ - duplicate notifications on posts with mentions (Evegeny)
* Added color-animated transitions when urls with hash tags are visited (Adolfo)
diff --git a/askbot/doc/source/customizing-style-css-file-in-askbot.rst b/askbot/doc/source/customizing-style-css-file-in-askbot.rst
index 2c2d0327..4d64eb81 100644
--- a/askbot/doc/source/customizing-style-css-file-in-askbot.rst
+++ b/askbot/doc/source/customizing-style-css-file-in-askbot.rst
@@ -4,9 +4,17 @@
Customizing style.css file in Askbot
====================================
-File style.css is produced by the `lesscss compiler <http://lesscss.org>`_ - ``lessc``.
+File `style.css` is produced by the `lesscss compiler <http://lesscss.org>`_ - ``lessc``.
+Secondly, `style.css` is used in production mode - with an entry
+`ASKBOT_CSS_DEVEL = True` in the `settings.py` file.
+When `ASKBOT_CSS_DEVEL` setting is absent or set to ``False``,
+the source `style.less` will be loaded and compiled by the browser.
+A side-effect of that is a possible momentary flash of unstyled content
+and some delay in the page load.
-Please read documentation about the lesscss format.
+`ASKBOT_CSS_DEVEL = True` is a convenient setting for the designer.
+
+Please find documentation about the lesscss format elsewhere.
Compiling lesscss files
=======================
diff --git a/askbot/skins/default/media/style/style.less b/askbot/skins/default/media/style/style.less
index d37ac32c..3e913bbf 100644
--- a/askbot/skins/default/media/style/style.less
+++ b/askbot/skins/default/media/style/style.less
@@ -225,9 +225,6 @@ body.user-messages {
#userToolsNav {/* Navigation bar containing login link or user information, check widgets/user_navigation.html*/
height: 20px;
- position:absolute;
- bottom: 0;
- right:0px;
padding-bottom:5px;
a {
@@ -263,7 +260,7 @@ body.user-messages {
}
#metaNav {/* Top Navigation bar containing links for tags, people and badges, check widgets/header.html */
- float:right;
+ float: right;/* for #header.with-logo it is modified */
a {
color: #e2e2ae;
@@ -312,6 +309,21 @@ body.user-messages {
}
}
+#header.with-logo #userToolsNav {
+ position:absolute;
+ bottom: 0;
+ right:0px;
+}
+
+#header.without-logo #userToolsNav {
+ float:left;
+ margin-top: 7px;
+}
+
+#header.without-logo #metaNav {
+ margin-bottom: 7px;
+}
+
#secondaryHeader{ /* Div containing Home button, scope navigation, search form and ask button, check blocks/secondary_header.html */
height:55px;
background:#e9e9e1;
@@ -738,6 +750,10 @@ body.user-messages {
margin-right:5px;
}
+.main-page .tabsA .label {
+ margin-left: 8px;
+}
+
.tabsB a {
background: #eee;
border: 1px solid #eee;
diff --git a/askbot/skins/default/templates/widgets/header.html b/askbot/skins/default/templates/widgets/header.html
index ad0ae4a2..d4e7d66a 100644
--- a/askbot/skins/default/templates/widgets/header.html
+++ b/askbot/skins/default/templates/widgets/header.html
@@ -1,13 +1,17 @@
<!-- template header.html -->
{% import "macros.html" as macros %}
-<div id="header">
+<div
+ id="header"
+ class="{% if settings.SHOW_LOGO %}with-logo{% else %}without-logo{% endif %}"
+>
<div class="content-wrapper">
-
<div id="userToolsNav">
{% include "widgets/user_navigation.html" %}
{{settings.CUSTOM_HEADER}}
</div>
+ {% if settings.SHOW_LOGO %}
{% include "widgets/logo.html" %}
+ {% endif %}
<div id="metaNav">
{% include "widgets/meta_nav.html" %}
</div>
diff --git a/askbot/skins/default/templates/widgets/logo.html b/askbot/skins/default/templates/widgets/logo.html
index d0d67db8..6d4d86d2 100644
--- a/askbot/skins/default/templates/widgets/logo.html
+++ b/askbot/skins/default/templates/widgets/logo.html
@@ -1,6 +1,4 @@
-{% if settings.SHOW_LOGO %}
- <a id="logo" href="{% url questions %}?start_over=true"><img
+<a id="logo" href="{% url questions %}?start_over=true"><img
src="{{ settings.SITE_LOGO_URL|media }}"
title="{% trans %}back to home page{% endtrans %}"
alt="{% trans site=settings.APP_SHORT_NAME %}{{site}} logo{% endtrans %}"/></a>
-{% endif %}
diff --git a/askbot/tests/test_data.json b/askbot/tests/test_data.json
new file mode 100644
index 00000000..82aaacf2
--- /dev/null
+++ b/askbot/tests/test_data.json
@@ -0,0 +1,14464 @@
+[
+ {
+ "pk": 22,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_logentry",
+ "name": "Can add log entry",
+ "content_type": 8
+ }
+ },
+ {
+ "pk": 23,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_logentry",
+ "name": "Can change log entry",
+ "content_type": 8
+ }
+ },
+ {
+ "pk": 24,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_logentry",
+ "name": "Can delete log entry",
+ "content_type": 8
+ }
+ },
+ {
+ "pk": 37,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_activity",
+ "name": "Can add activity",
+ "content_type": 13
+ }
+ },
+ {
+ "pk": 38,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_activity",
+ "name": "Can change activity",
+ "content_type": 13
+ }
+ },
+ {
+ "pk": 39,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_activity",
+ "name": "Can delete activity",
+ "content_type": 13
+ }
+ },
+ {
+ "pk": 34,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_activityauditstatus",
+ "name": "Can add activity audit status",
+ "content_type": 12
+ }
+ },
+ {
+ "pk": 35,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_activityauditstatus",
+ "name": "Can change activity audit status",
+ "content_type": 12
+ }
+ },
+ {
+ "pk": 36,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_activityauditstatus",
+ "name": "Can delete activity audit status",
+ "content_type": 12
+ }
+ },
+ {
+ "pk": 64,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_anonymousanswer",
+ "name": "Can add anonymous answer",
+ "content_type": 22
+ }
+ },
+ {
+ "pk": 65,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_anonymousanswer",
+ "name": "Can change anonymous answer",
+ "content_type": 22
+ }
+ },
+ {
+ "pk": 66,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_anonymousanswer",
+ "name": "Can delete anonymous answer",
+ "content_type": 22
+ }
+ },
+ {
+ "pk": 58,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_anonymousquestion",
+ "name": "Can add anonymous question",
+ "content_type": 20
+ }
+ },
+ {
+ "pk": 59,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_anonymousquestion",
+ "name": "Can change anonymous question",
+ "content_type": 20
+ }
+ },
+ {
+ "pk": 60,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_anonymousquestion",
+ "name": "Can delete anonymous question",
+ "content_type": 20
+ }
+ },
+ {
+ "pk": 61,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_answer",
+ "name": "Can add answer",
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 62,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_answer",
+ "name": "Can change answer",
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 63,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_answer",
+ "name": "Can delete answer",
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 70,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_award",
+ "name": "Can add award",
+ "content_type": 24
+ }
+ },
+ {
+ "pk": 71,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_award",
+ "name": "Can change award",
+ "content_type": 24
+ }
+ },
+ {
+ "pk": 72,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_award",
+ "name": "Can delete award",
+ "content_type": 24
+ }
+ },
+ {
+ "pk": 67,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_badgedata",
+ "name": "Can add badge data",
+ "content_type": 23
+ }
+ },
+ {
+ "pk": 68,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_badgedata",
+ "name": "Can change badge data",
+ "content_type": 23
+ }
+ },
+ {
+ "pk": 69,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_badgedata",
+ "name": "Can delete badge data",
+ "content_type": 23
+ }
+ },
+ {
+ "pk": 46,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_comment",
+ "name": "Can add comment",
+ "content_type": 16
+ }
+ },
+ {
+ "pk": 47,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_comment",
+ "name": "Can change comment",
+ "content_type": 16
+ }
+ },
+ {
+ "pk": 48,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_comment",
+ "name": "Can delete comment",
+ "content_type": 16
+ }
+ },
+ {
+ "pk": 40,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_emailfeedsetting",
+ "name": "Can add email feed setting",
+ "content_type": 14
+ }
+ },
+ {
+ "pk": 41,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_emailfeedsetting",
+ "name": "Can change email feed setting",
+ "content_type": 14
+ }
+ },
+ {
+ "pk": 42,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_emailfeedsetting",
+ "name": "Can delete email feed setting",
+ "content_type": 14
+ }
+ },
+ {
+ "pk": 55,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_favoritequestion",
+ "name": "Can add favorite question",
+ "content_type": 19
+ }
+ },
+ {
+ "pk": 56,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_favoritequestion",
+ "name": "Can change favorite question",
+ "content_type": 19
+ }
+ },
+ {
+ "pk": 57,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_favoritequestion",
+ "name": "Can delete favorite question",
+ "content_type": 19
+ }
+ },
+ {
+ "pk": 28,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_markedtag",
+ "name": "Can add marked tag",
+ "content_type": 10
+ }
+ },
+ {
+ "pk": 29,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_markedtag",
+ "name": "Can change marked tag",
+ "content_type": 10
+ }
+ },
+ {
+ "pk": 30,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_markedtag",
+ "name": "Can delete marked tag",
+ "content_type": 10
+ }
+ },
+ {
+ "pk": 31,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_postrevision",
+ "name": "Can add post revision",
+ "content_type": 11
+ }
+ },
+ {
+ "pk": 32,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_postrevision",
+ "name": "Can change post revision",
+ "content_type": 11
+ }
+ },
+ {
+ "pk": 33,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_postrevision",
+ "name": "Can delete post revision",
+ "content_type": 11
+ }
+ },
+ {
+ "pk": 49,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_question",
+ "name": "Can add question",
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 50,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_question",
+ "name": "Can change question",
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 51,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_question",
+ "name": "Can delete question",
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 52,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_questionview",
+ "name": "Can add question view",
+ "content_type": 18
+ }
+ },
+ {
+ "pk": 53,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_questionview",
+ "name": "Can change question view",
+ "content_type": 18
+ }
+ },
+ {
+ "pk": 54,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_questionview",
+ "name": "Can delete question view",
+ "content_type": 18
+ }
+ },
+ {
+ "pk": 73,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_repute",
+ "name": "Can add repute",
+ "content_type": 25
+ }
+ },
+ {
+ "pk": 74,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_repute",
+ "name": "Can change repute",
+ "content_type": 25
+ }
+ },
+ {
+ "pk": 75,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_repute",
+ "name": "Can delete repute",
+ "content_type": 25
+ }
+ },
+ {
+ "pk": 25,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_tag",
+ "name": "Can add tag",
+ "content_type": 9
+ }
+ },
+ {
+ "pk": 26,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_tag",
+ "name": "Can change tag",
+ "content_type": 9
+ }
+ },
+ {
+ "pk": 27,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_tag",
+ "name": "Can delete tag",
+ "content_type": 9
+ }
+ },
+ {
+ "pk": 43,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_vote",
+ "name": "Can add vote",
+ "content_type": 15
+ }
+ },
+ {
+ "pk": 44,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_vote",
+ "name": "Can change vote",
+ "content_type": 15
+ }
+ },
+ {
+ "pk": 45,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_vote",
+ "name": "Can delete vote",
+ "content_type": 15
+ }
+ },
+ {
+ "pk": 4,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_group",
+ "name": "Can add group",
+ "content_type": 2
+ }
+ },
+ {
+ "pk": 5,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_group",
+ "name": "Can change group",
+ "content_type": 2
+ }
+ },
+ {
+ "pk": 6,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_group",
+ "name": "Can delete group",
+ "content_type": 2
+ }
+ },
+ {
+ "pk": 10,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_message",
+ "name": "Can add message",
+ "content_type": 4
+ }
+ },
+ {
+ "pk": 11,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_message",
+ "name": "Can change message",
+ "content_type": 4
+ }
+ },
+ {
+ "pk": 12,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_message",
+ "name": "Can delete message",
+ "content_type": 4
+ }
+ },
+ {
+ "pk": 1,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_permission",
+ "name": "Can add permission",
+ "content_type": 1
+ }
+ },
+ {
+ "pk": 2,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_permission",
+ "name": "Can change permission",
+ "content_type": 1
+ }
+ },
+ {
+ "pk": 3,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_permission",
+ "name": "Can delete permission",
+ "content_type": 1
+ }
+ },
+ {
+ "pk": 7,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_user",
+ "name": "Can add user",
+ "content_type": 3
+ }
+ },
+ {
+ "pk": 8,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_user",
+ "name": "Can change user",
+ "content_type": 3
+ }
+ },
+ {
+ "pk": 9,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_user",
+ "name": "Can delete user",
+ "content_type": 3
+ }
+ },
+ {
+ "pk": 13,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_contenttype",
+ "name": "Can add content type",
+ "content_type": 5
+ }
+ },
+ {
+ "pk": 14,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_contenttype",
+ "name": "Can change content type",
+ "content_type": 5
+ }
+ },
+ {
+ "pk": 15,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_contenttype",
+ "name": "Can delete content type",
+ "content_type": 5
+ }
+ },
+ {
+ "pk": 79,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_association",
+ "name": "Can add association",
+ "content_type": 27
+ }
+ },
+ {
+ "pk": 80,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_association",
+ "name": "Can change association",
+ "content_type": 27
+ }
+ },
+ {
+ "pk": 81,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_association",
+ "name": "Can delete association",
+ "content_type": 27
+ }
+ },
+ {
+ "pk": 76,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_nonce",
+ "name": "Can add nonce",
+ "content_type": 26
+ }
+ },
+ {
+ "pk": 77,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_nonce",
+ "name": "Can change nonce",
+ "content_type": 26
+ }
+ },
+ {
+ "pk": 78,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_nonce",
+ "name": "Can delete nonce",
+ "content_type": 26
+ }
+ },
+ {
+ "pk": 82,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_userassociation",
+ "name": "Can add user association",
+ "content_type": 28
+ }
+ },
+ {
+ "pk": 83,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_userassociation",
+ "name": "Can change user association",
+ "content_type": 28
+ }
+ },
+ {
+ "pk": 84,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_userassociation",
+ "name": "Can delete user association",
+ "content_type": 28
+ }
+ },
+ {
+ "pk": 85,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_userpasswordqueue",
+ "name": "Can add user password queue",
+ "content_type": 29
+ }
+ },
+ {
+ "pk": 86,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_userpasswordqueue",
+ "name": "Can change user password queue",
+ "content_type": 29
+ }
+ },
+ {
+ "pk": 87,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_userpasswordqueue",
+ "name": "Can delete user password queue",
+ "content_type": 29
+ }
+ },
+ {
+ "pk": 112,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_crontabschedule",
+ "name": "Can add crontab",
+ "content_type": 38
+ }
+ },
+ {
+ "pk": 113,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_crontabschedule",
+ "name": "Can change crontab",
+ "content_type": 38
+ }
+ },
+ {
+ "pk": 114,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_crontabschedule",
+ "name": "Can delete crontab",
+ "content_type": 38
+ }
+ },
+ {
+ "pk": 109,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_intervalschedule",
+ "name": "Can add interval",
+ "content_type": 37
+ }
+ },
+ {
+ "pk": 110,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_intervalschedule",
+ "name": "Can change interval",
+ "content_type": 37
+ }
+ },
+ {
+ "pk": 111,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_intervalschedule",
+ "name": "Can delete interval",
+ "content_type": 37
+ }
+ },
+ {
+ "pk": 118,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_periodictask",
+ "name": "Can add periodic task",
+ "content_type": 40
+ }
+ },
+ {
+ "pk": 119,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_periodictask",
+ "name": "Can change periodic task",
+ "content_type": 40
+ }
+ },
+ {
+ "pk": 120,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_periodictask",
+ "name": "Can delete periodic task",
+ "content_type": 40
+ }
+ },
+ {
+ "pk": 115,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_periodictasks",
+ "name": "Can add periodic tasks",
+ "content_type": 39
+ }
+ },
+ {
+ "pk": 116,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_periodictasks",
+ "name": "Can change periodic tasks",
+ "content_type": 39
+ }
+ },
+ {
+ "pk": 117,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_periodictasks",
+ "name": "Can delete periodic tasks",
+ "content_type": 39
+ }
+ },
+ {
+ "pk": 103,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_taskmeta",
+ "name": "Can add task meta",
+ "content_type": 35
+ }
+ },
+ {
+ "pk": 104,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_taskmeta",
+ "name": "Can change task meta",
+ "content_type": 35
+ }
+ },
+ {
+ "pk": 105,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_taskmeta",
+ "name": "Can delete task meta",
+ "content_type": 35
+ }
+ },
+ {
+ "pk": 106,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_tasksetmeta",
+ "name": "Can add taskset meta",
+ "content_type": 36
+ }
+ },
+ {
+ "pk": 107,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_tasksetmeta",
+ "name": "Can change taskset meta",
+ "content_type": 36
+ }
+ },
+ {
+ "pk": 108,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_tasksetmeta",
+ "name": "Can delete taskset meta",
+ "content_type": 36
+ }
+ },
+ {
+ "pk": 124,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_taskstate",
+ "name": "Can add task",
+ "content_type": 42
+ }
+ },
+ {
+ "pk": 125,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_taskstate",
+ "name": "Can change task",
+ "content_type": 42
+ }
+ },
+ {
+ "pk": 126,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_taskstate",
+ "name": "Can delete task",
+ "content_type": 42
+ }
+ },
+ {
+ "pk": 121,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_workerstate",
+ "name": "Can add worker",
+ "content_type": 41
+ }
+ },
+ {
+ "pk": 122,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_workerstate",
+ "name": "Can change worker",
+ "content_type": 41
+ }
+ },
+ {
+ "pk": 123,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_workerstate",
+ "name": "Can delete worker",
+ "content_type": 41
+ }
+ },
+ {
+ "pk": 130,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_message",
+ "name": "Can add message",
+ "content_type": 44
+ }
+ },
+ {
+ "pk": 131,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_message",
+ "name": "Can change message",
+ "content_type": 44
+ }
+ },
+ {
+ "pk": 132,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_message",
+ "name": "Can delete message",
+ "content_type": 44
+ }
+ },
+ {
+ "pk": 127,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_queue",
+ "name": "Can add queue",
+ "content_type": 43
+ }
+ },
+ {
+ "pk": 128,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_queue",
+ "name": "Can change queue",
+ "content_type": 43
+ }
+ },
+ {
+ "pk": 129,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_queue",
+ "name": "Can delete queue",
+ "content_type": 43
+ }
+ },
+ {
+ "pk": 133,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_followuser",
+ "name": "Can add followuser",
+ "content_type": 45
+ }
+ },
+ {
+ "pk": 134,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_followuser",
+ "name": "Can change followuser",
+ "content_type": 45
+ }
+ },
+ {
+ "pk": 135,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_followuser",
+ "name": "Can delete followuser",
+ "content_type": 45
+ }
+ },
+ {
+ "pk": 94,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_longsetting",
+ "name": "Can add long setting",
+ "content_type": 32
+ }
+ },
+ {
+ "pk": 95,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_longsetting",
+ "name": "Can change long setting",
+ "content_type": 32
+ }
+ },
+ {
+ "pk": 96,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_longsetting",
+ "name": "Can delete long setting",
+ "content_type": 32
+ }
+ },
+ {
+ "pk": 91,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_setting",
+ "name": "Can add setting",
+ "content_type": 31
+ }
+ },
+ {
+ "pk": 92,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_setting",
+ "name": "Can change setting",
+ "content_type": 31
+ }
+ },
+ {
+ "pk": 93,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_setting",
+ "name": "Can delete setting",
+ "content_type": 31
+ }
+ },
+ {
+ "pk": 100,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_rule",
+ "name": "Can add rule",
+ "content_type": 34
+ }
+ },
+ {
+ "pk": 101,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_rule",
+ "name": "Can change rule",
+ "content_type": 34
+ }
+ },
+ {
+ "pk": 102,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_rule",
+ "name": "Can delete rule",
+ "content_type": 34
+ }
+ },
+ {
+ "pk": 97,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_url",
+ "name": "Can add url",
+ "content_type": 33
+ }
+ },
+ {
+ "pk": 98,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_url",
+ "name": "Can change url",
+ "content_type": 33
+ }
+ },
+ {
+ "pk": 99,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_url",
+ "name": "Can delete url",
+ "content_type": 33
+ }
+ },
+ {
+ "pk": 16,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_session",
+ "name": "Can add session",
+ "content_type": 6
+ }
+ },
+ {
+ "pk": 17,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_session",
+ "name": "Can change session",
+ "content_type": 6
+ }
+ },
+ {
+ "pk": 18,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_session",
+ "name": "Can delete session",
+ "content_type": 6
+ }
+ },
+ {
+ "pk": 19,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_site",
+ "name": "Can add site",
+ "content_type": 7
+ }
+ },
+ {
+ "pk": 20,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_site",
+ "name": "Can change site",
+ "content_type": 7
+ }
+ },
+ {
+ "pk": 21,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_site",
+ "name": "Can delete site",
+ "content_type": 7
+ }
+ },
+ {
+ "pk": 88,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "add_migrationhistory",
+ "name": "Can add migration history",
+ "content_type": 30
+ }
+ },
+ {
+ "pk": 89,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "change_migrationhistory",
+ "name": "Can change migration history",
+ "content_type": 30
+ }
+ },
+ {
+ "pk": 90,
+ "model": "auth.permission",
+ "fields": {
+ "codename": "delete_migrationhistory",
+ "name": "Can delete migration history",
+ "content_type": 30
+ }
+ },
+ {
+ "pk": 1,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": true,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:06",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": true,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:06",
+ "location": "",
+ "new_response_count": 61,
+ "email": "test_user_0@askbot.org",
+ "username": "test_user_0",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$3abb0$a6593061f9fb468fe4cb08bf310b5d97818a6c85",
+ "silver": 0,
+ "bronze": 3,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 520,
+ "gravatar": "97b89e3082d2741855254393f078fe6c",
+ "last_seen": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 2,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:06",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:06",
+ "location": "",
+ "new_response_count": 58,
+ "email": "test_user_1@askbot.org",
+ "username": "test_user_1",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$db11e$d6d648761cd7549ce370bef74b6bd9c62441d4ab",
+ "silver": 0,
+ "bronze": 1,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 496,
+ "gravatar": "6859f8f5f86ae184bab4c5e2297a6f85",
+ "last_seen": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 3,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:06",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:06",
+ "location": "",
+ "new_response_count": 55,
+ "email": "test_user_2@askbot.org",
+ "username": "test_user_2",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$42a42$a910ed229b3165635e3b0428339d6c16082b55ee",
+ "silver": 0,
+ "bronze": 4,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 518,
+ "gravatar": "564666778b07615b15a36ce51ac7f7d2",
+ "last_seen": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 4,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:06",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:06",
+ "location": "",
+ "new_response_count": 52,
+ "email": "test_user_3@askbot.org",
+ "username": "test_user_3",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$3ea59$41ffa06b959bf63a8442b7434da510c62d2c534c",
+ "silver": 0,
+ "bronze": 1,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 496,
+ "gravatar": "32f9b7a8113ca3b42b63435fe4859b31",
+ "last_seen": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 5,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:06",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:06",
+ "location": "",
+ "new_response_count": 49,
+ "email": "test_user_4@askbot.org",
+ "username": "test_user_4",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$3733f$25fd22fc42b034a2b7fb1e68e75ca72840fd75ea",
+ "silver": 0,
+ "bronze": 4,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 518,
+ "gravatar": "23f7d972c0c664b156d0473c0999a697",
+ "last_seen": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 6,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:06",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:06",
+ "location": "",
+ "new_response_count": 46,
+ "email": "test_user_5@askbot.org",
+ "username": "test_user_5",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$12d58$3fcddbacd279639c45f24ad27bb1660ee4daef14",
+ "silver": 0,
+ "bronze": 1,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 496,
+ "gravatar": "9846d347d8a7d759c40cda0f3d13483f",
+ "last_seen": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 7,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:06",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:06",
+ "location": "",
+ "new_response_count": 43,
+ "email": "test_user_6@askbot.org",
+ "username": "test_user_6",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$cdecb$fe149d658ad950b79aa934b42813fc5ad9064685",
+ "silver": 0,
+ "bronze": 4,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 518,
+ "gravatar": "7ce778a81f19e1304bbcc21ee6331063",
+ "last_seen": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 8,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:06",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:06",
+ "location": "",
+ "new_response_count": 40,
+ "email": "test_user_7@askbot.org",
+ "username": "test_user_7",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$0cf08$96fd99bab5d80e77f85a2a39370ecb3f89a54447",
+ "silver": 0,
+ "bronze": 1,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 496,
+ "gravatar": "4556e9e446c727e6fdf37af356097ff2",
+ "last_seen": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 9,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:06",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:06",
+ "location": "",
+ "new_response_count": 37,
+ "email": "test_user_8@askbot.org",
+ "username": "test_user_8",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$dc471$59016c44a4e0a48d982c014ed0313b8bfa337435",
+ "silver": 0,
+ "bronze": 4,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 518,
+ "gravatar": "2efc123f13b1590ab7f54b229b6ce61c",
+ "last_seen": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 10,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:06",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:06",
+ "location": "",
+ "new_response_count": 34,
+ "email": "test_user_9@askbot.org",
+ "username": "test_user_9",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$f0a49$bc9bc856ef957449d0b2afde51f6058a02168e9f",
+ "silver": 0,
+ "bronze": 1,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 496,
+ "gravatar": "2872546b9b5fa933413b58b18b0d56ca",
+ "last_seen": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 11,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:06",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:06",
+ "location": "",
+ "new_response_count": 31,
+ "email": "test_user_10@askbot.org",
+ "username": "test_user_10",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$a4044$141fd1e6a7a1d92d6822b09dbf47d02858df757a",
+ "silver": 0,
+ "bronze": 4,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 518,
+ "gravatar": "83458295fcf6dcdc6ee5815491cbee3f",
+ "last_seen": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 12,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:06",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:06",
+ "location": "",
+ "new_response_count": 28,
+ "email": "test_user_11@askbot.org",
+ "username": "test_user_11",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$f1320$7a17dcba0c5ff1109e55746584b4208b5611cb1b",
+ "silver": 0,
+ "bronze": 1,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 496,
+ "gravatar": "ccb4b8fe5a80781e5051435db97becaa",
+ "last_seen": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 13,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:06",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:06",
+ "location": "",
+ "new_response_count": 25,
+ "email": "test_user_12@askbot.org",
+ "username": "test_user_12",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$63ffb$53962ff094729dae1881d2210a8c65250b75b7d7",
+ "silver": 0,
+ "bronze": 4,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 518,
+ "gravatar": "6a70087a63bbc7c6a4028365ed4e1950",
+ "last_seen": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 14,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:06",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:06",
+ "location": "",
+ "new_response_count": 22,
+ "email": "test_user_13@askbot.org",
+ "username": "test_user_13",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$47b18$b1e1c28e4a9105b3fc98634dd5e91211be01ae56",
+ "silver": 0,
+ "bronze": 1,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 496,
+ "gravatar": "77dc2a59fecaa4eeb06fa9f563ebf669",
+ "last_seen": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 15,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:06",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:06",
+ "location": "",
+ "new_response_count": 19,
+ "email": "test_user_14@askbot.org",
+ "username": "test_user_14",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$150fb$3e5b7c25b3cd64f90f4eccf8c67db57f3c092674",
+ "silver": 0,
+ "bronze": 4,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 518,
+ "gravatar": "0a4b98e7ec7867d097ef4ee1c3d23104",
+ "last_seen": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 16,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:06",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:06",
+ "location": "",
+ "new_response_count": 16,
+ "email": "test_user_15@askbot.org",
+ "username": "test_user_15",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$ab78e$0496711e921dadec232aa567b56f5ccb54f174c9",
+ "silver": 0,
+ "bronze": 1,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 496,
+ "gravatar": "6c5d8511aa4f85cd75a16dbb3e03c5c7",
+ "last_seen": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 17,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:06",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:06",
+ "location": "",
+ "new_response_count": 13,
+ "email": "test_user_16@askbot.org",
+ "username": "test_user_16",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$e6bb6$3e5f6bdb177211ece81eb47452b1d6608f179a3d",
+ "silver": 0,
+ "bronze": 4,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 518,
+ "gravatar": "f2174ffb3833816753de7f596f69468b",
+ "last_seen": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 18,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:06",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:06",
+ "location": "",
+ "new_response_count": 10,
+ "email": "test_user_17@askbot.org",
+ "username": "test_user_17",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$95108$2ed768fc01242d0b64e6213d3e0486cd8781f844",
+ "silver": 0,
+ "bronze": 1,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 496,
+ "gravatar": "b6778982e44fe0fbd78e3496069f1352",
+ "last_seen": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 19,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 7,
+ "email": "test_user_18@askbot.org",
+ "username": "test_user_18",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$a09aa$a08a53953c46202136a4f239d0206e8706fd82c2",
+ "silver": 0,
+ "bronze": 4,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 518,
+ "gravatar": "ec0f9a859b26512fdcc994516be5e752",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 20,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 2,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_19@askbot.org",
+ "username": "test_user_19",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$0b884$f10f8f19119f573810eb83a95c0af40a10755638",
+ "silver": 2,
+ "bronze": 4,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 713,
+ "gravatar": "b75bdbeb7354745fdf9fdf72200eb799",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 21,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_20@askbot.org",
+ "username": "test_user_20",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$f03b3$5c6cca3289358c9a928ad797b50fadc714807272",
+ "silver": 0,
+ "bronze": 2,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 509,
+ "gravatar": "4f877025b0ab869a9e9400e28ed3eab5",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 22,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_21@askbot.org",
+ "username": "test_user_21",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$c7ac1$6f10ad56555949d3970103406478b07b4de897a0",
+ "silver": 0,
+ "bronze": 1,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 498,
+ "gravatar": "76b52b8b8655a296120d87715dbdd3e6",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 23,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_22@askbot.org",
+ "username": "test_user_22",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$845fc$28b30b57c027d8076816ddc11e99b020cd5a1318",
+ "silver": 0,
+ "bronze": 2,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 509,
+ "gravatar": "a5ddb8c0343a8aa84250f50535368aaf",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 24,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_23@askbot.org",
+ "username": "test_user_23",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$615db$804cb797c18603d318955636ddb8d2330159a623",
+ "silver": 0,
+ "bronze": 1,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 498,
+ "gravatar": "0b7ee0d2855d536bfcd272fe59e51e85",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 25,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_24@askbot.org",
+ "username": "test_user_24",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$26997$557592988b737fdd3e558ea00d1350c024786ddb",
+ "silver": 0,
+ "bronze": 2,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 509,
+ "gravatar": "9273b4ea8133885f6864afbc27b17a6b",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 26,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_25@askbot.org",
+ "username": "test_user_25",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$15b61$20e4058ec22ad07e95342e7ff289ef9544f36738",
+ "silver": 0,
+ "bronze": 1,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 498,
+ "gravatar": "3f02ce1295ff1104020fb76e0a713f19",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 27,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_26@askbot.org",
+ "username": "test_user_26",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$59705$4ed8a477fc298961ae408ad678e69f8bf63f0395",
+ "silver": 0,
+ "bronze": 2,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 509,
+ "gravatar": "2089b5251d55cadb48417b9d2b78b4b2",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 28,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_27@askbot.org",
+ "username": "test_user_27",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$5c4b7$94c71dfee6766662909353c14528daa8caab001d",
+ "silver": 0,
+ "bronze": 1,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 498,
+ "gravatar": "489074a9a117be5320690bd6977ece9e",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 29,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_28@askbot.org",
+ "username": "test_user_28",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$9b1d8$227390a82f10d856d94cdf5277cfb180d06910dc",
+ "silver": 0,
+ "bronze": 2,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 509,
+ "gravatar": "7ea520152dac05fa69541ffe139bcca2",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 30,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_29@askbot.org",
+ "username": "test_user_29",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$ac9f1$0e1e846588267cdd8229ad157b2c42644a657003",
+ "silver": 0,
+ "bronze": 1,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 498,
+ "gravatar": "98be33fd4cf91cd0d26e8bbdda1691f2",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 31,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_30@askbot.org",
+ "username": "test_user_30",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$1d39d$0bf5eb23ac8dc954c79c68bd79b98aca26bed966",
+ "silver": 0,
+ "bronze": 2,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 509,
+ "gravatar": "4db2d8490aa35168e331b5ee5a0fd63b",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 32,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_31@askbot.org",
+ "username": "test_user_31",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$e4b73$904a5f9e3ce706973794b89490b29bbe1506a05a",
+ "silver": 0,
+ "bronze": 1,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 498,
+ "gravatar": "e1646ca0338becadfc188108ef11a963",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 33,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_32@askbot.org",
+ "username": "test_user_32",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$22c62$598d4b1980e44b47fb2d9f01ee41e3f0b7635f9a",
+ "silver": 0,
+ "bronze": 2,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 509,
+ "gravatar": "1f4576d9b347126a61b9b6ca39aaf46d",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 34,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_33@askbot.org",
+ "username": "test_user_33",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$74209$a38a886c4b7b13750f1a83e46addd1485594bbf6",
+ "silver": 0,
+ "bronze": 1,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 498,
+ "gravatar": "a3d70733b55cca2d4e94e42b246ce2af",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 35,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_34@askbot.org",
+ "username": "test_user_34",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$7ad5b$343f8f9bdb78b9dba08d1ec94e2105eb0de7648d",
+ "silver": 0,
+ "bronze": 2,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 509,
+ "gravatar": "a0a078c93e5bae4f19920e9f0ab6bd1d",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 36,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_35@askbot.org",
+ "username": "test_user_35",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$6d439$671c16fa03616d4e14a07df46be7b923f590b2c5",
+ "silver": 0,
+ "bronze": 1,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 498,
+ "gravatar": "7cb624e123b95ef9694b64823b0fb0f1",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 37,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_36@askbot.org",
+ "username": "test_user_36",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$e364f$f8ba2008db0ca400b375339a1d593680bde8fd9a",
+ "silver": 0,
+ "bronze": 2,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 509,
+ "gravatar": "906f494d5d4015f2d7d13a781d5dd2e7",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 38,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_37@askbot.org",
+ "username": "test_user_37",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$aa03d$73991a21b4b07510386790fd82bec2252c63daa8",
+ "silver": 0,
+ "bronze": 1,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 498,
+ "gravatar": "641aca2f46519377ccd0500b6ab96ef0",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 39,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 0,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_38@askbot.org",
+ "username": "test_user_38",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$397fe$be8a70aa25ab7266f0e2c08999d039c8d00a0a94",
+ "silver": 0,
+ "bronze": 2,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 509,
+ "gravatar": "fcc3f6722e53bafdacdfea9ced92bbff",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 40,
+ "model": "auth.user",
+ "fields": {
+ "status": "w",
+ "last_name": "",
+ "gold": 1,
+ "is_staff": false,
+ "user_permissions": [],
+ "interesting_tags": "",
+ "email_key": null,
+ "date_joined": "2011-11-28 15:09:07",
+ "first_name": "",
+ "email_isvalid": false,
+ "avatar_type": "n",
+ "website": "",
+ "is_superuser": false,
+ "date_of_birth": null,
+ "last_login": "2011-11-28 15:09:07",
+ "location": "",
+ "new_response_count": 0,
+ "email": "test_user_39@askbot.org",
+ "username": "test_user_39",
+ "is_active": true,
+ "consecutive_days_visit_count": 0,
+ "email_tag_filter_strategy": 1,
+ "groups": [],
+ "password": "sha1$e520d$9a217a27c0c31d1ae29cc81908e786c5305b86e3",
+ "silver": 1,
+ "bronze": 5,
+ "questions_per_page": 10,
+ "about": "",
+ "show_country": false,
+ "country": "",
+ "display_tag_filter_strategy": 0,
+ "seen_response_count": 0,
+ "real_name": "",
+ "ignored_tags": "",
+ "reputation": 702,
+ "gravatar": "43d568bd3fb5f364a3e3a5aa2db795e4",
+ "last_seen": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 1,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-1-0",
+ "deleted": false,
+ "created_by": 1,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 2,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-1-1",
+ "deleted": false,
+ "created_by": 1,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 20,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-10-0",
+ "deleted": false,
+ "created_by": 10,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 19,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-10-1",
+ "deleted": false,
+ "created_by": 10,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 21,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-11-0",
+ "deleted": false,
+ "created_by": 11,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 22,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-11-1",
+ "deleted": false,
+ "created_by": 11,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 24,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-12-0",
+ "deleted": false,
+ "created_by": 12,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 23,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-12-1",
+ "deleted": false,
+ "created_by": 12,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 25,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-13-0",
+ "deleted": false,
+ "created_by": 13,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 26,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-13-1",
+ "deleted": false,
+ "created_by": 13,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 28,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-14-0",
+ "deleted": false,
+ "created_by": 14,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 27,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-14-1",
+ "deleted": false,
+ "created_by": 14,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 29,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-15-0",
+ "deleted": false,
+ "created_by": 15,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 30,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-15-1",
+ "deleted": false,
+ "created_by": 15,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 32,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-16-0",
+ "deleted": false,
+ "created_by": 16,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 31,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-16-1",
+ "deleted": false,
+ "created_by": 16,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 33,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-17-0",
+ "deleted": false,
+ "created_by": 17,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 34,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-17-1",
+ "deleted": false,
+ "created_by": 17,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 36,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-18-0",
+ "deleted": false,
+ "created_by": 18,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 35,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-18-1",
+ "deleted": false,
+ "created_by": 18,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 37,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-19-0",
+ "deleted": false,
+ "created_by": 19,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 38,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-19-1",
+ "deleted": false,
+ "created_by": 19,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 4,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-2-0",
+ "deleted": false,
+ "created_by": 2,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 3,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-2-1",
+ "deleted": false,
+ "created_by": 2,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 39,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-20-0",
+ "deleted": false,
+ "created_by": 20,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 40,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-20-1",
+ "deleted": false,
+ "created_by": 20,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 42,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-21-0",
+ "deleted": false,
+ "created_by": 21,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 41,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-21-1",
+ "deleted": false,
+ "created_by": 21,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 43,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-22-0",
+ "deleted": false,
+ "created_by": 22,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 44,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-22-1",
+ "deleted": false,
+ "created_by": 22,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 46,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-23-0",
+ "deleted": false,
+ "created_by": 23,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 45,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-23-1",
+ "deleted": false,
+ "created_by": 23,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 47,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-24-0",
+ "deleted": false,
+ "created_by": 24,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 48,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-24-1",
+ "deleted": false,
+ "created_by": 24,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 50,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-25-0",
+ "deleted": false,
+ "created_by": 25,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 49,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-25-1",
+ "deleted": false,
+ "created_by": 25,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 51,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-26-0",
+ "deleted": false,
+ "created_by": 26,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 52,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-26-1",
+ "deleted": false,
+ "created_by": 26,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 54,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-27-0",
+ "deleted": false,
+ "created_by": 27,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 53,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-27-1",
+ "deleted": false,
+ "created_by": 27,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 55,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-28-0",
+ "deleted": false,
+ "created_by": 28,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 56,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-28-1",
+ "deleted": false,
+ "created_by": 28,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 58,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-29-0",
+ "deleted": false,
+ "created_by": 29,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 57,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-29-1",
+ "deleted": false,
+ "created_by": 29,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 5,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-3-0",
+ "deleted": false,
+ "created_by": 3,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 6,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-3-1",
+ "deleted": false,
+ "created_by": 3,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 60,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-30-0",
+ "deleted": false,
+ "created_by": 30,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 59,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-30-1",
+ "deleted": false,
+ "created_by": 30,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 61,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-31-0",
+ "deleted": false,
+ "created_by": 31,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 62,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-31-1",
+ "deleted": false,
+ "created_by": 31,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 64,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-32-0",
+ "deleted": false,
+ "created_by": 32,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 63,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-32-1",
+ "deleted": false,
+ "created_by": 32,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 65,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-33-0",
+ "deleted": false,
+ "created_by": 33,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 66,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-33-1",
+ "deleted": false,
+ "created_by": 33,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 68,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-34-0",
+ "deleted": false,
+ "created_by": 34,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 67,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-34-1",
+ "deleted": false,
+ "created_by": 34,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 69,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-35-0",
+ "deleted": false,
+ "created_by": 35,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 70,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-35-1",
+ "deleted": false,
+ "created_by": 35,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 72,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-36-0",
+ "deleted": false,
+ "created_by": 36,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 71,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-36-1",
+ "deleted": false,
+ "created_by": 36,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 73,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-37-0",
+ "deleted": false,
+ "created_by": 37,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 74,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-37-1",
+ "deleted": false,
+ "created_by": 37,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 76,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-38-0",
+ "deleted": false,
+ "created_by": 38,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 75,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-38-1",
+ "deleted": false,
+ "created_by": 38,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 77,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-39-0",
+ "deleted": false,
+ "created_by": 39,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 78,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-39-1",
+ "deleted": false,
+ "created_by": 39,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 8,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-4-0",
+ "deleted": false,
+ "created_by": 4,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 7,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-4-1",
+ "deleted": false,
+ "created_by": 4,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 79,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-40-0",
+ "deleted": false,
+ "created_by": 40,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 80,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-40-1",
+ "deleted": false,
+ "created_by": 40,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 9,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-5-0",
+ "deleted": false,
+ "created_by": 5,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 10,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-5-1",
+ "deleted": false,
+ "created_by": 5,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 12,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-6-0",
+ "deleted": false,
+ "created_by": 6,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 11,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-6-1",
+ "deleted": false,
+ "created_by": 6,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 13,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-7-0",
+ "deleted": false,
+ "created_by": 7,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 14,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-7-1",
+ "deleted": false,
+ "created_by": 7,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 16,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-8-0",
+ "deleted": false,
+ "created_by": 8,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 15,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-8-1",
+ "deleted": false,
+ "created_by": 8,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 17,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-9-0",
+ "deleted": false,
+ "created_by": 9,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 18,
+ "model": "askbot.tag",
+ "fields": {
+ "name": "tag-9-1",
+ "deleted": false,
+ "created_by": 9,
+ "deleted_by": null,
+ "used_count": 1,
+ "deleted_at": null
+ }
+ },
+ {
+ "pk": 61,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 40,
+ "tagnames": "tag-40-0 tag-40-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.EDITED",
+ "question": 40,
+ "revised_at": "2011-11-28 15:09:31",
+ "summary": "EDITED",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 2
+ }
+ },
+ {
+ "pk": 62,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 20,
+ "tagnames": "",
+ "text": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:32",
+ "summary": "No.2 Revision",
+ "revision_type": 2,
+ "answer": 20,
+ "revision": 2
+ }
+ },
+ {
+ "pk": 1,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 1,
+ "tagnames": "tag-1-0 tag-1-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.1",
+ "question": 1,
+ "revised_at": "2011-11-28 15:09:07",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 2,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 2,
+ "tagnames": "tag-2-0 tag-2-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.2",
+ "question": 2,
+ "revised_at": "2011-11-28 15:09:09",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 3,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 3,
+ "tagnames": "tag-3-0 tag-3-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.3",
+ "question": 3,
+ "revised_at": "2011-11-28 15:09:10",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 4,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 4,
+ "tagnames": "tag-4-0 tag-4-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.4",
+ "question": 4,
+ "revised_at": "2011-11-28 15:09:10",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 5,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 5,
+ "tagnames": "tag-5-0 tag-5-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.5",
+ "question": 5,
+ "revised_at": "2011-11-28 15:09:10",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 6,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 6,
+ "tagnames": "tag-6-0 tag-6-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.6",
+ "question": 6,
+ "revised_at": "2011-11-28 15:09:10",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 7,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 7,
+ "tagnames": "tag-7-0 tag-7-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.7",
+ "question": 7,
+ "revised_at": "2011-11-28 15:09:10",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 8,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 8,
+ "tagnames": "tag-8-0 tag-8-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.8",
+ "question": 8,
+ "revised_at": "2011-11-28 15:09:10",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 9,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 9,
+ "tagnames": "tag-9-0 tag-9-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.9",
+ "question": 9,
+ "revised_at": "2011-11-28 15:09:10",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 10,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 10,
+ "tagnames": "tag-10-0 tag-10-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.10",
+ "question": 10,
+ "revised_at": "2011-11-28 15:09:10",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 11,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 11,
+ "tagnames": "tag-11-0 tag-11-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.11",
+ "question": 11,
+ "revised_at": "2011-11-28 15:09:11",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 12,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 12,
+ "tagnames": "tag-12-0 tag-12-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.12",
+ "question": 12,
+ "revised_at": "2011-11-28 15:09:11",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 13,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 13,
+ "tagnames": "tag-13-0 tag-13-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.13",
+ "question": 13,
+ "revised_at": "2011-11-28 15:09:11",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 14,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 14,
+ "tagnames": "tag-14-0 tag-14-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.14",
+ "question": 14,
+ "revised_at": "2011-11-28 15:09:11",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 15,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 15,
+ "tagnames": "tag-15-0 tag-15-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.15",
+ "question": 15,
+ "revised_at": "2011-11-28 15:09:11",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 16,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 16,
+ "tagnames": "tag-16-0 tag-16-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.16",
+ "question": 16,
+ "revised_at": "2011-11-28 15:09:11",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 17,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 17,
+ "tagnames": "tag-17-0 tag-17-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.17",
+ "question": 17,
+ "revised_at": "2011-11-28 15:09:11",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 18,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 18,
+ "tagnames": "tag-18-0 tag-18-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.18",
+ "question": 18,
+ "revised_at": "2011-11-28 15:09:12",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 19,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 19,
+ "tagnames": "tag-19-0 tag-19-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.19",
+ "question": 19,
+ "revised_at": "2011-11-28 15:09:12",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 20,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 20,
+ "tagnames": "tag-20-0 tag-20-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.20",
+ "question": 20,
+ "revised_at": "2011-11-28 15:09:12",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 21,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 21,
+ "tagnames": "tag-21-0 tag-21-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.21",
+ "question": 21,
+ "revised_at": "2011-11-28 15:09:12",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 22,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 22,
+ "tagnames": "tag-22-0 tag-22-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.22",
+ "question": 22,
+ "revised_at": "2011-11-28 15:09:12",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 23,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 23,
+ "tagnames": "tag-23-0 tag-23-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.23",
+ "question": 23,
+ "revised_at": "2011-11-28 15:09:12",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 24,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 24,
+ "tagnames": "tag-24-0 tag-24-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.24",
+ "question": 24,
+ "revised_at": "2011-11-28 15:09:12",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 25,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 25,
+ "tagnames": "tag-25-0 tag-25-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.25",
+ "question": 25,
+ "revised_at": "2011-11-28 15:09:12",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 26,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 26,
+ "tagnames": "tag-26-0 tag-26-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.26",
+ "question": 26,
+ "revised_at": "2011-11-28 15:09:13",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 27,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 27,
+ "tagnames": "tag-27-0 tag-27-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.27",
+ "question": 27,
+ "revised_at": "2011-11-28 15:09:13",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 28,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 28,
+ "tagnames": "tag-28-0 tag-28-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.28",
+ "question": 28,
+ "revised_at": "2011-11-28 15:09:13",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 29,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 29,
+ "tagnames": "tag-29-0 tag-29-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.29",
+ "question": 29,
+ "revised_at": "2011-11-28 15:09:13",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 30,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 30,
+ "tagnames": "tag-30-0 tag-30-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.30",
+ "question": 30,
+ "revised_at": "2011-11-28 15:09:13",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 31,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 31,
+ "tagnames": "tag-31-0 tag-31-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.31",
+ "question": 31,
+ "revised_at": "2011-11-28 15:09:13",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 32,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 32,
+ "tagnames": "tag-32-0 tag-32-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.32",
+ "question": 32,
+ "revised_at": "2011-11-28 15:09:13",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 33,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 33,
+ "tagnames": "tag-33-0 tag-33-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.33",
+ "question": 33,
+ "revised_at": "2011-11-28 15:09:14",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 34,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 34,
+ "tagnames": "tag-34-0 tag-34-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.34",
+ "question": 34,
+ "revised_at": "2011-11-28 15:09:14",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 35,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 35,
+ "tagnames": "tag-35-0 tag-35-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.35",
+ "question": 35,
+ "revised_at": "2011-11-28 15:09:14",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 36,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 36,
+ "tagnames": "tag-36-0 tag-36-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.36",
+ "question": 36,
+ "revised_at": "2011-11-28 15:09:14",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 37,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 37,
+ "tagnames": "tag-37-0 tag-37-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.37",
+ "question": 37,
+ "revised_at": "2011-11-28 15:09:14",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 38,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 38,
+ "tagnames": "tag-38-0 tag-38-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.38",
+ "question": 38,
+ "revised_at": "2011-11-28 15:09:14",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 39,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 39,
+ "tagnames": "tag-39-0 tag-39-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.39",
+ "question": 39,
+ "revised_at": "2011-11-28 15:09:14",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 40,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 40,
+ "tagnames": "tag-40-0 tag-40-1",
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "title": "Test question title No.40",
+ "question": 40,
+ "revised_at": "2011-11-28 15:09:14",
+ "summary": "initial version",
+ "revision_type": 1,
+ "answer": null,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 41,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 1,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:15",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 1,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 42,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 2,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:15",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 2,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 43,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 3,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:15",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 3,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 44,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 4,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:15",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 4,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 45,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 5,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:15",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 5,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 46,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 6,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:16",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 6,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 47,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 7,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:16",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 7,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 48,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 8,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:16",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 8,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 49,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 9,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:17",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 9,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 50,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 10,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:17",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 10,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 51,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 11,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:17",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 11,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 52,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 12,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:18",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 12,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 53,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 13,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:18",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 13,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 54,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 14,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:18",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 14,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 55,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 15,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:19",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 15,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 56,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 16,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:19",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 16,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 57,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 17,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:20",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 17,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 58,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 18,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:20",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 18,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 59,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 19,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:21",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 19,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 60,
+ "model": "askbot.postrevision",
+ "fields": {
+ "is_anonymous": false,
+ "author": 20,
+ "tagnames": "",
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "title": "",
+ "question": null,
+ "revised_at": "2011-11-28 15:09:21",
+ "summary": "initial version",
+ "revision_type": 2,
+ "answer": 20,
+ "revision": 1
+ }
+ },
+ {
+ "pk": 1,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 1,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 2,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 1,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 3,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 1,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 4,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 1,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 5,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 1,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 6,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 2,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 7,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 2,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 8,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 2,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 9,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 2,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 10,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 2,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 11,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 3,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 12,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 3,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 13,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 3,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 14,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 3,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 15,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 3,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 16,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 4,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 17,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 4,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 18,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 4,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 19,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 4,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 20,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 4,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 21,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 5,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 22,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 5,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 23,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 5,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 24,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 5,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 25,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 5,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 26,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 6,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 27,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 6,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 28,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 6,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 29,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 6,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 30,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 6,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 31,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 7,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 32,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 7,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 33,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 7,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 34,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 7,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 35,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 7,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 36,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 8,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 37,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 8,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 38,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 8,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 39,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 8,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 40,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 8,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 41,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 9,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 42,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 9,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 43,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 9,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 44,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 9,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 45,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 9,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 46,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 10,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 47,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 10,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 48,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 10,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 49,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 10,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 50,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 10,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 51,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 11,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 52,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 11,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 53,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 11,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 54,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 11,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 55,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 11,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 56,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 12,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 57,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 12,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 58,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 12,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 59,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 12,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 60,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 12,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 61,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 13,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 62,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 13,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 63,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 13,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 64,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 13,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 65,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 13,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 66,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 14,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 67,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 14,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 68,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 14,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 69,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 14,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 70,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 14,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 71,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 15,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 72,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 15,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 73,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 15,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 74,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 15,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 75,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 15,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 76,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 16,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 77,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 16,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 78,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 16,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 79,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 16,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 80,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 16,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 81,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 17,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 82,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 17,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 83,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 17,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 84,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 17,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 85,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 17,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:06"
+ }
+ },
+ {
+ "pk": 86,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 18,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 87,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 18,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 88,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 18,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 89,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 18,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 90,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 18,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 91,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 19,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 92,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 19,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 93,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 19,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 94,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 19,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 95,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 19,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 96,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 20,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 97,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 20,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 98,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 20,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 99,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 20,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 100,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 20,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 101,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 21,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 102,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 21,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 103,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 21,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 104,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 21,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 105,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 21,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 106,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 22,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 107,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 22,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 108,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 22,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 109,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 22,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 110,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 22,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 111,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 23,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 112,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 23,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 113,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 23,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 114,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 23,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 115,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 23,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 116,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 24,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 117,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 24,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 118,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 24,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 119,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 24,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 120,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 24,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 121,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 25,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 122,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 25,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 123,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 25,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 124,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 25,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 125,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 25,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 126,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 26,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 127,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 26,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 128,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 26,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 129,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 26,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 130,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 26,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 131,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 27,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 132,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 27,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 133,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 27,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 134,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 27,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 135,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 27,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 136,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 28,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 137,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 28,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 138,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 28,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 139,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 28,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 140,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 28,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 141,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 29,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 142,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 29,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 143,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 29,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 144,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 29,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 145,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 29,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 146,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 30,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 147,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 30,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 148,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 30,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 149,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 30,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 150,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 30,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 151,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 31,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 152,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 31,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 153,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 31,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 154,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 31,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 155,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 31,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 156,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 32,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 157,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 32,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 158,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 32,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 159,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 32,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 160,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 32,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 161,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 33,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 162,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 33,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 163,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 33,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 164,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 33,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 165,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 33,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 166,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 34,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 167,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 34,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 168,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 34,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 169,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 34,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 170,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 34,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 171,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 35,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 172,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 35,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 173,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 35,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 174,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 35,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 175,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 35,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 176,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 36,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 177,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 36,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 178,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 36,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 179,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 36,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 180,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 36,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 181,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 37,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 182,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 37,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 183,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 37,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 184,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 37,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 185,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 37,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 186,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 38,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 187,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 38,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 188,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 38,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 189,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 38,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 190,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 38,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 191,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 39,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 192,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 39,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 193,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 39,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 194,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 39,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 195,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 39,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 196,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 40,
+ "reported_at": null,
+ "feed_type": "q_all",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 197,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 40,
+ "reported_at": null,
+ "feed_type": "q_sel",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 198,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 40,
+ "reported_at": null,
+ "feed_type": "q_ask",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 199,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 40,
+ "reported_at": null,
+ "feed_type": "q_ans",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 200,
+ "model": "askbot.emailfeedsetting",
+ "fields": {
+ "subscriber": 40,
+ "reported_at": null,
+ "feed_type": "m_and_c",
+ "frequency": "w",
+ "added_at": "2011-11-28 15:09:07"
+ }
+ },
+ {
+ "pk": 1,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:08",
+ "user": 2,
+ "content_type": 17,
+ "object_id": 1
+ }
+ },
+ {
+ "pk": 2,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:10",
+ "user": 3,
+ "content_type": 17,
+ "object_id": 2
+ }
+ },
+ {
+ "pk": 3,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:10",
+ "user": 4,
+ "content_type": 17,
+ "object_id": 3
+ }
+ },
+ {
+ "pk": 4,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:10",
+ "user": 5,
+ "content_type": 17,
+ "object_id": 4
+ }
+ },
+ {
+ "pk": 5,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:10",
+ "user": 6,
+ "content_type": 17,
+ "object_id": 5
+ }
+ },
+ {
+ "pk": 6,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:10",
+ "user": 7,
+ "content_type": 17,
+ "object_id": 6
+ }
+ },
+ {
+ "pk": 7,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:10",
+ "user": 8,
+ "content_type": 17,
+ "object_id": 7
+ }
+ },
+ {
+ "pk": 8,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:10",
+ "user": 9,
+ "content_type": 17,
+ "object_id": 8
+ }
+ },
+ {
+ "pk": 9,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:10",
+ "user": 10,
+ "content_type": 17,
+ "object_id": 9
+ }
+ },
+ {
+ "pk": 10,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:11",
+ "user": 11,
+ "content_type": 17,
+ "object_id": 10
+ }
+ },
+ {
+ "pk": 11,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:11",
+ "user": 12,
+ "content_type": 17,
+ "object_id": 11
+ }
+ },
+ {
+ "pk": 12,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:11",
+ "user": 13,
+ "content_type": 17,
+ "object_id": 12
+ }
+ },
+ {
+ "pk": 13,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:11",
+ "user": 14,
+ "content_type": 17,
+ "object_id": 13
+ }
+ },
+ {
+ "pk": 14,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:11",
+ "user": 15,
+ "content_type": 17,
+ "object_id": 14
+ }
+ },
+ {
+ "pk": 15,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:11",
+ "user": 16,
+ "content_type": 17,
+ "object_id": 15
+ }
+ },
+ {
+ "pk": 16,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:11",
+ "user": 17,
+ "content_type": 17,
+ "object_id": 16
+ }
+ },
+ {
+ "pk": 17,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:12",
+ "user": 18,
+ "content_type": 17,
+ "object_id": 17
+ }
+ },
+ {
+ "pk": 18,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:12",
+ "user": 19,
+ "content_type": 17,
+ "object_id": 18
+ }
+ },
+ {
+ "pk": 19,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:12",
+ "user": 20,
+ "content_type": 17,
+ "object_id": 19
+ }
+ },
+ {
+ "pk": 20,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:12",
+ "user": 21,
+ "content_type": 17,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 21,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:12",
+ "user": 22,
+ "content_type": 17,
+ "object_id": 21
+ }
+ },
+ {
+ "pk": 22,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:12",
+ "user": 23,
+ "content_type": 17,
+ "object_id": 22
+ }
+ },
+ {
+ "pk": 23,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:12",
+ "user": 24,
+ "content_type": 17,
+ "object_id": 23
+ }
+ },
+ {
+ "pk": 24,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:12",
+ "user": 25,
+ "content_type": 17,
+ "object_id": 24
+ }
+ },
+ {
+ "pk": 25,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:13",
+ "user": 26,
+ "content_type": 17,
+ "object_id": 25
+ }
+ },
+ {
+ "pk": 26,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:13",
+ "user": 27,
+ "content_type": 17,
+ "object_id": 26
+ }
+ },
+ {
+ "pk": 27,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:13",
+ "user": 28,
+ "content_type": 17,
+ "object_id": 27
+ }
+ },
+ {
+ "pk": 28,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:13",
+ "user": 29,
+ "content_type": 17,
+ "object_id": 28
+ }
+ },
+ {
+ "pk": 29,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:13",
+ "user": 30,
+ "content_type": 17,
+ "object_id": 29
+ }
+ },
+ {
+ "pk": 30,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:13",
+ "user": 31,
+ "content_type": 17,
+ "object_id": 30
+ }
+ },
+ {
+ "pk": 31,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:13",
+ "user": 32,
+ "content_type": 17,
+ "object_id": 31
+ }
+ },
+ {
+ "pk": 32,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:13",
+ "user": 33,
+ "content_type": 17,
+ "object_id": 32
+ }
+ },
+ {
+ "pk": 33,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:14",
+ "user": 34,
+ "content_type": 17,
+ "object_id": 33
+ }
+ },
+ {
+ "pk": 34,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:14",
+ "user": 35,
+ "content_type": 17,
+ "object_id": 34
+ }
+ },
+ {
+ "pk": 35,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:14",
+ "user": 36,
+ "content_type": 17,
+ "object_id": 35
+ }
+ },
+ {
+ "pk": 36,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:14",
+ "user": 37,
+ "content_type": 17,
+ "object_id": 36
+ }
+ },
+ {
+ "pk": 37,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:14",
+ "user": 38,
+ "content_type": 17,
+ "object_id": 37
+ }
+ },
+ {
+ "pk": 38,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:14",
+ "user": 39,
+ "content_type": 17,
+ "object_id": 38
+ }
+ },
+ {
+ "pk": 39,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:14",
+ "user": 40,
+ "content_type": 17,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 40,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:15",
+ "user": 1,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 41,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:15",
+ "user": 2,
+ "content_type": 21,
+ "object_id": 1
+ }
+ },
+ {
+ "pk": 42,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:15",
+ "user": 2,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 43,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:15",
+ "user": 3,
+ "content_type": 21,
+ "object_id": 2
+ }
+ },
+ {
+ "pk": 44,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:15",
+ "user": 3,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 45,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:15",
+ "user": 4,
+ "content_type": 21,
+ "object_id": 3
+ }
+ },
+ {
+ "pk": 46,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:15",
+ "user": 4,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 47,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:15",
+ "user": 5,
+ "content_type": 21,
+ "object_id": 4
+ }
+ },
+ {
+ "pk": 48,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:16",
+ "user": 5,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 49,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:16",
+ "user": 6,
+ "content_type": 21,
+ "object_id": 5
+ }
+ },
+ {
+ "pk": 50,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:16",
+ "user": 6,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 51,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:16",
+ "user": 7,
+ "content_type": 21,
+ "object_id": 6
+ }
+ },
+ {
+ "pk": 52,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:16",
+ "user": 7,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 53,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:16",
+ "user": 8,
+ "content_type": 21,
+ "object_id": 7
+ }
+ },
+ {
+ "pk": 54,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:17",
+ "user": 8,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 55,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:17",
+ "user": 9,
+ "content_type": 21,
+ "object_id": 8
+ }
+ },
+ {
+ "pk": 56,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:17",
+ "user": 9,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 57,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:17",
+ "user": 10,
+ "content_type": 21,
+ "object_id": 9
+ }
+ },
+ {
+ "pk": 58,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:17",
+ "user": 10,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 59,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:17",
+ "user": 11,
+ "content_type": 21,
+ "object_id": 10
+ }
+ },
+ {
+ "pk": 60,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:18",
+ "user": 11,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 61,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:18",
+ "user": 12,
+ "content_type": 21,
+ "object_id": 11
+ }
+ },
+ {
+ "pk": 62,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:18",
+ "user": 12,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 63,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:18",
+ "user": 13,
+ "content_type": 21,
+ "object_id": 12
+ }
+ },
+ {
+ "pk": 64,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:18",
+ "user": 13,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 65,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:18",
+ "user": 14,
+ "content_type": 21,
+ "object_id": 13
+ }
+ },
+ {
+ "pk": 66,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:19",
+ "user": 14,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 67,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:19",
+ "user": 15,
+ "content_type": 21,
+ "object_id": 14
+ }
+ },
+ {
+ "pk": 68,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:19",
+ "user": 15,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 69,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:19",
+ "user": 16,
+ "content_type": 21,
+ "object_id": 15
+ }
+ },
+ {
+ "pk": 70,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:20",
+ "user": 16,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 71,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:20",
+ "user": 17,
+ "content_type": 21,
+ "object_id": 16
+ }
+ },
+ {
+ "pk": 72,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:20",
+ "user": 17,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 73,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:20",
+ "user": 18,
+ "content_type": 21,
+ "object_id": 17
+ }
+ },
+ {
+ "pk": 74,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:21",
+ "user": 18,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 75,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": -1,
+ "voted_at": "2011-11-28 15:09:21",
+ "user": 19,
+ "content_type": 21,
+ "object_id": 18
+ }
+ },
+ {
+ "pk": 76,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:21",
+ "user": 19,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 77,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:21",
+ "user": 20,
+ "content_type": 21,
+ "object_id": 19
+ }
+ },
+ {
+ "pk": 78,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:22",
+ "user": 20,
+ "content_type": 17,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 79,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:22",
+ "user": 1,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 80,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:22",
+ "user": 2,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 81,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:22",
+ "user": 3,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 82,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:23",
+ "user": 4,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 83,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:23",
+ "user": 5,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 84,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:23",
+ "user": 6,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 85,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:24",
+ "user": 7,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 86,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:24",
+ "user": 8,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 87,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:24",
+ "user": 9,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 88,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:25",
+ "user": 10,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 89,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:25",
+ "user": 11,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 90,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:26",
+ "user": 12,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 91,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:26",
+ "user": 13,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 92,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:27",
+ "user": 14,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 93,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:28",
+ "user": 15,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 94,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:28",
+ "user": 16,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 95,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:29",
+ "user": 17,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 96,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:30",
+ "user": 18,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 97,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:30",
+ "user": 19,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 98,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 20,
+ "content_type": 21,
+ "object_id": 20
+ }
+ },
+ {
+ "pk": 99,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 1,
+ "content_type": 16,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 100,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 1,
+ "content_type": 16,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 101,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 2,
+ "content_type": 16,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 102,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 2,
+ "content_type": 16,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 103,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 3,
+ "content_type": 16,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 104,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 3,
+ "content_type": 16,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 105,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 4,
+ "content_type": 16,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 106,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 4,
+ "content_type": 16,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 107,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 5,
+ "content_type": 16,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 108,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 5,
+ "content_type": 16,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 109,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 6,
+ "content_type": 16,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 110,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 6,
+ "content_type": 16,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 111,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 7,
+ "content_type": 16,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 112,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 7,
+ "content_type": 16,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 113,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 8,
+ "content_type": 16,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 114,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 8,
+ "content_type": 16,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 115,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 9,
+ "content_type": 16,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 116,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 9,
+ "content_type": 16,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 117,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 10,
+ "content_type": 16,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 118,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 10,
+ "content_type": 16,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 119,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 11,
+ "content_type": 16,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 120,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 11,
+ "content_type": 16,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 121,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 12,
+ "content_type": 16,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 122,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 12,
+ "content_type": 16,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 123,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 13,
+ "content_type": 16,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 124,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 13,
+ "content_type": 16,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 125,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 14,
+ "content_type": 16,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 126,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 14,
+ "content_type": 16,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 127,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 15,
+ "content_type": 16,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 128,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 15,
+ "content_type": 16,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 129,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 16,
+ "content_type": 16,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 130,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 16,
+ "content_type": 16,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 131,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 17,
+ "content_type": 16,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 132,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 17,
+ "content_type": 16,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 133,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 18,
+ "content_type": 16,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 134,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 18,
+ "content_type": 16,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 135,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 19,
+ "content_type": 16,
+ "object_id": 39
+ }
+ },
+ {
+ "pk": 136,
+ "model": "askbot.vote",
+ "fields": {
+ "vote": 1,
+ "voted_at": "2011-11-28 15:09:31",
+ "user": 19,
+ "content_type": 16,
+ "object_id": 40
+ }
+ },
+ {
+ "pk": 40,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "score": 19,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:31",
+ "offensive_flag_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "user": 20,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 39,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "score": 19,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:30",
+ "offensive_flag_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "user": 20,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 38,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:30",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 19,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 37,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:30",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 19,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 36,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:29",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 18,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 35,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:29",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 18,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 34,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:28",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 17,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 33,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:28",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 17,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 32,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:28",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 16,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 31,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:28",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 16,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 30,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:27",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 15,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 29,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:27",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 15,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 28,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:27",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 14,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 27,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:26",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 14,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 26,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:26",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 13,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 25,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:26",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 13,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 24,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:26",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 12,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 23,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:25",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 12,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 22,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:25",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 11,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 21,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:25",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 11,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 20,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:25",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 10,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 19,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:24",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 10,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 18,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:24",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 9,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 17,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:24",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 9,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 16,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:24",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 8,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 15,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:24",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 8,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 14,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:24",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 7,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 13,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:23",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 7,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 12,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:23",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 6,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 11,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:23",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 6,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 10,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:23",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 5,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 9,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:23",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 5,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 8,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:23",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 4,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 7,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:23",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 4,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 6,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:22",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 3,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 5,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:22",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 3,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 4,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:22",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 2,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 3,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:22",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 2,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 2,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 20,
+ "added_at": "2011-11-28 15:09:22",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 1,
+ "content_type": 21
+ }
+ },
+ {
+ "pk": 1,
+ "model": "askbot.comment",
+ "fields": {
+ "comment": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "score": 0,
+ "object_id": 40,
+ "added_at": "2011-11-28 15:09:22",
+ "offensive_flag_count": 0,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "user": 1,
+ "content_type": 17
+ }
+ },
+ {
+ "pk": 1,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 1,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 1,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 1,
+ 2
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:07",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-1-0 tag-1-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:07",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.1",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 2,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 2,
+ "view_count": 0,
+ "locked_at": null,
+ "score": -1,
+ "author": 2,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 1,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 4,
+ 3
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:09",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-2-0 tag-2-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:09",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.2",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 3,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 3,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 3,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 5,
+ 6
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:10",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-3-0 tag-3-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:10",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.3",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 4,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 4,
+ "view_count": 0,
+ "locked_at": null,
+ "score": -1,
+ "author": 4,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 1,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 8,
+ 7
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:10",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-4-0 tag-4-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:10",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.4",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 5,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 5,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 5,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 9,
+ 10
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:10",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-5-0 tag-5-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:10",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.5",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 6,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 6,
+ "view_count": 0,
+ "locked_at": null,
+ "score": -1,
+ "author": 6,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 1,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 12,
+ 11
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:10",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-6-0 tag-6-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:10",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.6",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 7,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 7,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 7,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 13,
+ 14
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:10",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-7-0 tag-7-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:10",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.7",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 8,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 8,
+ "view_count": 0,
+ "locked_at": null,
+ "score": -1,
+ "author": 8,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 1,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 16,
+ 15
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:10",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-8-0 tag-8-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:10",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.8",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 9,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 9,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 9,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 17,
+ 18
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:10",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-9-0 tag-9-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:10",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.9",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 10,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 10,
+ "view_count": 0,
+ "locked_at": null,
+ "score": -1,
+ "author": 10,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 1,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 20,
+ 19
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:10",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-10-0 tag-10-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:10",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.10",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 11,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 11,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 11,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 21,
+ 22
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:11",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-11-0 tag-11-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:11",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.11",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 12,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 12,
+ "view_count": 0,
+ "locked_at": null,
+ "score": -1,
+ "author": 12,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 1,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 24,
+ 23
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:11",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-12-0 tag-12-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:11",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.12",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 13,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 13,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 13,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 25,
+ 26
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:11",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-13-0 tag-13-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:11",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.13",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 14,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 14,
+ "view_count": 0,
+ "locked_at": null,
+ "score": -1,
+ "author": 14,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 1,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 28,
+ 27
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:11",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-14-0 tag-14-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:11",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.14",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 15,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 15,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 15,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 29,
+ 30
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:11",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-15-0 tag-15-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:11",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.15",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 16,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 16,
+ "view_count": 0,
+ "locked_at": null,
+ "score": -1,
+ "author": 16,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 1,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 32,
+ 31
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:11",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-16-0 tag-16-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:11",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.16",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 17,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 17,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 17,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 33,
+ 34
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:11",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-17-0 tag-17-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:11",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.17",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 18,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 18,
+ "view_count": 0,
+ "locked_at": null,
+ "score": -1,
+ "author": 18,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 1,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 36,
+ 35
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:12",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-18-0 tag-18-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:12",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.18",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 19,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 19,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 19,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 37,
+ 38
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:12",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-19-0 tag-19-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:12",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.19",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 20,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 20,
+ "view_count": 0,
+ "locked_at": null,
+ "score": -1,
+ "author": 20,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 1,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 39,
+ 40
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:12",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-20-0 tag-20-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:12",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.20",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 21,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 21,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 21,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 42,
+ 41
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:12",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-21-0 tag-21-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:12",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.21",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 22,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 22,
+ "view_count": 0,
+ "locked_at": null,
+ "score": -1,
+ "author": 22,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 1,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 43,
+ 44
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:12",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-22-0 tag-22-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:12",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.22",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 23,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 23,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 23,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 46,
+ 45
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:12",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-23-0 tag-23-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:12",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.23",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 24,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 24,
+ "view_count": 0,
+ "locked_at": null,
+ "score": -1,
+ "author": 24,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 1,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 47,
+ 48
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:12",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-24-0 tag-24-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:12",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.24",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 25,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 25,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 25,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 50,
+ 49
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:12",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-25-0 tag-25-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:12",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.25",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 26,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 26,
+ "view_count": 0,
+ "locked_at": null,
+ "score": -1,
+ "author": 26,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 1,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 51,
+ 52
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:13",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-26-0 tag-26-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:13",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.26",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 27,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 27,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 27,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 54,
+ 53
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:13",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-27-0 tag-27-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:13",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.27",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 28,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 28,
+ "view_count": 0,
+ "locked_at": null,
+ "score": -1,
+ "author": 28,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 1,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 55,
+ 56
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:13",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-28-0 tag-28-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:13",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.28",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 29,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 29,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 29,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 58,
+ 57
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:13",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-29-0 tag-29-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:13",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.29",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 30,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 30,
+ "view_count": 0,
+ "locked_at": null,
+ "score": -1,
+ "author": 30,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 1,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 60,
+ 59
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:13",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-30-0 tag-30-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:13",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.30",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 31,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 31,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 31,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 61,
+ 62
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:13",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-31-0 tag-31-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:13",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.31",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 32,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 32,
+ "view_count": 0,
+ "locked_at": null,
+ "score": -1,
+ "author": 32,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 1,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 64,
+ 63
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:13",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-32-0 tag-32-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:13",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.32",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 33,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 33,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 33,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 65,
+ 66
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:14",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-33-0 tag-33-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:14",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.33",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 34,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 34,
+ "view_count": 0,
+ "locked_at": null,
+ "score": -1,
+ "author": 34,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 1,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 68,
+ 67
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:14",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-34-0 tag-34-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:14",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.34",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 35,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 35,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 35,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 69,
+ 70
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:14",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-35-0 tag-35-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:14",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.35",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 36,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 36,
+ "view_count": 0,
+ "locked_at": null,
+ "score": -1,
+ "author": 36,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 1,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 72,
+ 71
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:14",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-36-0 tag-36-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:14",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.36",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 37,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 37,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 37,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 73,
+ 74
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:14",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-37-0 tag-37-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:14",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.37",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 38,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 38,
+ "view_count": 0,
+ "locked_at": null,
+ "score": -1,
+ "author": 38,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 1,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 76,
+ 75
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:14",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-38-0 tag-38-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:14",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.38",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 39,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 39,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 1,
+ "author": 39,
+ "comment_count": 0,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": false,
+ "last_edited_by": null,
+ "followed_by": [],
+ "favourite_count": 0,
+ "tags": [
+ 77,
+ 78
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 0,
+ "last_activity_at": "2011-11-28 15:09:14",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-39-0 tag-39-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:14",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.39",
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 40,
+ "model": "askbot.question",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 20,
+ "text": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n **A/B** testing *shrink* a market venture capital pitch.",
+ "offensive_flag_count": 0,
+ "closed_at": null,
+ "deleted_at": null,
+ "last_activity_by": 20,
+ "view_count": 0,
+ "locked_at": null,
+ "score": 20,
+ "author": 40,
+ "comment_count": 20,
+ "html": "<p>Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. User engagement \n <strong>A/B</strong> testing <em>shrink</em> a market venture capital pitch.</p>\n",
+ "vote_down_count": 0,
+ "closed": false,
+ "answer_accepted": true,
+ "last_edited_by": 40,
+ "followed_by": [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12,
+ 13,
+ 14,
+ 15,
+ 16,
+ 17,
+ 18,
+ 19,
+ 20
+ ],
+ "favourite_count": 0,
+ "tags": [
+ 79,
+ 80
+ ],
+ "deleted": false,
+ "summary": "Lorem lean startup ipsum product market fit customer \n development acquihire technical cofounder. Use",
+ "answer_count": 20,
+ "last_activity_at": "2011-11-28 15:09:32",
+ "closed_by": null,
+ "close_reason": null,
+ "locked": false,
+ "is_anonymous": false,
+ "tagnames": "tag-40-0 tag-40-1",
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:14",
+ "deleted_by": null,
+ "wikified_at": null,
+ "title": "Test question title No.EDITED",
+ "last_edited_at": "2011-11-28 15:09:31"
+ }
+ },
+ {
+ "pk": 1,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": 1,
+ "author": 1,
+ "question": 40,
+ "comment_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "vote_down_count": 0,
+ "last_edited_by": null,
+ "accepted_at": null,
+ "deleted": false,
+ "accepted": false,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:15",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 2,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": -1,
+ "author": 2,
+ "question": 40,
+ "comment_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "vote_down_count": 1,
+ "last_edited_by": null,
+ "accepted_at": null,
+ "deleted": false,
+ "accepted": false,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:15",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 3,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": 1,
+ "author": 3,
+ "question": 40,
+ "comment_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "vote_down_count": 0,
+ "last_edited_by": null,
+ "accepted_at": null,
+ "deleted": false,
+ "accepted": false,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:15",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 4,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": -1,
+ "author": 4,
+ "question": 40,
+ "comment_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "vote_down_count": 1,
+ "last_edited_by": null,
+ "accepted_at": null,
+ "deleted": false,
+ "accepted": false,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:15",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 5,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": 1,
+ "author": 5,
+ "question": 40,
+ "comment_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "vote_down_count": 0,
+ "last_edited_by": null,
+ "accepted_at": null,
+ "deleted": false,
+ "accepted": false,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:15",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 6,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": -1,
+ "author": 6,
+ "question": 40,
+ "comment_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "vote_down_count": 1,
+ "last_edited_by": null,
+ "accepted_at": null,
+ "deleted": false,
+ "accepted": false,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:16",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 7,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": 1,
+ "author": 7,
+ "question": 40,
+ "comment_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "vote_down_count": 0,
+ "last_edited_by": null,
+ "accepted_at": null,
+ "deleted": false,
+ "accepted": false,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:16",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 8,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": -1,
+ "author": 8,
+ "question": 40,
+ "comment_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "vote_down_count": 1,
+ "last_edited_by": null,
+ "accepted_at": null,
+ "deleted": false,
+ "accepted": false,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:16",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 9,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": 1,
+ "author": 9,
+ "question": 40,
+ "comment_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "vote_down_count": 0,
+ "last_edited_by": null,
+ "accepted_at": null,
+ "deleted": false,
+ "accepted": false,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:17",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 10,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": -1,
+ "author": 10,
+ "question": 40,
+ "comment_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "vote_down_count": 1,
+ "last_edited_by": null,
+ "accepted_at": null,
+ "deleted": false,
+ "accepted": false,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:17",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 11,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": 1,
+ "author": 11,
+ "question": 40,
+ "comment_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "vote_down_count": 0,
+ "last_edited_by": null,
+ "accepted_at": null,
+ "deleted": false,
+ "accepted": false,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:17",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 12,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": -1,
+ "author": 12,
+ "question": 40,
+ "comment_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "vote_down_count": 1,
+ "last_edited_by": null,
+ "accepted_at": null,
+ "deleted": false,
+ "accepted": false,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:18",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 13,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": 1,
+ "author": 13,
+ "question": 40,
+ "comment_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "vote_down_count": 0,
+ "last_edited_by": null,
+ "accepted_at": null,
+ "deleted": false,
+ "accepted": false,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:18",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 14,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": -1,
+ "author": 14,
+ "question": 40,
+ "comment_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "vote_down_count": 1,
+ "last_edited_by": null,
+ "accepted_at": null,
+ "deleted": false,
+ "accepted": false,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:18",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 15,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": 1,
+ "author": 15,
+ "question": 40,
+ "comment_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "vote_down_count": 0,
+ "last_edited_by": null,
+ "accepted_at": null,
+ "deleted": false,
+ "accepted": false,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:19",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 16,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": -1,
+ "author": 16,
+ "question": 40,
+ "comment_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "vote_down_count": 1,
+ "last_edited_by": null,
+ "accepted_at": null,
+ "deleted": false,
+ "accepted": false,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:19",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 17,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": 1,
+ "author": 17,
+ "question": 40,
+ "comment_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "vote_down_count": 0,
+ "last_edited_by": null,
+ "accepted_at": null,
+ "deleted": false,
+ "accepted": false,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:20",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 18,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 0,
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": -1,
+ "author": 18,
+ "question": 40,
+ "comment_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "vote_down_count": 1,
+ "last_edited_by": null,
+ "accepted_at": null,
+ "deleted": false,
+ "accepted": false,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:20",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 19,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 1,
+ "text": "Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": 1,
+ "author": 19,
+ "question": 40,
+ "comment_count": 0,
+ "html": "<p>Accelerator photo sharing business school drop out ramen \n hustle crush it revenue traction platforms.</p>\n",
+ "vote_down_count": 0,
+ "last_edited_by": null,
+ "accepted_at": null,
+ "deleted": false,
+ "accepted": false,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:21",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": null
+ }
+ },
+ {
+ "pk": 20,
+ "model": "askbot.answer",
+ "fields": {
+ "wiki": false,
+ "vote_up_count": 20,
+ "text": "Main differentiators business model micro economics \n marketplace equity augmented reality human computer",
+ "offensive_flag_count": 0,
+ "deleted_at": null,
+ "locked_at": null,
+ "score": 20,
+ "author": 20,
+ "question": 40,
+ "comment_count": 20,
+ "html": "<p>Main differentiators business model micro economics \n marketplace equity augmented reality human computer</p>\n",
+ "vote_down_count": 0,
+ "last_edited_by": 20,
+ "accepted_at": "2011-11-28 15:09:33",
+ "deleted": false,
+ "accepted": true,
+ "locked": false,
+ "locked_by": null,
+ "added_at": "2011-11-28 15:09:21",
+ "deleted_by": null,
+ "wikified_at": null,
+ "last_edited_at": "2011-11-28 15:09:32"
+ }
+ },
+ {
+ "pk": 1,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:08",
+ "notified": false,
+ "object_id": 1,
+ "user": 1,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 2,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:08",
+ "notified": false,
+ "object_id": 1,
+ "user": 2,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 3,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:10",
+ "notified": false,
+ "object_id": 2,
+ "user": 3,
+ "content_type": 17,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 4,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:10",
+ "notified": false,
+ "object_id": 3,
+ "user": 3,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 5,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:10",
+ "notified": false,
+ "object_id": 3,
+ "user": 4,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 6,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:10",
+ "notified": false,
+ "object_id": 4,
+ "user": 5,
+ "content_type": 17,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 7,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:10",
+ "notified": false,
+ "object_id": 5,
+ "user": 5,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 8,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:10",
+ "notified": false,
+ "object_id": 5,
+ "user": 6,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 9,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:10",
+ "notified": false,
+ "object_id": 6,
+ "user": 7,
+ "content_type": 17,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 10,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:10",
+ "notified": false,
+ "object_id": 7,
+ "user": 7,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 11,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:10",
+ "notified": false,
+ "object_id": 7,
+ "user": 8,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 12,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:10",
+ "notified": false,
+ "object_id": 8,
+ "user": 9,
+ "content_type": 17,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 13,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:10",
+ "notified": false,
+ "object_id": 9,
+ "user": 9,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 14,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:10",
+ "notified": false,
+ "object_id": 9,
+ "user": 10,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 15,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:11",
+ "notified": false,
+ "object_id": 10,
+ "user": 11,
+ "content_type": 17,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 16,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:11",
+ "notified": false,
+ "object_id": 11,
+ "user": 11,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 17,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:11",
+ "notified": false,
+ "object_id": 11,
+ "user": 12,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 18,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:11",
+ "notified": false,
+ "object_id": 12,
+ "user": 13,
+ "content_type": 17,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 19,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:11",
+ "notified": false,
+ "object_id": 13,
+ "user": 13,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 20,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:11",
+ "notified": false,
+ "object_id": 13,
+ "user": 14,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 21,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:11",
+ "notified": false,
+ "object_id": 14,
+ "user": 15,
+ "content_type": 17,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 22,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:11",
+ "notified": false,
+ "object_id": 15,
+ "user": 15,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 23,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:11",
+ "notified": false,
+ "object_id": 15,
+ "user": 16,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 24,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:11",
+ "notified": false,
+ "object_id": 16,
+ "user": 17,
+ "content_type": 17,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 25,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:12",
+ "notified": false,
+ "object_id": 17,
+ "user": 17,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 26,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:12",
+ "notified": false,
+ "object_id": 17,
+ "user": 18,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 27,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:12",
+ "notified": false,
+ "object_id": 18,
+ "user": 19,
+ "content_type": 17,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 28,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:12",
+ "notified": false,
+ "object_id": 19,
+ "user": 19,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 29,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:12",
+ "notified": false,
+ "object_id": 19,
+ "user": 20,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 30,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:12",
+ "notified": false,
+ "object_id": 20,
+ "user": 21,
+ "content_type": 17,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 31,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:12",
+ "notified": false,
+ "object_id": 21,
+ "user": 21,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 32,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:12",
+ "notified": false,
+ "object_id": 21,
+ "user": 22,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 33,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:12",
+ "notified": false,
+ "object_id": 22,
+ "user": 23,
+ "content_type": 17,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 34,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:12",
+ "notified": false,
+ "object_id": 23,
+ "user": 23,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 35,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:12",
+ "notified": false,
+ "object_id": 23,
+ "user": 24,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 36,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:12",
+ "notified": false,
+ "object_id": 24,
+ "user": 25,
+ "content_type": 17,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 37,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:13",
+ "notified": false,
+ "object_id": 25,
+ "user": 25,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 38,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:13",
+ "notified": false,
+ "object_id": 25,
+ "user": 26,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 39,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:13",
+ "notified": false,
+ "object_id": 26,
+ "user": 27,
+ "content_type": 17,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 40,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:13",
+ "notified": false,
+ "object_id": 27,
+ "user": 27,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 41,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:13",
+ "notified": false,
+ "object_id": 27,
+ "user": 28,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 42,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:13",
+ "notified": false,
+ "object_id": 28,
+ "user": 29,
+ "content_type": 17,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 43,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:13",
+ "notified": false,
+ "object_id": 29,
+ "user": 29,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 44,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:13",
+ "notified": false,
+ "object_id": 29,
+ "user": 30,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 45,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:13",
+ "notified": false,
+ "object_id": 30,
+ "user": 31,
+ "content_type": 17,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 46,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:13",
+ "notified": false,
+ "object_id": 31,
+ "user": 31,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 47,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:13",
+ "notified": false,
+ "object_id": 31,
+ "user": 32,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 48,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:13",
+ "notified": false,
+ "object_id": 32,
+ "user": 33,
+ "content_type": 17,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 49,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:14",
+ "notified": false,
+ "object_id": 33,
+ "user": 33,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 50,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:14",
+ "notified": false,
+ "object_id": 33,
+ "user": 34,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 51,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:14",
+ "notified": false,
+ "object_id": 34,
+ "user": 35,
+ "content_type": 17,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 52,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:14",
+ "notified": false,
+ "object_id": 35,
+ "user": 35,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 53,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:14",
+ "notified": false,
+ "object_id": 35,
+ "user": 36,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 54,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:14",
+ "notified": false,
+ "object_id": 36,
+ "user": 37,
+ "content_type": 17,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 55,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:14",
+ "notified": false,
+ "object_id": 37,
+ "user": 37,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 56,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:14",
+ "notified": false,
+ "object_id": 37,
+ "user": 38,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 57,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:14",
+ "notified": false,
+ "object_id": 38,
+ "user": 39,
+ "content_type": 17,
+ "badge": 3
+ }
+ },
+ {
+ "pk": 58,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:14",
+ "notified": false,
+ "object_id": 39,
+ "user": 39,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 59,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:14",
+ "notified": false,
+ "object_id": 39,
+ "user": 40,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 60,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:15",
+ "notified": false,
+ "object_id": 40,
+ "user": 40,
+ "content_type": 17,
+ "badge": 1
+ }
+ },
+ {
+ "pk": 61,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:15",
+ "notified": false,
+ "object_id": 40,
+ "user": 1,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 62,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:15",
+ "notified": false,
+ "object_id": 1,
+ "user": 1,
+ "content_type": 21,
+ "badge": 4
+ }
+ },
+ {
+ "pk": 63,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:15",
+ "notified": false,
+ "object_id": 40,
+ "user": 40,
+ "content_type": 17,
+ "badge": 5
+ }
+ },
+ {
+ "pk": 64,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:15",
+ "notified": false,
+ "object_id": 40,
+ "user": 40,
+ "content_type": 17,
+ "badge": 6
+ }
+ },
+ {
+ "pk": 65,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:15",
+ "notified": false,
+ "object_id": 40,
+ "user": 3,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 66,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:15",
+ "notified": false,
+ "object_id": 3,
+ "user": 3,
+ "content_type": 21,
+ "badge": 4
+ }
+ },
+ {
+ "pk": 67,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:16",
+ "notified": false,
+ "object_id": 40,
+ "user": 40,
+ "content_type": 17,
+ "badge": 7
+ }
+ },
+ {
+ "pk": 68,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:16",
+ "notified": false,
+ "object_id": 40,
+ "user": 5,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 69,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:16",
+ "notified": false,
+ "object_id": 5,
+ "user": 5,
+ "content_type": 21,
+ "badge": 4
+ }
+ },
+ {
+ "pk": 70,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:16",
+ "notified": false,
+ "object_id": 40,
+ "user": 7,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 71,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:16",
+ "notified": false,
+ "object_id": 7,
+ "user": 7,
+ "content_type": 21,
+ "badge": 4
+ }
+ },
+ {
+ "pk": 72,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:17",
+ "notified": false,
+ "object_id": 40,
+ "user": 9,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 73,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:17",
+ "notified": false,
+ "object_id": 9,
+ "user": 9,
+ "content_type": 21,
+ "badge": 4
+ }
+ },
+ {
+ "pk": 74,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:18",
+ "notified": false,
+ "object_id": 40,
+ "user": 11,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 75,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:18",
+ "notified": false,
+ "object_id": 11,
+ "user": 11,
+ "content_type": 21,
+ "badge": 4
+ }
+ },
+ {
+ "pk": 76,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:18",
+ "notified": false,
+ "object_id": 40,
+ "user": 13,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 77,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:18",
+ "notified": false,
+ "object_id": 13,
+ "user": 13,
+ "content_type": 21,
+ "badge": 4
+ }
+ },
+ {
+ "pk": 78,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:19",
+ "notified": false,
+ "object_id": 40,
+ "user": 15,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 79,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:19",
+ "notified": false,
+ "object_id": 15,
+ "user": 15,
+ "content_type": 21,
+ "badge": 4
+ }
+ },
+ {
+ "pk": 80,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:20",
+ "notified": false,
+ "object_id": 40,
+ "user": 17,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 81,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:20",
+ "notified": false,
+ "object_id": 17,
+ "user": 17,
+ "content_type": 21,
+ "badge": 4
+ }
+ },
+ {
+ "pk": 82,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:21",
+ "notified": false,
+ "object_id": 40,
+ "user": 19,
+ "content_type": 17,
+ "badge": 2
+ }
+ },
+ {
+ "pk": 83,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:21",
+ "notified": false,
+ "object_id": 19,
+ "user": 19,
+ "content_type": 21,
+ "badge": 4
+ }
+ },
+ {
+ "pk": 84,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:22",
+ "notified": false,
+ "object_id": 20,
+ "user": 20,
+ "content_type": 21,
+ "badge": 4
+ }
+ },
+ {
+ "pk": 85,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:22",
+ "notified": false,
+ "object_id": 20,
+ "user": 20,
+ "content_type": 21,
+ "badge": 8
+ }
+ },
+ {
+ "pk": 86,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:22",
+ "notified": false,
+ "object_id": 20,
+ "user": 20,
+ "content_type": 21,
+ "badge": 9
+ }
+ },
+ {
+ "pk": 87,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:23",
+ "notified": false,
+ "object_id": 20,
+ "user": 20,
+ "content_type": 21,
+ "badge": 10
+ }
+ },
+ {
+ "pk": 88,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:31",
+ "notified": false,
+ "object_id": 40,
+ "user": 40,
+ "content_type": 17,
+ "badge": 11
+ }
+ },
+ {
+ "pk": 89,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:32",
+ "notified": false,
+ "object_id": 20,
+ "user": 20,
+ "content_type": 21,
+ "badge": 11
+ }
+ },
+ {
+ "pk": 90,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:33",
+ "notified": false,
+ "object_id": 20,
+ "user": 40,
+ "content_type": 21,
+ "badge": 12
+ }
+ },
+ {
+ "pk": 91,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:33",
+ "notified": false,
+ "object_id": 20,
+ "user": 20,
+ "content_type": 21,
+ "badge": 13
+ }
+ },
+ {
+ "pk": 92,
+ "model": "askbot.award",
+ "fields": {
+ "awarded_at": "2011-11-28 15:09:33",
+ "notified": false,
+ "object_id": 20,
+ "user": 20,
+ "content_type": 21,
+ "badge": 14
+ }
+ },
+ {
+ "pk": 1,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 1,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 1,
+ "reputed_at": "2011-11-28 15:09:08",
+ "reputation": 510
+ }
+ },
+ {
+ "pk": 2,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 2,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 2,
+ "reputed_at": "2011-11-28 15:09:10",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 3,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 2,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 3,
+ "reputed_at": "2011-11-28 15:09:10",
+ "reputation": 499
+ }
+ },
+ {
+ "pk": 4,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 3,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 3,
+ "reputed_at": "2011-11-28 15:09:10",
+ "reputation": 509
+ }
+ },
+ {
+ "pk": 5,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 4,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 4,
+ "reputed_at": "2011-11-28 15:09:10",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 6,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 4,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 5,
+ "reputed_at": "2011-11-28 15:09:10",
+ "reputation": 499
+ }
+ },
+ {
+ "pk": 7,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 5,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 5,
+ "reputed_at": "2011-11-28 15:09:10",
+ "reputation": 509
+ }
+ },
+ {
+ "pk": 8,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 6,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 6,
+ "reputed_at": "2011-11-28 15:09:10",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 9,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 6,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 7,
+ "reputed_at": "2011-11-28 15:09:10",
+ "reputation": 499
+ }
+ },
+ {
+ "pk": 10,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 7,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 7,
+ "reputed_at": "2011-11-28 15:09:10",
+ "reputation": 509
+ }
+ },
+ {
+ "pk": 11,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 8,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 8,
+ "reputed_at": "2011-11-28 15:09:10",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 12,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 8,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 9,
+ "reputed_at": "2011-11-28 15:09:10",
+ "reputation": 499
+ }
+ },
+ {
+ "pk": 13,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 9,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 9,
+ "reputed_at": "2011-11-28 15:09:10",
+ "reputation": 509
+ }
+ },
+ {
+ "pk": 14,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 10,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 10,
+ "reputed_at": "2011-11-28 15:09:11",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 15,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 10,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 11,
+ "reputed_at": "2011-11-28 15:09:11",
+ "reputation": 499
+ }
+ },
+ {
+ "pk": 16,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 11,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 11,
+ "reputed_at": "2011-11-28 15:09:11",
+ "reputation": 509
+ }
+ },
+ {
+ "pk": 17,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 12,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 12,
+ "reputed_at": "2011-11-28 15:09:11",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 18,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 12,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 13,
+ "reputed_at": "2011-11-28 15:09:11",
+ "reputation": 499
+ }
+ },
+ {
+ "pk": 19,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 13,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 13,
+ "reputed_at": "2011-11-28 15:09:11",
+ "reputation": 509
+ }
+ },
+ {
+ "pk": 20,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 14,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 14,
+ "reputed_at": "2011-11-28 15:09:11",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 21,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 14,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 15,
+ "reputed_at": "2011-11-28 15:09:11",
+ "reputation": 499
+ }
+ },
+ {
+ "pk": 22,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 15,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 15,
+ "reputed_at": "2011-11-28 15:09:11",
+ "reputation": 509
+ }
+ },
+ {
+ "pk": 23,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 16,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 16,
+ "reputed_at": "2011-11-28 15:09:11",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 24,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 16,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 17,
+ "reputed_at": "2011-11-28 15:09:11",
+ "reputation": 499
+ }
+ },
+ {
+ "pk": 25,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 17,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 17,
+ "reputed_at": "2011-11-28 15:09:12",
+ "reputation": 509
+ }
+ },
+ {
+ "pk": 26,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 18,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 18,
+ "reputed_at": "2011-11-28 15:09:12",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 27,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 18,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 19,
+ "reputed_at": "2011-11-28 15:09:12",
+ "reputation": 499
+ }
+ },
+ {
+ "pk": 28,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 19,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 19,
+ "reputed_at": "2011-11-28 15:09:12",
+ "reputation": 509
+ }
+ },
+ {
+ "pk": 29,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 20,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:12",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 30,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 20,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 21,
+ "reputed_at": "2011-11-28 15:09:12",
+ "reputation": 499
+ }
+ },
+ {
+ "pk": 31,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 21,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 21,
+ "reputed_at": "2011-11-28 15:09:12",
+ "reputation": 509
+ }
+ },
+ {
+ "pk": 32,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 22,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 22,
+ "reputed_at": "2011-11-28 15:09:12",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 33,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 22,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 23,
+ "reputed_at": "2011-11-28 15:09:12",
+ "reputation": 499
+ }
+ },
+ {
+ "pk": 34,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 23,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 23,
+ "reputed_at": "2011-11-28 15:09:12",
+ "reputation": 509
+ }
+ },
+ {
+ "pk": 35,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 24,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 24,
+ "reputed_at": "2011-11-28 15:09:12",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 36,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 24,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 25,
+ "reputed_at": "2011-11-28 15:09:12",
+ "reputation": 499
+ }
+ },
+ {
+ "pk": 37,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 25,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 25,
+ "reputed_at": "2011-11-28 15:09:13",
+ "reputation": 509
+ }
+ },
+ {
+ "pk": 38,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 26,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 26,
+ "reputed_at": "2011-11-28 15:09:13",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 39,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 26,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 27,
+ "reputed_at": "2011-11-28 15:09:13",
+ "reputation": 499
+ }
+ },
+ {
+ "pk": 40,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 27,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 27,
+ "reputed_at": "2011-11-28 15:09:13",
+ "reputation": 509
+ }
+ },
+ {
+ "pk": 41,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 28,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 28,
+ "reputed_at": "2011-11-28 15:09:13",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 42,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 28,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 29,
+ "reputed_at": "2011-11-28 15:09:13",
+ "reputation": 499
+ }
+ },
+ {
+ "pk": 43,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 29,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 29,
+ "reputed_at": "2011-11-28 15:09:13",
+ "reputation": 509
+ }
+ },
+ {
+ "pk": 44,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 30,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 30,
+ "reputed_at": "2011-11-28 15:09:13",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 45,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 30,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 31,
+ "reputed_at": "2011-11-28 15:09:13",
+ "reputation": 499
+ }
+ },
+ {
+ "pk": 46,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 31,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 31,
+ "reputed_at": "2011-11-28 15:09:13",
+ "reputation": 509
+ }
+ },
+ {
+ "pk": 47,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 32,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 32,
+ "reputed_at": "2011-11-28 15:09:13",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 48,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 32,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 33,
+ "reputed_at": "2011-11-28 15:09:13",
+ "reputation": 499
+ }
+ },
+ {
+ "pk": 49,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 33,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 33,
+ "reputed_at": "2011-11-28 15:09:14",
+ "reputation": 509
+ }
+ },
+ {
+ "pk": 50,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 34,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 34,
+ "reputed_at": "2011-11-28 15:09:14",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 51,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 34,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 35,
+ "reputed_at": "2011-11-28 15:09:14",
+ "reputation": 499
+ }
+ },
+ {
+ "pk": 52,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 35,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 35,
+ "reputed_at": "2011-11-28 15:09:14",
+ "reputation": 509
+ }
+ },
+ {
+ "pk": 53,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 36,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 36,
+ "reputed_at": "2011-11-28 15:09:14",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 54,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 36,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 37,
+ "reputed_at": "2011-11-28 15:09:14",
+ "reputation": 499
+ }
+ },
+ {
+ "pk": 55,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 37,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 37,
+ "reputed_at": "2011-11-28 15:09:14",
+ "reputation": 509
+ }
+ },
+ {
+ "pk": 56,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 38,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 38,
+ "reputed_at": "2011-11-28 15:09:14",
+ "reputation": 498
+ }
+ },
+ {
+ "pk": 57,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 38,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 39,
+ "reputed_at": "2011-11-28 15:09:14",
+ "reputation": 499
+ }
+ },
+ {
+ "pk": 58,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 39,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 39,
+ "reputed_at": "2011-11-28 15:09:14",
+ "reputation": 509
+ }
+ },
+ {
+ "pk": 59,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:15",
+ "reputation": 510
+ }
+ },
+ {
+ "pk": 60,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 1,
+ "reputed_at": "2011-11-28 15:09:15",
+ "reputation": 520
+ }
+ },
+ {
+ "pk": 61,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:15",
+ "reputation": 520
+ }
+ },
+ {
+ "pk": 62,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 2,
+ "reputed_at": "2011-11-28 15:09:15",
+ "reputation": 496
+ }
+ },
+ {
+ "pk": 63,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 3,
+ "reputed_at": "2011-11-28 15:09:15",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 64,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:15",
+ "reputation": 530
+ }
+ },
+ {
+ "pk": 65,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 3,
+ "reputed_at": "2011-11-28 15:09:15",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 66,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:15",
+ "reputation": 540
+ }
+ },
+ {
+ "pk": 67,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 4,
+ "reputed_at": "2011-11-28 15:09:15",
+ "reputation": 496
+ }
+ },
+ {
+ "pk": 68,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 5,
+ "reputed_at": "2011-11-28 15:09:15",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 69,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:16",
+ "reputation": 550
+ }
+ },
+ {
+ "pk": 70,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 5,
+ "reputed_at": "2011-11-28 15:09:16",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 71,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:16",
+ "reputation": 560
+ }
+ },
+ {
+ "pk": 72,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 6,
+ "reputed_at": "2011-11-28 15:09:16",
+ "reputation": 496
+ }
+ },
+ {
+ "pk": 73,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 7,
+ "reputed_at": "2011-11-28 15:09:16",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 74,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:16",
+ "reputation": 570
+ }
+ },
+ {
+ "pk": 75,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 7,
+ "reputed_at": "2011-11-28 15:09:16",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 76,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:17",
+ "reputation": 580
+ }
+ },
+ {
+ "pk": 77,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 8,
+ "reputed_at": "2011-11-28 15:09:17",
+ "reputation": 496
+ }
+ },
+ {
+ "pk": 78,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 9,
+ "reputed_at": "2011-11-28 15:09:17",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 79,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:17",
+ "reputation": 590
+ }
+ },
+ {
+ "pk": 80,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 9,
+ "reputed_at": "2011-11-28 15:09:17",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 81,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:17",
+ "reputation": 600
+ }
+ },
+ {
+ "pk": 82,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 10,
+ "reputed_at": "2011-11-28 15:09:17",
+ "reputation": 496
+ }
+ },
+ {
+ "pk": 83,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 11,
+ "reputed_at": "2011-11-28 15:09:17",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 84,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:18",
+ "reputation": 610
+ }
+ },
+ {
+ "pk": 85,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 11,
+ "reputed_at": "2011-11-28 15:09:18",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 86,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:18",
+ "reputation": 620
+ }
+ },
+ {
+ "pk": 87,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 12,
+ "reputed_at": "2011-11-28 15:09:18",
+ "reputation": 496
+ }
+ },
+ {
+ "pk": 88,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 13,
+ "reputed_at": "2011-11-28 15:09:18",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 89,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:18",
+ "reputation": 630
+ }
+ },
+ {
+ "pk": 90,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 13,
+ "reputed_at": "2011-11-28 15:09:18",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 91,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:19",
+ "reputation": 640
+ }
+ },
+ {
+ "pk": 92,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 14,
+ "reputed_at": "2011-11-28 15:09:19",
+ "reputation": 496
+ }
+ },
+ {
+ "pk": 93,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 15,
+ "reputed_at": "2011-11-28 15:09:19",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 94,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:19",
+ "reputation": 650
+ }
+ },
+ {
+ "pk": 95,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 15,
+ "reputed_at": "2011-11-28 15:09:19",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 96,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:20",
+ "reputation": 660
+ }
+ },
+ {
+ "pk": 97,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 16,
+ "reputed_at": "2011-11-28 15:09:20",
+ "reputation": 496
+ }
+ },
+ {
+ "pk": 98,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 17,
+ "reputed_at": "2011-11-28 15:09:20",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 99,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:20",
+ "reputation": 670
+ }
+ },
+ {
+ "pk": 100,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 17,
+ "reputed_at": "2011-11-28 15:09:20",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 101,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:21",
+ "reputation": 680
+ }
+ },
+ {
+ "pk": 102,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -2,
+ "reputation_type": -3,
+ "user": 18,
+ "reputed_at": "2011-11-28 15:09:21",
+ "reputation": 496
+ }
+ },
+ {
+ "pk": 103,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 0,
+ "question": 40,
+ "negative": -1,
+ "reputation_type": -5,
+ "user": 19,
+ "reputed_at": "2011-11-28 15:09:21",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 104,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:21",
+ "reputation": 690
+ }
+ },
+ {
+ "pk": 105,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 19,
+ "reputed_at": "2011-11-28 15:09:21",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 106,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:22",
+ "reputation": 700
+ }
+ },
+ {
+ "pk": 107,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:22",
+ "reputation": 508
+ }
+ },
+ {
+ "pk": 108,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:22",
+ "reputation": 518
+ }
+ },
+ {
+ "pk": 109,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:22",
+ "reputation": 528
+ }
+ },
+ {
+ "pk": 110,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:23",
+ "reputation": 538
+ }
+ },
+ {
+ "pk": 111,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:23",
+ "reputation": 548
+ }
+ },
+ {
+ "pk": 112,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:23",
+ "reputation": 558
+ }
+ },
+ {
+ "pk": 113,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:24",
+ "reputation": 568
+ }
+ },
+ {
+ "pk": 114,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:24",
+ "reputation": 578
+ }
+ },
+ {
+ "pk": 115,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:24",
+ "reputation": 588
+ }
+ },
+ {
+ "pk": 116,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:25",
+ "reputation": 598
+ }
+ },
+ {
+ "pk": 117,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:25",
+ "reputation": 608
+ }
+ },
+ {
+ "pk": 118,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:26",
+ "reputation": 618
+ }
+ },
+ {
+ "pk": 119,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:26",
+ "reputation": 628
+ }
+ },
+ {
+ "pk": 120,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:27",
+ "reputation": 638
+ }
+ },
+ {
+ "pk": 121,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:28",
+ "reputation": 648
+ }
+ },
+ {
+ "pk": 122,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:28",
+ "reputation": 658
+ }
+ },
+ {
+ "pk": 123,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:29",
+ "reputation": 668
+ }
+ },
+ {
+ "pk": 124,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:30",
+ "reputation": 678
+ }
+ },
+ {
+ "pk": 125,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:30",
+ "reputation": 688
+ }
+ },
+ {
+ "pk": 126,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 10,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 1,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:31",
+ "reputation": 698
+ }
+ },
+ {
+ "pk": 127,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 15,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 2,
+ "user": 20,
+ "reputed_at": "2011-11-28 15:09:33",
+ "reputation": 713
+ }
+ },
+ {
+ "pk": 128,
+ "model": "askbot.repute",
+ "fields": {
+ "comment": null,
+ "positive": 2,
+ "question": 40,
+ "negative": 0,
+ "reputation_type": 3,
+ "user": 40,
+ "reputed_at": "2011-11-28 15:09:33",
+ "reputation": 702
+ }
+ },
+ {
+ "pk": 1,
+ "model": "livesettings.setting",
+ "fields": {
+ "value": "2",
+ "group": "GENERAL_SKIN_SETTINGS",
+ "site": 1,
+ "key": "MEDIA_RESOURCE_REVISION"
+ }
+ },
+ {
+ "pk": 2,
+ "model": "livesettings.setting",
+ "fields": {
+ "value": "93fa4f4e926585223d63f85755ed39ad9f62c05b",
+ "group": "GENERAL_SKIN_SETTINGS",
+ "site": 1,
+ "key": "MEDIA_RESOURCE_REVISION_HASH"
+ }
+ }
+] \ No newline at end of file