diff --git a/AUTHORS.rst b/AUTHORS.rst index 1384232e0..b58fba292 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -84,4 +84,5 @@ Source Contributors - Josh Kim `@jsk56143 `_ - Rolf Campbell `@endlisnis `_ - zacc `@zacc `_ +- c0d3rman `@c0d3rman ` - Add "Name and github profile link" above this line. diff --git a/CHANGES.rst b/CHANGES.rst index 5082878db..c75bfe733 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -16,6 +16,8 @@ Unreleased templates. - :meth:`~.SubredditRedditorFlairTemplates.reorder` to reorder a subreddit's redditor flair templates. +- :func:`.stream_generator` now accepts the ``continue_after_id`` parameter, which + starts the stream after a given item ID. **Changed** diff --git a/praw/models/util.py b/praw/models/util.py index 76e68a752..498898d08 100644 --- a/praw/models/util.py +++ b/praw/models/util.py @@ -35,7 +35,12 @@ def permissions_string( @_deprecate_args( - "function", "pause_after", "skip_existing", "attribute_name", "exclude_before" + "function", + "pause_after", + "skip_existing", + "attribute_name", + "exclude_before", + "continue_after_id", ) def stream_generator( function: Callable, @@ -44,6 +49,7 @@ def stream_generator( exclude_before: bool = False, pause_after: int | None = None, skip_existing: bool = False, + continue_after_id: str | None = None, **function_kwargs: Any, ) -> Generator[Any, None, None]: """Yield new items from ``function`` as they become available. @@ -62,6 +68,9 @@ def stream_generator( :param skip_existing: When ``True``, this does not yield any results from the first request thereby skipping any items that existed in the stream prior to starting the stream (default: ``False``). + :param continue_after_id: The initial item ID value to use for ``before`` in + ``params``. The stream will continue from the item following this one (default: + ``None``). Additional keyword arguments will be passed to ``function``. @@ -122,7 +131,7 @@ def stream_generator( print(comment) """ - before_attribute = None + before_attribute = continue_after_id exponential_counter = ExponentialCounter(max_counter=16) seen_attributes = BoundedSet(301) without_before_counter = 0 diff --git a/tests/integration/cassettes/TestSubredditStreams.test_comments__with_continue_after_id.json b/tests/integration/cassettes/TestSubredditStreams.test_comments__with_continue_after_id.json new file mode 100644 index 000000000..1b9faf826 --- /dev/null +++ b/tests/integration/cassettes/TestSubredditStreams.test_comments__with_continue_after_id.json @@ -0,0 +1,334 @@ +{ + "http_interactions": [ + { + "recorded_at": "2023-10-08T19:41:15", + "request": { + "body": { + "encoding": "utf-8", + "string": "grant_type=client_credentials" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "identity" + ], + "Authorization": [ + "Basic " + ], + "Connection": [ + "close" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/x-www-form-urlencoded" + ], + "User-Agent": [ + "praw_py PRAW/7.7.2.dev0 prawcore/2.3.0" + ] + }, + "method": "POST", + "uri": "https://www.reddit.com/api/v1/access_token" + }, + "response": { + "body": { + "encoding": "UTF-8", + "string": "{\"access_token\": \"\", \"token_type\": \"bearer\", \"expires_in\": 86400, \"scope\": \"*\"}" + }, + "headers": { + "Accept-Ranges": [ + "bytes" + ], + "Cache-Control": [ + "private, max-age=3600" + ], + "Connection": [ + "close" + ], + "Content-Length": [ + "822" + ], + "Date": [ + "Sun, 08 Oct 2023 19:41:15 GMT" + ], + "NEL": [ + "{\"report_to\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": false, \"success_fraction\": 1.0, \"failure_fraction\": 1.0}" + ], + "Report-To": [ + "{\"group\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-nel.reddit.com/reports\" }]}, {\"group\": \"w3-reporting\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting.reddit.com/reports\" }]}, {\"group\": \"w3-reporting-csp\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-csp.reddit.com/reports\" }]}" + ], + "Server": [ + "snooserv" + ], + "Set-Cookie": [ + "edgebucket=adA9Sb0J9rm5mSt6Gm; Domain=reddit.com; Max-Age=63071999; Path=/; secure" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains" + ], + "Vary": [ + "accept-encoding" + ], + "Via": [ + "1.1 varnish" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-XSS-Protection": [ + "1; mode=block" + ], + "content-type": [ + "application/json; charset=UTF-8" + ], + "x-moose": [ + "majestic" + ], + "x-reddit-loid": [ + "000000000ld2392h56.2.1696794075597.Z0FBQUFBQmxJd1hibGpqdC11MG94ZFlUUUduTkRTTTNDRkVSTVRiZ3U2Nk9DSW5SYU55c0luVjlCMTJWZUEtd09vWF9hR1FwVmZZN29zWWpFQ3QwMk01NW9uNHFOcWxwWWU5UldKSTI4NDJSdUNSTVhrMnJJYUs1V0lVdFVXS2h2Tk9kZjItYndhNDI" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.reddit.com/api/v1/access_token" + } + }, + { + "recorded_at": "2023-10-08T19:41:17", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "identity" + ], + "Authorization": [ + "bearer " + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "edgebucket=adA9Sb0J9rm5mSt6Gm" + ], + "User-Agent": [ + "praw_py PRAW/7.7.2.dev0 prawcore/2.3.0" + ] + }, + "method": "GET", + "uri": "https://oauth.reddit.com/r//comments/?limit=100&raw_json=1" + }, + "response": { + "body": { + "encoding": "UTF-8", + "string": "{\"kind\": \"Listing\", \"data\": {\"after\": \"t1_k3uzsxu\", \"dist\": 100, \"modhash\": \"\", \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kmiller0112\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3yrfii\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Acceptable-Bread-566\", \"num_comments\": 6707, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u4rtt\", \"score\": 1, \"author_fullname\": \"t2_puq6r71y\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"Did it work?\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDid it work?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_agi5zf\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/agi5zf//k3yrfii/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/agi5zf//\", \"name\": \"t1_k3yrfii\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696754768.0, \"created_utc\": 1696754768.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/agi5zf//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"bot \", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Innsmouth_Swim_Team\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3ynwqb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Innsmouth_Swim_Team\", \"num_comments\": 2, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3ynm7c\", \"score\": 1, \"author_fullname\": \"t2_v07goqfq\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"Hey u/VettedBot what can you tell me about https://www.amazon.com/AT-Prepaid-Radiant-Max-Smartphone/dp/B098KJWTXL\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey \\u003Ca href=\\\"/u/VettedBot\\\"\\u003Eu/VettedBot\\u003C/a\\u003E what can you tell me about \\u003Ca href=\\\"https://www.amazon.com/AT-Prepaid-Radiant-Max-Smartphone/dp/B098KJWTXL\\\"\\u003Ehttps://www.amazon.com/AT-Prepaid-Radiant-Max-Smartphone/dp/B098KJWTXL\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172thsp\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172thsp/bot_/k3ynwqb/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172thsp/bot_/\", \"name\": \"t1_k3ynwqb\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696752011.0, \"created_utc\": 1696752011.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/172thsp/bot_/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"bot \", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Innsmouth_Swim_Team\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3ynm7c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Innsmouth_Swim_Team\", \"num_comments\": 2, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_172thsp\", \"score\": 1, \"author_fullname\": \"t2_v07goqfq\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"Hey u/VettedBot what can you tell me about the Cricket Dream 5G phone?\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey \\u003Ca href=\\\"/u/VettedBot\\\"\\u003Eu/VettedBot\\u003C/a\\u003E what can you tell me about the Cricket Dream 5G phone?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172thsp\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172thsp/bot_/k3ynm7c/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172thsp/bot_/\", \"name\": \"t1_k3ynm7c\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696751778.0, \"created_utc\": 1696751778.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/172thsp/bot_/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"reddit_login_or\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3yiw5z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"reddit_login_or\", \"num_comments\": 2, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_16utwk7\", \"score\": 1, \"author_fullname\": \"t2_g2m5t\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"DaintyWilder | Riley Reid - First \\ud83e\\udd47 Threesome \\u0026 Cum Swap \\ud83d\\ude08\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDaintyWilder | Riley Reid - First \\ud83e\\udd47 Threesome \\u0026amp; Cum Swap \\ud83d\\ude08\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_16utwk7\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/16utwk7//k3yiw5z/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/16utwk7//\", \"name\": \"t1_k3yiw5z\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696748136.0, \"created_utc\": 1696748136.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/16utwk7//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Adderalin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3yczsn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"msmouseus\", \"num_comments\": 1, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_nibsv2\", \"score\": 1, \"author_fullname\": \"t2_re60e\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"\\u003E Trading Long Term Capital Gains/Qualified Dividends for Ordinary Income - OUCH!\\n\\nThis is not true -- the biggest issue in this write up. But thank you for trying to put it together!\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ETrading Long Term Capital Gains/Qualified Dividends for Ordinary Income - OUCH!\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis is not true -- the biggest issue in this write up. But thank you for trying to put it together!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_nibsv2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/nibsv2//k3yczsn/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/nibsv2//\", \"name\": \"t1_k3yczsn\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696743989.0, \"created_utc\": 1696743989.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/nibsv2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"GrabWorking3045\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3wt835\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"GrabWorking3045\", \"num_comments\": 3, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_172idw2\", \"score\": 1, \"author_fullname\": \"t2_dfophtbj\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"aaa\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eaaa\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172idw2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172idw2//k3wt835/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172idw2//\", \"name\": \"t1_k3wt835\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696716611.0, \"created_utc\": 1696716611.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/172idw2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"GrabWorking3045\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3wt70j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"GrabWorking3045\", \"num_comments\": 3, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_172idw2\", \"score\": 1, \"author_fullname\": \"t2_dfophtbj\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"fds\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efds\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172idw2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172idw2//k3wt70j/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172idw2//\", \"name\": \"t1_k3wt70j\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696716599.0, \"created_utc\": 1696716599.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/172idw2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"GrabWorking3045\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3wt6bi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"GrabWorking3045\", \"num_comments\": 3, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_172idw2\", \"score\": 1, \"author_fullname\": \"t2_dfophtbj\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"sdf\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Esdf\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172idw2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172idw2//k3wt6bi/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172idw2//\", \"name\": \"t1_k3wt6bi\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696716591.0, \"created_utc\": 1696716591.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/172idw2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"goodreads-rebot\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3woe15\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"goodreads-rebot\", \"num_comments\": 46, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k1wdnaw\", \"score\": 1, \"author_fullname\": \"t2_8567bsfgr\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"**[The Fifth Season (The Broken Earth #1)](https://www.goodreads.com/book/show/19161852-the-fifth-season) by N.K. Jemisin** ^(\\u0026#40;Matching 100% \\u2611\\ufe0f\\u0026#41;)\\n\\n^(468 pages | Published: 2015 | Suggested 528 times)\\n\\n\\n\\u003E **Summary:** This is the way the world ends. Again. Three terrible things happen in a single day. Essun. a woman living an ordinary life in a small town. comes home to find that her husband has brutally murdered their son and kidnapped their daughter. Meanwhile. mighty Sanze -- the world-spanning empire whose innovations have been civilization's bedrock for a thousand years -- collapses as most of its citizens are murdered to serve a madman's vengeance. And worst of all. across the heart (...)\\n\\n\\u003E **Themes**: Fantasy, Fiction, Science-fiction, Sci-fi, Owned\\n\\n\\u003E **Top 2 recommended-along**: [The Broken Earth Trilogy: The Fifth Season / The Obelisk Gate / The Stone Sky](https://www.goodreads.com/book/show/38496769-the-broken-earth-trilogy) by N.K. Jemisin, [The Ninth Rain (The Winnowing Flame Trilogy, #1)](https://www.goodreads.com/book/show/29758013-the-ninth-rain) by Jen Williams\\n\\n^( [Provide Feedback](https://www.reddit.com/user/goodreads-rebot) | [Source Code](https://github.com/sonoff2/goodreads-rebot) | [\\\"The Bot is Back!?\\\"](https://www.reddit.com/r/suggestmeabook/comments/16qe09p/meta_post_hello_again_humans/))\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"https://www.goodreads.com/book/show/19161852-the-fifth-season\\\"\\u003EThe Fifth Season (The Broken Earth #1)\\u003C/a\\u003E by N.K. Jemisin\\u003C/strong\\u003E \\u003Csup\\u003E\\u0026#40;Matching 100% \\u2611\\ufe0f\\u0026#41;\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E468 pages | Published: 2015 | Suggested 528 times\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESummary:\\u003C/strong\\u003E This is the way the world ends. Again. Three terrible things happen in a single day. Essun. a woman living an ordinary life in a small town. comes home to find that her husband has brutally murdered their son and kidnapped their daughter. Meanwhile. mighty Sanze -- the world-spanning empire whose innovations have been civilization\\u0026#39;s bedrock for a thousand years -- collapses as most of its citizens are murdered to serve a madman\\u0026#39;s vengeance. And worst of all. across the heart (...)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThemes\\u003C/strong\\u003E: Fantasy, Fiction, Science-fiction, Sci-fi, Owned\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETop 2 recommended-along\\u003C/strong\\u003E: \\u003Ca href=\\\"https://www.goodreads.com/book/show/38496769-the-broken-earth-trilogy\\\"\\u003EThe Broken Earth Trilogy: The Fifth Season / The Obelisk Gate / The Stone Sky\\u003C/a\\u003E by N.K. Jemisin, \\u003Ca href=\\\"https://www.goodreads.com/book/show/29758013-the-ninth-rain\\\"\\u003EThe Ninth Rain (The Winnowing Flame Trilogy, #1)\\u003C/a\\u003E by Jen Williams\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E [Provide Feedback](\\u003Ca href=\\\"https://www.reddit.com/user/goodreads-rebot\\\"\\u003Ehttps://www.reddit.com/user/goodreads-rebot\\u003C/a\\u003E\\u003C/sup\\u003E | \\u003Ca href=\\\"https://github.com/sonoff2/goodreads-rebot\\\"\\u003ESource Code\\u003C/a\\u003E | \\u003Ca href=\\\"https://www.reddit.com/r/suggestmeabook/comments/16qe09p/meta_post_hello_again_humans/\\\"\\u003E\\u0026quot;The Bot is Back!?\\u0026quot;\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_167kmqr\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/167kmqr//k3woe15/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/167kmqr//\", \"name\": \"t1_k3woe15\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696714574.0, \"created_utc\": 1696714574.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/167kmqr//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"goodreads-rebot\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3wo7i3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"goodreads-rebot\", \"num_comments\": 46, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k1wdss5\", \"score\": 1, \"author_fullname\": \"t2_8567bsfgr\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"\\\\#1/3: **[Harry Potter and the Sorcerer's Stone (Harry Potter #1)](https://www.goodreads.com/book/show/3.Harry_Potter_and_the_Sorcerer_s_Stone) by J.K. Rowling** ^(\\u0026#40;Matching 100% \\u2611\\ufe0f\\u0026#41;)\\n\\n^(309 pages | Published: 1997 | Suggested 14 times)\\n\\n\\n\\u003E **Summary:** Harry Potter's life is miserable. His parents are dead and he's stuck with his heartless relatives. who force him to live in a tiny closet under the stairs. But his fortune changes when he receives a letter that tells him the truth about himself: he's a wizard. A mysterious visitor rescues him from his relatives and takes him to his new home. Hogwarts School of Witchcraft and Wizardry. After a lifetime of bottling up his magical powers. Harry finally feels like a normal kid. (...)\\n\\n\\u003E **Themes**: Fantasy, Fiction, Young-adult, Harry-potter, Books-i-own\\n\\n\\u003E **Top 2 recommended-along**: [The Casual Vacancy - Perebutan Kursi Kosong](https://www.goodreads.com/book/show/16173852-the-casual-vacancy---perebutan-kursi-kosong) by J.K. Rowling, [The Hunger Games Series](https://www.goodreads.com/book/show/2767052-the-hunger-games) by Suzanne Collins\\n---\\n\\\\#2/3: **[Call Me By Your Name (Call Me By Your Name #1)](https://www.goodreads.com/book/show/36336078-call-me-by-your-name) by Andr\\u00e9 Aciman** ^(\\u0026#40;Matching 100% \\u2611\\ufe0f\\u0026#41;)\\n\\n^(248 pages | Published: 2007 | Suggested 77 times)\\n\\n\\n\\u003E **Summary:** Call Me by Your Name is the story of a sudden and powerful romance that blossoms between an adolescent boy and a summer guest at his parents' cliff-side mansion on the Italian Riviera. Unprepared for the consequences of their attraction. at first each feigns indifference. But during the restless summer weeks that follow. unrelenting buried currents of obsession and fear. fascination and desire. intensify their passion as they the charged ground between them. What grows (...)\\n\\n\\u003E **Themes**: Fiction, Romance, Lgbt, Lgbtq, Contemporary\\n\\n\\u003E **Top 2 recommended-along**: [The Wings of the Dove](https://www.goodreads.com/book/show/124272.The_Wings_of_the_Dove) by Henry James, [Find Me (Call Me By Your Name, #2)](https://www.goodreads.com/book/show/44581535-find-me) by Andr\\u00e9 Aciman\\n---\\n\\n\\\\#3/3: **Search Failed** ^(\\u0026#40;Found [Dead I Well May Be (Michael Forsythe #1)](https://www.goodreads.com/book/show/21282.Dead_I_Well_May_Be) with bad matching score of 56% \\u26a0\\ufe0f\\u0026#41;)\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E#1/3: \\u003Cstrong\\u003E\\u003Ca href=\\\"https://www.goodreads.com/book/show/3.Harry_Potter_and_the_Sorcerer_s_Stone\\\"\\u003EHarry Potter and the Sorcerer\\u0026#39;s Stone (Harry Potter #1)\\u003C/a\\u003E by J.K. Rowling\\u003C/strong\\u003E \\u003Csup\\u003E\\u0026#40;Matching 100% \\u2611\\ufe0f\\u0026#41;\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E309 pages | Published: 1997 | Suggested 14 times\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESummary:\\u003C/strong\\u003E Harry Potter\\u0026#39;s life is miserable. His parents are dead and he\\u0026#39;s stuck with his heartless relatives. who force him to live in a tiny closet under the stairs. But his fortune changes when he receives a letter that tells him the truth about himself: he\\u0026#39;s a wizard. A mysterious visitor rescues him from his relatives and takes him to his new home. Hogwarts School of Witchcraft and Wizardry. After a lifetime of bottling up his magical powers. Harry finally feels like a normal kid. (...)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThemes\\u003C/strong\\u003E: Fantasy, Fiction, Young-adult, Harry-potter, Books-i-own\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003E\\u003Cstrong\\u003ETop 2 recommended-along\\u003C/strong\\u003E: \\u003Ca href=\\\"https://www.goodreads.com/book/show/16173852-the-casual-vacancy---perebutan-kursi-kosong\\\"\\u003EThe Casual Vacancy - Perebutan Kursi Kosong\\u003C/a\\u003E by J.K. Rowling, \\u003Ca href=\\\"https://www.goodreads.com/book/show/2767052-the-hunger-games\\\"\\u003EThe Hunger Games Series\\u003C/a\\u003E by Suzanne Collins\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E#2/3: \\u003Cstrong\\u003E\\u003Ca href=\\\"https://www.goodreads.com/book/show/36336078-call-me-by-your-name\\\"\\u003ECall Me By Your Name (Call Me By Your Name #1)\\u003C/a\\u003E by Andr\\u00e9 Aciman\\u003C/strong\\u003E \\u003Csup\\u003E\\u0026#40;Matching 100% \\u2611\\ufe0f\\u0026#41;\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E248 pages | Published: 2007 | Suggested 77 times\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESummary:\\u003C/strong\\u003E Call Me by Your Name is the story of a sudden and powerful romance that blossoms between an adolescent boy and a summer guest at his parents\\u0026#39; cliff-side mansion on the Italian Riviera. Unprepared for the consequences of their attraction. at first each feigns indifference. But during the restless summer weeks that follow. unrelenting buried currents of obsession and fear. fascination and desire. intensify their passion as they the charged ground between them. What grows (...)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThemes\\u003C/strong\\u003E: Fiction, Romance, Lgbt, Lgbtq, Contemporary\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003E\\u003Cstrong\\u003ETop 2 recommended-along\\u003C/strong\\u003E: \\u003Ca href=\\\"https://www.goodreads.com/book/show/124272.The_Wings_of_the_Dove\\\"\\u003EThe Wings of the Dove\\u003C/a\\u003E by Henry James, \\u003Ca href=\\\"https://www.goodreads.com/book/show/44581535-find-me\\\"\\u003EFind Me (Call Me By Your Name, #2)\\u003C/a\\u003E by Andr\\u00e9 Aciman\\u003C/h2\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E#3/3: \\u003Cstrong\\u003ESearch Failed\\u003C/strong\\u003E \\u003Csup\\u003E\\u0026#40;Found [Dead I Well May Be (Michael Forsythe #1\\u003C/sup\\u003E](\\u003Ca href=\\\"https://www.goodreads.com/book/show/21282.Dead_I_Well_May_Be\\\"\\u003Ehttps://www.goodreads.com/book/show/21282.Dead_I_Well_May_Be\\u003C/a\\u003E) with bad matching score of 56% \\u26a0\\ufe0f\\u0026#41;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_167kmqr\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/167kmqr//k3wo7i3/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/167kmqr//\", \"name\": \"t1_k3wo7i3\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696714502.0, \"created_utc\": 1696714502.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/167kmqr//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"dog\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"KAWIKAIGG\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3vkje6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheOfficialNizmo\", \"num_comments\": 21, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6t2t\", \"score\": 1, \"author_fullname\": \"t2_ag83595j\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from dog\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from dog\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1715byt\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1715byt/dog/k3vkje6/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1715byt/dog/\", \"name\": \"t1_k3vkje6\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696699134.0, \"created_utc\": 1696699134.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1715byt/dog/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 3\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3vkfei\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheOfficialNizmo\", \"num_comments\": 1, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_1728muz\", \"score\": 1, \"author_fullname\": \"t2_ag83595j\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"wibows vysta\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewibows vysta\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728muz\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728muz/great_view_3/k3vkfei/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728muz/great_view_3/\", \"name\": \"t1_k3vkfei\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696699092.0, \"created_utc\": 1696699092.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/ultpieooqssb1.png\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3valhe\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheOfficialNizmo\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6t33\", \"score\": 1, \"author_fullname\": \"t2_ag83595j\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from animal\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from animal\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3valhe/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3valhe\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696695348.0, \"created_utc\": 1696695348.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3vaid3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheOfficialNizmo\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3vah5g\", \"score\": 1, \"author_fullname\": \"t2_ag83595j\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"i\\n\\n j k l m n o p\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ei\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E j k l m n o p\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3vaid3/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3vaid3\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696695314.0, \"created_utc\": 1696695314.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3vah5g\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheOfficialNizmo\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3vagmb\", \"score\": 1, \"author_fullname\": \"t2_ag83595j\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"h\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eh\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3vah5g/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3vah5g\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696695301.0, \"created_utc\": 1696695301.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3vagmb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheOfficialNizmo\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3vagap\", \"score\": 1, \"author_fullname\": \"t2_ag83595j\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"g\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eg\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3vagmb/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3vagmb\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696695296.0, \"created_utc\": 1696695296.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3vagap\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheOfficialNizmo\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3vafvo\", \"score\": 1, \"author_fullname\": \"t2_ag83595j\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"f\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ef\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3vagap/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3vagap\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696695292.0, \"created_utc\": 1696695292.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3vafvo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheOfficialNizmo\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_171j9nc\", \"score\": 1, \"author_fullname\": \"t2_ag83595j\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"e\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ee\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3vafvo/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3vafvo\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696695288.0, \"created_utc\": 1696695288.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3vaecm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheOfficialNizmo\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6t3b\", \"score\": 1, \"author_fullname\": \"t2_ag83595j\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"icle\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eicle\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3vaecm/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3vaecm\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696695271.0, \"created_utc\": 1696695271.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"hello world\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Decent_Work_4713\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t58\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 11, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nno\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1722q9f\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1722q9f/hello_world/k3v6t58/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\", \"name\": \"t1_k3v6t58\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t52\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nnt\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728sjk\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728sjk/great_view_4/k3v6t52/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728sjk/great_view_4/\", \"name\": \"t1_k3v6t52\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/w6v0b74xrssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\\u0026shy;\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"DreamyDude2004_2\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t51\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 28, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6no4\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171z72e\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171z72e/shy/k3v6t51/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171z72e/shy/\", \"name\": \"t1_k3v6t51\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171z72e/shy/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"my demo title\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Decent_Work_4713\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t4n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 3, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nnh\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728mzr\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728mzr/my_demo_title/k3v6t4n/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728mzr/my_demo_title/\", \"name\": \"t1_k3v6t4n\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1728mzr/my_demo_title/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"dog\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"KAWIKAIGG\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t4k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 21, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6no7\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1715byt\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1715byt/dog/k3v6t4k/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1715byt/dog/\", \"name\": \"t1_k3v6t4k\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1715byt/dog/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"dmilin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 22, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nof\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170ser2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170ser2//k3v6t3o/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170ser2//\", \"name\": \"t1_k3v6t3o\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170ser2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Just wanna see if this works or not\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"The_Dummy_Or_Someth_\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 8, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nnv\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170gsey\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170gsey/just_wanna_see_if_this_works_or_not/k3v6t3u/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170gsey/just_wanna_see_if_this_works_or_not/\", \"name\": \"t1_k3v6t3u\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170gsey/just_wanna_see_if_this_works_or_not/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"ing gramamr bot\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Grammar-Bot-Elite\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 916, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6no6\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_k2ls9j\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/k2ls9j/ing_gramamr_bot/k3v6t3x/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/k2ls9j/ing_gramamr_bot/\", \"name\": \"t1_k3v6t3x\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/k2ls9j/ing_gramamr_bot/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nnq\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728sjk\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728sjk/great_view_4/k3v6t3p/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728sjk/great_view_4/\", \"name\": \"t1_k3v6t3p\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/w6v0b74xrssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\\u0026shy;\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"DreamyDude2004_2\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 28, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6no3\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171z72e\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171z72e/shy/k3v6t3l/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171z72e/shy/\", \"name\": \"t1_k3v6t3l\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171z72e/shy/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nns\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728cmo\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728cmo/great_view_4/k3v6t3m/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728cmo/great_view_4/\", \"name\": \"t1_k3v6t3m\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/i9zxl9ziossb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Testing -\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"[deleted]\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nnx\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_16w0sk9\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/16w0sk9/ing/k3v6t3k/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/16w0sk9/ing/\", \"name\": \"t1_k3v6t3k\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/16w0sk9/ing/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"[deleted]\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 109, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nnw\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_16zqa3j\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/16zqa3j//k3v6t3j/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/16zqa3j//\", \"name\": \"t1_k3v6t3j\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/16zqa3j//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"dmilin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 22, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6no5\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170ser2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170ser2//k3v6t3i/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170ser2//\", \"name\": \"t1_k3v6t3i\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170ser2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kmiller0112\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3g\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 6707, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nny\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_agi5zf\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/agi5zf//k3v6t3g/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/agi5zf//\", \"name\": \"t1_k3v6t3g\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/agi5zf//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"hello world\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Decent_Work_4713\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 11, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nod\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1722q9f\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1722q9f/hello_world/k3v6t3e/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\", \"name\": \"t1_k3v6t3e\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"dmilin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 22, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6noc\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170ser2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170ser2//k3v6t3c/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170ser2//\", \"name\": \"t1_k3v6t3c\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170ser2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6no0\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3v6t3b/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3v6t3b\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 31101\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t38\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nnz\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172842m\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172842m/great_view_31101/k3v6t38/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172842m/great_view_31101/\", \"name\": \"t1_k3v6t38\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/1r3cizwomssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 31101\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t37\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nps\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172842m\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172842m/great_view_31101/k3v6t37/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172842m/great_view_31101/\", \"name\": \"t1_k3v6t37\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/1r3cizwomssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\\u0026shy;\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"DreamyDude2004_2\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t36\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 28, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6no8\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171z72e\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171z72e/shy/k3v6t36/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171z72e/shy/\", \"name\": \"t1_k3v6t36\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171z72e/shy/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"I am the BearWhale: UASF Now!\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"the_bearwhale\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t34\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 8, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6noy\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_6d2os3\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/6d2os3/i_am_the_bearwhale_uasf_now/k3v6t34/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/6d2os3/i_am_the_bearwhale_uasf_now/\", \"name\": \"t1_k3v6t34\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/6d2os3/i_am_the_bearwhale_uasf_now/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Go\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"23moonpee\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t32\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 17, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nol\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170k39s\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170k39s/go/k3v6t32/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170k39s/go/\", \"name\": \"t1_k3v6t32\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170k39s/go/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t33\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nqk\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3v6t33/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3v6t33\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"dog\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"KAWIKAIGG\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t2t\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 21, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6npu\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1715byt\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1715byt/dog/k3v6t2t/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1715byt/dog/\", \"name\": \"t1_k3v6t2t\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693896.0, \"created_utc\": 1696693896.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1715byt/dog/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nqk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jpn\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3v6nqk/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3v6nqk\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"dog\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"KAWIKAIGG\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6npu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 21, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jp9\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1715byt\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1715byt/dog/k3v6npu/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1715byt/dog/\", \"name\": \"t1_k3v6npu\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1715byt/dog/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 31101\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nps\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jpa\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172842m\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172842m/great_view_31101/k3v6nps/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172842m/great_view_31101/\", \"name\": \"t1_k3v6nps\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/1r3cizwomssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"I am the BearWhale: UASF Now!\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"the_bearwhale\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6noy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 8, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jrw\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_6d2os3\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/6d2os3/i_am_the_bearwhale_uasf_now/k3v6noy/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/6d2os3/i_am_the_bearwhale_uasf_now/\", \"name\": \"t1_k3v6noy\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/6d2os3/i_am_the_bearwhale_uasf_now/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Go\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"23moonpee\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nol\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 17, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jp7\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170k39s\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170k39s/go/k3v6nol/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170k39s/go/\", \"name\": \"t1_k3v6nol\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170k39s/go/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"hello world\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Decent_Work_4713\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nod\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 11, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jp8\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1722q9f\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1722q9f/hello_world/k3v6nod/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\", \"name\": \"t1_k3v6nod\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"dmilin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6noc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 22, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jpb\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170ser2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170ser2//k3v6noc/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170ser2//\", \"name\": \"t1_k3v6noc\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170ser2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"dog\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"KAWIKAIGG\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6no7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 21, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jpk\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1715byt\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1715byt/dog/k3v6no7/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1715byt/dog/\", \"name\": \"t1_k3v6no7\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1715byt/dog/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"ing gramamr bot\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Grammar-Bot-Elite\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6no6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 916, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jpi\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_k2ls9j\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/k2ls9j/ing_gramamr_bot/k3v6no6/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/k2ls9j/ing_gramamr_bot/\", \"name\": \"t1_k3v6no6\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/k2ls9j/ing_gramamr_bot/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\\u0026shy;\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"DreamyDude2004_2\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6no8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 28, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jpd\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171z72e\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171z72e/shy/k3v6no8/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171z72e/shy/\", \"name\": \"t1_k3v6no8\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171z72e/shy/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\\u0026shy;\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"DreamyDude2004_2\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6no4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 28, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jpc\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171z72e\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171z72e/shy/k3v6no4/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171z72e/shy/\", \"name\": \"t1_k3v6no4\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171z72e/shy/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\\u0026shy;\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"DreamyDude2004_2\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6no3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 28, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jpg\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171z72e\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171z72e/shy/k3v6no3/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171z72e/shy/\", \"name\": \"t1_k3v6no3\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171z72e/shy/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 31101\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nnz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jrh\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172842m\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172842m/great_view_31101/k3v6nnz/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172842m/great_view_31101/\", \"name\": \"t1_k3v6nnz\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/1r3cizwomssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"dmilin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nof\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 22, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jqy\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170ser2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170ser2//k3v6nof/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170ser2//\", \"name\": \"t1_k3v6nof\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170ser2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Testing -\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"[deleted]\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nnx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jr0\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_16w0sk9\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/16w0sk9/ing/k3v6nnx/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/16w0sk9/ing/\", \"name\": \"t1_k3v6nnx\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/16w0sk9/ing/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6no0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jph\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3v6no0/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3v6no0\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"dmilin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6no5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 22, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jpm\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170ser2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170ser2//k3v6no5/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170ser2//\", \"name\": \"t1_k3v6no5\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170ser2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"[deleted]\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nnw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 109, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jqd\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_16zqa3j\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/16zqa3j//k3v6nnw/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/16zqa3j//\", \"name\": \"t1_k3v6nnw\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/16zqa3j//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Just wanna see if this works or not\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"The_Dummy_Or_Someth_\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nnv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 8, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jqj\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170gsey\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170gsey/just_wanna_see_if_this_works_or_not/k3v6nnv/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170gsey/just_wanna_see_if_this_works_or_not/\", \"name\": \"t1_k3v6nnv\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170gsey/just_wanna_see_if_this_works_or_not/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nns\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jt6\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728cmo\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728cmo/great_view_4/k3v6nns/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728cmo/great_view_4/\", \"name\": \"t1_k3v6nns\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/i9zxl9ziossb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nnt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v2p63\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728sjk\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728sjk/great_view_4/k3v6nnt/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728sjk/great_view_4/\", \"name\": \"t1_k3v6nnt\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/w6v0b74xrssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kmiller0112\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nny\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 6707, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jvp\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_agi5zf\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/agi5zf//k3v6nny/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/agi5zf//\", \"name\": \"t1_k3v6nny\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/agi5zf//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nnq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v2nsw\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728sjk\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728sjk/great_view_4/k3v6nnq/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728sjk/great_view_4/\", \"name\": \"t1_k3v6nnq\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/w6v0b74xrssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"hello world\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Decent_Work_4713\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nno\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 11, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jru\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1722q9f\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1722q9f/hello_world/k3v6nno/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\", \"name\": \"t1_k3v6nno\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"my demo title\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Decent_Work_4713\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nnh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 3, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v1hp9\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728mzr\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728mzr/my_demo_title/k3v6nnh/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728mzr/my_demo_title/\", \"name\": \"t1_k3v6nnh\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1728mzr/my_demo_title/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v2p63\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"beyondhook67\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_1728sjk\", \"score\": 1, \"author_fullname\": \"t2_j3cwy3zgs\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"Wallpapering! Thanks!\\n\\nWould also be willing to buy a dynamic one if you get it working for all times of day like the original Mojave image.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWallpapering! Thanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWould also be willing to buy a dynamic one if you get it working for all times of day like the original Mojave image.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728sjk\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728sjk/great_view_4/k3v2p63/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728sjk/great_view_4/\", \"name\": \"t1_k3v2p63\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696692298.0, \"created_utc\": 1696692298.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/w6v0b74xrssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v2nsw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"expandedTethys27\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_1728sjk\", \"score\": 1, \"author_fullname\": \"t2_hpme5s9jg\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"Mac at night you mean?\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMac at night you mean?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728sjk\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728sjk/great_view_4/k3v2nsw/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728sjk/great_view_4/\", \"name\": \"t1_k3v2nsw\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696692283.0, \"created_utc\": 1696692283.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/w6v0b74xrssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"my demo title\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Decent_Work_4713\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v1hp9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 3, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_1728mzr\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"hi\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehi\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728mzr\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728mzr/my_demo_title/k3v1hp9/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728mzr/my_demo_title/\", \"name\": \"t1_k3v1hp9\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691815.0, \"created_utc\": 1696691815.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1728mzr/my_demo_title/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kmiller0112\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jvp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 6707, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5o\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_agi5zf\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/agi5zf//k3v0jvp/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/agi5zf//\", \"name\": \"t1_k3v0jvp\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691433.0, \"created_utc\": 1696691433.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/agi5zf//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jt6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3uzsxu\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728cmo\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728cmo/great_view_4/k3v0jt6/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728cmo/great_view_4/\", \"name\": \"t1_k3v0jt6\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691433.0, \"created_utc\": 1696691433.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/i9zxl9ziossb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"hello world\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Decent_Work_4713\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jru\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 11, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5f\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1722q9f\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1722q9f/hello_world/k3v0jru/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\", \"name\": \"t1_k3v0jru\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"I am the BearWhale: UASF Now!\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"the_bearwhale\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jrw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 8, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5y\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_6d2os3\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/6d2os3/i_am_the_bearwhale_uasf_now/k3v0jrw/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/6d2os3/i_am_the_bearwhale_uasf_now/\", \"name\": \"t1_k3v0jrw\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/6d2os3/i_am_the_bearwhale_uasf_now/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 31101\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jrh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3uyc1f\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172842m\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172842m/great_view_31101/k3v0jrh/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172842m/great_view_31101/\", \"name\": \"t1_k3v0jrh\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/1r3cizwomssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Testing -\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"[deleted]\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jr0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5m\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_16w0sk9\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/16w0sk9/ing/k3v0jr0/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/16w0sk9/ing/\", \"name\": \"t1_k3v0jr0\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/16w0sk9/ing/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"dmilin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jqy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 22, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3uws7k\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170ser2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170ser2//k3v0jqy/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170ser2//\", \"name\": \"t1_k3v0jqy\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170ser2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Just wanna see if this works or not\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"The_Dummy_Or_Someth_\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jqj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 8, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5l\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170gsey\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170gsey/just_wanna_see_if_this_works_or_not/k3v0jqj/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170gsey/just_wanna_see_if_this_works_or_not/\", \"name\": \"t1_k3v0jqj\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170gsey/just_wanna_see_if_this_works_or_not/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"[deleted]\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jqd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 109, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5n\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_16zqa3j\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/16zqa3j//k3v0jqd/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/16zqa3j//\", \"name\": \"t1_k3v0jqd\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/16zqa3j//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"dog\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"KAWIKAIGG\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jpk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 21, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5h\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1715byt\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1715byt/dog/k3v0jpk/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1715byt/dog/\", \"name\": \"t1_k3v0jpk\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1715byt/dog/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jpn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5w\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3v0jpn/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3v0jpn\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"ing gramamr bot\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Grammar-Bot-Elite\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jpi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 916, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5s\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_k2ls9j\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/k2ls9j/ing_gramamr_bot/k3v0jpi/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/k2ls9j/ing_gramamr_bot/\", \"name\": \"t1_k3v0jpi\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/k2ls9j/ing_gramamr_bot/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jph\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3ud9bs\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3v0jph/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3v0jph\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"dmilin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jpm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 22, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5j\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170ser2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170ser2//k3v0jpm/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170ser2//\", \"name\": \"t1_k3v0jpm\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170ser2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\\u0026shy;\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"DreamyDude2004_2\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jpc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 28, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5x\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171z72e\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171z72e/shy/k3v0jpc/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171z72e/shy/\", \"name\": \"t1_k3v0jpc\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171z72e/shy/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\\u0026shy;\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"DreamyDude2004_2\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jpg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 28, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p60\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171z72e\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171z72e/shy/k3v0jpg/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171z72e/shy/\", \"name\": \"t1_k3v0jpg\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171z72e/shy/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"hello world\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Decent_Work_4713\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jp8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 11, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7san\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1722q9f\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1722q9f/hello_world/k3v0jp8/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\", \"name\": \"t1_k3v0jp8\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"dmilin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jpb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 22, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3uwqvi\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170ser2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170ser2//k3v0jpb/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170ser2//\", \"name\": \"t1_k3v0jpb\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170ser2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"dog\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"KAWIKAIGG\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jp9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 21, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5i\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1715byt\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1715byt/dog/k3v0jp9/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1715byt/dog/\", \"name\": \"t1_k3v0jp9\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1715byt/dog/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\\u0026shy;\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"DreamyDude2004_2\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jpd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 28, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5z\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171z72e\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171z72e/shy/k3v0jpd/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171z72e/shy/\", \"name\": \"t1_k3v0jpd\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171z72e/shy/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 31101\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jpa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3uzy54\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172842m\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172842m/great_view_31101/k3v0jpa/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172842m/great_view_31101/\", \"name\": \"t1_k3v0jpa\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/1r3cizwomssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Go\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"23moonpee\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jp7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 17, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5q\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170k39s\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170k39s/go/k3v0jp7/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170k39s/go/\", \"name\": \"t1_k3v0jp7\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170k39s/go/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"[deleted]\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jp6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 109, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p66\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_16zqa3j\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/16zqa3j//k3v0jp6/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/16zqa3j//\", \"name\": \"t1_k3v0jp6\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/16zqa3j//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 31101\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jp3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3uz72m\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172842m\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172842m/great_view_31101/k3v0jp3/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172842m/great_view_31101/\", \"name\": \"t1_k3v0jp3\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/1r3cizwomssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jp1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3uzt1m\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728cmo\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728cmo/great_view_4/k3v0jp1/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728cmo/great_view_4/\", \"name\": \"t1_k3v0jp1\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/i9zxl9ziossb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 31101\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3uzy54\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Hardstumble\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_172842m\", \"score\": 1, \"author_fullname\": \"t2_b1e2tkv9d\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"Makes you wish for a nuclear winter..\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMakes you wish for a nuclear winter..\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172842m\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172842m/great_view_31101/k3uzy54/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172842m/great_view_31101/\", \"name\": \"t1_k3uzy54\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691191.0, \"created_utc\": 1696691191.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/1r3cizwomssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3uzt1m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"FanaticHen330\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_1728cmo\", \"score\": 1, \"author_fullname\": \"t2_g2z5trtpm\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"Mac at night you mean?\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMac at night you mean?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728cmo\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728cmo/great_view_4/k3uzt1m/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728cmo/great_view_4/\", \"name\": \"t1_k3uzt1m\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691134.0, \"created_utc\": 1696691134.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/i9zxl9ziossb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3uzsxu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"awayNick692\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_1728cmo\", \"score\": 1, \"author_fullname\": \"t2_hxkbe89ii\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"My new wallpaper.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy new wallpaper.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728cmo\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728cmo/great_view_4/k3uzsxu/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728cmo/great_view_4/\", \"name\": \"t1_k3uzsxu\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691133.0, \"created_utc\": 1696691133.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/i9zxl9ziossb1.jpg\"}}], \"before\": null}}" + }, + "headers": { + "Accept-Ranges": [ + "bytes" + ], + "Cache-Control": [ + "private, max-age=3600" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "214936" + ], + "Date": [ + "Sun, 08 Oct 2023 19:41:16 GMT" + ], + "NEL": [ + "{\"report_to\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": false, \"success_fraction\": 1.0, \"failure_fraction\": 1.0}" + ], + "Report-To": [ + "{\"group\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-nel.reddit.com/reports\" }]}, {\"group\": \"w3-reporting\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting.reddit.com/reports\" }]}, {\"group\": \"w3-reporting-csp\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-csp.reddit.com/reports\" }]}" + ], + "Server": [ + "snooserv" + ], + "Set-Cookie": [ + "loid=000000000ld2392h56.2.1696794075597.Z0FBQUFBQmxJd1hjdVVVU053MkVISzMweUl5RUJmaXNiRUM1SGdQVnNpcGhmMllSREFUOVFHODZfX1k5VTNkOEp4QmdnTVlZdGVRaUhMcjNXblk4OUlQTWQyTEZSWFRNak5WVW10UWRRdjF3bHRvbzhKSnNlaE83X09XbE12ZzAyWTFoRWFaaGNVM2o; Domain=reddit.com; Max-Age=63071999; Path=/; expires=Tue, 07-Oct-2025 19:41:16 GMT; secure; SameSite=None; Secure", + "session_tracker=lbopjjrnrkebqjeooc.0.1696794075818.Z0FBQUFBQmxJd1hjRFRuVWF5WXRka09jSHM1Z2UwcjVEb3BvcWtvRFRVUEtlMEQzNE1YbFFoQjVkUjBBblZGekJrR0dSY203VWd1Z2EycFZiSDhmd202d1UtNFMzYjlRbHU5Q1FFTHJ5MWhua3Y3bDFmRHNpVmNBaTh0ckJDZFFlbWJRRGNQWUxjVEE; Domain=reddit.com; Max-Age=7199; Path=/; expires=Sun, 08-Oct-2023 21:41:16 GMT; secure; SameSite=None; Secure", + "csv=2; Max-Age=63072000; Domain=.reddit.com; Path=/; Secure; SameSite=None" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains" + ], + "Vary": [ + "accept-encoding" + ], + "Via": [ + "1.1 varnish" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-XSS-Protection": [ + "1; mode=block" + ], + "access-control-allow-origin": [ + "*" + ], + "access-control-expose-headers": [ + "X-Moose" + ], + "content-type": [ + "application/json; charset=UTF-8" + ], + "x-moose": [ + "majestic" + ], + "x-ratelimit-remaining": [ + "599.0" + ], + "x-ratelimit-reset": [ + "525" + ], + "x-ratelimit-used": [ + "1" + ], + "x-ua-compatible": [ + "IE=edge" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://oauth.reddit.com/r//comments/?limit=100&raw_json=1" + } + }, + { + "recorded_at": "2023-10-08T19:41:18", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "identity" + ], + "Authorization": [ + "bearer " + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "edgebucket=adA9Sb0J9rm5mSt6Gm; loid=000000000ld2392h56.2.1696794075597.Z0FBQUFBQmxJd1hjdVVVU053MkVISzMweUl5RUJmaXNiRUM1SGdQVnNpcGhmMllSREFUOVFHODZfX1k5VTNkOEp4QmdnTVlZdGVRaUhMcjNXblk4OUlQTWQyTEZSWFRNak5WVW10UWRRdjF3bHRvbzhKSnNlaE83X09XbE12ZzAyWTFoRWFaaGNVM2o; session_tracker=lbopjjrnrkebqjeooc.0.1696794075818.Z0FBQUFBQmxJd1hjRFRuVWF5WXRka09jSHM1Z2UwcjVEb3BvcWtvRFRVUEtlMEQzNE1YbFFoQjVkUjBBblZGekJrR0dSY203VWd1Z2EycFZiSDhmd202d1UtNFMzYjlRbHU5Q1FFTHJ5MWhua3Y3bDFmRHNpVmNBaTh0ckJDZFFlbWJRRGNQWUxjVEE; csv=2" + ], + "User-Agent": [ + "praw_py PRAW/7.7.2.dev0 prawcore/2.3.0" + ] + }, + "method": "GET", + "uri": "https://oauth.reddit.com/r//comments/?before=t1_k3v0jp3&limit=100&raw_json=1" + }, + "response": { + "body": { + "encoding": "UTF-8", + "string": "{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 95, \"modhash\": \"\", \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kmiller0112\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3yrfii\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Acceptable-Bread-566\", \"num_comments\": 6707, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u4rtt\", \"score\": 1, \"author_fullname\": \"t2_puq6r71y\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"Did it work?\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDid it work?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_agi5zf\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/agi5zf//k3yrfii/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/agi5zf//\", \"name\": \"t1_k3yrfii\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696754768.0, \"created_utc\": 1696754768.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/agi5zf//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"bot \", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Innsmouth_Swim_Team\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3ynwqb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Innsmouth_Swim_Team\", \"num_comments\": 2, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3ynm7c\", \"score\": 1, \"author_fullname\": \"t2_v07goqfq\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"Hey u/VettedBot what can you tell me about https://www.amazon.com/AT-Prepaid-Radiant-Max-Smartphone/dp/B098KJWTXL\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey \\u003Ca href=\\\"/u/VettedBot\\\"\\u003Eu/VettedBot\\u003C/a\\u003E what can you tell me about \\u003Ca href=\\\"https://www.amazon.com/AT-Prepaid-Radiant-Max-Smartphone/dp/B098KJWTXL\\\"\\u003Ehttps://www.amazon.com/AT-Prepaid-Radiant-Max-Smartphone/dp/B098KJWTXL\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172thsp\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172thsp/bot_/k3ynwqb/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172thsp/bot_/\", \"name\": \"t1_k3ynwqb\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696752011.0, \"created_utc\": 1696752011.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/172thsp/bot_/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"bot \", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Innsmouth_Swim_Team\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3ynm7c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Innsmouth_Swim_Team\", \"num_comments\": 2, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_172thsp\", \"score\": 1, \"author_fullname\": \"t2_v07goqfq\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"Hey u/VettedBot what can you tell me about the Cricket Dream 5G phone?\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey \\u003Ca href=\\\"/u/VettedBot\\\"\\u003Eu/VettedBot\\u003C/a\\u003E what can you tell me about the Cricket Dream 5G phone?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172thsp\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172thsp/bot_/k3ynm7c/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172thsp/bot_/\", \"name\": \"t1_k3ynm7c\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696751778.0, \"created_utc\": 1696751778.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/172thsp/bot_/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"reddit_login_or\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3yiw5z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"reddit_login_or\", \"num_comments\": 2, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_16utwk7\", \"score\": 1, \"author_fullname\": \"t2_g2m5t\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"DaintyWilder | Riley Reid - First \\ud83e\\udd47 Threesome \\u0026 Cum Swap \\ud83d\\ude08\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDaintyWilder | Riley Reid - First \\ud83e\\udd47 Threesome \\u0026amp; Cum Swap \\ud83d\\ude08\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_16utwk7\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/16utwk7//k3yiw5z/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/16utwk7//\", \"name\": \"t1_k3yiw5z\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696748136.0, \"created_utc\": 1696748136.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/16utwk7//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Adderalin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3yczsn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"msmouseus\", \"num_comments\": 1, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_nibsv2\", \"score\": 1, \"author_fullname\": \"t2_re60e\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"\\u003E Trading Long Term Capital Gains/Qualified Dividends for Ordinary Income - OUCH!\\n\\nThis is not true -- the biggest issue in this write up. But thank you for trying to put it together!\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ETrading Long Term Capital Gains/Qualified Dividends for Ordinary Income - OUCH!\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThis is not true -- the biggest issue in this write up. But thank you for trying to put it together!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_nibsv2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/nibsv2//k3yczsn/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/nibsv2//\", \"name\": \"t1_k3yczsn\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696743989.0, \"created_utc\": 1696743989.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/nibsv2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"GrabWorking3045\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3wt835\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"GrabWorking3045\", \"num_comments\": 3, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_172idw2\", \"score\": 1, \"author_fullname\": \"t2_dfophtbj\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"aaa\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eaaa\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172idw2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172idw2//k3wt835/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172idw2//\", \"name\": \"t1_k3wt835\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696716611.0, \"created_utc\": 1696716611.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/172idw2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"GrabWorking3045\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3wt70j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"GrabWorking3045\", \"num_comments\": 3, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_172idw2\", \"score\": 1, \"author_fullname\": \"t2_dfophtbj\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"fds\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efds\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172idw2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172idw2//k3wt70j/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172idw2//\", \"name\": \"t1_k3wt70j\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696716599.0, \"created_utc\": 1696716599.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/172idw2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"GrabWorking3045\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3wt6bi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"GrabWorking3045\", \"num_comments\": 3, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_172idw2\", \"score\": 1, \"author_fullname\": \"t2_dfophtbj\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"sdf\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Esdf\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172idw2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172idw2//k3wt6bi/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172idw2//\", \"name\": \"t1_k3wt6bi\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696716591.0, \"created_utc\": 1696716591.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/172idw2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"goodreads-rebot\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3woe15\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"goodreads-rebot\", \"num_comments\": 46, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k1wdnaw\", \"score\": 1, \"author_fullname\": \"t2_8567bsfgr\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"**[The Fifth Season (The Broken Earth #1)](https://www.goodreads.com/book/show/19161852-the-fifth-season) by N.K. Jemisin** ^(\\u0026#40;Matching 100% \\u2611\\ufe0f\\u0026#41;)\\n\\n^(468 pages | Published: 2015 | Suggested 528 times)\\n\\n\\n\\u003E **Summary:** This is the way the world ends. Again. Three terrible things happen in a single day. Essun. a woman living an ordinary life in a small town. comes home to find that her husband has brutally murdered their son and kidnapped their daughter. Meanwhile. mighty Sanze -- the world-spanning empire whose innovations have been civilization's bedrock for a thousand years -- collapses as most of its citizens are murdered to serve a madman's vengeance. And worst of all. across the heart (...)\\n\\n\\u003E **Themes**: Fantasy, Fiction, Science-fiction, Sci-fi, Owned\\n\\n\\u003E **Top 2 recommended-along**: [The Broken Earth Trilogy: The Fifth Season / The Obelisk Gate / The Stone Sky](https://www.goodreads.com/book/show/38496769-the-broken-earth-trilogy) by N.K. Jemisin, [The Ninth Rain (The Winnowing Flame Trilogy, #1)](https://www.goodreads.com/book/show/29758013-the-ninth-rain) by Jen Williams\\n\\n^( [Provide Feedback](https://www.reddit.com/user/goodreads-rebot) | [Source Code](https://github.com/sonoff2/goodreads-rebot) | [\\\"The Bot is Back!?\\\"](https://www.reddit.com/r/suggestmeabook/comments/16qe09p/meta_post_hello_again_humans/))\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Ca href=\\\"https://www.goodreads.com/book/show/19161852-the-fifth-season\\\"\\u003EThe Fifth Season (The Broken Earth #1)\\u003C/a\\u003E by N.K. Jemisin\\u003C/strong\\u003E \\u003Csup\\u003E\\u0026#40;Matching 100% \\u2611\\ufe0f\\u0026#41;\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E468 pages | Published: 2015 | Suggested 528 times\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESummary:\\u003C/strong\\u003E This is the way the world ends. Again. Three terrible things happen in a single day. Essun. a woman living an ordinary life in a small town. comes home to find that her husband has brutally murdered their son and kidnapped their daughter. Meanwhile. mighty Sanze -- the world-spanning empire whose innovations have been civilization\\u0026#39;s bedrock for a thousand years -- collapses as most of its citizens are murdered to serve a madman\\u0026#39;s vengeance. And worst of all. across the heart (...)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThemes\\u003C/strong\\u003E: Fantasy, Fiction, Science-fiction, Sci-fi, Owned\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003ETop 2 recommended-along\\u003C/strong\\u003E: \\u003Ca href=\\\"https://www.goodreads.com/book/show/38496769-the-broken-earth-trilogy\\\"\\u003EThe Broken Earth Trilogy: The Fifth Season / The Obelisk Gate / The Stone Sky\\u003C/a\\u003E by N.K. Jemisin, \\u003Ca href=\\\"https://www.goodreads.com/book/show/29758013-the-ninth-rain\\\"\\u003EThe Ninth Rain (The Winnowing Flame Trilogy, #1)\\u003C/a\\u003E by Jen Williams\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E [Provide Feedback](\\u003Ca href=\\\"https://www.reddit.com/user/goodreads-rebot\\\"\\u003Ehttps://www.reddit.com/user/goodreads-rebot\\u003C/a\\u003E\\u003C/sup\\u003E | \\u003Ca href=\\\"https://github.com/sonoff2/goodreads-rebot\\\"\\u003ESource Code\\u003C/a\\u003E | \\u003Ca href=\\\"https://www.reddit.com/r/suggestmeabook/comments/16qe09p/meta_post_hello_again_humans/\\\"\\u003E\\u0026quot;The Bot is Back!?\\u0026quot;\\u003C/a\\u003E)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_167kmqr\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/167kmqr//k3woe15/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/167kmqr//\", \"name\": \"t1_k3woe15\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696714574.0, \"created_utc\": 1696714574.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/167kmqr//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"goodreads-rebot\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3wo7i3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"goodreads-rebot\", \"num_comments\": 46, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k1wdss5\", \"score\": 1, \"author_fullname\": \"t2_8567bsfgr\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"\\\\#1/3: **[Harry Potter and the Sorcerer's Stone (Harry Potter #1)](https://www.goodreads.com/book/show/3.Harry_Potter_and_the_Sorcerer_s_Stone) by J.K. Rowling** ^(\\u0026#40;Matching 100% \\u2611\\ufe0f\\u0026#41;)\\n\\n^(309 pages | Published: 1997 | Suggested 14 times)\\n\\n\\n\\u003E **Summary:** Harry Potter's life is miserable. His parents are dead and he's stuck with his heartless relatives. who force him to live in a tiny closet under the stairs. But his fortune changes when he receives a letter that tells him the truth about himself: he's a wizard. A mysterious visitor rescues him from his relatives and takes him to his new home. Hogwarts School of Witchcraft and Wizardry. After a lifetime of bottling up his magical powers. Harry finally feels like a normal kid. (...)\\n\\n\\u003E **Themes**: Fantasy, Fiction, Young-adult, Harry-potter, Books-i-own\\n\\n\\u003E **Top 2 recommended-along**: [The Casual Vacancy - Perebutan Kursi Kosong](https://www.goodreads.com/book/show/16173852-the-casual-vacancy---perebutan-kursi-kosong) by J.K. Rowling, [The Hunger Games Series](https://www.goodreads.com/book/show/2767052-the-hunger-games) by Suzanne Collins\\n---\\n\\\\#2/3: **[Call Me By Your Name (Call Me By Your Name #1)](https://www.goodreads.com/book/show/36336078-call-me-by-your-name) by Andr\\u00e9 Aciman** ^(\\u0026#40;Matching 100% \\u2611\\ufe0f\\u0026#41;)\\n\\n^(248 pages | Published: 2007 | Suggested 77 times)\\n\\n\\n\\u003E **Summary:** Call Me by Your Name is the story of a sudden and powerful romance that blossoms between an adolescent boy and a summer guest at his parents' cliff-side mansion on the Italian Riviera. Unprepared for the consequences of their attraction. at first each feigns indifference. But during the restless summer weeks that follow. unrelenting buried currents of obsession and fear. fascination and desire. intensify their passion as they the charged ground between them. What grows (...)\\n\\n\\u003E **Themes**: Fiction, Romance, Lgbt, Lgbtq, Contemporary\\n\\n\\u003E **Top 2 recommended-along**: [The Wings of the Dove](https://www.goodreads.com/book/show/124272.The_Wings_of_the_Dove) by Henry James, [Find Me (Call Me By Your Name, #2)](https://www.goodreads.com/book/show/44581535-find-me) by Andr\\u00e9 Aciman\\n---\\n\\n\\\\#3/3: **Search Failed** ^(\\u0026#40;Found [Dead I Well May Be (Michael Forsythe #1)](https://www.goodreads.com/book/show/21282.Dead_I_Well_May_Be) with bad matching score of 56% \\u26a0\\ufe0f\\u0026#41;)\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E#1/3: \\u003Cstrong\\u003E\\u003Ca href=\\\"https://www.goodreads.com/book/show/3.Harry_Potter_and_the_Sorcerer_s_Stone\\\"\\u003EHarry Potter and the Sorcerer\\u0026#39;s Stone (Harry Potter #1)\\u003C/a\\u003E by J.K. Rowling\\u003C/strong\\u003E \\u003Csup\\u003E\\u0026#40;Matching 100% \\u2611\\ufe0f\\u0026#41;\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E309 pages | Published: 1997 | Suggested 14 times\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESummary:\\u003C/strong\\u003E Harry Potter\\u0026#39;s life is miserable. His parents are dead and he\\u0026#39;s stuck with his heartless relatives. who force him to live in a tiny closet under the stairs. But his fortune changes when he receives a letter that tells him the truth about himself: he\\u0026#39;s a wizard. A mysterious visitor rescues him from his relatives and takes him to his new home. Hogwarts School of Witchcraft and Wizardry. After a lifetime of bottling up his magical powers. Harry finally feels like a normal kid. (...)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThemes\\u003C/strong\\u003E: Fantasy, Fiction, Young-adult, Harry-potter, Books-i-own\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003E\\u003Cstrong\\u003ETop 2 recommended-along\\u003C/strong\\u003E: \\u003Ca href=\\\"https://www.goodreads.com/book/show/16173852-the-casual-vacancy---perebutan-kursi-kosong\\\"\\u003EThe Casual Vacancy - Perebutan Kursi Kosong\\u003C/a\\u003E by J.K. Rowling, \\u003Ca href=\\\"https://www.goodreads.com/book/show/2767052-the-hunger-games\\\"\\u003EThe Hunger Games Series\\u003C/a\\u003E by Suzanne Collins\\u003C/h2\\u003E\\n\\n\\u003Cp\\u003E#2/3: \\u003Cstrong\\u003E\\u003Ca href=\\\"https://www.goodreads.com/book/show/36336078-call-me-by-your-name\\\"\\u003ECall Me By Your Name (Call Me By Your Name #1)\\u003C/a\\u003E by Andr\\u00e9 Aciman\\u003C/strong\\u003E \\u003Csup\\u003E\\u0026#40;Matching 100% \\u2611\\ufe0f\\u0026#41;\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003E248 pages | Published: 2007 | Suggested 77 times\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Cstrong\\u003ESummary:\\u003C/strong\\u003E Call Me by Your Name is the story of a sudden and powerful romance that blossoms between an adolescent boy and a summer guest at his parents\\u0026#39; cliff-side mansion on the Italian Riviera. Unprepared for the consequences of their attraction. at first each feigns indifference. But during the restless summer weeks that follow. unrelenting buried currents of obsession and fear. fascination and desire. intensify their passion as they the charged ground between them. What grows (...)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EThemes\\u003C/strong\\u003E: Fiction, Romance, Lgbt, Lgbtq, Contemporary\\u003C/p\\u003E\\n\\n\\u003Ch2\\u003E\\u003Cstrong\\u003ETop 2 recommended-along\\u003C/strong\\u003E: \\u003Ca href=\\\"https://www.goodreads.com/book/show/124272.The_Wings_of_the_Dove\\\"\\u003EThe Wings of the Dove\\u003C/a\\u003E by Henry James, \\u003Ca href=\\\"https://www.goodreads.com/book/show/44581535-find-me\\\"\\u003EFind Me (Call Me By Your Name, #2)\\u003C/a\\u003E by Andr\\u00e9 Aciman\\u003C/h2\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E#3/3: \\u003Cstrong\\u003ESearch Failed\\u003C/strong\\u003E \\u003Csup\\u003E\\u0026#40;Found [Dead I Well May Be (Michael Forsythe #1\\u003C/sup\\u003E](\\u003Ca href=\\\"https://www.goodreads.com/book/show/21282.Dead_I_Well_May_Be\\\"\\u003Ehttps://www.goodreads.com/book/show/21282.Dead_I_Well_May_Be\\u003C/a\\u003E) with bad matching score of 56% \\u26a0\\ufe0f\\u0026#41;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_167kmqr\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/167kmqr//k3wo7i3/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/167kmqr//\", \"name\": \"t1_k3wo7i3\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696714502.0, \"created_utc\": 1696714502.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/167kmqr//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"dog\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"KAWIKAIGG\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3vkje6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheOfficialNizmo\", \"num_comments\": 21, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6t2t\", \"score\": 1, \"author_fullname\": \"t2_ag83595j\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from dog\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from dog\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1715byt\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1715byt/dog/k3vkje6/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1715byt/dog/\", \"name\": \"t1_k3vkje6\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696699134.0, \"created_utc\": 1696699134.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1715byt/dog/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 3\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3vkfei\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheOfficialNizmo\", \"num_comments\": 1, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_1728muz\", \"score\": 1, \"author_fullname\": \"t2_ag83595j\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"wibows vysta\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewibows vysta\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728muz\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728muz/great_view_3/k3vkfei/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728muz/great_view_3/\", \"name\": \"t1_k3vkfei\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696699092.0, \"created_utc\": 1696699092.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/ultpieooqssb1.png\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3valhe\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheOfficialNizmo\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6t33\", \"score\": 1, \"author_fullname\": \"t2_ag83595j\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from animal\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from animal\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3valhe/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3valhe\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696695348.0, \"created_utc\": 1696695348.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3vaid3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheOfficialNizmo\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3vah5g\", \"score\": 1, \"author_fullname\": \"t2_ag83595j\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"i\\n\\n j k l m n o p\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ei\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E j k l m n o p\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3vaid3/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3vaid3\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696695314.0, \"created_utc\": 1696695314.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3vah5g\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheOfficialNizmo\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3vagmb\", \"score\": 1, \"author_fullname\": \"t2_ag83595j\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"h\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eh\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3vah5g/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3vah5g\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696695301.0, \"created_utc\": 1696695301.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3vagmb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheOfficialNizmo\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3vagap\", \"score\": 1, \"author_fullname\": \"t2_ag83595j\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"g\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eg\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3vagmb/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3vagmb\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696695296.0, \"created_utc\": 1696695296.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3vagap\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheOfficialNizmo\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3vafvo\", \"score\": 1, \"author_fullname\": \"t2_ag83595j\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"f\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ef\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3vagap/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3vagap\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696695292.0, \"created_utc\": 1696695292.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3vafvo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheOfficialNizmo\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_171j9nc\", \"score\": 1, \"author_fullname\": \"t2_ag83595j\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"e\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ee\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3vafvo/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3vafvo\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696695288.0, \"created_utc\": 1696695288.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3vaecm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheOfficialNizmo\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6t3b\", \"score\": 1, \"author_fullname\": \"t2_ag83595j\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"icle\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eicle\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3vaecm/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3vaecm\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696695271.0, \"created_utc\": 1696695271.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"hello world\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Decent_Work_4713\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t58\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 11, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nno\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1722q9f\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1722q9f/hello_world/k3v6t58/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\", \"name\": \"t1_k3v6t58\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t52\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nnt\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728sjk\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728sjk/great_view_4/k3v6t52/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728sjk/great_view_4/\", \"name\": \"t1_k3v6t52\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/w6v0b74xrssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\\u0026shy;\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"DreamyDude2004_2\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t51\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 28, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6no4\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171z72e\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171z72e/shy/k3v6t51/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171z72e/shy/\", \"name\": \"t1_k3v6t51\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171z72e/shy/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"my demo title\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Decent_Work_4713\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t4n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 3, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nnh\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728mzr\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728mzr/my_demo_title/k3v6t4n/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728mzr/my_demo_title/\", \"name\": \"t1_k3v6t4n\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1728mzr/my_demo_title/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"dog\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"KAWIKAIGG\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t4k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 21, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6no7\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1715byt\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1715byt/dog/k3v6t4k/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1715byt/dog/\", \"name\": \"t1_k3v6t4k\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1715byt/dog/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"dmilin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 22, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nof\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170ser2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170ser2//k3v6t3o/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170ser2//\", \"name\": \"t1_k3v6t3o\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170ser2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Just wanna see if this works or not\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"The_Dummy_Or_Someth_\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 8, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nnv\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170gsey\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170gsey/just_wanna_see_if_this_works_or_not/k3v6t3u/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170gsey/just_wanna_see_if_this_works_or_not/\", \"name\": \"t1_k3v6t3u\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170gsey/just_wanna_see_if_this_works_or_not/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"ing gramamr bot\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Grammar-Bot-Elite\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 916, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6no6\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_k2ls9j\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/k2ls9j/ing_gramamr_bot/k3v6t3x/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/k2ls9j/ing_gramamr_bot/\", \"name\": \"t1_k3v6t3x\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/k2ls9j/ing_gramamr_bot/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nnq\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728sjk\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728sjk/great_view_4/k3v6t3p/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728sjk/great_view_4/\", \"name\": \"t1_k3v6t3p\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/w6v0b74xrssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\\u0026shy;\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"DreamyDude2004_2\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 28, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6no3\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171z72e\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171z72e/shy/k3v6t3l/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171z72e/shy/\", \"name\": \"t1_k3v6t3l\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171z72e/shy/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nns\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728cmo\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728cmo/great_view_4/k3v6t3m/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728cmo/great_view_4/\", \"name\": \"t1_k3v6t3m\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/i9zxl9ziossb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Testing -\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"[deleted]\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nnx\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_16w0sk9\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/16w0sk9/ing/k3v6t3k/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/16w0sk9/ing/\", \"name\": \"t1_k3v6t3k\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/16w0sk9/ing/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"[deleted]\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 109, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nnw\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_16zqa3j\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/16zqa3j//k3v6t3j/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/16zqa3j//\", \"name\": \"t1_k3v6t3j\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/16zqa3j//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"dmilin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 22, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6no5\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170ser2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170ser2//k3v6t3i/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170ser2//\", \"name\": \"t1_k3v6t3i\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170ser2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kmiller0112\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3g\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 6707, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nny\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_agi5zf\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/agi5zf//k3v6t3g/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/agi5zf//\", \"name\": \"t1_k3v6t3g\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/agi5zf//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"hello world\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Decent_Work_4713\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 11, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nod\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1722q9f\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1722q9f/hello_world/k3v6t3e/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\", \"name\": \"t1_k3v6t3e\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"dmilin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 22, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6noc\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170ser2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170ser2//k3v6t3c/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170ser2//\", \"name\": \"t1_k3v6t3c\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170ser2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t3b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6no0\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3v6t3b/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3v6t3b\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 31101\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t38\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nnz\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172842m\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172842m/great_view_31101/k3v6t38/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172842m/great_view_31101/\", \"name\": \"t1_k3v6t38\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/1r3cizwomssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 31101\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t37\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nps\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172842m\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172842m/great_view_31101/k3v6t37/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172842m/great_view_31101/\", \"name\": \"t1_k3v6t37\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/1r3cizwomssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\\u0026shy;\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"DreamyDude2004_2\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t36\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 28, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6no8\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171z72e\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171z72e/shy/k3v6t36/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171z72e/shy/\", \"name\": \"t1_k3v6t36\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171z72e/shy/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"I am the BearWhale: UASF Now!\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"the_bearwhale\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t34\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 8, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6noy\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_6d2os3\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/6d2os3/i_am_the_bearwhale_uasf_now/k3v6t34/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/6d2os3/i_am_the_bearwhale_uasf_now/\", \"name\": \"t1_k3v6t34\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/6d2os3/i_am_the_bearwhale_uasf_now/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Go\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"23moonpee\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t32\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 17, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nol\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170k39s\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170k39s/go/k3v6t32/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170k39s/go/\", \"name\": \"t1_k3v6t32\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170k39s/go/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t33\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6nqk\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3v6t33/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3v6t33\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693897.0, \"created_utc\": 1696693897.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"dog\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"KAWIKAIGG\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6t2t\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 21, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v6npu\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1715byt\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1715byt/dog/k3v6t2t/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1715byt/dog/\", \"name\": \"t1_k3v6t2t\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693896.0, \"created_utc\": 1696693896.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1715byt/dog/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nqk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jpn\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3v6nqk/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3v6nqk\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"dog\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"KAWIKAIGG\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6npu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 21, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jp9\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1715byt\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1715byt/dog/k3v6npu/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1715byt/dog/\", \"name\": \"t1_k3v6npu\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1715byt/dog/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 31101\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nps\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jpa\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172842m\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172842m/great_view_31101/k3v6nps/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172842m/great_view_31101/\", \"name\": \"t1_k3v6nps\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/1r3cizwomssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"I am the BearWhale: UASF Now!\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"the_bearwhale\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6noy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 8, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jrw\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_6d2os3\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/6d2os3/i_am_the_bearwhale_uasf_now/k3v6noy/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/6d2os3/i_am_the_bearwhale_uasf_now/\", \"name\": \"t1_k3v6noy\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/6d2os3/i_am_the_bearwhale_uasf_now/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Go\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"23moonpee\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nol\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 17, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jp7\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170k39s\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170k39s/go/k3v6nol/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170k39s/go/\", \"name\": \"t1_k3v6nol\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170k39s/go/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"hello world\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Decent_Work_4713\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nod\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 11, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jp8\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1722q9f\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1722q9f/hello_world/k3v6nod/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\", \"name\": \"t1_k3v6nod\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"dmilin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6noc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 22, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jpb\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170ser2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170ser2//k3v6noc/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170ser2//\", \"name\": \"t1_k3v6noc\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170ser2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"dog\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"KAWIKAIGG\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6no7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 21, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jpk\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1715byt\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1715byt/dog/k3v6no7/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1715byt/dog/\", \"name\": \"t1_k3v6no7\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1715byt/dog/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"ing gramamr bot\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Grammar-Bot-Elite\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6no6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 916, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jpi\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_k2ls9j\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/k2ls9j/ing_gramamr_bot/k3v6no6/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/k2ls9j/ing_gramamr_bot/\", \"name\": \"t1_k3v6no6\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/k2ls9j/ing_gramamr_bot/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\\u0026shy;\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"DreamyDude2004_2\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6no8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 28, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jpd\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171z72e\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171z72e/shy/k3v6no8/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171z72e/shy/\", \"name\": \"t1_k3v6no8\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171z72e/shy/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\\u0026shy;\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"DreamyDude2004_2\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6no4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 28, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jpc\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171z72e\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171z72e/shy/k3v6no4/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171z72e/shy/\", \"name\": \"t1_k3v6no4\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171z72e/shy/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\\u0026shy;\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"DreamyDude2004_2\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6no3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 28, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jpg\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171z72e\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171z72e/shy/k3v6no3/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171z72e/shy/\", \"name\": \"t1_k3v6no3\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171z72e/shy/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 31101\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nnz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jrh\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172842m\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172842m/great_view_31101/k3v6nnz/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172842m/great_view_31101/\", \"name\": \"t1_k3v6nnz\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/1r3cizwomssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"dmilin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nof\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 22, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jqy\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170ser2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170ser2//k3v6nof/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170ser2//\", \"name\": \"t1_k3v6nof\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170ser2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Testing -\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"[deleted]\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nnx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jr0\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_16w0sk9\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/16w0sk9/ing/k3v6nnx/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/16w0sk9/ing/\", \"name\": \"t1_k3v6nnx\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/16w0sk9/ing/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6no0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jph\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3v6no0/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3v6no0\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"dmilin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6no5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 22, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jpm\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170ser2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170ser2//k3v6no5/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170ser2//\", \"name\": \"t1_k3v6no5\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170ser2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"[deleted]\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nnw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 109, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jqd\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_16zqa3j\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/16zqa3j//k3v6nnw/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/16zqa3j//\", \"name\": \"t1_k3v6nnw\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/16zqa3j//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Just wanna see if this works or not\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"The_Dummy_Or_Someth_\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nnv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 8, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jqj\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170gsey\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170gsey/just_wanna_see_if_this_works_or_not/k3v6nnv/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170gsey/just_wanna_see_if_this_works_or_not/\", \"name\": \"t1_k3v6nnv\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170gsey/just_wanna_see_if_this_works_or_not/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nns\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jt6\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728cmo\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728cmo/great_view_4/k3v6nns/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728cmo/great_view_4/\", \"name\": \"t1_k3v6nns\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/i9zxl9ziossb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nnt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v2p63\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728sjk\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728sjk/great_view_4/k3v6nnt/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728sjk/great_view_4/\", \"name\": \"t1_k3v6nnt\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/w6v0b74xrssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kmiller0112\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nny\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 6707, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jvp\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_agi5zf\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/agi5zf//k3v6nny/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/agi5zf//\", \"name\": \"t1_k3v6nny\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/agi5zf//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nnq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v2nsw\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728sjk\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728sjk/great_view_4/k3v6nnq/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728sjk/great_view_4/\", \"name\": \"t1_k3v6nnq\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/w6v0b74xrssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"hello world\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Decent_Work_4713\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nno\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 11, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v0jru\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1722q9f\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1722q9f/hello_world/k3v6nno/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\", \"name\": \"t1_k3v6nno\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"my demo title\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Decent_Work_4713\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v6nnh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 3, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3v1hp9\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728mzr\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728mzr/my_demo_title/k3v6nnh/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728mzr/my_demo_title/\", \"name\": \"t1_k3v6nnh\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696693838.0, \"created_utc\": 1696693838.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1728mzr/my_demo_title/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v2p63\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"beyondhook67\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_1728sjk\", \"score\": 1, \"author_fullname\": \"t2_j3cwy3zgs\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"Wallpapering! Thanks!\\n\\nWould also be willing to buy a dynamic one if you get it working for all times of day like the original Mojave image.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWallpapering! Thanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWould also be willing to buy a dynamic one if you get it working for all times of day like the original Mojave image.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728sjk\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728sjk/great_view_4/k3v2p63/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728sjk/great_view_4/\", \"name\": \"t1_k3v2p63\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696692298.0, \"created_utc\": 1696692298.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/w6v0b74xrssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v2nsw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"expandedTethys27\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_1728sjk\", \"score\": 1, \"author_fullname\": \"t2_hpme5s9jg\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"Mac at night you mean?\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMac at night you mean?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728sjk\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728sjk/great_view_4/k3v2nsw/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728sjk/great_view_4/\", \"name\": \"t1_k3v2nsw\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696692283.0, \"created_utc\": 1696692283.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/w6v0b74xrssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"my demo title\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Decent_Work_4713\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v1hp9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 3, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_1728mzr\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \"hi\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehi\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728mzr\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728mzr/my_demo_title/k3v1hp9/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728mzr/my_demo_title/\", \"name\": \"t1_k3v1hp9\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691815.0, \"created_utc\": 1696691815.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1728mzr/my_demo_title/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kmiller0112\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jvp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 6707, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5o\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_agi5zf\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/agi5zf//k3v0jvp/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/agi5zf//\", \"name\": \"t1_k3v0jvp\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691433.0, \"created_utc\": 1696691433.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/agi5zf//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 4\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jt6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 7, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3uzsxu\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1728cmo\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1728cmo/great_view_4/k3v0jt6/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1728cmo/great_view_4/\", \"name\": \"t1_k3v0jt6\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691433.0, \"created_utc\": 1696691433.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/i9zxl9ziossb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"hello world\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Decent_Work_4713\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jru\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 11, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5f\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1722q9f\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1722q9f/hello_world/k3v0jru/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\", \"name\": \"t1_k3v0jru\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"I am the BearWhale: UASF Now!\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"the_bearwhale\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jrw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 8, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5y\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_6d2os3\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/6d2os3/i_am_the_bearwhale_uasf_now/k3v0jrw/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/6d2os3/i_am_the_bearwhale_uasf_now/\", \"name\": \"t1_k3v0jrw\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/6d2os3/i_am_the_bearwhale_uasf_now/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 31101\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jrh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3uyc1f\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172842m\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172842m/great_view_31101/k3v0jrh/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172842m/great_view_31101/\", \"name\": \"t1_k3v0jrh\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/1r3cizwomssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Testing -\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"[deleted]\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jr0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5m\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_16w0sk9\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/16w0sk9/ing/k3v0jr0/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/16w0sk9/ing/\", \"name\": \"t1_k3v0jr0\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/16w0sk9/ing/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"dmilin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jqy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 22, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3uws7k\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170ser2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170ser2//k3v0jqy/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170ser2//\", \"name\": \"t1_k3v0jqy\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170ser2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Just wanna see if this works or not\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"The_Dummy_Or_Someth_\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jqj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 8, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5l\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170gsey\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170gsey/just_wanna_see_if_this_works_or_not/k3v0jqj/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170gsey/just_wanna_see_if_this_works_or_not/\", \"name\": \"t1_k3v0jqj\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170gsey/just_wanna_see_if_this_works_or_not/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"[deleted]\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jqd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 109, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5n\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_16zqa3j\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/16zqa3j//k3v0jqd/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/16zqa3j//\", \"name\": \"t1_k3v0jqd\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/16zqa3j//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"dog\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"KAWIKAIGG\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jpk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 21, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5h\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1715byt\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1715byt/dog/k3v0jpk/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1715byt/dog/\", \"name\": \"t1_k3v0jpk\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1715byt/dog/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jpn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5w\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3v0jpn/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3v0jpn\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"ing gramamr bot\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Grammar-Bot-Elite\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jpi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 916, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5s\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_k2ls9j\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/k2ls9j/ing_gramamr_bot/k3v0jpi/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/k2ls9j/ing_gramamr_bot/\", \"name\": \"t1_k3v0jpi\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/k2ls9j/ing_gramamr_bot/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"a\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"TheOfficialNizmo\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jph\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 19, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3ud9bs\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171j9nc\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171j9nc/a/k3v0jph/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171j9nc/a/\", \"name\": \"t1_k3v0jph\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171j9nc/a/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"dmilin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jpm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 22, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5j\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170ser2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170ser2//k3v0jpm/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170ser2//\", \"name\": \"t1_k3v0jpm\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170ser2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\\u0026shy;\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"DreamyDude2004_2\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jpc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 28, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5x\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171z72e\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171z72e/shy/k3v0jpc/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171z72e/shy/\", \"name\": \"t1_k3v0jpc\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171z72e/shy/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\\u0026shy;\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"DreamyDude2004_2\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jpg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 28, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p60\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171z72e\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171z72e/shy/k3v0jpg/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171z72e/shy/\", \"name\": \"t1_k3v0jpg\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171z72e/shy/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"hello world\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"Decent_Work_4713\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jp8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 11, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7san\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1722q9f\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1722q9f/hello_world/k3v0jp8/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\", \"name\": \"t1_k3v0jp8\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1722q9f/hello_world/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"dmilin\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jpb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 22, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3uwqvi\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170ser2\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170ser2//k3v0jpb/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170ser2//\", \"name\": \"t1_k3v0jpb\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170ser2//\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"dog\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"KAWIKAIGG\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jp9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 21, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5i\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_1715byt\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/1715byt/dog/k3v0jp9/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/1715byt/dog/\", \"name\": \"t1_k3v0jp9\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/1715byt/dog/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"\\u0026shy;\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"DreamyDude2004_2\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jpd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 28, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5z\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_171z72e\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/171z72e/shy/k3v0jpd/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/171z72e/shy/\", \"name\": \"t1_k3v0jpd\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/171z72e/shy/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"great view 31101\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"kerrazygaming\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jpa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 10, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3uzy54\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_172842m\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/172842m/great_view_31101/k3v0jpa/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/172842m/great_view_31101/\", \"name\": \"t1_k3v0jpa\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://i.redd.it/1r3cizwomssb1.jpg\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Go\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"23moonpee\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jp7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 17, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p5q\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_170k39s\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/170k39s/go/k3v0jp7/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/170k39s/go/\", \"name\": \"t1_k3v0jp7\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/170k39s/go/\"}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh23\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Test\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"\", \"link_author\": \"[deleted]\", \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k3v0jp6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decent_Work_4713\", \"num_comments\": 109, \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_k3u7p66\", \"score\": 1, \"author_fullname\": \"t2_anv99j8c\", \"over_18\": false, \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"controversiality\": 0, \"body\": \" reply from bot\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E reply from bot\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_16zqa3j\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r//comments/16zqa3j//k3v0jp6/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r//comments/16zqa3j//\", \"name\": \"t1_k3v0jp6\", \"author_flair_template_id\": null, \"subreddit_name_prefixed\": \"r/\", \"author_flair_text\": null, \"treatment_tags\": [], \"created\": 1696691432.0, \"created_utc\": 1696691432.0, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"link_url\": \"https://www.reddit.com/r//comments/16zqa3j//\"}}], \"before\": null}}" + }, + "headers": { + "Accept-Ranges": [ + "bytes" + ], + "Cache-Control": [ + "private, max-age=3600" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "204679" + ], + "Date": [ + "Sun, 08 Oct 2023 19:41:18 GMT" + ], + "NEL": [ + "{\"report_to\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": false, \"success_fraction\": 1.0, \"failure_fraction\": 1.0}" + ], + "Report-To": [ + "{\"group\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-nel.reddit.com/reports\" }]}, {\"group\": \"w3-reporting\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting.reddit.com/reports\" }]}, {\"group\": \"w3-reporting-csp\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-csp.reddit.com/reports\" }]}" + ], + "Server": [ + "snooserv" + ], + "Set-Cookie": [ + "session_tracker=lbopjjrnrkebqjeooc.0.1696794077401.Z0FBQUFBQmxJd1hlRmhqOWFGT1NwcTQ2dXQyTnBiMFIwcFFOWkExT2lDVDlHTGg1MWNwRmYwbnNMNW8zTHgyS3JEOVhZaThPTDEwUE1BeGloZzltM2M0azEyT1Z1Vmo0VHVXVDZQXzBubnJRRG81RzFJM0M4SnFnVFp2bXgtODI0Tkh1aXV6a3BwS2U; Domain=reddit.com; Max-Age=7199; Path=/; expires=Sun, 08-Oct-2023 21:41:18 GMT; secure; SameSite=None; Secure" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains" + ], + "Vary": [ + "accept-encoding" + ], + "Via": [ + "1.1 varnish" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-XSS-Protection": [ + "1; mode=block" + ], + "access-control-allow-origin": [ + "*" + ], + "access-control-expose-headers": [ + "X-Moose" + ], + "content-type": [ + "application/json; charset=UTF-8" + ], + "x-moose": [ + "majestic" + ], + "x-ratelimit-remaining": [ + "598.0" + ], + "x-ratelimit-reset": [ + "523" + ], + "x-ratelimit-used": [ + "2" + ], + "x-ua-compatible": [ + "IE=edge" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://oauth.reddit.com/r//comments/?before=t1_k3v0jp3&limit=100&raw_json=1" + } + } + ], + "recorded_with": "betamax/0.8.1" +} diff --git a/tests/integration/models/reddit/test_subreddit.py b/tests/integration/models/reddit/test_subreddit.py index 736449ead..da9104471 100644 --- a/tests/integration/models/reddit/test_subreddit.py +++ b/tests/integration/models/reddit/test_subreddit.py @@ -926,6 +926,16 @@ def test_comments(self, reddit): for i in range(400): assert isinstance(next(generator), Comment) + def test_comments__with_continue_after_id(self, reddit): + subreddit = reddit.subreddit(pytest.placeholders.test_subreddit) + initial_stream = subreddit.stream.comments() + first_ten = [next(initial_stream) for _ in range(10)] + generator = subreddit.stream.comments(continue_after_id=first_ten[4].fullname) + for i in range(5): + comment = next(generator) + assert isinstance(comment, Comment) + assert comment.fullname == first_ten[i + 5].fullname + def test_comments__with_pause(self, reddit): comment_stream = reddit.subreddit("kakapo").stream.comments(pause_after=0) comment_count = 1 diff --git a/tests/unit/models/test_util.py b/tests/unit/models/test_util.py index 1bc2a6965..cd75f4baf 100644 --- a/tests/unit/models/test_util.py +++ b/tests/unit/models/test_util.py @@ -124,3 +124,33 @@ def generate(limit, **kwargs): thing = next(stream) assert thing not in seen seen.add(thing) + + def test_comments__with_continue_after_id( + self, + ): + Thing = namedtuple("Thing", ["fullname"]) + initial_things = [Thing(n) for n in reversed(range(100))] + counter = 99 + + def generate(limit, params=None, **kwargs): + nonlocal counter + counter += 1 + sliced_things = initial_things + if params: + sliced_things = initial_things[ + : next( + i + for i, thing in enumerate(initial_things) + if thing.fullname == params["before"] + ) + ] + if counter % 2 == 0: + return sliced_things + return [Thing(counter)] + sliced_things[:-1] + + stream = stream_generator(generate, continue_after_id=49) + expected_fullname = 50 + for _ in range(50): + thing = next(stream) + assert thing.fullname == expected_fullname, thing + expected_fullname += 1