From 950773e54230e4b197d0f8746e955b5eb9b160bb Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Fri, 18 Jun 2021 15:27:36 -0600 Subject: [PATCH] removes temps, massive refactor --- client/index.ts | 7 +- client/lib/action-serializer.ts | 44 ----- client/lib/patch-db.ts | 130 ++------------ client/lib/sequence-store.ts | 211 ----------------------- client/lib/source/poll-source.ts | 5 +- client/lib/source/source.ts | 2 +- client/lib/source/ws-source.ts | 18 +- client/lib/store.ts | 55 +++--- client/lib/types.ts | 29 ++++ client/package-lock.json | 12 -- client/package.json | 1 - client/tests/mocks/bootstrapper.mock.ts | 21 --- client/tests/mocks/http.mock.ts | 17 -- client/tests/mocks/mock-data.json | 1 - client/tests/mocks/source.mock.ts | 18 -- client/tests/patch-db.test.ts | 90 ---------- client/tests/seq.test.ts | 195 --------------------- client/tests/store.test.ts | 214 ------------------------ client/tests/temp-seq.test.ts | 158 ----------------- 19 files changed, 93 insertions(+), 1135 deletions(-) delete mode 100644 client/lib/action-serializer.ts delete mode 100644 client/lib/sequence-store.ts create mode 100644 client/lib/types.ts delete mode 100644 client/tests/mocks/bootstrapper.mock.ts delete mode 100644 client/tests/mocks/http.mock.ts delete mode 100644 client/tests/mocks/mock-data.json delete mode 100644 client/tests/mocks/source.mock.ts delete mode 100644 client/tests/patch-db.test.ts delete mode 100644 client/tests/seq.test.ts delete mode 100644 client/tests/store.test.ts delete mode 100644 client/tests/temp-seq.test.ts diff --git a/client/index.ts b/client/index.ts index e775ad8..1c3e539 100644 --- a/client/index.ts +++ b/client/index.ts @@ -1,9 +1,6 @@ -export * from './lib/store' - export * from './lib/source/poll-source' export * from './lib/source/ws-source' export * from './lib/source/source' - -export * from './lib/action-serializer' export * from './lib/patch-db' -export * from './lib/sequence-store' +export * from './lib/store' +export * from './lib/types' diff --git a/client/lib/action-serializer.ts b/client/lib/action-serializer.ts deleted file mode 100644 index ae2089e..0000000 --- a/client/lib/action-serializer.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { Subject, BehaviorSubject, of, Observable, Observer, throwError } from 'rxjs' -import { concatMap, map, catchError, filter, take } from 'rxjs/operators' - -export type Action = { - action: () => T, - notify: BehaviorSubject -} - -export class ActionSerializer { - private readonly sequentialActions = new Subject>() - - constructor () { - this.sequentialActions.pipe( - concatMap(({ action, notify }) => fromSync$(action).pipe( - catchError(e => of(notify.next({ error: e }))), - map(result => notify.next({ result })), - )), - catchError(e => of(console.error(`Action Serializer Exception`, e))), - ).subscribe() - } - - run$ (action: () => T): Observable { - const notify = new BehaviorSubject(undefined) as BehaviorSubject - this.sequentialActions.next({ action, notify }) - return (notify as BehaviorSubject).pipe( - filter(res => res !== undefined), - take(1), - concatMap((res: any) => res.error ? throwError(res.error) : of(res.result)), - ) - } -} - -function fromSync$ (action: (s: S) => T, s: S): Observable -function fromSync$ (action: () => T): Observable -function fromSync$ (action: (s: S) => T, s?: S): Observable { - return new Observable((subscriber: Observer) => { - try { - subscriber.next(action(s as S)) - subscriber.complete() - } catch (e) { - subscriber.error(e) - } - }) -} diff --git a/client/lib/patch-db.ts b/client/lib/patch-db.ts index 68cb98d..95f4c7c 100644 --- a/client/lib/patch-db.ts +++ b/client/lib/patch-db.ts @@ -1,133 +1,33 @@ -import { EMPTY, from, merge, Observable, of, Subject, timer } from 'rxjs' -import { catchError, concatMap, debounce, debounceTime, delay, finalize, map, skip, take, takeUntil, tap, throttleTime } from 'rxjs/operators' +import { merge, Observable, of } from 'rxjs' +import { concatMap, finalize, map, tap } from 'rxjs/operators' import { Source } from './source/source' -import { Dump, SequenceStore, Result, Revision } from './sequence-store' import { Store } from './store' +import { DBCache } from './types' export { Operation } from 'fast-json-patch' export class PatchDB { - private readonly cancelStashTimeout = new Subject() + store: Store - private constructor ( - private readonly sources: Source[], - private readonly http: Http, - private readonly sequenceStore: SequenceStore, - private readonly timeoutForMissingRevision: number = 5000, - ) { } - - get store (): Store { return this.sequenceStore.store } - - static async init (conf: PatchDbConfig): Promise> { - console.log('PATCHDB - init(): ', conf) - const { sources, http, bootstrapper, timeoutForMissingRevision } = conf - - let sequence: number = 0 - let data: T = { } as T - try { - const cache = await bootstrapper.init() - console.log('bootstrapped: ', cache) - sequence = cache.sequence - data = cache.data - } catch (e) { - // @TODO what to do if bootstrapper fails? - console.error('bootstrapper failed: ', e) - } - - const store = new Store(data) - - const sequenceStore = new SequenceStore(store, sequence) - - // update cache when sequenceStore emits, throttled - sequenceStore.watch$().pipe(debounceTime(500), skip(1)).subscribe(({ data, sequence }) => { - console.log('PATCHDB - update cache(): ', sequence, data) - bootstrapper.update({ sequence, data }).catch(e => { - console.error('Exception in updateCache: ', e) - }) - }) - - return new PatchDB(sources, http, sequenceStore, timeoutForMissingRevision) + constructor ( + private readonly source: Source, + readonly cache: DBCache, + ) { + this.store = new Store(cache) } - sync$ (): Observable { + sync$ (): Observable> { console.log('PATCHDB - sync$()') - const sequence$ = this.sequenceStore.watch$().pipe(map(cache => cache.sequence)) + const sequence$ = this.store.watchAll$().pipe(map(cache => cache.sequence)) // nested concatMaps, as it is written, ensure sync is not run for update2 until handleSyncResult is complete for update1. // flat concatMaps would allow many syncs to run while handleSyncResult was hanging. We can consider such an idea if performance requires it. - return merge(...this.sources.map(s => s.watch$(sequence$))).pipe( + return merge(this.source.watch$(sequence$)).pipe( tap(update => console.log('PATCHDB - source updated:', update)), - concatMap(update => - this.sequenceStore.update$(update).pipe( - concatMap(res => this.handleSyncResult$(res)), - ), - ), + concatMap(update => this.store.update$(update)), finalize(() => { - console.log('FINALIZING') - this.sequenceStore.sequence = 0 - }), - ) - } - - private handleSyncResult$ (res: Result): Observable { - console.log('PATCHDB - handleSyncResult$(): ', res) - switch (res) { - case Result.DUMPED: return of(this.cancelStashTimeout.next('')) // cancel stash timeout - case Result.REVISED: return of(this.cancelStashTimeout.next('')) // cancel stash timeout - case Result.STASHED: return this.handleStashTimeout$() // call error after timeout - case Result.ERROR: return this.handlePatchError$() // call error immediately - default: return EMPTY - } - } - - private handleStashTimeout$ (): Observable { - console.log('PATCHDB - handleStashTimeout$()') - return timer(this.timeoutForMissingRevision).pipe( - tap(time => console.log('PATCHDB - timeout for missing patch:', time)), - takeUntil(this.cancelStashTimeout), - take(1), - concatMap(() => this.handlePatchError$()), - ) - } - - // Here flattened concatMaps are functionally equivalent to nested because the source observable emits at most once. - private handlePatchError$ (): Observable { - return from(this.http.getDump()).pipe( - concatMap(dump => this.sequenceStore.update$(dump)), - // note the above is a "dump" update, which will always return DUMPED (it can't error) - // handleSyncResult will therefore never re-call handlePatchError() - concatMap(res => this.handleSyncResult$(res)), - catchError(e => { - console.error(e) - return EMPTY + console.log('PATCHDB - FINALIZING sync$()') + this.store.reset() }), ) } } - -export type PatchDbConfig = { - http: Http - sources: Source[] - bootstrapper: Bootstrapper - timeoutForMissingRevision?: number -} - -export enum PatchOp { - ADD = 'add', - REMOVE = 'remove', - REPLACE = 'replace', -} - -export interface Http { - getRevisions (since: number): Promise> - getDump (): Promise> -} - -export interface Bootstrapper { - init (): Promise> - update (cache: DBCache): Promise -} - -export interface DBCache{ - sequence: number, - data: T -} diff --git a/client/lib/sequence-store.ts b/client/lib/sequence-store.ts deleted file mode 100644 index 4bee3ae..0000000 --- a/client/lib/sequence-store.ts +++ /dev/null @@ -1,211 +0,0 @@ -import { BehaviorSubject, Observable } from 'rxjs' -import { filter } from 'rxjs/operators' -import { Store } from './store' -import { DBCache } from './patch-db' -import { patchDocument } from './store' -import { ActionSerializer } from './action-serializer' -import { Operation } from 'fast-json-patch' -import BTree from 'sorted-btree' - -export class SequenceStore { - private readonly lastState$: BehaviorSubject> = new BehaviorSubject(undefined as any) - private readonly actionSerializer = new ActionSerializer() - private preTemps: T - private stashed = new BTree() - private temps: UpdateTemp[] = [] - private sequence$ = new BehaviorSubject(0) - - constructor ( - readonly store: Store, - initialSequence: number, - ) { - const data = store.peek - this.preTemps = data - this.commit({ data, sequence: initialSequence }, []) - } - - get sequence (): number { return this.sequence$.getValue() } - set sequence (seq: number) { this.sequence$.next(seq) } - - // subscribe to watch$ to get sequence + T feed, e.g. for caching and bootstrapping from a cache - watch$ (): Observable> { - return this.lastState$.pipe(filter(a => !!a)) - } - - update$ (update: Update): Observable { - return this.actionSerializer.run$(() => { - if (isTemp(update)) { - return this.updateTemp(update) - } else { - return this.updateReal(update) - } - }) - } - - viewRevisions (): Revision[] { - // return this.revisions.filter(a => !!a) - return this.stashed.valuesArray() - } - - private updateReal (update: UpdateReal): Result { - if (update.expireId) { this.temps = this.temps.filter(temp => temp.expiredBy !== update.expireId) } - if (update.id <= this.sequence) return Result.NOOP - - const { result, dbCache, revisionsToDelete } = isDump(update) ? - this.dump(update) : - this.revise(update) - - this.preTemps = dbCache.data - const afterTemps = this.stageSeqTemps(dbCache) - this.commit(afterTemps, revisionsToDelete) - return result - } - - private updateTemp (update: UpdateTemp): Result { - this.temps.push(update) - const data = patchDocument(update.patch, this.store.peek) - const res = { - data, - sequence: this.sequence, - } - this.commit(res, []) - return Result.TEMP - } - - private commit (res: DBCache, revisionsToDelete: number[]): void { - const { data, sequence } = res - this.stashed.deleteKeys(revisionsToDelete) - this.sequence$.next(sequence) - this.store.set(data) - this.lastState$.next({ data, sequence }) - } - - private dump (dump: Dump): { result: Result, dbCache: DBCache, revisionsToDelete: number[] } { - try { - const oldRevisions = this.stashed.filter((key, _) => key < dump.id).keysArray() - const { dbCache, revisionsToDelete } = this.processRevisions(dump.value, dump.id) - return { - result: Result.DUMPED, - dbCache, - revisionsToDelete: oldRevisions.concat(revisionsToDelete), - } - } catch (e) { - console.error(`Dump error for ${JSON.stringify(dump)}: `, e) - return { - result: Result.ERROR, - dbCache: { - data: this.preTemps, - sequence: this.sequence, - }, - revisionsToDelete: [], - } - } - } - - private revise (revision: Revision): { result: Result, dbCache: DBCache, revisionsToDelete: number[] } { - this.stashed.set(revision.id, revision) - try { - return this.processRevisions(this.preTemps, this.sequence) - } catch (e) { - console.error(`Revise error for ${JSON.stringify(revision)}: `, e) - return { - result: Result.ERROR, - dbCache: { - data: this.preTemps, - sequence: this.sequence, - }, - revisionsToDelete: [], - } - } - } - - private stageSeqTemps> (resultSoFar: S): S { - return this.temps.reduce(({ data, ...rest }, nextTemp ) => { - try { - const nextContents = patchDocument(nextTemp.patch, data) - return { data: nextContents, ...rest } as S - } catch (e) { - console.error(`Skipping temporary patch ${JSON.stringify(nextTemp)} due to exception: `, e) - return { data, ...rest } as S - } - }, resultSoFar) - } - - private processRevisions (data: T, sequence: number): { result: Result, dbCache: DBCache, revisionsToDelete: number[] } { - const applicableRevisions = this.applicableRevisions(sequence) - - console.log('APPLICABLE: ', applicableRevisions) - - if (!applicableRevisions.length) { - return { - result: Result.STASHED, - dbCache: { - data, - sequence, - }, - revisionsToDelete: [], - } - } - - const revisionsToDelete: number[] = [] - const toReturn = applicableRevisions.reduce(({ data, sequence }, revision) => { - const nextContents = patchDocument(revision.patch, data) - const nextSequence = sequence + 1 - revisionsToDelete.push(revision.id) // @TODO original was `revisionsToDelete.concat([seqPatch.id])`, why? - return { data: nextContents, sequence: nextSequence } - }, { data, sequence }) - - return { - result: Result.REVISED, - dbCache: toReturn, - revisionsToDelete, - } - } - - private applicableRevisions (sequence: number): Revision[] { - const toReturn = [] as Revision[] - - let i = sequence - while (true) { - i++ - const next = this.stashed.get(i) - if (next) { - toReturn.push(next) - } else { - break - } - } - - return toReturn - } -} - -export enum Result { - DUMPED = 'DUMPED', // store was dumped/replaced - REVISED = 'REVISED', // store was revised - TEMP = 'TEMP', // store was revised temporarily - STASHED = 'STASHED', // attempted to revise store but sequence too high. revision stashed for later - ERROR = 'ERROR', // attempted to revise/dump store, but failed - NOOP = 'NOOP', // sequence too low, update ignored -} - -// revise a collection of nodes. -export type Revision = { id: number, patch: Operation[], expireId: string | null } -// dump/replace the entire store with T -export type Dump = { id: number, value: T, expireId: string | null } - -export type Update = UpdateReal | UpdateTemp -export type UpdateReal = Revision | Dump -export type UpdateTemp = Omit & { expiredBy : string } - -function isTemp (s: Update): s is UpdateTemp { - return !!(s as any).expiredBy -} - -function isRevision (s: Update): s is Revision { - return !isTemp(s) && !!(s as any).patch -} - -function isDump (s: UpdateReal): s is Dump { - return !isTemp(s) && !!(s as any).value -} diff --git a/client/lib/source/poll-source.ts b/client/lib/source/poll-source.ts index f47c99a..468706e 100644 --- a/client/lib/source/poll-source.ts +++ b/client/lib/source/poll-source.ts @@ -1,7 +1,6 @@ import { BehaviorSubject, concat, from, Observable, of } from 'rxjs' import { catchError, concatMap, delay, skip, switchMap, take, tap } from 'rxjs/operators' -import { Http } from '../patch-db' -import { UpdateReal } from '../sequence-store' +import { Http, Update } from '../types' import { Source } from './source' export type PollConfig = { @@ -15,7 +14,7 @@ export class PollSource implements Source { private readonly http: Http, ) { } - watch$ (sequence$: Observable): Observable> { + watch$ (sequence$: Observable): Observable> { console.log('POLL_SOURCE - watch$()') const polling$ = new BehaviorSubject('') diff --git a/client/lib/source/source.ts b/client/lib/source/source.ts index b58608f..ae4cccd 100644 --- a/client/lib/source/source.ts +++ b/client/lib/source/source.ts @@ -1,5 +1,5 @@ import { Observable } from 'rxjs' -import { Update } from '../sequence-store' +import { Update } from '../types' export interface Source { watch$ (sequence$?: Observable): Observable> diff --git a/client/lib/source/ws-source.ts b/client/lib/source/ws-source.ts index 56bc4bb..f7d5796 100644 --- a/client/lib/source/ws-source.ts +++ b/client/lib/source/ws-source.ts @@ -1,21 +1,27 @@ import { Observable } from 'rxjs' import { webSocket, WebSocketSubject, WebSocketSubjectConfig } from 'rxjs/webSocket' -import { UpdateReal } from '../sequence-store' +import { Update } from '../types' import { Source } from './source' export class WebsocketSource implements Source { - private websocket$: WebSocketSubject> + private websocket$: WebSocketSubject> constructor ( readonly url: string, ) { - const fullConfig: WebSocketSubjectConfig> = { + const fullConfig: WebSocketSubjectConfig> = { url, openObserver: { - next: () => console.log('WebSocket connection open'), + next: () => { + console.log('WebSocket connection open') + this.websocket$.next('open message' as any) + }, }, closeObserver: { - next: () => console.log('WebSocket connection closed'), + next: () => { + console.log('WebSocket connection closed') + // @TODO re-open websocket on retry loop + }, }, closingObserver: { next: () => console.log('Websocket subscription cancelled, websocket closing'), @@ -24,5 +30,5 @@ export class WebsocketSource implements Source { this.websocket$ = webSocket(fullConfig) } - watch$ (): Observable> { return this.websocket$.asObservable() } + watch$ (): Observable> { return this.websocket$.asObservable() } } diff --git a/client/lib/store.ts b/client/lib/store.ts index 444427f..b056f8b 100644 --- a/client/lib/store.ts +++ b/client/lib/store.ts @@ -1,17 +1,17 @@ -import { from, Observable } from 'rxjs' -import { applyPatch, Operation } from 'fast-json-patch' -import { observable, runInAction } from 'mobx' +import { from, Observable, of } from 'rxjs' import { toStream } from 'mobx-utils' +import { DBCache, Dump, Revision, Update } from './types' +import { applyPatch } from 'fast-json-patch' -export class Store { - private o: { data: T } +export class Store { + cache: DBCache - constructor (data: T) { - this.o = observable({ data }) + constructor ( + readonly initialCache: DBCache, + ) { + this.cache = initialCache } - get peek (): T { return this.o.data } - watch$ (): Observable watch$ (p1: P1): Observable watch$ (p1: P1, p2: P2): Observable @@ -20,29 +20,38 @@ export class Store { watch$ (p1: P1, p2: P2, p3: P3, p4: P4, p5: P5): Observable watch$ (p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6): Observable watch$ (...args: (string | number)[]): Observable { - return from(toStream(() => this.peekAccess(...args), true)) + return from(toStream(() => this.peekNode(...args), true)) } - set (data: T): void { - runInAction(() => this.o.data = data) + watchAll$ (): Observable> { + return of(this.cache) } - applyPatchDocument (patch: Operation[]): { oldDocument: T, newDocument: T } { - const oldDocument = this.o.data - const newDocument = patchDocument(patch, oldDocument) - this.set(newDocument) - return { oldDocument, newDocument } + update$ (update: Update): Observable> { + console.log('UPDATE:', update) + if ((update as Revision).patch) { + if (this.cache.sequence + 1 !== update.id) throw new Error(`Outdated sequence: current: ${this.cache.sequence}, new: ${update.id}`) + applyPatch(this.cache.data, (update as Revision).patch, true, true) + } else { + this.cache.data = (update as Dump).value + } + + this.cache.sequence = update.id + return of(this.cache) } - private peekAccess (...args: (string | number)[]): any { + reset (): void { + this.cache = { + sequence: 0, + data: { }, + } + } + + private peekNode (...args: (string | number)[]): any { try { - return args.reduce((acc, next) => (acc as any)[`${next}`], this.o.data) + return args.reduce((acc, next) => (acc as any)[`${next}`], this.cache.data) } catch (e) { return undefined } } } - -export function patchDocument (patch: Operation[], doc: T): T { - return applyPatch(doc, patch, true, false).newDocument -} diff --git a/client/lib/types.ts b/client/lib/types.ts new file mode 100644 index 0000000..4979f7d --- /dev/null +++ b/client/lib/types.ts @@ -0,0 +1,29 @@ +import { Operation } from 'fast-json-patch' + +// revise a collection of nodes. +export type Revision = { id: number, patch: Operation[], expireId: string | null } +// dump/replace the entire store with T +export type Dump = { id: number, value: T, expireId: string | null } + +export type Update = Revision | Dump + +export enum PatchOp { + ADD = 'add', + REMOVE = 'remove', + REPLACE = 'replace', +} + +export interface Http { + getRevisions (since: number): Promise> + getDump (): Promise> +} + +export interface Bootstrapper { + init (): Promise> + update (cache: DBCache): Promise +} + +export interface DBCache{ + sequence: number, + data: T | { } +} \ No newline at end of file diff --git a/client/package-lock.json b/client/package-lock.json index 653692c..d083b8e 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -14,7 +14,6 @@ "mobx": "^6.1.4", "mobx-utils": "^6.0.3", "rxjs": "^6.6.3", - "sorted-btree": "^1.5.0", "uuid": "^8.3.2" }, "devDependencies": { @@ -1179,12 +1178,6 @@ "randombytes": "^2.1.0" } }, - "node_modules/sorted-btree": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/sorted-btree/-/sorted-btree-1.5.0.tgz", - "integrity": "sha512-1KzY80r3VpwGLGN/9oWjReUml3czxKfLz4iMV8Ro9KAHCg9xt0HwTkcb20JR+sHCiR5WUJ6uMAbe/HB3gy1qYA==", - "license": "MIT" - }, "node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -2569,11 +2562,6 @@ "randombytes": "^2.1.0" } }, - "sorted-btree": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/sorted-btree/-/sorted-btree-1.5.0.tgz", - "integrity": "sha512-1KzY80r3VpwGLGN/9oWjReUml3czxKfLz4iMV8Ro9KAHCg9xt0HwTkcb20JR+sHCiR5WUJ6uMAbe/HB3gy1qYA==" - }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", diff --git a/client/package.json b/client/package.json index 2eebd2a..e1d531c 100644 --- a/client/package.json +++ b/client/package.json @@ -16,7 +16,6 @@ "mobx": "^6.1.4", "mobx-utils": "^6.0.3", "rxjs": "^6.6.3", - "sorted-btree": "^1.5.0", "uuid": "^8.3.2" }, "devDependencies": { diff --git a/client/tests/mocks/bootstrapper.mock.ts b/client/tests/mocks/bootstrapper.mock.ts deleted file mode 100644 index d93f4e0..0000000 --- a/client/tests/mocks/bootstrapper.mock.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { Bootstrapper, DBCache } from '../../lib/patch-db' - -export class MockBootstrapper implements Bootstrapper { - - constructor ( - private sequence: number = 0, - private data: T = { } as T, - ) { } - - async init (): Promise> { - return { - sequence: this.sequence, - data: this.data as T, - } - } - - async update (cache: DBCache): Promise { - this.sequence = cache.sequence - this.data = cache.data - } -} \ No newline at end of file diff --git a/client/tests/mocks/http.mock.ts b/client/tests/mocks/http.mock.ts deleted file mode 100644 index de7734c..0000000 --- a/client/tests/mocks/http.mock.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { Http } from '../../lib/patch-db' -import { Revision, Dump } from '../../lib/sequence-store' - -export class MockHttp implements Http { - constructor (private readonly mockData: { - getSequences: Revision[], - getDump: Dump - }) { } - - getRevisions (): Promise { - return Promise.resolve(this.mockData.getSequences) - } - - getDump (): Promise> { - return Promise.resolve(this.mockData.getDump) - } -} diff --git a/client/tests/mocks/mock-data.json b/client/tests/mocks/mock-data.json deleted file mode 100644 index 233a0d8..0000000 --- a/client/tests/mocks/mock-data.json +++ /dev/null @@ -1 +0,0 @@ -{"kind": "Listing", "data": {"modhash": null, "dist": 12, "children": [{"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "pics", "selftext": "", "author_fullname": "t2_2ilh9wk", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "Petroglyphs seen on a hike in Utah", "link_flair_richtext": [], "subreddit_name_prefixed": "r/pics", "hidden": false, "pwls": 6, "link_flair_css_class": null, "downs": 0, "thumbnail_height": 127, "top_awarded_type": null, "hide_score": false, "name": "t3_lajrbx", "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 0.97, "author_flair_background_color": "", "ups": 37408, "total_awards_received": 24, "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": null, "can_mod_post": false, "score": 37408, "approved_by": null, "author_premium": true, "thumbnail": "https://a.thumbs.redditmedia.com/wy6lrhveGNwOro62lwK3vipLdOX8MU5XDb0fDqFP-M8.jpg", "edited": false, "author_flair_css_class": "x", "author_flair_richtext": [], "websocket_url": "wss://ws-06a9d4455a99e86c7.wss.redditmedia.com/link/lajrbx?m=AQAA9l4aYH8xRAciiTamHXi-BG8oZpobg80p_PjXS6A1DRuwx4j9", "gildings": {"gid_1": 9}, "post_hint": "image", "content_categories": ["photography"], "is_self": false, "subreddit_type": "public", "created": 1612257329.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "domain": "i.redd.it", "allow_live_comments": true, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/66t2hc3ntye61.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/66t2hc3ntye61.jpg?auto=webp\u0026s=86f86d1dba569024d625a8b1b6a467e9b1c6ab5e", "width": 1430, "height": 1305}, "resolutions": [{"url": "https://preview.redd.it/66t2hc3ntye61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=3149e969497777abf092171cbd2581d86d9a6535", "width": 108, "height": 98}, {"url": "https://preview.redd.it/66t2hc3ntye61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=36503b65e2f711edb0cefc66fcff3a54e6f3a318", "width": 216, "height": 197}, {"url": "https://preview.redd.it/66t2hc3ntye61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=38548106064300d06000ab0e0d1e30f20da864b1", "width": 320, "height": 292}, {"url": "https://preview.redd.it/66t2hc3ntye61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=d41250085a0c091f9dbffc67392e31f0044c95bd", "width": 640, "height": 584}, {"url": "https://preview.redd.it/66t2hc3ntye61.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=4fb552e1d94a97c7716e441d0731cfdcc7c2956d", "width": 960, "height": 876}, {"url": "https://preview.redd.it/66t2hc3ntye61.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=ff84eba05b0cd93006ef727280e63c3f18ef4267", "width": 1080, "height": 985}], "variants": {}, "id": "2Fqfc9M5-138FVBYWsmopf6rYb9gMDhh77_SimXc27Q"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 150, "id": "award_f44611f1-b89e-46dc-97fe-892280b13b82", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Thank you stranger. Shows the award.", "end_date": null, "subreddit_coin_reward": 0, "count": 7, "static_icon_height": 2048, "name": "Helpful", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 125, "id": "award_5f123e3d-4f48-42f4-9c11-e98b566d5897", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When you come across a feel-good thing.", "end_date": null, "subreddit_coin_reward": 0, "count": 2, "static_icon_height": 2048, "name": "Wholesome", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "gid_1", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Shows the Silver Award... and that's it.", "end_date": null, "subreddit_coin_reward": 0, "count": 9, "static_icon_height": 512, "name": "Silver", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 80, "id": "award_8352bdff-3e03-4189-8a08-82501dd8f835", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Everything is better with a good hug", "end_date": null, "subreddit_coin_reward": 0, "count": 6, "static_icon_height": 2048, "name": "Hugz", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png"}], "awarders": [], "media_only": false, "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": null, "show_media": true, "description": "[Rules](https://www.reddit.com/r/pics/wiki/index)\n\n1. No screenshots or pics where the only focus is a screen. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_1_-_no_screenshots)\n\n2. No pictures with added or superimposed digital text. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_2_-_no_digital_elements)\n\n3. No porn or gore. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_3_-_no_porn.2Fgore)\n\n4. No personal information, direct links to any social media, subreddit-related meta-drama, witch-hunts or missing/found posts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_4_-_no_doxing.2Fwitch_hunts)\n\n5. All titles must follow title rules. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/titles)\n\n6. Submissions are only allowed from one of the approved image hosts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_6_-_only_allowed_image_hosts) \n\n7. No gifs or videos. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_7_-_no_gifs)\n\n8. Comments must be civil. Any racism, bigotry, or any other kind of hate speech is strictly prohibited and will result in a ban. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_8_-_civility)\n\n9. No submissions featuring before-and-after depictions of personal health progress or achievement. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_9_-_no_progress_pics)\n\n10. No false claims of ownership (FCoO) or flooding. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_10_-_no_fcoo.2Fflooding)\n\n11. Reposts of images on the front page, or within the set limit of /r/pics/top, will be removed. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_11_-_repost_limitations)\n\n12. Normal users are allowed only one self-promotional link per post. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_12_-_limited_self-promotion)\n\n---\n\n[Additional/Temporary Rules](https://www.reddit.com/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* From January 14, 2020 until February 14, 2020, we will not allow political shitposts or political karmawhoring. [details\u003E\u003E](/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* Serial reposters may be filtered or banned. \n\n* We prefer that new users post original content and not common pictures from the internet.\n\n* All posts by new users require mod approval in order to weed out spammers. \n\n* Please mark spoilers for current movies/games/books with spoiler tags. \n\n---\n\nIf you want a picture that belongs to you to be removed from /r/pics then please file a copyright notice [here](https://reddit.zendesk.com/hc/en-us/requests/new?ticket_form_id=73465).\n\n---\n\nClick [here](https://www.reddit.com/r/pics/wiki/links) to find more specialized picture subreddits", "user_is_muted": false, "display_name": "pics", "header_img": "https://b.thumbs.redditmedia.com/1zT3FeN8pCAFIooNVuyuZ0ObU0x1ro4wPfArGHl3KjM.png", "title": "Reddit Pics", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "#ffffff", "icon_img": "https://b.thumbs.redditmedia.com/VZX_KQLnI1DPhlEZ07bIcLzwR1Win808RIt7zm49VIQ.png", "icon_color": "", "submit_link_label": "Submit an image", "header_size": [160, 64], "restrict_commenting": false, "subscribers": 26711137, "submit_text_label": "", "link_flair_position": "left", "display_name_prefixed": "r/pics", "key_color": "#222222", "name": "t5_2qh0u", "created": 1201249869.0, "url": "/r/pics/", "quarantine": false, "created_utc": 1201221069.0, "banner_size": null, "user_is_contributor": false, "public_description": "A place for pictures and photographs.", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2qh0u", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "lajrbx", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "achillea666", "discussion_type": null, "num_comments": 550, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": "dark", "permalink": "/r/pics/comments/lajrbx/petroglyphs_seen_on_a_hike_in_utah/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/66t2hc3ntye61.jpg", "subreddit_subscribers": 26711137, "created_utc": 1612228529.0, "num_crossposts": 2, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "priority_id": 1, "subreddit": "u_MillerLite_Official", "selftext": "", "author_fullname": "t2_59lq4f28", "adserver_click_url": null, "saved": false, "promoted_by": null, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "This is a Reddit ad about our newspaper ad about our Ridiculously Long Calorie-Burning Big Game URL that is a clever marketing stunt that will give away beer during Michelob Ultra's ad.", "link_flair_richtext": [], "subreddit_name_prefixed": "u/MillerLite_Official", "hidden": false, "pwls": null, "link_flair_css_class": null, "downs": 0, "impression_id": 2933271137792054456, "thumbnail_height": 105, "top_awarded_type": null, "hide_score": true, "name": "t3_l87bo8", "quarantine": false, "href_url": "https://www.millerlite.com/NiceTryButYouHaveToTypeTheWholeURLToWinAPrizeAndBurnACalorie", "link_flair_text_color": "dark", "upvote_ratio": 0.1, "author_flair_background_color": null, "outbound_link": {"url": "https://alb.reddit.com/cr?z=gAAAAABgGQ128CL1Hm7Z8qg_7AcBVd2SMcPCvImnc3svrxBb6zkpD_1BduCz9HexQV49pSRYdRR5L5MHoivDClUkC3TQPw8YxCKEFh-AIEwAHyvql7a1BeVtUnayLwr-uVVOwcVLC6IZQuoDqRWdbNd1BFyQ803WOGxD7o_fnfXnQRW4wSEiu5Vn78Q7T0SKGRCEXPqB4A4s_RYNsyx2YXmlA5wPrTgVmys4yO22ELytTm3MnSxxfTTUm_xEAquRJSpeTOLnq-RIo7tH_rr5xuW54GT6HAU5BbBN0MA1uGFUr74HVUoxk4nnk4dsgkbPRe0AN2AiuHyFYLtqEaDoWq11mPDrhHw1q92IBToRZ2gWu2O1U-p_9NQLpKAoGbH-wSaNidzRF3Bi4l3jVzguZnOHie72sRie7tHXmKk7H4vbpx5bnKpwgfG46GNx0jbuu6LmJnfKuiXehBR3kx7yJm8n9JXfUcUIS0-IPIBuvWU143r0QM1hNmYq2QD-k-mswM2ePrPt4azjjHIp7tP5oPzM9R7IZYwCOwHZL12I1oWBtdI0BeHad5mFkOXLEr14QZcTCPpf1EH2u0Iwj6c3eU7XlhmJLDEwu1vPoNqV1NlUuvY_9_7bCqCN6VyRxQd1FDIBn3UCt8JIS5JbE7qJ1gWE-Tlmtx2r_zRvvQpNsPrDz6y8ANx5iNv0pdoSpPxsOtUPJKPlgCR5Jwm6TRp6x0CRA82BsIjQ6192ZjcWp5iU3um-JcAUmUsFxzXWUDJz0TJTetkI85oHMMTy84qExqYRqodUYtdUwDlvTadllVnXmwtFke4QsahYCRe62pRKP2g2-5mp15T19hrsln5xsukVM0ZxCzK-LgZDZG2nR-JlCw7xBs7XWiU33V51PGHY1AudH9SNv1elKOxSxLYpWq_H6TiRUhwj8-gShptIUJlSNegeXMbVGMPytr1imrZo-XL71gU-0MX6y3F11gPyRqdiWH5GFN0_YPdn8kAbd4r46ZUi2mN8u8Xq86XWCEqvricoqSb54rIdxFF8wTE42-8BnMooRHH6pkIgpJ8lmp47wkVSXG7beJhJ_JzDtKRfuSETIVGL1467nb_Q4zwEnsps6leEmdDahQXvcnm5sgX5YHFkkdKxfYJZPmiS8sNTwBIDZIgQvC4J94X2sexzczEthJf2dbDbt3cTS-gXbta2G8PkKn6IhELkM_PalGdzbrj0zE7oTy8avq2JJUS99UWzh8X-4gJbLtSk-DYaXpUCi9MqL8xhzITfoa1B5MY-YJXKVekmrsIfUyrDzZlVC7mcsHpQl32XcNpFDbqMJh7_W-vHRKt5BiW3c04EmdXGI0LOj35uqo2-7hOExDPqtIFxgihfyjK3T_D8_UScxXRMGrAyK8vKFUDwcWLEtm4WQmLrjhhUgyGUKZqYm9qxxK8sbTAWga_DHqKZOrEhy4cgYptlXwrJKrcT16r4MwoedAFfzcBEwaxjA5Bj3e-HVa67VCFS8O_x1EkOS0faY2XClKTztpVkiHtmR7vL3Ey9eWQCQmQy2dmcF4pYUvdI1urTk1fcUhCdkq52Schv-uWmGQxJQ_ofAHcRYYEU-Aa2MrfZFxf6dHNU5xbv2iiKO4gcDNTaOUWq7B9h3zDsSTY39uDtL6kLef0xPwkwGVd0_DL5mU8z-tiAIRRw5FfHz9ei4ryGhyzAfQTO2CyCjU-fn1GgcQcRmLWGDhng_Pq29esWctfm7MIHgYDENDQ9TQ2AxCJDPS68rkwSonEL-qlzmPoqh-sG9fg6bab0CC6Ox7TiO2JzvjnQZeNqhoI10Xx3jRcC084D3cEhgGyyFA6gcf-MJFndaHm7xymhyrs4qRFpgHnuYGFEvD_an6paJryHU2vPcGp_0CicPMBWvE8t5-X9mwYrgW0H7LWUziyiqLPVE1bjsfs-Agn3ExPCdA_cBxa1igzrgemrWeUAVLo4iSoT-pPRWIZ8rSNiqsB2qNVMHhRFaxcY2IYen0lD10tTMV1VsUWQxGEGh-3AKORtgKGe8JTe7Q7CvKuS11nhREZ8VaUTcZeoqqDX_epk4DsOhoAHJN3hh-TJiRcEZazXKBvL6GXciu66eoi3JFPqcYu6ZA_SZcgTpyw5u8qENRt8PtQNnnm-2bKAFWBxvmJdtIjXAgc6Wggn02G27yEWFEx-6uRqYcmhZCfdiWvDbOcMQSGcC83tiluK2sdbyE3CmmwLwrip7oij5eAmIElThZJsF9zrItwFrVzsliMAA8MN5olUyobt1PAwP_oZTossLj-ebzJxW1h1vkMT50jctqz_oSCJoSv56GFil8Mrpi1G5KY3fGf7sYBlye8qkjKlPiJjc6rfawpfMWecBZIAkO49uG56y3Mt7P0G-mMlJbNF0bxP6WYUsXX6N9MGf96l5Jxlsk1GSZUFPBKdDly8omHkBPuZoLRQSouDtYZNw2u_5wmwQbLzrtspW_Dqu_ixhyEiBT5pnCI0Ke0UZGbyFL8_GZcE4gqQ5RQTEKsZrRc-rbLK5oO9IzfjN_L4A6HyDmJyM28qT1XfuXhXoMhKCEUUptMgBIAw2BJW24hqw457FopJNLTyKoPNLHGa9QmQNOngagRLHoMVssCeZwzRBdO9FNTk7orGLXWwdlGihenmK1RZ_wuS31OzqXOHF8NCCL973aY688M-83fhyKSHBLuTc-SlGZuhb3WptMMqf_duHspMHLRzkg==", "expiration": null, "created": null}, "subreddit_type": "user", "ups": 0, "domain": "millerlite.com", "domain_override": null, "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": false, "original_link": null, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": null, "can_mod_post": false, "promoted_display_name": null, "score": 0, "approved_by": null, "author_premium": false, "thumbnail": "https://b.thumbs.redditmedia.com/ujSbN66TweNTSRyPL-3qCEysDaLPTCkliK9kSUXNFqo.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-00bd5facfce0b76ac.wss.redditmedia.com/link/l87bo8?m=AQAA9l4aYGdXNm92DPBvEM3nAHoJ45NN-UX5mbMKXEKRSXDuxQGW", "gildings": {"gid_1": 1}, "post_hint": "link", "sk_ad_network_data": null, "content_categories": null, "is_self": false, "removed_by": null, "is_blank": false, "created": 1611990687.0, "link_flair_type": "text", "wls": null, "third_party_tracking": null, "author_id": "t2_59lq4f28", "mobile_ad_url": "https://reddit-image.s3.amazonaws.com/xT1ohhw-rN-0VMONnwYVP9KySbngQXtNTaRWFXQPIuk.jpg", "removed_by_category": null, "send_replies": false, "banned_by": null, "author_flair_type": "text", "total_awards_received": 8, "allow_live_comments": false, "selftext_html": null, "likes": null, "suggested_sort": "qa", "eventsOnRender": ["https://alb.reddit.com/i.gif?z=gAAAAABgGQ12l71hzWhC6acuPH1ZZbIgbvl6ahD5J1pnr1Fmq2HxwPPJZBSa3YgFVcqS-zqTGpJrXsNU9rDWZvnuUjMV2aKE-Q5mho3Foc1rEEQXZVIg0F8IUd3PlTYOPlL0N6TC-t1f4-Qn8-vpvIJeUC2s6FZr2an3O_b3E1Ga2_srKwBNV2sql9PbgUnqIMIl_jmJAy96cnzgabRAwM7mgcRtVi2GLP4aGa9-zTLJZ2IG0jFuqYfm3vQR2YuxY6KAz7IAzQ5FaR9F18xUTNl6G1BIvgYJ44__I0eMTwLOb61v3MKc6xF3J2IuUPmMiqIfeTbYYhQEPqVkoMzP8rFgYbuq775CKd_GallnQKWuXyFMQJeGTnvPTjYlhmtrFIhsH-qOfmb2oKI0nZ_F10Y6fOei3VcrFZrMxXj1YhucYPnnnQ5-KPJScGS1upBrf4jl61RnFZ6yUY8cOuW8gFp2OuGHEZelpsA2Ogxjs0ztEzrKSefTTx0eHdLb2y6Ne_YLT8p23Trvd481rKGsCP19sVAITYCxgPQT_GGFg802FRvIO3_RfsHm2epLeQbP95-G-VxWUyy8vQswvW-Gi45KcuirNKC7rz3Ny8fSHLJnYrxYvfHjBnWUGtkZ1krRv8ha7ERlmpfAvDgxS1rNF5W-TjltNQQGuUbBgVmDzR_DDzj5-zZG0zuoj5MzHswO5Ind-SXEF3JyFTh418MEcmXw1_P4h0Jk3UX_M_wl5B-E8a7NZuw-ln8omcFc5CWtVlE6t1IxCxOERFwmhU8YlBJsu_xtWehhfnQh3o8KARu9B1lV5DGI9yGIoxcggpe332-0idBKV2BoZaDX1EAJOQVOvo0TA9zgbD43aZeTuJySGa7Tn8DmN67QLZqZWM6lUkcNEK-WukNNosPvClz1cbcNLm2oMuPDnVUOcrzsByPTSJ_ClCd5HIC5YBldbQYSEgoSZftk2Tf8LCSEuKjh1t5AqdpEVfplAQA21gpIgZ6YAswoLAtRLkgAn8Kx6hiRKS9DjFCgaBN03ilLnwTW2LRwRQ0cKfcQr_LSQFiFafXX0-cKKkPzmgIwK30rvi1RUfpBU6RlEYOG84erjrj1QQTbrnPoGzsippWoVzM3EXUBfUAegAxk2da1swPWX37jvIXtMYoL297605eBl1CQBMVjOZgq9nxYWi45uqX-9mBjr0Ih2SFr-sC-jsiW6jygZk8lvdOns-K8j22bGczH_v_sIGWi1bduW9uKJTtwrXl5d5lRUpyVbcsri8VuCl2H0VhfSfo6iFxhkKj-usDbvZjAcslWijIzUBjQQt-ppkcs52wDRSQFhVVQv8eB7zy3SAWgtoIgPJod3laI4FpcHe6VjNb_-Xo-PUMVdDd-WLID4CCN-z4yzxPrUVaXfayZc39DiXgVX7Na7k1raq0fZUfCJQy_yxi-qyFMNHPpXWT5RruazdueZUwT8hxrA6s4aZzxP6_ooz1_q5Mkgb1DgA4-2E9HPejoHTtXqNsDVUW4mH8LXWKsb13jQtogjMcABtxIm6Wf_84YSUo_lWJuyiQDrNgGuhpemDXtCYz9NAeWtQRUyUzU54MqY0UFU6ithwf3zooKV-Y1Fw0teAg7q1pci4blhnTgTtACLHIv_JHuJnsLFsIdrgpkxV90QEcamDiwykADxUD_dSm04w98ihiT8CrYebyoL-3y3HHS_V0fxWn5p280Rt4nId1AD-x3uiumAP1mXQ8Jh6lHqmazO12ebNuEVs9km4VNArUfqhxFka5gUqWuzycIGMWxqFFectBpYMA9kwHDSuqpDV0S9NlhYlG0bqeyqlG2px_0j1KB4lBAYKPkTzBNHR3hJD08DwQCfe35DRQM3fTgRLXpqdLq7RSh5_JHOeysy0XnyGL6y5mqrldN7GpzFN1uzaxsjDzfNZ1rUgUbTIyrT7nnCPjAf9LKEXiXPtWuNf2LxnItnW77AwA6DtfL2bL3B-avNkmUesidRX8tine93PYFFWGS2r9msTKxu187nCCmx2wpbs3qZEYB6YnJujT1yv3AySI0IRZRkj-ybD-5swP2evcFg289Dq0U5lotBTpfDY4c-68fKoy0eb_mjal0yG0Vx24lXvdrJDk-0X60g1cqeYUaeKEIXcAWoaFAOksCL3205vm3EtexNGpiGVObiF-ddl50zxOxkcdB4OdIEewe667cJbAf_gGox_Hh83YpZDuT-t1u3t2DG4HVbY6NfWZ8c19q5gRCYnnEt7fkxzceE3P0WatD8z-uMj6lgwNgwVmTuj3i6Tu4cZAxy_-7qYDK7z_8Bf6TsMMr1nKHe04-hvomowCxsuem9fIPEk5N1wA8dCIVrVows3bAa5UsT0HAvjfGqmF2CczfxcSwWUQoeCkxiRsxlGaRprTAJd1RUJvbF4p4yLAW0Rc8IrmS0conJGfJhJH8F3z8R5vWEVboyFPUU5BiiyTh8eeOBLObA5Z0PbzPTz2cF8imXdyYlIFDtWKJAYpByXllY1gbFyToeccNyCrY5V8K5SMrSXmQ4d93t5oCOc-EbuE="], "banned_at_utc": null, "url_overridden_by_dest": "https://www.millerlite.com/NiceTryButYouHaveToTypeTheWholeURLToWinAPrizeAndBurnACalorie", "view_count": null, "archived": false, "no_follow": true, "is_crosspostable": false, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://external-preview.redd.it/xT1ohhw-rN-0VMONnwYVP9KySbngQXtNTaRWFXQPIuk.jpg?auto=webp\u0026s=4005f3fca8b304ca6848b95852682d8578ef1c20", "width": 1667, "height": 872}, "resolutions": [{"url": "https://external-preview.redd.it/xT1ohhw-rN-0VMONnwYVP9KySbngQXtNTaRWFXQPIuk.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=ea424d68bd13a2d87ff7a1cf97c9b8ad562e92aa", "width": 108, "height": 56}, {"url": "https://external-preview.redd.it/xT1ohhw-rN-0VMONnwYVP9KySbngQXtNTaRWFXQPIuk.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=ddbb5b60a2f1fd7f4a8dbd7729e4c0046c134acf", "width": 216, "height": 112}, {"url": "https://external-preview.redd.it/xT1ohhw-rN-0VMONnwYVP9KySbngQXtNTaRWFXQPIuk.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=2b26a407983e5cb020866388d3a33874eec98b64", "width": 320, "height": 167}, {"url": "https://external-preview.redd.it/xT1ohhw-rN-0VMONnwYVP9KySbngQXtNTaRWFXQPIuk.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=cfce8a6d1d7701cad36d886bd64150a5d9680429", "width": 640, "height": 334}, {"url": "https://external-preview.redd.it/xT1ohhw-rN-0VMONnwYVP9KySbngQXtNTaRWFXQPIuk.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=ffd6d9092058d10128a485bed704efa5c87d41d9", "width": 960, "height": 502}, {"url": "https://external-preview.redd.it/xT1ohhw-rN-0VMONnwYVP9KySbngQXtNTaRWFXQPIuk.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=71ed2cad2dc1a4b6e1c1063350744f921ad639e3", "width": 1080, "height": 564}], "variants": {}, "id": "https://reddit-image.s3.amazonaws.com/xT1ohhw-rN-0VMONnwYVP9KySbngQXtNTaRWFXQPIuk.jpg"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 150, "id": "award_f44611f1-b89e-46dc-97fe-892280b13b82", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Thank you stranger. Shows the award.", "end_date": null, "subreddit_coin_reward": 0, "count": 4, "static_icon_height": 2048, "name": "Helpful", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 125, "id": "award_5f123e3d-4f48-42f4-9c11-e98b566d5897", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When you come across a feel-good thing.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Wholesome", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "gid_1", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Shows the Silver Award... and that's it.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Silver", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 80, "id": "award_8352bdff-3e03-4189-8a08-82501dd8f835", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Everything is better with a good hug", "end_date": null, "subreddit_coin_reward": 0, "count": 2, "static_icon_height": 2048, "name": "Hugz", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png"}], "awarders": [], "media_only": false, "permalink": "/user/MillerLite_Official/comments/l87bo8/this_is_a_reddit_ad_about_our_newspaper_ad_about/", "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": null, "show_media": true, "description": "", "user_is_muted": false, "display_name": "u_MillerLite_Official", "header_img": null, "title": "", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "", "icon_img": "https://styles.redditmedia.com/t5_2aw8yb/styles/profileIcon_jklswxz29u541.jpg?width=256\u0026height=256\u0026crop=256:256,smart\u0026frame=1\u0026s=b0490b94470e132ff603b003ed6e0cba86b6c8e0", "icon_color": "", "submit_link_label": "", "header_size": null, "restrict_commenting": false, "subscribers": 0, "submit_text_label": "", "is_default_icon": false, "link_flair_position": "", "display_name_prefixed": "u/MillerLite_Official", "key_color": "", "name": "t5_2aw8yb", "is_default_banner": true, "url": "/user/MillerLite_Official/", "quarantine": false, "banner_size": null, "user_is_contributor": false, "public_description": "", "link_flair_enabled": false, "disable_contributor_requests": false, "subreddit_type": "user", "user_is_subscriber": false}, "location_lat": null, "can_gild": true, "spoiler": false, "locked": true, "author_flair_text": null, "treatment_tags": [], "promoted": true, "visited": false, "adserver_imp_pixel": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2aw8yb", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "show_media": true, "id": "l87bo8", "is_robot_indexable": true, "promoted_url": null, "location_name": null, "report_reasons": null, "author": "MillerLite_Official", "discussion_type": null, "num_comments": 0, "location_long": null, "events": [{"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12l71hzWhC6acuPH1ZZbIgbvl6ahD5J1pnr1Fmq2HxwPPJZBSa3YgFVcqS-zqTGpJrXsNU9rDWZvnuUjMV2aKE-Q5mho3Foc1rEEQXZVIg0F8IUd3PlTYOPlL0N6TC-t1f4-Qn8-vpvIJeUC2s6FZr2an3O_b3E1Ga2_srKwBNV2sql9PbgUnqIMIl_jmJAy96cnzgabRAwM7mgcRtVi2GLP4aGa9-zTLJZ2IG0jFuqYfm3vQR2YuxY6KAz7IAzQ5FaR9F18xUTNl6G1BIvgYJ44__I0eMTwLOb61v3MKc6xF3J2IuUPmMiqIfeTbYYhQEPqVkoMzP8rFgYbuq775CKd_GallnQKWuXyFMQJeGTnvPTjYlhmtrFIhsH-qOfmb2oKI0nZ_F10Y6fOei3VcrFZrMxXj1YhucYPnnnQ5-KPJScGS1upBrf4jl61RnFZ6yUY8cOuW8gFp2OuGHEZelpsA2Ogxjs0ztEzrKSefTTx0eHdLb2y6Ne_YLT8p23Trvd481rKGsCP19sVAITYCxgPQT_GGFg802FRvIO3_RfsHm2epLeQbP95-G-VxWUyy8vQswvW-Gi45KcuirNKC7rz3Ny8fSHLJnYrxYvfHjBnWUGtkZ1krRv8ha7ERlmpfAvDgxS1rNF5W-TjltNQQGuUbBgVmDzR_DDzj5-zZG0zuoj5MzHswO5Ind-SXEF3JyFTh418MEcmXw1_P4h0Jk3UX_M_wl5B-E8a7NZuw-ln8omcFc5CWtVlE6t1IxCxOERFwmhU8YlBJsu_xtWehhfnQh3o8KARu9B1lV5DGI9yGIoxcggpe332-0idBKV2BoZaDX1EAJOQVOvo0TA9zgbD43aZeTuJySGa7Tn8DmN67QLZqZWM6lUkcNEK-WukNNosPvClz1cbcNLm2oMuPDnVUOcrzsByPTSJ_ClCd5HIC5YBldbQYSEgoSZftk2Tf8LCSEuKjh1t5AqdpEVfplAQA21gpIgZ6YAswoLAtRLkgAn8Kx6hiRKS9DjFCgaBN03ilLnwTW2LRwRQ0cKfcQr_LSQFiFafXX0-cKKkPzmgIwK30rvi1RUfpBU6RlEYOG84erjrj1QQTbrnPoGzsippWoVzM3EXUBfUAegAxk2da1swPWX37jvIXtMYoL297605eBl1CQBMVjOZgq9nxYWi45uqX-9mBjr0Ih2SFr-sC-jsiW6jygZk8lvdOns-K8j22bGczH_v_sIGWi1bduW9uKJTtwrXl5d5lRUpyVbcsri8VuCl2H0VhfSfo6iFxhkKj-usDbvZjAcslWijIzUBjQQt-ppkcs52wDRSQFhVVQv8eB7zy3SAWgtoIgPJod3laI4FpcHe6VjNb_-Xo-PUMVdDd-WLID4CCN-z4yzxPrUVaXfayZc39DiXgVX7Na7k1raq0fZUfCJQy_yxi-qyFMNHPpXWT5RruazdueZUwT8hxrA6s4aZzxP6_ooz1_q5Mkgb1DgA4-2E9HPejoHTtXqNsDVUW4mH8LXWKsb13jQtogjMcABtxIm6Wf_84YSUo_lWJuyiQDrNgGuhpemDXtCYz9NAeWtQRUyUzU54MqY0UFU6ithwf3zooKV-Y1Fw0teAg7q1pci4blhnTgTtACLHIv_JHuJnsLFsIdrgpkxV90QEcamDiwykADxUD_dSm04w98ihiT8CrYebyoL-3y3HHS_V0fxWn5p280Rt4nId1AD-x3uiumAP1mXQ8Jh6lHqmazO12ebNuEVs9km4VNArUfqhxFka5gUqWuzycIGMWxqFFectBpYMA9kwHDSuqpDV0S9NlhYlG0bqeyqlG2px_0j1KB4lBAYKPkTzBNHR3hJD08DwQCfe35DRQM3fTgRLXpqdLq7RSh5_JHOeysy0XnyGL6y5mqrldN7GpzFN1uzaxsjDzfNZ1rUgUbTIyrT7nnCPjAf9LKEXiXPtWuNf2LxnItnW77AwA6DtfL2bL3B-avNkmUesidRX8tine93PYFFWGS2r9msTKxu187nCCmx2wpbs3qZEYB6YnJujT1yv3AySI0IRZRkj-ybD-5swP2evcFg289Dq0U5lotBTpfDY4c-68fKoy0eb_mjal0yG0Vx24lXvdrJDk-0X60g1cqeYUaeKEIXcAWoaFAOksCL3205vm3EtexNGpiGVObiF-ddl50zxOxkcdB4OdIEewe667cJbAf_gGox_Hh83YpZDuT-t1u3t2DG4HVbY6NfWZ8c19q5gRCYnnEt7fkxzceE3P0WatD8z-uMj6lgwNgwVmTuj3i6Tu4cZAxy_-7qYDK7z_8Bf6TsMMr1nKHe04-hvomowCxsuem9fIPEk5N1wA8dCIVrVows3bAa5UsT0HAvjfGqmF2CczfxcSwWUQoeCkxiRsxlGaRprTAJd1RUJvbF4p4yLAW0Rc8IrmS0conJGfJhJH8F3z8R5vWEVboyFPUU5BiiyTh8eeOBLObA5Z0PbzPTz2cF8imXdyYlIFDtWKJAYpByXllY1gbFyToeccNyCrY5V8K5SMrSXmQ4d93t5oCOc-EbuE=", "type": 1}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12YiD7jGQZk7CbTb6KSZN0XmSE1LRIw8XFmC8_FFxXzWCOElzYrhmuMMduRBM18FV4eyE8aNNlp_0mVF1CZ7KVeS8tiv1zTKqnS-NWYjuMpPIFubDdKarXp3XPH6c2vJlMBFP5v5-4bR3WZo7UhcPp3s5CV1GpoSuYFQC1ugDu1yp8iYrvYTG5jnwKXof7gsFUG3e7gpGP-fk_DrP1lsT1t_6SGXeqb_ABdrqzTbEFltdkr2ngBcP0pM9hVMQ_zwzuQNuwkvMvMko_BuerqJTUEjeQtAEiYdIQFAYIQQrKhBgm4yl-TF7cihPPkIOZjzkhndSngEdg_770tTs8eIe1q7-fI4jnWr7EJU-2bjZuctI41XMaXfTbbYFiGCSYgEVSQZoxuwIcx85lnTiqNHArG6a1c9qqkRi-co3gccnywSHJHcdp3QUCFKKZooQKXmh3LU7BoA4Xh1uYk3bCzN3cSfvVjtDOgu1QenE_qdzHjcON8Isheh_5AQ52NX9t-06IzWsxTn3QETydT-ROMr6Ik3OzaVl-yElMmGp7vLTcmAuzkcFiXX0woCUhYfXImBlUTx-1LHZAKO5tnxkGG7bXHOSnGKX6W_UcVmjDb6l8G4W2hMp3naR8FbIq3rVJLHXfar2pjaU5n0NMqOi8O30xm-fKoxEMcsNS4LgUiU7KTtqpqgjRYDe0EG2fbDf5In8XuHrMkb5muzJfwdPJ2Pt_ya-SdBMbbCaowHcwB0mMD9Z5w8ndVRuxbTIXyHVDZ3_TVWGRrISPk3Nry3as8pv4pyv1uJKr3bculLdNrZ0BTM__LHmaqWKBq8qyxPeBiJhW-Z2ELem8PqG4vzdLQSk8lkzIoRotrJ8Lnq5mFUB3g3-sOrqnkZgdJwB2eKqvOVXO0bTLfAbINcs30QW8q34tEl6rMeNu1gJcKlK7NGHs5LKcvt4Y_OlpoupuSA3OoI0M2J1rmzjXeC5RPGVAnPRnwk6LMFGFYRnz1PPNjuZdm3AxEDof9BZX5M9brfPFq6uqHa-Bklk_3kSey8H9KVCxN31k_4ROkJgCt67FvrROKEIN7grJsvO-WDfAOmP-4-rDC1pOtVTsrRmGAtYgTSmqmJQbm-PNj3Ed8uJoA50_088B5XhOlwvReEhcDQl3oeyMaYG-9xUtVYg3oXN3SbvvLDqyxVrDpmh_mlHNULPgOVfETuY4SjVZ4uHrF63sAXBkfFSxOZ8t4bOavLnemZG-s1YwpKEZgpzw6QkCzxWI_g7X73GDoPctFz6Jr3lB2_7DKgAij871FT76oCyS4rzDFkyrAsCcGUx-jcsVVTtD29LIOQhB52M1KijkCN1zsvGcxUVetx8_RReIcjUpyF4MHY7Ho05OYmZl5gnVdczg5QKzcEOKz0eLCN3aHjPGY4z3CNOL_GVQqCTfV9DG9KqSNbxZTKkuim5mlON_yjfWWcO02AKID9K29DZYvEQpITjcNLXNJpDqgkgRyT7dUV_mshMT5WSNVvjToMnOS2X9aV8h1Wp7x3XZVZETX0vl5FGrcgmfYeWAi5yk1R_HZeS30es0ZU00KHY_TkG2S6i0WL1jxwLirE5Ur8Z-yrlsb9HZzz22-6rJZRifgKdO4-SP7qfEsmMNHdv1PUZ4YgWd9uwbnKtoQ66PsQHYq6TFyQ-UDF95lUT1j2E2e2kTjNT9_R0iFFblhdXlHXDwEILbCy-6sjamCYm-MctPBkFvOtM6o-ffLYemGNgxCAtAce7YtUQFul4P1pcJlRp16fxHr9WV8IJlKZofP9wwpy09Pn6uW_3xI6DmfFkRjwrLwQ9rHbiIKdp1Ki1M1hGR_gqXLPeboTUIavArsM5BxZw7swqv_T41bJXT8u2toqOW-UvgCN03_K2cbvA-EKsi_rkKg53DaAZ-LbDijKI2DibM02gTSohh8VMqhCfU2R2frY8VtbTLaMLumqJJVolhVOH5BS-rEMCdTRWrajG23JFAdciw7LgQjc1wOQTzescJ5FbIFnxZFhXzT7j0WgIImGj1rtNURwQteoh_8zBb8zJNoZJ3FRtlRFTu0SAU8utNjay6x-xj35O6LbK2jfThCM9B6AMLqOEecpepPe1btMfO7ECqBo5XgUu6th-sulVRomzpR7XV1Ft0E382eEhfr849sleHfvciHoMJFQzGNmkDOvqQwuSjnm1-YPNi1Rna1Ij6OiircoebiJClhrOfDMJQNH1nwBMV4DE9FB5GReq8Gzx3Fy_oeUbAkIT7-m1ywjt4cW-gwqvP--0OkQ2tbhXofCvaFTFbu5BIWNjrv6GYXgTaQFfDIAkh--9LfkBqSFOH4zIM0ybSqJAlETka-iYKB_65gRoFqFz2qWxke-9iTgPY3YY4Oe7EoqhNoVDuNZXTTSDo6dHMAeSFK0bULmorS80TbZnR3P6VU7gooZRMk8b9z8y3xRySsNL4Wr8UiepXzrkX9dF2RawKahE9R-cOP58hX_54dDsTR1R99B0rB7yhfY4UoR_N4DgPlfbA4eY7LP2IY2r_8LJb5k0vQfVc0d2JS3teMlImtIaui3CSYCC_", "type": 3}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12SPPS8qnZqJgUX9iSYzTYEt7_JVgQ8b-WP79W18Qxye5uyR2uQOtI_lp9vs1MDd_vaecDrIj-b_2Gg_KaZ_Fa8A4Og4PgvVlxOn1PGuw3QSt0g_bum89WHWv-2Ra_OWz4SkONDpMd7OouUbtolY9vVL4UfIdcDQeerTTThqQGlnrcE8IFv1kOcdCoWAV7uIrAvxKmReQvKWn0ax8yftARDyGp0fpoBxg9Y3qBSLxSQyydWRQtUdfMcJPLmElwDhuml4ZhpDpUokoihjOekeP4SRfPq2KWfgq0qJ8E7LZQM01m4xpS7jNwlZJdgVLR7dhC5NRrMDMWCGWixr19q8EsSCv9EoC5XbyKAU0JbHmvsdLrr4jgXUSSVqkxbqlzrn_nzf8op35r5ZRJfR_X_vCBf6wrUcfuBzSgfkh-k6wfENfPsBRxA6n_Erv_BG3Kb2gHKC-WEdwfCGPEI0PbnGHhNwqvmvwg7bd79HChSvKfxbFjbnizo01ozqxj7_fCmEOwOuf3kMA1DoJGP9ebfDtQhRYYCbNFr9aUhRhOugtMPgoSDlQDaqilc1saeqQhmm2wI1Kv40YMUNXpcGj9d7Gtd9cRVEW-wmH77_5BDws5vjW_F_rVjqC3poaM6F1pf26Q3iaoKpc-yrKov8cE_Cs3gxmIygOYc-e1122gDxXhO5UOsqPr-QlzluaNKalUDVTYa2KuH4-gmyMg99DR4iMIgj4loHSWjE3D_OfJDE-CL7V9QiwVrfmbtCBXdBVrya1q19FxO2CtMdlnhjc2jcOFapZq-9EYbJd30_PXFMDG82FZ1HFYGqa3LyDmGDxpsMzIHNPFlK1__9GHcXP6J4GwNjbHHAQNIIA2oTw2HpH3_icUn60bVVppZLd424008YfVEd95rhB2OidugwB0akPSqZBcRoAHHpUZAboLuRAM1OAVw1LgIqE3iafU0PM8nXb76AlExALxuCarbaOx5ofV6l1-77nYh9HwRIKsVNLYRXiyt-27RaX8jkWxSZ-XejV09n7U4OJZ9tx0YwfXu2xPyJk2YuA1jxDhVrH9RRfPof-xHVBkc2SNU6Xi0sEemPPtGDK9Ar4dqwwE86ejeq39PO3YKd2K2eir1VdmSnHyKh7wBfIQgIr25hK35Fb9EHibNJ8f0EAX8yQ9vGaXPzsZkmzV4UD99JKjwjtvAYVxq0MRb2zSyE3Zw0pbhDf8SqB2H0999PxhDhcXHOFf13td0LtxP-k55fbCwWTPkT19ndw3D1KU22Pf97P4sjZTscjDrXGwqeofvyNPHrnoH0Sz1S5l2GsTU6PGDvCQAnUI4GGmqJPDMT6pfhE1FxtF4kj1TURTIp7LaPhZHYgsXZvID7weOgKhUUIlsGmTnuS_ychzcexa7vcIGgVe8_L2UqH0rjl6A75U3v0LVNNTfG9SLpRsnembJFshBdjBul1_jDo-aXYY6IUr7Pf_19m6Pd6cwIGvkLxaiWSp7HqPzaU7xbHl-VJSd983cRskHzXAT4lTMG_4MCLtop6KAWCP8t2RYPT-D6bhsKkD4mjRdQ1jDa8nuYLxH-WUohlo-Jjw_cuL0lkNRsQy8iA83riepst_qwtc6mzSVMIoPDYkaD0cOgPePmN8UCNHQOw8au_Ct0Ix38UWZCXP4cQpyjRq0dexP-CFwhCOdVKRHvUQsAZvlRQghYu2-a4448-qLSY_qRvx_ODuyt6cYefXDtnMaohJpB9LElTSJdvuI0EGQBtSs6kml5c-w9Ho9zGjtUyiqGAk8yhtGCcgfNrKiXBb1GaMvAJjOwzbEqvVHvlAsoHz1beB_ndsK2A_0ROJRiuEaZFKd6IltVA-D_iGWwWvhajakPo5nCLlh1BO2XJWRtfT_IB6CE4Y2RcSY3EbJ3JHzSM5Gdu3-Di1wtx1lQ3ilxAoJliABb_oS1u_okXROvJe89yATiq7iZHCWLHlUWZKPKHpQwyGwzSYofAT0RPcfs11dhTaLdA3o52G-e3OZttD2PwAWyxqJi17-yw2DRbqbdMSL1DHoGarZwQ7jDBtVM94jTOkTClzgX3v8NuwnX51wdWjGosi1pqey2Cf-30xPA9rReVfeTqDSg1eJrAurehhvCdGlqIcjujIp0SD4CXpHncVEPOZ1GJ0CywSEGnjazu8qPh91zyev-wcROF69CXTBbxE0jrsQlaU4uL1yjyL_dJwAWJjK9YuO6TaoHIwcwnlF9NcOYGRrL288QeGpi66qZ3p91EftlazMZ7qBXVKCu9ANKq4Vxtq_q7JT-lee3PB3qIeJ0soWUHv-AvrIeTrPHyj0VHBSisLMCKf_m7emD6Ws6R7lULEtFrmrR0Wol5gLxZ0swXEvdfiq9y6IdaDFel0Sv6JaQGSMezpCZjLT2kjI1c_1P1xCVN5j4GklHn01GjRHQ7RtEWFrL4oKtRC7uPO-1vEzD-eu95_TLoabID40_QRJ8vZT-vyQpcSOCkuPTVXbNegny8t9NbB1SIrmVuJYZ2ch-wzXfvBnteulWsa924CRlgw-hPf8nb2jcB1TNTk6h32XDFbKsnW3IVc", "type": 4}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12-88clIJBNGqsO25B9l6z4gPhXCywAE9J8cpXoGWbpcDUOOhOhvO02YTVct6WK2u588UyvBp5yRNps85HE3oNPGg4De4Cqjg76QycsLmr50zBFmUzHC2dLhws1xLL518QVUaDebeh3DQ-GsWQin_NpuGk-pYRqXZnEy_evrWVSEiXRoqBuvB0BMJem55FDH5VGE22tH4AAETM31ZkeWI_ecL0VGGcGKVlXOwu61_cDiN_StpEdPyVisW52EqGapAkFd1irA_R8cpTNclWFMYqWllDPJFQq7ShrZ53Hz1US1fZw1775JtFwiLMMgBZirPzy4E__aZzX0a9UJvx08ShYhkL61SYi5tLYA2nQ5cQP4l1xWbqH721zrvuYcIW8Ir_ILxYPRVghuUvoudSsDPU1lXB6p1VAfNxywb_vAhjy4JHQjM1iel0_f7zTO5tmiQz-gImOijAQ08xAVKUt9tckJnY4v9q3iP8WHryfvk1Rfl6nT4xsrz60jI4jPpN-mrB6mGRjgix3JX14dZ-VRuTVUWhWDAYHkrMKm_Em7hU8bia5OWuJa7obWr-Srs9RkUZ4VeD0pD_2b0o1EE1z5X7Ytuf5z5WnHmwEhvLfGb2x2lKJTPE-2w1kgDg40fWve4xMn7WHDafHDUIyhgvMuZMiIYAtjlCeSV0P7vSgNDI3vRkNzOhTsYY7XPlpj4O7ia2sgi63Hsgmr7g8RD0FUd92LH6MVwCgpHXZtYeN_yeBP99kfR1Zq_Lic3AsAG7xoGVQiVxswZLCL32O7hBisNDCxqPmL1flQSIWkLPoh8JBCgdiBCnnW5Ppl4R_NTYiViUZnx6YT8ltaxEKEZFQlkZqbgGimfG6lcHRoIX2z_k9EiAp3UKxIF7GTEsmhd7FSyHib5Lf3hPfjIRann5l65_ixWtRkin0gFdDK0vol4KG3Z2wXaBlQbvp4UJCmkgs9RgxDFX4ujqPXR2G5AUuS4hqZm_1Cu91Wf0KgspS6-3fFjbXljOnJU6b0LV9Gr8-KRGUX_DtRsIztk1Z4cXt4vh0k1xJOKE4t9v-a4pMCZh-rhBPxUk3N43VmM28ALBKlZVBcZdoHuXg--ftGvBwaJNez_8QJi5V6icfx_g8UBFa_jNfS_ykDuw16HaY7PYHUuiirlB5aVIOxRLIJtCyPNRvxXAw3LcRTGnVX7wzWp8Cmqs972oOD-Ko7xGUmYzV04cpBVtauMKDCiaENG3ZZi-795uHC3t1tU9hOjnE8HF4jAToULrD5_y47zIo64639FFe2xXnYHd2HEAXRiFujm2vE65b5WJgAtNAvG795v31n0DNs5c9yj3mnFztMCJc_DXWgiuls0AVYjsWCq_VQNuCqLK8WLC9wg6A_90fhOy22vwCm6Hmk1WocwRk1MPOpZf6qvw0QfMhZdFtyR5l8Tx968qSepO33RNQV_ZEs2PhBn-mRGUgAShbSyscWXqpPm3BbOVvXA9abZAmacHxbcRFcDt3twpuk47QkMNGMUSoN3ont4KGbnxruCKtc7VIWf8OXfaiuFeBLgsLvbad1zxM9C9q4XDVLjeWHW5A5pmwi72ve1_YQ579FRqMAwbmc5WsF5c4VGwpMxobkmBjUaR3wKwD_CPS6xJLWENmfL_aCyKT655C1f1R3bjVg_IpMAXtU7uBlqwZf1oejTOpJeHNMuQsUiju0kziSgo-_085DDchDCovxzY4Hu0CRr50JozitT0OWoH_KadSl5z8eJbeyz3nmK3BFOpGlqTggk397Ja7VVnl81Vo2BFG1NXiloe-ncM7PLBTLe1DcjPyVdgJa9WS4bsBr1luYxK_OYuGJiuHOnHBJy5vIiOzWbUjkYKdGh9Jqp-LILkLSJt5P2QGqByYfv3plu9TemiXHKE8tsfx46Ywh7tjFolV-SHPuLhoPel0zIB93lLUJosLu2TEcTqa9FFcjcRgnOX4QEjnSqlsWFYeR5Dz2NsKiuOUTGUiqVleU32EGfRmvHg1AkdBKPT4F0WkxHCDwllLzmuqooxMLYT4_SfOHPI34JsjVJzX7CQAa5LAG42R0VTjeUJc0RtofPYE96ReQio0q1se61r5TnKLvueG3pFGB-MszADSRkEOZusrUnMJ198Et7SxZFOnT62TE5NCa9ILIoBT0lhRjSxZvSkga2mH59aoFmj3IQJ5fAx64TwTmAdne06BDFzXyZklYgx3TYRfy9bKhT1w7svvZgfFwjaZ19zQzDU1MOBCKB_Qwl3Qudadkd2vKSsztlIkNJyS5UT-u4Z3cwT7ElwqDVdkAGArDWjyf8QwFTmlXjhQRcGm9ommbRXChq8z8CkJIrnh5vQE_NvIePLYgr5HEaFTzKOp6h8remjsNR-u8Y3L0WuAz306ScmhOCvRTnsUUle01LxU25UOXjYQMIZ8Tmto_K2RqQe5FSS3AhYQ8kuVR3xb8pOvYPx5Gb55VtcKQoihWTnt08qSFVNYo_Zv237FuFWFPRzBC9m1lVJhN9SSo5y4uGV_U4EYzar_LruWmDxi1Rr9kootRuiP4NlaSAjZy8bSZABecym", "type": 5}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12RGwmXRbVJ-VHQlS0y7AyyQOuKANs1f-_sdd-uE6_vbA8PNwQnri7Azdc8CPT3cCfz49zGIoBz4Vkm5FW_AZEDpDiC7STQjgxca0lC-CXbAghk_tVetuK8jGrGXMt5qlHj74AxMe_-B50CIGwLp85hgOLGpuYzTa9o0Bj0X7RawZtHDMTe1W2GLtfoJbEs-IuzrVpNA7bpdeGFXHl3nRP6ulMvIoyk9W8Ay124uFP-bZdwoy1QTRHU0uV9saZmrDxJrJL6mjefCA76qXuzuZsJEV6P4cBTYsCjFyCqhWdoaMJnhNOTHWUM396NXRTEs2_iQKiOPSws-ZP2TvB-bP1BP1pQZZIYgNTk6ho_BFb4VvbJcLrZauB1WWpuDSLBjA9xFSsIITyYTpezFRvnaKYMVro0g46iwWj5TlKK8VD9pykrqwzq4AR_HGMsVf7ILXNtLNrVGZ_E5aCgHvitJKIuyIJs6ZgRph7HOcVLiAlA_w0spybkeJCglJJTVhmMp-TUd_OOHbaUkSYQ-IfJc65q_TPIJgdR_hEEW3SObzbzDPGT2FUiLiNtSN1gGa_8mjAUR_8TDsfSdTYmvnUfjvozWxEpBDW5ZIH0UaPl7TqYj3h-N2ftA7gaSSY4ZJduHs0Trj35JdgpBvzqfpYjzrevZ-PaHl2ON5Hldk93qFZ_n6bkdouc59bWAoBYzVSiniYpWVrE52lvsPrP41B_FnZByIC4ZjJM86HR_kDVerRaTyC0yt8r9Vy2v23EZf7uE2uFXDWDcF9VdyjfReY80bxm_r5ZV4Wv2YhDd2qHbc1cQRb43slssYeKvadpnBE0JtW3f-dF2xo8UHLLNQFvtgjxUr__TkppQi4O-_-RPRap9jPUA4as4sud1b6c0Ih6dWFlwvAtgDR1XlHnrNMDB30Rn1r3r5ICNgreLd5zH6cR7A3Xg9gzm5XSgfxB-ivrRUl-H3wkuVgjp0S6-Id9IjkYRCtyf16dUTM7QdaSmpKLynol2-o1MWvx0dHQY2GWZVBmNoZxmSWim7_avmZi2t443eOTsWBGxUKsaFsoajlXVqeUSI0Gx352q7e6R66p9-8hyfxFBGusq6gM8E5Ce2ZiI2FbPsCXkc7tbxmJQhPToKZ4Ss9pGDZDtENYHhhRwD-RBKvEZYa_mS8ZKE6Eg740_Ir2kXDBo6HPthLJq015SgEcc10BHHRTGnLwWWgWyGRve-ieJQ9Ldw5WPiLsF9gEPi8hWggyrgKsVxmn3nE9QM-FVY2FnvPnVnHstAbXCvNv5nFsRWrdxjveKLEK7hwx8e3YENol6fsBBu9QyLFxc39PAlBVltnFgn33jE1deiDyOqf3KK5WPDqGifWTgszTdULGNUyYSSdkG30yKyQC8_MW-GX6EhOrbMJ6qc7QsnY8Zg_76bvpLIT3lmzNApvueh-Z8Hu2cnz5M_Lrv39HMH-JXqM79Fc6OkAcwA0fFHdUXuV5HqsXZLZ3NdFU5B5Ub4zhiMIFUq3W8BLt6tzJp5qZ00UxP7ayKONupJMA9fA8CJRgHWL2oNbhfDb9Lz0mBhwskGgFtBV3b9bhhLTlJimrM1GLBU60sSrjI7it56flMAvufFaMwxsdhZVJb1ayOxa0v8UScOdRikngAoUGNC4Pnm30XRRBkDwKASZ4_l1c-uS1y5IUDhN7_x304MLWvNBOx32zwzLWe7v2Rr_4TaM_vpeua06qzX_knLpW9nlFOhfU5z1I_mwxc_DpwtSq3tDgWmuEbHi5Ld5uIE6cISOykv3CR0C3iTvyo2HZOYoUoK4ABF52bPMZpeqLZax9jGXD4qmgg3Ouooao8ZMW1tPJQ5b8DOfXlvNA5Q7Lhdf-Cssbn2Ulh4xc4Tpid086gFoUHDIhAupEa5WBKldbUEtUt3eLh7mAFunMSuYmhIcfGX4GjiiKPm7Ja33kNUQvBiRy6RmjC7_jCGOpgJMT4Iz6sq7PrQRJ3Fc3_MxRONN82JuBYaZ0KJvdm1P8dfnIyAA2zpEFh_ITyJbW56xE7lwyI4EGUfvtFngsc9QrWprmcuY0WCSKgZrLlTni5IvpsQz5F6fHrf-jqJeC67cMI96H2AEVZAFrvvnSI7BnGK7EJ7rskuOgGJoMoBTzonW67aEKSQeATGgHstnvf58MUO5-_Ii6jB15WWmpaJ6q6uKiyvTXy7SrOPZOGnRYBbhoWD026yi9EZd1EQooTddunklFu_oj4Wvvwfk-5P6_vB5sycJTHPDrz-kA6BfNDL5uS1A6khpIzN2jNGtBTcJt0tmD_-3gNDwXYUecv7STeahPv-cnBs_lRVdd5yhIUJ5ost-FpwRVEk1j45iAT5Eo6LwxGclunCNi0-mI7-r7CXUWh0OhwswRHeCz5iNg8TBseibh2LXir_jaWbXDkc54g4D96RwluB-vSAuGoUNvveT0_CybZODP9-4V5Ina0bzAKEYou2cVJSfn0a8g_mP0vj0C_GyUnSXjK8G2iArLfekekZ0O1huYW7mlHCjXbo_QX6rHiVKakz0wuDp0UZdDVGsP5kmBrVJXcWaOIfJmIIO", "type": 6}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12drVR7TV6OofXYiB7BUiz5tNjSCLRtiGdmUE-KKJo1sS7r3yveNV8Q13NlkisNws8sY9LxZUJlh2jKDs4gYjBymoqT16dZTjjbKbE5j5bY03Jc4yBck9eoBhfymwzJvuWPod-sd6X448tYQbs78GiXAX67N43a8br7sploKvWCB-AvO7xKooDfxjYpv_D8EumIVa6UWTS8pxfzT-PjBlPW1S319je9hTsUyu6kNw-eZDk8dxoucT59d5FGdCpQKotjn1wuRBDrwzE02IrUudCqXfASN134gZL9aa5xlBMVUNbJN5Oz1IyVoHhIAT5njwS35kcmkWnLhEEXF5tDDZ15bD7uang70jcs4-Zx-R-laICgmZmJRJIS5gUYpVuRpf2SYQkffztlBwtIqLQ-WkwArZ9_hNlRaXeYbaEVpfgkVc-NLiQkNKY5TcSmJ_0zzwwz1-qOK-pcLnoLmr--MmhDsLfEwB0ZbcEsCU25F0NzCYu1sihnxsASUr1gVIoZ-lTQiCy8ps3ermO4UEDdXYVLCmpfHP-zaexC75uEfx3Zh3IAhIb5Cf74UmUHdHjzvHUQIbcmekrOoOZTizDdNO7oeDzKtMH-GjDvs9W9FDKzuwHhrnG3OMJh9frt6ETQ9-qiyyeKrGWXW-ISmLsr5DPRCHFnEyKoi8UHcSFcaSVXnj1RtgHPQIrX-XqdGCZ4VAb4Prf0YUbWFLpTslaSpEWJKEbB2CWyQN4FVMgKYH04Q2y0SIAz-Ll26E39hfgW1-NuKEQWGj_VYIpTWLSDSgmS_TUIriqiLBYKnDyrmELUWTzwPqo41NAaGjvav_PEfek4XYExeeIPdcQ-3FrIuk6xsLWm7Q_coxmt93o9ybhlOM-RJHklrhZEy2wvBz8bgL0G-ma5k41JizkwuA5ciyOujpczAX2dSFv2B9RlpCM_Llt_Ie46A7KJjCvvVmUJaHeK5sFsYV_EFiErfCWgQguRiqaTnpJcYbCaJ7-m1LnYlMBTQ_mqxAZD0JjVDLZJkqGwTx_Aeyfvdpb54toS3FFZ8KZTbI1v4FXAv10BM216Shl2oJBQWiGdAa7boOeSe_ceZBLaW24_HDmIy8lfIgZ1xxnaf19kk_X0HuuHX6-ZtANgN6qyqMLsrxB6Qzq-xPJ4lWa5hPCIj2rAq4ednwnkgmXcBGMvoclidT7MLhsfc3nH9wjronISUtZDefeErPBxDtTniWtZpfbr4dRumHODFeVk6lc_lZmRAAdpIBOTv0tGqTtrVBBCvA8KCEaXR40DYn-gcSjgcTps1QrytKspYONKY-yVlu3bBKsrgAoagxjbfbw_VSB3FCkzaizvt_m4wx_n0p98KApIS9IQ9fswTGgjLINPreFxyprBJLZ9sEbsINwuCeG5-Tmkv_L5TG6ms4Al7enCJ93qryPxvGgG39hjpRAcq6SX5yLn45x60ZUOT2PKdV5DW6efXVRhm4_Q28uKq_a3OI5IAcRDd8iCxwwCxckTejNPRcz-SX_Kc2MR5_HtUIN1O3LmbDwQQH0fOQiqORkBACgqeMZcWAX3UcDQUFRU6WpeSLrolE3GmBMncvHtkpAA71A4ENh9HTFe5xnzlOG6vbHVo62F-XeJB_BFfBmPe2kqTpOWZcJ01ZV8xb_ZetGBfaDefBVy4RG8hINjlDnIsNGO-2q5HIwwopyS1w2bPDqmYPffIKBs-J2f-6IRzSt67CJp5yA6lyjonCbsz6_4495smIK8ISwtBBLDC-vOMhv3BF79NJOzkZ-uBwcP41DLdvmeLY4kQVQ4x0p2J9qVLnoL5HlvVJqRIXZJ6R0PDJUmzOV6GVB1ekNbHSzXNx08VJ9wcfvk7-LLZbOGaeOjH5Nk8Rybuj_SNSFIrktqpUQ06mYduwsESD2zOHs8NItYJ2vMAQwtOzODNphexQfWkzdxbdohh2FIzHswtuZAAlHXfF_EtESWF9_9IGNKIEdfqvqWaFmwi_0bgxThswHcbTw5BX7yGt0GSkv4mZUj_7XqNBzj2wirhHQx4I4mUawJ3aLth0g2VgwPOzZ9_76ZyygUQeeUzqzB91JfKsUkHXPg6bPUe-6pBmp-5lUz3TDjRYslKB65b48GagEdTG9XI_emY5cweRxjBoYnwBRyrrFfb4cY6w7f8KOc4pSRx5jMPRcQs-BmfDAivnBOeH7wFS_tzKH4I5iOPLAqA5l9lLCQKhJFkGO4aKoBz8FiZl6IQJ8o7jtkABekANyOT-oofCxVtj_GvOWxkkA955l1tA-4WaF3zF3iuAT_BcGCmC9B8ntU3wuKQxeTrsW2CTtXAGnVOWzf6wuxtW9MZ5vjabMWEzwv51Hr8-BGPMp6W9YfJ2OqiuN9Ufq9UXC57AQu-DT5_Zy9CnuZVkeTwNb890upRNz1z6HDsHvEKUrdK38FkF5vxmrF01yBzM-UpnNQxc4IqIlYfs-0kU32XYZ_DCbtAjxypQ9EvJPYa-rK04AVzwKaMRapHNe2Y9pV-XcvD06e0B2XDaSfDbUtLlS53LaxwJo_wzT_PfiFMW19g-SbC3A9VAgWvsH", "type": 7}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ126XxThmLYT44UySAb_M8q0hLMaqK-RE89l9pPKvZ9ThO0xgQMCbyGOuCF5s8Ug3kzRauOIeTILWmL18QAJxu32SZnav0SyWxCXKfAmFGnt0PVdFePcGoZzsJGjuwSe3bOjYKZGcKbn6cc7dsZE3k2rY0KWbZZZJmTZzIT9gGkW73IwTZMksbhv3a84fo9Q7n_B6l46qYWeQk0TV--fuf3lccC8w8Gu5Hm40BZjE3Xt4SUQvqRgpVnFM57IwEP19SC2Yx4-7cyVZSWyKt7Apw7JEkrNIQQhGKNnjQF_x_jxBIp_yfMYykDNe4RQ-pmkZFxkthSHkU4CbZoQ7IsSlu1rDpNfl3bZOIR7M-ds2E6IZqtcGrsFZ3zcvsLypnIUDYiGq1I9c7RvrQndQY7241nS1y0sQ9KkIFZRrw5gqoK51Lv3at88YystsLk1few8VLxfD1x0f3oK6-rcsHvZdkNazdxpQOZr0WNGn3XYspscz6Xfn66u9Y8aNhcnZhDTNgUPjHsvyVQfCrSpJgNmzSbEYAcA1-s_-8hmT9WzsXx6Y6dsliA_aNdzneNDAwEl6vAyD7bt5dhlrhO4wim_BWa5ngSLkZrB-cNru6SbcISWMZU46GkuSYnQlJiyPHbnhfyYoYFSm83viLf8hjqhXtAsEMA1d6648ZIraJsKZcSlLyDdRJxCG3PNE5Zwo_5Mw3Mfacu0pUCm6c2geNLTfTU-M1-Iv3_BtuZd6uS8kizjPjh-3IsTw0zUie_diznlMAp2bb2cewiZFhm9Zqggm1CtC_SyNMe5juOCvMGzGw9WHQ5EedyT5HpdZUHjVKWP8qLCwUCsr76D4PCPLfcM78jM_2l0usnuJF5m2hIHOGq2DdRahkqHo4er5YzQJCcm7wFU7QiSbn38IVL1vG2yy6hoZ_ubqD0Ku_R9P6IgYEMwt_5POW_3c3drCKgMMnCP8g_W5G5X-wGDD_SpyJsyiwPB3Bg3r3_nd7-jl5_uYmSvDOY0ARLfr7qgadZdjYsTd3huYEb1fs-2XSS47viJJWi0ry0n9v5NlnVggRIqcAWHL4QJSBoaFzECBXfnPOAueR5NNcRxzUpqxg5OqmpEWFHJFH05Vq_2WTxP2-d4JQFHCCwPoR0Z_sKP_Q3dh7WyLA0BCuXBf5fPd7i71KD_wzireAtLADcDM8GaRZHy5wjQD6oZpgQCE1LcNJaqpXQUisDU6EXmsBGvAn4C3A_8uMv7jZug5CDEReEpsw8vJrD9esvg8oTDT5wZgwmTZNNAmMYI636QpRNSNT21YNarqT1f6FLLeuSSkXAMwuaybEzNPQ8mg-2RmCyA3fN8RMDZRO85PC-3nM0Ou96JyID5FuokzI1haGuUj4eDGaz5ptlQsG34KyS5e9bZqL9Yzzlwr3kGr9viD8u0lwAKBWWMHlVnArIkkKjaF3g80oSfuyYohHbqgdjfYyyGYUQQ2dEJIcNfaUW9WsSApX6nmu2AU2qvr5fJNr-okDoQbKa6GzrZZc_SQGe18xpI_ZRsd2YQ8m7JPtjwQUP1yTRwn4inAwj2wpQjZk5eOcZDM-tgM4riNrM3EwUXGXwOU9-YRad4l-TUgErnUmG4dmwCmac1Si0HFy75xwun5HD8Ysk2NSgvU5i-maxF12A-2cKFybd8sYn-7-VEnKrx1ticmZWqEE0T7ym28_MrpP_pXfuni6AV3KTHgnt9XigyEYq4etcatR6NKDL7Y4zrSkucAp10XM7pHUbpbTwEOUR-hRyoFtzJFjml-m4RRDD0uCZznzMTZzCVSzl3RQ0iE-xcclY-D3mWZ6iz4putZUiDYDipIejLk6c1MGRz8EUAcXcY_fMgv2K-bjnS4kXZmydwNgCB-a98vqdhTMFYG_PlnXN5wIR9csQKCh87p8TFKN_l3tip1EzVbta9aadgOp8nk5pFGn0yIl2ih1-Je_D4ve96LX5SShnzLSw9ESCkBYROqMa-p4xt_PUmJLensu3pAhnMPDe6PZheBOZmfxlJGioSyP3kBaEK1dzlq_0pkv2oKhVi0I0j0LgZDIT3dg0s4SNZSoN5Fs53KsK7klXa07sIwDXSp5oUZ9kKp1qyyRcirktfzOggPzEbUHHh-o5RjoW1Op8tvs8TigIdjy87e2iWQzg6NlOc7YDHLX3vtoJTdh3P7WnRCo8kjVOnWzQn-zt405C7TffB3LrsIQrBAdF6qCoiqPJqlvi7W4XVzo8Ymg5HAEtShb_tnEGRj_fUyQEvPOmqGLnaxoW_2h92tZGgUXYrfPB7pZPrvUI6vDMYe6k-IY6JDsJKiLKssRyjteSocGJO5UJ9Mfg0nM_y7I99wgYYnzCjUKoTF9AWUIFLj2m7_mtfeH16YfiFexov7fdiONQFIs7eHtKjBOo75tupDm6tw6yZ6njYhYnuiM363GDn71J3zN4xuFcO986LHGhgHs--11Ccz8K22BkgFU7FG31gFqC0JYxXmbK2E1iX81igi5PXHUxflyM_edNVfxKsRbWNGwGO7o9-1U4jtUZ42Dh8B7dQACmcEmIUeelP5OX4n3-", "type": 8}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12rIMJ8p2DC0lkM7Mwc78jwFt6zvOjHq24_tXOurrQnhr8n0UEBccFqAP8VSvbH2aCgEu64cua8N5nceNnmq_cA2y9xQtRKXFT4ek_80pUJza1JJGuQF0dMSbIblyiVbsZHIAE2CNwLtJQUtnkTkjdYHF9mW32ZAUoVM5HocgGXtL_aqFLnJkbM4zqKgqDwkcmUOqSKif3JZ0hDtEyCllt2pFJ6hfvnNKM35DXEooVNb-bdufoRotKLAcrZW0WbRWKUDMznM64Uzkib4Fo4Qm2Szw0SnaQQ74xVyfFvch4i_x0YtyqHmzDfJKakhISVce0O0A9bH07sB4pAff9bgHqvoZom1LhLFkQ5AudXfFTbpfn2Pz52xwqUKj-RzikszaTMGz0GB33oUjanb1saijScYpUF7utftFER4KBg679oqkKHTf44ce8vGLg7kKpiOeFzUfseGuU03TnBkAcfAVXjKaKFF6YaUw6lpEFyPE--Xepsu9wll31cDqNSvAPxnoYaTHvcC-jZJ8zkCNNE7gt4bd_N4orxh4yCMgKtzp7RE3f-Ddu_qyiFO4mYtfGEOupWIEoZ3iA-mWauTWiU5mNl0AXLmc4wzJ0dk-6CM1FW5_PDc2vjLXt_FiYAcxQe2rvHnInExpC9fOwqTBuSGOZvD1iyjGlC1q4N1DAV7VZ7mR-fwCkmOcDop89RSd6IctBesjC7d2hHku3Q7WQT4I14h75msb15VGtUCPABa49_RV-xkq5_ViT9g6yT0yhvlShUExv3Yjcd_z_zg7cAgdIwKFkS9NmZ2Tmbxfk4QYe3oOhJTvJGVN6hVdqpO2dJznONTfPWnRNRXGYLkWeOyw758ysjTMRhT4UmahvcjndFxithSvlKLaYdVizxS4fW_EjqkCDTayhWLa87bT7lYM0OdHZjH3jxfdQMCHgmafSBWjYrVfx_WfesQ83DE_IjIJBGlw4fdGVZyok0aOnbqg0btpIDXeHznCpiTeLHSqs15aZGVljt1WJXb4g-MwNp4ZBGIBfqbPnkFOm8xGM3bb7zeUl4GumhYEjL9BAVMac_nOIUO0OSuRZ1AzCE5OdYibHdJScecAh8HLgArjM5-o-lxBwj-1mmnoviELXwpNL570v-4vpfdB458obXMXw5lAN6zFa1-4zS_XypHQrwWfjBHWAR3Sdc5AUz-ZPtUJVTVPH2Cdm1gNMHnoStDJFQABfumTeV6kdBNxd6am8RuweONNoNDmIGSSQjaaFNfUKf4uFnkpMK6CCyRaR7je1-2vroFJ_skwumiQv8QbVDwH8aXazzHuavcI4c13kB07kIZCsmjwAc_P2AtKx7vjROzO2dzGUy9NBKm-kDxph40ywsMrjM-g953e97F5xSimKvVWOOyJgQLvtB3W--kQoWkkqOGVfHw58cy9qERNUiiMyokzOe_RpbianZ_lHEQq2GYKPR3Pq8b0cG_5G0837d3USm__ZvO-mhAxsdDrzMCULwOakPADzF5AxlgZegXWVk6xvupOnQZ8o81fZN7JjRWnrmrB8c0GD6voIGHKc1x3DN8KGbhrjXuy9ILOZSr8HdtFjaoQAqBw7okac3I8Vf98PMPQ8rYBi2Q0LWsxRw-8aRU4VJ_IKA3dgGpoMC-191Z2XDr_LP3lz1o2_YqdgcnMA5XO0nT-kUQHIhCa437_x8ZSQrJ7wdsBhB57yDTWZ-aFQb-YTYrenzLeu3GqIIuRcuaCi7xipGvcqFGfP2xcUDkLNt5T8nn3Cs2bTGgdN8cI9LNMuuAAXiiiohCMfPQD2mik381PTgov_3BewvMmSNTl6hUPx3ARegkHYvTKtXpfEpTSHEpl1XTKM6dkMvFhOVKZbULqxjoq6RZXQ6-jbLBuJYjOA4vgvjcqCrAL_sjNPWjsaQFoBMuymtoGN_sVVRKyBfctwDPvetcLXIFhkMurB8JskHQH4KlYJ6mepwGUw5yB-q7Mg7Kz-KctAUWJFmUR5AKfMCXAIzXlO27fJR33TKDJBn8w0ZSg31a1GmazLqPxPXOUrm9-AxbY5GkNYL78tOhiKSuQmUV-ou_mwsgtRThtwhLmDHB7jtw_FQtWCmlw3WHkMzJbFejnrbiovDveJzyJzfDvFyOuJvUJoBMUvZAbm1Z2GBH060j7zweIltidZdCtD7WC7onDsW0u-pavGN1Sn8XPW7yULQA-tKi7mxNQsYx90TsGx-QuIzViY6Tvxt8dEASsyLVtfKiA0lvZpMLxCK_P9ctmas_U--7J4gSluAAa3EjXZ0OxkXqmPeNdzCAb0Vt2SsvZUrhcY3wxMVS4QCKbM2OaL1oTNUtb9MMooYygeUgHithiGrUvt1UxrXrAlg_DsH7F_bED3cHODgUEBgTlZ2NgIEDHDx93pY4dkYuzQw2lNE5-fWrbmQp6I9oKPbGqRRPYBH16Ag1rkmFJ8Dkqc-6fb-Uj02jHWltYJEOIXaZLc89KYmkDTy5lSTpavZwjshmyftbm-RCO5tWQfLRpe09NH-7W-ozHpiYZeS6Tv9v-10jyu07Ud3eWHeO3mBBI85BD10MVC", "type": 9}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12ix4zRAxwQqEbiGhFpSLneGZLFta5AlXQ7yJZmFkRNoylRGRFPs4CN58K7CyO2PaDXzKuPhxy-OyNYfAKdIX0FlkhcmehUrNEcj2T1OqA8NHLSdoaGzkBVBa78rqKS8GJ8v2Dn38vLpTEWK2xH4CS1K-tlTdx8Si2ZZSFMwZJ6TC5SSaLqNbnS6gIp2AUFQi_2H56MIGueMFKJUOYSmq2Y_SJ2cb-wkpOJwEdYU2Z_cn4MkLrfxM9XvEf8iapAZcLBuoRCD_gpr6vWnkR6NYxYQEX_7Z0MeeruSHLnBQ7TzEyVEvjp57V7SlQes9QY7ivef_cQKGIaDT9sq1_mzFHDJ4XMUWS92UtEwuoBJScsgbzP2vaYcPJ-8_qK5RuwZ0B5Yyo9lyzrWS6DNOaRHSG0_gRm4AzveOu1VOuX424yKz3zwZw9qFwA3xkQUw3RUSBS8SDyazl_NhFUTfDGPwAzRSOnkIkrIY6j8T0XKGNgcWbLC8oQNaXOgswBf-OXmekCxjdp5YMbWqOOB4KtF0H-5sqRwKnjz9AoxY9AAkP8iXu8vpqkIzO6XLPkWG1cODyBX3J1RfHu1-sw05raXYtt1rmjsZ-nadlRwua7kr4BuIJ8cU24Rjry3MtCEJMfj7r8_2iP2xnqw8mRCcsGx3-JAMLSAztcFN1LvLpFOXCE0nIht8WvJgVkqkgYLJkd8DmcTpALW6psU5Pv-IWz3qqw7HLULnYYJtE55XtuH8mK5SeD3kNLx9AuP2zh3m_rK02o33g3I9fed8E6yM21KP7a2wwFV6csX_BUjcmbhReyEhLfl2XJv6OD1YP_4vHT1eRLhBdrEO6DaFNBT3Ptit_m7y15d-GfdoaAc1_aKFLD8Mh-31dxUY8o-vAF97JgSWgOmYkAxLrpoP1Bl_zVOYQJ-ExPE3kFIP7gbRAOJAYHU_QMp6pqBvHn_9AsiQlr8m_p9mSOqvoVb_PyaA55cXnI99MSoSiYgDF4wqZIWmC0X1J5INithxwVy0sX-lCKNL38liDP29o_i_sO1dDw5brmTJKC-cBlLfX3q2TITdDAiJYaGq4keObHZDI5xkkRVpV2BfxKptnG7pg8aUlnMrQ0bg78iV3taF_CNVcd0vIWg85SFVX8md0AAMqyZW7sUzOqZNHwAmUULnG6kxEGmbKNEqWB6_T0qH7PHnM6rHnfI85U7C5JyeAgg2fnA6z_lVLzpQOvdGQsaVt84vZpPfYV5gFy3uVA7hBoRZjcNa_MWjBEyudBBXMzVwAaHarYdRLVu7ZzEjIXnodTIVkXaUP54gB5jtOWmKS29_rH99nfGpti1JiKqzZREYbgOEAE24wpXd1DRmK5QeLJCaJGflNIsIPG0Fd3D7BW9CWE_e5eUl4jUux6oFQFNaRN9LjlPGDT3mlFHzr-t2Amj6avyXImQnWxPjF37XkNlCbs-vINiURls9uc-RpWp8_D-w9ODs5jQy4RpXvzSYHbwnI9Cdx2WTi4QAS4zNFSwxgWtHm_0DUMaGzSSnE7BfhMnJOGOUVB62dHRM5UO7qTOOJSelnaMz4fpMgzpy6P3RzxA54hViKBOP3lWNTPsyyZ2moFQYGFqo4ZjPTKx9bjzy6IIGqcC1Tkn6B_Af0OCRzh8oK5mvDsXiQuba-9q8fzd78R4Gh5SXuJXysiOb7EZll64ZgRvDz6kOv2mJgfcdyV7PEc4ZiM-1UYyOXhQ9a_fLuCJXAIc75SBSapAliVIc34mcOTW3cNei63JqAVQlS_TPRzhYT4RIWhDpgFd_-r-OkRz-5G5kDP251TRJpVm4Uk6HhYBSV7rvqV0iL41WMzq0ehjqTl9GwkPmoV-UJsrfogXB1dCpzI6v902pKHvmkZRhr17cEgh3Ht6y1hjMod04BoGwZgGAjaD0Q6WwtenrTHIJHtoLBUEA-KDk7sXy9ldK9uuNAX0PJwqgoe1r3NBqayhbYvWTvZtmaTA1lm6iciAD5AfVz_b-ArQd2_ZBRDBRJNpKqbatCz2I6Gi4qNzlTZmjoKjBB3-GfswAOZVcPgBdF8Nf1jg5W_DnKU5mCi-10Nb5l4C9u4Ey_upCGcyccQ4m0w6YoS1h6tfuIvxo2tBqDjyelFgx1wFWBfdchJ-e9-_sZ2sUJHl2s6Tpfr7OBrs2xoL7S1o3aINafW1kxKFzJHcUo7dZ6LjrQlLkaNVxcg-C4rz1N2pxaJ9wOuVCoYxk63sutBdxlm0Fzv5ZbT3pxqbZF_BRDvasJXiZrjWKvAXEfVGhaJpZ3P5tSBSDz59QDLOES-bxQ1zeub5XokKHRuGR8C3UoMHs1v-jPbbB43_uFI8bF7d-paAUhwFHJLYeedIZdBPowRCkAyXFfVqbJzBldFmCzZGGJOlYlWyBLljPYXlZ5CI32QrVbq4fRrTVU76OyDPt-qUyOcoONpP0rvKWNXUlIjBam1Hyv8HOr8GQcg1hh0247A-QkNk3c4uv5Gz0TEKzIrttewLW7gHmhYhIa4WVZg8OjyDVOzdybHsraPMChuJGUUvknKY7OwS2mnT7nMLGaiQLYWV728h36", "type": 10}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12s6NKzVTd1EYI0L3IF9ki8uUrLZ4ia2nGOehD0Ew1gvJEgBHWnBsPWYRWEjbs_SJE0q8_fLQD_42I_qKxnqxu-ryzN-GO0neYZOqlLWS7A9GcsLkzvDVQCeB-I0tmeLBV9HI_XocoF2sJe68WhJx9V_gqpKSIdO5VtbRu3Odkjpmf6DQhnrcPFPVWb4L7KY6njSVTPc-NskSyoB6wc0La22YTxVTCMXa-Lf4ziPeg5nnYY4Fsz3yie4Ee9GtGx4VN5U1q7wDUBeazwJmiYn-iL5wke61Ttkv4zVb0axnYZP_hdyampOmySSAKMWOsLNWekCOSg_KVSBjdI5AXtOLfLeKCbV0_6Z1gF61L0Y3eQdAUbulXYgeXA9J7OkI_NdYZ8x2qbhb65J0Ap3ORlxrs7rwApW_BF9YwnXOJq0nhR76-E7cldcPN9a43i5bJ9vFXX3c1nQL6VeuhYe4Y1BDC-b20OUi6cBgukbPTguBBSpiUPN-UttQJXrV_SrXnR0U3cA5V65YVBXdtxuWPZ9a7NFrXw1yu5Oa6D1qL9FzpyIoSkJ1OG7OX64j-VzvKN94qQYEecg_P29MOk7auAhxahXrdnrQiBtNkJaOTaPH1d5Zs2lPjQThiuuBZqL4UbYRHbyOY2ElgCoi38ssl3nCPA22qDkYEl-_MuxbaQdq04Dhz3HaFe79mWu1F6MoqUgdhl3H417kUw_ADDJPfu0SwXphHYflR2fUH58Hr9NTyH8VxYSizKcYUMh_HasLem2GJh-tPblTWgV17ratkX89wp6Xy45Jkf5bdky_hez6G2ks1MI3fadj8goHxQuwOfZ6c42HC-VZG7NlxDKGg5Ygt0x8Ygw1EEdogRK3F7N3DvKg0jz34zCsheiezjWOEnPZwuZD_mlAOaVmx9Qa2-Y4-RTGnz7HlWZu4cJwpU4mJL86QUuRfarQLNUCoTh3aumB6OBMCj1fO0HH-nPqwix8NR-llBAQa0DIq7PhL3fJTgogBev9LPGdZ14q_YfbR-8qcxQbIPqCsD0b_Pevj7pGbmPD9j-hHIMuEh-_pZu1IVRHHdJ-4ASbuMtnikE4sjaXVdjEONbVI46-NmDUS3uc6fGqOHKIpaO4WBO89N27UVZeH0S8bp_W3ovVIMVmFtWI0zCSYtFSXRyoGuQ5zae65wRL7tfeDtwsM7M-buTI58dkt2dtkLn2wfTnsA-XHaqWMJs-xjhwLW7FsvpU3FaDPK6aX2w1gNauUrYjEPSBU-8lb3JLIpOCEYqiqzhdtaxs_6S9y38bizmYxo72oGxRzFsjFXVg8kvzSyiIr5mgzmN1l2HDRLDos-HhHIlLQR56-sKG6cn8KFWOFf-3tZNa7Ch1vTfnExn0WBSktgychM6sFRg7sEF8wy0fNmQRGIyOHc1rugxue3jLFQH50nCDZi9U7X72iU5lWhGhIFN-dxxZtSMitNhbxjQ3ctg6zWguqhBMdgpNu-ep8P7BCU2gKFKOOH7kwWlbmnXii1taI27JNXKI1fiEhQ6Rmndd-vsb5EaeHRkxL-Pu2f0yLmgXE3slaD0KqCQq92Nhsq5BiPghLUyuqX2B8v6weOQFvJVOwXAjnVzXfF336AhAdymaGgwUqo6wXnm2h6LEDqPbdEg1ERHwkqZMUdPM8MZjzMsEy1GorT4BLDxX7zYWL0EiK5G9Nkp4rjcHshupOe6OR6DaBOkMUlBAxN-04eOTh8YU-4rmKT5b6md0z7w-c-EYzUR0kr7H-BH6S9nldNajeeLXGfa15H59_rHXDDSDvrNtojPdnKha67Fr6DN6_d2w1J62bC5XjXy8bZV_PPEnx1Ex_m5S4xKpjilAMWrTepDgJrUgE88NgZEXNMpF-vzBS7VyZyz5VKn7z70gfPCmKoyJe8UPtxAi5PajNxjs8fK4fODC0Ld4oKjC2PrqbbcIEbCIX0V3BxdfRP5AZdD_1sNOfZzH9IG_8PZfvNmKWNYb_I_FV1DthP-BK-6iYB9BQoEjxl2Sa7EWqV56RE4mtraPQA0oSwo7mpCUu3AtYErHEj2V69ZBIXngydnZQZAXkvckU17jOnYfBkMhvqzzMXcbwsKoaiStf4YxgucN6Q3kLI7m3edDrE6K6qzG-TxNvGaBpp3JyGymEH2SOZTm-ewK-MWHMQYaWykHPrOsoItiYruyAYUypUpS3vmgslStM_GKvDxgRUxu6IPqEm_A3159cdfm_K_78GQJSO_tj9a1C-C9MyqNNHGUwI-JtZ0S_d-CRgnLTp2vLkQZQtxvLkUpAlcGdVUlAH9ppbfRGhz9fFOTZigXwwCZwbPBSkyAW4FTDQAxy7bbCwhFV8ubpwOH2T5w-CJyhjGwqS1ho47ukbF3J-motOM81OhixxfelmvbPWYdebtr-2v47eaM5Cus8UChCI_SzCUqov4CDbnOzAXLGarMAyb2o6FgqDP3z_yBe_n8UVsbC6-vjEf7Ubt0CJjnFqHi49NFXqJ-fGbJmB-epRvmt4c7eRvu_ABXJTYUONECZ1QSafWGk1iIajaJPBPLG-muhWq1I648cDUnT", "type": 11}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12jXSC5uL72WdoGt3AJCtd4MdQ88hTZNMlyfT8q61IO5GF_4HiMe3FPYhV8a6TrDueKBxWrKCz_kkQWNMlkeYSkLX84r-dIWAemUfm9T9WSOlyS7ae206G9uz9qzb1VMVfrdPoX1MRIMsXhDrf6DZIvC0kFVjohYpomNn3Ens35g6cmRE4J0r6VltD8866Qg48NtLoxrbKzaH5pcTqnmEaV9thXAZki5-XuJ--xUUFScF2M4zOJ4J7AvjwoxxFIBbX6O7Ni4qRQdKpCDN4eEZjN4MMgYPktGGGZFZ1-BxoMSOrKc9bmc866bywThkyuolGdX4PNgEOODfDJWbp8IKp6t-_90u-N70kuMP24EmdGB4c7HS7Q5fjnmF_8MsMt0xN6uewIFcfRjXcBBFtvhiZ0dlLgQNBeXiX1CmYNwfQYkhliBjtfGcYj-bbvHkxhEOtvDRPPJqUrftDAJBcFPbRzWEDaNIc4_ssWt0fFdaZpyULJ-7SxsHtTShS8lDAtD0x39oErmnwXpePE_0Razj12lxYxAo-Awn5E6doqqGGcpGbLD6iRim5aW_XJtEwlmPCVtTzcZDfZd-l7AvhtMY_lbt-qO4Z-jnjQLJ1Fmw3iNMsMiCLTlVSnTPtWgA2-yYMJZzrPuHCLtUNnSWe-HkQwa2c3VFS0shXVszUD2ixrWCFwLfXCrX-hiIYw21_LseNY3EUm7FI_GsmYDhODnzSIjvWisLuHEiEtIm6UdFxtM4F65-wAWSVELI1JfCvMvkEDeq3EWuuQd2TEAhyGfZ5jrcIjS6dIiABPp32_xkj7QJNbFgOPoaBNfhLiI8wuRjPBcdMwYrroAGJ_MqBV4YEZxrKUKBUHpqNjHPZQyyPjVJOfHvKFHN9-TBAhuK2c5RfkPI8DpzMcNxRELDQSaIo6879iAqEByTcsbTKHHfBXUJfNPk-8TRNmzqVCrnIDBN0Y7Xi0FaI1xNiSRIeUzmrPFA-Amn8gLTeeIdApgjbz0U6xCBiGqT32H4zly4VxW6kdSnR5lNY3yjqO5JbMcmUvy1rsq_XmuAhg3tDWCwUK2m48UMHiCWWGW9XNuU1BQKSR6QeaxNVf9RQQ0Dt7no1ywVaOjuTv6QFQN5bhqwZQF8Trf5WZsNMv4E1IbH1G97USMUYA_fiFEX5FCTgXP8AizW29MdPAOo6pk3-RgQhs2XRXe9ASVK6nbY0plPHNfHPUlA9zLCF4wgO1Qr-BM3QMiiVwGZk9fcJUhnF60NjHMC42_FDE0o2CEyjJ5MBR_dwik7h29TGfBn6Nabl9TauOCS-6YTjpzpfRNGo7IcvZ8x_AJSfSCLtAkw56v4PyJq1v42_v8vfK8vpcDjt0SqROuwD3LVFz4lbOFC3I0S9f5cjcfdP6opBn5GX3437M01IrqF9RpVYK1b3JeQzNUM5OMDRu5egnp5gbU9kiLl-y8pszy4F-iW8Uv4cAQopx1EGsNt6ziOOdb_puEaoff4v7C0F4aTW8Qc4FHkeYtlpHNKvwJCtoaZ8A9FTLVlcxypGSqAFw1NhaXvDBvvbQidyZ5-ydBGrSoOodUvnBBiJqf9Puf2LiNQ8EsmClwOaRYckh1NFxlFSaxKz5erJqrlEs_dmT9LqAoybezJqEgIlXTqGXvqzOBnRrxJJ8jDjW6IzAyfxOm88L57_PQlr_stGeCAg3Owlhq6SynpBLIbaEhoscWmSdbj2eesUFrluukItudMgfUybgAh8t5TE5TB0I32aic6ddLH5BMlN3A2k8gP96lXI1OswZTPc8hd0HeX5NwnmW84-u2N6JMF9qu025H1i_xrhA7vZ1jZl-lwujVkZ8I1rjSUUOiEjmc1t-H9s4NqDIvg7ICnmbCKyoB19i27Yn-IKltrJ3dNVxXCa93CX7qebA-rjRAU_2dXLyFsVm51ns71P6D2yjJHfJDuTyELFWoGuSXSZ5FWFe2SsxsWF3H7zW3l3BUYyoNQxgktEfiWYalkxooxKwFMcRIs0nWqmNP0_Z-Xjr3z5V4MBZXToWWzgcUaqHGeTPC3GjvFq7iVBgJpCmkFERy8pFBfghwVbxRawA04WU7idD9ENedbuCHzqylZ4p1ExX29_XV6YJhL4WbLpsUJtDfd6vn5hIkVWSORSyjPQT7riaVTOZCEMbJfFfikm-pBGBiEbzkdThtAbEHJ4oBvb0WovA7njdre7rftZpDVX1HOgrMr0mv1L2rE7S35QgmGS-wdjrUg-a_l1TyxS5RKRp9Z0JV8D9lLRV8_F84g9ncQHdSt-aVyR5F-ngUpqpq6RVHk6t4HL_8Vq88o6JLkvJF6xDKwogk5V_C-lY3Y4LRJo0aQ24jQg05r89xzPbPJKb156OkMADb1GtwTSNTDngkLsm25T1oKo0kl9OpHIuyBS9xT4zxREBihRniTFr9nHKvtR3XacAw60zRvq738y6olMXtN1QgiBA7or7HkuNMVpyCE7lMFDnm55fAvTQgXPoZM627KsI8RgcsnukVLpqiduP84FZ0oDcTZDhlMXiAwki6V84dKfWCWFVBaHpqQxBbCpXcb7", "type": 12}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12FOaNNYqdBugRo6KIRzrqWNp48u3tBJoupp8Ls_thKyZMyT0Llk8lmkupxq9IXnJFxdWbqhcMIHVBCESi2wDjM3AYLUAAR5SPuR55G-7l7lVKmtOZ8ghNYhD5Sc3bHmv778Kezs9pEAfm19gKStLGXpSE_hbAzmcZ-7RAKhUYqThtJMC8qO4GvL2NanW7CgA41VrEaKd6NDKHzfYTEKqvnsT9lBK3b9758zhR2psvsm1FpfjVNr5bttDwlY9wtPxSsmcunEmuBlkemY9gTtdnxvbQd03R2yTEKRoPt2Yz_gPLSMj_viPZMjjEdxydF9zzgsSlb72uVkJt902VTWhu5iM1BqZYtTF4-O6Czwsn1fafQDyJ_-ZLvPWSUZ6zUt4JDcP61eMy9qkUMap7CTQpaZlxheNl97K1bYhUYeNvX6bytQa3Zj9F8tu-XS4NmFFFbdwdoX8eUvDhNUOedCz13oJLe97ZO2gmhfODl3JyegfVIwRNqdIIoeuKM54U9g1a9tQ0AoRiBIBV-rRtrkfgi4WuN2RnLQlZRw-iOdRJpUDIUwnuhd8FbE4tX1Hjq6Sfo1g6oOhXwCmiA1odOYmoRwSCYuVYJl08ob8xNj0MDtATnJUXAImUGvIOZO51ftJ5h0Wb80Eyo-FqTdK8bYU9IFfvNMtPA1XeZzJAf0wLb1hpXe-h9JHGgRMQtTao8hldhosDO__byeIvtXrLyQrrGQleihnCTYcnjTivjMtUYruMsPhnRlFYDiZX3xSRvPgdhRsNQ_Jzi29TTO5pJGl7dSyB0iEXwGA7ggriPox2WJulHlFJ7QqoTuGNVO3dK7-HI781Ob6hDpfurd2B-Nsl_VBLb7U14ZS6Q3xEkQ3H9mt-Q_YgKQkhbqW8aoHF8pPtg4nTS_OJlPA1f86RxiR1x8rFlhl8vieiq6rNj3EexfYsysIRzNRlLFs-ToG_sjHn4u0w69vvoEuE6VTarX-pURz_cDSj0IavyQwOqZRZcd311VnOE-pv0vlcVTvehiKRCUCtq6BtEqozwwZnbN9BdP4o1XBc9DN1ZxjMoTf28s-8_weI0pw4h-BG_h-CPN_ixJqWbYC3eccWRVfBQkgrfXTrpTLie5HQCM4Cg-WkBcLZsT5mleE7aL5EgBEKNvbfUf8Jx7kiQrD4s3NTjiyCgUD2WnMkVFE-wg1bqQxgmocsgR7BjGb5IKX1hGgc3x9uxkH_An6WSh_0tVFkFUGLmGnb_5KiqSsdzT-ysG_8jlUJPK_3WRFPZWwhiP2mbJg1YIw6JZkOw1MUIO38rj5jgfJH7MNvb1K15ldM59iIbqVOjwx4Si4HOiUt_QCx88ZdqJhGumsFCIXhmU0YTUdVPhPBlClZAKwLGPvfdSLjIGiR40hxgn9Tj2kB2c0v8CbvQErG7-3c_04JNsETCUxk0nBsMsPu8x1lbSYF8SW96M0orPWsrc9j3mS1WaLSPG9SnnRDGtkv9hQm8eHS35z76q9bzFmp6DBY-1aPb_6IBuyDNpg7UBTPv4A_UkfJO0CykZ_wdo68l-abmKA0wpAQ36DWiGVdf7Pm3oLpOiAB3dSOBzI88I4q0D5rsmG8EfCGxDsbukQx3VOMqcSHwYsvuVrwsDrdA-UPi9U-TApqWy5zoFZwGcgoQ3qBZF9-y7CJ1cfNGTJZJLZ3E_d7c6fDer-EGcbhupX5M-WAo5xF_ZVfu4XocokUaAL6Pi2A1YS4p0M62QTatHBoYhosVq7LC_bqQPg8M4Ym5n_iQgeR9PmY2IHqnx3Zgadq-Og4UZOszL6AyAai-1-mAYHqYptSwO0cWTk1x9crtM7HtX3-bksMhiecrhLLqjG-lXqNtYzGVyQ-cwCiB8oPoJx4p-FR2rJgtQb5OVLfjlO2_3EosDpc81jlgAibpD4QdPwitU9dtbh5tmECcYo-oI5GxV7E0SykSfP7d9BLFLoGkYa9NCa4yewPG_hgSnoJi-HMRMCUkGq6dF0r5_zxVFirMDGt2NqlfQjTDxG3lYI8_gLsF36grGO6vdBoyYzuWQDkzWysqixojpMcc77DApPZQJdJALUera7VY_XxtBW_ucv_sORZOfE-L-Kw2jz0CLev7VfXMKZIObeSNnlAZE7qoVd_G2AmAM3FjlqRXY5OFAL0phQ_lxI06CfwgkoRgIGZYwZUpaTOwYsOOQTmy-0KS7U2wOjVjOR6407uId8vAv1YJTjyGZQJp3C0icZOIK6LGYV53kEm1S7f-wQcSf4p-jMWd8queM5KPJ8YrAwymVQBR_1jr30TNayIFutJKZKOG2lQfC08JBGHGrcUvV0bsCt7_NEdo2VoobQIk4NzDR3UAReetnn6AbwzUBp0kkbuQnu_1X8HHYaXySJ0Og6EaddeCo14rGUg9Zmo-VOcPbQGz6w52i3iEVERkQCFPlRb5xclq-hZ6jEah_sVdbbHEzoHTNKtuzwCqgS-ezdZoWUyHm8N1cnHFWOhDokp5fIpFbHMfbIqZJUEpoT_Bcfu5O_6sFIhKQpPexdL0hNfXhBE6MuSvU-4knHJJNS5OctcsqF6", "type": 13}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ125nWZVeAUMS_3NfEYg6raeE_xEscHV3iBL05sXRSGxe5pxgdE-ofv1Q6w31OHa6ojrh2avuhT0udfQgbnmixjq1RSGE1QFbc7bsuxeFQsuvZfoUMjmOXwvrReHVWMqAhBpYTqqd78GNU88XGinngMyPGKJBeff3o5R0dBZhoMkjUBxeoKmdbL1qTIceKRnQChsg0GWIMkwOEarmQ4-HUdr50SqyJWvDiYHQTXiXiIddUU2oT3F2pGnZNLXpns2ZEBhqtXHx1MaoaVzMDf2W3LQNsXXvtQ2_hpfFmB6H8agqb4rHMKcQv7BxnXejFzLt4Ipg9_yG5iOuVNReuGsj0TptQywlleKnZwd5QQRrIakwZFYZ7F6xOclGPwaAs4Tux818BMiAHpfGmsTGi7Sg2fIOTC7ZyBO7ArEZyxvozPvyqXguOqgPH8Gmmx0BztFBnyLHz_YFdCjFnz9tCY994WMdHR1Ru8BEw3QMBfQkLusXoXQ4E4MlVTpOfiLL9XtZYNtUCkvFyXUImSng8-HKB_aNA5whMNEuHN3QrNH82v9ekASmdVPL9Jy2sFXTWEJEinvx1Opevzae0mp1ODR_qnRpZibXMNVJ5_bARzP8nvdouPZYC0wEUNqcQRtvHJWNqSMvhoNEx2z069WPCsYiPK3saFvk6hyfV1DPYatkN_PojWuzeewyiSOMb9VGIosXtmsHjNthaA9rQtgqAH8Dp1WzMhmuc00DoYPW4-qU0I_rCRohEn8U2f_6QkvYn9sEVO3GedFiU6ujTKiAhB2GsXoa1M5_RpAr8Z3lgjpUXtJhlH5BLZ1IZGWNNFfFBRj3C3ot1_FDbyhT6XzKjbwZSR-QtxhDtKu6k2biEOVqtkT_8waU5nw_Cv-QIfI_JoWjj6UBq2XxflG78vfGq5JdLAEoN_WXG8iAyQE4f-sI00OX-GAfe1J2jwTbLT88p9uFPw8WXPfHR95RqgBd7JeyJKKBiEPqcA7Q4o8TE_y7mOF5UkJ_K5TAsbGniJxRMwWE4EpkcedBB-pdW0GZR6Xt8ee2l5feudvn9GO7R0jlEEFvn7ADBDIC4dpoufYXnegP0iubYLdxvo1zt4iy_J9J68gMWnuCXLvw-68hvbQhenb-lEwwMeyXIwBmZNuGoKZvUE4K-B2gu12QPDU9aWMdVGsYWvzVKiprqQWSYHIdaWVGpBPncYwsSJbQZ_tkwb75jbMl_P2aZTqOUoNPJzQXBn6SvBNOPIUb7MI0z7U_YtD5xDd08lTIj6EIkZbuNhrQSykkxaK4x5HDmy2XNgbInaf4p73AceficHcFgG5--POMjKmI2lK8uCDqcHUL_g4bvvZNRwCZtG8or2jY1PJwVHVyNuik4KisJnRRllTBksOTaMX5bfmeCR1S_pt02wOFdf4dD6OQv4fYTCu6zmx-tPNKf8RBIOwaPHCw_LXOuBWeWi0G35IXcyDKTi-7OcaSMAsZAN5m879gOiJgsAf3acGzWempdAEX0JKvUvYTQDBwVIJ_0SLmGneTk2jauUYGIzasDo54-XG911Wgp2XUyPSvasFqrPNoxwpj8TgzaM6eyJgHsnxj0twsgPTyzjqnvKT6FaWmloIP7RDiHJMUm_U4U-5_3Ih2lbxx8X6PKzh9OTyeQGyOndSVD2Q1OPgb9_ATHXue_LC8sYKcJrRMsRxdJgPNa85usE8JMF9gC9KHv8ypV4FZaJddP8OMV1JgMJtktetPrvtrsoNVqPNgvjvvX_cH4UlBdNvtk74VtpW4KkN9El2xF01f5tDIsq45droEpx6jrBVCTqgWVWUQGFeMT6LKJr9lcaSGgPYfNyDLm7B0mdkUm0loITUQlLtaQE2whvGnXPSqsukeIM3HJMpE4st31TifxnVBBKGgHttvTxIHs9_NpCjVcpSWQBQ-css5v-2H9Vyn1rwe4MOha3sQRbYup4vZKASxgib9o0xZsPomErdsPBjpHbkqZS4FnRw3D3tUzpkksOtpmrVKITUKuhGIK3PgddDYYBvk05HOplN-V1RKPwMMps-G9jAMkImDIaxoY87Y7LnqrreNo6huLMsRuZlH00yawPb_RYcgrH-mvMJwi9esS_ZAKoS-uUuzwgtNW9AYU2L40bX_R0uhMymh2JBrXIEnpTmPTT8grhc1FbvRPDhetrEUN5MEF149e5gObeU0AfEQyev9mXw6FpqgSn7UpllSv6XtYiTYBDEdDDRF5xS0RUsDfzAETM_EbU6sZvQ2rCeFnWWim_WMW5DcpKaopxwv49G261oBUPxO-NXMJeEZ_eZ70EphfN6a9Qx2aPCNVp68_mcwWiY8cL8elPvinpTs4b7d6D216BiLHcIPpNdrDQujryOBWMFQxy9BYXL15hj8ycBk8Ltv8lFUB3djkol6g6VE2aPS882Bk-Mi_VGul215geyeV5bUBrcwXSwhxio74KSVJ3OT2PgJTU7_9au_ZKpQ-IFIlF9gsO8iSJftqRN-_oZQUWSeeLXnZFcQBWyfVCwDaAdd3TklQmob2BV7O8I3xa45uDlzh-clfGxiVZo-Lqv-zG", "type": 14}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12dkXpLhJrBlJHXqaL6GvwZjLrPUjHXyGO9FA4GrOtKD-FOcb5KDSCCEeSNKtFC_w0_znFFhr_UnJW8OdTTP934W-cp2yJEfFDPEMgTOJrxNqEDQKXyyx-GAEZcouzB83-vm6Y2j6BsbV4S533heOAav0LKIxrMK-qjuWDJqnuuzctObxoMpuv8VRyZTTnoNm5mgUOwj7P5SG5KJBYuw4HI1bg0uF9QHcpErUuktIaEjx6NTKU2QcTNzzAxIWRmJMPGY1w0il5N2FIe5AS4GJbj1L_xzC9EsfDWkHqN9ENt89PEWJTQUGqNGJx65XnBl0mPxJRHNCLRHogj9CsAI2J8HJD0LmJZHvQtNSAC1jifAF4rtvFR6MyuAN2rfxGtH1gCov9aXwYW4iU-tPCm915_q--iAMYho23FaFjPsEAHgCQa0Wyx_YHswBQtgYJMPVHI94-faCjaroy46f7QHJzuXpqYXB6UONFvb9-kedLdZpDefE32875FdPDpR0y_icCo0ge9zGcp8X6GjHKm4dna2KJuMSXAIguN9OC4tTJ2t8rvTncagw60soTeBCRnrOm00v8-XSJnsT4YQNpmcGBK0c-sD2Qhd4oFPm6Zye2AQS1sFU5m8pY3SyOOytfmf1kGtN5chyT528oZscNrB0qSuWGawqIs8eAT1qkWdKkdjIKp1cwOPzKsombpGcbUlOvqoZZIAQdvCVF-Sfe-8vgMjLVnjIAPBo59gLieXsJpAqqc1oa-SKQOHr6sStlNSQ2KxgX7MXE6j-1owaqWp653vuy6XRIgiFmPXRTGI3ciH1SvUYXevR4MGFX_dlZ8Bdh4x4wCAoCFvvbVH5SWSHAUAA-jTnXkEwJycypqFoZhv8HPGLbbKi6SHRgMlT9R8RFcL-h-OwM_wRS-MtVGvCk7L5hkiyBQRfHYcYfcdgjIsaWT3GQ2J_N403BOvLUBHvc9F3ZYQZxVkmihDCVv0GceH0Fitcfb4cW6ibzasDu9zWxwRx24TGFO994HeMq3lGSshhRo1LdxWamEFqz1SbqvmcQN93PylBnNgi5rOw94PCrZt54GFjGxrLehffZh4XH9Lfz_Qb-zhYghKYFS4gfHxwthnwryRYH8IDU1JlTAcZjXDs_ldL84BmyEyQvl6ZsiQM1-CMzhkat1Ee_AKGoZrdZFCgPSa_hdv2Iy-lExGClFsnKauZ_8QcjBNuJH3ufmNnwLk7dvsjExOD-uC9-Ct4fUTcgPJCC-lB48oV0hLtstPk_6VvGGJn7PwSF0ziQl0BbkRf0QhJqDl4IoTdnMoliJ4AoV688OYlcN9XLltTMD8S57_EkBmy6m_JnLSVh0qtAvgRMJInJj5HJrMW5V52ifn0dkwy67L9hlFhRcf7tVuAsB7nGrTilTVhK8tdmWcOpJtXQL9fB5luNNZKPw9MMFrMMwp828naLLFOixYI04zK_YdaQYIbI1ywsfnWP6yyT3d3T6WdiC2oQeJIftvaHWdXTkuV1upUyBA-K6rTz9xyD1zKxFNKwDudyBAs8CQJYZ0obktl9unb1ELoVdg7Sjn224KK6QHH0NfAWBKRPxQy4vXxC82Pt-yAvjO56o6yPdMLRbZIjIvn9g-wjwn5XcUZ5MqMSKFFCQKUAi9sLzPnxsn8UbW64idVqBbdw_HwfWvuarqlbHdAmVoL_HiC0lG0uu2Xb6S4oaURDQdhrTNYmd0izXuQAWcU-zmAbagBU4zFY_nPfeGdAeN8B3nQJFbGFD2iN5aS9bQ_prku3cGgJhwzR11bx923PwwPORuJK4gXnx99P6vGiI80a6z7gpj7Pk5YDSuHYKh8WuSVnAgJW-_-5Iok6w1VXg03DdU7W2e4IK9PvtIhhtOweevf5owML-RW7dd_x-BxQdHVixWiU2eOydDGQwVUPLL_1zXtca1Vnl0MRqpUPtx9zvUXwvXkamCK_0-1ljCXFZT_tMR3PlbyX_cFNtplSwwCOFsayWLCorq39mftJAJfbNtzDvcQXJLsaHHOJtwXEnjSKsS2vukajnfXtYITa4gDbFBXgBL427-zBydwggl6Mfbb8fPDvC4y8WrGVg8hzQOQL3sp8V_-4MwR9Y-XSTWYFRYceKr3sKAwJyDZ-U19xdIwwqjNCsOUrJvt6ZA62EFtjsWPbfQFNxDnfF_bEp8sPchLDZyFYgdESQkg0VuCq3nSMJX6vosa2Ia9YxZcrUDv0gZhD87wlws6tAqzZVcyXa0LwUPiY28yBGLS3Jop25izgZa8sI8IuLSuiAgGWIZKr8Y7jVvKZYR-pIe2s1W6sLqWNteIeJWYBKlykBRLw9obJJMj-Q7b0s8zgAS2HVgyCSZc63yvDjfgPFfIUDmhlwV8j4MtxVFbNQCPFm3tkr_xeiPidzjcFLYHWOSUHseVx8vcw-pOYSAJa_QmRQZ7HQ3RI5Z0GPmfzTCaw_-IgQrUT4D_Gp4dWfz2-jwnABB565X6DXoysYWdfQouGOCygO1jD4tkJScWLVcEoaNQYx60m_G6gr7JVEO2jcUr3SsRbcJGro1SXpD6TR8rjvfOw", "type": 100}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12oyQkk3r6Y6MO_Ifx8h3HH6gnpm9usjxEKYs8aROUch29HXkOOecZNh8QY9cwHrgkt4g2OJHSzOj57jgrtxAgLCpRr9ci-EgmOL6TtKtk4NyKgCv7gkt-5Gm380ETm3psOxhwzvCZDVpkq_UXoesz8_93PCIfQ6YLnZHRjvkkTLr2ew-SVtEarMpjEyXeV1Nj4sU3J0dmNbyu1GshyGOcyMQDPRrHRWzMmo32goC7ybir0Sl7acuhNu6zBv-d53SMI5KEQf9SXpJhBdILMf2enSAtbwkR24jwvHeNKis9J4KsecUSOBvhwdsN4fcYtG_w8Nq_7YM_on8l6lnwiRq-sGMDAbNOSBwA-sTBbrCkhlH4DUzJlnEvVaBkaThGIwhHOBMohzyO0s3sA48bTkNkPYfmiyU7PmNnLJjnCD8JIyDTJLNxGgYxKH51WnGIPSCXFRLzBX_MaepuGWYIxEA-WvxQLJfGS_z3u7mSX-UwRytH-xjHNJldfwZ5MPWfFJsCMK5OpP3WmfOfZ4jzjyuDUvuDnpmfb9QkNtklk_z-Sw301JPd-qlEpfmoW370UkcdwKSMK9i3SU0nWXUaJ80mP0dXpYh7sdTrhAaRhmg7rWE_igPy7lhPnhLJiVQgn0DodHBfpgyWg087tMIX6PTXY4bGtFFhCc6leOXwnYJs8GeWGMdqiKeOouTXtsj3pCBWDeWhU9OV-N0-YlK6KQ3-pRufiWOWlkRsTA4pMubdVDjWviAM465fPQnMNOg2_UdSn8Hwmszv1a0CEqLXYSVgCdCMZQyhKndDW_iRStBOSsga7yh3_fBcqLsrhOEswQk25CeptIoiBfGI6oTsspz8_KFSM2aa9Eyn3zlxLvKC8UY7Z3O8eXu1epjgQRjzC86kzzgUl3_NeA7IU4mslRMucBPTdZs_h7ceRWTK68Kb_aZ5EJo6m--MNCSqL_Nds51GEkGdKnTQgEWkT199Ca5y2l5qqrDVVeaEJsEPjeFoFQopE-XMtgFzgBlRKk8utWzcudWLD5hEUwLtHNg4lW0JayzXj2HEnVB_o8d2o-5g-Il48z0PYkLHs5JRtBcl3dqVhsC50qzt4W0ISZsgIab07-vVR4jJP2bC2KmO4vkjZI_q-ylyhuD1Gs_B_W-hKOJ-jJ_LEvBMOyDdjNNE7pVbnkna4uAdUBijJHLvXGR-nzOpggQpdVXR0pEWrGHfsAVfon4AY1xey6AskFH84tk0_aik32yG9AGfnW4njxUrUJ4RsWRopeY7PYa--c2k5JKvqs73XAGKYuF6pZbwDeWN4mjpeXdN542w2mWDD_09pxGH8AYR3ZMv1QiPGvi-qRTlh35XJY-6Ezyf3P0gzZkhJF7fxmAl28KICvnBGfciiDyksuPAuHqWjZELRpOnUVlhedUh92MjSlH6WVOkhtfYm5MU6_8_fbt0t_nswN6K1NQ_lDv2u7HMPfqtfyHubSJzyBc6YyhpfJb-sqW9sBpwTRtZuhtDNrXjzmpg2nizRzQpWrRrU6l3-0RtWXgfPXD5I05f7hoFIjz3W-F6e5kGoa5QQjrVViS2oKMFYP-to2WSJK8AyZibc_-GaSco0PIH_mRaZIXNLVKGC4HXPPYs33VQed663MTEY9Ql3eYa0959PdqWjPZXaWtJDkVGqYGRaeHX6NaylQ_p0Q-_GDmLA7Dzf71OsctYI9pWu8W40wlk8Yi99PzfAqnkcfhSQZWuG5U4V3KYejN-dzrw15T59jR2qZ1Zp7yYnV-yBdVw7zyRTWhIlimYKVBlUJ3o6cwRYus8ssLBBZiIIX7B3Mi8BFbr7CoL_68Ow73ibtsTxQc3FKK5CNtKB5e5GzuGSevmCSx8LmvP3YQB7bN-_HhgtVh18dkvly-FpdRjxzhVb9OseS7p3mD6OLAIOOCYW8PK6rBcgbRfv_oREPmOKM2Kp88puhwXWy8r0NCMUlNDvhlFLxqezDv4-mgjSbzhFt7AF5CgcnGk2mZmLIhVp0z69p5igqUfcmLVaH6AKB6fFdzM1E475M975AZscTNaGDSiUINeKzwB-kfgYqwI2BuybllZq7Do6Doamq0x01iF3z5cB4robkTaY1FofdAM-EgjMvWcRoJ10P31bfMATM_dWdlmUcrwRBh9gdh8eHEwT2zppMBX_wypusTN_X_vOgEb6hS9hg0QrgHfUIrMClSI6N522npDn1yaqJDGBJw-1-c_JTvUlADt3lGBtwIMMPJSdmEpCM97sESmsSjuomP9bG1qOYuyp5ZaMbGPjplpsqALgUjeBa26KFywd3LAty87FbMWtaE75rZ0FeiT4khcPWCJp7QSj8Q7IoWpOraoYNDUmdQS-JU1nWM0shX-FBFcVU7dquk57i3DU-TaSIMxNwuMILR3ZeB8Q_LB4UosoWaI9vVt72OVc0MBwVdyiJJ4DNmPfhVwHlNB2h24rETHzU0btg527JOrU-HZqyJFRkDfqpnfr8lJGps65N73ATB3RZkt5esTDMqsoBvTCAoL-hKWu2GpeM26V1b0s66PGRstMok6TFayNza-PtOldNK3", "type": 101}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12MzBQed5M8Hia7wZ5yOQ91nUVxdKUz7KRecfzBTyQgXHTm-V5VTFlgE3-5QvHkOswwZTD0EwFOhFLtOxiXiUvfk0xeiUIRJPDJfi7qQubXHmVA5Sx79D9QDr7pWKEv0_-zZm0sOkhSNCzhf3ejg5oJrhQQJr4u9Hu3m6OFn2BoeU_9AHtvAjFLMG7uH3rtS82b_JXMRy3GlUVEO5cNYHe0cGkWE1xNfxQqyiPPcC1G27jXjJsRbDq5K1uQXwhnQ6zSuqYPiXwMTpJ7oavT-4ltkQGe4b6giz248BIpNJBbyKCI4pUpGxRD6EWnvBDWVlGI6hu_nyJwPGboHw3xEPnA_9BEBjfWn0qWlFgngOUEjULP0s61pNaizMc4NKZV4TgltRRfigg_nLrqTRZGFFnejd81yYJT0_we3_CXjP9soWvIoinTQxOZgZcOR55JxUSQoIftQmsJf23199Fxg9u1wL6O9s5e4w_0flIPmJ30bhlL3jjkjNo9OWhKvqKXyaWsLkj_mr4Ou4UTovDWwswuapzpzztg9spCNJRwUrNeWJEJ6fD6kUv2ldVTLKgVXPFHfhpAuJrNtOq3tEp_ml9nDSIBZMQnQBv2FYaEkc4pTVWtVNOQD65K5Sl2AP8sX-lobJxz2m2Z7xoRZJgMBW6TrWuHlFSTMhC62CwmvD5KMuAsEWqf3j9ZKwQ5RKriBS6CnwGxJx88TjAZ3bwx2PCtVYY1Uk0ucnrx8OXqlPmYDcAKkLRIlRn02nkzG3K9me7TdIVyMfUTsxyMI4ELisD6MxMrDHEt4RSqx5mHqv3tNoshzJHhV8AA_tmrtIRo4U_ylcQmMcz80DONdprz--ejyHb-DVv5RLwwe-ifo0vOEW0vpqLqMNTNhEic4Q6Wl68KJwHgbQ7QJcLhU9FnKiM7iCwXlwoNcJSTUwlJFekBVmHav_yfev458wyYYwJE294w4BqzqmuGy44s7pgEfUDdvvx2C8c9lvAXrTtid4twx1bSeDGZuZohP15bzQV2u9cqQpSLeaUXztHqz3jFKptlEyj6TuYoGg7hEu699-0W9yImyz6q2QcVTAdFklDw8_wKGPI9kcA00kFnyGDs9LjJzbkCSjmgx4q3_V1nlfsXACSzkVFzZFMAVvRE_uskyfn1OFbzJIuhmRgIEqQrW8bKQEFg5L4-xGxLYIjTGkmE7F7_gy6a9uLlothIBbrn3yt5HULFMtdZ2nfs5_7GrASedpZ4bhDXo8gVeiPR17x-l_4Vm_qpOziPvEDaMkPD3KCSSe2ekUbMZAU97lJmmuORxECL_mSSSXEdHldm11kUuwDRjVBe48cvX1HrKWySjVPQq1cC-PWok9Yn73WXUa_2HJ-lhU6aNiaK0RKdj5wH-u4dpUzPOAhZEKkaguw764q4KS1wR-vXGwd0bNz1CTfjpi-QRgaJX5IbO_Kn0xOOPAYKLWS9YDrlbtocV1DJPb7lBR31BvLCcyMO1aHDAimREuXtxpvnXCvXV3_NO3dDCMiZaGbOZJYnueLQXi804tuDOFHahPCfTZM6dw4vfHp92vsl65HyViLbN3b064tFdr3VQRXD2Or_PfyyQEFyOp94WkQ3ROE-m44dZvJSGA5uJdxjYILTNX7IbsLqIGKAE2Qqw9epylBaA7NxCyMtcriYVY5M9Q8tYHfRV-4MkkHVhr9ibuiPDobF4HkAukUZl_Kp3eKopJMqZ7awmvS-BEafCyzk3YIQ_Z_W_0Nj1cFOSU-aN8WS-z4rD1uIsvuhj8naI_vjvEq_yuVVyOYHeYa70Eq6T43jgIHZU3zOqn_vNnQEHL9CV3Zk7k7jsr5_C791JCCN38e58q7wSOwezAaiX3KovAALUt9QnnD-q0rOrO6lb6ihYO7yqB9g1Dlb7-cYx2o8E9rYDJqfcPdmqGYgzvXBllzrpf84gSurnAdil49I0o54id1r_59ExG1e7m6vkZF0IGRvISPRg-q8wYp76Wr4o21_YQ3xJDQ1S9sPa6rnRwFPo-J4_2UzdNhZ2_3CYyywiVfe-PvCXwd8E0kIxwDz3z7zHN23sESn5iwMSdyC3OR_zW173ZUnHYEl5f90BiY_R8H_jlX6iyO4kjrQFxCrcO3mkscKx-y4bBFRkUDsLHRHJJTfdvCZ8BuooTXcByUiI2lwzOohASnMpRtBw0Swlc95HfbDy5hChKmAX_kUwNfO3qNHoFrx4u-t8lnBxdz-FJgjfGhkENsfTaiaxZ7gSt0vvFLRFBhB0YNb9iBkweWZaJGqVlJOziW3ZHKzNcF4fjKLw-Oi5QrAxY1PYGNZKC7Zl1gnBlvKwNeoyexJIlkPR_UBq6kvx7CCEajWmzmJTlrYf-G5yOFsxGTEa6n17fsNCpd3cGJAeJ7V0K0k114Mb9VIzMdB14D-p0nw4DGOViokuCkrFsoakAkkJ6aE06Lxb41JSxHR6TuYATrXnDghtIZvDtDgfIO_mC4x9d2lEqBiCX7NGVbF_6h8HqxC7cwM791zaDXfbym65maOdFyjoNB_AuJAk--2BxFwe928YI6rFwggF3ZbIbc", "type": 102}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12xplEWhfoR4aFyJIwDH8vS4PEsho4eyw0iPimdo8okpZ5QlX7DnLoqitcOMBBTVNSHYrCDfnxQJoTMK97OTjh8UNFPaigOCIYtRD-hbOZvQ1djIW6ngNsBH7UGfFKEe7hODnh4NEV3os7Gw6fdbdgo_TopgfCxSgKTCNeMGyarBZe_Lq224rYgyO3bpM6-97X-t9lHiBSAM9FPwV1cDKxQJyJ98IYCsqYNFjX1d9qxu9tOEcX-hz_W1bYQyHXJ60G_omx-iqC-NXwmvsiQkoHC9N5ajs6bjv-dFRzSj-EK55RD5HCCh1vuBZU0S8kXy-IBRLMD9-biaEngMJQ8Aeweh5YI3LoIlkiTQXZCyOQpF4Be8AVLwaByZTzSprMB9jZa0JUaen7SN_5ifyh2l4NicmBdLEujfO_7O2F0D1DLBqoZRCCIRv7pTsHr824iBN-MS0NFWBMaWVu7v2xT5zc7VFEGj0Nem-9YfHHRXDSHdbmSTBTIZFUNAfxeoYVofW9u-1qOpuNaF2aqFdZ28BrrjlWl8rv_zgZjxTQsuLXiOjwPEvMdRnNa38g9eGctRkdKxKIUf2Lhnh8FzBnb5Y88alXQxwbxU5XlMgKRZcdbcjbq9ptPJvmSAssDvgRS-mFILWgeNRMkD3Sf5CBysHur8Dj70wj-BTJp6lRNG63G-E1wK9AchxeqJsIZB5a0MrP7o_DXfhYUVqu2zC05HJtO_ipH1dAFh4DuL9hW6Oy8eQOkQxX3UHs7FTuZUUWpSEgWluhDS-UgBfgbypT7N2hunqaGNM4PPtq8NigwjvaJMZXV-I8D-7O3qeLzwBH-W1A2zjdAzpxu4Tv6kr4QYn4sX75VmJY-rU5772v9UAt9JDuaUGLI6es6_32ivmorLpLJ10iXY5mjsw-EZQjmOjcU_lnoEwG0hJ9hpoFVBpvRGQ7GZYc2p8erujs6kSeY1PL3aMYAOCBTlEJXvQFQmmLy5VpavrAxacc6Adxj1sFdnSt8t0i3xgoPNt2UEvXuGyZgFbOgr02xpnYneIqGGMeDVFOIcMu0uzj0dfoHEUxMbfJTsqzuZTXoeFjATzvPW5cjV3GRz2Euk1J7H3Dbu14y_PL-vpTL0DE-twrEhPCh_9p_5A4kfw7XD-DqexeeMJ68jz1g-XEP1N9bG2rXCcH1ut6_xBnu92k22NuT28ThuztTWkjsrcQ2PCIqrzBlm61eUwhUeEsGM67CdVt-TC68WfrWULOqtPr7B1WrKtdGvqvdLzu1bszsasSs2Dc1BW-oBi31SbYFrkhmCsuYI8ud6MSyNyyu7whfFNBTr36nNJ6KRlZUZYx115YOxIAhJmVQQ5ZLT5P3p09MoQmYVGuaz5-KDf4IJSOCKvKK2u4c9aJDo8nD064tYWktJc_CbhBsdnGuZhJnIL_saZ3XySi2nQ0qfo-CsUCWt4tGYawrvhKMlcFKzZabMs9aGhZKhF_T7rPhSbuZn2yje_iw4eyyYsU_I3tXtut1fYIlLR_6cwa1mu9VrET4FaPtUKvoblRENnyvlgiwT_HWZxsak7PS4njqOcZL0kmKENES77i-gDjP5K4gpkDV63WsO3CJyzSmxfgk4FamQy-2ZIHMf2X0zOmfl1JeCd92CtKdmhkmeJm0RjnIzS2vU3FLhGfqm57IFP9bF13Im9mP4Np71Dc_jZeosQMYgDfP6_hcm3lZckCGSTUaMouvbyX9mjdV0hicOkVVfbc84_AiZL23ZoSBkfUumGskN-h89UJSj05JZSY6wQNMS2gA7q0CqIsVfgETs6a4toAshs3qzyzQjZ_4HRT61ZEEyt98pwLYECEuqfccVw0tep4qFU09jTgW_vIo-zw4UkH5-qFokpJK0cuoVJqxP-Ba9SsjvdGpb7gMUZ9SIj2gXl2ewPmauE5fqr89jyiWJwrrKs32RNKf8zei7ViMem1KGsnrbWq48O2IGj0LFG5sRPiFCpjb44VcYFibaBPO2mTFye7_aUY4xD7rwYWehFLJtcNT4REpIsT8lJS1P3vnH3mQg1rJZjlOrY8q8YhMI6lN4A7akqfmZXmOeTYXbwEpS4onFsxhXx8wNCqsDmY2SHEPSJT0NixLKoZw9s9mMYunoWd8qUDRW_SEwxD8L9h90_A4_SZZfJq69FoEvcO88ZYkmMX4J-ConE4VCwOG7F7gAVQDMkD3pzasdoMiKIccmp7d5FzCg9hcOv-krwLEbnAdJqlMS0wu9E3WPefVjSWGYfNBMFWHHtKwfJn3_ENa7DNbnrtLyGE2nbBXNtJgbq5CvgdwQYbe1odyhXaMoGPpHX_HE1ixhboYmSXhdOJQjvAsOUSvObeOZG8mDfwUxs2XnkNdvRzUBY2TVlqB3HbWwVVw3azu3tvmcdAMUtlnBbEaM1LcyywIHDvKs_Gg3PFdFqbjFAPqlCh6P-xxZfZZvGSi76sLfn_5g4Q7rkDvXg5Ykotj8arQYwycNkh3NL10UlCWRSce0DtLwKp_rMCNNddu-WHqCwsmhzwlOjVxvj2ULqiCyT8BSnmiTOkse5xZ1gMUxzypj9g", "type": 103}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12lzkXEYMn3r19vzcfnN_lJpAZiTZXooiaFi5IEFA2xX_MmSpkuf3ZLwoMRPnGTWNk7N_nn8k7hpyTAi61nsAotLgfiyyZ_ANNpWB0mF0BmIOQwOGduJlybv9vnEQMBM0XHza-Gs2On-a1em9OmaD6hMHTAwfNaYTX0tNrt3rByRiU_9jZkWnWLD1knQyCqoIckyPT8GoGJgdWQS7bXYvFTQKGeKG06ihGtNGhocpSHvGCQkcS6DtxlNmc8LESKDTPAaFwakhF-OxFUx1a0hdYw48Oo_v332ExO6Rr3iZqedpluSy8YQpxSq5a9DSKb4TU8kxeo4jGkWD_tT7X4y2xGLUgEnzJvWas3Qj2O1kvA489lsEJ-oyK2rnIY5kvn90fo6OrxbXYgEyZH-yf1KjWAr3MNNVV9Vc13-D7JTZiCtz2ydBX_BAC4TGLxu0Up9gjiWKQTvW0kXyHfDOSSlW7tlLfNLVaWJQS2W_lDHcudvEGLlwRmEjamz_CrDk6dlVWsaho9uesea6qBHtCdlH9HqDk8z0MpWlU2X5zgxkGFPHK5feDlNvQjb0mNO0qkINTI7b3l27EEjTNfgxVQAMD7kYXPQCIYAoVOIyf1lZUGElLY5KsqrIPlt9zOwopQwJ6cybBZwbi0m2KMisZHHU4ky2c9fKtEGCatvS9KUJiQtbqsDHbwqF-DXh7M4QKc8vCnY-Q4mNRgvmp_1iRIC0Fym76-L7Vhy-bOPZ3W_DMfWTxK_5749m7CsYrRpd9JZi3ozpGp_GSEUwcrexnsDo6jQrOQVgkO4pq_qOfvyI6L50xj3m7RQnb-IRvTC8UgjI1Y5R7vIWpexKaekxHQDCIaEYI6hX4whsYnaOZkWR0TZTgBVydCJY0K2_0V_vs52HqxOVrm7LO3-rU4HXdU5J-nvQqTNinKWVbh3y8Y2wFJj_IqLinWd03hyCaSJQchTvlPIJiyLxSntqXtOK6g9I4yWmzAjA6pkLCCKm7xiszpJeB7kTDVtRRM13rFUbJMZuahdJ9-ZE4BR2f9SAl6RumE91DtWdjDcD3ucD4IdEe9jWsYmsYATiqb_av1L0XRqe6y1xE06enCKviEd8WHMU39OuTkEUV90hnZYHL2CnY7LrCM_Bfm5HZXdZwkWZXBYaGRGDH8kzZyOOFcLHNmTmsVgL1bR4D5GqtMBN9ULBbnl1VfWx8lIJ_ZNL94avomyKrQBVMADjeVnoSsjX2kU2FbbkIET3DroCNm_mZDjUM6TR__lDiyd1fPkNe9r4TemrNnaj6rUFq1kfStFn-DLxFUmVVwn7918UZ_v2rnaSri_-FOWQCrSyy3vwr3FGucV5kxku0Egc0ZnzmBzoY6jxYRgouXXGtaxbmds6NIdiaIg9XXx1QaZ49pKt6_7qea7wru7fM8Fg5lXcCes6UG6gSjMYnXQ0gqgN6wrQh78uZDqGMUL5FAz4JdtxcASwCoYaRgOawlUbhO9LOXo0bVO4E0gaREzz4lCLIJyBrIdOiWU9fhZuOWDUjD32LB9PMvUd8720Vk0lthTtO_ODsUYBMG5sJwKXsKx53WL4zW9LoaslAkQkzadxLyIt9uvq5zQmSknz_IkhiFX6-8DqhxSnzYSuRGO7hIm336lpOR0i2MXfUJ39L9KZlUZhLIPWnuqHvIFYSxXPDP_te7x4jjDl92YxDWs1iIcvm6KefTs_wKjp7hHMizsNLVHwfUqSJ5oFvdjCtsrjDORwdRX_MNYYXcD3NYJO54C6JtKC8YGrzika6IS1Ecb1wr3BFpLSh1DtKSrXUy96a8myhSSTpFWXjO1yosMt4CfYb8O_VhrJTBlh6Hfp8ns9KIVPHSaJt-5v__RAbOuf2MC0RuR_rYUaBOqm9iuco8WhiDZXkeB8k-Y3paKqlkmRN9MeisyyRH0P9yGfbjIXreEXUP2JV-rt-BUuPorSCOwSnW8LxpkUyyosOf9yjM6yocQEiYDgJBZm69WNIMe38oBSsAaxKPt3rrSuIgA-Q7dtRM4nb84g0IalQkz_DnmvLFVt2jF7nbxnCm_gfQSpTUx92ceRhlbxH7oJavNEjpqM1q9fD3ZORUbbVGh6BVCdNDkQnMZlHfzHAeVCLOgBJE0aupZojutBiWMBoT2bbpn0d0BUq2m_8UFneN6HfCFgctRPA0qQmc_hwn3qVqsbITSb4cVHtnxYKE-lH1pSOT4rFxXd55HeTLdYQnVDr4agXbv2XH9nXvw4ZhYyzu4vuMMSsFgF3uPZY1d5eSZc_hs9rPZkPdiOL1f6xjN6xEbFfSNJFan6WHTthQ8_kY05EB6GzP-B2fv2FbJtNRxYijXYxc_aQDu8SlepH1_H29k77QTVe-hyVaB1aVO08YbS8gTXc1aGFL1vNFlfVEtwcTRIlHarjfKa4iOjWkETJPI2XQ2cz108EwHURKqHK8q-ko1qi89Dz9bLBC3OrVTAfcPixK8-Kodxp6Ny-bkhLcgS9dVVZO4m2Qu8DVAu1C9nCO4umZlcoL3gZUCDcnBOC6LxGr-LMCgU93WS8tdCEqLAFqeTrWlSjKLVZ", "type": 104}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12XADaZzlJqhK8R-U8N-PsR7--d_Lr8ScIy1ZfTRoAaNHUwyjhK6mfris-7A1rIHxuAFsZwq7PAahb76jr4UFsLJwp62Eeg9vqcEe2sbs5m0CeV1TRLxveSYbrjqKcfcxiTUZAzlXH1bOoStcnk2w9smHqNT7lPntTNOEx_SyKF0HEDYkK-jJNCLondF-zAH09ZSE9HpzXN4MTXt5PLrS2pJaOaxsg-jyU-fFLx4ndwXY0rDVbNq89WHEvFbNoORN0jlSR0akoOQof9-fCmn_Km6UHvvEWm-KnJgekcqlMh-dxxz-rR1vyuSZwkTyKFnTQ9l9jDQQJx-wpDKxBoCBreA4NXTt1_pXqWUAnw5JcQDsAxbFprGoevi1R8CbMB91CBKG0MZ2cbQKHeX5cST88kTHP4DOckHzff182M2E8-7jujxWY30R_gDBrlyVI3HA7ID2KyIpaW1y2r3uwcxTD4yC65cimfk0idfXl0SRIx6w5ChGuRO90kgGZB82tajKxeHHKxsUWCjVinc7N76yr-fsVAPk-KtDCSvG53bL2UAV5L1ERdvbo5PlTV_1LaSSkR2ClwfVxDVxRA0XsyPMkVvMNsGZ_lmVXv8GFo50JwL2TtY5CAp3xlDQKiiR_PbgsEpEfPPmH0fl7yhNwlD1FFUh11CpMnUsdscJEq6nBFOG06Jsb6fL1JkSfBPMkzcEhh6l7KdOBPJglgsfHVEOHbJLpiye45mjFyi4V_ZLGcN3MqCiMQBTUfDhn7xiC9_N74z5g9-C2j68NhqqvepQD6v6LNLRoHKgXLdoVmxRLn7KOxHS6aqB4ceWl75v8YdRlR5A9DeFjkHWkZI9me4-gAuc0ZNafzm-oSfPD0weXaWLmzNQn4924EI6pdK3f4wnl3BpZmKN-BSSUZ4-_7JfGFdr2qT5UE3uaauZT7lpRx7elWdF60G8eZhfH30y7hfjVbIOA8PKryNC2j9rXeyOw7eiZ9KaQPTmVNjn_va6A0u_wrwQICUZ4XGeBtq6HBHexU75AFB7L8OGPmvpAWFKM16gD2pfv2bJhggpb6X71vPChaqta38CekWYHKLjQTnk_8afHZv7MEIG822dp0gmSDqxDTuD8wzuj-qVYo-rMsD8y5SGKtrCUBtrE-jrvYyeJ6SmEgTc382YbGvcAamLa0AiW7c2yyull_Y6QwGFVpQfLm8llxidKiGeNzoyfg1wVR9OY737-glpc9swBqDGAu9icYA9XzGmlLklfnPvCacMqcI0aqJdgu1wK126uSs4qHkI-3V29YPLQfMhkcAU2w82qGY2qXP8YLqIWdgEQVJfnldA9WLjPo08_rx3QIFmnXZiz38CWHk2pqEZgYIGVlpTExfuDrT5U9no_T008aG0nSPr0dMtB8sJenzQa99Zhipg01pyiYcYABCHO2ErFEPhgiXiQeHn1rUXrBYwM5RS1qQwES5DUgkeifumDn3atM4UCq_gf2BiJ_7J7Oo7ikB1wh6vF5xDBLeBFxf4CWC252ukzwHJLiUuf9LiqmT9PlRbPrUSoAwSh-cr-Y_GWePwN6gaIqtEDHY9qNzmxIv5dUKdFVkTjjUjLta3a1SgyH1wUksSLKGJn3PT3hOeI1Kyn6byQYXO8RQ6xLDmVvtnIKofOhNMNLt9HNg-ANNjLMgzij7VNxJaFhrtWJfvv42iHAgnT2CGm6Q39vJvbDso6oXh0cTn1DcJ3TKCMu8iXArT172RhgD8abGR-ULkrd_5iP3u1q-1dAF0JmcNJ3z71FZcnxGMvIiTaGmeDSzG7ZlXVk8bj3pt4H7n8luEmDtW5PH-OKrzFvqQLqUAPeCoD7LIqDchwvkrzHXBxXenY_GE3Pce6jOGilKQoNeb6ujqENKwIfFx_mRHLQbYNECi8g7QgkNEyEUFGpd55NUPHfxkX7Q7MEct050gwbFqR4yybIgXrUhMY1a3x3RgbPn7JmGZHPMj4hJevJsvISu4YSPRHDzMg_pep2lHl1auEDNw_2tSRVp8XfgPcY8xuTp2hKnwMWUs97-ObZRVSMu0U8NLvdZTi17Bj-y-0gDq1aXM5IcaxdANxZy-WoqV0qVfdj1XoH-lrt45v02HcQzN9j3EVPcQIGdwLF9Lb0aCMReRton6WTvK5oKZ0Xr3TeSc4irFXYln_nZVhPoeAbhTAy5eqydcRX14cvHCwgdE564xCom0zkn3aiZ6R6--E0afVmK7eT3AqMktQGzEwg0ojCwgrEoR5KTaopKxuvbVeaRXwCm3KYxVh1rJjx4h2Vj2snLYjrh-YCmeDkkh_Q4SpfXRgJ2rekBibco1PwVN4QBulDfQhjGkZsoTuT5ImtZISVRG1CSwdtlMAagVbAGCNM_tGVMgaoD302jxLzt4d6E6a1OuwWkzRMjgKrbFe0iJWAuM6wWJd3ZjG4UoE_VcWB0LI1dPr7NL8Qd2NAr8JI5MghBlm1h4uekMe8OD3l_8UenN7v7fRiM7o0Lko4nEfatJhhHhqdkU9QfDZRJvrAw7TnAoOpEHn0PegM1HNBAPTBhwLlaXuphFljq3zKV8a", "type": 105}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12-X3k9Uh9Pbs6WKJBPldg6RV6RLVGTnJbvzyf_qNkgqvpO0XdDiqAJd3riZb6ku2jBJufKU-7TE-Dwji5x4ZMmzXWfXPaFmAZUKtM8WZxga3Oit1Mis_H0v6wx8USJe3g-z23uRIv6mDWz-eWiiH6JMqAawlKFz5Hc1VE74tk_HZr4aOyksGtUAKRturclxjj_uhx2JhaNvcsgNJ-E3QFtpN5z8_AP-qWfObzjDzTnaz_NvkpCeqUZcjunpLlNVvDnmesGzcb4nMjyRc20m7af0w9eYFI4Rkc8pCsL6XlP23Bock3bQGZ_wWQ6E3FNc--L3nZmiPo391vjZkiluzAPdC9zutyveCSz79O050na840OWFRdPgOpuxAzo3RGZjlojHB6rkKgUlNXd4dioEPXQBT-nL-sAPcHGQk0tHF7j11VeSfCk75Tc39JGzCrBJxePz4sy28Fy8W2RFddjOUKtdNIpMdph00q0Xua3G7eOqJrE1kjCCqd2jBckX3DC4clldz4KH7xYgvTRZ-uQhzyu3i8hL6nvkknRYcVpi6iv-Ecja0LLIJo1WOzGVb-9LnlZma9L2qm4iNdhlxWOR_CTMbqD__Y5TNap0Gj_vGWI05uoWcjLvtFymI2lDgyVjiOdAi7fTtlqKLd5yrKGIyunyQCxzxfFWap59-UzTBjd5sgp8zDxd8jiePkJu03n0y15japWI1LP6iIXtgNNvl7fkJbBaUUre__NMES30c2BA-1p0EAupCm8e1CBwHW2I9nlqg-on08XLOdY5tK4RxGSFOTxTfRZEv1_J8vmBaqr0taf7Sl7eUIxzbeRcSUgt6MAYBOJ3kmlAeGx3MjNLiR-woz8KkzU4Z7T2nVdepnsjgh3NBeC076eZK8VGDuwlqzh_iFKqrQz2RL2NFuF4FcPbyWgmChvLeSdWVhvvsleNVyNLOv_TMNKF7c38LZefjxenO2l16b5BAAQjk5mNGVHpyS5oMLhmpt56SYwAP85PX_rI48RKLYXOSMQ_B4Thr7ZIvyY2XbsP-PsDLSOpyzQ9OpY1E5WjIvvxJ8OSTJRn03u_Pq2NVUru-epqkXXJF15GZsusEcaqvNKM5qZyIvR8wNsmbIulDTlST_7A8ByEgv3b0HXZa0ZvaPfUeguTFlGDRdPlTsfjtbEPFawokLQOCGSoJBKJN4-vCNIHsJ-8I_sPbojIMPF3tG8mFeZoH8xo6VHFyzL2GC-mM48B5m-DOiurQboQ_3_IC4oYqAye-z49OOxffMdH50u4votyfS6BRzfvhdWeRXMt3eCj72rJfRwbyD8oG2X3uGzSzjp8ASApEKhMHT3o4qsMms-qmkhOJPS1xYW21QI6WcGVQHua0Tvxd2xpUkEpTUkCI7bMJZj9dBmyQod_3n-uyjDGt4HU3K1WZjfemkT83lCLhTCupFrl-yLka-bNfmqQEfTNM4X2bxZ0iXHm85fcnaALFcmEBkoldpD4zlpnG70iv_JrVbQydwcoaB26pI-IWH61mKzkz5mF3RvoFsVFa4Xnl1WDsEinLC7ANuqS9_bTUZ2XBVggtpezemKFvbJmgxt-G7KNMrAOWiXiZ_E_JneQzjUXa9tkwmzQHyJo1D6hUdwpCMGBEaCNTWD0rxC-t0cxVX_2y2pGvs2vjKRI2rL4_rjMZ7ImLMaNOxunCZfJMyrDWgVLscc3cPgKU70LDtcYl7MHKvbgNJxAT10ul2YMc6Mi56hwTUv3MX1OmZakrCfdk35TOSqOJDu0YwRQmPYuSno5uRsvWw0gxzqsiI7Xp6qXPKdbvW9iK_lL_xCyIwvEWRKBjYv-Yem81dfbtlulwCxz-2g1ysTN4hzzLLtnU9BKuZ41phDeneH4znUb4dVH6Z8EHrrknFd7G0zESpA21wjwuGQhQBbghZ3m6LFhISJvbOafNykoqV6RbLDPDJXLTcbWbYblEru3oMxW_VVyxqB060pyur5DUYCfXEiVeJvcKIqHVbDBGddnyjmYilXzhyUHm_nrOI8LHNBYAxKQzUF4Gy_I0-vUnAAnnPWOjvxzyVgHl6opMsg7CYbBaSs_8p8DMkWhvAsHkgUDkG6JgQtzkhFojch-RbTapBAL08geXDBoILZBEsog82Itr1PUAt_LdoTVHOsnrTknNkzVo36qfnPIYs7T_34IprwykgIC8nDSJFBlUcHGHII2qEXyruizR-S4gNyLduP_ZFh-nUTHOlOmPojPWIFUjGypJQ6j7IHwAmysNU0DxSciwUuAloMC3DsnVEHnAB6uLyN10rKE45KUe7ODY5CqG0ONrBMMVm3QauGE2T9DnoC6pEmGFgrf331DitLDbQqhpCBfNalW1oEm7ywUfCkt7En8M_oPzr-XJh2kTMKaVRQvg70rBtbdNpdv8c2_nuunrV1tAD6cat6Zzwx0UHuuRdgpj3cZWE-0hqQvAfjEAtYr9bnFdyGQaRRjhmgnK2coKIrhxm-y0XNUT3zhMV3WiSDlclVddvl_gzUgR_YSL96LVPbtg6AH0GV_oMoxCTTB5SleDbQ3HYBHuh8QUMiApb94q", "type": 106}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12FR_q5RdW7aEWdtxyLgy8E37X2Ub9bHGuPJmA3rh0JgIwS7jx5r1IPe6z3l0D91d2yiOSXXEs40xIxJSr1ac7zIXizD5_jyKzPOnQnOudKW5m2SMTWgFa7tEG9tH6QbxuqYsxcEFgJQqDj70bLWiqlQjtqrpH3IDTRBQXLH4Ug7Z1R7eZuxTiYuFy0GOgQyzaMkb3G8Z5xzrJM694u2tGzvprcqPEkOwmxY0VpR-ivhGqDqzxx9CamRU0adAcliyvSbn-0TSJueWLeMZAO6cuL82OpJFTe0yuaU-5Z7IasdPbjxbM80-I_ckHVNQXPCItutdU-rlaSA_r63d62uqguGczS1DWf4zqamMiN1Z8uScDB6Y3yPvdtufNH6QiIx_tcmnTJmA77cCJWxn7vC_dW3DA3WPIrwC8n7KlifV9KUN5onbyeS-0wuNawJ4EWYaKBH5mQtV9qv7TM_W_qkvQZWC9rIynGBGNZJ8M6Y5pbwp0I2fnxzQzmPJPj6wmSBr0dy2QuMhSczDO0hUDJm3xgyTGz3vJawcclT5LPdyITQ4aRHWUC0QqUANFJAiKchbsLl6wlQ0FZgOEBG393e80y1oynHdjsTCDWXJamXFANEK_rJJacEaAykY1ZjDQiRPMff87MYWDUucMAE1rj_YFVYEuQbGQgMD7jV8fYhzaXsGt2Lo_kahyz8J-reVUj-yXd04KiZasGUIOS-BdotjmvUhGAucbD45DrnMEtxrseAWv18-FDmsxt8ksGQ85-8KJ-B5zJnmjzAdzGyVnocC0khL2VyB1VJXojRZ5yQmSxBCtwuTh6-FIjH0al19I1bIeOWURrRxHSiCEP410EkXiLiYb-NImfntgai2ysTZ5Q4YrsDcAfptxSu3YHctZ_wyjrPaF19W1-mO6tm4JV1XphJ-8lIN0buMGIJlGUyrBfFXnExmKs01NBFBJlZW4DDp8Tet3DUS03tXcHymFICbkn1KNDCjw_kJl2jsy-fex3gbBni4k9sehrGYcx2wULwu3JxBm18iiBjAEZFDG8jeamPYphQKM_qNrxIxj_OzUK815kQ8YyKwYHhPIZzjqDkYzW1VQw8zMzx8-8Yx6Y4_PUzM8V2ATTO860nu0lydGoHAfl7KY9GKnYvKgOK2nyhOXfPgYJbJefng0lEiuAAKPeQ_n8N-pSU20lCV96vLJQTalwys4F_HpN_Mya7_ZpUqyRJVf2yRPH-SiGSCe2B7HvPtSkEaSuXz9kOIzf_wxV3ps6uf_fI3Fg_ABDlih-LoiQeLzgMg1MVTOv8ornxfDrha54UZNi5sqoFtapDTjPmI02IpNCnGBHUexBy28YzrX7zEfgw6HXf3iWHWlFVGNjafFU7bFAGr8duXrVqdNtN229UjhECr0u7bnpnZenYDQHawINGjwEbSN-_VsKgn78Xy_L_v1NjxAypF_hAFrbSXiFu2ow4BKMktXJpDEQQJUycqsyE4tUhTvLRDXxHYu-ORRuFQDRlpKMkA7fQZ64Wad74Gny4S-TiuCIWJT8km6fsYCTcQW915Ln1AMwN-l0mMHSJCDng6a-Dt-4IFF9kYAKzESuJAgat-YXpu18OLSie_HfOUsA1LWnRR3qslcooaG_bu2lm1XzvAwhHhn6NBh_q-XOHTciuJvjARriqIAqicbST5ayV0yQm1D_2ffJ54WTtI8gOEt_9oj55BWD0YALDQCH-1MLxaqrvX1XyJrnm8u7Pp6tnwKYR6jtkP_sxc2-9VRAkXGazJG5xSXkXE9oVBIEYzCGhRE269P8WiZ2UI1DbT0pD3VQ61hEkLtySPoBtZnHgzRbrLIv7S8mTZOOwPll_3fLuWzf8dwLtp47LRNNE8JJN6FguaVMM5M6M6Dw3GavGlWkYpF3S4-G3lXmgShUVO38zaSQtpjscf-HqIPJq8o-oFBIsjOn5lffSsUrRv9QNaJL8fYzj-LPMatrNPe0BhYH94yU4uCpGHU5eIt-Dedcy-rTmlBK7RF8t1F_TJLpsjvHsgtsgu_v36JNZkOyMaVJq3wtkmwzoUIVTHi9NUJac2PYCMXke8K_vLqzfBMyl8nXTjG60-P0C48OIQ12PqxSFQzlci1qllNVGuYVMI6JO6f4OJUueMj6Jh1CWBXa28LwLOnZ_NY8XTHxBAAbCCeeK5UVpSbMEX2jsHB4470tP-GANCld4D-7FaVP3BO3nGweRgnaTLeBMKNzcv1MxULvkXQmL9dqxcBQD7joBun8V8dFV0T5Xas9XHFOItishexgeBLg5Tj0Aj2yavnpRiZax6mq2FkqxSGBuh58WgglzO7sLlB65SpqVq-rN5mY_3O1WnPr5MKOI_SaEPgd5cXnhdl6q3_TobpNk9y2d0KvKdx1Gqs42ojlYKskA03wbeviWmMCinnJ788oM2rF-lVVImqENERljGdXNZreTSj3O5TsSjzBSefZXJDy2ZRQy8zAuBfUSB4vusctgwRbNh-t-rB2oR4zZL7aNmD6WlvJ2Gol4RWBzaz4WQaxsierGqtHC0csl5LE9UJxWKq-25NYHtFmwofqmdZ", "type": 107}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12eHjygm1K-jjcV8N4rDNJmu73ajl0CCcNUidE3TVAPRAOsBT3rSY6X9SuqudWMeRF3JygulGvpLFlHHqo5tM_3CisFwAwinjY11me5LkVNHCfQC48nOmiqJnEdhzAnKuLghIPl85_vUwcwvjDtInV-7JV6FyMXKzJOyIItzQdiI24ZW9Nfq85uQG2U6coPVVNjmprBgbOj7zdF00bSiVrPO-4XfKYfVrdteywSYKBEovYn3bgmgjnh2vJG3imJBj2MqTP-ZO45g5r0H2G8hONI2BbdrRTnFKb-SJGRrMW6EF4e2uzO73mKaYH4R8MgCPy8pgED3fU5w1_JczMBLv5rYLgIb_59EF1CxETF2rf6WOtlSO8uMw4-Y7qtJQqthTGsLUoCQghvxgRcGnCFJGhFui7zoEGnhB7vaReKHcUPKnE9PrKcGElWMgiHokDchHPNZHvUiES3a5Y6hH7nXGsZxncllflFeYgnXG96SBxd9fs2t8-MkH5WAHURObQ81non0F3TqWzSrYhE2uthlINjjyQCRGsKxYwRcBTefjl0BTqg8ZmJqUaCuDCUO2HrnQ77nzYKHWDgbB5cloIcMCRHsda5Y782j57WAf1ZEhjwUgADSY1cfNQgZ79U0PNzPgVb4dwBzipzpzRSGaIbNhPVOa-tuPE3HWhnYJtFvW9QgJlT4dfcFUoRo3zyoIF5-GfSK0sZP1_bgq2D2ITYasnJaB5tOv3b5SZ6nSwICUjXEHjTCe7KOdc0K4uY93YshNAmPyzkiprHAr_Oq-O-K87QxZ0e0ijRr3W-AeN7mMsxpjvibxEefxK1gfX7QWSgSx1_0p_21J4G0He8o-u3zS4oaeUNJNjbODnHc2Q9gJzLFJDEihzgg8tDuzAhUrxmB6B6Fqt8kRKvy9x4ZDKtNbPuW3PGvabXGUkwbr9ZPCONDcBf4BfcEJCARENgbVrmnvPmwCp-YCFGVYDP5ZC4A0x08gKePsSoxHkioEfyrCiJj09eCuaRlxdEAFP8V209T2FnTdeuf38_PXCgFIpUp2jIuRMVj_x41iorvFQDDSM1CcjrBTuCRTKfupOeEiNt3NodULETiGlNd9Vbeixetd2w1iigIw00kTYH9FmmR9sDPmE8HXFZ35r5xP-g03QvPSU6_o01cIWNrjALkx3B8ed0gcAEy3Y6j-Kmj7ENBuV1gVpXXDeVD2oIINipHq9CLYmtI_MuF57sqeIU_9jT1OCOEdVM5IXkXxrA0EzeylZPdfVS43N9nxhV0Q3kZVGSNww_O8tGlLUkedPqeastQmw6iPr5uFvWcO6Ro1NrEZ74J_UMv2jR0OXetJ5FUxsKKO5PW9L-F-QQB8FPVkjh7n0iRNXOFnrg4wL21pG0BWic7-3dI6pADpbfL8A6vzMdJa5QRDagTVua-sydeyLfkiW8KeQ4GpUVTa4ICKwd4bX-HuM0c0p55fFIMwYP9Nkj3lTB0Jj7Ml2aISLrhuRPC8sU-_tnOMvZaE0WOJ4x7Lfqe51jFnJ9eQhZJdLNYpvYNSTRamGeXPJTN21xTqRYKekzFhz3Etm0yLfm3Dt4WPxb63ri-L8kSL9b7R1F3Y4Sh-6LK5Cxa7yfrrtYv5Kh33x-m2Upp62ZWouBd_jkDEPDpWJlX3vpFEqBcKaakUXeaHDni4lOhhR6B2468gJ8l9iKHzzJZIShRooCLHGQzEhuv94r6dvAzARYLFzdeZ5tT5yHl-Jiezz--qwvGMtp1NOT0QILuU7lj_xH1WEAD9iKbRnHDRZVSYzkmUcn7M5Y4ahUUq5HctcHOScSagvTJgTqddPWZ_kXm7hh1Fjyisn4ohhFifeS3ECp9L_vyBfYHZ5_85oIICXbohC6ZTd4ynCrOKoZb6BQeLkHHOLOEgMDHfojH1-jDDXBhumO4ojr3rDnq8qJCxk6GYIk-oGbuGdCib7g4w4XMNEP3rXu2y9WC3nCh6H0sCCdy0h45RC_tLGtN_8V03widQqMx3ATYXJlmB7i1L_frtalNiV1es3ERtehI3u0xAG_7r-5USCYLipLajCzUjf6YSDpOMHr49ydq8CGjtXWZPlTRJmi0BWCprlsH8ngiO79ZNEfCvaSgo5_BhlqcHb0gkCj7d-aoprWtTq9Oe9ZFqj81KOJObnOPFyCBDMlKwHetCbF3NQ5Ly3LlBF9mzzhqaSwwhI49rzp3AYMgkfnocSZmnluXW8gJCUdXc3RvgfO16Ahsp8bouk0GdYA2HvAbtSdJytH0dGJ91Y5OVwwLbQOj6vRAW38iP-DkcbAfXaYUjGvzFo9hIlQehCArS4_-VaZGgHKeCBddoCidUWnAl2pDhkyyDyn6ypUt8uP6bJfvdqX3ieuMRBLIupfNc3EwpME6ZFGCG95tOMxE03UKYI0m3dQ7H20DB_4811gMEblAJ3k2VWTE4XcNSICC3YJnXUsV3K_tWTTRVvsguGrhfZeZ_M-XwZWNFn0E1Q_yt6KH8wTrS6O0cMgfmg3PvKB5OnNKv74eVZFNZ_wFkbhJHGphVl-5aMONV02GkrFN1960XicQOFwm44", "type": 108}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12Tv8n2RoCSatzPh1N48gFLBPEQ2X3hTofF8KwAp-wXrQSCzojwIjk8Dbt72FViHNen3wlq5Vv6KGhyXuObpuO14eBtJaPeVLICBkqNywatwGGClMlZj5PQ0_fkGWuL5B57x1jzQ6wL5wIcj03g4GKJTNRDGUR5Nc7zgk-OgO2ugldN6CS4nEIPHE5o8oI9KDRP65A8wzDeO02CkBBerCOZwgbQYJJpP8iPHYjJvYYtpokpscnf2cn31AbeNd8pKFg7vdexWnJt7PU6ERChhimsVWQTm_HyPeKS2yeD5PT8KbozSjmGbUvWEKiEDVh1bFw6QqAbVw7Z52i__O1ZTTr53fo83ccBd9YqXY4zQ9uaDuOr3H_rIZmR6rsb36ETD29nTkzng0raN62beF0E5FgjRoodSajHNbDBxW77y74g3yNymB42-EihEp4Q2_HNjg7iLImzWaNoEPhetrWSL6WWwx0uAW33OJUqOZYRYDvmlzh8ftqWGsBTTawVxQayx_NOqK0VAUyaY0gpJ28gXu6jYusN-oRGr7mPPWOiT6uhAMw_FFY_smjLQh4k8ygp5BCxpt7MSQ9Kz6f1Eib6NHC8kKpWTuA1H1ccqLm7td_xkR7qyFyGcO77SrA2kgHHMIDTBdEzxdXlXm6mRPRWwmsvu6EqZ_NRYmsqe6q1JV9WV7lDqvo8q2-QCLuEJgETygxqVnD8H86UP5HYeclIxNwiKdm4qsU1oq3xK5_RG0W5ItCt7swf_ct4lEVkRNMu9MLooT5_uxqBCJAzUsuCjmhihbOLCX3nu9LMkWtUffq4lgdP0v5mn7j_mEnfCTPD2LHip_wx4ZqFWoyvyUbDkM9Jdm3QtND9heXmONH2bpaNOC2DDS3kCqCLOK2e-uGf4-tvGD9EXFGWUtghvIvoXFj9PUt4UaVWLKL0roTq64KQK8FSpJORmD7oV7GU5aXlLXnHm7kaQwHnGWDVpztm-QF-lCrnvJfPg0ofns5pdeysW08ahbw1Eamj9IHQ0neJyPsaksjDG0wGlnMjxRVDAWCH3or6EQ9sptMjc2elNCU6CUBw6N-wPMKz8dX0jx4CzwiVpZSzWZj1IlvMD7RjZtKu0u4vj9Tz1s6QdccRKWrrpzeLqdHbkTb6VXQ2eRzoeqfvPlzj3ZOqFGeb3czG8Bri2TvmWn6nIH6irisDtjtYwvRDt_UEqOWHFagh8BGSbYS9rhaekJg0r5A7Xcfp1QslRAQXHONX8wXlaIpQLGgnsIfWunjX7cEUIAaLBWoYjS92Pf9rgDTH7YGHbq5i06uR1aiQB2AMWbYCrNtt91-OESVrRFiu8loUAJBtFEb3UHlU1GHLkA5RCzn7KVxxzVIUJq5lW4t9Pa0v1ilh8e_gslE76wJpw-uPFf19yHwzYbQU5e6jqR6eJZT-S6H1sF-gYaPxkhjrV4qqbg9iqJk7ASOTJttmwrklPqjp1b-xoQSTsvivJgKOe5hIcBteFjQP9A0LtWmiYAkNMZAW8zxM98XMoYTzzWQ0nxGxrUPI_FBPB47HCFkS6Krq42FN6lNbabYRbf5bR_HCmEipvqL1DMWsonRjaQ1XVqx53PvPfGFw6Hz7xK03LQb8Mu5q9oteaf62RIc-UJWplqNudB-RNJXnr-a3N0E5Dnp5VHzRUcn12_JN4-KuELOBzqcFOepQeokIMBFljv-ls0ztv1qfBjvkzeegvU-E3R9vToTvODFDMQByP_nPhKUsAy0_2BqC14dXmnwL9gE3NZH5PBRVfLemAi2qg3I1yMR-kMPVdbiA7oNsuZHy_iJd0AFx5sntqFDh21-bO37CpCMKnItQurRgJOEJUnl3Zc9aTDffZfs6A30zK-OoTYVzneIV-er_IRtSFS73Nt9SSRD7nyMo9XifcZomNwqeqzQz3o8RMJlu80CmwVx0NUuRhSU-imCA3ajMiZA6jSRVHiWrRM7jd_ZcCYn74tZKAPGGNNKaxTcuizvdI1ovLfD2R9dyD7vHC-QM_PhAO61iikDj3PNCf1AkAiINRr3vAExihCGEG-jV94Zh6EC4WUDSM1uUJ0Eg6GeNPWZleCWtAF13lUELFRvgI68E3ZWpQiDNhIRt-rM5ROL0PCO-kz8GToSAgvvDDHGp2mnciMqF_LhaL3cP-G1TG0uRd5OxtjM8K1H0_7YyRgWVBozCLdapWDdz_3XLcvsXoOEVvwYFQVardE3QEKIFQ5x5dExhqOorIG7VOqgR1agDF2s63PczzM7zPQUtu2ARp2flGtqF0YJPl7dhyFb9OGmxNrYvRA-WbUGtJmfzdbu5w_fFcKXc6Lif67pxnwUbdRHTjgVfHMEqVobWtxBdcJWlHmK_kNb_SJnWQq_NBeI5WHWgUM0r7GaRJrbbQCGK-1MZK5mQvAEEkqvHNAFA9QK15SKpEeajrMmehXf1hSXnvdYk66EyD2PUFPnwGj4qp62CnHuvaijxPrAuzL5CrfCzkd7Gbc1qHrvMjcZfamwUfzNprhjR_1CTMJL986k37bs8Gyy2mLSIiaGD6nh6icI06iwtHgWb9qIyAxl", "type": 109}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12yvDnAvlreXOHsBjPlNMh_LZTeB5CkogE1MO3Io0aTDfD-laR1ApI3ffBMJszPNcFMKOkt8QrT1LUnciwwhPoQNodGTnG7IjG_ubQemx5VebZOzpFa72N_XRouAL7Kqwttt3VoaDw2Xw9vEIFGaO7QIq0M31DExfgV8SuYnhrYD8cIantJzIEWF2nEFRHY_7B39eB-GGMGcTUULziDutAFR9dABN1SM99NfEPbh3dzo32tVibYRMF3wSBs7iLtMnHBrMJtytNQw3m5leAJuOfGIgOZRhA_A2dwOYUEJXnW6Ur-jel9yKOOZjfcPnnXyM-fqoaimybx216_GpwkBcD2EXtUaTVQqdK2aawYyAmfARh5TPytqBr6o-mu3I3k9rw0xTRN-5v4EdnXryqcDLNY7lYwQiMSWTNvLzC2luMbNqBGkPUPQfctNa-rLFA0Fw3ZIf_XvwKjimmHQ6alBZePGyfsRIQVmFaL14fzzByODKsUztoZUFnKE3nuh6Vr2-Z2oxW1eD1S7ctj2hZmfx4E02_EhEK0oxzsygx8UOIfLg5THiyGmGnrzZPZ1wsuxws8J1pPqZItocTstyhrWMauCmxLlXETEnFXSqVxvVNBrbEHOhhrVptEtNNR8a2uLKPiqndEb1oGsT14dSYs1KvHdTOiXnf8-qhs0bgUUstJrhJ6Hu36fSydxXtQaqSYeWR1AM8E9ZopG9jmH7y9--PoxSMVfmyztBSf876_4wZbMPfISPDte6SIgJCK5UsOWrf07DT_FjqEYtbiilzJT985tf5gXibLOEhZ7IOlX3FQ-l0xO_vyCrs_LyhdZdRdYLMgQEvxPw4jrYIeM-elpAY19nxrrxJGEG3LTGi-6UJdrgchf9_O2wIt-uakl-HYZD1qnqMPMlWNfdK-8HLe0toEERLdEXufZumh9jAr8nk8Y6wYZ3t0lkzyaGIemPsSmYRWzk3i3e17h_NZcADERNZQOT-TKcyUgRCItqJjlmjVw7_Z6c_q2ZM9BzZnBmnAUvnP_OlzGjyt2Fy8UPjWUnRDpAE-3gG9i0hGkwR6iFC66Ii7XRX7oG-uNNNIeGweIqlvTINybl64E4WTwTnm8U0s0xfylJ20Vgpfeghum9FTxyExCnpB45a0YeWqOjLv-jjpDwoTTDIcWZc_bIXlIt5THCky92xovZ07wilaR9a5wzosCenu4643H5IwEFsEGYQuFtwx-8ry34L-msdX6A2vHAdxaOUuqx4I_Ctjzekk6j3mo-8OcJHgSpBI1xwdroEb27IOgdS2bKNba8pTTNLCuiRbw4HKiZt1j9u6x-ssjAfhb8wyRBqqLFF-nkt665TSrgPMurnjyzxSprErebuqXy5BLmB22dOFENiRSWBRTPFNIS8OLBSd9G2hGIjtBmk1LzoO2tNmb5W5L_3KvR9K2Mi5Ht__KQYfwydWafdzM4nSKv9D89uU697mWslO63anmG1R8F1KIk9e-yLxS1C-zUP8H25Buu9Yc6kp0lXVn4uOpDF0bzuz4SnnDo1i4jMHnQX55ROrHrVtH5Z_hrz6CzfdELvtlD7V5Um6rK0K6_66a2EZobPea3U1EI1AVW1KKysagUxcSn4O_RwSFWeysxOG26nOn34qFfibQSqW0U0aUqkdwuN41cHbzniFahWA-F9Jr3qxz6DZ3aQAAF385l2lkhE5RpnX0Q65uNzy3KG45eZ7zHXqGaompKrEcnDKxSky1AWu5lUi9PfWVmPBTzLzYnbUg8fW1cLNEmj7KDr71McdU8ud72Qf-ZqwyGpEH1btz56TCS54O361SiOg1muoEbNLGZ5_PxhQmsD_m03r1M5N_rEVy_31IP7EOo4ZpzkGKXStQ1RFrzPOkjYhnKszt6ivcCIFDJ0RpVwPzRr0Q69Uee-NqfjNwKlJHzPtnCuRYJM-6RUCh1qGsZkMPiBNPKKE69PlP9kZeRmGp48wz23d7QosJjuORlMa-ScOLuj-h2jbHth4Gw7NzewfF7hpPPYmehnEbqJY2y77tY7-JGSdP5vQgKg5NIU-_2qo3w6Z92ys42MLRqR_R-M1oQwebse2wZxaN6N8nQj8ZaOfv4hd7hBPJt_qFebH9pgiL7WHg0jDUVASyKi7KRjEGjOw8KY64Vr-Upa_6rX7yqJLJmuWBzaLJCgfYIzuDC5zJ9A-J4TWUmQ2wZpfGV7wF-SwlifLhRlZP1YPNvlZqrTzCxpD2Tl_BsyxaPC0ME5UyRc4YcKLct_29qILiLsR0Dx5jP2NIk7FHzkzuDayx4RYvTBrfma73txV1oZPcuPAGMb76gB12IYp6Ak9K9d-mNz3UqNVyRqAkA0J5K-xzZ0vCfi9xCXWvgMz__X3dxV_vQXv7Ujjpn_Jup9RiyraONfEfiCL7lLfY2Uomc5j26Opw1GvgFG8mNLXBKMqvA3oknpULwudkTbd56ohYx_e8VC67zDi816Q1oRi1I3uszIup_E3wmXH_goimh01IM6DSBI-682mL-z1Wmvqun_r0WSsS6cYPrXofKQYfAt3Zh5UF_ywYhm8Xo7VUu3q0M0", "type": 110}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12VHrw4ab6a_kqRLbF3LVlAuc4S5u2fss211JF9vieympSHLZnUQ5eAJCqJEpvzOB2CmBPWjbqhet1RL0SFzDhiEQp739ib5T9qIV4milKjZMBgo8o1TTRk79O01_rf5QCNGlH-wn0J0Ps5RBc5N4e5vLqcQ586c7f3b-7hJBgqHRRgVAiILtgqP-C4tJt5Fo_mVdBxo34Xc-74eLe39hyiv1GCY4EqSKvYZ0xQ49Vdu3ZVAK_szCI8kCmTQ3spGQdoQaCKxjyd1x_Q9tFsJLrGNLQ93v5B0WiA0BSfB0jZUt3ethqmQwWJha0a25g8w1bQYzIrYFarSFNmQjt9xv7_FlbMW4GkJpogoI403imABxisoPK5zhNcHdgTA4JqniDfQjoCD2er4ZesEPgkv8gT5_UMZPAcEw_h58HY6wHghqbhfo7ewrozrRsXFI5iRReoniUjAs6qWEnutkT1H5HWgTkOVv3xlkIMGKFuW2_63336b3UrZmM96b0yhFjYcrvMJ3fiTKiprDJNiludpQwBtkpvlZjTK8Skc5QSflRA1y0Y7fk52qthPw_ITFPwBY0rOpISAM4-DANnMpy6csheNWLV-FtqcyQhpAyZq2ljz85PFRMhod97VPGu5hJiu5sGDiM9eAwWOCx1NYYjEWu9RlwLMmLs_KthWzGv8WCZ0YbMa65C3jZ_6jt7joGhh1MS16YUEj1we9setSg-n8eEn2C8UKNAcoaZdMVii5fOnDECxn9IPaSR5-ZhjAxpY6G3DxbdoKJLx0h-VPJlEjWbE9db7FbICsFBCFVvEbS2XB3amoKpzIYxAaNud1Umgb2HMPggYk1lqBMD5MMGev6botNp5EsmFPKvDulYfOc8N0oRh3qOsdTfZAXzA1gKa-rMEhTFmktOCkFPArIKz1iB9-c7y5bxDGDWuCTVktaHN-LT74ucacy0zOHyy4U0gPkvBN8WmmLSGYi-FiXknDXFpzBlvkB2MJJw9SNyjrMbo2X0DmOFFC8iMInfqs7B-x1mzsWxZpjCjqwZ2_a2ffBaxJl8cVBdYUiuO34emnfw0P8thQ4SXrStJu1UsHsie6ivxJDNhr4_nPvdId3qj8vUM800CUFeoVeUIJxNxwVVf3quByoK6iH3pUTWziOZQIrfQ7ONk0iXFcNxC05mOUhTvn2_82nyLfqbpBmjZhge25-ExQMjOX2gknYD-376R3x2mbiyDWWFUwD_rvat2GzP26jTbAOa4KFHC-b0tE-13uv3Lyq11HFLDFYAZtDZlmDFEYTmJrQFdBHNqkrG-F6Xa_ZOHa2kxnlHFrvLKa4j3lxke_XEkZMNy9SqfBNEp0g30iQHONsQjRwOLei_ax-ynVrJrApYC8ms6Blr21KuTKHF0P21ZqDwkTo-qmV8FlPrt0tKIg0zep3feH93iRM3zNZOoPAWpj6kq5m2kHhaBnhAoL_ZONKyLJqAdALxpEdS7G_Qus8RR3QUQ0JufLtWKr9lowdtVNY_Bs1KuCPmsWab4F0TtBLSHmWXFdAoXvWuCaFdyrb0SZe3KHPHbIj6ji3Qx1TO3cDqn6zBcIP7zcGFitWYQHLo1Nm1rMuoEu2wOv-dYwHxekwGff3l4qVEU91RiA-5hoSX4wMrx49HRLoZX9v6HoSg2FOHeSxWGIiq2tzHnWzHGcMynMsp-0ISMojD7_Ss_LuoaZXdMzygaJaB3yCgYL49cu2_BeWTl0DzXC9pyZVewOoYBnY_0qMQ3tjvcTvgGRxF-D4DF_JP1j-0C4_mgUaVdWFIILv1yxqqRbStp29AcSEB8zS5tk-qNLcRmm11lxFm1jKbppZdIe27LbyKVrizDRVj9LEcIJPs-BmUtJY44So0szHb1J4OZi7pPktWvptjgZ4bxze38WBdTGWEDj9md10hv5H0_3snRSKUylhmQEKbedoAXhiSyAY7-UTgxKl_X65Xpg0zns9ig_sEP39hEhJAXuO5WXTyMQlT0Mas3mY-0bBYxGoqYvwm6T7TDIZ8tGEZfr0RKQBz_q2_UX0FzFoSNrBSuZbRrCR1fE0KDyACHwhtEbE6oO_Yfd3G6YFp4siKGWh1wfxakbv30d6ZUmqaBtt3pOzWJriM6mTe9vFvr2fQ9wJj89NV7OLB_fJI3C43DWjgLDCbSrtgWNOvIMF0rE1AT9zZs9z4Pt-I9xGdPhd30r3-bi0SgL-BKo5Jlo7KCiosHgvUIheQF26BHaBg8H_3IPMoN4EA-wMht5XV0XYAn1-mkPbwHEWqbX62l4zOLnMzYq9ra4mAaceJZj3VMWdgQZK8ZHJ2qulzAHxXgrlsrSFdK2w0fRd80OaJ3mlStuq0k9nzCgtH6qYisV5-q7Yd6fkGM5Wq9q-tsITlw-eG3n3jmP_uQZD9hLl1WOX2QhXcwTIdcvCEwulMmutIt296It2iaQkA4WC2yKDKW2IogBee2IHJMNkbLeyVlmFb0L4-ErlJHN-l88pbcv0xIXRIaszu26_2FIsf5RHUgV08JE5BG2KJhLM9xYSN9S-zmodImPeenYfxgqEiboDwuhbNSgT", "type": 111}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12fIRV10FWBg_Peee55hHw-ZrIxMxyFufaEJra3Cq27EZlwaO31E1Vx18Hp3eZnxdNL0w14IvKW00fI10m-hmoSZ97pX_7etOrUxPrX9BTFZsIxIXU0qtTOdEb1OgtmCqLw0EpGCR0W_X8Q3MJdxWrjC30bTLTQWPVlJG2BFs6yeEhQ-UAkfyW_LywCj1BCrg4wr0Vxsd1y42ZMl3ZtAkdR67_JHe29XEYbdLXktmktC6frhC9Z3enWls3_jJSgOUbX_isHeWYFfKaOfoOh1J8DgWcePNQsXtfSpzuBAzqd7ELTN7_9WpNyeakWv4vutgu1BHg__o_kE7bvgf0LAnVMWRqRtQRv7pPVqcDTIdRuU5hxE4JwIkKFIdKVj22qbLz2A9RvupMsolkSSlI1Zna7_8OnZscDAukoDHM7TWbJHl1EPwyf06PIbIHuGPOG3_67W4q7VsRPYhE4Qrct-3RAcjjuY9Y6wG9A12dDruiUR_2hf4v8OvvWkNjGVfNvyjNRn8bzr5inSErThF10KTYaEL2N0PJBjzCLcRlTgCLvQHX-IXKlAgtSvXpRQcQdzEV5X5zhCXMKnLgiytj5Vp-pU_TwSKC7WkbdIvJbzGdHYa09xrHL5JRdsbpumRPmmB_m4pzV1vXme9wzWHNUhrcngMKIGx9Sh2PnGjyg4DROqIwFruic2IKfezlLZcnGPQeMR--2mmhm_24-wIB1SR5G3DF3ULcAm-bz56Q3vuBiuDXb_uuc0571A7YTpyZNkVU9aKLLKklOX0YRIdXQm2YwJSmlQ2y8TqPzE_AirsPEjtTi74gLOPxsflUZdW-OxBUvgGwEmBS2tlM7Kdrv72lILNFa0Ox_foN3o6o0OpNvNHR0u75xD1ORPoYEsRi3Z5jIBMXRESk8xN1C_V4O4MN6zj7ZweCZ5m_iX3hyo4A9Xo7YNbyLHOr4KgDf9eYxSzDPy__zB3HFkb0FGT23NMxfYQlVN5DDMZfVhZ7PEfFqfS6dUVTaxHVNCGd0rSbPcyf8KZIrccccF_aOrFmFSe5PJB-MbxRG-JlO-8zoF-S51WiGNsih-1Hp_oQOoVhJvYnUqp9FTzasX6sCYyzfMlRar0q0Rl_el72eGt4xAgB2d8RJXmzR_q23ibWycH7KIPi6qXjPjP57KEfZdH_9joz2hPiniZynTypn3XwXbHRfLvUYaEGW5WyuRR7Ew4oKqGHdpkf4g93jUzcRvFC3OhOv-DEyrblwLPWwv3CXhmCPJOvse5UB11VO4YcrblzUihQJI0j1H9zLNJxxJ9xeSWV3wHAAl3pxUXBYdtEWbhRsv2houtYGdtDDoSxPjtbH69svUKBQuCNEG9Qmvrpx0WpH-Qmxm5g-Pz_3sTthxcbOBxbcjJlmtD7DsQpfzVigSrY3tibtFrOLSpjxt0-dhrS75kArp3uMyimAHAvMVKv2S0GogpZ_6w0DFwB-t7aud5PVrXIT7IQYNQ24-ly-Oo41jmoIqyuqnfxbDGCXM-U27okDKy5Yz0xIepJ8j3FzR9SYMaZ2HbzbR3IXZF7mA0y6WquMPM_3rX2YS-0PEM8HOCfyTmNXlAc3_WZUkXmtPMykng6dxh1kt9JjU0bDvligNSNMXqhiYzkhZoMHTWvTI3cm3aGO3l3eva4DyXYG6dps6gA208GPNcGHjBdW-WTBdS_64vhk7tSzcDfHEIeDR8uJyENGC_fbgWAwtssl0EB23mTsUQ9EPJU-js0aMUMrBpQBy3bEN-aPfzf05f1XH9EJLyPjUYXU8nVj1vFV_znVQMUoeHt-fLUDgVzWT-gMKS42ogPbkcI6HjVzkM08dros3fPR1mV5or-guw7_5dYOXtD-3wL_P6UMbXx4NCTmwX3P3hUgunFpqE0Z0e_KZSfv_gjCavfpGDyQDTi0_kvDdB0GWGWCItrAprs5z7Qp8crVtp-KrRetaGjVb7dwvvb-uKeDiLfz_zoxXe8b0cd_C2uSilR80U1H8OgZZlcMMUKW3ICryj_FtVqfaVj6IecZUa5sKaCO4CckbjqsrmTXDj0PATTWRP2isALKHZ7Xx4ItskJV06Q2YP-W_w2hPKG4NndItbVIb1UD4cWLXNCg_7gEm6FmfHUifhTtqsCloj4xkLILSQLzsfNlgccYAkwuFUmtcyY-xPmL3ai7SQYlMx1HWN0JOj3XEYM_Lq8faYgcv3BMxeXMXA4ppb_9BMgBtrSyVyP2vLiSfJ6rQ8RckJyjLhUfClbaN7yIh4eNoPLe39f_iAiUwIUWkDcIEguoYAFja4b2P_XXX6evOsQkhmi5JSwdQu616Fk5YTsuwr4Vumnsbz8viBpHUiLumnRyZS1Aupr_lq1H7HX8xMx0WLsC414qqdZlTyii_fRNs3SdirA3mFx4rXfCa8FwRWinJzfnbPUDENBowhpdCB7JLGv-LXhAY2IHcpmu8oxIKdJCXGeo0X4JbKQrSuoV_DBnA4I6tcUN-tZ93_cFmUCT9fpOd5yRub5V1ay91aG0kQA4FgMotuXAIHtonIdUJVZDbnbDaYuBH-z-5apJroa", "type": 112}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12nxbpOxw5XGlz252VB2iKH_EqHwDf0ILG7Ia0CBV1OUoJKqbLMzaU8oerYCVrWre3e3p9nZnrBKEkXl-ZSMtB1R3br_mqTzB5JKnlTnpb59GPq6yqhq8--9vqGjElvPHBa404Soo6um9IgVwC4m8-npLWBo-CuWXdZapItHUq8pMJCEO8gtEvZuWa-sSKLRQCfIfZWM3F4GdU0M73mpLucE34fEnsjdcMLHtREMKeNUOEbSmhvB0IU0kZvAM_96t_D81os7xkgLoR5aLMnUdgsIJisr3hm1FITOlvlxb1E3gNPQeB_b4il2EWi5LapJQc-2B3VCc7dFoGjs4IwUREpJzS39maH9d7bt9K-Oewxc5hIBEfAqv8BT0R_qa2V4NjalT4d9CCgwkuzuo6Cj9huk1EoSkjOGW4gbF1QNV6NHAfrY_R5CDlWipx9f1_xZpMv9E1MHcH0pYkaS_Sg86DXKEITqdy9xJFOMIPtSSW75sq-HFiN7F0RL10AIhi76y8Iu1rEVrGscYUJK0TRYdYoGkxjuyx7BSK8uj6XeQaar2QyXMHnJ4TCBdz9qhFVnR0FYx0caAE2WqXNfCwXW4sSY7VmECgYAMD1vyTmBKANDlqCx4trERk676wXZhIzQNedW-96TmZ1LMWNEBAxrICiiHoVezJyruUwua-Efgn4JZMcLHoPaUK8Wu7KVS-zsi2Haxw4W3Zj_Z1oDBHMt296eg7xRp0HUU37fAX3UkU8BwamM_ZBRbO-SfMuEfOk-codO9YXNIR97ogsy7zZtys3zo-sMbys-fYWhKBzSsgr2qhP-9PuLSI9sy6KesIvZvH_jXPVIFuvUwAgYwolISf3vBGlv6v-_HCQRN0p9JDdhzBDu8vGk3qTe2l6a9pWLoaipE2KotAn0ZEeuopPtsH0bwih0DEes1J-z5fzrHTSp3h0czhC6z0223vtPCdUX5XrzzDWecHVBsd0AKosDeGuuAId5jrguj5XVTo48GF3NfeDujMPFXCCUdMEMlf0aeulghs6UuNtoyJJCxaZeoNpirjZh3LEO0sp6fecSiGkh_qYAFX7g2T-X-LcHm5Y5-sDTrlV1DVNCADEih_7xi--8lVaI7oXAufBY1vsgW5o91yjiJWFCCvpO5Yf_yQTdYTLCgnYXR8Cr2pIr-bgNXxUKHpU05mNGZkhWhvb1bJbaFbnD6xGivcogFFHDEUPd0T6Vwur8Q3S86-HH97VHFf4--3xXcw4jiElq8X5ddXQhQSwdT9XtePsDWxyKqo3ygHJA8YjtqDfwpO8_xxlRiyLqOnEGPriCKj8tci8ntzXpfSmo5-fDgTuIx5fDrpEKz_Fe7b5cV8V6yRI3X6WEzD96MxmS6bLEoEfMaIJaDINT6Qg4MLZGzq2qFg_4zEiUA4Itt1RewqswwN9WQejy7EjE3ZTm7S_beyuWMDRdr_nSKPAZkmhUCoiikpyHtwAdbQqoqSI20uk1Cv_iGuULGxC_xvT3tzP64pD58R_KSmJQHyZl6PcZomHse4e8l2dLw-62caAm9uIm5Z3PLcxDVCLczjPNj0z07d85K6dzm9l4y7FYq-sZSjsSWVV_HcQSY3N8bOGXPCfaAJI61HWZ7932xEzQu5gQqaqqO7GnQY-fW6QaA2Q_TwafwUlwZOFR6DOCBQLEIjT5_BsvtAlCf5l7NAQTROVl5Rqa6xv4ns6RQUYoaIVvw9f1mS-okRii9DHjO149zpEDvwXXo1wkd3khUcjrEepvH3xsicstkOeWtmuBQrEe0LkMfwiYOlZrzwLmf0ZHPsLq90b3njyyJVv6h9ile2Ph9-U3XqZu1nlKTEYMdZgEZ8_0a4BM-He1449A6KDP_jYajeb5E4GtJRGOUs3TkFJ6GnqgB4P_7Ix0lUQxjU-MCiqig1U64HA9t_oU_Bli3a9ccaF3Ahb-P2EWcalcx0cQiz1Ca00IvsxnAG2Ga9hQ_bZQmsdT9wUVwl7oRA7KxpCBw_BZUp0aeXH7u0ki8pdSzkVfsy1Cb2XFWN0mmN7c54fEvFPA5KXI-jwWe11ZAhNP9n7IBivU4iGRc6P8cEdeGNbNeYtzdNd9DiKvvFzqUtonZ_LbBXbI2kndNr1DOKOR6AgWOZP3-f_pTLhDECHaACFBZlkwdwr_UJHFWaTM82EZCnYIrHNOCQ9JyD5qs0l70D9LD3BLxXKS3NFWZV-jJBNHtBUuD1aUIpd2fTF7e0FRv4sx__16g-OUlZoTWImejRQJgLYZe3hMRjv2DPSsTgRDOzgvAE0XpGdauZoPBu6lDtNTUrR_Z8PPhr_-eQO-MvPHv-8vjLWC1iupKDzURVrSiwpeMy5ooJWYF4iuKHsM9V3zPSlocPgW_Rcw7bqmDVK96y_5td-fqADHP-GK6UqhSJYXzkvFcQVoTtzuCxHtpsIXX5FLqoJrNBdXl33_pA1fwagfxc00h-Vyqz4icTQN5V4TV11zUFsBNTSylfDNV19-8HITItyat0Vd0HSCJGbJJepUCGFuIIxW8IezxdkguiRg2y-8ftzCmJTBQsWJcCdX6myoV5", "type": 113}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12GgXb55ehmHwCUu1sV_VN545vsb1QZ8364LsLql9TqwvXPVenEjL1xCtDy9Au7yXq4UoXqdJ5SkxaF3MfqSffikKDZstKexO7yo1yEaPvNl-nE0QrbDmwrqzdm0Z8Kr_cvb870nPejMFFt2HDq3UegwDfhmtEQZip1OqI7GnKp55w-exDpQPW7zR11GZDI8VEUmZ6VNnP5TRXyRyDq4KSTjtFLzL7KxhYhJdmT5g3j1X_sRe7-3Ypt3r4i-8GkXgcQUgOTSGqjKEbZ4T9ssS4uCuv32H58Oq5qm-h1soUZpeGCVMcY40sWW3U9_AKQXcKAUsEn7LTfDXyuxvOHbME4Qsm534QZMQoD3vEbOue2DL88YgJ00YdzYU9p1C62bDnOttvM4OI0nUFDmYsZBJVG7u--90QcZbWjgY_d9tNRXlsBXKbuirecj9k0ptD5wmo2yvQICkpY4Fxl9bQfVxO0pW56E0874IAmEQPBxsAV6qqjWFoAWbL5HtEjUUWAKmF81TBTV7X6lFnkcLFNn-P6Mt3XUPws_mUrru8XHLrbIXADdzbYEsBvii5seeLrmuVjWhNqi6caesQtHBQOf1hZI7d5ihPhihRc__ZuWsrhlA6sgJslLGhmRKpTRV3spISdLxyfOMw4IFgXZjGw85wyqY9HnGmhG3dBzc7Y6OdH6zJjj90i06e4QBPjp9GOCTlPDG2lzRBOaoSYmyEUv_Np9cxjAXpuMXyj4u1TOq-q_a1VEkQi6rOz4c0jAwOjOCtyA29aPFiKiso3cAQ9ZhWbq45S-ESraPu7D7Im8n1ZJja-8zMYXUUrVT6TWSnJB7RkquFY_1I5e9CQjjX58rIaNPoCXBRVGpFXAGvqXXnkh_Husc-ROUMVSpSWVOUnX3CzwqtoD6nDobxY4pXT6zdtVSLJbRIPMJdZqD-R7c-59Pq_yDoLMRy-sedjXi2gg1zLUqvT4jOmzRB2elUz5Fhhc3h2lTlMe7O9AuK9emvIDp2SEf2p2U4zt3GY2S36lRpheWwgHljrSOazxoEB-anC_TNZi2-R-1fYpuN_wFShFvIFoLxyBPcrtA0C99KuJO0dCXR7FjULqv8nxI8RcrDOtA4EAhPemANZ4Xlum7wLfp9MKDf0brHufKjc3HwIZY7hbW01pdcp_Ad747NBBJX-zbUodOCFaGPYCZ4F5DjqAEFRjKarL6eOhIL411-vQ2PwwFw3GmZJL8GNlDOPWFUmWqtti35nbAPexbDNMYvgVxL1Kl3cLgzULx5kYG8GFTimEcdxqtQoUps_xYCkXfwOY1r205f8IUqjrH16Y7o5fz94sj9inkxoPMtuwXzlaGdHCLDFroaqeXX1-NeQnAVyTH-_38syPY2wjU0NjzhikrViHGgz6-uY8Uzf78n0rdwd6qAPpZ-stf8wmzRadNPWONa_2LDOkOxfKX_x0Om-RSyXB-GEojP_lXrDg-_2beD79kOlja-hNSI6Y0aNb5IILQ28mQ_fixCo9FpZGl5G6WBXgT0kcXY5UdA1b1AZj3QNGBmZ8xQwt411hIfAsLzoe2xaDFzH4Zpa8yx9EByyytA9-sLbA2nK-z3eiaA2kb-IX9WVfqCoEHwQuRSyBTIlTLAWLZqb2M3RjkqXAtZG7QNQdtRVXAfw0aNSVZTkPNHSKa9EKKNh_OZLgl-19jjNWz8ZxQd5eZgKUlX1g3EAECRCKIQG9vnbgnbqWS7yemeC_8qh3_ngJhxPToFXyYNeCT3zHayr0ikHO9gSoB4iEQFVyEMb2fSbcchpJlDWkaltjWJJxtVnCdvVzDw3SGr84a58OH7ionQpbGyx_rcpuQaNqGxIaiEiFg2Fil39zO6rsh7dNlleJzv6IAhc_QPjZ_qd-UBrKMAgNoiIzg986YJaOnjAKQ7sIvU9ImjedqXtAFWTFyxK0WcZ__7se9KH9zNmStpe_lELCpsc6rWfhf9da20gCpwJ-CwoGk855wYIppQ08baAxIMjJ97Zx2r0tDHyMPWpuzxL_3MZO22bkv-7lCl_7qreMyJlcxn-8vecy95lX5z8iJHdHt4EkHE3_A1tki2s514kCv6LOgPvNGjaAMmude-4tIwS-an7SdVWtCuqbO_WQpFU8BCtSOdxzw1GRZrCzsPuvgcWNOXzqTQqfR8J6m0ptkBXvQ3x-PMywc6kfZHotixFR5jrUaKFWhGt0oxJGry7hzfhBf95YIg17PjXgtBy8BU42zkDuOaWYNq6SNuypf5bHd5iwGGmY99FdtEbdY0P-ogU-FAYmfz9qsSyLzhHq1IgOOyPG-DtI_9QwqpzBcofNq33ryI8buE9BL7VS5wQCcPw8g-MwXQe5oFw0FUYMymLOe3U73PRxYr46QYkaoRYw73BQ6_2Btp-TJQz7KZFeIQ8jnTyY09fKRiFaUoVlNxPabx6ejbI_bB2lN25sCtnDF78xwuLVT2QCEew6bEV-k5HWbm6rpR_wPwmEVaxfPzMkPnhkKgb0kQABiQ2TzJAgY9c9uNO9MlEQBAu_Mv6x-xCeH519N3344vk9He4dLxaHNfF-ob", "type": 114}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12pWKNWtweFVMn7GRGPWdHPuOho6Ss-qr78PuncaW_ghiiNe0jVqzMZnhpLDuV5G_tifrj5yMKeJkZbxYTBsiVZdzENpU1dkQEiRjKcvm_FneRGto9b23_yq57SNR0pU9kQOYf1i5Z8HBOGLnpem5gtBftWh7cjU1vtujwSeJzgK56Bs2W2GjrDEn-hwjHR-CmeEr6-k-w_pKuedizyMX3XW8mX3gNVP7wj8ro_lbVL4zcPrCeOT0yGX31v-dtN4VXArgb1l6SyFdKL5lvgBlLyqyDuHIzadGCiWjbiSUbaRUW3CrWUNAMTXcjeigZPlf7JOlNXZlgq_DucWq5xmCq9r07LX4QHvCFJjQ49pEoNrq075P1Aw35qfaEkVnrM70o58qKFw-DcJiobuZAeSimV1ePZUneFHRSqt0H94oB_gd7Fd_vonjxf4O0pFsuc5yuRHrClZJeX508umpYmB00xPYeY0dXAwKyEuzpNZzKR8PXQZnp7SxdhcMZxTpSie5ofaqApeoJe2pNGprkSFodeBiIojWR8JugK8CHYodRNkqLIN1JRuEz7iCz-7CbTPo54iArvOm0Qch7ZmaXdAwqrjseVE9NgqLaie3qi-YGCxCgE0cHypq_waFz05HVi2Q7jc-ksG6dkR7O5DYCr-A5NoA_HfGEKDfWuPBgkYtFi4RXrAFqAMteNw3nl2S4sdrDJwQ5OKRXPoE3Prd2cxa8Ll1BH-qUpxPFfpr9NvzZOJkkFAXAz6PIU2guqac2WXH2362N3qmPAkHkw3Nd38-hM4DNHu4wrYMpUWpeLM9y39I88cDxMwo5jklQ0nq0gSADe2nkHwgA7_crcBc1nT1FncJoEnF9S2tRe5UIcvFaF3Wf2iMNdg8fyf3yAzleF9zgjLUiRhXsCkVd8YIXPkRHTOSU1eHlNdUw_SA3XSBH-Kgj3zh_TVBadX67_bw6b8YGnHE4mesu4TvM9Nh24i_lbtSit--wooP4-6qAyTZC2ygjFAngAT4iT1LyJqG0DsjpvSkBtmKxZtBJi4YCUty9vjDhlWCHNvW0UV45CyiQPaWUf4fRPNzrkyMt07QlvhtdjvXoWj1W8nQ7ayoD188jLQay0u5K_R2q4pXqa38xioox496Hj6VN0rs2rzfccrYr7xQMJBBzof2RriTTNd5QN3s0uu9_Qw4ItSSglHKD8yBIh7ZLMQEGOPmJKnEuiLWIl7lchEaxuUXx1DUpQRIEhnVOJtOk2deyOD7Tkgcs5MAbV9uTj_UEn9KgXwTYB22HtLAj_Dz5al9uD00QHD0xHFSMqyclVtBqgDLVBp0grMvrP6BFQNsdrr_LV4UnCxi3FrKTfCb4HHAQELQmlFvO_mth3IxkDaTbiewbZQ2kp-6OCRDiMPP8vbMHJOVlRASMekjlQlSxnNmgSDQuEfXvz9CI9BBGYYzkpqJ1T4eOJRHqMYuUuPrD51aV5moM144iBHm1E8wMCkQykSt0-zoQr-N6aRF0oufhK18PKzLY6bz9u4wwaHZY7rxscNbAdk3syzzu0fQrsZN254RQ0fAwlL6AVhFOorjJTkxs0fgSIU7B3PwTL3_QQb7fHSHxu5pud_0e8jwTRgx7ZMkpnZjcfSh7zYfmxSLc-pasSAUkqar8IGUtHqd1Cr882-dc4nFvVhtZQp7ud3BrbszPATFzYEOVDTuUOCVrAyP00mTSa05U2f2N-W8tsy_Asr-Pz2Oz28LsXEiUTxYo-KB3Ne07KF4gT_fW8H7NDUui4p2plca344Lp3qlDdZhvG-XegbSBJQOssvjfiBGUBKW6lpAMMFVcIjn3azMCHLtkUPR35wq368oukAHtd0JTlIQgtfuf0zZFkJuE4sNPpWJK4OJ8cDlo1CUFq9ThK8tyeGqEheH_L9EtZNvoz1knHDTQmy5DEHU57Q1DJVBCSzdXUm2PT_w7iV6QEj88j-rmqJh8_ca6OQA7YCY1vxXXYgF2BlKiORuO8n6eDTBiVamSpGSHmQ0M2j_cwAWJZUbGfvxCUymA4b44OpwL82xMtSd3qY7iVwLsLREo1kax9-039RwND3k_PCF18DA6QLQ2W0W7h9D26sj7wYvUtGut7-Ls2zBN6zH0pJ3jf5E-VNHW2u2m-rKj84g0p4DBEnXVeXz3LC92RrK-9JnOGgfVI9Ti0VuoWRHGZfnNpxpnInJ8JqRY0dbB-PtZVL7L-60ew__uwOsuAHobW1kbOe0WBfauymT-v20vSlejivcvpU_byNzBCvJOlGqiR4oSjAToQrmyZfMiygrNRWU1TWFsF0nIf_c-xQaUcK8FcpzACwS9XYKH5wM5fYRR8HxrifGGj7UV1VG0eYQJ4eKAk9SNkCCsDbn0NTyr0Ji25mkR2klxmvFrH-yZ4XjPnmI-Z0ZQJIA7hQwiKGOekkSMCFGBeFVEgRIHps2GHNgkrpn3bv92f7J_AGYnrx9um7hvrZpI6QRL6oxbk3MBJpd4SRrpeqjr9fVdFjXB3qi120PQa69qFdmUy4RRclFv0Wkj203v0_paKcHUaebXhoyFRdl3UV9d4XO1", "type": 115}], "media": null, "embed_url": null, "contest_mode": false, "third_party_tracking_2": null, "author_patreon_flair": false, "author_flair_text_color": null, "third_party_trackers": [], "parent_whitelist_status": null, "stickied": false, "url": "https://www.millerlite.com/NiceTryButYouHaveToTypeTheWholeURLToWinAPrizeAndBurnACalorie", "whitelist_status": null, "subreddit_subscribers": 0, "created_utc": 1611961887.0, "num_crossposts": 0, "mod_reports": [], "embed_type": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "mountainbikes", "selftext": "", "author_fullname": "t2_8j6kvs5a", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "Extreme descent \ud83d\udcaf MTB Tenerife \ud83e\udd18 (BIKE PARK MONTITO QUEMADO)", "link_flair_richtext": [], "subreddit_name_prefixed": "r/mountainbikes", "hidden": false, "pwls": 6, "link_flair_css_class": null, "downs": 0, "thumbnail_height": 105, "top_awarded_type": null, "hide_score": false, "name": "t3_lad9xi", "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 0.95, "author_flair_background_color": null, "outbound_link": {"url": "https://out.reddit.com/t3_lad9xi?url=https%3A%2F%2Fyoutube.com%2Fwatch%3Fv%3Deh7c6Vc4UCQ%26feature%3Dshare\u0026token=AQAAhhsZYK8eqDJhMnA3gA-jGfsc09DKriBmItR8DQffJ-KwvSHT\u0026app_name=mweb2x", "expiration": 1612258182000, "created": 1612254582000}, "ups": 19, "total_awards_received": 0, "media_embed": {"content": "\u003Ciframe width=\"356\" height=\"200\" src=\"https://www.youtube.com/embed/eh7c6Vc4UCQ?feature=oembed\u0026enablejsapi=1\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003E\u003C/iframe\u003E", "width": 356, "scrolling": false, "height": 200}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": {"type": "youtube.com", "oembed": {"provider_url": "https://www.youtube.com/", "version": "1.0", "title": "Descenso extremo \ud83d\udcaf MTB Tenerife \ud83e\udd18 ( BIKE PARK MONTITO QUEMADO )", "type": "video", "thumbnail_width": 480, "height": 200, "width": 356, "html": "\u003Ciframe width=\"356\" height=\"200\" src=\"https://www.youtube.com/embed/eh7c6Vc4UCQ?feature=oembed\u0026enablejsapi=1\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003E\u003C/iframe\u003E", "author_name": "deportes vida libre", "provider_name": "YouTube", "thumbnail_url": "https://i.ytimg.com/vi/eh7c6Vc4UCQ/hqdefault.jpg", "thumbnail_height": 360, "author_url": "https://www.youtube.com/c/deportesvidalibre"}}, "is_reddit_media_domain": false, "is_meta": false, "category": null, "secure_media_embed": {"content": "\u003Ciframe width=\"356\" height=\"200\" src=\"https://www.youtube.com/embed/eh7c6Vc4UCQ?feature=oembed\u0026enablejsapi=1\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003E\u003C/iframe\u003E", "width": 356, "scrolling": false, "media_domain_url": "https://www.redditmedia.com/mediaembed/lad9xi", "height": 200}, "link_flair_text": null, "can_mod_post": false, "score": 19, "approved_by": null, "author_premium": false, "thumbnail": "image", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-0ec0cf6b4e835f4a5.wss.redditmedia.com/link/lad9xi?m=AQAA9l4aYCz0hA33wGaH3JQ-6T8QG8qi-kcTtIjIH52gUiPLQngv", "gildings": {}, "post_hint": "rich:video", "content_categories": null, "is_self": false, "subreddit_type": "public", "created": 1612240316.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "domain": "youtube.com", "allow_live_comments": false, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://youtube.com/watch?v=eh7c6Vc4UCQ\u0026feature=share", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://external-preview.redd.it/P6AnF1-fjZwPF2DDoPR5_U_sBP5eQ20bxlOB02KVl0I.jpg?auto=webp\u0026s=202d5042cdd526063a6f45aaea433c7a771b173b", "width": 480, "height": 360}, "resolutions": [{"url": "https://external-preview.redd.it/P6AnF1-fjZwPF2DDoPR5_U_sBP5eQ20bxlOB02KVl0I.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=a4026261d7de7835319b8872a1d817eae127c232", "width": 108, "height": 81}, {"url": "https://external-preview.redd.it/P6AnF1-fjZwPF2DDoPR5_U_sBP5eQ20bxlOB02KVl0I.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=6de82dcc2ea4edd4f160f3be90e4589d77109ea1", "width": 216, "height": 162}, {"url": "https://external-preview.redd.it/P6AnF1-fjZwPF2DDoPR5_U_sBP5eQ20bxlOB02KVl0I.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=2b9217ff443e45eead8156b1f440bdf48b6c8310", "width": 320, "height": 240}], "variants": {}, "id": "j5RwDsGZEyc4T-PR4GsPHVNLIVFgqkdIsDQoFzO1p5o"}], "enabled": false}, "all_awardings": [], "awarders": [], "media_only": false, "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": "https://styles.redditmedia.com/t5_2uskl/styles/communityIcon_jis4k7fo1hc51.jpg?width=256\u0026s=3ff3a3cae535e2c119fe33619aab563485723178", "show_media": false, "description": "", "user_is_muted": false, "display_name": "mountainbikes", "header_img": null, "title": "Mountain Bikes: the place for mountain biking enthusiasts", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": null, "primary_color": "", "icon_img": "", "icon_color": "", "is_chat_post_feature_enabled": true, "submit_link_label": "", "header_size": null, "restrict_commenting": false, "subscribers": 14979, "submit_text_label": "", "link_flair_position": "", "display_name_prefixed": "r/mountainbikes", "key_color": "", "name": "t5_2uskl", "created": 1345265973.0, "url": "/r/mountainbikes/", "quarantine": false, "created_utc": 1345237173.0, "banner_size": null, "allow_chat_post_creation": false, "user_is_contributor": false, "public_description": "Share everything about mountain biking: bikes, parts, pros, your favorite places to ride, etc.", "link_flair_enabled": false, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2uskl", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "lad9xi", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "Global_Coat602", "discussion_type": null, "num_comments": 0, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/mountainbikes/comments/lad9xi/extreme_descent_mtb_tenerife_bike_park_montito/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://youtube.com/watch?v=eh7c6Vc4UCQ\u0026feature=share", "subreddit_subscribers": 14979, "created_utc": 1612211516.0, "num_crossposts": 0, "media": {"type": "youtube.com", "oembed": {"provider_url": "https://www.youtube.com/", "version": "1.0", "title": "Descenso extremo \ud83d\udcaf MTB Tenerife \ud83e\udd18 ( BIKE PARK MONTITO QUEMADO )", "type": "video", "thumbnail_width": 480, "height": 200, "width": 356, "html": "\u003Ciframe width=\"356\" height=\"200\" src=\"https://www.youtube.com/embed/eh7c6Vc4UCQ?feature=oembed\u0026enablejsapi=1\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003E\u003C/iframe\u003E", "author_name": "deportes vida libre", "provider_name": "YouTube", "thumbnail_url": "https://i.ytimg.com/vi/eh7c6Vc4UCQ/hqdefault.jpg", "thumbnail_height": 360, "author_url": "https://www.youtube.com/c/deportesvidalibre"}}, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "pics", "selftext": "", "author_fullname": "t2_4fhh3p3s", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 1, "clicked": false, "title": "Working with the mid-day Sun to create this image!", "link_flair_richtext": [], "subreddit_name_prefixed": "r/pics", "hidden": false, "pwls": 6, "link_flair_css_class": null, "downs": 0, "thumbnail_height": 140, "top_awarded_type": null, "hide_score": false, "name": "t3_lak5k8", "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 0.86, "author_flair_background_color": null, "ups": 13115, "total_awards_received": 8, "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": true, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": null, "can_mod_post": false, "score": 13115, "approved_by": null, "author_premium": true, "thumbnail": "https://b.thumbs.redditmedia.com/wP_ASvhzyBB_msh2UHpvSfpDRfRWFKhJZ82JPi_KBeI.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-06a9d4455a99e86c7.wss.redditmedia.com/link/lak5k8?m=AQAA9l4aYImDFVa_uFzt18z5R6WWxvV9r-0uHHDCuMEp9Cw6mOO_", "gildings": {"gid_1": 2, "gid_2": 1}, "post_hint": "image", "content_categories": ["photography"], "is_self": false, "subreddit_type": "public", "created": 1612258509.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": false, "banned_by": null, "author_flair_type": "text", "domain": "i.redd.it", "allow_live_comments": true, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/hzxquxzzwye61.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/hzxquxzzwye61.jpg?auto=webp\u0026s=7886dbeca1402225283978f0f8fbd23c62a2ea14", "width": 5504, "height": 8256}, "resolutions": [{"url": "https://preview.redd.it/hzxquxzzwye61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=505d3100772da2abcaaf8a5a9eea08f36f0b7297", "width": 108, "height": 162}, {"url": "https://preview.redd.it/hzxquxzzwye61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=f9e5d34033fcac00c7414579c6e8493af32963f5", "width": 216, "height": 324}, {"url": "https://preview.redd.it/hzxquxzzwye61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=e7f88cd3a7cb89b1187b3465051553db88bbaf3d", "width": 320, "height": 480}, {"url": "https://preview.redd.it/hzxquxzzwye61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=8b711003321c632a34618e1060bb0beaadf86670", "width": 640, "height": 960}, {"url": "https://preview.redd.it/hzxquxzzwye61.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=af22e9dba1258948d8a874d71df844ebd354b413", "width": 960, "height": 1440}, {"url": "https://preview.redd.it/hzxquxzzwye61.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=892a88a0ac32342dab4b8843c94c411c5e3f7435", "width": 1080, "height": 1620}], "variants": {}, "id": "rsTN7gWewQIYzjAAJfHdGWrh50O3tm15Lr7fgCFmg2I"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 500, "id": "gid_2", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 100, "icon_url": "https://www.redditstatic.com/gold/awards/icon/gold_512.png", "days_of_premium": 7, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/gold_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Gives 100 Reddit Coins and a week of r/lounge access and ad-free browsing.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Gold", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/gold_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/gold_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 400, "id": "award_84276b1e-cc8f-484f-a19c-be6c09adc1a5", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/SnooClapping_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/SnooClapping_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClapping_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClapping_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClapping_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClapping_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "An amazing showing.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Bravo!", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/m5fdvo7cl4451_Bravo-Static.png?width=16\u0026height=16\u0026auto=webp\u0026s=647cccf78702582f30d23908180da092b135cffe", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/m5fdvo7cl4451_Bravo-Static.png?width=32\u0026height=32\u0026auto=webp\u0026s=4644ac0618ecdef010ae2368e2e58669953fd9a3", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/m5fdvo7cl4451_Bravo-Static.png?width=48\u0026height=48\u0026auto=webp\u0026s=ca4efb2faa26429279f44ced2822f5e81ff37537", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/m5fdvo7cl4451_Bravo-Static.png?width=64\u0026height=64\u0026auto=webp\u0026s=3a307ad71aad031accfd47f1af82a2b1e09195cc", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/m5fdvo7cl4451_Bravo-Static.png?width=128\u0026height=128\u0026auto=webp\u0026s=fb9b2c432b1ddd85fd653ef3cc1a28e5edc40a1f", "width": 128, "height": 128}], "icon_format": "APNG", "icon_height": 512, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/m5fdvo7cl4451_Bravo-Static.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 150, "id": "award_f44611f1-b89e-46dc-97fe-892280b13b82", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Thank you stranger. Shows the award.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Helpful", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "gid_1", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Shows the Silver Award... and that's it.", "end_date": null, "subreddit_coin_reward": 0, "count": 2, "static_icon_height": 512, "name": "Silver", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "award_b4072731-c0fb-4440-adc7-1063d6a5e6a0", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=16\u0026height=16\u0026auto=webp\u0026s=8e644eb9ffccee5f11d72e759883a6c825f7d89e", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=32\u0026height=32\u0026auto=webp\u0026s=c49ad07c88610c7efe98a54453d9ce5ddf887a1d", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=48\u0026height=48\u0026auto=webp\u0026s=80eb767a877a78c181af1385c2ed98f067b38092", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=64\u0026height=64\u0026auto=webp\u0026s=b2b65ceeff9933f5e70387893e661b7e9f1f1556", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=128\u0026height=128\u0026auto=webp\u0026s=aec3cf53a1aeabe4c2ecc4ad83b2d0f2993d1afd", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "C'est magnifique", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Masterpiece", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=16\u0026height=16\u0026auto=webp\u0026s=8e644eb9ffccee5f11d72e759883a6c825f7d89e", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=32\u0026height=32\u0026auto=webp\u0026s=c49ad07c88610c7efe98a54453d9ce5ddf887a1d", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=48\u0026height=48\u0026auto=webp\u0026s=80eb767a877a78c181af1385c2ed98f067b38092", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=64\u0026height=64\u0026auto=webp\u0026s=b2b65ceeff9933f5e70387893e661b7e9f1f1556", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=128\u0026height=128\u0026auto=webp\u0026s=aec3cf53a1aeabe4c2ecc4ad83b2d0f2993d1afd", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "award_19860e30-3331-4bac-b3d1-bd28de0c7974", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=16\u0026height=16\u0026auto=webp\u0026s=4e50438bd2d72ae5398e839ac2bdcccf323fca79", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=32\u0026height=32\u0026auto=webp\u0026s=e730f68de038499700c6301470812c29ef6a8555", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=48\u0026height=48\u0026auto=webp\u0026s=8d7c7fa22e6ff3b1b0a347839e42f493eb5f6cbc", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=64\u0026height=64\u0026auto=webp\u0026s=11ec2a72e2724017bb8479639edce8a7f2ba64f4", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=128\u0026height=128\u0026auto=webp\u0026s=1e936ae571e89abb5a5aaa2efd2d7cfb0ed1b537", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "I needed this today", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Heartwarming", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=16\u0026height=16\u0026auto=webp\u0026s=4e50438bd2d72ae5398e839ac2bdcccf323fca79", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=32\u0026height=32\u0026auto=webp\u0026s=e730f68de038499700c6301470812c29ef6a8555", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=48\u0026height=48\u0026auto=webp\u0026s=8d7c7fa22e6ff3b1b0a347839e42f493eb5f6cbc", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=64\u0026height=64\u0026auto=webp\u0026s=11ec2a72e2724017bb8479639edce8a7f2ba64f4", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=128\u0026height=128\u0026auto=webp\u0026s=1e936ae571e89abb5a5aaa2efd2d7cfb0ed1b537", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 80, "id": "award_8352bdff-3e03-4189-8a08-82501dd8f835", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Everything is better with a good hug", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Hugz", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png"}], "awarders": [], "media_only": false, "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": null, "show_media": true, "description": "[Rules](https://www.reddit.com/r/pics/wiki/index)\n\n1. No screenshots or pics where the only focus is a screen. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_1_-_no_screenshots)\n\n2. No pictures with added or superimposed digital text. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_2_-_no_digital_elements)\n\n3. No porn or gore. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_3_-_no_porn.2Fgore)\n\n4. No personal information, direct links to any social media, subreddit-related meta-drama, witch-hunts or missing/found posts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_4_-_no_doxing.2Fwitch_hunts)\n\n5. All titles must follow title rules. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/titles)\n\n6. Submissions are only allowed from one of the approved image hosts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_6_-_only_allowed_image_hosts) \n\n7. No gifs or videos. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_7_-_no_gifs)\n\n8. Comments must be civil. Any racism, bigotry, or any other kind of hate speech is strictly prohibited and will result in a ban. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_8_-_civility)\n\n9. No submissions featuring before-and-after depictions of personal health progress or achievement. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_9_-_no_progress_pics)\n\n10. No false claims of ownership (FCoO) or flooding. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_10_-_no_fcoo.2Fflooding)\n\n11. Reposts of images on the front page, or within the set limit of /r/pics/top, will be removed. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_11_-_repost_limitations)\n\n12. Normal users are allowed only one self-promotional link per post. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_12_-_limited_self-promotion)\n\n---\n\n[Additional/Temporary Rules](https://www.reddit.com/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* From January 14, 2020 until February 14, 2020, we will not allow political shitposts or political karmawhoring. [details\u003E\u003E](/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* Serial reposters may be filtered or banned. \n\n* We prefer that new users post original content and not common pictures from the internet.\n\n* All posts by new users require mod approval in order to weed out spammers. \n\n* Please mark spoilers for current movies/games/books with spoiler tags. \n\n---\n\nIf you want a picture that belongs to you to be removed from /r/pics then please file a copyright notice [here](https://reddit.zendesk.com/hc/en-us/requests/new?ticket_form_id=73465).\n\n---\n\nClick [here](https://www.reddit.com/r/pics/wiki/links) to find more specialized picture subreddits", "user_is_muted": false, "display_name": "pics", "header_img": "https://b.thumbs.redditmedia.com/1zT3FeN8pCAFIooNVuyuZ0ObU0x1ro4wPfArGHl3KjM.png", "title": "Reddit Pics", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "#ffffff", "icon_img": "https://b.thumbs.redditmedia.com/VZX_KQLnI1DPhlEZ07bIcLzwR1Win808RIt7zm49VIQ.png", "icon_color": "", "submit_link_label": "Submit an image", "header_size": [160, 64], "restrict_commenting": false, "subscribers": 26711137, "submit_text_label": "", "link_flair_position": "left", "display_name_prefixed": "r/pics", "key_color": "#222222", "name": "t5_2qh0u", "created": 1201249869.0, "url": "/r/pics/", "quarantine": false, "created_utc": 1201221069.0, "banner_size": null, "user_is_contributor": false, "public_description": "A place for pictures and photographs.", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2qh0u", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "lak5k8", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "nasaboi_tj", "discussion_type": null, "num_comments": 293, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/pics/comments/lak5k8/working_with_the_midday_sun_to_create_this_image/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/hzxquxzzwye61.jpg", "subreddit_subscribers": 26711137, "created_utc": 1612229709.0, "num_crossposts": 2, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "TheLastAirbender", "selftext": "", "author_fullname": "t2_2v6xwyae", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "Take me back", "link_flair_richtext": [{"e": "text", "t": "Image"}], "subreddit_name_prefixed": "r/TheLastAirbender", "hidden": false, "pwls": 6, "link_flair_css_class": "image", "downs": 0, "thumbnail_height": 123, "top_awarded_type": null, "hide_score": false, "name": "t3_lag1w5", "quarantine": false, "link_flair_text_color": "light", "upvote_ratio": 0.98, "author_flair_background_color": "transparent", "ups": 16470, "domain": "i.redd.it", "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": "9f4bde9c-1b66-11e4-a676-12313b0e95bd", "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": "Image", "can_mod_post": false, "score": 16470, "approved_by": null, "author_premium": false, "thumbnail": "https://b.thumbs.redditmedia.com/QeRAren3-l-rfKo9k08bT3S8f1LhXdVKKrlLWhpGKqg.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [{"a": ":momo:", "e": "emoji", "u": "https://emoji.redditmedia.com/g6hfnftkkur11_t5_2rybx/momo"}], "websocket_url": "wss://ws-0ec0cf6b4e835f4a5.wss.redditmedia.com/link/lag1w5?m=AQAA9l4aYAqZlxdNVD2j8Dfub-LOHQxRRpu-YU6sgBmx_rLu8MNv", "gildings": {"gid_1": 1}, "post_hint": "image", "content_categories": null, "is_self": false, "subreddit_type": "public", "created": 1612247108.0, "link_flair_type": "richtext", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "richtext", "total_awards_received": 8, "allow_live_comments": true, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/cusa0v29zxe61.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/cusa0v29zxe61.jpg?auto=webp\u0026s=7c20e2a59fdc6c75ddd01ef81b1e2a8a6914bfd4", "width": 462, "height": 406}, "resolutions": [{"url": "https://preview.redd.it/cusa0v29zxe61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=4092df5806e67bf666bd1af6cecc01cfeaa992fe", "width": 108, "height": 94}, {"url": "https://preview.redd.it/cusa0v29zxe61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=d0dc2086e908cfaf2b970a3d1d2dceacc2028390", "width": 216, "height": 189}, {"url": "https://preview.redd.it/cusa0v29zxe61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=42aa16962b9a6241f6055da1c2d9ff705e6dc554", "width": 320, "height": 281}], "variants": {}, "id": "whgzoPsjgMQHL3CVy8obswOt4SW-vZUHjLnwxgWwLZA"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 150, "id": "award_f44611f1-b89e-46dc-97fe-892280b13b82", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Thank you stranger. Shows the award.", "end_date": null, "subreddit_coin_reward": 0, "count": 3, "static_icon_height": 2048, "name": "Helpful", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 125, "id": "award_5f123e3d-4f48-42f4-9c11-e98b566d5897", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When you come across a feel-good thing.", "end_date": null, "subreddit_coin_reward": 0, "count": 2, "static_icon_height": 2048, "name": "Wholesome", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "gid_1", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Shows the Silver Award... and that's it.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Silver", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 80, "id": "award_8352bdff-3e03-4189-8a08-82501dd8f835", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Everything is better with a good hug", "end_date": null, "subreddit_coin_reward": 0, "count": 2, "static_icon_height": 2048, "name": "Hugz", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png"}], "awarders": [], "media_only": false, "link_flair_template_id": "1bb4d5f8-c9ad-11e8-8a67-0e3b561b1856", "sr_detail": {"default_set": true, "banner_img": "https://b.thumbs.redditmedia.com/4npNKJLWXF3xJVbv_7rXwLCcwGtQ0iz9DfEsQWsu0lg.png", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": "https://styles.redditmedia.com/t5_2rybx/styles/communityIcon_lnbbgyo7gyz41.png?width=256\u0026s=2fca7035d096f7d807bcd1c93f005e8e0d404724", "show_media": true, "description": "###NEWS\n* [Our Subreddit Rewatch of ATLA has begun](https://www.reddit.com/r/TheLastAirbender/comments/gjxrey/atla_rewatch_2020_announcement_hub/)\n* [Guide to Upcoming Content](https://www.reddit.com/r/TheLastAirbender/comments/cszn3k/guide_to_upcoming_avatar_content/)\n* [A standalone Katara focused graphic novel releasing Oct 2020](https://www.reddit.com/r/TheLastAirbender/comments/fm4baj/katara_and_the_pirates_silver_a_standalone/)\n* Netflix announced the creation of a [live action re-imagining of ATLA](https://www.reddit.com/r/ATLAtv/comments/fxtkki/netflixs_liveaction_atla_series_overview/).\n* [Shadow of Kyoshi novel releases July](https://www.reddit.com/r/Avatar_Kyoshi/comments/egdk6i/shadow_of_kyoshi_what_we_know_so_far/)\n* ATLA Returns to US Netflix May 15th\n\n\n###RULES\n* [Full subreddit rules](http://www.reddit.com/r/TheLastAirbender/about/rules)\n* Check out our [FAQ](https://www.reddit.com/r/TheLastAirbender/comments/d8ohvc/faqsguidesresources_mega_hub/) before posting\n* No blatant reposts! Use the search function before posting\n* Do not request/post non-official stream/download links for any episodes or comics.\n* Do not post links to/images from leaked comic content. \n* SFW posts only\n* Memes must feature avatar characters (as in images of them) **AND** be related to avatar. \n\n\n###SPOILERS\n\n**Posting spoilers**\n\n* No spoilers in titles.\n* [**Official spoiler stance**](https://www.reddit.com/r/TheLastAirbender/comments/7myl6k/200k_subscribers_new_spoiler_rules/)\n\n**Commenting spoilers**\n\n` \u003E!Azula kills Dumbledore!\u003C`\n\nwill become\n\n \u003E!Azula kills Dumbledore!\u003C\n\n###LINKS\n* [Episode and comic discussions](http://www.reddit.com/r/TheLastAirbender/wiki/episodediscussions)\n* [Crew Social Media Accounts](https://www.reddit.com/r/TheLastAirbender/comments/cb4lis/crew_social_media_accounts/)\n* [Avatar Wiki](http://avatar.wikia.com/wiki/Avatar_Wiki)\n* [Legend of Korra Timelapse](https://www.reddit.com/r/TheLastAirbender/wiki/timelapse)\n* [List of shows similar to ATLA/LOK](https://www.reddit.com/r/TheLastAirbender/comments/e4yv2q/okay_i_rewatched_avatar_and_watched_the_dragon/f9g8708/?context=3) \n* [Discord](discord.gg/avatar) \n\n###EVENTS BETWEEN ATLA AND LOK\n\nThere are several main comics which take place shortly after ATLA. They build towards LoK and answer some questions left at the end of ATLA. Check the FAQ for more details.\n\n- [The Promise](http://www.amazon.com/Avatar-The-Last-Airbender-Promise/dp/1616550740) - (Part [1](http://www.amazon.com/Avatar-Last-Airbender-Promise-Part/dp/1595828117), [2](http://www.amazon.com/Avatar-Last-Airbender-Promise-Part/dp/1595828753), \u0026 [3](http://www.amazon.com/Avatar-Last-Airbender-Promise-Part/dp/1595829415)).\n- [The Search](http://www.amazon.com/Avatar-The-Last-Airbender-Search/dp/1616552263) - (Part [1](http://www.amazon.com/Avatar-Last-Airbender-Search-Part/dp/1616550546), [2](http://www.amazon.com/Avatar-Last-Airbender-Search-Part/dp/1616551909) \u0026 [3](http://www.amazon.com/Avatar-Last-Airbender-Search-Part/dp/1616551844)).\n- [The Rift](http://www.amazon.com/Avatar-Last-Airbender-Library-Edition/dp/1616555505) - (Part [1](http://www.amazon.com/Avatar-Last-Airbender-Rift-Part/dp/1616552956), [2](http://www.amazon.com/Avatar-Last-Airbender-Rift-Part/dp/1616552964) \u0026 [3](http://www.amazon.com/Avatar-Last-Airbender-Rift-Part/dp/1616552972)).\n- [Smoke and Shadow](https://www.amazon.com/Avatar-Last-Airbender--Smoke-Shadow-Library/dp/1506700136/ref=sr_1_1?ie=UTF8\u0026qid=1468268967\u0026sr=8-1\u0026keywords=smoke+and+shadow) - (Part [1](https://www.amazon.com/Avatar-Last-Airbender-Smoke-Shadow/dp/1616557613/ref=sr_1_3?ie=UTF8\u0026qid=1468268967\u0026sr=8-3\u0026keywords=smoke+and+shadow), [2](https://www.amazon.com/Avatar-Last-Airbender-Smoke-Shadow/dp/1616557907/ref=sr_1_4?ie=UTF8\u0026qid=1468268967\u0026sr=8-4\u0026keywords=smoke+and+shadow) \u0026 [3](https://www.amazon.com/Avatar-Last-Airbender-Smoke-Shadow-Three/dp/1616558385/ref=sr_1_2?ie=UTF8\u0026qid=1468268967\u0026sr=8-2\u0026keywords=smoke+and+shadow)).\n- [North and South](https://www.amazon.com/Avatar-Last-Airbender-North-South-Library/dp/1506701957) - (Part [1](https://www.amazon.com/Avatar-Last-Airbender-North-South-Part/dp/1506700225), [2](https://www.amazon.com/Avatar-Last-Airbender-North-South-Part/dp/1506701299) \u0026 [3](https://www.amazon.com/Avatar-Last-Airbender-North-South-Three/dp/1506701302)).\n- [Imbalance](https://www.amazon.com/Avatar-Airbender-Imbalance-Faith-Erin-Hicks/dp/1506708129) - (Part [1](https://www.amazon.com/Avatar-Last-Airbender-Imbalance-Part-One/dp/1506704891), [2](https://www.amazon.com/Avatar-Last-Airbender-Imbalance-Part-Two/dp/1506706525) \u0026 [3](https://www.amazon.com/Avatar-Last-Airbender-Imbalance-Part-Three/dp/1506708137))\n\n###EVENTS AFTER LOK\n\n- [Turf Wars](https://www.amazon.com/Legend-Korra-Turf-Wars-Library/dp/1506702023) (Part [1](https://www.amazon.com/Legend-Korra-Turf-Wars-Part/dp/1506700152/), [2](https://www.amazon.com/Legend-Korra-Turf-Wars-Part/dp/1506700403/) \u0026 [3](https://www.amazon.com/Legend-Korra-Turf-Wars-Three/dp/150670185X/))\n- [Ruins of The Empire](https://www.amazon.com/Legend-Korra-Ruins-Empire-Library/dp/1506708935) (Part [1](https://www.amazon.com/Legend-Korra-Ruins-Empire-Part/dp/1506708943), [2](https://www.amazon.com/Legend-Korra-Ruins-Empire-Part/dp/1506708951), \u0026 [3](https://www.amazon.com/Legend-Korra-Ruins-Empire-Three/dp/150670896X))\n\n###Avatar Community Network\n\n^These ^avatar ^themed ^subreddits ^are ^fully ^or ^partially ^run ^by ^moderators ^of ^/r/TheLastAirbender \n\n* /r/legendofkorra \n* /r/ATLA \n* /r/AvatarMemes \n* /r/bending\n* /r/korrasami\n* /r/BendingWallpapers \n* /r/Avatar_Kyoshi (novels)\n* /r/ATLAtv (live-action series)\n* /r/ProBendingArena (table-top game)\n\n\n###Related Subreddits\n* /r/LakeLaogai *What movie?*\n* /r/TheDragonPrince - TV series by the head writer of ATLA\n* /r/cartoons \n* /r/NeverPauseAvatar\n* /r/AvatarVsBattles \n* /r/UnexpectedAvatar \n* /r/BoomerangSquad\n* /r/Iroh\n* /r/AvatarTheories\n\n###Shipping Subreddits\n* /r/sukka\n* /r/Kataang\n* /r/Tokka\n* /r/ZutaraNation\n* /r/Rangshi\n\n\n###Community\n\nThe Minecraft server IP is AvatarMC.com, more info [here](http://AvatarMC.com/). Server is community run.", "user_is_muted": false, "display_name": "TheLastAirbender", "header_img": "https://a.thumbs.redditmedia.com/A3rf2dDGNCQr5IkZKKmnn6HFgtaGS-wOyXBJRBHkNz4.png", "title": "The Last Airbender", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "#333333", "icon_img": "https://b.thumbs.redditmedia.com/7BBF5u_aOIeVPYLKLoZjvST_uyhnQNyHuwQ7PrXusHs.png", "icon_color": "", "submit_link_label": "", "header_size": [60, 87], "restrict_commenting": false, "subscribers": 914603, "submit_text_label": "", "link_flair_position": "left", "display_name_prefixed": "r/TheLastAirbender", "key_color": "#222222", "name": "t5_2rybx", "created": 1279778050.0, "url": "/r/TheLastAirbender/", "quarantine": false, "created_utc": 1279749250.0, "banner_size": [1280, 384], "user_is_contributor": false, "public_description": "The subreddit for fans of Avatar: The Last Airbender, The Legend of Korra, the comics, the upcoming Netflix live action ATLA series, novels, games, and all other Avatar content.", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": ":momo:", "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2rybx", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "#ff4719", "id": "lag1w5", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "mfrijas13", "discussion_type": null, "num_comments": 244, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": "dark", "permalink": "/r/TheLastAirbender/comments/lag1w5/take_me_back/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/cusa0v29zxe61.jpg", "subreddit_subscribers": 914603, "created_utc": 1612218308.0, "num_crossposts": 0, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "portraits", "selftext": "", "author_fullname": "t2_9loijgzr", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "Something from our first boudoir shoot", "link_flair_richtext": [], "subreddit_name_prefixed": "r/portraits", "hidden": false, "pwls": 6, "link_flair_css_class": null, "downs": 0, "thumbnail_height": 93, "top_awarded_type": null, "hide_score": false, "name": "t3_la8n5w", "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 0.98, "author_flair_background_color": null, "outbound_link": {"url": "https://i.redd.it/vpkpxdnzhwe61.jpg", "expiration": null, "created": null}, "ups": 122, "total_awards_received": 0, "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": null, "can_mod_post": false, "score": 122, "approved_by": null, "author_premium": false, "thumbnail": "https://b.thumbs.redditmedia.com/pR2SFWcXvQUin8KO76qFe3L_7xAyau_Qb0AzbVBOROk.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-0f6ba0a7a86f40302.wss.redditmedia.com/link/la8n5w?m=AQAA9l4aYN55B8cSfNkx8n5Xjd9eU_fJBxXaOWALom2T8FGKx9lA", "gildings": {}, "post_hint": "image", "content_categories": ["photography"], "is_self": false, "subreddit_type": "public", "created": 1612229196.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "domain": "i.redd.it", "allow_live_comments": false, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/vpkpxdnzhwe61.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/vpkpxdnzhwe61.jpg?auto=webp\u0026s=9d23d4699938f647338de5a7b74c67614b9b2014", "width": 2048, "height": 1365}, "resolutions": [{"url": "https://preview.redd.it/vpkpxdnzhwe61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=cffc8e515e5e98039d6bf7adf78097dc4d465cb8", "width": 108, "height": 71}, {"url": "https://preview.redd.it/vpkpxdnzhwe61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=a059a1c783aabcc5467ce0490613662d3d10633b", "width": 216, "height": 143}, {"url": "https://preview.redd.it/vpkpxdnzhwe61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=e51e09c308e06f673672dc791e02b3af4e0c4c75", "width": 320, "height": 213}, {"url": "https://preview.redd.it/vpkpxdnzhwe61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=accc27ea0e0ceb3154864f43b2260c22fbcc87eb", "width": 640, "height": 426}, {"url": "https://preview.redd.it/vpkpxdnzhwe61.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=3e805555802080a53de12838ea0ba295088de997", "width": 960, "height": 639}, {"url": "https://preview.redd.it/vpkpxdnzhwe61.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=2e504b74b86941a764e2aa4fa933ee308ce9a9ea", "width": 1080, "height": 719}], "variants": {}, "id": "Az_FQ05aIcujL18vVnVGSEM5gR3d9gpvrUWJRJJl5Zk"}], "enabled": true}, "all_awardings": [], "awarders": [], "media_only": false, "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": null, "show_media": true, "description": "**READ THE RULES BEFORE YOU POST!**\n\nA place to post contemporary portrait images, receive constructive feedback, and discuss technique. Please mark non-original images as such.\n\n**Posts should be formatted as follows:**\n\n*\"Title [materials]\"*\n\nSo a painting might be *\"Hello World [oils on canvas]\"* and a photograph might be *\"Hello World [Sony A7sii, Zeiss Loxia 50mm f/2]\"*. Please follow this formatting, otherwise your post will be removed.\n\n\u003EA portrait is a painting, photograph, sculpture, or other artistic representation of a person, in which the face and its expression is predominant to display the likeness, personality, and even the mood of the person. For this reason, in photography a portrait is generally not a snapshot, but a composed image of a person in a still position often looking directly at the painter or photographer to most successfully engage the subject. \n[Wikipedia](https://en.wikipedia.org/wiki/Portrait)\n\nFor historical painted portraits please check out our sister subreddit **/r/portraiture.**", "user_is_muted": false, "display_name": "portraits", "header_img": null, "title": "Portraits", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": null, "primary_color": "", "icon_img": "", "icon_color": "", "is_chat_post_feature_enabled": true, "submit_link_label": "", "header_size": null, "restrict_commenting": false, "subscribers": 23717, "submit_text_label": "", "link_flair_position": "right", "display_name_prefixed": "r/portraits", "key_color": "", "name": "t5_2sxa6", "created": 1317336072.0, "url": "/r/portraits/", "quarantine": false, "created_utc": 1317307272.0, "banner_size": null, "allow_chat_post_creation": false, "user_is_contributor": false, "public_description": "A portrait is a painting, photograph, sculpture, or other artistic representation of a person, in which the face and its expression is predominant to display the likeness, personality, and even the mood of the person. For this reason, in photography a portrait is generally not a snapshot, but a composed image of a person in a still position often looking directly at the painter or photographer to most successfully engage the subject. \n[Wikipedia](https://en.wikipedia.org/wiki/Portrait)", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2sxa6", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "la8n5w", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "JosephAlexandrino", "discussion_type": null, "num_comments": 5, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/portraits/comments/la8n5w/something_from_our_first_boudoir_shoot/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/vpkpxdnzhwe61.jpg", "subreddit_subscribers": 23717, "created_utc": 1612200396.0, "num_crossposts": 0, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "mildlyinfuriating", "selftext": "", "author_fullname": "t2_8qrkkwzk", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 1, "clicked": false, "title": "There is one blue ball in my hour glass", "link_flair_richtext": [], "subreddit_name_prefixed": "r/mildlyinfuriating", "hidden": false, "pwls": 6, "link_flair_css_class": null, "downs": 0, "thumbnail_height": 140, "top_awarded_type": null, "hide_score": false, "name": "t3_labmcc", "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 0.93, "author_flair_background_color": null, "ups": 27316, "total_awards_received": 16, "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": null, "can_mod_post": false, "score": 27316, "approved_by": null, "author_premium": true, "thumbnail": "https://b.thumbs.redditmedia.com/pRyzAt8jtnmZTys7T2Js6zqaa0chaDNcdCB246qf3RI.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-0c77c1e9cd565dd0f.wss.redditmedia.com/link/labmcc?m=AQAA9l4aYBCT4btewiRfnkv5PWqEfDrdZCMsORd8Misxzv03OLwD", "gildings": {"gid_1": 4, "gid_2": 1}, "post_hint": "image", "content_categories": null, "is_self": false, "subreddit_type": "public", "created": 1612236270.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "domain": "i.redd.it", "allow_live_comments": true, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/sbj9g2q03xe61.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/sbj9g2q03xe61.jpg?auto=webp\u0026s=0716a7e51590e265a5cc9fc85db59ddc2b6efa37", "width": 750, "height": 1000}, "resolutions": [{"url": "https://preview.redd.it/sbj9g2q03xe61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=217d2a8d36a109af7a546651606d05a2fb6f77bf", "width": 108, "height": 144}, {"url": "https://preview.redd.it/sbj9g2q03xe61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=435a39fc79ad6610ddf23dffeb8871f15b79e720", "width": 216, "height": 288}, {"url": "https://preview.redd.it/sbj9g2q03xe61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=10c8e5f315f2fa4d6a3f48eea8d618b26c5a4d8f", "width": 320, "height": 426}, {"url": "https://preview.redd.it/sbj9g2q03xe61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=9c91886a9cf9835fe39a2b5096f16f867efca32d", "width": 640, "height": 853}], "variants": {}, "id": "SZWMPQBIaseJYRhLuXWA9aRcDqR7TecWO6LAxpgZfJE"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 500, "id": "gid_2", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 100, "icon_url": "https://www.redditstatic.com/gold/awards/icon/gold_512.png", "days_of_premium": 7, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/gold_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Gives 100 Reddit Coins and a week of r/lounge access and ad-free browsing.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Gold", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/gold_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/gold_512.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 150, "id": "award_f44611f1-b89e-46dc-97fe-892280b13b82", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Thank you stranger. Shows the award.", "end_date": null, "subreddit_coin_reward": 0, "count": 8, "static_icon_height": 2048, "name": "Helpful", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 125, "id": "award_5f123e3d-4f48-42f4-9c11-e98b566d5897", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When you come across a feel-good thing.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Wholesome", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "gid_1", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Shows the Silver Award... and that's it.", "end_date": null, "subreddit_coin_reward": 0, "count": 4, "static_icon_height": 512, "name": "Silver", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 80, "id": "award_8352bdff-3e03-4189-8a08-82501dd8f835", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Everything is better with a good hug", "end_date": null, "subreddit_coin_reward": 0, "count": 2, "static_icon_height": 2048, "name": "Hugz", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png"}], "awarders": [], "media_only": false, "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": "https://styles.redditmedia.com/t5_2ubgg/styles/communityIcon_lkxajjefezh51.png?width=256\u0026s=7bb81fe43583d4a482979e0e54e1c14ef94ac580", "show_media": true, "description": "\u003E[](https://td.reddit.com/r/mildlyinfuriating/#image)\n[Enter mildyinfuriating \u0026nbsp; \u0026nbsp;( \u0361\u00b0 \u035c\u0296 \u0361\u00b0)](https://td.reddit.com/r/mildlyinfuriating/#button)\n\nIs your day filled with midly infuriating problems? You came to the right place then.\n\n**Rules**:\n\n1) [No Memes or \"meme-like\" image macros.](http://www.reddit.com/r/mildlyinfuriating/comments/1exsuk/meta_modpost_new_rule_see_inside_for_details/) No Memes or \"meme-like\" image macros. These include overdone references in the title (e.g. \u201cbanana for scale\u201d, \u201cpotato quality\u201d, and so on).\n\n8) Content requirements:\n\n* a) Please try to post original content. Reposts or crossposts of someone else's content will be removed if it has been posted on Reddit within the past 6 months. At the moderator's discretion, content posted without the author's original consent or without linking to an original source will also be removed.\n* b) No GIFs that end slightly before something happens ([Example](http://i.imgur.com/Lq6m5QY.gifv))\n* c) Unn^ecessarily overdone ^text, ar\u0026rarr;rows, scribbles, or substantive edits over the original content are not allowed.\n* d) No posting surveys - posts about surveys are allowed, however bear in mind they are often overdone.\n* f) Blur out any personal information. (Full names, phone numbers, license plates etc.)\n* f) Try and keep meta submissions to a minimum. Any meta submission is subject to removal at any time.\n* g) No political posts whatsoever, no matter how harmless it seems.\n\n4) Following Reddiquette is recommended. Following the rules of Reddit is a must.\n\n5) No grandstanding, soapboxing, or pushing any agendas. This includes posts that could be, within reason, regarded as politically, sexually, racially, or socially inappropriate or unnecessary. ([Example](https://i.imgur.com/Um3eIs7.jpg))\n\n6) When posting links to reddit in comments, please use ^[np.reddit.com](np.reddit.com) formatting in order to prevent brigading.\n\nThese rules are **subject to the moderator's discretion**, and can change at any time. A full, in-dpeth explanation can be found in the wiki [here](https://www.reddit.com/r/mildlyinfuriating/about/rules).\n\n*Repeated violation of rules may result in banning*\n\n3) Added emphasis on rule 8g: NO POLITICS\n\n7) /u/dnanf may post whatever he wants, even if it's shit. It is your duty as a good redditor to upvote his posts.\n\n\n\n\n**The Mild Network:**\n\n* /r/MildlyAmusing\n\n* /r/MildlyAwesome\n\n* r/MildlyAww\n\n* /r/MildlyBestOf\n\n* /r/MildlyConfusing\n\n* /r/MildlyCreepy\n\n* r/MildlyDangerous\n\n* /r/MildlyDepressing\n\n* /r/MildlyDisgusting\n\n* /r/MildlyDisturbing\n\n* /r/MildlyEnteristing\n\n* /r/MildlyImpressive\n\n* /r/MildlyMotivated\n\n* /r/MildlyInteresting\n\n* r/MildlyInterestingIAmA\n\n* /r/MildlyInterestingMC (Minecraft)\n\n* /r/MildlyMetal \n\n* /r/MildlyOffensive\n\n* /r/MildlyPleasing\n\n* /r/MildlySatisfying\n\n* /r/MildlyStartledCats \n\n* r/MildlyStupid\n\n* /r/MildlyUninteresting\n\n* /r/MildlyWeird\n\n* /r/MildlyWTF\n\n**Our Friends:**\n\n* /r/gifsthatendtoosoon **NEW: Please post gifs that end too soon in that sub, instead of here.**\n\n* /r/QuestionCollege **NEW**\n\n* /r/UnnecessaryQuotes\n\n* /r/PerfectFit\n\n* /r/FakeRedditNews\n\n* /r/OddlySatisfying\n\n* /r/SlightlyUnsatisfying\n\n* /r/FunnyAndSad\n\n* r/Today_I_Realized\n\n* /r/WellThatSucks \n\n* /r/BadParking \n\n* r/BloodFueledRage\n\n* /r/Rage\n\n* /r/Infuriating\n\n* /r/Amusing\n\n* /r/BenignExistence\n\n* /r/CasualIAmA\n\n* /r/InterestingAnecdote\n\n* /r/GrindsMyGears\n\n* /r/HowToNotGiveaFuck\n\n* /r/NotQuiteWTF\n\n* /r/Onejob\n\n* /r/Vastlystupid \n\n* /r/PleaseJustStop \n\n* /r/BadYTAds \n\n[More mildly related subreddits](http://www.reddit.com/r/mildlyinteresting/comments/zytpk/list_of_similar_subreddits_and_mild_network/)\n\n[Click Here](http://www.reddit.com/r/mildlyinfuriating/comments/17nzkh/meta_announcement_new_flair_options/) for details about flair!\n\n\n##[New Posts](http://www.reddit.com/r/mildlyinfuriating/new)##\n\n\n[](/r/simulated 'This is the best /r/simulated has to offer')\n\n[](https://www.reddit.com/r/mildlyinfuriating/comments/dzlehu/congrats_on_2_million_here_is_the_double#sidebar)\n\n[test](#ad1)\n\njukmifgguggh\n\n[\ud83d\udcb0\ud83d\udcb0\ud83d\udcb0 Nothing\ud83d\udcb8is\ud83d\udcb8more\ud83d\udcb8infuriating\ud83d\udcb8than\ud83d\udcb8restricted\ud83d\udcb8internet \ud83d\udcb0\ud83d\udcb0\ud83d\udcb0](https://www.battleforthenet.com/ \"COME ON!! CLICK IT! DOOOOOO ITTTTTT\")\n\n[](https://redd.it/82yfzr \"What are you doing over there?\")\n\n[](#youtube-footer)", "user_is_muted": false, "display_name": "mildlyinfuriating", "header_img": "https://b.thumbs.redditmedia.com/rmlXC779KUA2MTO4r_GJd2enqa8GKx3BOasymol6gLk.png", "title": "jukmifgguggh", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "", "icon_img": "https://b.thumbs.redditmedia.com/6EKfzU5PYmvE4USNgMZaBR6iCS5NnJ3YFTkZyPbXnZM.png", "icon_color": "", "submit_link_label": "Submit your mild infuriation jukmifgguggh", "header_size": [73, 81], "restrict_commenting": false, "subscribers": 3183066, "submit_text_label": "", "link_flair_position": "right", "display_name_prefixed": "r/mildlyinfuriating", "key_color": "#ff8717", "name": "t5_2ubgg", "created": 1339990463.0, "url": "/r/mildlyinfuriating/", "quarantine": false, "created_utc": 1339961663.0, "banner_size": null, "user_is_contributor": false, "public_description": "A place to post the most midly infuriating things!\n\n\u0026nbsp;\n\n.\n\norder corn", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2ubgg", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "labmcc", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "alvarezcosio", "discussion_type": null, "num_comments": 474, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/mildlyinfuriating/comments/labmcc/there_is_one_blue_ball_in_my_hour_glass/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/sbj9g2q03xe61.jpg", "subreddit_subscribers": 3183066, "created_utc": 1612207470.0, "num_crossposts": 3, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "pics", "selftext": "", "author_fullname": "t2_6lofttn6", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "Got a clear scan last week... 9 chemo treatments down, 3 more to go!", "link_flair_richtext": [], "subreddit_name_prefixed": "r/pics", "hidden": false, "pwls": 6, "link_flair_css_class": null, "downs": 0, "thumbnail_height": 140, "top_awarded_type": null, "hide_score": false, "name": "t3_laog90", "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 0.97, "author_flair_background_color": null, "ups": 1380, "total_awards_received": 9, "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": null, "can_mod_post": false, "score": 1380, "approved_by": null, "author_premium": false, "thumbnail": "https://a.thumbs.redditmedia.com/1E065GJMk8adDZ6sXob5H6sosENMg_CUgSv0ipED_x4.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-0c2fc51946b39365a.wss.redditmedia.com/link/laog90?m=AQAA9l4aYEk7NCdBNJDhkt2CQHZ08kUx2JJK1vyPKMRC1Gfs3WT7", "gildings": {"gid_1": 1}, "post_hint": "image", "content_categories": ["photography"], "is_self": false, "subreddit_type": "public", "created": 1612272548.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "domain": "i.redd.it", "allow_live_comments": false, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/93dn9q5w20f61.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/93dn9q5w20f61.jpg?auto=webp\u0026s=727f26d02794a6e55fd8b7357ce19329715e8fa5", "width": 3000, "height": 3278}, "resolutions": [{"url": "https://preview.redd.it/93dn9q5w20f61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=5bec3ff0519f6a2d1a94fa38343280bcbec43bb8", "width": 108, "height": 118}, {"url": "https://preview.redd.it/93dn9q5w20f61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=4b5e2dce511d90e97abf8ba62beeda5c63f173e0", "width": 216, "height": 236}, {"url": "https://preview.redd.it/93dn9q5w20f61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=2fea5b887ac6e82d7a0b04551ec93ff20e3d1dd4", "width": 320, "height": 349}, {"url": "https://preview.redd.it/93dn9q5w20f61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=88986cd9516825de2595c73bad2c90293a5f0758", "width": 640, "height": 699}, {"url": "https://preview.redd.it/93dn9q5w20f61.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=775fe8751922b61191efff3cf9fd2f86d2a49ce6", "width": 960, "height": 1048}, {"url": "https://preview.redd.it/93dn9q5w20f61.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=743727d95664ce8a2313dfd9d8dc08baf5acd863", "width": 1080, "height": 1180}], "variants": {}, "id": "NcecxAJ1A3xkVbOBLmqwIqtt2H9G0Z8Z_2EgA5V6lkc"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 150, "id": "award_f44611f1-b89e-46dc-97fe-892280b13b82", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Thank you stranger. Shows the award.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Helpful", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 125, "id": "award_5f123e3d-4f48-42f4-9c11-e98b566d5897", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When you come across a feel-good thing.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Wholesome", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "gid_1", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Shows the Silver Award... and that's it.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Silver", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "award_19860e30-3331-4bac-b3d1-bd28de0c7974", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=16\u0026height=16\u0026auto=webp\u0026s=4e50438bd2d72ae5398e839ac2bdcccf323fca79", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=32\u0026height=32\u0026auto=webp\u0026s=e730f68de038499700c6301470812c29ef6a8555", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=48\u0026height=48\u0026auto=webp\u0026s=8d7c7fa22e6ff3b1b0a347839e42f493eb5f6cbc", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=64\u0026height=64\u0026auto=webp\u0026s=11ec2a72e2724017bb8479639edce8a7f2ba64f4", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=128\u0026height=128\u0026auto=webp\u0026s=1e936ae571e89abb5a5aaa2efd2d7cfb0ed1b537", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "I needed this today", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Heartwarming", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=16\u0026height=16\u0026auto=webp\u0026s=4e50438bd2d72ae5398e839ac2bdcccf323fca79", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=32\u0026height=32\u0026auto=webp\u0026s=e730f68de038499700c6301470812c29ef6a8555", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=48\u0026height=48\u0026auto=webp\u0026s=8d7c7fa22e6ff3b1b0a347839e42f493eb5f6cbc", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=64\u0026height=64\u0026auto=webp\u0026s=11ec2a72e2724017bb8479639edce8a7f2ba64f4", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=128\u0026height=128\u0026auto=webp\u0026s=1e936ae571e89abb5a5aaa2efd2d7cfb0ed1b537", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 80, "id": "award_8352bdff-3e03-4189-8a08-82501dd8f835", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Everything is better with a good hug", "end_date": null, "subreddit_coin_reward": 0, "count": 5, "static_icon_height": 2048, "name": "Hugz", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png"}], "awarders": [], "media_only": false, "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": null, "show_media": true, "description": "[Rules](https://www.reddit.com/r/pics/wiki/index)\n\n1. No screenshots or pics where the only focus is a screen. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_1_-_no_screenshots)\n\n2. No pictures with added or superimposed digital text. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_2_-_no_digital_elements)\n\n3. No porn or gore. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_3_-_no_porn.2Fgore)\n\n4. No personal information, direct links to any social media, subreddit-related meta-drama, witch-hunts or missing/found posts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_4_-_no_doxing.2Fwitch_hunts)\n\n5. All titles must follow title rules. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/titles)\n\n6. Submissions are only allowed from one of the approved image hosts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_6_-_only_allowed_image_hosts) \n\n7. No gifs or videos. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_7_-_no_gifs)\n\n8. Comments must be civil. Any racism, bigotry, or any other kind of hate speech is strictly prohibited and will result in a ban. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_8_-_civility)\n\n9. No submissions featuring before-and-after depictions of personal health progress or achievement. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_9_-_no_progress_pics)\n\n10. No false claims of ownership (FCoO) or flooding. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_10_-_no_fcoo.2Fflooding)\n\n11. Reposts of images on the front page, or within the set limit of /r/pics/top, will be removed. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_11_-_repost_limitations)\n\n12. Normal users are allowed only one self-promotional link per post. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_12_-_limited_self-promotion)\n\n---\n\n[Additional/Temporary Rules](https://www.reddit.com/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* From January 14, 2020 until February 14, 2020, we will not allow political shitposts or political karmawhoring. [details\u003E\u003E](/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* Serial reposters may be filtered or banned. \n\n* We prefer that new users post original content and not common pictures from the internet.\n\n* All posts by new users require mod approval in order to weed out spammers. \n\n* Please mark spoilers for current movies/games/books with spoiler tags. \n\n---\n\nIf you want a picture that belongs to you to be removed from /r/pics then please file a copyright notice [here](https://reddit.zendesk.com/hc/en-us/requests/new?ticket_form_id=73465).\n\n---\n\nClick [here](https://www.reddit.com/r/pics/wiki/links) to find more specialized picture subreddits", "user_is_muted": false, "display_name": "pics", "header_img": "https://b.thumbs.redditmedia.com/1zT3FeN8pCAFIooNVuyuZ0ObU0x1ro4wPfArGHl3KjM.png", "title": "Reddit Pics", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "#ffffff", "icon_img": "https://b.thumbs.redditmedia.com/VZX_KQLnI1DPhlEZ07bIcLzwR1Win808RIt7zm49VIQ.png", "icon_color": "", "submit_link_label": "Submit an image", "header_size": [160, 64], "restrict_commenting": false, "subscribers": 26711137, "submit_text_label": "", "link_flair_position": "left", "display_name_prefixed": "r/pics", "key_color": "#222222", "name": "t5_2qh0u", "created": 1201249869.0, "url": "/r/pics/", "quarantine": false, "created_utc": 1201221069.0, "banner_size": null, "user_is_contributor": false, "public_description": "A place for pictures and photographs.", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2qh0u", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "laog90", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "suile_soileire", "discussion_type": null, "num_comments": 31, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/pics/comments/laog90/got_a_clear_scan_last_week_9_chemo_treatments/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/93dn9q5w20f61.jpg", "subreddit_subscribers": 26711137, "created_utc": 1612243748.0, "num_crossposts": 0, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "pics", "selftext": "", "author_fullname": "t2_4thi3kh3", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 1, "clicked": false, "title": "\u2018Threshold\u2019, 36x24\", oil on linen canvas. (Artist: Damian Lechoszest)", "link_flair_richtext": [], "subreddit_name_prefixed": "r/pics", "hidden": false, "pwls": 6, "link_flair_css_class": "13", "downs": 0, "thumbnail_height": 140, "top_awarded_type": null, "hide_score": false, "name": "t3_la9n3r", "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 0.88, "author_flair_background_color": null, "ups": 46612, "total_awards_received": 54, "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": "Arts/Crafts", "can_mod_post": false, "score": 46612, "approved_by": null, "author_premium": true, "thumbnail": "https://b.thumbs.redditmedia.com/CbwtLtcHqyve6p4_I5_hrF66eGBPaM9ayZV7UumK_Qc.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-078adc7cb2099a9df.wss.redditmedia.com/link/la9n3r?m=AQAA9l4aYKNfrI-9CYwqfrQc6ZEnQZ5rcCZxN236p8Fxit16vgmc", "gildings": {"gid_1": 16, "gid_2": 1}, "post_hint": "image", "content_categories": ["photography"], "is_self": false, "subreddit_type": "public", "created": 1612231547.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "domain": "i.redd.it", "allow_live_comments": true, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/ubxzzq9zowe61.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/ubxzzq9zowe61.jpg?auto=webp\u0026s=c0733e2d011def4ba29a9d8f336456c845e1010b", "width": 1080, "height": 1350}, "resolutions": [{"url": "https://preview.redd.it/ubxzzq9zowe61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=069e3d5ad9117dd7fa9273e278991ceab5115337", "width": 108, "height": 135}, {"url": "https://preview.redd.it/ubxzzq9zowe61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=e55cc002fed573ca6471690a16126badccccd3cf", "width": 216, "height": 270}, {"url": "https://preview.redd.it/ubxzzq9zowe61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=d6fb0b8ea68c5e5613f6fb96e4445dfcf592fffe", "width": 320, "height": 400}, {"url": "https://preview.redd.it/ubxzzq9zowe61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=7588e6952a2d92d783da7081d3a9027658929f66", "width": 640, "height": 800}, {"url": "https://preview.redd.it/ubxzzq9zowe61.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=e0de605732652e8a17793ccf4e6c725027ec14cf", "width": 960, "height": 1200}, {"url": "https://preview.redd.it/ubxzzq9zowe61.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=3d31f0aa2d6067fe96e31fcc6ea1909a886c33fd", "width": 1080, "height": 1350}], "variants": {}, "id": "LuZHFpqqUS5je7O6GItZAgBrhOQBoX5QkNKyA-LAPbA"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 75, "id": "award_9663243a-e77f-44cf-abc6-850ead2cd18d", "penny_donate": 0, "award_sub_type": "PREMIUM", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/SnooClappingPremium_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/SnooClappingPremium_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClappingPremium_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClappingPremium_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClappingPremium_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClappingPremium_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "For an especially amazing showing.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Bravo Grande!", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/59e02tmkl4451_BravoGrande-Static.png?width=16\u0026height=16\u0026auto=webp\u0026s=3459bdf1d1777821a831c5bf9834f4365263fcff", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/59e02tmkl4451_BravoGrande-Static.png?width=32\u0026height=32\u0026auto=webp\u0026s=9181d68065ccfccf2b1074e499cd7c1103aa2ce8", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/59e02tmkl4451_BravoGrande-Static.png?width=48\u0026height=48\u0026auto=webp\u0026s=339b368d395219120abc50d54fb3e2cdcad8ca4f", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/59e02tmkl4451_BravoGrande-Static.png?width=64\u0026height=64\u0026auto=webp\u0026s=de4ebbe92f9019de05aaa77f88810d44adbe1e50", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/59e02tmkl4451_BravoGrande-Static.png?width=128\u0026height=128\u0026auto=webp\u0026s=ba6c1add5204ea43e5af010bd9622392a42140e3", "width": 128, "height": 128}], "icon_format": "APNG", "icon_height": 512, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/59e02tmkl4451_BravoGrande-Static.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 30, "id": "award_b4ff447e-05a5-42dc-9002-63568807cfe6", "penny_donate": null, "award_sub_type": "PREMIUM", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/Illuminati_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/Illuminati_512.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/Illuminati_512.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/Illuminati_512.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/Illuminati_512.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/Illuminati_512.png", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "A glowing commendation for all to see", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "All-Seeing Upvote", "resized_static_icons": [{"url": "https://external-preview.redd.it?width=16\u0026height=16\u0026auto=webp\u0026s=d88c9a453f8ac38850b7a8241cfe5804b7b4905d", "width": 16, "height": 16}, {"url": "https://external-preview.redd.it?width=32\u0026height=32\u0026auto=webp\u0026s=96a25019eb75878bdec4f6c012540f3baffbb1b2", "width": 32, "height": 32}, {"url": "https://external-preview.redd.it?width=48\u0026height=48\u0026auto=webp\u0026s=1a51d27d75afde3fbde8bba84f9338f511211461", "width": 48, "height": 48}, {"url": "https://external-preview.redd.it?width=64\u0026height=64\u0026auto=webp\u0026s=96af5ec460b05669ed60224cb0619bb8884abe27", "width": 64, "height": 64}, {"url": "https://external-preview.redd.it?width=128\u0026height=128\u0026auto=webp\u0026s=2d3e648ed2302e6258673051ca5291f57beb29d4", "width": 128, "height": 128}], "icon_format": "APNG", "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/Illuminati_512.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 300, "id": "award_68ba1ee3-9baf-4252-be52-b808c1e8bdc4", "penny_donate": null, "award_sub_type": "GROUP", "coin_reward": 250, "icon_url": "https://i.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png", "days_of_premium": 0, "tiers_by_required_awardings": {"0": {"resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=16\u0026height=16\u0026auto=webp\u0026s=9c0a85437357b987e50ba727b67fcc53b0950c95", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=32\u0026height=32\u0026auto=webp\u0026s=773692cd146e84fddcc3d192b6ebb7e0ff8fa8bb", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=48\u0026height=48\u0026auto=webp\u0026s=597adeb2d7ab45cc61a726b7c7d6877d264ee33d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=64\u0026height=64\u0026auto=webp\u0026s=886636fb2fc59fc1c9a5e2d05cb3f2e0d42714b6", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=128\u0026height=128\u0026auto=webp\u0026s=28657eedaaa67c90c4b4a97d134fe607bb92c975", "width": 128, "height": 128}], "awardings_required": 0, "static_icon": {"url": "https://i.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png", "width": 2048, "format": null, "height": 2048}, "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=16\u0026height=16\u0026auto=webp\u0026s=9c0a85437357b987e50ba727b67fcc53b0950c95", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=32\u0026height=32\u0026auto=webp\u0026s=773692cd146e84fddcc3d192b6ebb7e0ff8fa8bb", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=48\u0026height=48\u0026auto=webp\u0026s=597adeb2d7ab45cc61a726b7c7d6877d264ee33d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=64\u0026height=64\u0026auto=webp\u0026s=886636fb2fc59fc1c9a5e2d05cb3f2e0d42714b6", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=128\u0026height=128\u0026auto=webp\u0026s=28657eedaaa67c90c4b4a97d134fe607bb92c975", "width": 128, "height": 128}], "icon": {"url": "https://i.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png", "width": 2048, "format": "PNG", "height": 2048}}, "9": {"resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/This_argentium_512.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/This_argentium_512.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/This_argentium_512.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/This_argentium_512.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/This_argentium_512.png", "width": 128, "height": 128}], "awardings_required": 9, "static_icon": {"url": "https://i.redd.it/award_images/t5_q0gj4/ceeqdqlwgqq51_ThisArgentium.jpg", "width": 2048, "format": null, "height": 2048}, "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/ceeqdqlwgqq51_ThisArgentium.jpg?width=16\u0026height=16\u0026auto=webp\u0026s=cc2d64c1d075d5b56c271e18fa12a2065051431b", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ceeqdqlwgqq51_ThisArgentium.jpg?width=32\u0026height=32\u0026auto=webp\u0026s=2c7203ff6dd93cbacb44c22f924fd158711a3329", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ceeqdqlwgqq51_ThisArgentium.jpg?width=48\u0026height=48\u0026auto=webp\u0026s=e5b8f3d232381249734ebd76dd5321d8f291944a", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ceeqdqlwgqq51_ThisArgentium.jpg?width=64\u0026height=64\u0026auto=webp\u0026s=e5cb76cb109d814185fa542e357c5c0e9aa5036b", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ceeqdqlwgqq51_ThisArgentium.jpg?width=128\u0026height=128\u0026auto=webp\u0026s=3359c9a307d45b81b095996d03c4ab512cb098a1", "width": 128, "height": 128}], "icon": {"url": "https://www.redditstatic.com/gold/awards/icon/This_argentium_512.png", "width": 2048, "format": "APNG", "height": 2048}}, "3": {"resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=16\u0026height=16\u0026auto=webp\u0026s=c03d4f83daf03bfc8a4341e2ad6b5a6d3c471cfe", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=32\u0026height=32\u0026auto=webp\u0026s=8a5328341618fe60ccb2b1ddd32561975793204a", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=48\u0026height=48\u0026auto=webp\u0026s=957b055444fd6231afb60b58aa95fe74505554f1", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=64\u0026height=64\u0026auto=webp\u0026s=e4a23a37adf97381673eac6bdd7a52ebc69f8fe4", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=128\u0026height=128\u0026auto=webp\u0026s=092eed0465f28509f0ab7e9a56cdbf826b812555", "width": 128, "height": 128}], "awardings_required": 3, "static_icon": {"url": "https://i.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png", "width": 2048, "format": null, "height": 2048}, "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=16\u0026height=16\u0026auto=webp\u0026s=c03d4f83daf03bfc8a4341e2ad6b5a6d3c471cfe", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=32\u0026height=32\u0026auto=webp\u0026s=8a5328341618fe60ccb2b1ddd32561975793204a", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=48\u0026height=48\u0026auto=webp\u0026s=957b055444fd6231afb60b58aa95fe74505554f1", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=64\u0026height=64\u0026auto=webp\u0026s=e4a23a37adf97381673eac6bdd7a52ebc69f8fe4", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=128\u0026height=128\u0026auto=webp\u0026s=092eed0465f28509f0ab7e9a56cdbf826b812555", "width": 128, "height": 128}], "icon": {"url": "https://i.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png", "width": 2048, "format": "PNG", "height": 2048}}, "6": {"resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/This_platinum_512.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/This_platinum_512.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/This_platinum_512.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/This_platinum_512.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/This_platinum_512.png", "width": 128, "height": 128}], "awardings_required": 6, "static_icon": {"url": "https://i.redd.it/award_images/t5_q0gj4/yx7ed010fqq51_ThisPlatinum.png", "width": 2048, "format": null, "height": 2048}, "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/yx7ed010fqq51_ThisPlatinum.png?width=16\u0026height=16\u0026auto=webp\u0026s=76f2f547bdbbf86d19102099ccc024277c7673ef", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/yx7ed010fqq51_ThisPlatinum.png?width=32\u0026height=32\u0026auto=webp\u0026s=3cc88e042abbb716b059f9f3c2d58b8667fc5e03", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/yx7ed010fqq51_ThisPlatinum.png?width=48\u0026height=48\u0026auto=webp\u0026s=63ce35d010ce32d32a15d792a32cba39f7b95519", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/yx7ed010fqq51_ThisPlatinum.png?width=64\u0026height=64\u0026auto=webp\u0026s=ddb817cacf22f2ee855e7263445b8613e8f2a718", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/yx7ed010fqq51_ThisPlatinum.png?width=128\u0026height=128\u0026auto=webp\u0026s=39ff319c1aab711b02f581a4b36ecf2663c72463", "width": 128, "height": 128}], "icon": {"url": "https://www.redditstatic.com/gold/awards/icon/This_platinum_512.png", "width": 2048, "format": "APNG", "height": 2048}}}, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=16\u0026height=16\u0026auto=webp\u0026s=9c0a85437357b987e50ba727b67fcc53b0950c95", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=32\u0026height=32\u0026auto=webp\u0026s=773692cd146e84fddcc3d192b6ebb7e0ff8fa8bb", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=48\u0026height=48\u0026auto=webp\u0026s=597adeb2d7ab45cc61a726b7c7d6877d264ee33d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=64\u0026height=64\u0026auto=webp\u0026s=886636fb2fc59fc1c9a5e2d05cb3f2e0d42714b6", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=128\u0026height=128\u0026auto=webp\u0026s=28657eedaaa67c90c4b4a97d134fe607bb92c975", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": 3, "description": "THIS right here! Join together to give multiple This awards and see the award evolve in its display and shower benefits for the recipient. For every 3 This awards given to a post or comment, the author will get 250 coins.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "This", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=16\u0026height=16\u0026auto=webp\u0026s=9c0a85437357b987e50ba727b67fcc53b0950c95", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=32\u0026height=32\u0026auto=webp\u0026s=773692cd146e84fddcc3d192b6ebb7e0ff8fa8bb", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=48\u0026height=48\u0026auto=webp\u0026s=597adeb2d7ab45cc61a726b7c7d6877d264ee33d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=64\u0026height=64\u0026auto=webp\u0026s=886636fb2fc59fc1c9a5e2d05cb3f2e0d42714b6", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=128\u0026height=128\u0026auto=webp\u0026s=28657eedaaa67c90c4b4a97d134fe607bb92c975", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 500, "id": "gid_2", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 100, "icon_url": "https://www.redditstatic.com/gold/awards/icon/gold_512.png", "days_of_premium": 7, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/gold_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Gives 100 Reddit Coins and a week of r/lounge access and ad-free browsing.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Gold", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/gold_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/gold_512.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 150, "id": "award_f44611f1-b89e-46dc-97fe-892280b13b82", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Thank you stranger. Shows the award.", "end_date": null, "subreddit_coin_reward": 0, "count": 7, "static_icon_height": 2048, "name": "Helpful", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 125, "id": "award_5f123e3d-4f48-42f4-9c11-e98b566d5897", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When you come across a feel-good thing.", "end_date": null, "subreddit_coin_reward": 0, "count": 8, "static_icon_height": 2048, "name": "Wholesome", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "gid_1", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Shows the Silver Award... and that's it.", "end_date": null, "subreddit_coin_reward": 0, "count": 16, "static_icon_height": 512, "name": "Silver", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "award_19860e30-3331-4bac-b3d1-bd28de0c7974", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=16\u0026height=16\u0026auto=webp\u0026s=4e50438bd2d72ae5398e839ac2bdcccf323fca79", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=32\u0026height=32\u0026auto=webp\u0026s=e730f68de038499700c6301470812c29ef6a8555", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=48\u0026height=48\u0026auto=webp\u0026s=8d7c7fa22e6ff3b1b0a347839e42f493eb5f6cbc", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=64\u0026height=64\u0026auto=webp\u0026s=11ec2a72e2724017bb8479639edce8a7f2ba64f4", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=128\u0026height=128\u0026auto=webp\u0026s=1e936ae571e89abb5a5aaa2efd2d7cfb0ed1b537", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "I needed this today", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Heartwarming", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=16\u0026height=16\u0026auto=webp\u0026s=4e50438bd2d72ae5398e839ac2bdcccf323fca79", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=32\u0026height=32\u0026auto=webp\u0026s=e730f68de038499700c6301470812c29ef6a8555", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=48\u0026height=48\u0026auto=webp\u0026s=8d7c7fa22e6ff3b1b0a347839e42f493eb5f6cbc", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=64\u0026height=64\u0026auto=webp\u0026s=11ec2a72e2724017bb8479639edce8a7f2ba64f4", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=128\u0026height=128\u0026auto=webp\u0026s=1e936ae571e89abb5a5aaa2efd2d7cfb0ed1b537", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 80, "id": "award_8352bdff-3e03-4189-8a08-82501dd8f835", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Everything is better with a good hug", "end_date": null, "subreddit_coin_reward": 0, "count": 17, "static_icon_height": 2048, "name": "Hugz", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 50, "id": "award_80d4d339-95d0-43ac-b051-bc3fe0a9bab8", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/0mxct3p878361_WearingIsCaringElf.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/0mxct3p878361_WearingIsCaringElf.png?width=16\u0026height=16\u0026auto=webp\u0026s=0349ceebb30e25e913f1ebc8cde78807d2f94cfe", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/0mxct3p878361_WearingIsCaringElf.png?width=32\u0026height=32\u0026auto=webp\u0026s=07cc6b9c14c3755605148f2240ac582a44a78596", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/0mxct3p878361_WearingIsCaringElf.png?width=48\u0026height=48\u0026auto=webp\u0026s=d89451c2145881c3d525a6b78742a11546feea3c", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/0mxct3p878361_WearingIsCaringElf.png?width=64\u0026height=64\u0026auto=webp\u0026s=1513567b75db31adff4e4a7a157e6cab8a3e41ad", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/0mxct3p878361_WearingIsCaringElf.png?width=128\u0026height=128\u0026auto=webp\u0026s=234cb3d8f90476a6e38e2105c52f0f7281585176", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Keep the community and yourself healthy and happy.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Wearing is Caring", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/0mxct3p878361_WearingIsCaringElf.png?width=16\u0026height=16\u0026auto=webp\u0026s=0349ceebb30e25e913f1ebc8cde78807d2f94cfe", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/0mxct3p878361_WearingIsCaringElf.png?width=32\u0026height=32\u0026auto=webp\u0026s=07cc6b9c14c3755605148f2240ac582a44a78596", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/0mxct3p878361_WearingIsCaringElf.png?width=48\u0026height=48\u0026auto=webp\u0026s=d89451c2145881c3d525a6b78742a11546feea3c", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/0mxct3p878361_WearingIsCaringElf.png?width=64\u0026height=64\u0026auto=webp\u0026s=1513567b75db31adff4e4a7a157e6cab8a3e41ad", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/0mxct3p878361_WearingIsCaringElf.png?width=128\u0026height=128\u0026auto=webp\u0026s=234cb3d8f90476a6e38e2105c52f0f7281585176", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/0mxct3p878361_WearingIsCaringElf.png"}], "awarders": [], "media_only": false, "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": null, "show_media": true, "description": "[Rules](https://www.reddit.com/r/pics/wiki/index)\n\n1. No screenshots or pics where the only focus is a screen. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_1_-_no_screenshots)\n\n2. No pictures with added or superimposed digital text. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_2_-_no_digital_elements)\n\n3. No porn or gore. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_3_-_no_porn.2Fgore)\n\n4. No personal information, direct links to any social media, subreddit-related meta-drama, witch-hunts or missing/found posts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_4_-_no_doxing.2Fwitch_hunts)\n\n5. All titles must follow title rules. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/titles)\n\n6. Submissions are only allowed from one of the approved image hosts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_6_-_only_allowed_image_hosts) \n\n7. No gifs or videos. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_7_-_no_gifs)\n\n8. Comments must be civil. Any racism, bigotry, or any other kind of hate speech is strictly prohibited and will result in a ban. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_8_-_civility)\n\n9. No submissions featuring before-and-after depictions of personal health progress or achievement. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_9_-_no_progress_pics)\n\n10. No false claims of ownership (FCoO) or flooding. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_10_-_no_fcoo.2Fflooding)\n\n11. Reposts of images on the front page, or within the set limit of /r/pics/top, will be removed. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_11_-_repost_limitations)\n\n12. Normal users are allowed only one self-promotional link per post. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_12_-_limited_self-promotion)\n\n---\n\n[Additional/Temporary Rules](https://www.reddit.com/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* From January 14, 2020 until February 14, 2020, we will not allow political shitposts or political karmawhoring. [details\u003E\u003E](/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* Serial reposters may be filtered or banned. \n\n* We prefer that new users post original content and not common pictures from the internet.\n\n* All posts by new users require mod approval in order to weed out spammers. \n\n* Please mark spoilers for current movies/games/books with spoiler tags. \n\n---\n\nIf you want a picture that belongs to you to be removed from /r/pics then please file a copyright notice [here](https://reddit.zendesk.com/hc/en-us/requests/new?ticket_form_id=73465).\n\n---\n\nClick [here](https://www.reddit.com/r/pics/wiki/links) to find more specialized picture subreddits", "user_is_muted": false, "display_name": "pics", "header_img": "https://b.thumbs.redditmedia.com/1zT3FeN8pCAFIooNVuyuZ0ObU0x1ro4wPfArGHl3KjM.png", "title": "Reddit Pics", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "#ffffff", "icon_img": "https://b.thumbs.redditmedia.com/VZX_KQLnI1DPhlEZ07bIcLzwR1Win808RIt7zm49VIQ.png", "icon_color": "", "submit_link_label": "Submit an image", "header_size": [160, 64], "restrict_commenting": false, "subscribers": 26711137, "submit_text_label": "", "link_flair_position": "left", "display_name_prefixed": "r/pics", "key_color": "#222222", "name": "t5_2qh0u", "created": 1201249869.0, "url": "/r/pics/", "quarantine": false, "created_utc": 1201221069.0, "banner_size": null, "user_is_contributor": false, "public_description": "A place for pictures and photographs.", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2qh0u", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "la9n3r", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "ydr2020", "discussion_type": null, "num_comments": 578, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/pics/comments/la9n3r/threshold_36x24_oil_on_linen_canvas_artist_damian/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/ubxzzq9zowe61.jpg", "subreddit_subscribers": 26711137, "created_utc": 1612202747.0, "num_crossposts": 4, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "mildlyinfuriating", "selftext": "", "author_fullname": "t2_r8hot", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "Received my absentee ballot today. Can't wait to vote!", "link_flair_richtext": [], "subreddit_name_prefixed": "r/mildlyinfuriating", "hidden": false, "pwls": 6, "link_flair_css_class": null, "downs": 0, "thumbnail_height": 105, "top_awarded_type": null, "hide_score": false, "name": "t3_lamdrc", "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 0.99, "author_flair_background_color": null, "ups": 1162, "total_awards_received": 1, "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": null, "can_mod_post": false, "score": 1162, "approved_by": null, "author_premium": false, "thumbnail": "https://b.thumbs.redditmedia.com/qIy3RAUlEXlZsX9LUxvyT7oCMSoEMaQDS51oUQJSVSo.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-0c2fc51946b39365a.wss.redditmedia.com/link/lamdrc?m=AQAA9l4aYI2EiVz7xnL-1NcfIpwYdFEhUN45Tu2UWKZVt9F5QanE", "gildings": {}, "post_hint": "image", "content_categories": null, "is_self": false, "subreddit_type": "public", "created": 1612265546.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "domain": "i.redd.it", "allow_live_comments": false, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/ab3805o2ize61.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/ab3805o2ize61.jpg?auto=webp\u0026s=7dce207255a497065c66db5cc726a8c5304113a9", "width": 4032, "height": 3024}, "resolutions": [{"url": "https://preview.redd.it/ab3805o2ize61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=56a46e3c2edf83f608c600f84982ec9f39aac5be", "width": 108, "height": 81}, {"url": "https://preview.redd.it/ab3805o2ize61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=88f4eb708738dea86827f90f7f01569519f0d68f", "width": 216, "height": 162}, {"url": "https://preview.redd.it/ab3805o2ize61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=b45162ad223dca1d01d36cfba41cc596cf1cbff8", "width": 320, "height": 240}, {"url": "https://preview.redd.it/ab3805o2ize61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=fcf48aff581cfc307c2d892ec211a4608295d964", "width": 640, "height": 480}, {"url": "https://preview.redd.it/ab3805o2ize61.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=a3c7e8349840eddf8f772a1154412464c945132e", "width": 960, "height": 720}, {"url": "https://preview.redd.it/ab3805o2ize61.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=d959a3508fed4b32924c0b6a18b6ebdfe4917118", "width": 1080, "height": 810}], "variants": {}, "id": "l6Hag41j2K5Op74Vujj7IcpcQ1aRi-HOWyp_dpYyHkE"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 150, "id": "award_f44611f1-b89e-46dc-97fe-892280b13b82", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Thank you stranger. Shows the award.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Helpful", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png"}], "awarders": [], "media_only": false, "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": "https://styles.redditmedia.com/t5_2ubgg/styles/communityIcon_lkxajjefezh51.png?width=256\u0026s=7bb81fe43583d4a482979e0e54e1c14ef94ac580", "show_media": true, "description": "\u003E[](https://td.reddit.com/r/mildlyinfuriating/#image)\n[Enter mildyinfuriating \u0026nbsp; \u0026nbsp;( \u0361\u00b0 \u035c\u0296 \u0361\u00b0)](https://td.reddit.com/r/mildlyinfuriating/#button)\n\nIs your day filled with midly infuriating problems? You came to the right place then.\n\n**Rules**:\n\n1) [No Memes or \"meme-like\" image macros.](http://www.reddit.com/r/mildlyinfuriating/comments/1exsuk/meta_modpost_new_rule_see_inside_for_details/) No Memes or \"meme-like\" image macros. These include overdone references in the title (e.g. \u201cbanana for scale\u201d, \u201cpotato quality\u201d, and so on).\n\n8) Content requirements:\n\n* a) Please try to post original content. Reposts or crossposts of someone else's content will be removed if it has been posted on Reddit within the past 6 months. At the moderator's discretion, content posted without the author's original consent or without linking to an original source will also be removed.\n* b) No GIFs that end slightly before something happens ([Example](http://i.imgur.com/Lq6m5QY.gifv))\n* c) Unn^ecessarily overdone ^text, ar\u0026rarr;rows, scribbles, or substantive edits over the original content are not allowed.\n* d) No posting surveys - posts about surveys are allowed, however bear in mind they are often overdone.\n* f) Blur out any personal information. (Full names, phone numbers, license plates etc.)\n* f) Try and keep meta submissions to a minimum. Any meta submission is subject to removal at any time.\n* g) No political posts whatsoever, no matter how harmless it seems.\n\n4) Following Reddiquette is recommended. Following the rules of Reddit is a must.\n\n5) No grandstanding, soapboxing, or pushing any agendas. This includes posts that could be, within reason, regarded as politically, sexually, racially, or socially inappropriate or unnecessary. ([Example](https://i.imgur.com/Um3eIs7.jpg))\n\n6) When posting links to reddit in comments, please use ^[np.reddit.com](np.reddit.com) formatting in order to prevent brigading.\n\nThese rules are **subject to the moderator's discretion**, and can change at any time. A full, in-dpeth explanation can be found in the wiki [here](https://www.reddit.com/r/mildlyinfuriating/about/rules).\n\n*Repeated violation of rules may result in banning*\n\n3) Added emphasis on rule 8g: NO POLITICS\n\n7) /u/dnanf may post whatever he wants, even if it's shit. It is your duty as a good redditor to upvote his posts.\n\n\n\n\n**The Mild Network:**\n\n* /r/MildlyAmusing\n\n* /r/MildlyAwesome\n\n* r/MildlyAww\n\n* /r/MildlyBestOf\n\n* /r/MildlyConfusing\n\n* /r/MildlyCreepy\n\n* r/MildlyDangerous\n\n* /r/MildlyDepressing\n\n* /r/MildlyDisgusting\n\n* /r/MildlyDisturbing\n\n* /r/MildlyEnteristing\n\n* /r/MildlyImpressive\n\n* /r/MildlyMotivated\n\n* /r/MildlyInteresting\n\n* r/MildlyInterestingIAmA\n\n* /r/MildlyInterestingMC (Minecraft)\n\n* /r/MildlyMetal \n\n* /r/MildlyOffensive\n\n* /r/MildlyPleasing\n\n* /r/MildlySatisfying\n\n* /r/MildlyStartledCats \n\n* r/MildlyStupid\n\n* /r/MildlyUninteresting\n\n* /r/MildlyWeird\n\n* /r/MildlyWTF\n\n**Our Friends:**\n\n* /r/gifsthatendtoosoon **NEW: Please post gifs that end too soon in that sub, instead of here.**\n\n* /r/QuestionCollege **NEW**\n\n* /r/UnnecessaryQuotes\n\n* /r/PerfectFit\n\n* /r/FakeRedditNews\n\n* /r/OddlySatisfying\n\n* /r/SlightlyUnsatisfying\n\n* /r/FunnyAndSad\n\n* r/Today_I_Realized\n\n* /r/WellThatSucks \n\n* /r/BadParking \n\n* r/BloodFueledRage\n\n* /r/Rage\n\n* /r/Infuriating\n\n* /r/Amusing\n\n* /r/BenignExistence\n\n* /r/CasualIAmA\n\n* /r/InterestingAnecdote\n\n* /r/GrindsMyGears\n\n* /r/HowToNotGiveaFuck\n\n* /r/NotQuiteWTF\n\n* /r/Onejob\n\n* /r/Vastlystupid \n\n* /r/PleaseJustStop \n\n* /r/BadYTAds \n\n[More mildly related subreddits](http://www.reddit.com/r/mildlyinteresting/comments/zytpk/list_of_similar_subreddits_and_mild_network/)\n\n[Click Here](http://www.reddit.com/r/mildlyinfuriating/comments/17nzkh/meta_announcement_new_flair_options/) for details about flair!\n\n\n##[New Posts](http://www.reddit.com/r/mildlyinfuriating/new)##\n\n\n[](/r/simulated 'This is the best /r/simulated has to offer')\n\n[](https://www.reddit.com/r/mildlyinfuriating/comments/dzlehu/congrats_on_2_million_here_is_the_double#sidebar)\n\n[test](#ad1)\n\njukmifgguggh\n\n[\ud83d\udcb0\ud83d\udcb0\ud83d\udcb0 Nothing\ud83d\udcb8is\ud83d\udcb8more\ud83d\udcb8infuriating\ud83d\udcb8than\ud83d\udcb8restricted\ud83d\udcb8internet \ud83d\udcb0\ud83d\udcb0\ud83d\udcb0](https://www.battleforthenet.com/ \"COME ON!! CLICK IT! DOOOOOO ITTTTTT\")\n\n[](https://redd.it/82yfzr \"What are you doing over there?\")\n\n[](#youtube-footer)", "user_is_muted": false, "display_name": "mildlyinfuriating", "header_img": "https://b.thumbs.redditmedia.com/rmlXC779KUA2MTO4r_GJd2enqa8GKx3BOasymol6gLk.png", "title": "jukmifgguggh", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "", "icon_img": "https://b.thumbs.redditmedia.com/6EKfzU5PYmvE4USNgMZaBR6iCS5NnJ3YFTkZyPbXnZM.png", "icon_color": "", "submit_link_label": "Submit your mild infuriation jukmifgguggh", "header_size": [73, 81], "restrict_commenting": false, "subscribers": 3183066, "submit_text_label": "", "link_flair_position": "right", "display_name_prefixed": "r/mildlyinfuriating", "key_color": "#ff8717", "name": "t5_2ubgg", "created": 1339990463.0, "url": "/r/mildlyinfuriating/", "quarantine": false, "created_utc": 1339961663.0, "banner_size": null, "user_is_contributor": false, "public_description": "A place to post the most midly infuriating things!\n\n\u0026nbsp;\n\n.\n\norder corn", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2ubgg", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "lamdrc", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "dancingbriefcase", "discussion_type": null, "num_comments": 37, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/mildlyinfuriating/comments/lamdrc/received_my_absentee_ballot_today_cant_wait_to/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/ab3805o2ize61.jpg", "subreddit_subscribers": 3183066, "created_utc": 1612236746.0, "num_crossposts": 0, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "TheLastAirbender", "selftext": "", "author_fullname": "t2_3ju0y7aj", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "Hey you, you've done enough scrolling. Here's a baby Appa to calm your spirits", "link_flair_richtext": [{"e": "text", "t": "Image"}], "subreddit_name_prefixed": "r/TheLastAirbender", "hidden": false, "pwls": 6, "link_flair_css_class": "image", "downs": 0, "thumbnail_height": 105, "top_awarded_type": null, "hide_score": false, "name": "t3_la82g1", "quarantine": false, "link_flair_text_color": "light", "upvote_ratio": 0.96, "author_flair_background_color": null, "ups": 19315, "domain": "i.redd.it", "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": "Image", "can_mod_post": false, "score": 19315, "approved_by": null, "author_premium": false, "thumbnail": "https://b.thumbs.redditmedia.com/Bv9fE-yDKlFCht4qG_jLgC8zsmTbO7sEuM70ckWk16s.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-078adc7cb2099a9df.wss.redditmedia.com/link/la82g1?m=AQAA9l4aYF2A8p3RX7qT4SYaoC59f7kGrtWk_6owZx2SgCi4QJdk", "gildings": {"gid_1": 8}, "post_hint": "image", "content_categories": null, "is_self": false, "subreddit_type": "public", "created": 1612227837.0, "link_flair_type": "richtext", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "total_awards_received": 42, "allow_live_comments": true, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/t6tf7fkxdwe61.png", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/t6tf7fkxdwe61.png?auto=webp\u0026s=544d3da4de1a9251f6f92748e28fab4f16396dfd", "width": 333, "height": 250}, "resolutions": [{"url": "https://preview.redd.it/t6tf7fkxdwe61.png?width=108\u0026crop=smart\u0026auto=webp\u0026s=9431f2edb6f3b91e5a49c957d40df9391b9ec576", "width": 108, "height": 81}, {"url": "https://preview.redd.it/t6tf7fkxdwe61.png?width=216\u0026crop=smart\u0026auto=webp\u0026s=45c3eeb431760ff9f1f3624c9f6ce3f4b8d731c4", "width": 216, "height": 162}, {"url": "https://preview.redd.it/t6tf7fkxdwe61.png?width=320\u0026crop=smart\u0026auto=webp\u0026s=fc4c0c035e77da4012da95a7bd5847f1d4e94995", "width": 320, "height": 240}], "variants": {}, "id": "Msh_4bZeJCNK8anjtuIQELR00Drj2yMjvpB63Qmq3FU"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 150, "id": "award_f44611f1-b89e-46dc-97fe-892280b13b82", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Thank you stranger. Shows the award.", "end_date": null, "subreddit_coin_reward": 0, "count": 14, "static_icon_height": 2048, "name": "Helpful", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 125, "id": "award_5f123e3d-4f48-42f4-9c11-e98b566d5897", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When you come across a feel-good thing.", "end_date": null, "subreddit_coin_reward": 0, "count": 5, "static_icon_height": 2048, "name": "Wholesome", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "gid_1", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Shows the Silver Award... and that's it.", "end_date": null, "subreddit_coin_reward": 0, "count": 8, "static_icon_height": 512, "name": "Silver", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 80, "id": "award_8352bdff-3e03-4189-8a08-82501dd8f835", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Everything is better with a good hug", "end_date": null, "subreddit_coin_reward": 0, "count": 14, "static_icon_height": 2048, "name": "Hugz", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 50, "id": "award_02d9ab2c-162e-4c01-8438-317a016ed3d9", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=16\u0026height=16\u0026auto=webp\u0026s=045db73f47a9513c44823d132b4c393ab9241b6a", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=32\u0026height=32\u0026auto=webp\u0026s=298a02e0edbb5b5e293087eeede63802cbe1d2c7", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=48\u0026height=48\u0026auto=webp\u0026s=7d06d606eb23dbcd6dbe39ee0e60588c5eb89065", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=64\u0026height=64\u0026auto=webp\u0026s=ecd9854b14104a36a210028c43420f0dababd96b", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=128\u0026height=128\u0026auto=webp\u0026s=0d5d7b92c1d66aff435f2ad32e6330ca2b971f6d", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "I'm in this with you.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Take My Energy", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=16\u0026height=16\u0026auto=webp\u0026s=045db73f47a9513c44823d132b4c393ab9241b6a", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=32\u0026height=32\u0026auto=webp\u0026s=298a02e0edbb5b5e293087eeede63802cbe1d2c7", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=48\u0026height=48\u0026auto=webp\u0026s=7d06d606eb23dbcd6dbe39ee0e60588c5eb89065", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=64\u0026height=64\u0026auto=webp\u0026s=ecd9854b14104a36a210028c43420f0dababd96b", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=128\u0026height=128\u0026auto=webp\u0026s=0d5d7b92c1d66aff435f2ad32e6330ca2b971f6d", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png"}], "awarders": [], "media_only": false, "link_flair_template_id": "1bb4d5f8-c9ad-11e8-8a67-0e3b561b1856", "sr_detail": {"default_set": true, "banner_img": "https://b.thumbs.redditmedia.com/4npNKJLWXF3xJVbv_7rXwLCcwGtQ0iz9DfEsQWsu0lg.png", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": "https://styles.redditmedia.com/t5_2rybx/styles/communityIcon_lnbbgyo7gyz41.png?width=256\u0026s=2fca7035d096f7d807bcd1c93f005e8e0d404724", "show_media": true, "description": "###NEWS\n* [Our Subreddit Rewatch of ATLA has begun](https://www.reddit.com/r/TheLastAirbender/comments/gjxrey/atla_rewatch_2020_announcement_hub/)\n* [Guide to Upcoming Content](https://www.reddit.com/r/TheLastAirbender/comments/cszn3k/guide_to_upcoming_avatar_content/)\n* [A standalone Katara focused graphic novel releasing Oct 2020](https://www.reddit.com/r/TheLastAirbender/comments/fm4baj/katara_and_the_pirates_silver_a_standalone/)\n* Netflix announced the creation of a [live action re-imagining of ATLA](https://www.reddit.com/r/ATLAtv/comments/fxtkki/netflixs_liveaction_atla_series_overview/).\n* [Shadow of Kyoshi novel releases July](https://www.reddit.com/r/Avatar_Kyoshi/comments/egdk6i/shadow_of_kyoshi_what_we_know_so_far/)\n* ATLA Returns to US Netflix May 15th\n\n\n###RULES\n* [Full subreddit rules](http://www.reddit.com/r/TheLastAirbender/about/rules)\n* Check out our [FAQ](https://www.reddit.com/r/TheLastAirbender/comments/d8ohvc/faqsguidesresources_mega_hub/) before posting\n* No blatant reposts! Use the search function before posting\n* Do not request/post non-official stream/download links for any episodes or comics.\n* Do not post links to/images from leaked comic content. \n* SFW posts only\n* Memes must feature avatar characters (as in images of them) **AND** be related to avatar. \n\n\n###SPOILERS\n\n**Posting spoilers**\n\n* No spoilers in titles.\n* [**Official spoiler stance**](https://www.reddit.com/r/TheLastAirbender/comments/7myl6k/200k_subscribers_new_spoiler_rules/)\n\n**Commenting spoilers**\n\n` \u003E!Azula kills Dumbledore!\u003C`\n\nwill become\n\n \u003E!Azula kills Dumbledore!\u003C\n\n###LINKS\n* [Episode and comic discussions](http://www.reddit.com/r/TheLastAirbender/wiki/episodediscussions)\n* [Crew Social Media Accounts](https://www.reddit.com/r/TheLastAirbender/comments/cb4lis/crew_social_media_accounts/)\n* [Avatar Wiki](http://avatar.wikia.com/wiki/Avatar_Wiki)\n* [Legend of Korra Timelapse](https://www.reddit.com/r/TheLastAirbender/wiki/timelapse)\n* [List of shows similar to ATLA/LOK](https://www.reddit.com/r/TheLastAirbender/comments/e4yv2q/okay_i_rewatched_avatar_and_watched_the_dragon/f9g8708/?context=3) \n* [Discord](discord.gg/avatar) \n\n###EVENTS BETWEEN ATLA AND LOK\n\nThere are several main comics which take place shortly after ATLA. They build towards LoK and answer some questions left at the end of ATLA. Check the FAQ for more details.\n\n- [The Promise](http://www.amazon.com/Avatar-The-Last-Airbender-Promise/dp/1616550740) - (Part [1](http://www.amazon.com/Avatar-Last-Airbender-Promise-Part/dp/1595828117), [2](http://www.amazon.com/Avatar-Last-Airbender-Promise-Part/dp/1595828753), \u0026 [3](http://www.amazon.com/Avatar-Last-Airbender-Promise-Part/dp/1595829415)).\n- [The Search](http://www.amazon.com/Avatar-The-Last-Airbender-Search/dp/1616552263) - (Part [1](http://www.amazon.com/Avatar-Last-Airbender-Search-Part/dp/1616550546), [2](http://www.amazon.com/Avatar-Last-Airbender-Search-Part/dp/1616551909) \u0026 [3](http://www.amazon.com/Avatar-Last-Airbender-Search-Part/dp/1616551844)).\n- [The Rift](http://www.amazon.com/Avatar-Last-Airbender-Library-Edition/dp/1616555505) - (Part [1](http://www.amazon.com/Avatar-Last-Airbender-Rift-Part/dp/1616552956), [2](http://www.amazon.com/Avatar-Last-Airbender-Rift-Part/dp/1616552964) \u0026 [3](http://www.amazon.com/Avatar-Last-Airbender-Rift-Part/dp/1616552972)).\n- [Smoke and Shadow](https://www.amazon.com/Avatar-Last-Airbender--Smoke-Shadow-Library/dp/1506700136/ref=sr_1_1?ie=UTF8\u0026qid=1468268967\u0026sr=8-1\u0026keywords=smoke+and+shadow) - (Part [1](https://www.amazon.com/Avatar-Last-Airbender-Smoke-Shadow/dp/1616557613/ref=sr_1_3?ie=UTF8\u0026qid=1468268967\u0026sr=8-3\u0026keywords=smoke+and+shadow), [2](https://www.amazon.com/Avatar-Last-Airbender-Smoke-Shadow/dp/1616557907/ref=sr_1_4?ie=UTF8\u0026qid=1468268967\u0026sr=8-4\u0026keywords=smoke+and+shadow) \u0026 [3](https://www.amazon.com/Avatar-Last-Airbender-Smoke-Shadow-Three/dp/1616558385/ref=sr_1_2?ie=UTF8\u0026qid=1468268967\u0026sr=8-2\u0026keywords=smoke+and+shadow)).\n- [North and South](https://www.amazon.com/Avatar-Last-Airbender-North-South-Library/dp/1506701957) - (Part [1](https://www.amazon.com/Avatar-Last-Airbender-North-South-Part/dp/1506700225), [2](https://www.amazon.com/Avatar-Last-Airbender-North-South-Part/dp/1506701299) \u0026 [3](https://www.amazon.com/Avatar-Last-Airbender-North-South-Three/dp/1506701302)).\n- [Imbalance](https://www.amazon.com/Avatar-Airbender-Imbalance-Faith-Erin-Hicks/dp/1506708129) - (Part [1](https://www.amazon.com/Avatar-Last-Airbender-Imbalance-Part-One/dp/1506704891), [2](https://www.amazon.com/Avatar-Last-Airbender-Imbalance-Part-Two/dp/1506706525) \u0026 [3](https://www.amazon.com/Avatar-Last-Airbender-Imbalance-Part-Three/dp/1506708137))\n\n###EVENTS AFTER LOK\n\n- [Turf Wars](https://www.amazon.com/Legend-Korra-Turf-Wars-Library/dp/1506702023) (Part [1](https://www.amazon.com/Legend-Korra-Turf-Wars-Part/dp/1506700152/), [2](https://www.amazon.com/Legend-Korra-Turf-Wars-Part/dp/1506700403/) \u0026 [3](https://www.amazon.com/Legend-Korra-Turf-Wars-Three/dp/150670185X/))\n- [Ruins of The Empire](https://www.amazon.com/Legend-Korra-Ruins-Empire-Library/dp/1506708935) (Part [1](https://www.amazon.com/Legend-Korra-Ruins-Empire-Part/dp/1506708943), [2](https://www.amazon.com/Legend-Korra-Ruins-Empire-Part/dp/1506708951), \u0026 [3](https://www.amazon.com/Legend-Korra-Ruins-Empire-Three/dp/150670896X))\n\n###Avatar Community Network\n\n^These ^avatar ^themed ^subreddits ^are ^fully ^or ^partially ^run ^by ^moderators ^of ^/r/TheLastAirbender \n\n* /r/legendofkorra \n* /r/ATLA \n* /r/AvatarMemes \n* /r/bending\n* /r/korrasami\n* /r/BendingWallpapers \n* /r/Avatar_Kyoshi (novels)\n* /r/ATLAtv (live-action series)\n* /r/ProBendingArena (table-top game)\n\n\n###Related Subreddits\n* /r/LakeLaogai *What movie?*\n* /r/TheDragonPrince - TV series by the head writer of ATLA\n* /r/cartoons \n* /r/NeverPauseAvatar\n* /r/AvatarVsBattles \n* /r/UnexpectedAvatar \n* /r/BoomerangSquad\n* /r/Iroh\n* /r/AvatarTheories\n\n###Shipping Subreddits\n* /r/sukka\n* /r/Kataang\n* /r/Tokka\n* /r/ZutaraNation\n* /r/Rangshi\n\n\n###Community\n\nThe Minecraft server IP is AvatarMC.com, more info [here](http://AvatarMC.com/). Server is community run.", "user_is_muted": false, "display_name": "TheLastAirbender", "header_img": "https://a.thumbs.redditmedia.com/A3rf2dDGNCQr5IkZKKmnn6HFgtaGS-wOyXBJRBHkNz4.png", "title": "The Last Airbender", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "#333333", "icon_img": "https://b.thumbs.redditmedia.com/7BBF5u_aOIeVPYLKLoZjvST_uyhnQNyHuwQ7PrXusHs.png", "icon_color": "", "submit_link_label": "", "header_size": [60, 87], "restrict_commenting": false, "subscribers": 914603, "submit_text_label": "", "link_flair_position": "left", "display_name_prefixed": "r/TheLastAirbender", "key_color": "#222222", "name": "t5_2rybx", "created": 1279778050.0, "url": "/r/TheLastAirbender/", "quarantine": false, "created_utc": 1279749250.0, "banner_size": [1280, 384], "user_is_contributor": false, "public_description": "The subreddit for fans of Avatar: The Last Airbender, The Legend of Korra, the comics, the upcoming Netflix live action ATLA series, novels, games, and all other Avatar content.", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2rybx", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "#ff4719", "id": "la82g1", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "Mysterkiddo", "discussion_type": null, "num_comments": 59, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/TheLastAirbender/comments/la82g1/hey_you_youve_done_enough_scrolling_heres_a_baby/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/t6tf7fkxdwe61.png", "subreddit_subscribers": 914603, "created_utc": 1612199037.0, "num_crossposts": 1, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "pics", "selftext": "", "author_fullname": "t2_9h8x5x9s", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "A picture of me and my friends", "link_flair_richtext": [], "subreddit_name_prefixed": "r/pics", "hidden": false, "pwls": 6, "link_flair_css_class": null, "downs": 0, "thumbnail_height": 140, "top_awarded_type": null, "hide_score": false, "name": "t3_lak7ao", "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 0.9, "author_flair_background_color": null, "ups": 2062, "total_awards_received": 1, "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": null, "can_mod_post": false, "score": 2062, "approved_by": null, "author_premium": false, "thumbnail": "https://b.thumbs.redditmedia.com/9C8bs-iJxkomDY3cNyUo77ZiHHsh0gqHRWw91rtYliM.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-050dfc90c26c1b964.wss.redditmedia.com/link/lak7ao?m=AQAA9l4aYHJ6gJ1WUAhBWEUDeDieloBrxe89QS2wJ5r2_7rPUj5d", "gildings": {"gid_1": 1}, "post_hint": "image", "content_categories": ["photography"], "is_self": false, "subreddit_type": "public", "created": 1612258631.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "domain": "i.redd.it", "allow_live_comments": false, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/90tihkyexye61.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/90tihkyexye61.jpg?auto=webp\u0026s=3c5a6aab71053f0451bc130017b43ea5ac09c0fe", "width": 3456, "height": 4608}, "resolutions": [{"url": "https://preview.redd.it/90tihkyexye61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=1994c66755483ca22aefeb30be802fa600d9392b", "width": 108, "height": 144}, {"url": "https://preview.redd.it/90tihkyexye61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=15aeec41593977165ad35f676e2d542d39626341", "width": 216, "height": 288}, {"url": "https://preview.redd.it/90tihkyexye61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=4230e8263491c69b72bcb7e8426c1360b5a847e3", "width": 320, "height": 426}, {"url": "https://preview.redd.it/90tihkyexye61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=9b988d61288d241ef9f1ecf2cb5b6ad751d6d915", "width": 640, "height": 853}, {"url": "https://preview.redd.it/90tihkyexye61.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=a86e67142d2c5d0dce0b924bfbf16a1b7c0191d2", "width": 960, "height": 1280}, {"url": "https://preview.redd.it/90tihkyexye61.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=3245fd651ecd568ced3fa3acf3682d6f190ff281", "width": 1080, "height": 1440}], "variants": {}, "id": "l5lKOpSRHq_GpVRGpG4FTI7eEWk1WjBtfRPaZdOQrPM"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "gid_1", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Shows the Silver Award... and that's it.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Silver", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png"}], "awarders": [], "media_only": false, "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": null, "show_media": true, "description": "[Rules](https://www.reddit.com/r/pics/wiki/index)\n\n1. No screenshots or pics where the only focus is a screen. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_1_-_no_screenshots)\n\n2. No pictures with added or superimposed digital text. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_2_-_no_digital_elements)\n\n3. No porn or gore. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_3_-_no_porn.2Fgore)\n\n4. No personal information, direct links to any social media, subreddit-related meta-drama, witch-hunts or missing/found posts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_4_-_no_doxing.2Fwitch_hunts)\n\n5. All titles must follow title rules. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/titles)\n\n6. Submissions are only allowed from one of the approved image hosts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_6_-_only_allowed_image_hosts) \n\n7. No gifs or videos. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_7_-_no_gifs)\n\n8. Comments must be civil. Any racism, bigotry, or any other kind of hate speech is strictly prohibited and will result in a ban. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_8_-_civility)\n\n9. No submissions featuring before-and-after depictions of personal health progress or achievement. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_9_-_no_progress_pics)\n\n10. No false claims of ownership (FCoO) or flooding. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_10_-_no_fcoo.2Fflooding)\n\n11. Reposts of images on the front page, or within the set limit of /r/pics/top, will be removed. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_11_-_repost_limitations)\n\n12. Normal users are allowed only one self-promotional link per post. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_12_-_limited_self-promotion)\n\n---\n\n[Additional/Temporary Rules](https://www.reddit.com/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* From January 14, 2020 until February 14, 2020, we will not allow political shitposts or political karmawhoring. [details\u003E\u003E](/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* Serial reposters may be filtered or banned. \n\n* We prefer that new users post original content and not common pictures from the internet.\n\n* All posts by new users require mod approval in order to weed out spammers. \n\n* Please mark spoilers for current movies/games/books with spoiler tags. \n\n---\n\nIf you want a picture that belongs to you to be removed from /r/pics then please file a copyright notice [here](https://reddit.zendesk.com/hc/en-us/requests/new?ticket_form_id=73465).\n\n---\n\nClick [here](https://www.reddit.com/r/pics/wiki/links) to find more specialized picture subreddits", "user_is_muted": false, "display_name": "pics", "header_img": "https://b.thumbs.redditmedia.com/1zT3FeN8pCAFIooNVuyuZ0ObU0x1ro4wPfArGHl3KjM.png", "title": "Reddit Pics", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "#ffffff", "icon_img": "https://b.thumbs.redditmedia.com/VZX_KQLnI1DPhlEZ07bIcLzwR1Win808RIt7zm49VIQ.png", "icon_color": "", "submit_link_label": "Submit an image", "header_size": [160, 64], "restrict_commenting": false, "subscribers": 26711137, "submit_text_label": "", "link_flair_position": "left", "display_name_prefixed": "r/pics", "key_color": "#222222", "name": "t5_2qh0u", "created": 1201249869.0, "url": "/r/pics/", "quarantine": false, "created_utc": 1201221069.0, "banner_size": null, "user_is_contributor": false, "public_description": "A place for pictures and photographs.", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2qh0u", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "lak7ao", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "changhongtao", "discussion_type": null, "num_comments": 68, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/pics/comments/lak7ao/a_picture_of_me_and_my_friends/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/90tihkyexye61.jpg", "subreddit_subscribers": 26711137, "created_utc": 1612229831.0, "num_crossposts": 1, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "portraits", "selftext": "", "author_fullname": "t2_40qdqfh", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 0, "clicked": false, "is_gallery": true, "title": "Self portrait with a vintage feel", "link_flair_richtext": [], "subreddit_name_prefixed": "r/portraits", "hidden": false, "pwls": 6, "link_flair_css_class": "oc", "downs": 0, "thumbnail_height": 140, "top_awarded_type": null, "name": "t3_lafjhc", "media_metadata": {"7kr8nu13vxe61": {"status": "valid", "e": "Image", "m": "image/jpg", "p": [{"y": 151, "x": 108, "u": "https://preview.redd.it/7kr8nu13vxe61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=1d6f6b096febfb41f923ba30858a9f7cb6b1cda6"}, {"y": 302, "x": 216, "u": "https://preview.redd.it/7kr8nu13vxe61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=22eb753818279a56fa9cd2037a0f79370ec8a0e9"}, {"y": 448, "x": 320, "u": "https://preview.redd.it/7kr8nu13vxe61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=cf73e88b3de47e98b3e9118e27c6b2e2b6fae971"}, {"y": 896, "x": 640, "u": "https://preview.redd.it/7kr8nu13vxe61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=58b1ad13bd563b45f29d834bf27e44bc1c8fa2bc"}, {"y": 1344, "x": 960, "u": "https://preview.redd.it/7kr8nu13vxe61.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=d06072ba82beab4770f61ee8874e0204ddc909cb"}], "s": {"y": 1350, "x": 964, "u": "https://preview.redd.it/7kr8nu13vxe61.jpg?width=964\u0026format=pjpg\u0026auto=webp\u0026s=9db7cb9e5b8cf3086b4ad9d4b14745d9df2d6c5f"}, "id": "7kr8nu13vxe61"}, "i002rt13vxe61": {"status": "valid", "e": "Image", "m": "image/jpg", "p": [{"y": 151, "x": 108, "u": "https://preview.redd.it/i002rt13vxe61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=6184509e46289c74a057297613eb5dc88a983a1e"}, {"y": 302, "x": 216, "u": "https://preview.redd.it/i002rt13vxe61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=368826e04774d61fb2bca14df37dce91c0b99e5c"}, {"y": 448, "x": 320, "u": "https://preview.redd.it/i002rt13vxe61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=40ed1bbd563d19e1f8c2074e822f670705193712"}, {"y": 896, "x": 640, "u": "https://preview.redd.it/i002rt13vxe61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=54a8d67f5afe8fc28bdac99395889ed68524e79b"}, {"y": 1344, "x": 960, "u": "https://preview.redd.it/i002rt13vxe61.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=db1ea9503e337fb58a2c998bd43da47981101834"}], "s": {"y": 1350, "x": 964, "u": "https://preview.redd.it/i002rt13vxe61.jpg?width=964\u0026format=pjpg\u0026auto=webp\u0026s=b446bff99839af564102f645bec628fadf90dce8"}, "id": "i002rt13vxe61"}}, "hide_score": false, "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 1.0, "author_flair_background_color": null, "outbound_link": {"url": "https://www.reddit.com/gallery/lafjhc", "expiration": null, "created": null}, "ups": 23, "domain": "reddit.com", "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": false, "is_meta": false, "category": null, "secure_media_embed": {}, "gallery_data": {"items": [{"caption": "Canon 5d Mk IV + 50mm 1.2 / 1/200 1.2 ISO 100 with ND and mist filter", "media_id": "7kr8nu13vxe61", "id": 25619113}, {"media_id": "i002rt13vxe61", "id": 25619114}]}, "link_flair_text": "OC", "can_mod_post": false, "score": 23, "approved_by": null, "author_premium": false, "thumbnail": "https://a.thumbs.redditmedia.com/kj3JSaiN2Rd2IlD4z2hXze5R6F5xxBuwNeMFWiGxje4.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-0c2fc51946b39365a.wss.redditmedia.com/link/lafjhc?m=AQAA9l4aYJFwWvO1Lg60ILyCuTy2bqU_laPeKX8LqW6qiBbnD13D", "gildings": {}, "content_categories": ["photography"], "is_self": false, "subreddit_type": "public", "created": 1612245801.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "total_awards_received": 0, "allow_live_comments": false, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://www.reddit.com/gallery/lafjhc", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "all_awardings": [], "awarders": [], "media_only": false, "link_flair_template_id": "bb264daa-d9b0-11ea-b6b5-0ec12c214351", "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": null, "show_media": true, "description": "**READ THE RULES BEFORE YOU POST!**\n\nA place to post contemporary portrait images, receive constructive feedback, and discuss technique. Please mark non-original images as such.\n\n**Posts should be formatted as follows:**\n\n*\"Title [materials]\"*\n\nSo a painting might be *\"Hello World [oils on canvas]\"* and a photograph might be *\"Hello World [Sony A7sii, Zeiss Loxia 50mm f/2]\"*. Please follow this formatting, otherwise your post will be removed.\n\n\u003EA portrait is a painting, photograph, sculpture, or other artistic representation of a person, in which the face and its expression is predominant to display the likeness, personality, and even the mood of the person. For this reason, in photography a portrait is generally not a snapshot, but a composed image of a person in a still position often looking directly at the painter or photographer to most successfully engage the subject. \n[Wikipedia](https://en.wikipedia.org/wiki/Portrait)\n\nFor historical painted portraits please check out our sister subreddit **/r/portraiture.**", "user_is_muted": false, "display_name": "portraits", "header_img": null, "title": "Portraits", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": null, "primary_color": "", "icon_img": "", "icon_color": "", "is_chat_post_feature_enabled": true, "submit_link_label": "", "header_size": null, "restrict_commenting": false, "subscribers": 23717, "submit_text_label": "", "link_flair_position": "right", "display_name_prefixed": "r/portraits", "key_color": "", "name": "t5_2sxa6", "created": 1317336072.0, "url": "/r/portraits/", "quarantine": false, "created_utc": 1317307272.0, "banner_size": null, "allow_chat_post_creation": false, "user_is_contributor": false, "public_description": "A portrait is a painting, photograph, sculpture, or other artistic representation of a person, in which the face and its expression is predominant to display the likeness, personality, and even the mood of the person. For this reason, in photography a portrait is generally not a snapshot, but a composed image of a person in a still position often looking directly at the painter or photographer to most successfully engage the subject. \n[Wikipedia](https://en.wikipedia.org/wiki/Portrait)", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2sxa6", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "lafjhc", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "tayserko", "discussion_type": null, "num_comments": 0, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/portraits/comments/lafjhc/self_portrait_with_a_vintage_feel/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://www.reddit.com/gallery/lafjhc", "subreddit_subscribers": 23717, "created_utc": 1612217001.0, "num_crossposts": 0, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "pics", "selftext": "", "author_fullname": "t2_7igjz", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 5, "clicked": false, "title": "Super nervous about sharing my art, but I need to put myself out there to grow :)", "link_flair_richtext": [], "subreddit_name_prefixed": "r/pics", "hidden": false, "pwls": 6, "link_flair_css_class": "13", "downs": 0, "thumbnail_height": 112, "top_awarded_type": "ACTIVE", "hide_score": false, "name": "t3_la9lnc", "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 0.8, "author_flair_background_color": null, "ups": 42119, "total_awards_received": 114, "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": "Arts/Crafts", "can_mod_post": false, "score": 42119, "approved_by": null, "author_premium": true, "thumbnail": "https://b.thumbs.redditmedia.com/-TcOk9TXYaHd5ntdccQY0fx15W1gwZMxsEMhXpIqTTA.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-0c2fc51946b39365a.wss.redditmedia.com/link/la9lnc?m=AQAA9l4aYKBJBqkbm9kg03WMAooeAPMZTBTnngJrQe4HOyEcRGY5", "gildings": {"gid_1": 30, "gid_2": 5, "gid_3": 2}, "post_hint": "image", "content_categories": ["photography"], "is_self": false, "subreddit_type": "public", "created": 1612231449.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "domain": "i.redd.it", "allow_live_comments": true, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/598eq3loowe61.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/598eq3loowe61.jpg?auto=webp\u0026s=2c96f18f4e81561b560e9c6f15b43d8878e32059", "width": 3775, "height": 3024}, "resolutions": [{"url": "https://preview.redd.it/598eq3loowe61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=422555694b101b1f2319655917344e820a306f2e", "width": 108, "height": 86}, {"url": "https://preview.redd.it/598eq3loowe61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=e4480138c5312b3ad11ec7e1273ca19bc7be2ca3", "width": 216, "height": 173}, {"url": "https://preview.redd.it/598eq3loowe61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=ba534d994906cc1d3e1d0365eacbb50ced361950", "width": 320, "height": 256}, {"url": "https://preview.redd.it/598eq3loowe61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=c8d9a6fac8040d91ac7b8f85cb587e04d81fce84", "width": 640, "height": 512}, {"url": "https://preview.redd.it/598eq3loowe61.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=3f1fcefec36fbcd4371fda08429601a3ed1a46c2", "width": 960, "height": 769}, {"url": "https://preview.redd.it/598eq3loowe61.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=00a73c5cb1df6113cbb87b458a87e9abaf4fe0d7", "width": 1080, "height": 865}], "variants": {}, "id": "gjuT3ZW2SZXRhroJmd-jvuAgAWCmGQLm89bUO3rezNU"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 31, "coin_price": 1800, "id": "gid_3", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/platinum_512.png", "days_of_premium": 31, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/platinum_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Gives 700 Reddit Coins and a month of r/lounge access and ad-free browsing.", "end_date": null, "subreddit_coin_reward": 0, "count": 2, "static_icon_height": 512, "name": "Platinum", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/platinum_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/platinum_512.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 500, "id": "gid_2", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 100, "icon_url": "https://www.redditstatic.com/gold/awards/icon/gold_512.png", "days_of_premium": 7, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/gold_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Gives 100 Reddit Coins and a week of r/lounge access and ad-free browsing.", "end_date": null, "subreddit_coin_reward": 0, "count": 5, "static_icon_height": 512, "name": "Gold", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/gold_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/gold_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 400, "id": "award_84276b1e-cc8f-484f-a19c-be6c09adc1a5", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/SnooClapping_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/SnooClapping_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClapping_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClapping_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClapping_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClapping_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "An amazing showing.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Bravo!", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/m5fdvo7cl4451_Bravo-Static.png?width=16\u0026height=16\u0026auto=webp\u0026s=647cccf78702582f30d23908180da092b135cffe", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/m5fdvo7cl4451_Bravo-Static.png?width=32\u0026height=32\u0026auto=webp\u0026s=4644ac0618ecdef010ae2368e2e58669953fd9a3", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/m5fdvo7cl4451_Bravo-Static.png?width=48\u0026height=48\u0026auto=webp\u0026s=ca4efb2faa26429279f44ced2822f5e81ff37537", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/m5fdvo7cl4451_Bravo-Static.png?width=64\u0026height=64\u0026auto=webp\u0026s=3a307ad71aad031accfd47f1af82a2b1e09195cc", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/m5fdvo7cl4451_Bravo-Static.png?width=128\u0026height=128\u0026auto=webp\u0026s=fb9b2c432b1ddd85fd653ef3cc1a28e5edc40a1f", "width": 128, "height": 128}], "icon_format": "APNG", "icon_height": 512, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/m5fdvo7cl4451_Bravo-Static.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 150, "id": "award_f44611f1-b89e-46dc-97fe-892280b13b82", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Thank you stranger. Shows the award.", "end_date": null, "subreddit_coin_reward": 0, "count": 19, "static_icon_height": 2048, "name": "Helpful", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 125, "id": "award_5f123e3d-4f48-42f4-9c11-e98b566d5897", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When you come across a feel-good thing.", "end_date": null, "subreddit_coin_reward": 0, "count": 27, "static_icon_height": 2048, "name": "Wholesome", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "gid_1", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Shows the Silver Award... and that's it.", "end_date": null, "subreddit_coin_reward": 0, "count": 30, "static_icon_height": 512, "name": "Silver", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "award_b4072731-c0fb-4440-adc7-1063d6a5e6a0", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=16\u0026height=16\u0026auto=webp\u0026s=8e644eb9ffccee5f11d72e759883a6c825f7d89e", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=32\u0026height=32\u0026auto=webp\u0026s=c49ad07c88610c7efe98a54453d9ce5ddf887a1d", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=48\u0026height=48\u0026auto=webp\u0026s=80eb767a877a78c181af1385c2ed98f067b38092", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=64\u0026height=64\u0026auto=webp\u0026s=b2b65ceeff9933f5e70387893e661b7e9f1f1556", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=128\u0026height=128\u0026auto=webp\u0026s=aec3cf53a1aeabe4c2ecc4ad83b2d0f2993d1afd", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "C'est magnifique", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Masterpiece", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=16\u0026height=16\u0026auto=webp\u0026s=8e644eb9ffccee5f11d72e759883a6c825f7d89e", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=32\u0026height=32\u0026auto=webp\u0026s=c49ad07c88610c7efe98a54453d9ce5ddf887a1d", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=48\u0026height=48\u0026auto=webp\u0026s=80eb767a877a78c181af1385c2ed98f067b38092", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=64\u0026height=64\u0026auto=webp\u0026s=b2b65ceeff9933f5e70387893e661b7e9f1f1556", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png?width=128\u0026height=128\u0026auto=webp\u0026s=aec3cf53a1aeabe4c2ecc4ad83b2d0f2993d1afd", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/2juh333m40n51_Masterpiece.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "award_19860e30-3331-4bac-b3d1-bd28de0c7974", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=16\u0026height=16\u0026auto=webp\u0026s=4e50438bd2d72ae5398e839ac2bdcccf323fca79", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=32\u0026height=32\u0026auto=webp\u0026s=e730f68de038499700c6301470812c29ef6a8555", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=48\u0026height=48\u0026auto=webp\u0026s=8d7c7fa22e6ff3b1b0a347839e42f493eb5f6cbc", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=64\u0026height=64\u0026auto=webp\u0026s=11ec2a72e2724017bb8479639edce8a7f2ba64f4", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=128\u0026height=128\u0026auto=webp\u0026s=1e936ae571e89abb5a5aaa2efd2d7cfb0ed1b537", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "I needed this today", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Heartwarming", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=16\u0026height=16\u0026auto=webp\u0026s=4e50438bd2d72ae5398e839ac2bdcccf323fca79", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=32\u0026height=32\u0026auto=webp\u0026s=e730f68de038499700c6301470812c29ef6a8555", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=48\u0026height=48\u0026auto=webp\u0026s=8d7c7fa22e6ff3b1b0a347839e42f493eb5f6cbc", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=64\u0026height=64\u0026auto=webp\u0026s=11ec2a72e2724017bb8479639edce8a7f2ba64f4", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=128\u0026height=128\u0026auto=webp\u0026s=1e936ae571e89abb5a5aaa2efd2d7cfb0ed1b537", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 80, "id": "award_8352bdff-3e03-4189-8a08-82501dd8f835", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Everything is better with a good hug", "end_date": null, "subreddit_coin_reward": 0, "count": 28, "static_icon_height": 2048, "name": "Hugz", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png"}], "awarders": [], "media_only": false, "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": null, "show_media": true, "description": "[Rules](https://www.reddit.com/r/pics/wiki/index)\n\n1. No screenshots or pics where the only focus is a screen. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_1_-_no_screenshots)\n\n2. No pictures with added or superimposed digital text. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_2_-_no_digital_elements)\n\n3. No porn or gore. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_3_-_no_porn.2Fgore)\n\n4. No personal information, direct links to any social media, subreddit-related meta-drama, witch-hunts or missing/found posts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_4_-_no_doxing.2Fwitch_hunts)\n\n5. All titles must follow title rules. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/titles)\n\n6. Submissions are only allowed from one of the approved image hosts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_6_-_only_allowed_image_hosts) \n\n7. No gifs or videos. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_7_-_no_gifs)\n\n8. Comments must be civil. Any racism, bigotry, or any other kind of hate speech is strictly prohibited and will result in a ban. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_8_-_civility)\n\n9. No submissions featuring before-and-after depictions of personal health progress or achievement. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_9_-_no_progress_pics)\n\n10. No false claims of ownership (FCoO) or flooding. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_10_-_no_fcoo.2Fflooding)\n\n11. Reposts of images on the front page, or within the set limit of /r/pics/top, will be removed. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_11_-_repost_limitations)\n\n12. Normal users are allowed only one self-promotional link per post. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_12_-_limited_self-promotion)\n\n---\n\n[Additional/Temporary Rules](https://www.reddit.com/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* From January 14, 2020 until February 14, 2020, we will not allow political shitposts or political karmawhoring. [details\u003E\u003E](/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* Serial reposters may be filtered or banned. \n\n* We prefer that new users post original content and not common pictures from the internet.\n\n* All posts by new users require mod approval in order to weed out spammers. \n\n* Please mark spoilers for current movies/games/books with spoiler tags. \n\n---\n\nIf you want a picture that belongs to you to be removed from /r/pics then please file a copyright notice [here](https://reddit.zendesk.com/hc/en-us/requests/new?ticket_form_id=73465).\n\n---\n\nClick [here](https://www.reddit.com/r/pics/wiki/links) to find more specialized picture subreddits", "user_is_muted": false, "display_name": "pics", "header_img": "https://b.thumbs.redditmedia.com/1zT3FeN8pCAFIooNVuyuZ0ObU0x1ro4wPfArGHl3KjM.png", "title": "Reddit Pics", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "#ffffff", "icon_img": "https://b.thumbs.redditmedia.com/VZX_KQLnI1DPhlEZ07bIcLzwR1Win808RIt7zm49VIQ.png", "icon_color": "", "submit_link_label": "Submit an image", "header_size": [160, 64], "restrict_commenting": false, "subscribers": 26711137, "submit_text_label": "", "link_flair_position": "left", "display_name_prefixed": "r/pics", "key_color": "#222222", "name": "t5_2qh0u", "created": 1201249869.0, "url": "/r/pics/", "quarantine": false, "created_utc": 1201221069.0, "banner_size": null, "user_is_contributor": false, "public_description": "A place for pictures and photographs.", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2qh0u", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "la9lnc", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "AkaMiso", "discussion_type": null, "num_comments": 891, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/pics/comments/la9lnc/super_nervous_about_sharing_my_art_but_i_need_to/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/598eq3loowe61.jpg", "subreddit_subscribers": 26711137, "created_utc": 1612202649.0, "num_crossposts": 0, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "pics", "selftext": "", "author_fullname": "t2_13d28t", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "Andr\u00e1s Arat\u00f3 fell yesterday and broke two fingers on his right hand but is doing okay", "link_flair_richtext": [], "subreddit_name_prefixed": "r/pics", "hidden": false, "pwls": 6, "link_flair_css_class": null, "downs": 0, "thumbnail_height": 140, "top_awarded_type": "INACTIVE", "hide_score": false, "name": "t3_la6gkv", "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 0.91, "author_flair_background_color": null, "outbound_link": {"url": "https://out.reddit.com/t3_la6gkv?url=https%3A%2F%2Fi.imgur.com%2FkPdibhW.jpg\u0026token=AQAAhhsZYA8Thw0TCq6BPVmrhCX2ZWTEQpAM9g83JOz86ok69vlW\u0026app_name=mweb2x", "expiration": 1612258182000, "created": 1612254582000}, "ups": 105868, "total_awards_received": 235, "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": false, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": null, "can_mod_post": false, "score": 105868, "approved_by": null, "author_premium": true, "thumbnail": "https://b.thumbs.redditmedia.com/oUS8OUdiULmSkJKtCje_lXUU9lVFlNSDGdCeO7Jhz3s.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-0ec0cf6b4e835f4a5.wss.redditmedia.com/link/la6gkv?m=AQAA9l4aYHOhOcn5vTRh2-kG68u2rFy2ugNbBkt63v309q_M8esa", "gildings": {"gid_1": 35}, "post_hint": "image", "content_categories": ["photography"], "is_self": false, "subreddit_type": "public", "created": 1612224032.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "domain": "i.imgur.com", "allow_live_comments": true, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.imgur.com/kPdibhW.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://external-preview.redd.it/DhZQ6oCg3KBeGjTnEKxFdRCqcr9VsR1P2PY-sWjEcck.jpg?auto=webp\u0026s=15f23d9736b333c428ba4d526bcf69cc2fc06014", "width": 1511, "height": 2015}, "resolutions": [{"url": "https://external-preview.redd.it/DhZQ6oCg3KBeGjTnEKxFdRCqcr9VsR1P2PY-sWjEcck.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=53e270d620cbc0ccca3a8e4c9a71cdcbb68452b1", "width": 108, "height": 144}, {"url": "https://external-preview.redd.it/DhZQ6oCg3KBeGjTnEKxFdRCqcr9VsR1P2PY-sWjEcck.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=04252496558908a49d167ee34d36f60d25795aa2", "width": 216, "height": 288}, {"url": "https://external-preview.redd.it/DhZQ6oCg3KBeGjTnEKxFdRCqcr9VsR1P2PY-sWjEcck.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=4cd2bf1a98f9583290851599e28d4423ac850a2b", "width": 320, "height": 426}, {"url": "https://external-preview.redd.it/DhZQ6oCg3KBeGjTnEKxFdRCqcr9VsR1P2PY-sWjEcck.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=f1ccf37b0b7c6c717a424efd1a6ca5ece04d2920", "width": 640, "height": 853}, {"url": "https://external-preview.redd.it/DhZQ6oCg3KBeGjTnEKxFdRCqcr9VsR1P2PY-sWjEcck.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=deb7aa1a253b82f28ac83341007a6cfbc3382737", "width": 960, "height": 1280}, {"url": "https://external-preview.redd.it/DhZQ6oCg3KBeGjTnEKxFdRCqcr9VsR1P2PY-sWjEcck.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=04ed1140a349ba1dc213fd854839068e256d0cb7", "width": 1080, "height": 1440}], "variants": {}, "id": "wEYhXGXQLEQVBoQDboS8jvHEDFPz9OS5nEvZegCTWOc"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 20, "id": "award_5eac457f-ebac-449b-93a7-eb17b557f03c", "penny_donate": 0, "award_sub_type": "PREMIUM", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/j3azv69qjfn51_LOVE.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/j3azv69qjfn51_LOVE.png?width=16\u0026height=16\u0026auto=webp\u0026s=bc61b528b8d075c26a3d0f2ad3d9e42259c51cbe", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/j3azv69qjfn51_LOVE.png?width=32\u0026height=32\u0026auto=webp\u0026s=d576c9a19ed29ca5624333239dbde289a146930b", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/j3azv69qjfn51_LOVE.png?width=48\u0026height=48\u0026auto=webp\u0026s=da1e45654f5acfb6be44fa07c168ad6420796f56", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/j3azv69qjfn51_LOVE.png?width=64\u0026height=64\u0026auto=webp\u0026s=677455ac05c563b5585f76e52ee96354f1430799", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/j3azv69qjfn51_LOVE.png?width=128\u0026height=128\u0026auto=webp\u0026s=25a3b6021a92685b01883fb3d947d2959a75d8b3", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When you follow your heart, love is the answer", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "LOVE!", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/j3azv69qjfn51_LOVE.png?width=16\u0026height=16\u0026auto=webp\u0026s=bc61b528b8d075c26a3d0f2ad3d9e42259c51cbe", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/j3azv69qjfn51_LOVE.png?width=32\u0026height=32\u0026auto=webp\u0026s=d576c9a19ed29ca5624333239dbde289a146930b", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/j3azv69qjfn51_LOVE.png?width=48\u0026height=48\u0026auto=webp\u0026s=da1e45654f5acfb6be44fa07c168ad6420796f56", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/j3azv69qjfn51_LOVE.png?width=64\u0026height=64\u0026auto=webp\u0026s=677455ac05c563b5585f76e52ee96354f1430799", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/j3azv69qjfn51_LOVE.png?width=128\u0026height=128\u0026auto=webp\u0026s=25a3b6021a92685b01883fb3d947d2959a75d8b3", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/j3azv69qjfn51_LOVE.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 150, "id": "award_88fdcafc-57a0-48db-99cc-76276bfaf28b", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/tcofsbf92md41_PressF.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/tcofsbf92md41_PressF.png?width=16\u0026height=16\u0026auto=webp\u0026s=3481c2a89c2ebe653aae1b8d627c20c10abfc79e", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/tcofsbf92md41_PressF.png?width=32\u0026height=32\u0026auto=webp\u0026s=2bd2b8a9417e7cc18752927c11f98b242c133f2f", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/tcofsbf92md41_PressF.png?width=48\u0026height=48\u0026auto=webp\u0026s=a34e3d83c5dd9f6c731b1375500e4de8d4fee652", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/tcofsbf92md41_PressF.png?width=64\u0026height=64\u0026auto=webp\u0026s=6525899b9a01d5b0c4deea6c34cd8436ee1ff0c7", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/tcofsbf92md41_PressF.png?width=128\u0026height=128\u0026auto=webp\u0026s=c9e094023649693de991fff551a0c9561d11163a", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "To pay respects.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Press F", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/tcofsbf92md41_PressF.png?width=16\u0026height=16\u0026auto=webp\u0026s=3481c2a89c2ebe653aae1b8d627c20c10abfc79e", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/tcofsbf92md41_PressF.png?width=32\u0026height=32\u0026auto=webp\u0026s=2bd2b8a9417e7cc18752927c11f98b242c133f2f", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/tcofsbf92md41_PressF.png?width=48\u0026height=48\u0026auto=webp\u0026s=a34e3d83c5dd9f6c731b1375500e4de8d4fee652", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/tcofsbf92md41_PressF.png?width=64\u0026height=64\u0026auto=webp\u0026s=6525899b9a01d5b0c4deea6c34cd8436ee1ff0c7", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/tcofsbf92md41_PressF.png?width=128\u0026height=128\u0026auto=webp\u0026s=c9e094023649693de991fff551a0c9561d11163a", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/tcofsbf92md41_PressF.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 150, "id": "award_f44611f1-b89e-46dc-97fe-892280b13b82", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Thank you stranger. Shows the award.", "end_date": null, "subreddit_coin_reward": 0, "count": 51, "static_icon_height": 2048, "name": "Helpful", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 125, "id": "award_5f123e3d-4f48-42f4-9c11-e98b566d5897", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When you come across a feel-good thing.", "end_date": null, "subreddit_coin_reward": 0, "count": 65, "static_icon_height": 2048, "name": "Wholesome", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "gid_1", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Shows the Silver Award... and that's it.", "end_date": null, "subreddit_coin_reward": 0, "count": 35, "static_icon_height": 512, "name": "Silver", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "award_3267ca1c-127a-49e9-9a3d-4ba96224af18", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=16\u0026height=16\u0026auto=webp\u0026s=6ce62fa40de4c6b72859d2cbdf22af5c0e012233", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=32\u0026height=32\u0026auto=webp\u0026s=26297b024da3e9bd6507e7b8553507493b5e6606", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=48\u0026height=48\u0026auto=webp\u0026s=0763517837b22d5e414dd330d5006c0d89ccb499", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=64\u0026height=64\u0026auto=webp\u0026s=9a2154561daa83678f3f9e6e2a627629ee2a2bcc", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=128\u0026height=128\u0026auto=webp\u0026s=96897549f634fd6324e1338a98b9778733ea4813", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Let's sip to good health and good company", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "I'll Drink to That", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=16\u0026height=16\u0026auto=webp\u0026s=6ce62fa40de4c6b72859d2cbdf22af5c0e012233", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=32\u0026height=32\u0026auto=webp\u0026s=26297b024da3e9bd6507e7b8553507493b5e6606", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=48\u0026height=48\u0026auto=webp\u0026s=0763517837b22d5e414dd330d5006c0d89ccb499", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=64\u0026height=64\u0026auto=webp\u0026s=9a2154561daa83678f3f9e6e2a627629ee2a2bcc", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=128\u0026height=128\u0026auto=webp\u0026s=96897549f634fd6324e1338a98b9778733ea4813", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "award_19860e30-3331-4bac-b3d1-bd28de0c7974", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=16\u0026height=16\u0026auto=webp\u0026s=4e50438bd2d72ae5398e839ac2bdcccf323fca79", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=32\u0026height=32\u0026auto=webp\u0026s=e730f68de038499700c6301470812c29ef6a8555", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=48\u0026height=48\u0026auto=webp\u0026s=8d7c7fa22e6ff3b1b0a347839e42f493eb5f6cbc", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=64\u0026height=64\u0026auto=webp\u0026s=11ec2a72e2724017bb8479639edce8a7f2ba64f4", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=128\u0026height=128\u0026auto=webp\u0026s=1e936ae571e89abb5a5aaa2efd2d7cfb0ed1b537", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "I needed this today", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Heartwarming", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=16\u0026height=16\u0026auto=webp\u0026s=4e50438bd2d72ae5398e839ac2bdcccf323fca79", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=32\u0026height=32\u0026auto=webp\u0026s=e730f68de038499700c6301470812c29ef6a8555", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=48\u0026height=48\u0026auto=webp\u0026s=8d7c7fa22e6ff3b1b0a347839e42f493eb5f6cbc", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=64\u0026height=64\u0026auto=webp\u0026s=11ec2a72e2724017bb8479639edce8a7f2ba64f4", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=128\u0026height=128\u0026auto=webp\u0026s=1e936ae571e89abb5a5aaa2efd2d7cfb0ed1b537", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 80, "id": "award_8352bdff-3e03-4189-8a08-82501dd8f835", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Everything is better with a good hug", "end_date": null, "subreddit_coin_reward": 0, "count": 79, "static_icon_height": 2048, "name": "Hugz", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 50, "id": "award_02d9ab2c-162e-4c01-8438-317a016ed3d9", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=16\u0026height=16\u0026auto=webp\u0026s=045db73f47a9513c44823d132b4c393ab9241b6a", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=32\u0026height=32\u0026auto=webp\u0026s=298a02e0edbb5b5e293087eeede63802cbe1d2c7", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=48\u0026height=48\u0026auto=webp\u0026s=7d06d606eb23dbcd6dbe39ee0e60588c5eb89065", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=64\u0026height=64\u0026auto=webp\u0026s=ecd9854b14104a36a210028c43420f0dababd96b", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=128\u0026height=128\u0026auto=webp\u0026s=0d5d7b92c1d66aff435f2ad32e6330ca2b971f6d", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "I'm in this with you.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Take My Energy", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=16\u0026height=16\u0026auto=webp\u0026s=045db73f47a9513c44823d132b4c393ab9241b6a", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=32\u0026height=32\u0026auto=webp\u0026s=298a02e0edbb5b5e293087eeede63802cbe1d2c7", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=48\u0026height=48\u0026auto=webp\u0026s=7d06d606eb23dbcd6dbe39ee0e60588c5eb89065", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=64\u0026height=64\u0026auto=webp\u0026s=ecd9854b14104a36a210028c43420f0dababd96b", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=128\u0026height=128\u0026auto=webp\u0026s=0d5d7b92c1d66aff435f2ad32e6330ca2b971f6d", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png"}], "awarders": [], "media_only": false, "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": null, "show_media": true, "description": "[Rules](https://www.reddit.com/r/pics/wiki/index)\n\n1. No screenshots or pics where the only focus is a screen. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_1_-_no_screenshots)\n\n2. No pictures with added or superimposed digital text. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_2_-_no_digital_elements)\n\n3. No porn or gore. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_3_-_no_porn.2Fgore)\n\n4. No personal information, direct links to any social media, subreddit-related meta-drama, witch-hunts or missing/found posts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_4_-_no_doxing.2Fwitch_hunts)\n\n5. All titles must follow title rules. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/titles)\n\n6. Submissions are only allowed from one of the approved image hosts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_6_-_only_allowed_image_hosts) \n\n7. No gifs or videos. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_7_-_no_gifs)\n\n8. Comments must be civil. Any racism, bigotry, or any other kind of hate speech is strictly prohibited and will result in a ban. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_8_-_civility)\n\n9. No submissions featuring before-and-after depictions of personal health progress or achievement. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_9_-_no_progress_pics)\n\n10. No false claims of ownership (FCoO) or flooding. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_10_-_no_fcoo.2Fflooding)\n\n11. Reposts of images on the front page, or within the set limit of /r/pics/top, will be removed. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_11_-_repost_limitations)\n\n12. Normal users are allowed only one self-promotional link per post. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_12_-_limited_self-promotion)\n\n---\n\n[Additional/Temporary Rules](https://www.reddit.com/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* From January 14, 2020 until February 14, 2020, we will not allow political shitposts or political karmawhoring. [details\u003E\u003E](/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* Serial reposters may be filtered or banned. \n\n* We prefer that new users post original content and not common pictures from the internet.\n\n* All posts by new users require mod approval in order to weed out spammers. \n\n* Please mark spoilers for current movies/games/books with spoiler tags. \n\n---\n\nIf you want a picture that belongs to you to be removed from /r/pics then please file a copyright notice [here](https://reddit.zendesk.com/hc/en-us/requests/new?ticket_form_id=73465).\n\n---\n\nClick [here](https://www.reddit.com/r/pics/wiki/links) to find more specialized picture subreddits", "user_is_muted": false, "display_name": "pics", "header_img": "https://b.thumbs.redditmedia.com/1zT3FeN8pCAFIooNVuyuZ0ObU0x1ro4wPfArGHl3KjM.png", "title": "Reddit Pics", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "#ffffff", "icon_img": "https://b.thumbs.redditmedia.com/VZX_KQLnI1DPhlEZ07bIcLzwR1Win808RIt7zm49VIQ.png", "icon_color": "", "submit_link_label": "Submit an image", "header_size": [160, 64], "restrict_commenting": false, "subscribers": 26711137, "submit_text_label": "", "link_flair_position": "left", "display_name_prefixed": "r/pics", "key_color": "#222222", "name": "t5_2qh0u", "created": 1201249869.0, "url": "/r/pics/", "quarantine": false, "created_utc": 1201221069.0, "banner_size": null, "user_is_contributor": false, "public_description": "A place for pictures and photographs.", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2qh0u", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "la6gkv", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "i124nk8", "discussion_type": null, "num_comments": 923, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/pics/comments/la6gkv/andr\u00e1s_arat\u00f3_fell_yesterday_and_broke_two_fingers/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.imgur.com/kPdibhW.jpg", "subreddit_subscribers": 26711137, "created_utc": 1612195232.0, "num_crossposts": 9, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "priority_id": 3, "subreddit": "u_Robinhood_App", "selftext": "", "author_fullname": "t2_12bm51ff", "adserver_click_url": null, "saved": false, "promoted_by": null, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "We\u2019ve received questions about Robinhood and the mechanics behind your trades.", "link_flair_richtext": [], "subreddit_name_prefixed": "u/Robinhood_App", "hidden": false, "pwls": null, "link_flair_css_class": null, "downs": 0, "impression_id": 2933271137794020536, "thumbnail_height": 102, "top_awarded_type": null, "hide_score": true, "name": "t3_l8eh2o", "quarantine": false, "href_url": "https://rbnhd.co/jan-29", "link_flair_text_color": "dark", "upvote_ratio": 0.06, "author_flair_background_color": null, "outbound_link": {"url": "https://alb.reddit.com/cr?z=gAAAAABgGQ12vkJ0URXyiTyE-N3wlw91h3c4uf5ldouG0Bg316FlTvZ_LUDTXEmXwP9RAcduR1Qkx1534MgJDI4Cym_ErrVSoiEpFag9FlLZpTygGav_gvcTT4h8O00QHG8Oi5H3vtX6igoL1XvCLdmWycieajqJJD6yF2WjHnzkRxB0Tj7Tp3lmJpe6toumj99Y3PbxOObSl3F-nH0lu2Rn6Z1Z4fNJW2ZnGZZGU9K2l3kQ_UqH9CSUYAU5N1PWDUC-uGSRgNiWE81tdzGOsaPYCxw0xosIwvoOJzPzPCaivsOvj_sVPN3f7q5WAkxw-RTYYzkNu1nw8qnv65T9hYKd9aIUHhWH1ddx-wKq2XITI0yHwlAHraWfgS0H6gMooeHVfDbTyUJahkbMi-o9-I4FVcuYKkmFtt6V3NA-H3v_yzJpID7FupKnugd1KtWxTGM5Nt35bhqmwtqwHXjD7qXTXph5knqleAqzHRafLa-61MVCoNMs3xui12QRiNvlZPumWfZeuqSCl7vKIQBcKwmoyy6_mGhGqKRPNx-3Ru8fyuuKnnQgi0TJJnEZ_asARxZBwnSEg7vKMfiABJtOkUfG59BvW1gfnP54HHYn8smDs3eKtalMTgEWZ6vRsp7jnzDA7c7Mkumwc7X6cBoKZ9Wg5szpXYeYRlFX10EYC5JIF4BpsfES9UPI4GJJ-e56aaeNqjVIaTR7WmUYLHATiyF4yXBuYq60kFYldvwY-6GCpfsZf5iKjlua5iUjL130D1uoLjwCaZ1c6YBzIKQLhkleBPc6sLGPsZTt-EgOay4kXI-R58t33iSZdq9U8vnrNb9yLtaVwXHharZGv2XAxMA5qlp5jZYFCn9i4kioX_I-UUbsL5YxU0AOQkpNcpD6KXGC2ByA0iaVAUpjP5iHl-94c3Apiw8pAYZgOZnC3uueQb8lFdmUgKfJGpCyXJGI9ZmJDCAlO9iXp_KDN-3_7jfvBuCA0-GMsH3Ek-xtmUaTpVcUabRmQE-AVejGKKdc2Cq0OLwDSeaVvluzeJ91prqFQJTNg5fcA8IAv176ibagdn3IiM96REZPaKpR6mwSB0hdq4RYe8mrx9UsS1JYLQWWTkhM-VAugEtSicYhOSlwpGeudy0NLajHo86vnfnm1S-bGNlPsM6pLDhIpoxem-048RQPxmJLuDdaO6EDp6WsTFOH3sZjFtI4GBiFOHjS_DczPBvressDdtvLxGrk5XFjiRNtv8pXp-G1SXlMXwz-QeyQmYq6iv9VymYOig8h2NKNuYL1JpRpDFjZsY76YldzVfl1BXIv7VnhD73zyCrbpIeU3dgPKWGJUrd86p15hroAkPzpkLJaaVbhYSLxTilCfPJIyomEhSSOhNPP-pqNkBN2JIrXxIU2Ohn0-282SkQdkeu48lzCNA7F5vk_5-j2IDIwtZqs41VZD2wgOHVrVkcSek0dZkTOPjz_TRed6R3PqEI4U4LsPznO2nq697D-aHwBiyRJd1ntk2D8jk-JOWWQB8hx55uX3qe88T37A4GVa5E2SdquVsGWkIEbl-vKvLt50MnHYwYN5pFsy6tlXFuf77ytETeN6LUo6dM_r3pZmU6ZKjZo1OaJoCeOjIFZA3b3gaPB5TzLt_ALOE8t8ijYQGIXL99PLIvCdKunOoa5vuWJoncTSNL5Ov-zdrghvEeMrBfnP9bclXkSkdgNLSlMnnXcza9LVWAZ07-OQizPYn1ffxGQLS7y4-ejElGsJG12bEeAJk-PzJweiWGukaJQSiaBQYBRZHzpiSvx2pfgGQ3Fy7n4fJJ-03TGJ-hmJWZaQeB63Fcpv_0q0EhCH6hgUmgsmiBa5IUD_qX5YOQ875AUFFA8XS1BGcz9sQH7AzRWDwdZSB_NbiU-r91cL04rwRv44_kVZ0AuGGVGb7vEV6HAgKM_N0BMcEM67fv542ywxyG0UMCxpzMoiLPh2O--IJTpoAQhAm1ArpjagaYK5bSpfnC1vaTD0MUQuNovPMQiAyNICFrB-Ow3T8honzxZNOJUOTyx_dNC-26FBR8wEtQB39KhEWk0s96w9lGcnfiE7I0KDA2hggsLrfvtpzXZUTH9f4aC67Y-A3n3BO7TheB1hJPQR2RA48ILkK9IvXFamdVtsXq7xNT0xWfD30zVj0bUjtjpOtf7RrA3v4j4xdJCxPM7GoawZ1xCm6NYK6rk-eLbBg7QshY9U-yGdGLgBN8uN-cBRGzAWAhyYJ-QwCY5sRXBUt4xeS5SVzD6EtkpjnXfUQ0IpszB0t2m8yglqZIl4LIwln30EPGfsPjiQXxv1FEtmF9ga6r7yY79Ww0FSp8ja6m9H3Hma19YeJ2AiW2aod4rBdlTmS15gxNt6N0SdkFUS1YgqwaUNeslfuxNlyCEA8m2vGFGObrWQPegMvztPyPyxHbAtvGMbE-FzydVLhdEekIemBXsJ9dEnV5CTYFIDVgCKeaK6BmVZphGhTZq5c9zkFIfG8lxL935gD_hr3OtXjoEMY9GpYqBJajO2m6Pn5cbwb0tzLCEHBottlFo16NqVaDsqMKrrKkF-L25MmWaEYl5btGnz9oqUegzcx4GnpLX9QXdrsABPXh_lUgVANpPA0DT9dbqqU0EYKdzYfUg", "expiration": null, "created": null}, "subreddit_type": "user", "ups": 0, "domain": "https://rbnhd.co/jan-29", "domain_override": "https://rbnhd.co/jan-29", "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": false, "original_link": null, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": null, "can_mod_post": false, "promoted_display_name": null, "score": 0, "approved_by": null, "author_premium": true, "thumbnail": "https://b.thumbs.redditmedia.com/AK-P0j86ZS9Ht762M6Suy47cUnLnFlbP6J8N9M-INpQ.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-00bd5facfce0b76ac.wss.redditmedia.com/link/l8eh2o?m=AQAA9l4aYBjfzRnz9BgffLBqU-6aZusazGRkHpKEv9jQSWLIs39x", "gildings": {"gid_1": 64, "gid_3": 7}, "post_hint": "link", "sk_ad_network_data": null, "content_categories": null, "is_self": false, "removed_by": null, "is_blank": false, "created": 1612012147.0, "link_flair_type": "text", "wls": null, "third_party_tracking": null, "author_id": "t2_12bm51ff", "mobile_ad_url": "https://reddit-image.s3.amazonaws.com/IzVBu77CkU2TEvkdq5ym7ULRov8UOhlAtTBgeUkm1V0.jpg", "removed_by_category": null, "send_replies": false, "banned_by": null, "author_flair_type": "text", "total_awards_received": 308, "allow_live_comments": true, "selftext_html": null, "likes": null, "suggested_sort": "qa", "eventsOnRender": ["https://alb.reddit.com/i.gif?z=gAAAAABgGQ121vkBKlsH8nzCVFHdWmpfFGHQHUkjcFWr-1KA5D18LocupIHw3KIZMy4F7LqkFgG1LHYwabqgJbmb3RP91Aea0IrOgDd6LNIdK3e1c5hIag24_dok2diCaJqdY1WitFz79znkPSVi40U-8k7pcj_SVX3iO1_H6yV78vNGrKh5hWWTT_xKc3lpxFi8TM2Ldp9RK8aON6fYWN6XBIg7q8bRRWswVyWBjxZRdVlUJmBabXy9Nb1aiPJ8znZv6TrAgGx4yKo7l8r8fgKCexSNYZpIjokTXcc4mLcOxSC1qzKgHCaDg_Mbh7EbMpzuJMnzJCL130ZaG7LsyO106fu08GKE53Xu99AyV_g95K51UeF5VTZ52zVbhsE1CpNcvCIb7HdqlyTpiFIpHISGGLoW27h-CLvaJXpkKINdOr5jN-sVWHvJuoDNubAtnWkhOaDAfoKpfTxfSlLkTnoAQGl2m7y-GsDEKp0bUKw43xVxFaAfMyfiLhvsl8-pI1KLHOhwcm2WLRLUclP84KkPnN4bBqPfGvfNbgRtQoJdtHlczDzcgGR9Q8yOGvkvWN82quKxgAzZ-8H8g5Wr4b8sT6KNrFhoZrkDpIbJBlh_nAW7tBuCA6ocCp2_ruZjU1dPqwe948AWc4tvF0ayrSyrpsWICHPOcw_YOxOHL3s50KPYo48-lHeuV_bKHx4grqfcksH35TgQnb2yhzc7mpfpHwHx7x1DEBIsWMNxueGc3mRfYjByKlo-gmP5asXcpGTXCwiip1D_9CBEXMBhwJc4Dc8vNhMSFnLNqnPdJpIHl_08VrmGccz9oeEO6_3O03rfqcynS8Pn-zgCnu3J5S2BGHOd_nGxEEcgt_DV1cfVmiO8U1xVMiXt-8x6rcd0GMQxv_6VHsEXl6BhiKX6e1j1WELFlxYAfFLWFgHevAv-at6meiBNxmCBgWIpKWDpff66tuuyZB_pGo29zVqLJRoIt401eM-ubrQl7NBsjoN1oW3Kkk9rUEMp4zWiE_GWgO1TdAt0NQYc-VhkKONR_-esoYEqKOcrRTNRP9lNJoOqd01R8hxiNoT_ipSPz3drNZx2oRd7zvP29IMYcNlb0Kj7hyqkVNmWusbJoOhif0gBkbH90t9lvUCliyvtSTnNJ4BNk9-oC80_tHuoeGOimL4ODpXRjiDpDgy4e2MxQg9_GiWpVmu0-hXnMNVMVDYotSGXbJhkdhrEkrqEv6Nridn-g8F0m5Y-UbfwCnhLsdGbLClz-dPPdz2bLNqN4YjIqN711bfCsB-D2Kg6ravFSWu_zE9obj8gQkLo_r6NedGcEVtzd9DjYL0mV_yGBFBApJruVkTs3EWs508UdudVtzy2Co1GAx81JmHPFJRrjQtrefJwTdR3Tuys1jTQ_tsXSH_VksoNqjCwpmmuuRUXQYtYx2TXEPIHNwZZi4FnUr5N8TESG3LG_Ba1OGMd2QFfgAdzrb81NEZ17n7ysexkr0QGOghueXYk2UCvMC1tX3chUx_yibsmzdOkz-ZnSdLkllKk6iGizz8uGvGaGiOdSSYoRDSnwvL1NXTDvpd9_kTh1obSzDp9AMgcE5pGgyKSZLnhYtnwRLWhY_Y5RyTutzhSZDqZcDW1Qrq-tO78siN3b18jUAY7UZAj5U02Pabtb-aWNzM4GBdmN8AYqvQr_EQW2c5T07ybegowR5QOIb8VSRsGxtPiJqohjIvQe0NdH35mv5ORgyCa_sTkXKVowe96BpvW21cz4rwLl3BP7uyycqLhHtSzbT1K-9qOh2eF33PW8_yE53mjAT_fL38WrUH6-WOoCQagkfhduRJadgWBDgM61c5wTUD5rLknmoNO9V4MC-dMZLItuv_5cSzqgkNQhqPHMfc49TUM4_PkMbdr79-IIm_4ehlGRwC1jkamkpBvFsmSOgJLGjXFo_MEqQjGq94-IsVQzJ5dSViLI0yzEV4B5wDcs1WMRVXTnM2UUTuiNWkJJ0B_Z9HEe4bcaT50SWmeNalgZNnxl4Dmi6A_jHg0-md_Ea_d15WcxqYRLwiBjA-QY_ZgSysuYZiaRyow3Utlx04d05DIVQlOE6vLSOxEPYnCM1B9GMqAeKy4f_kbV-yjeRLDeBiGvnrqCOT8snAw5EX7dZ63w2KA-8nISeoJ0TZlsivbnUSN9VsGE8sOkrwqEbA9bl_mMdTI6Zc9hVv4MzAE_K4v5xVYRjW1IKua1EA7ldTOlAg-xh_P3vXrDgpUS6xVSFvBK2KYl09W-oqzNW-RAfLsnn1qhbJgmBkHM00vPzKF0etgonY48Y_7ZLm-IPzUXhpreDua8TAvwjOIoPkAGK0WWD9YIjQAQ6T5fJhzWSsOr-0-M1d72w4nTHpJcgbGkWpnWQ7BzpOQHaUH02os3zPnQ722JMX86zD4lxVZIc00AC3NGf1YJOG-K_9bfWaCJG_WIX8L3e9LzdlK2WWd_ZxcUf3TcWeWyAn3-rzys55xqFjBYZ5GLKUv23WuOCrIXsiQiK7VdKkIj0Aw3Emz_bx2D9H-DjANHg5tySEcoJY="], "banned_at_utc": null, "url_overridden_by_dest": "https://rbnhd.co/jan-29", "view_count": null, "archived": false, "no_follow": true, "is_crosspostable": false, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://external-preview.redd.it/IzVBu77CkU2TEvkdq5ym7ULRov8UOhlAtTBgeUkm1V0.jpg?auto=webp\u0026s=c52781e168b48fd102c36d16c1d156cbbb0c0818", "width": 2160, "height": 2160}, "resolutions": [{"url": "https://external-preview.redd.it/IzVBu77CkU2TEvkdq5ym7ULRov8UOhlAtTBgeUkm1V0.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=d7123a62f9ffc3c4a2ae4458759fd6fdd88e1dde", "width": 108, "height": 108}, {"url": "https://external-preview.redd.it/IzVBu77CkU2TEvkdq5ym7ULRov8UOhlAtTBgeUkm1V0.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=0c7cd531b8faa00f72ad1342c1c372dc3eeabcdb", "width": 216, "height": 216}, {"url": "https://external-preview.redd.it/IzVBu77CkU2TEvkdq5ym7ULRov8UOhlAtTBgeUkm1V0.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=c9f7ffafeb46cb905d5294596416920bc7ab4ea0", "width": 320, "height": 320}, {"url": "https://external-preview.redd.it/IzVBu77CkU2TEvkdq5ym7ULRov8UOhlAtTBgeUkm1V0.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=7054a835444d9fc81a837fb094f883bddf223d50", "width": 640, "height": 640}, {"url": "https://external-preview.redd.it/IzVBu77CkU2TEvkdq5ym7ULRov8UOhlAtTBgeUkm1V0.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=0ebc3f02bfc00d342ccaf06124571777be9a916d", "width": 960, "height": 960}, {"url": "https://external-preview.redd.it/IzVBu77CkU2TEvkdq5ym7ULRov8UOhlAtTBgeUkm1V0.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=67959370c8c3e2a0858b872c672d0351564329a2", "width": 1080, "height": 1080}], "variants": {}, "id": "https://reddit-image.s3.amazonaws.com/IzVBu77CkU2TEvkdq5ym7ULRov8UOhlAtTBgeUkm1V0.jpg"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 300, "id": "award_68ba1ee3-9baf-4252-be52-b808c1e8bdc4", "penny_donate": null, "award_sub_type": "GROUP", "coin_reward": 250, "icon_url": "https://i.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png", "days_of_premium": 0, "tiers_by_required_awardings": {"0": {"resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=16\u0026height=16\u0026auto=webp\u0026s=9c0a85437357b987e50ba727b67fcc53b0950c95", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=32\u0026height=32\u0026auto=webp\u0026s=773692cd146e84fddcc3d192b6ebb7e0ff8fa8bb", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=48\u0026height=48\u0026auto=webp\u0026s=597adeb2d7ab45cc61a726b7c7d6877d264ee33d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=64\u0026height=64\u0026auto=webp\u0026s=886636fb2fc59fc1c9a5e2d05cb3f2e0d42714b6", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=128\u0026height=128\u0026auto=webp\u0026s=28657eedaaa67c90c4b4a97d134fe607bb92c975", "width": 128, "height": 128}], "awardings_required": 0, "static_icon": {"url": "https://i.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png", "width": 2048, "format": null, "height": 2048}, "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=16\u0026height=16\u0026auto=webp\u0026s=9c0a85437357b987e50ba727b67fcc53b0950c95", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=32\u0026height=32\u0026auto=webp\u0026s=773692cd146e84fddcc3d192b6ebb7e0ff8fa8bb", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=48\u0026height=48\u0026auto=webp\u0026s=597adeb2d7ab45cc61a726b7c7d6877d264ee33d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=64\u0026height=64\u0026auto=webp\u0026s=886636fb2fc59fc1c9a5e2d05cb3f2e0d42714b6", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=128\u0026height=128\u0026auto=webp\u0026s=28657eedaaa67c90c4b4a97d134fe607bb92c975", "width": 128, "height": 128}], "icon": {"url": "https://i.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png", "width": 2048, "format": "PNG", "height": 2048}}, "9": {"resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/This_argentium_512.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/This_argentium_512.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/This_argentium_512.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/This_argentium_512.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/This_argentium_512.png", "width": 128, "height": 128}], "awardings_required": 9, "static_icon": {"url": "https://i.redd.it/award_images/t5_q0gj4/ceeqdqlwgqq51_ThisArgentium.jpg", "width": 2048, "format": null, "height": 2048}, "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/ceeqdqlwgqq51_ThisArgentium.jpg?width=16\u0026height=16\u0026auto=webp\u0026s=cc2d64c1d075d5b56c271e18fa12a2065051431b", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ceeqdqlwgqq51_ThisArgentium.jpg?width=32\u0026height=32\u0026auto=webp\u0026s=2c7203ff6dd93cbacb44c22f924fd158711a3329", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ceeqdqlwgqq51_ThisArgentium.jpg?width=48\u0026height=48\u0026auto=webp\u0026s=e5b8f3d232381249734ebd76dd5321d8f291944a", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ceeqdqlwgqq51_ThisArgentium.jpg?width=64\u0026height=64\u0026auto=webp\u0026s=e5cb76cb109d814185fa542e357c5c0e9aa5036b", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ceeqdqlwgqq51_ThisArgentium.jpg?width=128\u0026height=128\u0026auto=webp\u0026s=3359c9a307d45b81b095996d03c4ab512cb098a1", "width": 128, "height": 128}], "icon": {"url": "https://www.redditstatic.com/gold/awards/icon/This_argentium_512.png", "width": 2048, "format": "APNG", "height": 2048}}, "3": {"resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=16\u0026height=16\u0026auto=webp\u0026s=c03d4f83daf03bfc8a4341e2ad6b5a6d3c471cfe", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=32\u0026height=32\u0026auto=webp\u0026s=8a5328341618fe60ccb2b1ddd32561975793204a", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=48\u0026height=48\u0026auto=webp\u0026s=957b055444fd6231afb60b58aa95fe74505554f1", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=64\u0026height=64\u0026auto=webp\u0026s=e4a23a37adf97381673eac6bdd7a52ebc69f8fe4", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=128\u0026height=128\u0026auto=webp\u0026s=092eed0465f28509f0ab7e9a56cdbf826b812555", "width": 128, "height": 128}], "awardings_required": 3, "static_icon": {"url": "https://i.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png", "width": 2048, "format": null, "height": 2048}, "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=16\u0026height=16\u0026auto=webp\u0026s=c03d4f83daf03bfc8a4341e2ad6b5a6d3c471cfe", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=32\u0026height=32\u0026auto=webp\u0026s=8a5328341618fe60ccb2b1ddd32561975793204a", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=48\u0026height=48\u0026auto=webp\u0026s=957b055444fd6231afb60b58aa95fe74505554f1", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=64\u0026height=64\u0026auto=webp\u0026s=e4a23a37adf97381673eac6bdd7a52ebc69f8fe4", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png?width=128\u0026height=128\u0026auto=webp\u0026s=092eed0465f28509f0ab7e9a56cdbf826b812555", "width": 128, "height": 128}], "icon": {"url": "https://i.redd.it/award_images/t5_q0gj4/h9u2ml36hqq51_ThisGold.png", "width": 2048, "format": "PNG", "height": 2048}}, "6": {"resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/This_platinum_512.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/This_platinum_512.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/This_platinum_512.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/This_platinum_512.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/This_platinum_512.png", "width": 128, "height": 128}], "awardings_required": 6, "static_icon": {"url": "https://i.redd.it/award_images/t5_q0gj4/yx7ed010fqq51_ThisPlatinum.png", "width": 2048, "format": null, "height": 2048}, "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/yx7ed010fqq51_ThisPlatinum.png?width=16\u0026height=16\u0026auto=webp\u0026s=76f2f547bdbbf86d19102099ccc024277c7673ef", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/yx7ed010fqq51_ThisPlatinum.png?width=32\u0026height=32\u0026auto=webp\u0026s=3cc88e042abbb716b059f9f3c2d58b8667fc5e03", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/yx7ed010fqq51_ThisPlatinum.png?width=48\u0026height=48\u0026auto=webp\u0026s=63ce35d010ce32d32a15d792a32cba39f7b95519", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/yx7ed010fqq51_ThisPlatinum.png?width=64\u0026height=64\u0026auto=webp\u0026s=ddb817cacf22f2ee855e7263445b8613e8f2a718", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/yx7ed010fqq51_ThisPlatinum.png?width=128\u0026height=128\u0026auto=webp\u0026s=39ff319c1aab711b02f581a4b36ecf2663c72463", "width": 128, "height": 128}], "icon": {"url": "https://www.redditstatic.com/gold/awards/icon/This_platinum_512.png", "width": 2048, "format": "APNG", "height": 2048}}}, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=16\u0026height=16\u0026auto=webp\u0026s=9c0a85437357b987e50ba727b67fcc53b0950c95", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=32\u0026height=32\u0026auto=webp\u0026s=773692cd146e84fddcc3d192b6ebb7e0ff8fa8bb", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=48\u0026height=48\u0026auto=webp\u0026s=597adeb2d7ab45cc61a726b7c7d6877d264ee33d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=64\u0026height=64\u0026auto=webp\u0026s=886636fb2fc59fc1c9a5e2d05cb3f2e0d42714b6", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=128\u0026height=128\u0026auto=webp\u0026s=28657eedaaa67c90c4b4a97d134fe607bb92c975", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": 3, "description": "THIS right here! Join together to give multiple This awards and see the award evolve in its display and shower benefits for the recipient. For every 3 This awards given to a post or comment, the author will get 250 coins.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "This", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=16\u0026height=16\u0026auto=webp\u0026s=9c0a85437357b987e50ba727b67fcc53b0950c95", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=32\u0026height=32\u0026auto=webp\u0026s=773692cd146e84fddcc3d192b6ebb7e0ff8fa8bb", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=48\u0026height=48\u0026auto=webp\u0026s=597adeb2d7ab45cc61a726b7c7d6877d264ee33d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=64\u0026height=64\u0026auto=webp\u0026s=886636fb2fc59fc1c9a5e2d05cb3f2e0d42714b6", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png?width=128\u0026height=128\u0026auto=webp\u0026s=28657eedaaa67c90c4b4a97d134fe607bb92c975", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/vu6om0xnb7e41_This.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 75, "id": "award_75f9bc56-eba3-4988-a1af-aec974404a0b", "penny_donate": 0, "award_sub_type": "GROUP", "coin_reward": 100, "icon_url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_silver_512.png", "days_of_premium": 7, "tiers_by_required_awardings": {"0": {"resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_silver_128.png", "width": 128, "height": 128}], "awardings_required": 0, "static_icon": {"url": "https://i.redd.it/award_images/t5_q0gj4/xbx2vd6y44u51_TrainSilver.png", "width": 512, "format": null, "height": 512}, "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/xbx2vd6y44u51_TrainSilver.png?width=16\u0026height=16\u0026auto=webp\u0026s=faa454df7da3b43b4e2d755ead6a31724602c166", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/xbx2vd6y44u51_TrainSilver.png?width=32\u0026height=32\u0026auto=webp\u0026s=8a1fd79b59dcc36e0ee841e40aa4e3c42e32ea3b", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/xbx2vd6y44u51_TrainSilver.png?width=48\u0026height=48\u0026auto=webp\u0026s=d97e43592bb1d9a0f4e6a265cde6e8801c950166", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/xbx2vd6y44u51_TrainSilver.png?width=64\u0026height=64\u0026auto=webp\u0026s=bc497fcbcde120143f36218f2fd98fad576d36eb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/xbx2vd6y44u51_TrainSilver.png?width=128\u0026height=128\u0026auto=webp\u0026s=2c7851c643c4117cd8a48675fe7adbba72f50996", "width": 128, "height": 128}], "icon": {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_silver_512.png", "width": 512, "format": "APNG", "height": 512}}, "25": {"resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_argentium_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_argentium_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_argentium_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_argentium_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_argentium_128.png", "width": 128, "height": 128}], "awardings_required": 25, "static_icon": {"url": "https://i.redd.it/award_images/t5_q0gj4/etm7rvjw54u51_TrainArgentium.png", "width": 512, "format": null, "height": 512}, "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/etm7rvjw54u51_TrainArgentium.png?width=16\u0026height=16\u0026auto=webp\u0026s=03d7fd62a30c03f68e426a534327798bf9a3fcef", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/etm7rvjw54u51_TrainArgentium.png?width=32\u0026height=32\u0026auto=webp\u0026s=91074dee4f44b77b5e7ae659433ee4bc1fde082b", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/etm7rvjw54u51_TrainArgentium.png?width=48\u0026height=48\u0026auto=webp\u0026s=b25aca0813790be094a3a8beefc13e0f4ddd0c13", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/etm7rvjw54u51_TrainArgentium.png?width=64\u0026height=64\u0026auto=webp\u0026s=1f215da959f9d1aba73a16d688126fccd615816f", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/etm7rvjw54u51_TrainArgentium.png?width=128\u0026height=128\u0026auto=webp\u0026s=83e473b8d8765db0cbe181a98258dd1ed855869b", "width": 128, "height": 128}], "icon": {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_argentium_512.png", "width": 512, "format": "APNG", "height": 512}}, "10": {"resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_platinum_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_platinum_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_platinum_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_platinum_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_platinum_128.png", "width": 128, "height": 128}], "awardings_required": 10, "static_icon": {"url": "https://i.redd.it/award_images/t5_q0gj4/o2dha4fp54u51_TrainPlatinum.png", "width": 512, "format": null, "height": 512}, "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/o2dha4fp54u51_TrainPlatinum.png?width=16\u0026height=16\u0026auto=webp\u0026s=90637ae14846c9c34011590fd67f084fdfb1b5db", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/o2dha4fp54u51_TrainPlatinum.png?width=32\u0026height=32\u0026auto=webp\u0026s=01f692784f840352bac011538f92b0fd0180f69c", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/o2dha4fp54u51_TrainPlatinum.png?width=48\u0026height=48\u0026auto=webp\u0026s=35df7c51dbda51e74f747e9f19cbaaeb7af3985f", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/o2dha4fp54u51_TrainPlatinum.png?width=64\u0026height=64\u0026auto=webp\u0026s=4818cc5bc66265701cdb2ae295bb8f07f1c7496c", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/o2dha4fp54u51_TrainPlatinum.png?width=128\u0026height=128\u0026auto=webp\u0026s=55cbeb1d88bcafc5fc6460aab71100a18a6496a4", "width": 128, "height": 128}], "icon": {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_platinum_512.png", "width": 512, "format": "APNG", "height": 512}}, "5": {"resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_gold_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_gold_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_gold_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_gold_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_gold_128.png", "width": 128, "height": 128}], "awardings_required": 5, "static_icon": {"url": "https://i.redd.it/award_images/t5_q0gj4/ce3tsut554u51_TrainGold.png", "width": 512, "format": null, "height": 512}, "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/ce3tsut554u51_TrainGold.png?width=16\u0026height=16\u0026auto=webp\u0026s=55aaac1fed99cd3553222e69d6b15756d4a18308", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ce3tsut554u51_TrainGold.png?width=32\u0026height=32\u0026auto=webp\u0026s=973b8cacabb4ee0b5ee485621d5b91f24776ca51", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ce3tsut554u51_TrainGold.png?width=48\u0026height=48\u0026auto=webp\u0026s=71673485ab84e0344224201906a910a8322c5927", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ce3tsut554u51_TrainGold.png?width=64\u0026height=64\u0026auto=webp\u0026s=8df7de5ebab5b2cd63190f6f127a9ec316a7987b", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ce3tsut554u51_TrainGold.png?width=128\u0026height=128\u0026auto=webp\u0026s=89398c324212bdfd9b8488cca76b758c8d067eaa", "width": 128, "height": 128}], "icon": {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_gold_512.png", "width": 512, "format": "APNG", "height": 512}}}, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/Train/Train_silver_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": 5, "description": "All aboard! Every five Party Train Awards gives the author 100 Reddit Coins and a week of r/lounge access and ad-free browsing. Rack up the awards and watch the train level-up!", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Party Train", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/v3wyujfap4p51_SuperMedalTrain.png?width=16\u0026height=16\u0026auto=webp\u0026s=8dd42337b17978797a26e949e5ca79bceb9fd5f1", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v3wyujfap4p51_SuperMedalTrain.png?width=32\u0026height=32\u0026auto=webp\u0026s=0ab52a25aa7d96fa78b4f7827d511a14ce51e027", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v3wyujfap4p51_SuperMedalTrain.png?width=48\u0026height=48\u0026auto=webp\u0026s=8dfed57e9de943c09fca5d61d806ebea2d4be5ad", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v3wyujfap4p51_SuperMedalTrain.png?width=64\u0026height=64\u0026auto=webp\u0026s=c333a61e7ae43c3dd884a177bf864fbbffc8a509", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v3wyujfap4p51_SuperMedalTrain.png?width=128\u0026height=128\u0026auto=webp\u0026s=e553cadbf4e8f30b2147bb69809c4591209a2009", "width": 128, "height": 128}], "icon_format": "APNG", "icon_height": 512, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/v3wyujfap4p51_SuperMedalTrain.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 31, "coin_price": 1800, "id": "gid_3", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/platinum_512.png", "days_of_premium": 31, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/platinum_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Gives 700 Reddit Coins and a month of r/lounge access and ad-free browsing.", "end_date": null, "subreddit_coin_reward": 0, "count": 7, "static_icon_height": 512, "name": "Platinum", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/platinum_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/platinum_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 325, "id": "award_2bc47247-b107-44a8-a78c-613da21869ff", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/Rocket_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/Rocket_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/Rocket_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/Rocket_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/Rocket_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/Rocket_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Boldly go where we haven't been in a long, long time.", "end_date": null, "subreddit_coin_reward": 0, "count": 2, "static_icon_height": 512, "name": "To The Stars", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/1sof6d93g9e51_ToTheStars.png?width=16\u0026height=16\u0026auto=webp\u0026s=83d4d953873a31c0e3e4a0f0b188ff803bb6b92a", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/1sof6d93g9e51_ToTheStars.png?width=32\u0026height=32\u0026auto=webp\u0026s=ec9beb8a11f28bbfb3144bd6edac145af0909baa", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/1sof6d93g9e51_ToTheStars.png?width=48\u0026height=48\u0026auto=webp\u0026s=82b887ba042297c5b22a7faecec4721bf2dc354d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/1sof6d93g9e51_ToTheStars.png?width=64\u0026height=64\u0026auto=webp\u0026s=545d53613ea7e025301bfa49f38d1981d86ee001", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/1sof6d93g9e51_ToTheStars.png?width=128\u0026height=128\u0026auto=webp\u0026s=878ea0423f2a9a57a0750e2fbe26bf482be5c8c3", "width": 128, "height": 128}], "icon_format": "APNG", "icon_height": 512, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/1sof6d93g9e51_ToTheStars.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 325, "id": "award_9f928aff-c9f5-4e7e-aa91-8619dce60f1c", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/TableSlap_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/TableSlap_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/TableSlap_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/TableSlap_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/TableSlap_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/TableSlap_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When laughter meets percussion", "end_date": null, "subreddit_coin_reward": 0, "count": 5, "static_icon_height": 512, "name": "Table Slap", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/a88w7nm8g9e51_TableSlap.png?width=16\u0026height=16\u0026auto=webp\u0026s=994f9f96e2d6f58953ea691c6ada1cb71915afef", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/a88w7nm8g9e51_TableSlap.png?width=32\u0026height=32\u0026auto=webp\u0026s=fc707b848214f4d6f5ce5ba15ba152f258c8ee5b", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/a88w7nm8g9e51_TableSlap.png?width=48\u0026height=48\u0026auto=webp\u0026s=b4928f25293343f16a3878caf267c784276527e3", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/a88w7nm8g9e51_TableSlap.png?width=64\u0026height=64\u0026auto=webp\u0026s=77f3d1e6b823a6680ce5941940286b9c9d6c63fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/a88w7nm8g9e51_TableSlap.png?width=128\u0026height=128\u0026auto=webp\u0026s=f6f2dabda59c3ce60853beb53575cd1a71723e5d", "width": 128, "height": 128}], "icon_format": "APNG", "icon_height": 512, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/a88w7nm8g9e51_TableSlap.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 325, "id": "award_3409a4c0-ba69-43a0-be9f-27bc27c159cc", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/Spits_drink_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/Spits_drink_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/Spits_drink_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/Spits_drink_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/Spits_drink_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/Spits_drink_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Shower them with laughs", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Spit-take", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5virpo8iwsj51_Spit-take.png?width=16\u0026height=16\u0026auto=webp\u0026s=5e4ae566eadac1eb432a2b815122df6c45ca325c", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5virpo8iwsj51_Spit-take.png?width=32\u0026height=32\u0026auto=webp\u0026s=5321848d56e639b0f508ff003cf7f70d61868057", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5virpo8iwsj51_Spit-take.png?width=48\u0026height=48\u0026auto=webp\u0026s=85e863bbb5a3628570bb27de292e7d886c7231a8", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5virpo8iwsj51_Spit-take.png?width=64\u0026height=64\u0026auto=webp\u0026s=5cc72a3a77d5effbe376c0c1a151edf7ab8cb152", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5virpo8iwsj51_Spit-take.png?width=128\u0026height=128\u0026auto=webp\u0026s=c44b55c07d6f6abdcafc0feae98b4efe6875655c", "width": 128, "height": 128}], "icon_format": "APNG", "icon_height": 512, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/5virpo8iwsj51_Spit-take.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 300, "id": "award_3e000ecb-c1a4-49dc-af14-c8ac2029ca97", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=16\u0026height=16\u0026auto=webp\u0026s=3580dc2a3e7fbc57a18c6305f80378a0d9ac9a5a", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=32\u0026height=32\u0026auto=webp\u0026s=1cedcdcac344c8ecacb05ecfffa82dbf9c83a302", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=48\u0026height=48\u0026auto=webp\u0026s=980829d9fab5d2684c719d332321f00e0774ee58", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=64\u0026height=64\u0026auto=webp\u0026s=a7c8f34bcb80ffa4ba37eb14494a6e83f528255c", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=128\u0026height=128\u0026auto=webp\u0026s=f93579029005b0d9daa3e556d5a13755b25cff3d", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "ARGH!", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Table Flip", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=16\u0026height=16\u0026auto=webp\u0026s=3580dc2a3e7fbc57a18c6305f80378a0d9ac9a5a", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=32\u0026height=32\u0026auto=webp\u0026s=1cedcdcac344c8ecacb05ecfffa82dbf9c83a302", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=48\u0026height=48\u0026auto=webp\u0026s=980829d9fab5d2684c719d332321f00e0774ee58", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=64\u0026height=64\u0026auto=webp\u0026s=a7c8f34bcb80ffa4ba37eb14494a6e83f528255c", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png?width=128\u0026height=128\u0026auto=webp\u0026s=f93579029005b0d9daa3e556d5a13755b25cff3d", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/a05z7bb9v7i51_TableFlip.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 200, "id": "award_d125d124-5c03-490d-af3d-d07c462003da", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=16\u0026height=16\u0026auto=webp\u0026s=3bdbd7660aa0164072a243b6df9100da769e8278", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=32\u0026height=32\u0026auto=webp\u0026s=30aa8ad7b30c73defb1b1b49dc055f42c8c39fcc", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=48\u0026height=48\u0026auto=webp\u0026s=a5109b271dbe4f27927ee8bac7f23d1962a44936", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=64\u0026height=64\u0026auto=webp\u0026s=6d6ca632d8c63e6d4e41ff8dbe4600528a4445b2", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=128\u0026height=128\u0026auto=webp\u0026s=1f2ed12b4e132e68d553c702d6639a3dc065821c", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "To the MOON.", "end_date": null, "subreddit_coin_reward": 0, "count": 2, "static_icon_height": 2048, "name": "Stonks Rising", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=16\u0026height=16\u0026auto=webp\u0026s=3bdbd7660aa0164072a243b6df9100da769e8278", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=32\u0026height=32\u0026auto=webp\u0026s=30aa8ad7b30c73defb1b1b49dc055f42c8c39fcc", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=48\u0026height=48\u0026auto=webp\u0026s=a5109b271dbe4f27927ee8bac7f23d1962a44936", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=64\u0026height=64\u0026auto=webp\u0026s=6d6ca632d8c63e6d4e41ff8dbe4600528a4445b2", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png?width=128\u0026height=128\u0026auto=webp\u0026s=1f2ed12b4e132e68d553c702d6639a3dc065821c", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/s5edqq9abef41_StonksRising.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 200, "id": "award_9ee30a8f-463e-4ef7-9da9-a09f270ec026", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/ree13odobef41_StonksFalling.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/ree13odobef41_StonksFalling.png?width=16\u0026height=16\u0026auto=webp\u0026s=295f139b77addd2b2728f21d55c4b047138478ec", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/ree13odobef41_StonksFalling.png?width=32\u0026height=32\u0026auto=webp\u0026s=ceb666a09bfec10e5c901ff94e5260d9b19ec1db", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/ree13odobef41_StonksFalling.png?width=48\u0026height=48\u0026auto=webp\u0026s=bc4bcb18bc259699d9bdef9d6315699e4e82b65a", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/ree13odobef41_StonksFalling.png?width=64\u0026height=64\u0026auto=webp\u0026s=ead607549b0811e0a7f26effdbb4ffdb87a00577", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/ree13odobef41_StonksFalling.png?width=128\u0026height=128\u0026auto=webp\u0026s=727fc8016de6f90c57d1442dad9a6f92193dbe3a", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Losing value fast.", "end_date": null, "subreddit_coin_reward": 0, "count": 21, "static_icon_height": 2048, "name": "Stonks Falling", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/ree13odobef41_StonksFalling.png?width=16\u0026height=16\u0026auto=webp\u0026s=295f139b77addd2b2728f21d55c4b047138478ec", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/ree13odobef41_StonksFalling.png?width=32\u0026height=32\u0026auto=webp\u0026s=ceb666a09bfec10e5c901ff94e5260d9b19ec1db", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/ree13odobef41_StonksFalling.png?width=48\u0026height=48\u0026auto=webp\u0026s=bc4bcb18bc259699d9bdef9d6315699e4e82b65a", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/ree13odobef41_StonksFalling.png?width=64\u0026height=64\u0026auto=webp\u0026s=ead607549b0811e0a7f26effdbb4ffdb87a00577", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/ree13odobef41_StonksFalling.png?width=128\u0026height=128\u0026auto=webp\u0026s=727fc8016de6f90c57d1442dad9a6f92193dbe3a", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/ree13odobef41_StonksFalling.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 150, "id": "award_f44611f1-b89e-46dc-97fe-892280b13b82", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Thank you stranger. Shows the award.", "end_date": null, "subreddit_coin_reward": 0, "count": 53, "static_icon_height": 2048, "name": "Helpful", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 125, "id": "award_5f123e3d-4f48-42f4-9c11-e98b566d5897", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When you come across a feel-good thing.", "end_date": null, "subreddit_coin_reward": 0, "count": 53, "static_icon_height": 2048, "name": "Wholesome", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "gid_1", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Shows the Silver Award... and that's it.", "end_date": null, "subreddit_coin_reward": 0, "count": 64, "static_icon_height": 512, "name": "Silver", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "award_ae89e420-c4a5-47b8-a007-5dacf1c0f0d4", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/iq0sgwn5bzy41_LawyerUp.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/iq0sgwn5bzy41_LawyerUp.png?width=16\u0026height=16\u0026auto=webp\u0026s=ff64bafcfea7a3483d3520608240237ae2cdb7f2", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/iq0sgwn5bzy41_LawyerUp.png?width=32\u0026height=32\u0026auto=webp\u0026s=2b585c0d2a40903b318151cd3fe37d25b4552b25", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/iq0sgwn5bzy41_LawyerUp.png?width=48\u0026height=48\u0026auto=webp\u0026s=28b8b7b9bea65dcd3292119e1550f8ed6f877473", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/iq0sgwn5bzy41_LawyerUp.png?width=64\u0026height=64\u0026auto=webp\u0026s=1fc29b4148ab63771077616d845b06e8cf077d22", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/iq0sgwn5bzy41_LawyerUp.png?width=128\u0026height=128\u0026auto=webp\u0026s=08e54ccf99afab03be718f988ed841988f6562c3", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "OBJECTION!", "end_date": null, "subreddit_coin_reward": 0, "count": 6, "static_icon_height": 2048, "name": "Lawyer Up", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/iq0sgwn5bzy41_LawyerUp.png?width=16\u0026height=16\u0026auto=webp\u0026s=ff64bafcfea7a3483d3520608240237ae2cdb7f2", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/iq0sgwn5bzy41_LawyerUp.png?width=32\u0026height=32\u0026auto=webp\u0026s=2b585c0d2a40903b318151cd3fe37d25b4552b25", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/iq0sgwn5bzy41_LawyerUp.png?width=48\u0026height=48\u0026auto=webp\u0026s=28b8b7b9bea65dcd3292119e1550f8ed6f877473", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/iq0sgwn5bzy41_LawyerUp.png?width=64\u0026height=64\u0026auto=webp\u0026s=1fc29b4148ab63771077616d845b06e8cf077d22", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/iq0sgwn5bzy41_LawyerUp.png?width=128\u0026height=128\u0026auto=webp\u0026s=08e54ccf99afab03be718f988ed841988f6562c3", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/iq0sgwn5bzy41_LawyerUp.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "award_03c4f93d-efc7-463b-98a7-c01814462ab0", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/ww5x9ebd78361_PolarDissapoint.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/ww5x9ebd78361_PolarDissapoint.png?width=16\u0026height=16\u0026auto=webp\u0026s=da4665ea8882f1f054a95635819744cce1846564", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ww5x9ebd78361_PolarDissapoint.png?width=32\u0026height=32\u0026auto=webp\u0026s=a88268843dd0113cc5e28267517b02253abba908", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ww5x9ebd78361_PolarDissapoint.png?width=48\u0026height=48\u0026auto=webp\u0026s=a65be6083e902d03f34ef8cf5fe7b2c47c506220", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ww5x9ebd78361_PolarDissapoint.png?width=64\u0026height=64\u0026auto=webp\u0026s=6bf1fc13524141f1078e22098150edbbaf7fd585", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ww5x9ebd78361_PolarDissapoint.png?width=128\u0026height=128\u0026auto=webp\u0026s=8d8a260ab6580721d052cd3866be854fe7ebb29f", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "I'm not mad, I'm just disappointed.", "end_date": null, "subreddit_coin_reward": 0, "count": 5, "static_icon_height": 2048, "name": "I am disappoint", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/ww5x9ebd78361_PolarDissapoint.png?width=16\u0026height=16\u0026auto=webp\u0026s=da4665ea8882f1f054a95635819744cce1846564", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ww5x9ebd78361_PolarDissapoint.png?width=32\u0026height=32\u0026auto=webp\u0026s=a88268843dd0113cc5e28267517b02253abba908", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ww5x9ebd78361_PolarDissapoint.png?width=48\u0026height=48\u0026auto=webp\u0026s=a65be6083e902d03f34ef8cf5fe7b2c47c506220", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ww5x9ebd78361_PolarDissapoint.png?width=64\u0026height=64\u0026auto=webp\u0026s=6bf1fc13524141f1078e22098150edbbaf7fd585", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/ww5x9ebd78361_PolarDissapoint.png?width=128\u0026height=128\u0026auto=webp\u0026s=8d8a260ab6580721d052cd3866be854fe7ebb29f", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/ww5x9ebd78361_PolarDissapoint.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "award_81cf5c92-8500-498c-9c94-3e4034cece0a", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=16\u0026height=16\u0026auto=webp\u0026s=5ef2e0d3bc325a7e1fb2d22c1fec1e6b4b6fc745", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=32\u0026height=32\u0026auto=webp\u0026s=4932a768430215109c262c88950bcba46e9e1b23", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=48\u0026height=48\u0026auto=webp\u0026s=287f90bae451c50dfa5076e5e70c30f7396421b2", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=64\u0026height=64\u0026auto=webp\u0026s=4313a1836086f33447b60d11d3d16cf2c57d20de", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=128\u0026height=128\u0026auto=webp\u0026s=b32edce435e22d111c10cdebeefd2e49ece8b6e4", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Staring into the abyss and it's staring right back", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Dread", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=16\u0026height=16\u0026auto=webp\u0026s=5ef2e0d3bc325a7e1fb2d22c1fec1e6b4b6fc745", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=32\u0026height=32\u0026auto=webp\u0026s=4932a768430215109c262c88950bcba46e9e1b23", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=48\u0026height=48\u0026auto=webp\u0026s=287f90bae451c50dfa5076e5e70c30f7396421b2", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=64\u0026height=64\u0026auto=webp\u0026s=4313a1836086f33447b60d11d3d16cf2c57d20de", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png?width=128\u0026height=128\u0026auto=webp\u0026s=b32edce435e22d111c10cdebeefd2e49ece8b6e4", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/nvfe4gyawnf51_Dread.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "award_abcdefe4-c92f-4c66-880f-425962d17098", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/kqr00h8b7q161_BurningCash.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/kqr00h8b7q161_BurningCash.png?width=16\u0026height=16\u0026auto=webp\u0026s=26e20b03316dade0c334e0dc94bffefc9b5aa631", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/kqr00h8b7q161_BurningCash.png?width=32\u0026height=32\u0026auto=webp\u0026s=a837f262573009bb5e05d09136fff6e562b8b5ff", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/kqr00h8b7q161_BurningCash.png?width=48\u0026height=48\u0026auto=webp\u0026s=786cf9e11fd170c638b5c643b7ded488da4385b1", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/kqr00h8b7q161_BurningCash.png?width=64\u0026height=64\u0026auto=webp\u0026s=8d95e824d8b33ef5a3b3ba65e5cf80c45728a1a1", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/kqr00h8b7q161_BurningCash.png?width=128\u0026height=128\u0026auto=webp\u0026s=8575d3ac8befa3b39a4d25eb93cac40867b415cb", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "I don't need it, I don't even necessarily want it, but I've got some cash to burn so I'm gonna get it.", "end_date": null, "subreddit_coin_reward": 0, "count": 8, "static_icon_height": 2048, "name": "Burning Cash", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/kqr00h8b7q161_BurningCash.png?width=16\u0026height=16\u0026auto=webp\u0026s=26e20b03316dade0c334e0dc94bffefc9b5aa631", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/kqr00h8b7q161_BurningCash.png?width=32\u0026height=32\u0026auto=webp\u0026s=a837f262573009bb5e05d09136fff6e562b8b5ff", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/kqr00h8b7q161_BurningCash.png?width=48\u0026height=48\u0026auto=webp\u0026s=786cf9e11fd170c638b5c643b7ded488da4385b1", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/kqr00h8b7q161_BurningCash.png?width=64\u0026height=64\u0026auto=webp\u0026s=8d95e824d8b33ef5a3b3ba65e5cf80c45728a1a1", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/kqr00h8b7q161_BurningCash.png?width=128\u0026height=128\u0026auto=webp\u0026s=8575d3ac8befa3b39a4d25eb93cac40867b415cb", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/kqr00h8b7q161_BurningCash.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 80, "id": "award_8352bdff-3e03-4189-8a08-82501dd8f835", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Everything is better with a good hug", "end_date": null, "subreddit_coin_reward": 0, "count": 71, "static_icon_height": 2048, "name": "Hugz", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 70, "id": "award_99d95969-6100-45b2-b00c-0ec45ae19596", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/rc5iesz2z8t41_Snek.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/rc5iesz2z8t41_Snek.png?width=16\u0026height=16\u0026auto=webp\u0026s=ff94d9e3eb38878a038b2568c06b58e809d7f0f5", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/rc5iesz2z8t41_Snek.png?width=32\u0026height=32\u0026auto=webp\u0026s=2dcdf8ac6a205b6e93b0fb31012044b66f3f4186", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/rc5iesz2z8t41_Snek.png?width=48\u0026height=48\u0026auto=webp\u0026s=3d8d317fd0e68c3f2696425efb7a5bc85b6f7603", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/rc5iesz2z8t41_Snek.png?width=64\u0026height=64\u0026auto=webp\u0026s=a54e710bdf1bc88eb1bb2da67d1ecf813f1707be", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/rc5iesz2z8t41_Snek.png?width=128\u0026height=128\u0026auto=webp\u0026s=b564b07d31245f583542d97aa99f58e9dadaed2f", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "A smol, delicate danger noodle.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Snek", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/rc5iesz2z8t41_Snek.png?width=16\u0026height=16\u0026auto=webp\u0026s=ff94d9e3eb38878a038b2568c06b58e809d7f0f5", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/rc5iesz2z8t41_Snek.png?width=32\u0026height=32\u0026auto=webp\u0026s=2dcdf8ac6a205b6e93b0fb31012044b66f3f4186", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/rc5iesz2z8t41_Snek.png?width=48\u0026height=48\u0026auto=webp\u0026s=3d8d317fd0e68c3f2696425efb7a5bc85b6f7603", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/rc5iesz2z8t41_Snek.png?width=64\u0026height=64\u0026auto=webp\u0026s=a54e710bdf1bc88eb1bb2da67d1ecf813f1707be", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/rc5iesz2z8t41_Snek.png?width=128\u0026height=128\u0026auto=webp\u0026s=b564b07d31245f583542d97aa99f58e9dadaed2f", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/rc5iesz2z8t41_Snek.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 70, "id": "award_b1b44fa1-8179-4d84-a9ed-f25bb81f1c5f", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/ey2iodron2s41_Facepalm.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/ey2iodron2s41_Facepalm.png?width=16\u0026height=16\u0026auto=webp\u0026s=d06b7de23ce8b8ea0f3e7cfd15033ac4893b72f0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/ey2iodron2s41_Facepalm.png?width=32\u0026height=32\u0026auto=webp\u0026s=9c08ea897b5caa9a70e315e13df5b4a3ba33246e", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/ey2iodron2s41_Facepalm.png?width=48\u0026height=48\u0026auto=webp\u0026s=3971718e2c95e4869756cbdbe9e996719ed2dcc2", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/ey2iodron2s41_Facepalm.png?width=64\u0026height=64\u0026auto=webp\u0026s=37daf6131baa13b786daeb564ef67963874bdce0", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/ey2iodron2s41_Facepalm.png?width=128\u0026height=128\u0026auto=webp\u0026s=696adda035a7fd96e7688edeea93ad1b16d4ab1a", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "*Lowers face into palm*", "end_date": null, "subreddit_coin_reward": 0, "count": 3, "static_icon_height": 2048, "name": "Facepalm", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/ey2iodron2s41_Facepalm.png?width=16\u0026height=16\u0026auto=webp\u0026s=d06b7de23ce8b8ea0f3e7cfd15033ac4893b72f0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/ey2iodron2s41_Facepalm.png?width=32\u0026height=32\u0026auto=webp\u0026s=9c08ea897b5caa9a70e315e13df5b4a3ba33246e", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/ey2iodron2s41_Facepalm.png?width=48\u0026height=48\u0026auto=webp\u0026s=3971718e2c95e4869756cbdbe9e996719ed2dcc2", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/ey2iodron2s41_Facepalm.png?width=64\u0026height=64\u0026auto=webp\u0026s=37daf6131baa13b786daeb564ef67963874bdce0", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/ey2iodron2s41_Facepalm.png?width=128\u0026height=128\u0026auto=webp\u0026s=696adda035a7fd96e7688edeea93ad1b16d4ab1a", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/ey2iodron2s41_Facepalm.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 50, "id": "award_02d9ab2c-162e-4c01-8438-317a016ed3d9", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=16\u0026height=16\u0026auto=webp\u0026s=045db73f47a9513c44823d132b4c393ab9241b6a", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=32\u0026height=32\u0026auto=webp\u0026s=298a02e0edbb5b5e293087eeede63802cbe1d2c7", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=48\u0026height=48\u0026auto=webp\u0026s=7d06d606eb23dbcd6dbe39ee0e60588c5eb89065", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=64\u0026height=64\u0026auto=webp\u0026s=ecd9854b14104a36a210028c43420f0dababd96b", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=128\u0026height=128\u0026auto=webp\u0026s=0d5d7b92c1d66aff435f2ad32e6330ca2b971f6d", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "I'm in this with you.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Take My Energy", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=16\u0026height=16\u0026auto=webp\u0026s=045db73f47a9513c44823d132b4c393ab9241b6a", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=32\u0026height=32\u0026auto=webp\u0026s=298a02e0edbb5b5e293087eeede63802cbe1d2c7", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=48\u0026height=48\u0026auto=webp\u0026s=7d06d606eb23dbcd6dbe39ee0e60588c5eb89065", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=64\u0026height=64\u0026auto=webp\u0026s=ecd9854b14104a36a210028c43420f0dababd96b", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=128\u0026height=128\u0026auto=webp\u0026s=0d5d7b92c1d66aff435f2ad32e6330ca2b971f6d", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 50, "id": "award_69c94eb4-d6a3-48e7-9cf2-0f39fed8b87c", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/5nswjpyy44551_Ally.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5nswjpyy44551_Ally.png?width=16\u0026height=16\u0026auto=webp\u0026s=bb033b3352b6ece0954d279a56f99e16c67abe14", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5nswjpyy44551_Ally.png?width=32\u0026height=32\u0026auto=webp\u0026s=a8e1d0c2994e6e0b254fab1611d539a4fb94e38a", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5nswjpyy44551_Ally.png?width=48\u0026height=48\u0026auto=webp\u0026s=723e4e932c9692ac61cf5b7509424c6ae1b5d220", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5nswjpyy44551_Ally.png?width=64\u0026height=64\u0026auto=webp\u0026s=b7f0640e403ac0ef31236a4a0b7f3dc25de6046c", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5nswjpyy44551_Ally.png?width=128\u0026height=128\u0026auto=webp\u0026s=ac954bb1a06af66bf9295bbfee4550443fb6f21d", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Listen, get educated, and get involved.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Ally", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5nswjpyy44551_Ally.png?width=16\u0026height=16\u0026auto=webp\u0026s=bb033b3352b6ece0954d279a56f99e16c67abe14", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5nswjpyy44551_Ally.png?width=32\u0026height=32\u0026auto=webp\u0026s=a8e1d0c2994e6e0b254fab1611d539a4fb94e38a", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5nswjpyy44551_Ally.png?width=48\u0026height=48\u0026auto=webp\u0026s=723e4e932c9692ac61cf5b7509424c6ae1b5d220", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5nswjpyy44551_Ally.png?width=64\u0026height=64\u0026auto=webp\u0026s=b7f0640e403ac0ef31236a4a0b7f3dc25de6046c", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5nswjpyy44551_Ally.png?width=128\u0026height=128\u0026auto=webp\u0026s=ac954bb1a06af66bf9295bbfee4550443fb6f21d", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/5nswjpyy44551_Ally.png"}], "awarders": [], "media_only": false, "permalink": "/user/Robinhood_App/comments/l8eh2o/weve_received_questions_about_robinhood_and_the/", "sr_detail": {"default_set": false, "banner_img": "https://styles.redditmedia.com/t5_h1g7p/styles/profileBanner_f93yjfp32cb61.png?width=1280\u0026height=384\u0026crop=1280:384,smart\u0026frame=1\u0026s=c7e0ff035cc09a8d6c7ab8b930036c57752624de", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": null, "show_media": true, "description": "", "user_is_muted": false, "display_name": "u_Robinhood_App", "header_img": null, "title": "Robinhood", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "", "icon_img": "https://styles.redditmedia.com/t5_h1g7p/styles/profileIcon_bjxpbtu22cb61.png?width=256\u0026height=256\u0026crop=256:256,smart\u0026frame=1\u0026s=399d1001bf06eeef77a05bf0608db563714fead1", "icon_color": "", "submit_link_label": "", "header_size": null, "restrict_commenting": false, "subscribers": 0, "submit_text_label": "", "is_default_icon": false, "link_flair_position": "", "display_name_prefixed": "u/Robinhood_App", "key_color": "", "name": "t5_h1g7p", "is_default_banner": false, "url": "/user/Robinhood_App/", "quarantine": false, "banner_size": [1280, 384], "user_is_contributor": false, "public_description": "Democratizing our financial system.\nSecurities by Robinhood Financial (Member SIPC)\nCrypto by Robinhood Crypto (licensed by NY Dept. of Financial Services)", "link_flair_enabled": false, "disable_contributor_requests": false, "subreddit_type": "user", "user_is_subscriber": false}, "location_lat": null, "can_gild": true, "spoiler": false, "locked": true, "call_to_action": "Learn More", "author_flair_text": null, "treatment_tags": [], "promoted": true, "visited": false, "adserver_imp_pixel": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_h1g7p", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "show_media": true, "id": "l8eh2o", "is_robot_indexable": true, "promoted_url": null, "location_name": null, "report_reasons": null, "author": "Robinhood_App", "discussion_type": null, "num_comments": 0, "location_long": null, "events": [{"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ121vkBKlsH8nzCVFHdWmpfFGHQHUkjcFWr-1KA5D18LocupIHw3KIZMy4F7LqkFgG1LHYwabqgJbmb3RP91Aea0IrOgDd6LNIdK3e1c5hIag24_dok2diCaJqdY1WitFz79znkPSVi40U-8k7pcj_SVX3iO1_H6yV78vNGrKh5hWWTT_xKc3lpxFi8TM2Ldp9RK8aON6fYWN6XBIg7q8bRRWswVyWBjxZRdVlUJmBabXy9Nb1aiPJ8znZv6TrAgGx4yKo7l8r8fgKCexSNYZpIjokTXcc4mLcOxSC1qzKgHCaDg_Mbh7EbMpzuJMnzJCL130ZaG7LsyO106fu08GKE53Xu99AyV_g95K51UeF5VTZ52zVbhsE1CpNcvCIb7HdqlyTpiFIpHISGGLoW27h-CLvaJXpkKINdOr5jN-sVWHvJuoDNubAtnWkhOaDAfoKpfTxfSlLkTnoAQGl2m7y-GsDEKp0bUKw43xVxFaAfMyfiLhvsl8-pI1KLHOhwcm2WLRLUclP84KkPnN4bBqPfGvfNbgRtQoJdtHlczDzcgGR9Q8yOGvkvWN82quKxgAzZ-8H8g5Wr4b8sT6KNrFhoZrkDpIbJBlh_nAW7tBuCA6ocCp2_ruZjU1dPqwe948AWc4tvF0ayrSyrpsWICHPOcw_YOxOHL3s50KPYo48-lHeuV_bKHx4grqfcksH35TgQnb2yhzc7mpfpHwHx7x1DEBIsWMNxueGc3mRfYjByKlo-gmP5asXcpGTXCwiip1D_9CBEXMBhwJc4Dc8vNhMSFnLNqnPdJpIHl_08VrmGccz9oeEO6_3O03rfqcynS8Pn-zgCnu3J5S2BGHOd_nGxEEcgt_DV1cfVmiO8U1xVMiXt-8x6rcd0GMQxv_6VHsEXl6BhiKX6e1j1WELFlxYAfFLWFgHevAv-at6meiBNxmCBgWIpKWDpff66tuuyZB_pGo29zVqLJRoIt401eM-ubrQl7NBsjoN1oW3Kkk9rUEMp4zWiE_GWgO1TdAt0NQYc-VhkKONR_-esoYEqKOcrRTNRP9lNJoOqd01R8hxiNoT_ipSPz3drNZx2oRd7zvP29IMYcNlb0Kj7hyqkVNmWusbJoOhif0gBkbH90t9lvUCliyvtSTnNJ4BNk9-oC80_tHuoeGOimL4ODpXRjiDpDgy4e2MxQg9_GiWpVmu0-hXnMNVMVDYotSGXbJhkdhrEkrqEv6Nridn-g8F0m5Y-UbfwCnhLsdGbLClz-dPPdz2bLNqN4YjIqN711bfCsB-D2Kg6ravFSWu_zE9obj8gQkLo_r6NedGcEVtzd9DjYL0mV_yGBFBApJruVkTs3EWs508UdudVtzy2Co1GAx81JmHPFJRrjQtrefJwTdR3Tuys1jTQ_tsXSH_VksoNqjCwpmmuuRUXQYtYx2TXEPIHNwZZi4FnUr5N8TESG3LG_Ba1OGMd2QFfgAdzrb81NEZ17n7ysexkr0QGOghueXYk2UCvMC1tX3chUx_yibsmzdOkz-ZnSdLkllKk6iGizz8uGvGaGiOdSSYoRDSnwvL1NXTDvpd9_kTh1obSzDp9AMgcE5pGgyKSZLnhYtnwRLWhY_Y5RyTutzhSZDqZcDW1Qrq-tO78siN3b18jUAY7UZAj5U02Pabtb-aWNzM4GBdmN8AYqvQr_EQW2c5T07ybegowR5QOIb8VSRsGxtPiJqohjIvQe0NdH35mv5ORgyCa_sTkXKVowe96BpvW21cz4rwLl3BP7uyycqLhHtSzbT1K-9qOh2eF33PW8_yE53mjAT_fL38WrUH6-WOoCQagkfhduRJadgWBDgM61c5wTUD5rLknmoNO9V4MC-dMZLItuv_5cSzqgkNQhqPHMfc49TUM4_PkMbdr79-IIm_4ehlGRwC1jkamkpBvFsmSOgJLGjXFo_MEqQjGq94-IsVQzJ5dSViLI0yzEV4B5wDcs1WMRVXTnM2UUTuiNWkJJ0B_Z9HEe4bcaT50SWmeNalgZNnxl4Dmi6A_jHg0-md_Ea_d15WcxqYRLwiBjA-QY_ZgSysuYZiaRyow3Utlx04d05DIVQlOE6vLSOxEPYnCM1B9GMqAeKy4f_kbV-yjeRLDeBiGvnrqCOT8snAw5EX7dZ63w2KA-8nISeoJ0TZlsivbnUSN9VsGE8sOkrwqEbA9bl_mMdTI6Zc9hVv4MzAE_K4v5xVYRjW1IKua1EA7ldTOlAg-xh_P3vXrDgpUS6xVSFvBK2KYl09W-oqzNW-RAfLsnn1qhbJgmBkHM00vPzKF0etgonY48Y_7ZLm-IPzUXhpreDua8TAvwjOIoPkAGK0WWD9YIjQAQ6T5fJhzWSsOr-0-M1d72w4nTHpJcgbGkWpnWQ7BzpOQHaUH02os3zPnQ722JMX86zD4lxVZIc00AC3NGf1YJOG-K_9bfWaCJG_WIX8L3e9LzdlK2WWd_ZxcUf3TcWeWyAn3-rzys55xqFjBYZ5GLKUv23WuOCrIXsiQiK7VdKkIj0Aw3Emz_bx2D9H-DjANHg5tySEcoJY=", "type": 1}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12TFCydjUEYNBuqACCj9AlhCTrOkE46C52NV0fOuUy7LaPkQdA4QNjlRi_BceTwMdoS9xx4Vn71k_cn9sUcf4l5G2w71-ekqbdnGwbQ3OBSCtyBOUzFc_faPS9SwYLD-9gA1WshwFlz66hmciFBkwtbsrknIqcwJAugchAB4Hc6oEIoz78yhfwnxL91EPNAgNR2PKJf4WqU3H94nSAckQzHxmx77NTyx-YgCUpecCrh0aWh0rveWTWpllogkbcfgYXcuBBzp8W-gcPEuvCbVpc3CaA3pjdhae5V0mHiaBAhD50BbuBlOBNpwHKNf8kelUyeIJTqko8f_6LW3X41EIi5pNX_GSKWCF8QsHWUvpN1v10SudVYshD66JtyRSsjVNPu7DuAqk3iAYeSfqMoeRtNL4-fHHb3UiuXXh7flPcummYXjqAhMTwdWovMKxvv8FAOO6_TghjBn1W6iZxKIW4FsoDflgcXuBsCSJ6LqHfTlpOMG-S4eJ_OWGYPruHKbCeJU1Ac4frWhyZM6R5WnqO3GREXF9W-zypzJ7xn-IezcA3-u9pTSwkecK3aKH0GrQAYzyo8Ya72FS0A5D3LHBBhhqTErsstacBOSSiREf_liLNS-WH6wlGG5mHcq2bAUvPzkeCInSyIZECgxxAfPvbo2K2iLCQPW4Xsuqr57tjpykyIE7IAuKDR-sc9nKIeNFaqimx3moS0ZwNyMwFErE0O9n4Ni6KXHFHVKCPi9XvWJO6a6JjCtF-wNeMeaRzurco3Vu1EQ2K2DPAET_mgIPwP5VvLvSUoSnWjEKZ0ZCF_ppSvnMVF0MnPjezDssndGWbaVhNHHUeNnZy26SSiBNbJGtrIpZRRbirHyvVHjzwg2dXukgGjDhgeLS6SqdJeQYc9Hx4PyxJ7aSCnRAUOC-hGeJtrEjofuejL2Wm1u3vovZAEEWcTLlyQtXjaPUvELV8-9PkodI-3MIQ1avo9mlr7yy5Oligf2758Bt5VHE5wrGNJqyj64tbzw_RDYcKM17tSYGZO1Htwt-GLSVkPm3ZiLJM16glEgQortTgluYLLnDeXYqHlq5scRltcXvPLdQaIXwgkVXXAwKRJwZMcssCeOJFIluzx8bU3Idq0E4VAA0BZZ5qe1qb6PomvhJBJxC00P8dazmiVgr7ZN67ch82aH_ylPH0FScTCA62MOsmk7D0RB58ZVwpG30n9UltWBg3MglzeIwwtgQdhjehszwjY02rULaLraeRlkYDKeSWaF8edBJiaWe4tylo4cZnE5yNF2mD34IkcxBam4ojt2YnyQFNT3XRjheT59AI9q79wwu1Os03xkHOaHE0ch0_td7d4Sc2fvA2l9OMA6Ft2yn3cyFw1NTB8fqKAzBznE6nPOocE2d8QaPw913iIT_ZJrm4SE9KjoPbYvm0lILwj7HJs7rXw1hfDX3zQOJUCdKXCB3P6MbXIRfRuePpgevz6nDWtxd7J_OEHxSqneDTqCod4KtUtLXAnheHVMk0HtzFsWgWB6sXJrwjq9X639vlrR3PCd122aObZjUfUKLyVvqn6a7a8ehpsW_yvyP_CMDLQ8fGXT5kgJXwfR7fMys4CYY0aqnHkgbn96qgySfT4US762oPdAGW5n4awrXtqEQlxcTwrp6zI8JhAHUXPso9NqKFkTpKre7Map7iUkiULUTVpEfC8_bIv-0MRfoUNl4cu4ERTYeEcWRsEVICMVNSKMKy4uhIKwYAuDmm9NQvd3Xuc3rGZtEwHRC_2f3G2dpOxafzYN_uEaX7Iub3_PUEutGRVPcySo5dV0HKMaBIF4T34likrDb_48jVC06ezhBRL8xK2e5eRkLIX6o2yAhV0iCbS1Mfb87KHesM0Nz5ya9z7VS_Js6rb6rXILDUU5Ya49rj4eUtqzHSHixVQ3DgcDfKUUnohttkFl6eaXJWyTpi4lCQXTcxFZyD3en3m6c3Zzh1yJL1Xc-BzE2U9dmZiegJ8xSY6PPFZ2sins8KlbJIL_ue9kJi-VKhqH-BvuJVtkcrOJHZcJicYnDJkYK5PSLyChSxp-oggsiGvRAg4ezK_nFxcJGh3lxbWA4_0WPHBUVL40eEaRsYreCl5kp6Da4o4gc-Hr2DinZQaEBmpFm9cMm_pX7QJpimDe2xfZcuQloVwbILwNS6M2ZsDQT7xAygDP8PU3eTbXXf5zVKnb5trrRpTYFpOzhda1ijw0FuyyrPGlUokVEjRCoqc9XlzaIrbvfaxNbDJ3SzjfurZA-b1MNyd28zUlrde7YwrBdmzhym_Er-IgGkn3mZJuc766RboBuysp0W7ySEA4ClnMwcKdtYMd1fs4Kwt74g3dP7mrLirXBO9nutlQGRqAmhFNyRaeaxOYllDonkKDmbWVifZDGmRRmM2ItiUq3bY0hwMsQ8Sb-if4Ui2ohVtcimo_mxAm-PFcQlMpdduhZ4sqtFHF4QoZKHqOjUxhigSD-hKpv0W9kQNDq3CfZe3yHxJ57AVXSQr1UWS3mtPSYQnHCzRKrOicn-00GFj6cBm1jT6txwdBDn1-g8cm79u23MaJUR", "type": 3}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12c-j_IvS7P6WNtUXx80wyj4VUBl4qcBPdPKmdv9aajuowaOJ-xethzu8Ti6ynhgAaD0DD88Y1PWyKBuH0BTCnknIQBEYRISenNg5v9IYlq-zJAz1XvsY2uO3EtV6z1gJrI72xVZb2iWs-Vb09bXE-XVYqfTjeriHbQiKecBx-9tnozXf6Ls9C2XhDEvOAZgRUkkDA-P34qn2ohTDexWenWkWESCR2TBNazsTFpmpMfwKK70Nni7-jvBXiDMHNJYYaEmbnKWpBviMN3F2Yuzj1y3E1BmvVZptqJO720ytmIRTWPYHkDtGdlZcKncFDkt3l59iJBfwnLcMGH2hc-cQMOCrRWG-N_hasNIA2QDo1_VIhgWrU6INyYg60r6rZT7CR-ohKme5WZhuA_2WFhh3QueOmFYogMOnnxcX6gk-25xW5xqUH_EpYVhiXAAHRI9MbyjMCP66LGGq6msPJA0u3oE7C-XKCzqSExA8lvb4l_tgskx7iSuBzNYe3m57y9hF2EZLtqiESWORTVxCi2eleQGbj7YR8wV_lkRSOLfhZn1LCTvUcQkChpYtsJ8WeKEwJOux1I7F2Tq9brokmk1deJrK8ZcCBOW-hupSyVqzteqYhHDzB_OeYoXfyFu23IK4r7HW2U01laWWaip7s1_4xKeNvRUc5QxpZjUshzntuRfjpzHaIgn0JkeP3yACYdGp0LEFZvlD_tbqEUPtYeSu6TpCkIa-MxSywsVHLK5cdNVMUroPMQhzQQlFctlzLcHfv19MzcYtK_fXXnleDO1pW6JhnXd7Q98iGR5iyvKDYtkajvVUpOLz-y39eskTnbCDbAH_EV1mtwkew7nQkgzEWbykwnDVEyMn-qBy0EpAwQG6ng96u_R4RqdcJQetuDwKotFUYqa6N3yTbku3_MgtUoqtWB2aJzuh8WmN5nCrXX3oKjnSDOdyCp0COdWnuyLqojGMS5uHjb5M724jYl5y00hWwidRgbavFu_ta0ydjlN4lAwZDyWgZg2_nq_JHeGnp4GqEUxK3D4rEHTMvrL6bOEGoee7X2_BHH_lzBzTy7UxS0Tmgx_7RlZiKK2MFrIA3Yf5Qea806bM2yx411UlTk_qgtbkH0SAHEbA_mgDEEO_EoH5ve0fYxR8pDi2TY7zAumX-ktfFEWZdlpFFIyW1fUzZL6XzgiqZSQa_5-fybX8BfLIc-TZu77Py7nFrRjW_u8oymyFI7HWbZTjFsqlGQgwUZYKMZMGPUgrh5U_yLs6a1XOdX-sNfb0WXbV4F0Ta0y0u9-KI7fGtYDfGPIs9d3hBoU6TNJfCOhfJutRDNCXkW6gaA3c8Tm8_8k9ET5l2JM2_-7e86KoOqpsRJGXkF_PP_NHQNXbX_fFi8xjytWapclr-O6-LIul_rLi0b4wng8a-S9EvNv_fjcxkj9iHMhsEsevLapMIqp_oUn0JSnD8b6bgo6856fqZPa6GimpZdm46--VZGcDVSckJ6NMMykonkCZbfUF6MiDUjq_7nrlZ684heb0AQMYCH2pE0BFni80IocP4q1IULrqLmn7Jel8GW_0fQu0_ROwcVgNy07UA9ZA7MruR1Wxn4lrR6bZb7OGlH5HkxBg05fF6v1z5h5Tt8v8Hcu_ga6vk8Kc7Nt19xXsoU2iJdmy2mGQqDHWQB3ByitVhiFTH7GUwNzAf0GBxu9zPCOeqwiKDWedsWwep8gvFTqKBErigzen9msa1e7m0vV2pF508sMzTKAwXMuZr-b86gjbibQbuct-EGiWQoiGhcbsyv65JKKtTxDlJdoDKgbdlrYaekZQoSloemgV5GOBXaQ5Wh5WkS2YOY3TEuBzHEO0YLPmLDDKUlkrIS4aK0PVVq77za7rLsUD-GMGECA6gNFOSoxxIfFE-UeeayqRFYceCksRd7iIIG2LmjHf9MvG9s4O0PPV-v2W0Nys_B3N2BaeSg1izDIGuhnGKGaMre-kKSnu21CbZ-X4ySVWIGBf6sNBe-uqC1pge6izwjEgV066D5qVh5tvsoczJHVl7UBOSgcDgY898X78XeYm6xtg7T_aSJLuQwkmeKn32QonpJzYUxLWESwn0Y9cxp2Gd-cwhgAibxDK2ftCyhwJuNbSpeHBg-8hwWH09z6akbdi9_ncY7rQkCpy9OF_zgu03kWgm5vE1OTE-JNLObtm6ifPoX569ueD7u4Sf4_CIbmF9J0jopOQReq6D3-p4Cqd2a2SPQkvQTZqRlu7jFh_DC1ns4dlq9xT7gi9sSq3j0HCP09aZST5xm231sZBLMh4Tq64DRxWB9IXY6Tp-jnfjbhcrrW7PFkjSPb1ByI4HXIuLdrj0WxrkANeWF8feLSKprgwKxbKFTotGBYjU4VEPU5LjlcXKkFbqgboz6pwcoZfYHFXDYa7i4bU_7D5sJXM_dKetTwvBYNrOCxtb3RM05ztf70ksWifVIVHybjHQyrMptXlTCQfFe0vh6ojLJpSo-7Bs9z2d_vTQvl-eabBuqBJavulF3Jcj9YBMy0OQge8qKaEnpG5Qbbr9Tb9t-1NEm0SBNp4sll00EnRF", "type": 4}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12kextFJsYAAZUZNURAI1Amt1oQ8OsgsMFViriu47DoGrV0ZZX3EopqozobZVRVO7YQllhQp4aCTug3a3XSyaOliA3fSJeBpMXyXWf-7JNkDhVBhaZ4GHXKiQubyvdVGyiEbv91ChEq175wMhP4_kGjQa4V23kYszBp0XJvFRgnhCXYO9_3qKxlABblrWsC0E0Hbjk41B6dE1S8ZD4_M_w7VZicO0FSx7WjaJK24vRBP3jooBGN-0aIMqVeQYmgk_kFRfFG71tbO2Hlkmuh-0SrXFbF7PPS4cujYcaFnS5fvsYyIlD1mqHicWsN5nkv6Ivvw0WCaVVqsb9ieZq53n-YVq_7omeOBmgKiVTRY4bB-6eemt4hWiS28I6iW53H22PFuV0t_P7QjR4vPKfvZmu8cLdVD15etvuSAliq-Pm16wux7rcXgoKplSzCEESXnoQXY_5qzip_A9a57_1PpaAGi-veEUS4wadOjrNTiKGqCacbT6DU0sj4vnJZVjT1p-c7CwZxv8JwExUCrIMZxwF5CPvoDYZRnOWW4WY9R5-w8D9XBR8jk5wIgonnxwSHDjMR_FPAvRyVs7l9j_TFnDTmIUPvHHer6Sx-YmDxm7e5vaSCYDmg7SXl8aQQpRVes4u4PmTJQLOr8nMYiaQOMbtCP3jzGMIsOorVRLQQ9cRjRf3AECvw9FgHHzBuFhg9PWxCe5RfT1jG500_HhPF9pJSxuPnJ8hSI3wwUKIJlCjj8lwvD97NdDkugaKlxtHoU6aqcl12OL9a_spBGg09t8pbUE7hQZ2dzAW6SkMkHByx4YlaTFG7Y6k4VTOAy10554zu_KM28Edh3pEX4oUVfRZHRlh3EdmDaYTg_o8na3n4HJ6IDmajWDfuYJAKKjEh41s4TBlg9FkgoQsMKJJGxRcMxdBju_YMbjy1yw1p47FtYxCwhLY6x_cN20v6LKTVVcNOCglXdPUR-Xit5yI9Xp92pJkDKILDsk7veR91UKH_KMKu8cM-71XgSRzPP2WZXXmaLT1uWu7V9WXTuK2scQH9TJg70Dj0gyqsey5Iny4oXCrRuoHjpnE0ME1T-caaqMRqmLBdmhp1wAi3oE1KYZhzUhcvU8dMRa2LnPfytmtGbb-3MsF7eveQtZ4YwVvae7BXJ-8V98GSOkJ5PcewtUXrg9zDL5yEkn7HpVOwXAAvOB9ogv76UUSY9Se2D6tQUh7W-sMffC2tCw1eIcB6_O5LJnnDVt8L0wl5QMNAosX6zPWeQAJT0md1JPqbH697fLt_GfdH3vU4Zwd1YcgtZnpMQ5DPslj6m81xFa-aTry0WaXvQrAK16sYiobzULCLHqG0alrZbLLjmvmbPJuYOYz4_grxNq2cqrCfKigKnFCmLtURY6FK465WEjfQ2IkoelyD5vmFdmeSqfTyaKbL4vcFhpLpU3VrmLR-GFtl0Me8FmKZVC2_s8y-cK5C6CzYkJjjsGrCsr-3lQrhzW8ZNxK6-wOZDhAcHMKE1Az_UM08DqQ1H7bfesKOW5BYG5KFa6W3fcdTUf1D0q_n65V9YBq21K1XmKKGojf5XZsffS236F79NFjRKco_4UNmHaEkLi0an0G52QqoT2EaimHW6u-tx18g2vJaXcY41pGTjpaOpHtfsDoCL9tJ46WBGqqjgPh3mis45tjU1VZrQKcoVkq42eGVrsTXEPzkJYlVLKLJklY-GUy-SgBZrFADChJGVJEBqt9TQ5mHLssDiX5U3sufa6P8Ujrf-QfOKh_CIdGByXfHMu4aOMZSlifHa9zUGWP-Mzgvo836c5EBoSI92uPVzhhdryF4A11J4pyH-o7VNPiBYDx9G2dOooW5K2X-fv3kC9V-SmbH6y7r2lBXDKOD7Z9S39aBXm6OXOH1o7McGhquy1zl0bOFKVriok3D4BqMTSc3XmSb8yRaLmCT5MgI48SfYwJz3-OgLcJJh2CoO5bXMhUJ3LLmX-3xeQbNo8Y8W0nWoHGesDBZmiWE-i-cePWfXK1pbRR0LsZdEMzDhqy4rozD7TXfYlV0csbxBPMLwclIX0wfV1tpw8vMXXG4SiyvS3g3IyVmninjYff0Rt0DubdPqUtIblbltfi3tzA_Y0KQPdslU3kCzs5h7wgP-4lLwS02CvtPXs_KjSZ9rtYX-buxI-xzbaJt2a28y1vUZX7Wctiq7oPG2DSxbicEpTL8J9nFtjJ7ZY7X2q95grzbtj1vsuwlZ9vP51UdBQyTWCFqvIYQkdtpysihhNhmXU6DqoOCV9DFW7MSZF25DIy8japbp8J5LQaE1Uy0ldNWcJ4btmLNo3UDyrbFSDgrFojkzfkUU_3m9XFHDWEDneT9dRD7-dnOCM1MCa0LN9jq6g7iFo1SDki9vinIptlPNBZgydnrBPIHt5jdvSodawnJtErv1ITWKWvFEhwXgATMnYKy1JGCDwsI9btLe8DTTtnGxcqOynRJb4lLxh6L5aUNgHlnXg3yYmJMKttw2VzZCG8_FiKTMZfsrFoG7JrkS3jSaTKITYO7nFyghK1Uqk6h42AcVQ7CWqAOSYJkHuj", "type": 5}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12N3ZO-ZKRmKb3JpcZ3XiOs6BvbaJAQQJPRt6AZhgX1QjTc4Rob1qIK3ivzoNPp7kr25EFEz4Rkp3qVQlXFXWYmKyUfqztk_fATRT9OdMZFr_8KuJmj6FKfKOd4yd5hLGjeJ0jgFdc3TbLvMPu0_vFvpMJl2Me5YO5xwzfVrrtGlWkCcC2HU2s9slWhBlwBLj3SAWGZT0cZN_ZLz9JbtqE-bsSZBDurPBYgMByVDRPGXKezVqpHMxOAcsGMUdzXjS5l3gQxRtsyrDJAPFqQZKIiq5029B6h3fHAAJKKH2OCuMdxrrYXSalK_XihbS3JHB9mOEcCx8dTwPNPFrOHOs3ZZxlifhtXCUzy_3i83Dao9qUt2-9_lhXwg9DHXKFeQz8z31u0qn20a4bf0-DjXXCS54ZZbt6cJYwFi_Etq7KevUM3HmzsfCvX_o0G0dEMGmB73TRn3-55KwplnGhCNDPygvNmo7OgUiCEGciMYmtVIvBQOFSz8InXZVMb1G_yOJDqGBXFCyOT5Ys-aB0R-hKjMZI1xjbuqgZZN98dlcQQ8NYZa2IACxyYKU0r_jQIOXCeAe2-xk2431dJPeV2kbCeFH_b1La5jDtl99OZPm1FH_zEKqpSYxmu37tlWmW56PzmMQJNXTaoY76Nkk8zyk9XW4JmdhRT0q5hHmEiFgLbwL2c0bDn5hA1SN6jHE-ZZR6-A2u0vWiXSQ13A_aCkSoSnqi8wR1J8cMLmjRJ1CPcm_7mTUHbDoF3sieSoOK0Zs8n2pSWiV2RB2kboDHxZRT7ufkEZhrc81vnGtTUYxZhvPh1kUpt5ZkCPoBX70gImPiViRACsPp5i7tUSOPd1HKwM3RDWVI5ISszcHJizixrEV5WUw29wR_5mlytDC82RL0QBH-gbjwoKie_VtdhM-E555SfpBbByyFIBnCtiPrVy6GbUiUWjVvbq6V3vECm0eCKfpAqgp3WOras5_nIlY-iyQIJngWa-sOTirMDW6Jd7n63vlALUycGJJdaPQO1FOi2dV5fdph7ukWJnRl286Ja10091ovcMO4fsaw02kVonNwuvTs1VXdMTbCMyDMT6aGVYbtz5r7BZ0a2bkM1kQRqExN5ws_Jb4V3OtNiAb-9VmPYRfizDFT3F4-caqOLVQoRy4vLHRKb3vrlaO7SVHRmR7FEF4QlzK6_KPPCWv9fjo2vWAr9rnJt1FD9PDy2Frgbzg9xXaCqYkzzY9lNiNyIaReUTGWBj8iK_UvnXvylxaWJsjRuN8AUJugBHC2mVyXFcUZl8o3pGMkzPzSdVNFn5wMt1DOM2mMf9_oqS_92a9BuzxL1qLGJ52B76w839wBon-Lr0uo98Qtn7aF-sb6kIWF30DM5MqH5dSczBZXTTvvmiA_9zH_hM4K94iUMaNxit77XY26XZo2SVDJ1E861hv4V0H04eDdQ17SCpA5_1TJ58WIf0DPylUht2l1pJRTUjJ6trFeXzo2rb52RvBq6Gtp17LEgMJyz64FhM0ZAKWdvtE_oUB2mPx6R4TmFlRb4Ta8mPwos8XHFlsVkzbileA4JSh_9r4ONgS9rpIwlO3yj0q0EjpM2bIYCQMZCEq0v9G_oMbyVlgrFeWrbSP68q9t6sBYqu8eSSoLmZ7kuXqB1r6onJYV_nAsYBj56ZVK0yEiJYrzV8jrEDDJPlSGokGDHs_slK16TjYEs0PnimG3ZsCqGS-5rOeJPbNgJZis47lzr4I3_rGJfZ4uyOVaF19OttED9TZ4GkRtOWE0jc15U3IxSMALSTXYfF5NGs1LdtBBU7etgm6JTZ2ADDb0Ga6_YAXGOGoZfuplhqbIYgIUZ-jk2mwoWukK2kuE9uT4Mcc4CX4kStJ1PPUrfzSMg-Pt_yNCEU4aF6wrh2J03Tn0CpLyo_sLt5N7I_Ww-DUkLU2iOh2TxJ044tmFSMHy1VHiExbJGeDL01tzxojoBCqXOKAlcEPxUXbEphvpFYeVUV8zwxwWg-cmhOSrRuOJs0FlL7HVQGAAE50-vI4L_mhuJWZCU27G-oIeXKhf7tWHl55SIt7Ejb1wcRCxXcdPMLB0p8jr6kQKDUgnCVvoAUSlfA3MfV7WdM8F9IxoszCxHEKAI1x-jLiVf9FYxq3uAojB0jcX6Ib2jZn1Xeyyw9nDehVlFARirHKUSe88kaLMh56yYHRWwZ1aA2sRKer3uFAISruB8hzPjEfx9KELld_MAfGjTKkqWLKj0QFjaQV4rXi8TJNzvhTSGkyiPL2zHV4gjQagbZWidb8iCcLMwLIC5KNGpjz0T-MgFOgkSN9sSrta59JNQmgG11_SjkMptP-M9iH8NYh2XZVKyjWB0RHQ8MqDHfdJMdKZZpFE1lo_mAzDd_A_o7c8GADiTMwvfuMrs8UrCjOM7mKbk26wdNSAxbBHZuAOiexOcode5fBNHQzoQhPisGIAONLJqpgNNgactBJJnuI6mN-syzl6RzMZ6kPyu4eaQikq7Sb5WNVbsMSKv-7dyWyWhZ5z7g1PwRh6X8UIb30619YcuYfqvFYi-S3q7-6B5UvOqRMYHdSv", "type": 6}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12nMkqbgC0UUStJNDJNieOMw_qPRUP37mWaoDF-EvJiNTqU4b3GWfhHPFxBQ8tte5CqEYjjkC5mS_GtUfuxJhPh5u8CMwkJDIvoPMSEYusOMAhCXW471Lcn0RGk8ambVYUpzP3h9-BO0T9nri6QeQGHQhJuqLI-vkO5otn09LSpH_ulICY0uaOzMJ1GGf8xph3xn26kLOCo_C6EA603QJa0wu3uCcgd_xDjnAz57mSudMb9_PdtRaO9otOyKj-XsITWJZDMzT6Y6m9QJnNIIhmCC8sKikeJOCIaMWQb33QhKz4nIV93h06MOvCw4swD7JP7iUuUBN94aWWNv5IIohVNcmJ26l3Jh4Ia1s5fH9txV9eINE1l64LSvMGAydtG3MrN_Tzvv_UnmS07jOHmtllwC3S7fSj0h6M2aJMoFeWmUGaKBHhePWTsczraHErlfNOUrxxVpVsuagOkFc-tCdOba3h80XfJ5AzfxtvFRCy8LfjggDaGpFmEADdNLBB8v4v3Qhd0UG92vyMPosqSVZGn9S9xRonh8l27XooI2vzE9wIOWMAXh2L5GBM0icgBDLCdV27LzOCAvfRyYLGx-XxeecfdToUq-uJ8k75CECBovaBr4oGYkl4tcTBvW4FwRUSJdSHLy3I7EsNJ7TxmM13Mvh1Cm5ZAimfvRJENYlubxbRIyabCcR7OVrHvVpiRfZjvheN0DHSRlAJ7cNrj12YP5uas6volDp_ASRKd00Uy8PqQ800CDOiy35twVAHP53Kv9ofxEu-XfXsMCUgNCv-lKgQFjlcifYHqgEGDs5Ofti2hesVFmgqHohZlIBskkDhk3GuzMQHGGaHOBlFq9deWLixVYAEIebaoNtd8D5nztjLmI4MufXSF0gSTS-jjNhGkNei92F1KCmDOUFaa17jhD6TqcoOHO2a_oLDt9Bhm3X9RL_IkvifO1QfLOH6RvyZ48b1nuJ7dlq0vTmkDpwn5keI98g5cPH5KxLmfIGEuEmni4ujypkjmE-5ViZnd1rj3UWKKEb5nRKv4TpH8pCJF5F2IOXj0LoeiqmJdEi29LCzwdmNnztK79tnCc6AUG6LcnYDD1AnTY2usqnpZZ1IRsOi5sLRQbBtRFu6Za4KEYPnpg6KT-ZOJIVeCwesRjJDDXQD3DJ0f3KBafqPh9gk0RaEMotTpauaDjK5lnLmgBNaYsnjVgi1CUtzoca0_BrcCOcWzc-W1MyxF9zXawwMP-9YI6F-WSop8iAaOjJ5e7wnzkWoUb6Y0q5bBdrP0Xj4K5gnyHcTcmoGhbTSZPCmI2UY5wmOMBNZpScxzVO8i3El9707W7UDEhot6RN-diznxwUDwyAfbT0PuZZc6ljN9mNiC_AmHqThy27NGE03VL4iZUixtqcqbGLkk7Qu5aLCk2VDBu5K7paf9gv2h1R4jAXhNNMB6twLN8bpHYKCApNbAdMbXCptyphWuIJznvWkE17MX8qW68doGKZtsitnz9zXWHhwf3K-BaDaE99f80p39pY-hL0Nz8RWsDPNRBNSSOFA9HZGqA9aWeiEUB4rqCroKKmWYHkoEHUFjFNvKAIyL73FAccacG6JfnP_DB7Pk0x5JExBrxeL54LDPFMiPBINce8n7Eiw9tAMvKm16Q01YJ0o93QnLYwdcIi55Z5FIEw7cBmdV6LpaFip3MlNIdtLn2bH0I-waScvCKVbddsnOytmGbfgfRxOQ6GJNtB7-ANq9kyoenZJEVUME9JJPE0M3wt10r3Dx63LQxNWm_fzzCcHmna_qGzwuYYmfjIFjuCJcTn-uJWyZpavepzd4rofhA0fvTaJViOXzPX2etw-HOdD0wP_WH8isuo871IjR_hlhkgHKG7uW_aejfMuVZE363ZN3SgGG6eviLKGZNtp_paGJFufbLiqZrxgPryukGO2cB8cPZ-w_8jTSyoIvK2tDEgN_BxLiiAA0wbKqqGu-VxzK4lg6g9ZQX40rbHi1vuy2_rz6-TWs10lgGo1Wb98YyENFk1qOAQQARu8V1OndIXoSwNJEPwg_XQOY45e5rlkRAcsH7Er0VyqBsbFHm-k-OwvaTt7AbkEZ1s1BYKWj7zGDJODXGU0tgw4v3dvdI94njImJt5E5bSaWlfMGazWKNtXsLuLwLdy9CWpcOtlvceLCx5nbAS4oZ0uBIj-7Xts8RXTM33Ol2hMpsaA-T-HPBrtmEOJMb6pp2N7OBr5ecp3I1BjwFmg9knQavQzC4nlGpczYywjRPqxPNv5X7j_tyHILbXaI1RLtyJwQQhV0aQZdBp_OJ0Sk1Eawvc7p4pH8-ZXyzwMP0LTmSqgG_ZD7RqYRSvP27r8M2x4E2vxectje2arv7A9dCcR8ch14vDwhQCFMR0kamwLi2dvu0KOJmds9ztHxeg5dJc-J9GturtrF6wVUOKOEwLuvF9K-T_mU1s71OgKT_1T1QyIq8gIjZQTfzhNh8Ccsy_YfGRCTJCUn1Qg_fKKWQz5_eMBpz8OF3KHi2A-rg9TJ_widqnZdNAM71YyABMX9B4mW7o2PUYgc0uM5fKo2zm34mHT", "type": 7}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12tc0LOKbQCWPoSC7WDs8Z3vi7LfA74-6QzntDgQusi8N4Oo8oVHc08tRfaqEr9mkP4OaJkNqahmGdOU1Q7ZXxGBw6jb3OECYMWyI9-MTwk6JLVcvIPUtyLKAUKQuVOZ8sG0t0R8G-lYR5mXm78VCE9XvYOkag4lK3criwZEYWe4VBpLqXiFLJ1Ool4jWh7tAoqR50i2R8LPWS1W8xgu0riP2SBRWJ9rrhgOYZay20grWlnHrTB5P6qKI8ytQDffJrMYFo2iJnZVjx4La4oqQILC-brffgPVwBZw29WxtYQARQuuSskV3xcQF-5k4qciUaYZEEpKNK6u_jlR6zm-XxcaR82y0HNwKo9k0y8CD4tmE1Ui9p2tcBu2h-U-T-fqocXHTh1MWoeh3aq834Bov0v9ZAzmZMezz_p6_ntTBCJ6ywQ28Xo7Dkfo71lZH1Db7G1U-2qvoARN7kn7kr0MgkGFw5MVW2HuZSLpYQNI7QGhPqLWyHlMLHOfdmRgGzgbxs7ozZMybT7f_PB2rFRYJvm62szvQLmv0agwlRwm0BDILAb0Fmshi7E1j9e74bvUA0k0ZGq_GHJdkkrWdmCky1p5JEUEOoldg1GJF0q0iGaZbBE1fxV_2Hft2Ww2n2y7PaIM7HB643TFK9UitiCNqyiwIOZQJ7gHvRYUKJCS5ukLkosw3dVcjKKvCxsu4cmTch0qI9rwFOAjjvXdAJLU7sfv47gtxfaK4WRH1Gc7FqWlhguWI4FLwX_I2zmMOdByakJTc_MaHcCfGjV20YyZBElAPUkpL81o33UMNo19QRNJa-o21yHXJ9krhkTIY-HhbRPQ9cl86qT9kioqKOhnEyxFiFaglxVkd5S_IwZyWmjXgsUAwb2cWA0-utvomUOPfcFO-MdP9A0Lcxuq4j5VxIByp9mtsM_ZS-ZVvkecH4ocviF_drkBAmo1YrWYNKkSzq-xH2wSrfm-25EvhpGrJ5S8qMfpR-tTZTOYzR1hERZGEveYQ0GaVLNreij5dR3Bgw8eZAZ9Dl5lLKzxthdlwLK91LKZ35YQcNnSrmjBVifKjdLTYaBlLtsgGrWzAO79VaMp1xD4bqBPE5KCrWiC0H8x2MKFZFWaVgeHNrrvsicHE2AuaMe72iflNZOFqCe8586UwZzDwuRrXVdn1jySaKUaJU414s7YoXmFCqm6GklcaiemNqVuS9O1w0x76eclQ1esEv63NAnwXuKBlgmS1BqrUmQte3a3n1onlg0TV7rytTwUbvxi3KGyuHOyobhEZCVIJLHsbj-yKVDaBcXF2suczmkuoSgsdG8vIbSTJMKsyB4Y9wjtS_E4862VGUffGVTtduiUa1Fvovy0tIpD5hS18JX14UIhjtu5Hb9Vc9fJqcOKCrnU0teUHNEJ8-0UZw2_uf1UEyz_bc4n0eR8K-x3i_JZUy9gRu5t8Uu1NTROf_lb5FXaIep4ZWazisyHgXmriC7R3s-kR_J8XkrSxXidWtXaXc4FIJf0_HuMIT2VuAG0SI4RYvjP8NrkLDpm6tM5WgEmsKDd8stsHm8f4p3NVwflDTPsU4CuMDwquMCBEy-YeILDvfUlnARNpqluxWYIKSWF6E0azUtORVlsfJKqaKxu0oBXoqIHMfxyJlbNmi-zTCXliXvVucSU5qB8rQXeJ-Sc4L2qV5rvPvfoAY-ZbuN8NWHGxqqRcrnMGA1utngjCHOhv9vikmpaWEhXHcozv_hjs9yVYLpBKyLx1DmGzsXR48E3mRtBzWJDxD7FtHKXp1o8M6pdsLkdVFomC1mkxaP8kwlTM2bisYdtHqG9s9jsLKmOvIGSPrQrCkP7Kj4oXCV4GGN9Xe9Iri_XTcn7KW8-JexK6lzI3MVdCMEKnqz5ZsL4IEdGNq_TugOd6VHnaldRzPJC18rMqaDY1DFyMTBOX4kX-eXStjkBcjpdiZF-N5YhVNRxgOlLsvp9QeGtWEwN6skQcj2JfPecqISw9kgHFhVpWJy35ADcwRP4gQ4GrtMgfar1hftF-9TNK9fRcTgbWWJEjypUlos44TzAxlb3ghjlkf8Jwzk8SkcFUugNHER4ND2baYKgWiFFJqnCsXv8g-XTefzhLhUuTGUImNPj0I3dfD2GWBcDPcGEffJvsprpYN76bTGCa5GKjFQl0q3okC1oRT8zvKdSQqZQrvmRXZ4j7MM2VU9eZHlixD2vl1lV6-UEBQ0nTRKmgxxd5ZBk89fMP7_h2te21tLMhiv5VF7TlDFG0_47E_WUGUykEzGM5PlD4ZEvtaXjEPrvf_RTEYvUm2Mj8NnEB50rOwwbD7bVvYYqbSOkQ7-UMATSIiOOs0rwx6T-iRQ80J6JpVJHGjy8dai4z88zs8iMysIL0cxmm0YgZzgY6HBNwN0o44v3RuW0ZDIcZi3DVbfMhwjSEOQkZ--74JdXIdDvgk1nDUPMHll8ExtD_JB0GAgHtsahhkhxYmJT3nOcBWycWdBGRMLb3LLSs0Nf3HBFW3fRY_d8c86KsBgVFD5NTA3NWTIVsjckrV2_ZO_-P4baTtDlJ1ocQnyHSPkX3I", "type": 8}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12YJ8ADgX6As_wsl2tZls8xEN92yIoAE2J0BJGQHoQ4RoJpnNl8l2Vp360G1HfZQrsrM06SkSy8hbytSzf435fOTROgo12L0UB9xHPoD1ZuiakpMg5NoXJcww2jWjLdT0b5pc7bsQs2ZokIwIoN8xdhJwZOHeM1oWpWmfl6hjoRYp2GbxidjBTpiNyBOxCNEzgPHyEjTHoMcgXzqDKXYURehxRx34a6rpj_W3IcSy_m9Aiki19kc_k_fK9tNVcP4sQboKzPpp0qsHLRcD6S1xRBjJtirHCjGHCsP9j4v4e3BW3GnjXXclUhEFnhLSG51vEbsxY2sHtDeLsU8NmAhc1Apf_yNmx_kFmbowNjIyJOBQVXD2aZtg-7iivMwBWIypYuoo4NhFUJdZ-sRAFrEdB-GPOnumTW9DoquTNFSbuds7XpcF3XR0oGejzAZOlhrjdL2dcpvbnqxsZuEum916PBmp4DqO71uNV5nDGXrMNvh8GoYEuSe34P0drO4IXKVxj5aVG9q6db97AP2dpXWZa2LSSfsUf1jyuOl5sXTb2jxnBisKvqTZGXqZpT6y2LKupH7wt3PfVGeeTi5jkD37KyzqhoOhcYvdn37c6TF61Z0Ge-V_iTv4Birmw3tXHtEG7mqGmxXZXKbc_LnQklAQklrluNPZdFboEp0XZqW-nerovBymLaYZ3UeMyQ6LrOxztGe3rLpW42pXLWJ_S0CX8zOrNLH4QUYkTXTXZy-UfIKyasGQqFb7JmJ0PmUnF8jh-kK1FzTyjpEdyMWTOlDuW93xBmMNtdVopYQhuuQhYzzRzbJgE0ZNl0TgkB6I_pa6wQ1GH_45YSFkY_h86WKamTq_QKB8MxAv4N6WsVS09nw00hOY9uaf7cabqJS6tqC109Is9ZhBRSjJJPy3EBHtNzZvxap9KJir7cQ26RQT0QSZlf0y5Hdd9QFo0iGyStumEkiGCCyp83URAL3sQiUfH9W0e-QrWf5_pFyt_3Z3FEvlnA9lbRkImyzwoa7U7DXlGf0ZFv2qXwGqBU9T1QKSEYn9eaxjN83jTXh9u3eKSddFlDti7ZaSy_4g6LoionD-3jlsuNSOO3Ynm-qkw5PGpADhqiIqTzdC8ZmX7uAajXR_kcGHzcDJ9oNsdSIZtnOuNIkZK4kCIW8lOxAdJZ_kBVOQ53siwpMYA6YfaErA7I-syFiP1iRJ-LLrFUDHKhrAvZBeoXzF8gYMrMtgtktO7U0lq9A41v2hsYLiB8T_X3pA8VHCtO8Auooy9z8GsboDtj1SAX2_9neI8nSh85Y0kcDscuNq8Bcsq-egu-mz_I0_dMPNjfz0XGN6q-ykPCGMYxYSTYL1A02yx2n98WYb92V7pUgFbCjIDI0vbzirVjniDMV75ztv4faQeLkFdGVCVkhelLS0bFxyWFRum4zrotsU6F7rnZEnZt5h6IZlHhJ_Fi_ggNa8B2qMVSK5DbeLYP1uiZpw3LnCs5VEqulfhlJgktR8HRqoReIq_AwsTg-8shfo11JamOnsH-zCHUvHo7HPSxnwk2vOYVo0x2tEBmAhYjnKzaBT-TAuRdn2GOBcbM2GA_cUg-B-F8jbeHVA5eJDQbnjNp6l15WE7bkgWD3sU_JiAJPzXkdy85EXEwdqli-iiXjBbZoREfhjsyHBUBYLulsTyzLIb8JGHmaXJRjXpY3hmtSXcHlYuS5ceEOIm3W0P2c0B5w2JRfk9PX52r9klrsy4zi_k1FCL8NLJ4PwfG9SGwSFjqyXLj90LQVCOmyKLtDqvuTuhZuzK5KSU3njZDt4r26BG97oml92uhpeIVJN_U5_svldZ0m9F6TN7T_D4-ZrE1DRMhNjbTdw_oKXbpD-AAZ_SwRL8OBGe9D8SwqnBwUVI36q2FlTASebxRz7U3fOqW2wrzkTYoLSWpwdJwmWVupPFbCsxSoRaEd0Aakl352jF4aX4oEiwNuD4aXAS3yFhutk9WmY38N8FZBgG4TbtNVnqkbc6K-Pwrqx3l7BJhE2RWNP9PrNYUR31mKPR5k3tq83_h_3BQMO8R3qvr_gy5aekKj1O989lyK_sJ7liXqtRRucekOlQgR_0R1i6jFaeqqRMqXAfD_jaLsJcLUkQBQQDVt-X_EG9DTw3I-ctZMR-_Dj06JWL5Wymw6qHeY39mM7rKKB_yQTnB5LWmCvc_hWBfuLlH6KENmOXF0KM3MLVa1R8t9O9aUPn-ocub-ay2Q0tNfixjM07wa2ZYuJvlPYYqPJU9mhiF__MpHFGv1LOJM60KWD6yu6y12ncO9tafkTt6rCx3eqK0voWppG1QSu2HYT_uiK1c3XVluiU5boESfR1j0L49b04t3q4TBNM-RzStnu_aGfxF-MOz-DzuYV9lZUlj4_6TtYhD7WC_0WRXV56KUtVGoS6kh5uplT6smdEISd5d6wLgX6UMwFhvGkkxHV_Y-gYR9IchPT0awz2IJS3-NY_1EwxZiKwJEzbMQK7a7GLi1JWUEHPVRfF_GKKtE4xAWX2QeoXyPN_7irg-1H7V3Q6IOcqNuHpUCzMR6SeQEZfpCQa", "type": 9}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12VlniJ64oZzO6CosXF6m_5oj_RyzatpHi2BrFl-lLINXmJ6hkv-0oU1R7sNhFn__uq9GpNaEFIYoJsW-WNXxP3_yfB1nTxdAjvr3ihQ33NHOMz2RWw4237bkOAs_hlhFpY6LtgM8S-5xcmpXilfG4wAsW9kDprKVVNn5-DBZUH17xS1kzDa9qQ1ethSgfrcuAXPoMGgnlOgHFLKQ3gTHKDxUP93-r2k_Qr-13lJUT4XXEL0b6GOf3fG4CNotHDtC06RGg136XqDhiOB_5QFwsc_UxhdPuGDMAYFW6CBABFy-0NZ0E746DmLZUolzhutAPcT2E9ykmA_9RS5eV_esTMBB3vJKHkMmCz2kbNbTtOPK3tyfbJ1D9h5S-zKDZ_kf0NVHTlnzfYQAoTxpbJqCxYGEYCYabxJzPfv6iQ9zFJ_J_9o-zQX1Keg7sZNTqjCHxUa72coYACyWEl_VrlHPM8xzKHw6lRlmwiBIGrdQHRXkR5sdkufudvdiepuKuOSTAVns7nRSneOAP_gcAj9Yw_YPlAypu3Drr-cwiWINW6o9ywVPmxEIoDw32T8vE6s5S-HF8xhfFsvckprxAxFrvpPwhkRbkDX5nK-t4sKlF-qZlowdXUh6T2j7Ave7_uOkIL64Q5X_gwOfWRuaXi2FRi020fIzmH2GWnzz-b6eIDplD6DzCdtv_trI7qKQIaWj7SrzZYmwYGWpOeSpUd05DylYLpTJEtZc4R208dzqviFZ20SQqp3iaoti3ZhKFp1Sb5XkShsOPKQcZrHY1HdEqAN7lZrQgdLK0tR83u-1x_TJEEMGZTVFC1jzzb-J7UnHm1TvpbuJyb1lDlKCbHGRh0QZ-FGPRfQolOyylr8wB0FGOCEgSMzHlEUeCM6rZx31aNcC68yT7K7vW9PsPVXQuliVZOewf2Fx57JwASQYtlBXcGpIvrGEFEcrdUCxR20ACvBeq8h11Jm33S4i8Gom8PIaXt8dVwTzCDVmXICWcnlo4eT6Nct6xGoMmKkZZ6QjPckbH0besCD_jR7CmM5wwjqW83cyn--gVLd0lYKCpTb-P62SSlFZpiFSFR8qdVrEp1zg9_Ab_4eVT9nanfb50sUkrsKo1n9GRUr_SdG9ewZeeYdM1qGZ91vMgcApkroy0SebpyH9Z-QPMUjbeebM5u8TapLc0cVDr5UG4GA6UrGzMfSvfYR3E_WreglNc5sOkuF2iM_PCFQONWAbvMbZE1zLOR43j3Xp26HbI_KG7N0EAc280piB8QFOJyNrs4QkaHGE4crTZ7B0tpGf9ABxDwF55Z3W1V841djhYUibGrjPiAAbk9eZvV00dZ-fTswV7orcbRbSRK3KTd24F7lDTM3pqtH2_fL6eY4LPf8-FJNOi9URIYSxymq2D383Rwib6MI9NxXcWbtQg3irhSJHIARCtIOck7XTFqzDf19dnuKOmf1mNKhErxvvi-7zdpKEQ22GuEnMXe0rKsUg6wfeenGxIVSdn_8EWlhyzDnOmN54fIWjJQs9S8zrAxemdrHR4g9Mzg4yZ8t0xPKCHpN7nJRR5x7OjkOMly3i44vj6AUvViA5JqPJKN8L-wVjeMdn6S9V-Ra8Ovik-Kstb4o3j4cDVXuOKI-xJALzFPK7lJEohaUOKSoDenm0Fu-jcFQPUyUac6HskcAJNcgFPyhREo7d2w1SrTlYWVUZuwZ9ulk9NPl_HZbYUY_URud8B5NN6uw8AjlG18-qA9SHsdMyETiScTRXN9kTtPB37VYWW7mFXGborE0if2eezHDO_7fFsPwh_uFweCQT38HA-umpoMhPR6XO2iR2hzTTpiv6o_xjPelLWPdirijCNJzXjXyhWCb0G44zzZVdRSkced9appn0F4sbNwW3DUgq4gDrIbq1pOCkHh0G1VmBAbEwtK66H6D7RT9catoeaekXlqKpTCgxBSrgUMvDEqo5OXlLs7p7K1jEbgiXaX5GFG4FT_Sqj9YO6H6_7wFrOnBOkPYhfqNY_5hqY_fSE6zTFAME6NDw4l5DC2NpPFn3ixM4U1JvHLu8xi-_YkiZrpvUKvwwyJRhK1xpeU5vBIxOjxwaNNK_H8eIyc3NBxP0FCYEiP1a2gk0e2nQZzmUHt-ZtVRnv1D4ZhG0k8F2AJX1_1ftiBoeDofC70xKken8njdQP7fFFopBYOdp3-zSv71S5CRNCN0on-3MA4yUsBwQSI6JodJwfQr6zG-wHFNEp71zmqFMwspkBGaLLrtTCVrMLCYqaOjo0N5iY3ISPFj-BP7pe5UmsZABfukSdKn-zFiCXsTkeiLNB6d9e-nnkt1TlKKWm4M_j0sCSUI-WZVDsgoAhOD-dwWitICu_NuRUBZxLF2QKOurNySYq69BZJ18tNklfr_em8w1IH1UIiw7fJATDKJVKh_i9znTehQZGIATZiH2QINXqm86Whbs5HdnEhDmfWE7cDD1xVKmA2-gC1zCWsFOXDHOVLujuZpdRvtMByFXtOuLL6OurBhcuAzP0ZSjMbHPXlMbImv9XyUOs9q4G8VB-4utzKfgnHYJJzLQRM8Ao", "type": 10}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12-mVKoHxnwxatnM1AXoxPdx6aQPfodpR8bbAmHSYJkO6Bjl111l5DQU9vx77Tlii5HCOindFuDZOxXSOekwIG1AzHPwZAlT62Z05SO05eHEwumV41nbmo1s-f8_rlfJ0Yq4CHn61NM6JZL8a0bphQmVnjtVBHdTEQcfg_h1Wl1jVtadsRV6SM9xkEZJ4dKXRe3jWYk9wNcY5EzNuV0JlEA7uohaElgGPmc7jZzmGIAsif8zGCG1mWqzJftq6uzs2c_7Mi1pA4-vQqEnDYU2RK6xkoSopxI4besmUf4mMZcfX0BaMIJQ_Vw1YbmsxonQSnubd1aR6PI_71QHyGOTom2vKYIdKiZeutMD37mkU42nuI9z1Ww4MY2WbsmkqocscHxeMQ-jaQszL0d2qfSgxS3uzV1F1x8Nkd1jbdjpmpmTYNa4F2ZhQbDJFgFGA-_bBsu9s5E4G5Vcml079OP2OZhXQaCuGrurJdBihtypD-Amsaz4_XKEt6O7pf_wEadM4yYGJ15XDWMkBnW4hQLrQArm5Bxqnwscnan9tT8Ooy66XlHfYl8hCfEOCHURz6xo2STCcNY4Mlh9tMzME0HqX4mOY61VeU7CwdmqFpfo3D6wp-uuwI_v0_alrbBsTp2D5b6C1jjDeQg_eOU1OCMGPQfBGMQwS8qxUA2msgfsyf-Bq51tJffsWimKgN41bN9Bz_Szk_-5jOs0mS9a5TEe1ZEEXrkO8MpG8cawpKG4uF_uLJnKSbrIftYpz24iTYBRNRPxjsiShsBTv3KGY1UdcIvhejETiJ-A-e0VvOGBbgg19INSCRma7C1n_b8aqiiwYoxZXCvv9SzEB6kwGC5JfLCnUoz-uQFjZTwPf7uzsmMA3v6w3VXjSFHlFEf6c9CcZ7cHfpW5cPdXsDA1YeJRGQKCf2mkfa8WlbtMcvYl14m0uj1ygD4eTRQUY4SPda6d5UpsZ5mfsv99uGQ__esCka2PLOrj7pOr1xWA6c6_vid4prVKmHQbWIwGuP5YG_sXXCxTatWOoJoaynJurXhWHVb9Sm1g3tIp0fMsEwJ1bfIl1Hwn-kFUhaIXHoFj0hQ9eml4I2-TeBywuRhy77coaql5a_bkOZXPghQ8rgCcIMMVS9Dhp-CMHxTA8W1rEy74qfAgo4uvsDpEuAd_SILsxNZpB_lF1eUC_g_8FM8MbR4yIV7D5Nt9GopRYCCs893eS9vc9y9_uaZRKeAI5BfQkPluJJ05AcJOaRG2y6zyykez8tgEo-kSPNZ_crYXuCT1IMmdNNo7q4bBfdasEM0IYg-CPIZR_nMOm_Tjts4qttBaBM9G3JZfgf2S3efwiegCsW8pSX0Rzj8qec0Ezx5aDHVS9KV2r6xYSgaruzQzseMlXqmx2yo9Aw5MGVtgPomHU8lmit6AY0QBhGDQ1pAM3l-8mbTGJlqbPl1PIgLpJNwsKyvg7nczuV8xIAt1vez3Un15lP_6S6nufPBJ0f8v3PkmwdfsO4fPb0MsIqgLgpJ_fOYeadQz_dGSo7rT3hCZHrewUJVa_MDbW-1eAYlkK-jExfHFVvIrm0giLVQcyJkAO3oTOgUfcs3dJRYHeBgwPvwoUhGxEouBVOcR7S2aM2SuLCu4wuQW1fThWyBs9RD6A0eHxmaaYD2VDQZUmI5fsVKzwBsp0zE4zSSKkrKoF7bwohZVT_IsK_lj3-B__C_m4VgIBplSMBrXiYl1Z_ppCirWz1lc19p1TaVbIw0i-RAxMaBX5v6STOAt0se4xPgTuCg7FRsJRbxduWFSFt-hNGwdWwdyQSH0EB_rdcufapwCscMv9C_5-TrH1TchYiyKb_432BSQ2H4oL7-AgexaSm4w95OW2V7aWlwEOSO_gJQhirnIi6IBVlCa7JqE2KmqSSAW8oFqNHD1ng5kHwa0LDMSYw2ubUF23EQUi7rzDvL2kw3uyclsE-blou2HFAlgw11Jm478xUNGc9yco0aEiF458O4IsV8UtFkpcBH7o_eYwZggAedNZZXjKF8Tjgg0S4KSSv4Qp4UUEaoycudr4-qOVTbaS8Au8n3LgrT1NpJxzoU4KJb95JPngRbsvWPINFChGvNdNvAqqX756AQDagj1ANzMTKitEDMNnzE7Q1H1zaa-cDpiZxYpgosbdnDbd6gcPkqpwAJjDEnnSod33hOVJape9pI2Xu80RV96aq9FrZDmz3CXonSrnoaTtTLap55hCwZXUz3Yu6GarEHl3RvTSi2WQ6HBaEr5_oX9H8CyF5z0UtYpDPDRGJJzpW4ODhHJpVryFDBueUFfdAO5kNWRtS05cWHzIZGMmus_5w9fVmk-DvP8Kjpflbrhb9ClDU9epsMucCniHK8OvQfqB-ixXgV3YapN43CcKp82yrJAFfxql6dzxcU8nRw7irQpg5qnTh5fpAsS2-0po-PAInBhEf0pHGdnqgaAYRsIxnjv_HSAhxU0H5haSt0TmTonl3qMK73akr5dk9dm0iLmR7lmRJY9qmLsJZH8HMy1wvpHpwloUDUn9c2Lw3mGFvmAd8_aqhC93jwPTgvRUYv7tX", "type": 11}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12El0-MuqxtS2bLLxMhNtKxuzw-WmVOUupmpNWH4W6t2lkzB926N11mT11uoWMpETJYtvQTDkE1BplqbOqFA8ysfdCo7o4i0HAJnO_phcOxTzGF2ipjmmqRocjjuaiIa-kAGsvPbHvXfidowhUFjXlRjNNnlc4pChVsCLtk3JLaE0PgUJuAfWseLIV5jwm9Gc4BcipL1qEhx5mgZK5zHY19lyojA1tpeASe7k6ABUFeMG0c5rBGGOshd5Y0vyxDuW-EbQvc9okXbHdFUTGy9q9ab6PrAhPuBEx5DGjdzm-ycjW6DYo-_obpttP8NYoBrf4P49dItsHBHPdcdSa0UDf0Vp4bqTtzImBcazByUwHvoYLoE5_pS_ZxRO1Jd9C629NcKvnUoAtwQi8-opFNYmevm4xdNv9kcRj-UmsFGHdRZv3kFBKqTIUNynCfbD9tGA2e812a5YB5XdAzqJ9-tSuXZcKY5GPkVE3DeVc0q80JfF7EOsz0WjBNY2PNUOsi56efzkiOdak5jZsk0A6JkPoKyXSh36DF5qYXwfVtH6UchbrVY9SUdLaXgyrid0YceVDCCSnUa5Qgzxwo0GyF4_RHMcFdpiU7GV9LheAYs55GRtlGKDorVlGap18xzCOR9fgwlQfqszr1krROY9lGfMfc3R3LIrpAs-0a9kuxZZTOCtGQAipiHybnY83ZhlZybqktWanMFaXaifaOphYYVQHD-u25KX4QB0kLKlXiHI08cudDqauHSzCu0zoL7H1lMr_cQhvKTf5C67v--jY6S4LVoNxxJFG3fiJrb5hhDIk_8ft_swtV6Bx-e9SuzPvm8DPg7dG0xEjZ-2I4Yfx4oDNwZPWURDN4fCQ1ay6Sq7fjDwuYHt8mffsuNRYxVzszzElMr52xFd7PghmEGC5eW4qc3MhCJvbKhE4p5gGJgO0mTk_VgRc15Mu_yLqsFR87guQJbLB_K7bfa7p-BtKeiaUxW12xlutHAmXM5E3gXlwZ9vKzOFC1hhB18leYvflAWN6b3hqewzeJ_DxurTfiOKNbJH2VhX8vJ4oC4Bi6SJYIFV5PurwSXqKP9s0afzx5dj7mGwPm3DOnDv994eNqFx17TeItzK6lqeSgvoqWdjyhX4cm647YCp943zZsiPfVavMbnSjKY350RislFZt_GrY4TlqiZs2MHqcFT2lzOm2zg9W_ei6dBCZtiTOgny6NLd92C12Or0fWYqwfYjXcfo9nUZw00VjngWTuJYdijdwbM3KDiRkWrRbDTqubHpxcopnWAMW8bUVC5oV5YidxwxOnY1cu4ckqWRI6fNWNNouEpJBg_kyilmVB9anxQ_U073VejW5s379qbbE6VH2qQBkIZb8zl4ChNrdZ5a-itJ-z3_f-O8w1JfKgX2rlddx9a4Nt1y8v-G4eVoINT-D1HB6b1SZdEZfU_Y9Ew2gB0Z9fVZDCRwKIVS9n2-1ZITByh9ZBtn6OQuaNKsVxqnJA2YO8WAAtFbjsbAfcyGYaqfHty-3jkkIKDRlhoNEsfmtW_qT-0o7y8Sq1MzJsh7O4_nfVZVtVx6jNfQXkCSJ2NzbAjt6DAU_l2R3P8TjFZe0Up8Z-FXOTd5dM32ZpvOPRtB-Lho64ggls1JuNshteC6xvoQqW2zcdqiGlaHJCUHSd9oubAjtrpZ2js7xwjUWqI5L3UOWYfYXzbLH1NDhiMwwR2MPocsa3H62odHrwfyX4Qi3ucYM7V4ctrR54HVV5FJULrdxqguOSqnhiasc3AY_i3xeXmleeOgCRuTP08K_ERpSj_zJoNL7tU97uxw4uqGOpFgyEwyjpgxw-em6v2gNMRdcERmoQyF-jsYJnxZYzXq3ds3dtM8n0HkNC9D_kxSO0XcyNivKYgy0t7adgMGpWH4RMAVmt8VHKtdrEcbtKVzn3boHnM0rxfkfkDvuq3WVwsOrPiTN8F84wAYWOsiRqamcCx4H_MLF57ZCvZLgcbnAVthDAwB0x1asZg8P0_K1YsOjtJn5zzDxQmblbqXT2vV08kDvCYgKQBZLl7X8qWV1J8kecLVlAxzD2VE1uU8iu4zbAN9rdNTuHEgGmxWdAkojZWKeuxMaAVXrA9IF9qV30fz6qrDtJbHyxuzpRRSbuT3CK1A8B4wWIQQ4rqYVadKAls5ImIlF0zSfOtF_fld5wqMn7jLkGLUQpNc_Zc3eovjOuBSGYTVXanYVyZa7aQupNvlm8EV_GXgB2N79bRPdjDenP5xxpH8XfB2bezPyD8y8DOaFWgnqwRfn2ZsjW-oR-XKTeCpqsynmNIcayv2l9tQhN4iwvIVd2lCOOnHgwDnao4N6O5PeNOuJkAtyMJtAlfLBzp8ykfIKearzAjjjlKcGZSn8wvB-UbePHg-vGigv3Pqu0MHs0V_BKjmTh-8-UgxExg32a_23WafIiA9sug-1hwkSUSYUGzilOnv-aDESuMsf1HryE7_uRS4Y_Ta0-JJJWJ3ll-7bWqSuIen3XdfBBNNc199NrWhTPrluox38X83PwPE0RLgoPsjD4A27iND5HcvjUxjMC_SS6kCV", "type": 12}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12Q1OVyN2ru0UtWBkScSJsMCzo4LOIbfYm4ZDU62nZAnxTuf4_TkoK4UASEywepPV3YWZcDJxK85M101NRrklDMxl2sjbVAPVmz_noK8uPLBA4u8qjZ52HbY48-ieNGjogryXMFeBJzmxnXNZrutoRU11hqdwymn3MoaszneuUvL7ASuCvTgn_eOUI0MyMV-BOdmQtm1QkUu65cFfq-i0xqO02CMALFPVBgJvV9quU1e83rsMOFGBtYjE312yB-eVc93dBKmSQWb5vB0JCuJLYNW77eXyoKICfruWP7By8WM_djHSxMjiS49_BK5kVZQh-iKrTpR-2dDXemj-z7hoKcmDfYBj0S-tYDNibqlRHwZnBITk-e5ZUnmx8J-B5-BKrfVymEJSbnISij8n1ds1keG1Zz7RddGNdYZq7nt3FaSqu_jBOF9rmiSLeznNvMMHQTYNXVBu99F5M9iYL7wHqexcHPBnoFAZKTtCIMLr_wRw7L8Mt7amGmbHmdwGzoAkouubT0O3EtM7b3zWr7R0q35PRGO9oi8EMufhafFaSMNQLVqhl6gjiK2o6fqcsYKUs66B8KyPoI1QsYXVUG34VDSAooCA0vxz03YL3BDZlVB4_qYXiieLTWcLqyIwep64pppWVxxPyv-2tcSeh0PMATYIPsBvKu93RgPaXt71R1G3F1cBdNwC9q3JXKJigPVc1z9PvV2gGN05UJwlxuvrKFlLp5_r_z6nOyWqgPgBVR7qxlQqnvQPp1VC3bXIzVs7DPokwRmoSeJKwD2F-8ZQ-zSa_NRlru1HuIgu4R9sQU3UIwC1GKRjPjiU252WXBFCoy5NdQW7RrWaaF3ef0psH3tiArVRx9ZUXApOGWA84R6lDi9SnVJFkra7bpUbZE9ippFJNBtPKW7gH0qvFjOv2d1fVRAxnpo1FgPEMr4KxQSymfIQ3cl4pntkE1egC2Nf4YwYrpb6zXUzrOAxmx6rhwS-BBgH_U0VqBUEFLOucriaF5PUEr8G2o9HIEAnn9K0b2Pj_oSqlkJ2TgnOqVmaibtH6AkKUsPjdfxNcXdkK26AWk2Rc5Pgxq8CaQHg5NKjt5yzDitsV6zK2weF-F0EiSDh_nuwhfKjUv_m2BOHMGFA0lAbMI4PPD7zi3GyDseesiL-j6BTrotQopjZBBlxOw-kmYvbRTrcov1MNgUeKtqMPMmbWpmdSrOU8Un7co-SImVxzSCfYIZ9qFLA9D7gldSIjXYxKTDk59VIIPI00du2pk3ReiPACd8uXkz-ZnL6g0QXQGLjgwa-S7XFf0pAptIkl1gQoqpK0bSBgiiwkDRkYrpDXnSYabT1fARgVnU-MDb1o6Y59_X3dMRwyhR30rQYff0QDMuThtktab0sWCrw-NP4mJp-20tIAFGL2CCt4BMqYf0Sl-JSSuotykqZ_jJ_X9zJzDO4teq47W5g9E7Y5bzMieoi4A6mS_2q-e8b1FFCBfWgKhHCS5FpkkGA0QDYUfOxi3oWfc397g_Cvu0LV6fCDbQy5JNOuBM1fEzBLjcXcHwKXLFG5H0ybEQQ3DDuPsPFNLnYHaeUVjtDkIFdiZtMR1v54cmHny3fdzzwTglAQF-8Jzod4L-42rI_Tk1nTALB-UZ1plygxLQWYyU3TXlATlmNiOnzLIPhWMI3qYFj--1SmciePsN8dzKg_KivSv8woB4leTD7lCdjIoPEb3OmbFdbMd1IlaHjvIiPDig_x0jY8aVC_QfxD0JOffOlYNn0KpsMhrZtP1qK690WDx8OQX4KGleTJVaIcPYgrGtA2e3SYp2ae4zzJREanXSp3XO0TO5b7WbrS15ipE2cY1zr4T7ucZMwvOqqhhUfi5g1kPvDw7BMFcpLeETLp-mk8Tmv7LmBI64FDItCWbQ7ft1_X3woxl9A06NdpV-Yqoc0z2LILapFcUS5Idah90Z121UuPJGq42lT3gBpDPcOSYSlbPa9dG-1cfs1Y6hi3c7fcWlo4Z3F443dzwobRv0iCz-KIJqlnbv8EnDgw22-oGd5RSCdqHxn7Cj-aFIiX5OUNFkMw_rIaN5-EaIJb3VCBmqdqYOdr9_mVYEYZq3JkjyN3T8oldP0ffX4z97Fm4C5pD6kWbXbqzDe9X_KEpk4NYdI4BXh-bzgJJOULnaeJlAjTHVH_Um5E86VGur6RgHrGV9dwuULbabIaZl7dGziiN6fm30WgtlS_uGSsBA8vChRmhIuE-QsyIc1TrGAD-4aENCrd3YumPH8x6h3prIaD0lz3_JuMFfD6yAOZPAQ5En_YGjdq-yODcPi6VTU6fTqawWRavAZ5GS_JUEQsfZqHadhCDI9nOc8GZmNbCKdSfUzpw0i7Mf2vhEn1gNoMSzhBN6mm_AjtCzXxQQSZkvKbjK-Od4CVgNn5MJAMFM-BiipG6bh2Ck1Ms6P1WZsv_cxiqsVY3BvtwcyLhvuToHoceU5f077-AsqvC3FPO78Kk80Fp50WOxRXdH39bFwHvfyUqpuN_txCs_B9qVM9Qwx7PEn3VJpXeaFOr7FYXcI1ZEZxORr1jtszQq1lZ199", "type": 13}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12UOHSIG534Obog3DRo_jWydSIVbbt36MQGJa5kq3xruFvs0qSaEGajiXJ_0vSFtk-zbB3ZzoOJj1Vs6IHK-H_-zm72K18UlR7T7PgpLCeBXdGgYIk9eRtYLH1V0xZ6hHYMla7YgHDT1OHocS6gHN85vCJmAQbDqtRUiSVt_1CdMSz6tohYmW-Y5Z2kijrNiVcYHheI4ndDreQQydBjjtI90DzDsouxTjjSmdjH23vYcoW3e8XuTUASC1meDQ_TeSPH_vSV5NnCj_zmiNHkkLehocIGg1q3Bn_oF0VHAH7DdfizuWk0YGDRFNGO9l-daQqNxPMzS4HcxpVAPRKttcIQniQXT6l5-qfr3PKLC-zSOFX1Vay02iHxkxp1uOSZxZN9kbSUJJF6PF_Cuq49BpzcxVaSp3oCco3xYKVvFvlRHinJc8IGpj0_v2mGi8sUfC35EMV9EQkLzyAxaNg8e1bOyzzyjOQCWFcBYY33v3ea_hHHSLligI4AThW9nzczhLPNsg9kyXTrVF0WMDDmdu7wqtQ-oG6KBnfKuwXmJIAFd5kUPy1oucLkVaZ6rkOUT_zsIWCrlbinSNlrIln5sDJv491lO-isbBcr5t8N4MH9rTm4s4G_U1GxRzCUBnrOAR_j3oUC4k7V9FWQvI2cI4-mPlL9ESZxsGDl4w50Z99M7baVb7WS6cIqC4YYkMtADGpj3PSJLHjGe3I32Y214i4Nzb85f94sf71-Y-_MjwRoYwV584-HNZlvoTV0-igwcPU9mlzzZSvbrHIyEOb4g5BDW3XrpBMojEeL9GF52lLbK_BZusOKJyJpYuWOZq8pWXWBEU1MjeTZjUP_oBZ3l4Z6m5uCu2wwLT06NqafcI7LGRUJs8yddQk10MWi97CJrIXjvTzS7wTMEYJr8le6Oz3k29nH_GN2AUifa8ha98IyVvrae2VGTFhj_CNUzdR7tTBxO0TeoBjoVGkUscwoBBCI-Kpxk632ac2BW6ihYWBAaZJDG7uYwnetD9PbbWfOhVbJB6w2HFbN86LUGxMhO9g6ld4udj5H6-cKzkEUFUwFTT2Q2Knih25G5jIdDgASXqIWA1IELuk6RV4-yrjbmV0G2XsQ7rJqe7bdEDgaZenkTPvRdr_cgx7wOxdLqVTsHjQPp61bD7cTKZ5BGWJFy3Sta6S9rCkSv0PijTAaRgl12QxAY_z8CZnKDz4Pe18zyNjtJ5jdt49pfUqPD6PnhtLk5NSLiEY556Vq5pi5F5AAYrn47LweHang1aceKqPTiYQZQ_SyKqE0tEQWdrC3zrQkmAFbU41NkILWncPy1EQki1dHxqp1nkgMB5scVU8t72XDM287LZ2PQB16JTDcg1Qf3yV4X3eRvOL7GN-xBktldrppqmQw5-6p7FURnxdwfEvhttJF-ABFQanvxeh5p8s5hwaX-N4xuBqyKPLje5tPwJBUN2UvZxLaU6hMvqHTUTYX1BWAGN8WPINljJeL_aU4ONfZSahfYclpJk8vyQlJf-0xc8MqmRwlQyra-2mVwO_O7U6SodLWW7PwUTyQJnAVXSSsT58U85v28FO31-FyRgfkOEq9DC1spN7pYM0ZYAFHW3-kli5i5XzRu_shI6b3RpJidXBbbM2XgDW_sBtTzx3eNyETm2aqUPqdyjnq5SVxWr-tiWVkYRE42P2Fj3alYk6xStL04DX2KkTDCq236HDYJx2-3ieWTgVAPrd9WG5-EJHHNcrR76T9BMUOLm-F8TT2fg1kdhgs37r6wCzrgN40IE-ylm07iQnuwKIZ6bIkpS7PFW7Vtlwgeid7N5Sk4A-LBpZ0SlVfB_pErob_hchBbsImWD7-LZWjzQZjAvZVOw6PQCXOrpB2G_ssiRqaJmn2GXkKvMMt5b1dCQO7uTrp8FS-eqBy62AWuyQu320E5Eb8AojdeQ9L3zfKyQlL_6LkPs4FuJNeeMhwMSpjCZ-MZwJ884DgEQd5nbaCAhpg_3vZpWt1kNufC3BES3769qc8sAB9lB-Cf7nHhjOSQ-lIattyGHrbA1zD4_OMPRQJBuEA_eJTkGWKScH60mDXT95VjzyPyyEQqCY5DCbgrDp7CCiHobgnFXTA3CVBnNa894VpiuywRIaKEK3NcEwiruFkKHkjbv_nvM1fLVwefe-2a1jzuH0VO_7lcjewQJ2AuSedsyoXPCxJ1wpQDUWMunU1VhwnZNKXqvLEktIw6iNc5Y-5KwTdlWt-2jIXmnc9JmBrJHR7eSy7K0vKK7fCvXDUGor13Ai-SUJtBSQtVapM3cYYF6JNfUrcCnKScyIhHQtqwWajHOYBsU5_2ZMlwnwER3wHKb0DEYnJUXAeWvZvd44Ca6CncjhajA4VsVP35kNAORDUulQMxGdNzpazRcK_rNhTSy9ARZrlaugL6CMU2tNrkBD3hICC5r_teXVeG6CmYfzZt4SRqAWmfF7QyjP2pfDGVEBY7rGBWpPGofNQMkRDRRClUsInstsxxUCSDYobdNvyc1yTto19_mSLESpNA2YWw_uMcJIEkaPaMHi1tfBpTE64f-H4K5byyiB", "type": 14}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12dE33stMKMndLfFp0fz9l-fIwD5dgtAu6o15DXogiItsz6U8a46X5uZSI7P92JgxzeYEZpJls-20X1SXRajSHIG7woHU_kzB-fklnCffxfEj7i62V3nHI2WHhhTFnnCgi0YZiXdo27V1U2zs_S3DiuOlWmmw7x-Pl0Y2YjO71Tnn2kbCujI7QJK6BWukmDEsFyXNuGZyTf4qHZXHf4mMoCn5E8tmxp6YfUd2kM5nTT6vztrMNXp6-2TCzzwEn93AeHHr21PNgT7cpIzRU0b3_JArvgRjh44td582Z5uNwWcJGtR6Go48AR_JUE9QA0QCvVkBpfzD0b0QZjEjG26ULV1moNhUHpbhN7t0bKMESrBP5JGs_cE0SkvWjbgmU6XkC-kW7RZdf_EqF7_UMn3ruTlFFOVp7lavR93mpMHFX9OHXjN4cO3GbFgYwD4XbozRZss7RDiJSVinUO-mrWKTS_XJ3MHFlHqpS1nLNPUU0rbyF3T2OogEG0iMVd7Fy6FExLgDGJ8iD0R3XNaCCe-eWMYrynZr0saRzLJlI_ly6T7HsVFT4oriRlv6MASzo72UAjKGq82NO_6oyKdOvlTKtMyjvtbtfpmztAzVq6VpyrTUPLV6IBcHm3B62wlsYrRdGO5NfoYsqdQDCp4b3eE7Ijl8M7t-hXvXTzVxR0E3VIx9s9QZK6ylb_nG0dffpcdKAFyZxBSJtHWRYdJDP_fz13qXLO0EXfaME9ZiHxh9VThpOwZ4tcTNpx_roBfOpXVfVhd198KkO40UnWDAW1S8ormfHdcWEjk5Vfgh-1faZDdxYQXR_JPH0c6D5pceT4IUTU-AJet7jkdZDx-x3M4WUA-tgZunKbCP-_oxD8OBfB0LBuJAMVrx1Tp-3yzwDwe2UPRtmMIPTQRIRki0pZVjXw8U0f7Y2-w7jFFEVXBxMrVJgctsAj9UeltCgqijmfQejOFaTxgSNUmtooEMQqNnMybJpYLIfsuDTKUAxaLsdSB-uZf1tN_v2Y-lFI0qOrhmmus-jo-RwJK8K8YRHGDLY7fKDDCBd2KqvG4HM0oeeZ4rJfvuyTZIBm4RZdNvISnTSK7OVHylinUiNjKOeMf63CQUlUE7y7ngDWk9yZKv-ebMjxsA08In-pk6-PGWBOOHdHjpfO168z-SWX-gUaGzhI089qlRDiL3o91ATyDNLXAO6tWVl3ZPpbo_asPBFljyDmqugtlN_iS3gyj78AjwkVls137WP1bH6UqgMBWUI3cT1t9ea9cwhn529J9tEtI2gSlchs53R5DVIoazNbutevUVLmwXsiAUpNU-MUeXkpLfqEAw7hKBbHui4PeQQ18uUBzVYvQmoO7qc8CbkB6_mC9V_xADPZDNcaHDg8V03QMLzSmicemdbKy0SmCyoiS-7vWrN2hfdrkBSL5QE3xHIizOReBcok8MLlX8qeJUPadACjU3WpSA4zlsq2HdbsC-siLSTxDfV0kRGuWcyX41XBmiNLsOsd68-x-Q-0P6rdAafmuwk6UzNzydMcgOv8Qmc5kSnZjvnbYbSi4kkQqdjobZUz-fOC-yFQ9B3Wjw5RT0MldTZoYRyu8okIbSRwwi-k6Louwva3bfHEedKwLMmVik_uVVr5HwHMiNn-8AwO4rRfj1dWSy2i_b_IRW3mx4laNEahXAv2yQ0KZ7E4q5Btk5jtBguih2rLsfne9w6l2uTe1gxsTQJqhvmaBP05FZ-YNofsHOw2wSJbQOGo6GiKRwhHHSC8CjIc7Hmmf8aO7zDerxBshVWjHg2ol42QFNiwZ0EfU2ssfQZegVKMRSxULTlKtExhlEJSHKJen1okxY3riPgTnLpcas7nuGLNx85dsHeK_YOMsKBRQWWNwN2fLCkUvouE-vjL_-p1aGVt7sKycY_OIVKaPyOWdDkiNntoBi9w816j4jKVfCh8r6nrFsrZ7u59RviIBrcc2bQLX41PjyfEvHkh0q-K5fNsLuecj4kEt0miquit1bVXGg79ph97zGnEaLbKAVwhnkcsTp1HoYRO85EMNug3AfYRQku8Jt_FgkdI-z99ZMmDOe7N-bodur8kTbU07FdBa6ZSfeQZcgUfMbOTwAmxRX98b2Nj8_wa8iwVz7_DggIJgBbJrCDW6VJ_0xhBNewoADHH7ZhBsxihRSiDdm8hYVu1hSOckahPI8MSiFav4ceAvORpuCfdLaH5N-JeNR7jfsBmYXzquJ02h0-ZkGqJgfVcjkdtlNPKpdxz_TnIDa2Y1VoSTcatTri1AtGRross66pLGzYnaO8a2mygkq6hGBzZ8YIiQaQ2kM1iozzoA2RI74xqda9VhNNKdM4QgGn44XlMmZD6xhkhftq7phJUZy3_G99CXh9j55qk-kpZBnVUS0B6cgGRdBOmbZdFpBYHiYGn4PJMr-_h68nPmnPfomcVA6w9e9i5hPz2le7T5nr-4bFpXzhOSddGMBknKgy5MWb2Z4vy0wCblRtamxMXRkPZFpOD49lqQLOP1QTfiezoLrgOj22XLpZlA943EB-JJeDw_2-z4Xq75pWEdeNDfn8nSh2", "type": 100}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12OU2w1ZFYDuHJcT__Cokiz-JdcsokbeUsfeUXMGxQk1TYvV20QZrrY81RCaiJemvgBCeD1I9EV10NnGvQ4pVuRI3lHlpMfEB9STkxNvMLogtSPJ5WPQWYFyqvpqHD6RtP_sc-T4UEhQouO6xF2stPYOLZlDIJK13GDaFfRScDT54Y-jXH999hqwicMT5Tzd2dTkWGPdZDcGEGKAOTeNkiuyGAfxxjfy3i0V1fgkGCPuWw7O0KjtwAwdulR0pdpn62TgSCn_kcdrgOpWlL9KDlpcgl6YD8Ahqu4WvsPL4V1_dx_3Vy_v6a0WFcnkYjt2Kl6TDv_IdkMCEYw2jlV2xgVJ1_QN5M42ToCcLsalPCyzV5HBUQZJWt90GoIMxfbu1h4HDsqzB95jP3zNdxIa5d8bH4kvqJbczGzotGNASIGtx-nWpcKyIkBtttp5cQL8JWKZ-KePJ-znJa_0y1H-wWVcD5PjHhAyW-hzot02iqelHwsQZyq0c0IvdFsnFlQCeLSpHtS4ePbuofDKD6s2ivfCZExI2v67JHjNGl36Pas1-ULAPhMwAOzqqQnf95FwQ2HiPHxuE6CYCX81dmE_nwM1n3Zup-gR0A5_WDSiGoB270YvlW9F1hEbLTHMZszfFRPh-mEWCulRrBBFICyeIJvAglkTjM_wGZ0abJjw0Ahh-6G61M5HKnMvki6DhNsDdxuva73PYoCb628yEYG2qRVRLdnI5uaRoycSIef0SD8OuDwvw-QgrBrvP5Fy-UINYoXio8m965DQ-Bs_hQbwcltncdQD95M4pZWU-GHadp2RM6oiqttwgV4W_n4G03d3YGl-r1uurEaymM-P2SWpa93ql5Q4irSwISKOZxlIHdF1e1S1Hz5vQOw5ZST47B5fGyX8Dbub_Mn5VXEIZgI8rV-987WRQNcl5Jk4YH7UkCV8TP7WQ-KESgvSzJZ_ima7scKsjcjYu6j0q_uwlcXDlRsYChuovzk2knyT7H4vUVGppAGLPpBOiAzCVVF3DCN-wbRLfoM0XhdD05dVgpWbJmjiVwA479XzQTFpSkQUVPUqvTJ8VIekTJJiDiNsyeus2G99S4drOmMUjSriUuDpn6QLBQ7vTYGx-VzvjKKrkRsN5PiYAYsd2G2mxOMUr7PgU0EVpK6H_u4uCiWXGRaJljNdxGi-7_HQFvzvS-vdU-PH8kfprypQF17Tejmj1qPjaOctnPpVgPZrPvMd9X5BQBXbXkYuWWTpiIcu2674kN1jbrfQ30b49LzogXOHQKa_sZv6zPfIyy0RpsYy6tj-3ZN76dZ9HosWEdWM6My9RgFZCysOLNRekqjTMfP6FIuOTpGq3gPYEBD7r1iJzRRHQOM4Su5P7TW_ReRsdf3q8WN5hqSeNckSqOWvY46gj1KersftVU63tno075n4gZKDbitHHFpNVmEqHPF8ws2wVzttWP10U5-kBo8-JkppmAAMPzHsrlmOs3NlfO0-Eu3AP50vGErLB4RBU3hp95gvqDRrNPSTBfGTHBoTTfpgKzffjxzbh9K80nUcnkDMLQ7fjRxL8khc-QHk1RdPl-0oTqM7zuBy-L5-nTuwil1b8zCZKTagTygCr8_plTv3Gk2E2HA6qi8KjtT-w8NrPM4DuX31ROyEeIFM0_Og2O880Cp8oxjo87N5zLzWCfi8E0d-uD-6TE45HqJI-dXIA7kZj95vGRewfP3-DvfV_DIm_wMORrCP75CJFu-pUPkGWj4OFbamMZPuvSBJjwtLOoHDnhug1D8pDLdF5zmJB1srmBNtdMewM3i2R3he0ivAkD1WOS8ht6gpGoiomovZZrlCdZZa2vBgb5lo1DuZfzLblBAkqSDFLd-Kb7L7oJcA-Xt0hYhOnj230Bb1U3FdwKdhR5yDP5pSjWlTgklxpNvpCJU5BOsA1x2anGZJfY8rJoG_8oK8A7-zeF1jLwi-bUTK9p0gi7K2xIzwz7yU990ntggixTQEPWeY6qvzlNBrOm0KmUjrWsVpI6Sm58sUBBigrEFWH_q_g7O9LJkk_uI6cBksAm3aLNHNJzkt0pT6i98JcuLVtSqLDWNWwaiL_meUBqd-pJihdTOKDL_OkBoQLnm8tRG1KWkOlWa91mBP_o1t3nng43jrFWzx0RDFInK2nG4Fo-ejquphY_UWvLrMPT8tKCPv3b5jxKjlR5KacenIqwwtkJYkRWyGqdsAuYho7Uj4nDs6xyevUAygLA1U0qwxLvI0o-_i-vZ2E5gZ4gLNykMINWaLzlu0XQJLN1BThbjltgLzmiZ3ZssnZvgb2nA7_Zg5GQ3QYW84-TVvRbHBAwrkNWXS0jBxBQRO1C4emQBvzmIddI38yV4WZGAfi4RZs-V6xA5zgRFJDI7GKTZ7DgIHE-YROOBnoO7dWHmRNg_MlJZ-Y0mMsfuQqcsiJmp-FyhgiMC42Yh1GsTdXgFIktr8SiocY8uU4wTsb9AEVfdji7vkwfGk7Bt2A3jR96nBGPjK5KNTFJQ2oMtdX9a_QGi79hA5V0pIdRUbHF5h6x0WkoQcEtMalEmNcfjpiwA4zX", "type": 101}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12kePZbl31hoUzoUhIbHIEZrk5wu1eG6YcFZGPC9zUnY8w6sYGpUxkejzuqSoZrgCNbNPO6pqiMLhM5BPjqiQtjZIXPXUjljjZ7UOPGhfEwNhonOvrAaeF2XWlrmqqdhDnEb_7_VQtQ-TrG8azByet2TQD-IHoSUnY0rahUYokHJ_4I8-WmuXxRzYRieOzgO4C27UA0UxnYC05lbE_fuqKvVYHZ9YwT9UyGHqDbdoEl1p3gWkckYHCtMG7BvsLpHQ0ON1Dy9XLbBFHUz5w-_VosQeAODccUanTu01ukIw4A-2j0hUGVpeTIFWxXBvE3u_tf-qAnemVrMjXddDgR94X4bmitDwba3vznntXBJekdUnTBdx1KiHdeKe-dS6iUUsiwX395o53NfMaVKjsV0Y8dzEs6uwI-J4UF1ixQzpzRtOXgURluW-1O59Y_HxxW2Jbt-wQhPj9RGVfm85VJDApsTu69DDoByB2e3w2l1QgH2XOzp3xw-gEYhj6OqpYrDUJupDzlW_OYj2jPEgBLV7v6NvoUvKyD69Kpj3X6cSXUXpkPsQVkV_v1OcP6svAalhQUcSVqnPy8HlthSYgXD6n-FvUYaXPwpte5B6BZ30vxpUStf2wMn8PrjRs7XzUGUodEoat0h25lVW43eYeTqyiYSayAcfd9EbpVF7TeQ0UwgufCONJxkjBqyUNEH-1zPEl5_XmfpmdOhc5GHDAreSPyKn2Tfc7QkQ5GsMHIg4IqBMJeKzTXMqs1cxxTpFTG9j4MxDuN1TrswKYUHwO-AGP6zKjYDSiZFR9Ej38tlo-eWDwfs41jL1p0uYkUujhhJlcPwBRTIu8XkVjsYwJoqZsWBfeDhNz9ku0z22h0-fQ9EOdzpoVQAUJ5j09YGb2y1fHYx3LyzRymjmo-MKKgo8pV9aT6-XRMow5esAUB4526wi5oMNXO-Ymg8D6L-0Ppko-xngfRam_m89Q2IfImUhPPyp4J0P8ls6OeuINP07--onDkAZYzhtCKddkjD9Qkbstc-7sU0i0LgVZ6u6LAmFn8QvwCpktrpgrHJG0NlFqYuVhUXvUHP-BW2Df7lEugdZCIOS08599r0ZDbfT6ctLQEo4Jdro-_WoDtv2gxX5GMmnZyfY-X9GcqbPy7uVeJ1-5qI604yzsyotabJFMl4I22sXZJRM1pKavh73nTF0em4YUiyaa7fEF2tLSquiSqlRJk6QOpARwRrZXL8uH7W9nB1nNVf2arQqG7RPYo5Tl9EyNTGXJz5K-zCd5kewI8j85W78i6kEVfWOuhBZspDFb9k9UEijMa3JYqeMopDF0pSzD48_yvkMNLXdMubeapqnCmEZRgpPGb89pxlNwRbYTUdX_9ZIcNvBiXLYYf6X-LEMEGoyfzqnySLbz0s71TVTY4sz2EEhJKYKLsSW90LzOY79fQwCTYY2eDGEmE1NQNYdaqSiwmkJvIzCmKBV84Co4X4uG7QJGbmIatFBawkj90J5loq9xhrWDHRtxuxILormvKNZ73WAV_EfJaac7ZctxIVopO2e2zLvZIlKioJBazQl1owKha5gMYiGZXtPDbMphLJ_fRFhWz7Z0rFY3GCWhJ_kXqut4fIAISRLhc0ctmx9wb_uRPACbeaQbNBLNSYO5xY0OaNrF1Ei8XExgUnxbNfWA3hsznGyDDlurbjVnzyZlTjevpwDa2POMQvmkxS8NfQfwOoLHj_GYw_AJZT7BObEZkfJTereoer0CKrXUj_id-aQz3kEWJ0XfnxODB4wIfFpTa5KjwAQR_IL6moVu_i6Yc3a2intv4pLnvf1hZKUVUspowhhOyGOwNX2JHUULW9mh1D4BHc8nXjApNzlTH0ctkcRaJZHxWtbKfQ5XhTKEUjrILQF8u2SyhP7zwYURoNrGcsIeEgdLdTf7aEu8-9hPJ_hi8D_d05mhT2lNxWQibqknh6n0pMTqESHAAzNCOQRUW6hC98HBgfHfRsUe55FXcUaFyci-82GdYt53axFngKba2JusaSAg2U0hXzOPmIX1-w0668xuQiHom_9xfkZ4LR1dxKNZO_pQ6Ht9h29Nwatx-QZ-RoXy3jIZWZlVFGbWsw-G4nIqbQI7FdU_-x0tOhkL4PRQsJvcO100LVHuzrCR6KGTNE0fJvoKGurkEFajVFnhZ7bZ1OTrWMam3DJMYqj6KyOWpE-ZKRnqqOJpGemAyCxujutPXJfBj-Ez55IpdKprKaCCZ0bgRtmKXMt0x14rtvK2sEGjgpsONhMpJC7LsDlcejsd3ZZEAIYvx95MEht5pX8NmTH9XHXXcRD4qVhIPFM-Bb-_FPdFWM8eUDAe06v1mc6biddDcefVmMs4Q0GlvfUjmPKkKeGrEQX1VHx1fofLYL7DQF6_r6jcDCwqNVo2XZlelzXvQQPWIfQaGR7klM5xvYiSN08FKaKqKENpGrjjpyuLsy6lvZXdFUGLX0MLwxGWN3O_hXb5a0cAU6LzGNTBuIsZSQcWSiHEULMtxqs83UASGysdk8vyXiwLPreuoTWrh5n-Erps2VjYB3r4eUkGP81InjoX", "type": 102}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12MGzKY52Xx58fEKvcttRszxcOoqi8z5uq1vNTrHWJcQLfyspVt_OeDq0zBUNmv2UGOU2TB6bxFtQYhYDcdsBDAzJRVUYhNKIW6MEsVZBDndGT1JcdCS_EvRsgxf-yI4a5cysuIkhxdmo_TH-USXNZb1Q5GwjXhNK9K2sMPbqhrkTCq6XYSh2n4y8tdr73bZcDaagUL63XJpbROhDdqt5PWOj7tBz4nzC4w_ALWR8vj40UWNd4diwdv25fsij2w5bp-mx5mDOtv2igvy8sCauGMto9fu20VVfXRzDYPE-1vGawjaY0OOFh3pcrBNddnStmX-3zOG29lqDZ35WymXzIOnEIpHt_0CwUSguVx4gSX6lWHabJTuqTL-teUf7qW12Kqd-ehpwJCmPGefgGlkuy2ox2mbxVr2XzNCTsXrYEC_MlmQatQ1qP9Vt8qpVVNRs4NZEZYz1FE2OonkSLpuukE0T5vZ2Iwtq2dRi0Omdi9XbXrT89ZSx9KtAl4c4T3d-11J0ybag66c-QlTZA6f_mVrrLXxNawgrYacX3hWDU74EVqyXfoNyUKQ6BjlKzAbDqXP2YskEJwx9kMJZ4Sb5bRGaMCdTSpkN3LMIopRNdypt2TV8UuVa6F7t-BitoMcrM_qrKru-IE65mRhn2Lidem1012EU6Qwwl6qqA3U-pQjHzqMeN2QStW1CCYxWKTF8oT7mjypfxRxjl4gJxgfdu2IeveA5X1iq-sEufg5GSL5BB1qnleDwPtfs2mImXEeAXzYpEHKhJjwSXk5gp7AXTD0anvqeIMuk92diY1aKkuqplv66jwS2hEVIXl2oCbtqJtZDKTrDZUEY7JJrirSU-hJQm1H199bLKZTqunEq4VD9szt-HbtxtfeQ8k4a-MU15Hi7bLV5kK71QF029eqJLf-0XjiCfw-OkgL53mnK-j08Xq1KNWEjgfi6se7rqyZ0Oxubr9Q993AaxdVI4y2EL6Zjz_WPoPa2SUy5_2q8wkF29t3qlgkFUaj_F1ZsU8fCz5fmoOejm5ELWLMJF17nd0tQIaGH5qbNjTIxD84fdK5gGiRmfH1NCxyJPYQ_42ypaNA2LAcSjjLHI_lnEPBQ9sfEymRBOg5yKOFzGQmjEg4vY4yCUEe7NfAPJeRfrLsc-VKx_pmMf3lG4umVdfn2dylRH5iCKQH3QD5IWAwRgIkmOwStxrMgd3y8f6TaW4e8Hbek1UdWCjQrh1A6l6KFTucr2S6MQzmdZR7EPalh5KOjFxbNy2wULwt-a2vFOqBKkcBucG8w8oEBYtSDfj6c7p5d1oii0zNp0cPz4YiTb2B7EwXoMgQa4e7yMMsZznLT6ycqzfJjQxiCmg_Rpsbgl2zBYytuo7GmtCBEadEVvUoUICofpglY1teCHviQdumOSAbPvGS7b6E3XooovKaGaYXfLhl41NKZbBRMB2Ph7Rgf7xbOsP09sTD-fL94ounIwBbUNqlNK1OUS4BSlHR0Edv5YKc4D_dcUFlP1ssHbQWN1t_LWFLMAoWljaHbO4roaMNhBIKfIEAl6M7R0UFzKq2bpuZM2GOQVGSS8fyTjnWlguET0AEWQUbV7wdwQcnGyTLv9XlhF_bjLdyOCyYi1GfoSmXnS239DYcxVwkBMFdk_FpAyHr-WMfYwGTa1BKOyMExFEOjAlyJkftnS5Nxe78ss7VVbbvFDa1Hi0Ve4qFjwBRw7KmM5QTbSRqcXkwn_6X2PACRn0PNUGeU5BueBSfYegOu1fu3j_7YjpOzkDy4dzlN583yoVNAD9j_mM_1KIV4Yb4hNfjmgmxDCZjjFuqGpyUVGHXjjfcCKApRUPjy4QiMqzE7cGXx46k11IGOtT94QwfwMMhp7XO77Bm4F5iZcngoKuCx2FOTTxp7b5lr_GyubOZZ1GqFDSTcgSEgdinKoL9zZh7LeKIakHWHgIzbgbWIaqalXdDml__Uu2WHZS9opekKezXCpLlhBTzX1hoHfy71dYDtPKgBTA827ZD24I2MuzfnODqybjWfi_Lv6rfnaUNl9pfl0-2ypiZToxDO49moF2-ompbj4n2x1AOYYEGz-Npez4zpWagjE9JS_lGDWROESzyWRSSCYKkZ4Z6NlZM-fnP2Ve-HLW5v6q2XSWlSC4Scr7laJtNCh3J29F8hS1CN3bJgC7AaiVC8ty70j1tmuw89vQfFaS_Wd3d0Gr0K6k6No586uCWCibqK0tjuj7HxZIH-9_kiqtqrjN6_PFvqjRuKDJG3u8Tp8WUQARjJSUC0sP0QHR3PtYD96i5_2yvXi7i3rEoUfGwl0pq5YodgpJVhuCIl60atHwGyOwX60UVEZLuGZn3UAmWsCjZp7qG5kgB4Wg2WfAmkQx3_H5xd3TYN4UYuJj-IVQ-VH9F9Fw9yU8zy41YMacMC3ZQ-wQ4JMz2caAOOb-HOIhUuqUTVjRPOv7hm0qF7TyLzrJvBRCHuotajtSZpNd7WGxJBvVPqIPD7rcPA_0P9of7owNCb9P_qHxvWFqNikq_xMHV_x10asihJZ5wp9_fhB6ET3fUZSZJbYxLdrwQ9p", "type": 103}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12LhHQu6qwO2jsMjP6Rak9GvzmJpuSkVXnbmlt9Rz8Mh50dqdtfT8scsHJH-BaIxqLWjpk0n_PVeFoHKnP2YHtM-SuT94_Ef01z-kV2lO-JyErK04AXCHGvGxJo4LpIkhlVUIzRehV8WtHGNH8x0PJBonoZw0weKgZUAHtiH5gr8BfxRrx5bE-63O7_znxvOCQb_WRehs1FgMjHmbekzOjcYCvTz3YAXrisde04KIPHVFvtbSqYNKMfs6UYo6dROFPok8awc6cZIH5xUgvrEHjchQ3MNTM1YN9oBn06zyiblqpHj0L37fbYYraRRHwRXw6HXuNuVHlVC_zh2hxnwwJB-dzTTOpFtHg_bjzEj5lB7JHBiCRht054X81fV1SiDW2xcs0plgsDoZFIiGv4V3ZNjv5WlbTYmCPmW5zCdplk9c_EVd_p8Oe48Ik5G_HPyuZc6p7nuDyQ3oG9yW1zEMpcO0DEk802_0NuGffwOGohZSWy_5Aq9SL31c6gDBYJqVht6o-Lae72u3zrl9DE_W7MDibsMDP1l2pOcwJOliqcpRKKT-48PWn44hVxBTJoo4YyiO6TuklJv9oY7Ye9Ru7wBefe1m_9pp5SmcEzZkjoAwrL8FHN056PB7FgQiU5rjbOzO2vy1RLeSHXCTJd4Gy2FKXo12-y-s_PbTmQcK7Q7yQ-lzIBhe4vmgA72sVaGgx2M4nXcZVG1HhD6mAxdzecjRTw4XKRCmrNiNFf5nigjy7UOY1bsgb9QdL2lzgI5gdREyYR_i0momQ0js5WSBlx75WybwI2pNzU0h1XKgNUxdfhhdqce52pTvUD2FieXvjcBDUvyqPSWctAGEpCkGcLpbfIJHplgRnQ-Q4au6rQhXS7PMlAi0eBNopp2-6jEC7fDpM1K4O--RMQuLZw7vxhOiufNKK2W-0uzRAo4rivw3eHf8BfN7sTbeQcTGi4gqYXjAKmSWMS_sw57wf1aPWMxIvHKPAJx82J5BGxdRWopXJdr3q23GQk9lGPn7cdGJs_QKmDy4tEwJBTqt4rsRfDxVf2xx5gDcYuLCoooN4aj4oKL4DfDMsAoqYB2LSEZ-oCiM_4GSg7coOtoqyfkVk1EzYcvydUnI2XbykDXHMGHGJhpX9VNfsvPWU-lhQp12DfXDA1l_mlNZ9smi3LcGFzAdaT4vzDuhYN4faGhHHS5186wpTXmQ3nK1PilmjC-zPmmFN6o48ILEsnZwQIgSHJW-H1JjkaZVXsbXp__ppTpncTO0_DjZPj5dRftmsL5E8IAERdl5IhqytBONe4crliotIXe1MRy6_cEi_aP1PfrjkC45mKsEsOVprZY2dwpDh0wgcefYSdO0A985NfYZ8F2P6GvY-A8MCV-XwKvH-GL01kR9X0BPqTC5UhhY8CrZo-4o-gWUBebvl-NJYabUtp8aaEqsm78mivCMiO7YrS0i0dsSZAKx7dzWPEpt-NGpCQZKULUZ8jAQNorYuLVIDNZlLa_OXRn13eo2u9aKF04LWyu22oLjojoDZzy8tQE2bx5bcXYLC0T7hhLAMgnyHLSHRRK4cx3W8PNZwIbzfLJXuJAWNASt91xqQee8MA1jdfw2JsGZd1w0oGD0s-2FxLj7X06EZ9wGegEljKnJjJDVS0Y0xpDARR3WyOyPPBuvpsGor-_7dmiEc5oA05ZjBXVPObi3qoUPV-FRwUr-zd_2A_MpKhr4xe-VxmpuDXNiSr66fvHz0VbcadbvowhaWNtLPVrxiNY0Wn3J4W-0wDltCXkJQGMyniOUUuVJFvVeX9XwwZJ30LMPtULRhZADmCRd-Y7yg4BwrqbUS0DQCIEzm-TNV_pT7-eIHcwPSnVa-m8rw3lg2d9LTrQ5fU4LYkbl9dimRpAwcdDtLjtGEay20g9CbtRKU6kE_NQev7kAY7WWDLmuww5jwRAdBsMHvuAI-Jax6_lxSU1-CLW45k8gw5Q5p5RO_sg0jlmboZgc2JyGglIAPgM6sLUhFWAzju6daGFEYqHc17ygtVrp3kz7KEStlFetOG8o759mfyTsBYayfCBe5uYf0foLfNgNaSI47Icd4drrqxp7yR5I3IZW_j-Y2S3I6kYDyZKvDPO6Z0fPisn0zjb24eAwiKegk9MLCoP3WKvLMqPZxZx_ae92xS4Z2iIVxCwBDQFI84FQYZBIQMTjla1DZG0hi2AmoVcmTzIwjmJUyhu0nmLWgagbgDEOqpAeCFSv2EP63W7xoUNJsnh6oik7jMBUuNkomnScyZlUdF46YvdmgiGHoY7R99Y8P7vbgsDW1cJA1mbWqcNMC5KT9Zaalb8GgVcxHx7sonMkMvSHkFOf-hWQBtpDSnKd2KChlUuehc1B5vdlM0UG-VI7ubW8VETFsjxWFjmFpzvpS1VovN9Tvn9BAdaWnHqEbDGGDZr0VdXefyurqEQINqoeWgh4OjHAxL9dZVAmd3asAqEJz59jbDlNHrJYhLeN436To3ftZ0uO3LZ2CUUSL3InzcSIRHX61HxCUyWPKL4YIO1RSgcqdzcmesXZna321gEKndvCJ6MN2xXiV", "type": 104}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12z3WeHADazBpDgAh_mgxAoByeFcVOHJ7VhKTLtxTy1sYnGhIFJ1VRzA82OBCY8uOb42EyhMDwAObwPupdMQ0bGtuNZuHCeNGwb2Zn2cf0wMrRKrw_M9wS72NZohujEJ5gUrbyg8wwjpbM1e4_UKyFo-YBAudqVBx5hNaZeKWHfgnRwMWkb4E_m9OqjqexJJqpMknsV_it_WdMy4rdlAL9e1TeL0G-wjqRYPR98EutGKUTJIwhawk-RiMB0aCfMZloE711mk6OXKoENp6DUpD0iRTCrEs-kJtobcTjc-2mOBYgBdPVxg1uBIffN1cZ-f9iZ0wjkev31454sh83lHJyFQfv42Kyt0i6GZ2F9ngG-bXMEKlrhQf4gk9JEL4haQXur7jzRUyu0wxO7nmfEavHD-7S8BVzVKZOqxg3jSQqvE7lm12tCc8uBp8xjbD2g269ROSGuPteYV5cYqV-wb52Ei_TzTXVO7Lb-9OPWPxPXbvqW-WxnfpWoYKQRDkYW6ztyIftHfRBzbRa2HfAKNMknjku7eDoFYeN2a1ZbQ_VMzl74zrei7ROX0jjBQLx9QYl9m1RwPF5xKfZPT7R5dx3LNPGSCi8S2CHslE2MrgOpHi14fj9aqjhkAkPJ5ogdNOzGFHNVXeBq9e_UL6vVg0yRHP9Mbwax6yN6g6bklVGrvONLVEVHb3EFezV8gt96eb1fegq6J6FYNekbWjvJOyd91tyh16-2LzwjK4ExEpQILDsLX1nyE4DMoDKddBqxrgGveJ_voJlJid7-mF2ONa7Xpw5rhNQZTAGTCYxfUoQYcZb4Urg4DyKoqxpVTDYSl8pYgvSe6XCBgEE9oJFLlHhXt_elmCcemTKscMwFiSk7sQMXgQW9Xnt-VEXHZ_QEqfVjC0vC6dMk9Mdy6SOCTAwsJQfY5uyMcWDBbRdOp8t0m55SriX5cknhjA5KcpSkUy739foj4aSj1IQhYba5oP6tZUtN4CN1QZvLJFoG8sqhVT9BusktqM7UxGfk6ucVmmTDf01svSSjwIyg4OFEpNbah4Vw-0sOLODTVhFsLP1q3Yjyk1lXLJOHxIkWvRS7Lrdev0HxMGZ2uY00wpzfXLHwU6BPlAtvmfKF4eHYvFRcKNCD0flibozNSsYvydGtU0NJ6gQzf55pQVshUiE_anzLJJkhXqrM6yS-0GX0FlPHPWsZgshdFxv7YRyWBYbrhMQXVF4AtRP2RKaktEkVZVeTptP1rgyfjeLdUHyL_Pmf4BFkkqKwbchA6-yJU5-T36Q21EFCUE1c4Oj5pWNBTV_Q_AA4VjgvyvJAF-UPFF8aTJeqN_oCJIQBZSSiII2IfX71UhZYJ0Slf2nt2cvl-z6xKKjSey5hoK2MbyicwszZ8UXZ4uZyfXJbZorKx4x9XHtGnU8F6bkBmhLU7C5sFB0ZKAcKbu34qmayQDS2ydRCF90wdVd-4xcRYqI46-cutJuJ55x149-0ucb9FR_48I7Qd-i5Ek1WMuJ0v4sFwteZe3Llxx0DqJ9M8kcr_8kmuTb9jCkS1fOegibQ6Kc8Do6j13cBYLY_rQFU87RHX75Fd0GubZ00NddB6WPt5tDH37JFXlzt3AJJh7wub_wiloCICTMJ1nQR5lcm9gZqpCrIY4NfHwp0yi3I9JVPiLpdxcTn2-T_3l2NSZN14Ao2q-SgS-fV8YSLp_5cpUe_r3krBOj9PMFf4lg5-mhbhr152GNSFAxsAgBXEEJvCc5XZph3zUdJe-KModaTZh0N5Dj1zayzJlvNkD_PFpW2EPY0f1GiSWFpvBBaXRYo4gNSN0sqoRaugNKi86wgmrNfyUArQWQLLep9QTy3YTelYlCTp7GRxM4dteXjHNtXhfCnrw6Pc_gzvlAAkuTTvjmf4bWcvz1csrh3bebS2jHw6Wp9CWt5AeBqgSUHXjSb4pDc6Hq50S74aOdf1fgBJgQEQJ8IZqaUo2Va3C8KJ6tu8xYsfjk8cjaEbO750Woz6JvKqr0W74C3i_mHc-5bxNrNNIUpy2imWaRO0ygR5q_T9BvcpZSLsSKE_2jmzJb8Diiro_B6I0ca2UsO2JVEA7ScytepmwO4QJcyGkAL4xbVkUI6xQb-8r6SwtaIfsAXlX8G4UOApiyASNEbhC0JXsu5fi7kqZumLyCsXL5QHNdXdDHCz30-mnAMlfu6ysyzX49MHdtC448ZKhZ4jzFxTJjKwgjBao39LjfqtfFDU4IGZeo2ZoxAGDACHqUXslWgd0feUBXr3CQLKFjKfUOoPjdTKmOgXn0QxZxz1cQdSfN4d1xIMZBeZ2LVT7jUOkGaD1uLTF4pvkwrB3fRXb10POx59fZe5wRMD139XylbXS6qNaRlJtA-Y8TMh4y2yBSlYAzbpscf9Jr3DB1d_i2qlvwE8ucgNH3Jhm0a9jwAsg4hfw1dxG_ltz6rUoTwFDzAvU4dZQHSCFO2Ijnyc2L5w5weWbJ93RAu0k3qnsYkXfoBB6aHW8dOQMt4fgp6MLEecuc0uRYiZeAKKX1PBR1u4uuQsuMfycxXkuXdOAf37W_3lyni1qf", "type": 105}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12TggZJNaGX3wblNSGzGQm4OUO8RVa19JRLUaDQLog9oH8SH7AHq3T53KjxU1pXliyq6ljIO8T2xQaAto23l55VeeXZk42sP5hB3WI7BbL4fj2mQpSVNJgSFmjvhs3_9SyD_OdzdqiSF3Q1Z1bhQ49Gg0UxuAbWQjIEWLdPCGdsuPWLKoFZbO0BH1rOg3nA3QK_3RXOM8nbb_yjTZ4_b5lmkKOaN_DtPJ1Y6cz1nDH2yUErpDCSoiUlBurk6LKm8xLbPOuO98IVJs7oROpaUX2qAgb0OhsKNxoSVGdzTYgU1A7yaOfAr2UlEchox-vjGQWchUyHo8J7MS4ZWZ8xi7jonrzg5ita1dihp2uGxm-WbKuL4ScnbTmYG2oD4hAq9jNu0fvFA_uw4S9CzskGNOf8AofgKxg_5aVIZoONfwiTw-VyP6GeuZdEdAVCqaY1DzORIbOEK3U9_3m7TaARfZi4SFfd1SAkwdKi_nDAt7yiOQ71nezU0eVxT2oymq4QMUSC5VfMwBB4BY_FIg5EoFQQkL_7UNN7W-b9qmN1AbCi2mRapXJ3DX9bIAloNXRAwFGsntdHAC2JkJn161CNkFVynXZFODsbOcJMpLsVltv1Ruw6trBdB8QOpV-qOJBZblLLktriHVfp6dUBiVTFgTxEaUvhD3EW9WOUaD1IZ549ng579lFZ2KmoXsLbYQgr8Uyf2Evs0DVhUbxkdOb8vi5NRveHMDtrHtU5Q5mo3YjLjAxMlF5ne0pDIvPhEK1vyruFg8R4NLgr8PnImV8yINXbhFbfg5h4-5FaCKXOj1IZlPR9aUlL9xZ-FnLlnJH61hJ2ManIn4Ij8OAQiv2aL_8R_M7OEDhKvRyaeUlF33Dq_qWUF3luQjRVJkWxFCb3RoKrlH6X_4Boi0y352cR5EFj5UkmCjmOpzWzB2gR1NolrY5aW4AgyxH4YOrl7_Q7L6DoDjxQ_JDYLnvxPZR2gYhTDHL2VJB2eM6_IzvLV68j8Sps3wJYhSZg6PybjSAhGckM5GIJf6M7SA8uy0Yd3f4Snm07mL6hJur6SJGrRZTsumZvDkTzi7MPwy1grRagzmMfux4vnnIV-GlD1AlKMJId7KKw7lkAUvG4uqHdzkvCoVMUYvlljsizwzOYi8MCoJqnITimXymhZTY7i39bFS7ZnXccGu-GBBA5ofSAOXlwLXUA2n4yOOQl-O4bND5ieyKkTE9fn7YmEvgas_Rsh0paiimOecp9VXnxve-KnGqw-uiXaIl3bfvtx4E-ubD5FsAanTqG7nWxjvvpiKz_UyY7KiTFyp2XRzfnjzp3qheuw_U_26vRygoij66tHm0FU0CKFVhWCf4qY1vPZNe80o2TWJCEt7DqdHxuvC7TXbLsU4tQPYJ2wztCHJ-EZuX6VYcp2mc92BOyIqp_vZGcgKj5eI8fnP25kx7GLvMdcZYS3cZfD4_meKzGhEELRznbgVaec8Au9Knuc9IARsyP0BJqfcPdafIsdocSdP6WNcryzV42uX9AHZzWaUHZzL7a7UvNV5KSg35Th0B94Xz9USUVAgoDOB2xKFs4njEvNEH0O028qs1IitXw4V1rLUXFOkfTGXBaLGUk-dJsY11G9nQGEdZNsRZu7p38c45bHBMrE4UYKLYHAARpBe6ptEDUBCHkM5L1UwQb3k8ifH3-hqxyMCtRP8FVnPoayiYfkek5ZXoD7lP_4wkHhIu5dz41Pruwx418bIlHMjXHmhD6tvAWtlNzClnzuJglM4trKX36QVJsAHcknXPJdtUFtQrzqpTvNiIW9FwAzHWXbd4EMeW2ItbNWccye8p4mLbuRM9w25oODRlULn_r9ZxS-YEvWPfp4r4xX17x7NAiSF20NJCrU5jtK6cSZfM9R_psCokxfPxPuHndQEytiCyiIoHk2GpdqI_VBMOjZSrI33pkQnPEe7cSLKAL2O3P9Iss9zhljM2n5pBK1Wi66DcPN1-3KsT2kkNpBJNVC2dJ4mYju-YE57eD-cPehWVmWTyrzx3WE3iAw0FOfElH1dC6n9UutYYDWCiJqXJjFMOZsugQlIP4N-uFcYlVbfIHSVoydYrVUhBIveGJ2u029F5ddR5PQcZiyNZ-o49SxcwXL-iO0PWtm2CHBu5nOrxGuPoI-nqHUn9DoJ2wUhTSjh-yduQauRe4KqCZmEA0GgKp8TWrgW__xIzu6hJBRxZvZ8WEszmDawSytzipkgoj_7mlguzmI7wuWU5w6NhO4JPtWFO07p1BZSumXwHurHd_ZLudfs9VzUhvg9clpBPASby4KPD0vxEy7zkVczCgSCtv6gX1uA14dHfqTaI7N8nCphDGM4YRBEaNarc_IrGt4Qd_AYyc7Cdi345JHygK5KrfVaQpNwbfH4w39LIaNCS0v3QeGPXgVVEnuDj-ghtDQ9BsfeAIa4Hh5SqIwJhVxThrluzHnnpEhC-ioihDH56QaKQxym6c3sapb2eROTLay-dIJjYIuDmI3pJBZ2uOF1u8I_StTlrWEZ1SdiyghhZDoGD4ZrmAVEqmd4QchFNdqOUTquQBTDj", "type": 106}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12a2sqiL2tIraxCGelxs3mJp-uVGbA6YIrqn6HHxrhVnhg1TXS6f4BUxE1iu3DNR0D3TCNSMJkqFjUDEsKkr4ylnpZpe77iGuCTREktBguePgqj_jjGFOMddAF7fYEMaJUwyQeaeZ5mqu3QpncwXwPQNiyfHxKA-oD_yQgNuhpmKUZm95gUYa1Du6PPfHIW5tu9GlZUMqZqgvmMbj6lUOboLsS4fDUTDxBVd_4k4N0ub2HMgVUNPqeA3DY4uDbMjWYRcn9XMdkGinpRxEZCxg6Wl551bqIogIRlUnc8ocp8_n0PzNNeJSMrF0BLqHtqGMP1WBc2HIPYE_9tnAuJ5sTX0IaOGlRi6EFz_h6nxbMu5jveC33Sq3AfJdGMwuxS4ma_-8r4aNnRVZ2mL575L9sn1bd4vF8zqX3pENdzwFttZslCh9iiRW3C2Ujo9zgN_4VMZg1vZFchLn65kIgiYdPm-RDRR6H5649lwNqArsbW5OnFUvAg7ijN6VfseIccv9EfkACSkmq9SzSHaXMf-haYHZT2dVg0YnB1UPl_17uyFjhQNkKzvSeT824btTl7gphtyIPHaJB7JZQMyKICd0EV5_NayJxPfVUrnagcwlt6VV_nPdbTzQP2NPGqHwB4OjyzSfoVNfr5iC9kVX_i71nhvHtGVnrPM6susOnwavfF1fjZ-c8OQaiksHnYSQLuC6WvmzGQ4bwvzkLI1sivQ9GjBLCVwjwGVekJzI0_gC6euiLUpcSG1o0R0PVaipnuyUy-8PmhuqbLPxoVsKLyvy5zOXZvKk0Vo9qCoCl7CH0Xec39jt82AKEH6LyT76C2zSeBb6R0P8VvH-HyiomAOjEkG83vlP50voF6PbW13TJvHVdt5usQUThLeqJ9AO5V3APIeP1OaNLK4-Gk4-zqLP-n-6mvPiGLQYQU14JPObrZAEaMLvN81McOG38NyGhqnESaySJrH5zf90ks-b0ZV16jbLENUhZ3ymKK7ZYwLB87nF7_iunSYM7rIC7xJCpqQI2vUKmjD5Wk_N1CgK9wGuiv8j2JM6C9_47AxGq60rsA8nJNzWT30vjY_8eNlVMIRzFKy_FScx6TUNGIVl63aGhwjzJJGkapxpJkZP0yG44no7rrLX7mLKCwUC2Cmv0fwEoVtW7HMitMCsTt2P1q2Qz6xR2srL8i8oZOqGpLoUHkuvG-dFUZ5fkuRLHakVChIYtzCBbsB5vhZll8gisj8C8Otwr80sOL2XytbF_sbEw5MGblT_8gL3GxoSsqcHtcTZ6z0MFXzJDoHQPlnil0ONb-7cAyu1efWp5ns56oEiAanJwWiSsVFGjmsiT1ODMSLbw44ECC-Q4GDK6gl7y818XncmJKDAYJOoBVsVrpDBpoK71ldTptk4pP6L8Y9bzK0RZIm-U8y9bJh_ujw5IbBSU1wZ0QZtporLxdyNCwlNz-1SumjeIgJ8i0ZVHO4Lz96S6DZiDotzmt6fPNoegiP2Lzh62zCi8EWUVYRyNevRZo8y8T4m7W1EgVnTBcSrGs7FbBi5O-P0oSRB0pDO04Ajagd0VP_8y_pzVltKiTsjB6lcfJcHbtVrc4PT5OObD-QocZhTgG0fLs1Q4dkEOSFaGPaDRTGu2BZ9tOikvbFvK2HL7Dlegkh-wF3AHgLgdNFLRsolGB_tVoCkKs5wcbv_tsF8aDHLXk1AAnHVjwWK__e-NAq2mkllmuTWidA_T2HQh6dyqRSICoOy5uTvLjXCvzhqb8qQQmcOY36I-BFcOWvX2e6cOVg3CGLPIfexYLnAM_IcNPrEF4e7i284BGfqIk_auZm7GFdvs05i_w5xHxyyZG0KjnHBqbc8wCBWgXu21m3Wo_4-FOIprzwuECGaPo-x08tKtJItM5MQ7cCEpTViabnn_NKSCB5PvNBv-rZ0rX3NUE04GM5thzS1EKnAO_e8S59WEzYbq7tWZzVVCPfZaZ84GNc6XyCaKStVErAA9E_QwqqyZalEUqnBMMl0Z0XqFLTo5n2fLGKyBNBvLbPo7IYnzES4C6QDl9yMg3wikCeVdypArcaK9DwjeC8mDlqhF966wTxBGFMdLQYNyMxbNqchZYEQ0KqI45ClvAoR0zn0zHZlvn6sVXwV9SAoE9v0vRoMaDIN7JIolPCNevOpKBR1QQSsMifQVeKjyGp4brnEEdIjmcOje9wJTzkGqxD3FCyRQZHc6QOg2lxNCj0Anb939V0gbbGwGF0PmWoiNrIPKDU7ZhEZPLrajyjAJWqIWHVJb22n73ahcTbX9HACrD6fNWDXYfj093fSTZK7wezUn1m2PwrDG6eRja0VyjHhIlK8lB_evNJ8R5THIc1o6CrHcdM8BNi57fBusa9A7s0xkM5ccBn-1a5A-yylMBJXV9NQKgrVtlRa89rT7SpUqs7gNRkqoP13rcOLVorUjzDIT2w4WmZHVy0NdBwsg6vBCXiZhP_rWNcnBGjrVNiXv0gK78UebY9ReTdwCDYCf7idJK48hl98n2w1SJAx3lhf5F_OsqKDRqgheO7gnLxjLYj12GAlNBuBD46HxM2q3", "type": 107}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12ILUe8SJfn19D5XIzyx6IKGu7uYhHrHpEOPTk22_5n8KlL0apPbK-m3hia7lO7gs_gOF9zzYm6Jre1wKrtSDFrsMih6GbY7-vrUPwchH3ueKFTlS3WJymGJjw_yirml78nGhgX3x8vuBLTvJNsU8Gf-XhLdtRcKwlj5QW-FX6gWNXTOtNHkHqiBVjiY4e5E1yJt53cvzOY42hWqZL0IQzTfA2bOP_8dXGxBXOwOasQ3bMuoQeO_l3fZaX2t_EJ4hSi9fg2PwO-N-uJZ8yRft04j3R3PAVWgbTzrjwbYcAo3ER5J5qeTVO5JPtgILSI3rGuf7y-_xpsgsu8XPw2Z6XRX4H5MQHmWs7_S6X5dK8owKXKaZdgBBL9dajqgf8V-9kCpgibBoQc1xl2lbbF2vv3fpIKPum9jcWgCGBtccTaCaHBRKMKQ-pU0M6ksxbVMeWHmmZDGCKohpEkUIiLc2ksf8CsTwQ1MnBFzZpl_rnIVxVtEkGhOqb1JedynR_OxraeLNML0dzuRIrriu_lA3lLDuAj3CTemPpsFLznNz-8H7ka-oi64GcBCfhY6IeRDD8wDlXE8RT8RudPlexCYtNhnMpXLM7msw14geKoWxBCgkDAtGw0piRXIzGdJpSrLVolW5n4zWg3nFCWBdB5CX8kGzooACdpGjquWgplVPEkYRS2RweX61jJk569yLWw8jeNibfNEzgD9n27LV7fbUSKDbXvM6-MbIjTl91YjIV1guatjKKl_3Qr55prrkuXw6gMbwxIir3f76FGSEuJZdrsdNKHzjyvzKOn4crltsT1qv6iHdXzLu2_mNA7Hd2DiJn9o2blVXdnfOYiIv6k_L9jfbYAtk3tYdUzDzc7ro22IALGdPmiI3nNYJuEBV0SY5AaqYPnB-ViVSkODh-cyVF0vT_20AeHabYi9LlAmae51k3chg9ft2eGyPImbroi3FwhIrQWZ5bad9fQso6UQI4dy6v4VQAKesgwB1tUMM_yE28GTyUMMVDFSnHNn7pTrp3OWmnB4DGIZIP9q8m1jj4HrjxuVf5yCxMyBRxsJ0_MfkfpIWMAR_4l9p3WjJIsQPUyAyL-H8ZUs4B_BJVtKZ3jkSqJ4hm5IPbzXYwsX4v0jtvWOqGK5L6Ef7bIktbNaBZFFreK6YGzqp6iZrRELI6yugjWVGfeu72ZAYy5_4_xDN9qaJ53T00NfDkieDx7FBBzf4GDFZ3vad669hEFXViAkOzUANmua3rlBpD6y8wj1JHTLcUOd3yhIcqpSqhMFTNVpFEF28HpG-7BRi1Zm1vrwpoDkrUIFV2XVT0NyTuCsgW9SdCT0Sbxgpa114zvWYdNAG-pu9j5ImkFqhniVQbnzooIGq-kGafkj4P6VMD0N6p1slHDOrzIKNNcVaC8rWIxPd723CaGiPm-GVG83HqMsS1uNRYgrv3lRJ94jRJxcQsfl-G0sjoJ2xKnmwlzyhkf3X_lS5UxmW1K0xmQjLLZjmENVeHSECqIZ6fg2tk328Ck-6IehrMzfmSP2vdxyrz_luyhTt-qWmiEhB3porBkvJOS3xg9KK32_nEP9JUiPnJOyGTXnZmnOqqx0VAK4lBg6PsvXXBSmEBZw2rI49jXt8HnIZVdolerYWcD2BaNxHZohDk850DKXhFIiLxHjC8dCXE8zlzxTUP7GK-DBfQ64aBBCacrALVlynOHQChww0sARxDTGykB4qdZS2E1MgjdXL2TM-c2e4seJhC_o_JlaKXBAA6cUVvrwvve5R9CxdKW1Wp5lJ7hNDLQKAsIbFeBQlYIzBnC_I2XnxvtgbMYuRiQz7bH536GGA4gje7j-cYvmggW8FVEgKZ2g6NMgcrOYkD80eT1YXTPpiSYZyTUAfVHhq1j-Sn5Meq189RZrcygbMzJ4OIbDak16keduEvlbJmtW-jab83tkGyV9qJX9T7v13LQIuPLR1GEW2naFhO8H4Ti64hN8YiURG5kHObjjECsetYN572wDbAgdXDlZohYrcHdu_I6CrxGeYp4TDZohLKApHkGjGgSh0eVn1s-mcOl5KMVfxZArLWa8scV9M55IgAnslEMAVxUZrY93lp72B3aid_EQ1jBW1GEp-8HY9fSCCKiYfGYD-oLr4YyC1Cq2NHC-xDFX_KmiySQiplzwTyVw87_zp_TFHnkx7Q07_vSwb3zR2iNPUknmVprbL4VNJAugfn-X5C4JxO_AdeydxXmbdPWq4aO5EjtrF0n4A7wSOg31kO2mne70eA1lABJGxiN0M0DAJqn22YljJRSUZ_Sm-BwkZn8l7exfS40BtyTsK6Im5knDN_VLeQBA_w3lNV7w7D_RHGOLb6IuNRaN1KC0WcTSrfrAxDZKcle5CUKGjt1O8Oy-2Y4Mr5EE08LvvgY6x0qVF4nAChI2yum-4KVHknNj5nnHcLbZj19njR1M1dcpOw3wDPIE7XBbRboxUP5LoO4GElW_S3ly9dPAzUvHaGxwjDnSc9Xcli2snn2MCeXePzFYhkbXaOR2i20Q3JoO0unpX2RGbdEh7XsdA2cmOqd29sDV7Qzutf", "type": 108}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12b-gI2lbt7XzM33GpV7IqEzu0aqpGE7W2vcHdGN6-LKRVAM8OR8Xg3Nf020AFpMdC4I244ykKgB2BPoC6vOHkhGhtXZiAV_Gq2iQ3-zQ_P5CRBhHdSfLiN1N_4udMd29aGNHr2L10qRgLGOtyP0dAqa8IkkV3QvY_8QeyYpwGt4D4nxUUpcDIFZPZz89LwHPFHjPkQrlXGeksXculfOzkfw9ksjGlxKEzRkNYH3nB_KGVrM9QOR0ccPj9ecim3KYWnK4gm0SbjK8bVwEG8ISjk_FX6Kms8cR5735464BRWOEXJ5TRKjO-wBppk6AEv5mcJKzD569EJvBGgXL4Qb1iBWACCBGqKnfg_VuTCIv4--4_1WvrHLFy1U5oz67n09qYGrtCiOK0yeRYpXvN7FMF7mGU-8Sry7Lu-nc3RdVh-tJkwf0sWg-yf1xSTku30B4G9d7M-O3iToTOROtrRNL294kj-3xU66ydRfI9FiHCMF3Tx9NChMjv2dcvoHQaAdj5P6d7cB2u9HI2UpbFHiOoKEKl8UWljhRzGynhnaBHFR1cFpquKQn7UC3l7dzsf2-xqnmhppycR0UXLojjzO4WYtTL1r7PzGKwJ1bAr38mRfJ0sa9y9c4gCWV3QFMt3ZGgZN-5mCa82RyEC__cvdYkhWEt6_nOjiYVjGwpNF-iYyyImajFZPBHKACKNHguzsMfAmYWk32sIJAuZfV0YVwXG1FXr_Ozz3GGPQxRAL7iENkBirarAcNPWEbm-ddM54KlSnLbyI5Ma5gMgdkPxDjaVzIv-6u7oUzQLosUSpUTQHTR3xMc3VbiykrNerwCEn9ZVHiBO079yUEQ4aTj-GQ5BGe8_vA604gc6jQhK_Rn4RoHpHjVg3Zd3vL732aStQgJZYxsEzKAHoZMxj-CtierlEJzGamg1HC__2Gy3riy3nzvWxs-LE2aQO53i2uGBE1Q-QOyz1VuXGuCsE4TflkXCiCInFtSqCvO0QiJmSw7o4E6KR8JJdDci7Bn1va0AbdT1M3DmeycloRDg9Fkh1kTCbIDN8amwCndCjjIi6it2D3mib8iHqc8LYh_7SlagOrF9n690QPbv0vxU2vvKF44_LUuKdpxDFWhBk4rH8f74RCcABDXM8mDRqZ-Jur2eYB2U5VDbuIiWuHGl0brP0PDz5KExyhgPBCJ7FTSYWtqHf3IFhfJL4EXZ0hisVMvvUNzk1-ry1M98jFK1DQApVaB9VZAi8F-HcXqU4P7LQjDKsczyMvLXjjvzOLBQBSKppod7-ydniQ4z3834Tp9qKU6ltN3qtxwHOGWPJ5QayRTumESWy-rlbaVwCj3TMsVijNBAz9R27cwwwuI-bJYHwweLGCH9WttD6kvcmlVG4AnU594ubkOwcdjq14NQZANZjGCK-QaiTmMfXjHqBUUw2TXAd_piWKpkeS_RP5g4ODIuEjeTBDqFf1OMVMDFn9w7jTuTFXGhnajQNc9ABeBC4brzaLHoH5oiUNrOU0TjRolIlr1s0eQEHsb8n_kF90iiqnSkXYjXEl2HTPcMvdLhe9dljJu26IvNCkm4ZastyEm9Mh5tTPo1ZdE0YNUz2ehR_4LwbnfbrG4vMI-YYRZR8p8XVJhtiiX2m1t8j6DA9ZT-1q7JtM0SsusfD2utltq6_80E__kzvOmyHrB8Xd1rPUNUwI4pGQFbYJC13R8gwG_u8hoPv3PNcyzubD0tAxw89aq2pqXYll3NXGYLolIWiEprgoEA-SIS1H7_zEvqF5JlADVMvfmG2eKGU2SZcM7enC9oKLWu1yr5gjvNiA1YU6iDwc5SwR0KWcRpLBVnA5fQSS-pIZY8d25VHb3hQnLFgn8H1i7NilNGLFkkSeNejzXpIov1t7t_86lRA1CkhZXeQyqWXdd5vLR4lqL_rDQv9KEv4yIGEYLaQQ9NBUQenu1inF1U_ULBdt7PZDE0cxL0WalvXLT77iHwIBTmVo7Ce1hU5lkPn-dLgGEFJuSxFaTJn8Jz2pQJoLJfrHKL8VNa89SE44jehkd8EP5bkJhJLy6PT3BTQz1MsNqpCRdB8clR8-ORrnpJyn4HS15Tk-fzWJgRsfMOmwQZFv0yay6Kvg4Ca60yMLVulx4f8oNVLKFJFRE_hFnKMMcbbnHLgHwXpxjTbWmux55w411ozZOrQaePztK3vvoM8aVSUZ4LImqkWgURt3FqEXh7rek6W1-b5tsWrX1S-UuooCL0SDXs94rP5F_uFdWKFAQd9Kj6YzjMhY0kh6Gpi6xAP2K_IuQYZ7oKNBeV8eY2W9LFptrQ6ljvn9sOOggzjYW7PtvUuY96l5f1p1eEOwMfnWYWmgK9m0dgk1Lj853fOJ5eptw-pjLLh23teE6zLZSIsWsaBv41YNdWgx4zzyaXCVsLAw5BISGHKc_O7DCGXV4Hy3hgciCjcPxQYoQP2G-x_KncGmR647iKgLmjHlj5fyTx8RT5d9RxPwnXdNBR_04XTtnAdi4J3-f3J6IAoQZOixkRX_2SZjMYKOZTQzTKUpebGdXxv4IolgGY3iF_siEy0C64j1B", "type": 109}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12VIpQuHYHDCryYjsj26XO51yB9grZA13DWOWIBbzXmqpPQsaVlhGlBhnf2ijvZCXzXL1NuP8RQ6yYpdSJqGC-hzoInI1bf-9J6ukWxxAN8KlKFJQTTN4WL9ZIcS7uBT4FcXfG9ij0Woaz6fqHhrxKlU-cbVDT_-Pfm-xTf4Mkf6jphDrqSL-uWAK8HLo7N47q7rdNbd4PTwQVaBzgb7-9gazgPX2nYbiwmDiPWKCrbIrCig88iaMk4yi0a9ephysZOAKanoJFbxoPChbhbpDpzbR2Os0Cuq2VU7QVey1OGs3DsTxQQCfgSUcv4Q8WT0UXnqYLNPXrVevKqG3Odhiha56FfHlL6GjUmfA2ZuFBTLM7q0aCtf_0Rw5Ys1Zqzh8C5mBwAHyTbNat2mspbxhCcdvmYq2Sx4vIzoyJ6xhPvnj_wywKMubJWQSIEiUcPeVTNCGFQQftHMvtlYz2ioH7o8u_k7thYRxcL4jkXlMGvc1g5uMZwQ430nnMkZxGHaObj2Yq17G8ebRJPDzRSTf2jCrI5vpr4Y-2X2In_J5V3cO_tAkyqb4f1UC-Nra5bP6bAzWz1uRC_Jw9ouyPgM4DbTFR2-xVJBJD9aF6QuQKlPG55wZ9iTjvVl9bsKL9Fp34s9wjnCo9TRoL-xH--4EPf64BQ3CpXvh7jVOPXOLKAKMzbwuqvAb87h9FcFxfMwakq39oT__T4owGH75gW0LYCcLKxpldwSJHPsdAcoDZG1MeCz7yjAlnZtbzXeOC9ZGdWGkB4VIpuSpcBHmVbGBoq9rQ_Qq8SKRAtrQxkA9MiKbDfMeYqYF6TGkMPXbyddOjvPDeGuUYZDJQ52OFB3CQwCjg1lvhrjZHIIPLA3jWijG1gXYzqBFSRS_29Us6aUsWS0A4LOeSSdvUKv8TgT1FYM1MOw3WcLzQTfjB_q09cZ_819Ejwfk7p7uCR0K-e-YW7-i0-GwkbxgccxEdo8iICmnDUTy6MV_AhESg4MJREhaKTFUDqGR5dfEbYtdPNARpEb92vdQ8bvSeT5PJe9CiRGuwV4W-XJUKD9E3p3J7IaOdaZpyDEfmhmjF7KORJQU5ALpVc7hl32Vekf7lNqgtFGCCFEvbrr6gqEpt7w_UD6XXn0QVqd-RjhV_ClYE8qDvg_bjiLtNR3DwQTAfU3lcFsXa2J2pGMPbuFpR5Op3O0ZqDbqoQpPVZw8vsgN_9lry2BW14cLNRm43Cu2oXLiDAEbLqGk2vu2R4m9_7lj6JEuX9MCVBbXftRf5P3lkybKziogzCdbKSQ4QhoQBo5efB498ORWA7U70L5HBq_Vu3Zjy5r8YMfPwqVMZC6PDmUs2qH85-ZaI37-1h0ItU7QD59mRrNkayelLHpwx0dTYp76OGVowwmLgekG06ppBWFK0ZTuuf7KnzUg43Lb3K_a0uaUjVBPbXIeSVdFeYcyESxht7kOyhL8fcFnKqm_b5yJii5gfE0oAKATCC_q3HdixM0YwwaoHB0RJ9ORiv7HEDWMZEDKgQOHtc5ntS5paR8mh-2F4bIPtgnw7vl6PKxMiJMbVTK4oww98r0SiImMOO-A9F73_VFT-qefiaMvK_RPwC0LTM2gKL4enO251zopg1LcwdEUByuNU3X_s6aG534xU8yJu5J213qclNLeT-1i9PHaw8AKjzU1DjBH65FFdvP9a-UEDnC-X9u-Neu7NB-phDFQ0iO_msqTNR4GbCvjmNOyvmaryRHDhM5DQ_4lU6vQnFQaTOqGTSWk7WNGrTYitiXs44hSDFzvWFFrzn0mu29hkVApoTMzPMGPHnL_m8qgKF25oJ07RsoGVQQf72gUCkBjo4-VrRcQFgiM-zH0LEzninMjwHlGklTrcrMoez5v0EcTCT0rANY9UBQCXlUJtcrb4l08mL7RGUGNAmSJJFM_4P1vg0VoYYEB-jtmD_V7TbR4ulivU3tPNCZ55rG7rpMK-L8cpD9GgvtdD5yJsBtfJ_o-zORTVEH44H7fZMGzXzxyjzYGIO4hxZqPzqq3FbxJ0UogW_vLLNxa7FPnfUXwLC7OW31spFwj2P3zQ0xoxwzNgipDI96jnnfdZRJlg4RLmcXoeLOXRPCxaFcZqRtrt-G6BAOd2ZDDyQvyh2w9On4ubQFSs_5IJUAq4EvNFvURiF16c7d7-g3bYj_-O-NcDkzgYRojoL40fc7voDpoOgwwaN63JHPZKJQoUQDcN_C7oT-dHG9ZJP1GrKtDJNrNU4bDzWb64hPdW8tLDkogO9umnLbWcfrun_kmH5V_JZcj44sQZT7vazjV89yK4SNLo3gOxFnwa41aTFNTMUBbcpKfoJU4CTaQqKKDJB9m4XQb7lVb4w50M9mkeCI9bwTcKw20w7s5eD4DEHzzfM5gW3vZ5PYJg9LWvwT1aY5MWzrjTQDyXwf53N9ZLQZAVnw4ZdTSWbnl6bLLDEzkW4uKxxKNQMteZMGilRy4DOClMww2tvPDTy4CaxaEwS-krGL65js9VxYV3EPaq7SgHMGSCkc1umq48HjaOCtKG7FBojgLx3-ViVJjuikQgJjBN", "type": 110}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12YMRV8rbnP40PhnJuuA6FagU4z22M-mfddU0mMP8gO2Yk1uTfi3H1deC3_l2pIodQtHYQY_Hh7hX1fxd6Fotl4523BOz1gaRFGLjVSD6ySTR4qWorOOi4K10r9p6HZKDNe0ewP-PdfNkVNuuN4RDvdWhYOgELJWNkZgAPDB2p4T9AMOLC-NBV6svZlopUPLm3rOtELfp00K-Cwx61JP8laqbc7kk60vyHfAlBPk3FsEEzuTRfq6qUpu7_ex2RoH3tPQ4xBnGKdhDUxI0IYbdLhMY3gvysVZaB7ANim8TW-ekrMUP9eEjZMTppyvXTnlQN30oNrdutCbxWnW5SIgLzPWey5Lo9axjd7VHvcinK9Ec55CLoFTEslEDMw-9u-hSZA1-NLc27pCPDjf0RWPFHk0SPiBxUd3KDjD6tTPn34XodKXot9NWp_xdeZJEfgWBmg9VmwrXsd05xCHWqRPKXhp_29TxxIfoGKoikeqk_OfSALbl-1AZ5ciTduXLriKGPsfWe_Vdugw1u-On75U0zo0U1NrQAV71YZAZZM8Vuo0PIuU8gUWKmBwuQjgAY3EuoKYqoqROHdmSPHZVus_vXoNuiNlyPsYfiq3Ww8-jDVr0yrkKjCIOkaCtLZJ-8xXa5O9wrYfcag2ijf1Z6zl8vIcR9yWxH2aL8f4tDefMDBB6p8uljh054ulUhQOnVx7erKINY2_CF4_YQ_g03Wxr8YrtpkXDm1zQSYYSvwTLaCU6UcKUW3EeWqAj0l2Xm2MhV502iqwbq_aersrLVPAVpZgYU1Ht6UYK9XPNiFq8VVEuxghV7rmDuTmio4q5QLcmBmBZgQ9ZWrZb6q9t-8zI9mdXESjd_gs00XG1oHt99l7i5Gba_jLte51oNSEanwDP2HmGBMPRsJre4N4A52ETPQEypxjmHCxiE6g2MP3yQgfFN90BsNoF3MEfOZiyl5IpJoBQIitaFmkTBVGAowJt4Gdt0YHKbV9nJP_6R6kQR1sTNB5V_VRO42a6VYRzSUw6x4HSE6JHY0YNgcQI0LYUslxsaJrKb6UqezyZ39gwLjMtDPw74RoqNDF5w93uWopoqM--COUxIMDiltQhEnnBeE7V_SsAglqjWcr4kZI9ifAnelwEMYSAZ6_x5b1MPGRKKi_5vilWG_-yLOeswJYCAfY_qJaksyWSATDt_VVWQjzdNh4yue6AqZHdzUHORGx9DTaC8af0TmnYjX4FYuN5hOPFGhGk80sOlCt4zaiBst6j-A-2QhSPJfPVSi1nf44Kr1nRRReGGj81hFGYxLonjU5ORiVQQV1JIeZbGx6cNKmYEPl_8pN6UDUavkFsn0G5tqT1r5GEARhKlGoaYMFfWCMnLX-4VW_oHRKxV0n_-MX_BxvTEbUGwKGdKd2p4t6fqzh3bKM__CnR7xl8uu2vNK5F51bImTG9ctYmxVGMiUDrMDNiU8h1feLOzUg6zDrvZSZc4KKUulrsi02sYsGBl22uWgpKqmtGqf2cSl1hrT6fuPsfE9sSV7xZjKhbmYsFwO8typN_kEdKoWwg5As1K8mApa6oaWozDQMxOv3hpVVB5mNyx56O6J8BKJQ-J5iFu01on3JmZuYuRm1u_pvFeAYsPA7aiHmPnE5v-zg0lPJXIv_t8ouI8IzzJZpJPzVVE9IkPHIXE99J2dqxkqHinwu5c58HgrU9hG1Ap-_ByB-FGvbNFe0fTJFiGaonTJZ_FP-5JBwj8AjrI7iTcDn0UsrG0zcSUPE4epar6Wroe6YbdMUNSFtBBY44CP93esM9mAQDXEPcLZoTB77pFsiUCP9jejfsXWYdQX_1VFmDlAzM87yw8WtzzAJBbWQM95asnDJ7lOH3WOEHeZkVlZel4kh6C9H16MT11dzzOqP-Y_BQCN_fsmUWMIFpkOqqmmZzUmZw1c5Hw5oUckRklVTSaG7gmZhss6HjDc16-VYcnM6_dn24weDxMVnDvwliDBNWCt_8rs5L_yAmq86PgFlnWK1mbnRi4LD48nqvh4z0mgbq40yibTjn7P6YQ2MLzH5YddPs1zaSuHyEc0pt8TeowUjzjpqjZoHbeCDmzMuvFL05foM66wCuHIvLU3k28DhBuMB1vQBWvRiaYM-eyqgbPGlvkNajUINvEehFN_1g3QqYzDfc22xnRSq-eN3JPXuNFGmmR8mJN1n3Y-nUFArol3z7PhdPKCIauGBU8syv8T0wn_70-5h5aLdn09K4y8ZH4vSoAW1RyrYhKDRkMqtQHQs4-HXeVMstDrDHnmPVBuPhzG_MNHzw3fmUEVavfR01dhFxo2ztra8YXg1MBZJcmeCtOPTIpjYl3v-fIfICHCl8f2wYyC1HHrhboLvYBLKi7CNrft-Nyf4hp4j1SMAqUz57yh7tF2OGnQe674qm5Bw909oP0T09pZMPg1foH07B2GyArGn8GM0KvRa79acVkHfKnOpqOzL93S4smcWGAoD1ID7vSueZYo44U-_50HDCtCZhCYdZ9kWzZ9is1EH2HqffkQvxn7PzOoHNgzor8j2GGh2KWg0x7yb-2lofW4zMn", "type": 111}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12RnAsCHK9bpBvQzTcF4tNPbT0yivp9xkwoAnWoWxZ3j9xqmF49DHp_GuUiBbsTdzH2vVvnQLOUTum3FTJDfEwaPkUwTT9iMIAsTYkj2eORfzKdjI4rQRlyqRsae6jDJF-GOEAVs_YZcoJt4uW5578cIYuqAUKmSGMCdgJjQQAExi9jHBHynLMlyiksXbMAsJS8ZETJEdE44mssU6Hn1Bxg-NW9qbXlRvxDGNlnSMfSTSo8o2SDQMdUKncoJlBYcYRxs5-Wkz9Rgs2IoAMoPYYD5nXMkWT4eFzzbTL1oyrXO3Fao-35jh31qrVDt_upgOoCCPzDB2oIEPCMe-P9K170eqkEfsJvc6p4D-_BKqUajDYmXni_zUmk7ZwRrSg6bpODshp9svbSMzx5FDeFtN0M9K6MwjeM47lSX2sbErDfIwUEeqQ8AtbiVa3CqKzs3bLHptjVBcgdlQp6eiD2tZ4lZDs6yUTRUBGznPlflwCLtFoWCN04FFD9YJ2katIsDdBUP0q4j0UP40NT_jQDiysT1UeXKuPBA3DL7YEgwX3JLJ_TUOkvPgaDT9EE0gDPEYfas1qXhwKohvgNSNxQWIVUbVAeYabcqoMjaI-WVE3YNV9J8NVcTobhkLBkfP95fzdL3v96XvbEEPSXbdstIbQ8t7JHQy1CM9D5VPT0yg_fHjiesfpDkBtuP6xxw3pw6X24is21tr5ig25LPBPB1ScQiwV2Hfk1Y2L3zfGBBFlByOzR5S0sjgMp7W5GlA0_THXVk8PiXivI-JM9DFaE6wKBd4gI0BHiUGpHWULU5laMZFOf7sZPHdeTfeq1IHimXBdkrwX3JTk-yNxOvMORnNCNyA6zPuzyJ2CprUXCAsef59J9B2itdRFHi-58PwoV7VwWOLS0qyleFIULFsvv5rsvBa5l3w8Zc5FhCXiTMnLVz-DBb_gzudAVE5utSFotJYrVseY5Am3K0fPPkvvDUGZOlTVQDAkrTgUHMaDq-609up5vUTJNG8JOa71LZannySPXdnVg2ilLzPDE1BY7VxChJdt8XP0U0kQROQN44jZhmy2auXFc2qaxocZsYQkSt2FRT-hth2hm8TwOapFw1vZmAq6PwcozGvndgiYuaTHzGv0nfiBJtRIJA0owPGi3I4MxLbicqcPQo9Rn4IqA2QHb4z_KKogF2cQB1mngW8cLDxeyi8gWv98aq7ra2nZGBrpjyHimyqoPingo7LXH93I-rBOhkqM_tqYgQ5Gdakozr_HW950aBrIDN9KMHkNpqTyqaOhliJ1vZAEG_Kr22X4M8p_5L2zbSy3ctdsTzRvxYYPw7dyJTkAnoC9wzdiW7s2NtSrWCZxkTHXaG7Z5lE8eIWtD6Jjl9WyypYkTuMTZ_6t0xQ4PCMwvObb111e9OKJwUdRQNXfpW6H_2MRFzXEqN1yfjntPMSgF5i2jJyuq4GpXlc3OsL7Q8ewlObyYfBfW6TomjJYUvYrYaCPoh73xdhgzbPz7boRyEMiicCAe8eULETHz8MJ1grZ5v3kITulShDsrVebpKcQftCcPFs1g46GEiwGbwuFh19crWCS-7p21daeyF_vIFDQz8EtzS2YBQ3w5-VTsWkx9DosAPZKaQzl8SnBN05mtOxL-uAADraSWivhTzImfvv_v-kms4nP2xpJiIpNGCbrMAFggPEoiNcZ1UZuZEQJBzZx_Hydhwl1I7dtrl5AwyeNI6XWNxUS_CRClBQP-mA-SdVNLLuYOAn2dKtokHlv8vkaDLLWwU3SW1aY_JmlXgNW8UgWOZAN6_etaRrCruOcG6E_x6sd31kO_N7HhGYrBJv4QgEg4Oe-eR0qpPx1s8ur1bsa8rq7o_eZCPOc16NDQ_BFOzpLau5F055352P4QERmniqTTtz-s9w_RUxWANEjJbyabCsizUUbAlYkXJfaFz6Ko6EQxfa25vEFaD63OCISqVd48-PJmhCRMfY4hM6fgzR_0OLjGP1UFAVY8jIIGIGXU5a7xbAcyctQNCGt_Z7KJaIB2uPV2tcDEPrPqf3VEjidXHWhNoX147VGv-PctCZDyC-CsJK6w3vIO6HHJWfqLsUSjF83RVDFzx2R7UZj0IpCXanmbRZaQCzAtapU15WiRhMoTzYWHDjEVs_33TNCyiXQilqI0leVCQSsfMojDq0__iY-1tP5vbgKh1_ZJHZlz-GHLu1odfD9SsoN77F4sSB1E3QszGnALisyncq4KJCX9TePCo-s88Gye-gqFpmZaDZ5fyqPNsqm4F9tVb7joWZEoIGI53Ul_dNDVRvvlwQ3UgI8HsEHoJudhEYvz4u1Ey47p-KJiKQemET4vb72RHPWSQpLWZ42ulVLp-1-5nZekyc4YPci9H6JdboNpUrNXWv1CIJ2Fu-VcnYHSXsRzRwGZbu93_mvpLZ5c4NB2Sy9NNuuYzA4AYfi58FSPq0tfR4JDUdWqDjsysz42ebEuH0X8pqTiqtCO_S_EYyleX9FFUjkkC7xkho5OwiyM00-CKvwVDu8ErZNbHqV76TUeD42VL5-2bBGNS7p7FnJ4Y7gxcbX", "type": 112}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12JrsKbsjiLzABVUgVG6dUbNB4f--zzRIbRyf2kH2JIYf0LlfQu1bVSqr9iO-exZXmsmeKYHXupeGe8KTkt0LGoyrdCiI_OxW6Q9PW-GO5ywgJ5W4L0eIW_df9NXAGM1OClPxVBKkaNPdzpjRAcQDnY-ZiUt58e0eNbjlH2eBQ2S6NxfoAzl2wm4YTBHO4zs2T3yROjn8fUtnK4cuSEHyvzaGIPH1qIhPO-_eQAU2LWJUWuP_I9D810n9nV-FNdbAyucvWHCEbPwGljC1x8Hf9v6hpZudIdRzi8DNiWpwQcx3D6yJI4nNiEJp_6bvHnmGMSr1GVleeQ-EM7bltEBCtTopvyZvAbhWQaFumFafSdSCRimgorw98yBcU503yhhJ6y6anbfqdKgwYr66USvfNlPnep8fRYkS3VuVDZ3adxzRQ0x9mj549TpgzaEqZazHdQocLPC4YBwrbTZzLLYznKD71dsPPhg8bt8RiC8cO89MB_UqbDuHuzaHdJDIkS-AbDMty_Jjrq4-PbLNmYQoWnzgXfAxPVGQ4IrhW5i3UEnbHdO5C5St2tyhlC3NZk0T_OnRmu2Qjaajh3kap2cZUd9MrgvplJuTYJBZLcvbDahN9YlFp-Ts9O1AFAyTmPUgTuwU7cD1AqC5wvAXM8JZ-78cUBZgsUay6Ln3uHRWhY2bgwxorHs0j0s_2YDXhMOMoBvrKxeNoyd7fMNmrLEPK9QxjTVlC_H65dHO2piYBsa5NSz366dnFQA1z9mcU6Ali-8O5jyWNVCmIjcQDHOnU7TPYaElzPDWAZgmZi2PdB2uDpd_qgYu_C7DBiDDi3CMyt6Wcx-4hbHWZvyIw6I-OGjxi-6SlKyMhBioEX6l8wbwX1K4aA8_qJhiWgHMX1GxrmE-wofhq5ad3X1NjSYRi-_KVwLb699mIsFgTS2oJesx_VYblVtXbuo_ICcscl62ezx1eRfcmS1xGYJTXqRVLAOhSnbxnn1ao25-1NsGe2JCyGw8_NM2dseAub1lwPPJKbpkpNf2iYMDMYdHEMbz0KPfmgI69TDpCEM6DQEZrhrFRmelpOyZW-6Z6Fqd2y3GzPLL8Mf5hO2dn8PbummsMOThJ6-JjbmuY0HiNyD3mOEVnFfpVYnBOlNBa7hvrIq6bGu8sEHft7grd0-wH4idHrcQ0wqBNxo8TC-8FBpLhn4O4hyNLRsjenKeY0953Wnquws_XxI4ZnPcKCctq3_xSxN0JxpxxZJMAhWxV0v0546-JuBNtMkWwwF8LAtiNtpsDBfOZi8OGVw9_YalpNx84vZTq0Vj-bwXcvWEDCu7huTGxYOCDL2Qdh1VwCGrJLDqhtztUSVWgkk8hpmXylBu_J0dbd67BywkSV7XvGhn9b8-sew96gIUq98OOGzGHlXHTSa_RBYjwb9eE92UNaKnrE2GiGePa3DaDlrvDteV8Kj9PkKhWz2jo2rv688iHwuotbo9K5ihnz3RTrbniyPkFGHFGB4j8lennFFGjSWfjnzSvhyXGNRHqZZHpOdG3Cddwkn9WT8zu7yb3yUrE_gJEkGJvhCLHMSxesbiP_vOfxiBbzLfI1e1XdlY0zlpw4qcNul7Pg_dry1NK6T-wqLZSyaq6dQP-cQZM0hqOiUtiCcocaXdAonpm6QXvTDnqwPjpXbe6n9uT_AdVBShyZSrSLaCrRGiAY8yg7-SaE1YG1oniwK-UCTogh-oHi0_My9oGLiJQ54p8RKkRbNFtVWVhC3c5xvzvtD60yQaq41Wa2KUvCoC3TWCzss5cF1cIgyxoPU5sMOgqKsnOpxSCHKJYO9MmG2jYf_2N8dpgf78oy3UuJR3wbeeDVoscY27if1dVqw1OIzRIFz34Hb0pnMYcgeBpnCzQy3pv9xy-91UAje30Aj_RH_mHE3rYY973ww82j5rxX41L0MHV7cpwDt6BgPOPdZrqZL-YhjdPQqdjTzaYa0GjH7X0GWXv7Kn1c1wTQxCrzr1UubYzVlQ5rPp9QKoJPsqQk_yK8YcZRC5gUNagf08MqW7Pea4wO-oG6BmgpGzCkqVO_Iad6dbXp4pjgtj5Pmx1-sbMeQogVCQljXfz217x_dJCvOK3uIEaXah0lB9OKWvssndMKxHP2CUJ60Fvv4Ho8GeiphmKEHCFESyoPk7bI5STFzJODjXZ_VgCy59IqygklOrMwvICqb_B8iViix5NFdesDRpkBmC_k6Ixvz3EdGESKxIPj-1-6rQuXKs9ULE6nK-otuo67ETjbSfD7Evj7HKQqxx-J2l7T-1ZgRsBCgYmhBm0nUaUSC8tzY2Dby7JMZMwKhg0AzpbW_ddYHhCbc5xIRk0sZjkCdZUSOyuTm2CpCsQcfBxqwMjXxd5QUv7Fci4fmz_YOA-kZHyoZ6UoXcN-TQ9OT0q7iK4xIOr0X0LxuE6WJwHTPxpNQB2-GgBMFcQ1IxM_ITUiVIO4Ef54R-c2pqB-Bow18g80AkRvBVSIXz90eIsFpf4e23CU09M0q8udnZpHcXmy4MeSvx_wIqDhiKEVuIrd2Czo1lkVJJDRkoB3NlBE5Lv", "type": 113}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12Xdwz-x-rvLutb6lwXziH7u8saG_Uh_ktqkDh-KWmycHQPPFRWtVOfN34u8iUqaWbKgb9mNRYOi9KuDxA4HdcmJ2qpuy-tIsRdKkuDsYGdlBxrvB5edhg42EDkyM0CcIdwLxzXMAgWyumV4gWUtZ4cqxDSMVzwOVmZ45hMkbJggWJHAoVbUHyyo_-dSO-U3VZ1-jsxY8j89if-r2veZKrkmTa2GXmnCvML2LKohep3QRZ4qZRvSe9gw0pp40EvDbMyDBK6-45vt2oBDiBYuk0WEZ8a5JIge7uaQGW7YVlycQYk_TISoqZvXdVI7Ck4s5cY27cjRjkU6e1FRMCNiwAHkLk4fv5VmKy1CO34-2lqunT93qix7vn9Xsz7D_2GvAddCUxbrQae7k510RlDtfctObXBSfwgiv8QugccUmaV8rDO2-kTLBaFr1-BRSAbemvjOtXAug_1eq_Pjl_c-qMsXvOrf2TmixAr4VYN6x5ZMyeIQCsXgSfbbeV3flGMFPTQvCewLDf9oRWCw8wDf9BrPQ1QHSA_cQdKInsLSsGsr1ZuFO5cWNBSudwVaBAguLQqMHPrwFRbAHb8VmHzwWvyf807w7qbsPoT5AevJSdHGvtkGZvvyHwTZ17czXROSXcWgPF0GtFJn-12etKVQrljodc9jz4ifhsrgFUAwZuylTD4chv_LeIhP4wQFVnehIPazgPyo6OwmkZuKNg1FCBK7RaowxARUHs585yQjcCqzT0-EauS5Cd9DXDdhXdEkMmN4Ex06gyoQCTq3VQhVIlSQQRBlTeFZKPlQlXh5jM7uethJ7BcI1gmK2z1Qp5P6AGnV-RXpD21qvg-qj5FY5_4gcMjI3pEl2IfoXuQPNHAdE0X43x6QS6PPptqMq_o1-YLinkTkOHlThY7NV1qn00bPM2WqHPpiWPLEC6UiFQVejyVyNNIcO3tSAYvH4k5HN-IAj7gDaUch6Gr_13HN-AGlS3TAVzTzeDvoQGsBlq5z75zvAd2fG9wzIjfmAC5vpPBCJhIaGjul5gJQDbkbis3YBl5HtipS2adUDFxrcFaTSE4iFTgX4JZA5sidfRq7OIFkZA5u77UUAibnh-R15zwyrFr_yKCcf0bXH_ZROBGYOSXmEFF5VdZ1CzbdOiyO-pI7T4pGAcPcjL2h_cJ7N8SGhKeAfdiFIMiRi88oOVJaJgzrARYATfdBhn_zE1WvU1fHfPw-hnO5wnj94KO_fndHWdbrGsL2uWuTcmDY8ljs3V8tUoCVr27hxDjOMHLiskZNR8WhDxBDgoIWSO8WKHCtAsl0NQhtrD72mbsOJKBdOCR3BYyFM4er5qa3qg73aFEYQ2e1Vlu7XLrbf5V9Ukl8yORUw1-yy3ugjZxfgL_LmB3ZitunY0FY_4GuQMScv5YKiD2r9aJb4dHUIFhN1CLJGoATHHNroikTUTEGmr1AKzrs_LCEDrpkpwQkGbooQHcJ6h30GkwEKf8oaTZgftkw5pgYlwm61JqSThmJQ27rMJbKiBN4suZnPbdSJaN7z9Oi1Bx1oB73-BcdApgYOZSaI9cNNDTPTYsTlXAENrbOBwwEC9IYnqtllJtzGpPNQf73vY9gcglOpGsVO109SiM_-lZqUEeVu2_-ugDAUiFVjM-y2QsGidnjT7DldkeoE4MpxL4wLUtTB412z8tXoCFnX9badkqF6v8rj1JT8frg3ekvu_xhnLoNr3QaVkqayQ2dFShdsusm6ILgRmmqZd0qr3iyVSLAQExfII1s2v7iGONkczuprSY-9Le6eE8zxJpgivQBqfQor_AXVoouj38F0civhppAhA3ISi_WnZXTanB4EP1zCXiPEl-QAILcKzK4DYH8gtyxHyp4To8pUQSsSyM-sp4OKhZHAyFhHNxr_Ie9FqFfkWrCkCNyOH7oadU4zkyrIA02MavERjSP0sNTakEAMUicsyqHcn8d3oqRKxViX9zk-TikYBsW-nPgvRGqq8limXTOv2AwqE-6gUOB6NcYtRoQqTJOXj4rpkQ212fTD0XvgL7N86AW4I5njBAVG39Rqy3sskfaKrrsEiay0KOqGg2aBJElrUrCf8BlYVUlbaXBKnPDZw9uA_DyNvwFIJ91RQpWeNt0uqtltDSav8vxpQ045LmSpC8jbIIjOZ0jEOksnGAaAas91NqtYAmYQ1L7dvFCHgxaD1Jpe82o1IQqR_jrAOPITF5xHsnoHvdp6eH-eHPUNEgUqic-m1gwXH47Gbrdtj_sjCoQRk0bGTdjaY25wx4jelUJ8rpEacxQa1LAzgnSL2W6Yh15_8zZqPsqq35z0Yl0gJG1nwfuq5LGj_mVRJRIW83rKfK41Al0DtJq7URyi3IQBftZCH5n7fU4EmepWjPZ8NtoVv8ywN9TVUtfa5U_i3iXZR0zYRID8SlVnho35Xfov2cdLdIF74UhcSZ9hw0vQWNZJ_J85M2ledcJm5JnUnKdkduakgpt7OnavCYiAQVdIXRxin4C5sVkKqfpiSZaYU9RbeqFa-gwDMCLR_tMW34qqVsJfaBC--uFfCV8ktDbkJXHZ3", "type": 114}, {"url": "https://alb.reddit.com/i.gif?z=gAAAAABgGQ12KMHUoo5HwFQ7aHeaFBosnzMGTQWZMQiqnUGMdh5MywBp3tXMpz-OluCIfkCkrzp6lMQU_cNudpkPjIMjvvIXlprzzzMCH5pr6uFgsIi-bYGFQ5VbYzvDVlUCJAkB0p3Q-55E6tOrsXH7oSIhCEr3wn9PWwBFtUrCfsZdrcjU_az2xoTXEhc1bUkhnPyvVmXd_8yesBKy1o7_3JqKnPzQiPVNuSqs8HZcqoYvzTBvmIBrgxxFSIKgSYJRH21iPSaCP4d7Cq_BZwmGvC1koj0Cn5cvpaLYlb3f4yePnRcid9Xkovh7vClL85oWyJ0G140K0y7h1SNhlz97Qw5MInqSYmhRBdT_uzD3vEQa2ig08NF1130ms18xwCp1WkJY1ehjaDA7u81_5Jfj_nEZDEfaXgc7XqVCPOBNr_3KsRZRxJUwoPc1iGiHHEcRzn9CVvYdBOfM_6KqshbIxbY-btNaSLVN0aclDOCwWUu3-lZMpOzshnlyggeMBSojciz8F3iVgA0NbZz5LoMmzAqeApsTCuZjSksyIjFnS_qDkkBzODYpZ7eIJRw1I3qssNWMFROaVwzKklVoeJ3WFMMs2Yk9yHHtJAAsoSfeirxR8zgAipqgWfquMyLO-WIzjpBcXxxmEpfhmpfQ4L7w7E6m7gD9yC6niZTRaGBsI4fzU6KZfeYVeLefWQ1NmAJUd7gp0ihMHv6JNpVik2cICjY4Yi70RzyEDmKPFdBqC6YpguhU8Y7jbMlgV2HJk3DIrDvZCfzpp_qDupX_3G7iTruiH7NKd2FHFi6012hKv-6S3wGekqoMmEe3cBSPbfRgpsg9WfUw4x0ALlbtDox2MmY0XKszs-SK7HLpAwgaonOpeI1gOB7QRqBsnTVv8aHci3E7TQdSOzgOCKYlXOUfPB-AoTZg-8BthhoLTuU0paw0BF2ajDTzukneIzcgCXK2_3XUZhh6cAMQvmJS7zL5vYsZdsSnRrwzJeBgn7k3nlE2IIyeftvXoGP56J6FvD6d3iAy7yhMvs_oO4ykucu51jE3JT20fIfUYjF0geC2n28Dm8yPxYIfJzWReIwfJMJYmQiwNZ9XcIVNnaWw7rFAKcsBOw6voki4B6_j670PH_w3rOD3fHpIg6VpbAjwox7mv5H2NWccVldPcGoz0ZCWLNm01xWkAHSYJb-rx5OCZRHuYHQw_5T6Y5msfsciLNoBWrF1wJUU2bWAuMAdR75dxc-wdw_95u1rm2-UDVeGTBESji5U1HkjHrQStReWDSioDkuyegrYirV6D-dasTRNQQ_L-PBI7nWP09W3YSX-KXXN-p78vS4ZNw6NGrNA5y7NZUpkt8q6T16qWOgFaonPyny2FSANVPFyMsCXGXmUViTljNdGVCgFdVqzl3QQ-YkfsoVDlkNuc7aDXpphM0daQczI3AV4uS5bRrCixlIM9tbeMmjdd7ptekpXN7LeuQaXxsROTiQ9wbEDOeCNoBMzOcVANzBAEV5lL7bj5yLexQOR_9AGUVn_sPY9AudDnFumaNEuXu6ZRJrHUDj_pdUzWbTY836a6Md7D4tggeSllwOiGsPR6JNQvUU2VOCoRT2KW25uKWCZiOFgXyOGlWTIbmXAOgqSIpzt_rFoe5Cku7u_VB7NEQnYrB5XbSVF1CM-UDFl1cironclOm_dCJR0a5UZxhYBuMvk0FFBzDqbgF12IBOBGBmndsNNLRQbp8xdg0V3p63uF8Gx9HHvZNUZl_uc4ZPLfMhHPfgrjOjWVDgM6qL250dZvP82eh51EwWXMRThsx1hoLDwbhNqBnGj6Daq9E3PAbn8_owLV-MJ4B_jrx8t-9rz1sKsSwjXwFi_IaKQ9mcfav2L8nQray1YuN_elGFBOqHA4Ss6QkYAWwfYE9DqBzVAfGnrCN1seWm2a1_fQ9_evnjV197BOwVvMuWlORkVXjuXiIKrRHSg4xDhhOQehZGftUfOdUfYTEYrIAF_SRP5Qj2U4CyQTb68XfRd6wIkTca2lTwS0z6WM05LSv3qv0wNUllrzQYeXeDTM5QEtI1tStUuMdWvJRk5SQJkgMUCiNmIrK2ra71CuSJOjp1Vce2RGI7ir_2UpHbOotFvUgkmMXIcgUJxBpkEtt8QFN77rpmV_Bwrb44CPWzwQ-fCDRT3r0Rw3RhKW9HzAapurd3vf_TOx77aKk7SCaFHMzCzHZRZTMfC3fECyVCjdCPASqP5e6EHpJW_EJ8-dYoezJ_E81Rgj84wq__pebNq7F6aHSELAe5JMwWQcwk16Gz045ZKA3b8aGO5O4QvCcqD4b75lQRIqVUlUgxWOCMgHG8WVIhHinXj9onOTyRpNMSEtNDcIRaUD9BfDuZz7m6jNUOhRX2gYw8fsz-ky4PERN8U80u4isekI5IdSjDmHRk4anOaovZtRZeaCs1_8j8Tw9m3XyAqmgE_QDuQ10thPPuhYl2QX5ysN1EQxL4Gu3CqRSt3gotR_03mhPxmmFVb5JoxMSaLrlYEj_MpN5j-pJ4glbB47Z2hCyr2KwjKBAD8is_ItjN2cMrslUlQtyrW4Icz", "type": 115}], "media": null, "embed_url": null, "contest_mode": false, "third_party_tracking_2": null, "author_patreon_flair": false, "author_flair_text_color": null, "third_party_trackers": [], "parent_whitelist_status": null, "stickied": false, "url": "https://rbnhd.co/jan-29", "whitelist_status": null, "subreddit_subscribers": 0, "created_utc": 1611983347.0, "num_crossposts": 0, "mod_reports": [], "embed_type": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "pics", "selftext": "", "author_fullname": "t2_88ji93d", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "I made bread for the first time", "link_flair_richtext": [], "subreddit_name_prefixed": "r/pics", "hidden": false, "pwls": 6, "link_flair_css_class": null, "downs": 0, "thumbnail_height": 140, "top_awarded_type": null, "hide_score": false, "name": "t3_lah3vq", "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 0.88, "author_flair_background_color": null, "ups": 2786, "total_awards_received": 5, "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": null, "can_mod_post": false, "score": 2786, "approved_by": null, "author_premium": true, "thumbnail": "https://b.thumbs.redditmedia.com/nZ0DW6KG1qA1-bLXmNyec1Lz5olE9nrCcDpoPhOq_Ug.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-0ec0cf6b4e835f4a5.wss.redditmedia.com/link/lah3vq?m=AQAA9l4aYEsAo20m9PI3xT9gLHJGMdxU7Wt4Ub8iBF_IF3T0kp9T", "gildings": {"gid_3": 1}, "post_hint": "image", "content_categories": ["photography"], "is_self": false, "subreddit_type": "public", "created": 1612249833.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "domain": "i.redd.it", "allow_live_comments": true, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/anzmjiuc7ye61.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/anzmjiuc7ye61.jpg?auto=webp\u0026s=eada91b106ad0029e3173a06c2dd1273a3a9b40c", "width": 750, "height": 1334}, "resolutions": [{"url": "https://preview.redd.it/anzmjiuc7ye61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=f62e214e1d3321609fe8ebb64923a3296bf11c29", "width": 108, "height": 192}, {"url": "https://preview.redd.it/anzmjiuc7ye61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=37758b02a3df929488a34687bd8008e1eb6653b3", "width": 216, "height": 384}, {"url": "https://preview.redd.it/anzmjiuc7ye61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=dfb044588de8cf45a29a9f594cd725578e4568b2", "width": 320, "height": 569}, {"url": "https://preview.redd.it/anzmjiuc7ye61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=714749897c4e127d4596ea7409b1f64aac673103", "width": 640, "height": 1138}], "variants": {}, "id": "kW66vrBv4tYZElDOWtGxGUWIaqyWYtQ7QBpxUnh9RY0"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 31, "coin_price": 1800, "id": "gid_3", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/platinum_512.png", "days_of_premium": 31, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/platinum_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Gives 700 Reddit Coins and a month of r/lounge access and ad-free browsing.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Platinum", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/platinum_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/platinum_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/platinum_512.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 150, "id": "award_f44611f1-b89e-46dc-97fe-892280b13b82", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Thank you stranger. Shows the award.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Helpful", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 125, "id": "award_5f123e3d-4f48-42f4-9c11-e98b566d5897", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When you come across a feel-good thing.", "end_date": null, "subreddit_coin_reward": 0, "count": 2, "static_icon_height": 2048, "name": "Wholesome", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "award_3267ca1c-127a-49e9-9a3d-4ba96224af18", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=16\u0026height=16\u0026auto=webp\u0026s=6ce62fa40de4c6b72859d2cbdf22af5c0e012233", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=32\u0026height=32\u0026auto=webp\u0026s=26297b024da3e9bd6507e7b8553507493b5e6606", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=48\u0026height=48\u0026auto=webp\u0026s=0763517837b22d5e414dd330d5006c0d89ccb499", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=64\u0026height=64\u0026auto=webp\u0026s=9a2154561daa83678f3f9e6e2a627629ee2a2bcc", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=128\u0026height=128\u0026auto=webp\u0026s=96897549f634fd6324e1338a98b9778733ea4813", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Let's sip to good health and good company", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "I'll Drink to That", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=16\u0026height=16\u0026auto=webp\u0026s=6ce62fa40de4c6b72859d2cbdf22af5c0e012233", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=32\u0026height=32\u0026auto=webp\u0026s=26297b024da3e9bd6507e7b8553507493b5e6606", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=48\u0026height=48\u0026auto=webp\u0026s=0763517837b22d5e414dd330d5006c0d89ccb499", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=64\u0026height=64\u0026auto=webp\u0026s=9a2154561daa83678f3f9e6e2a627629ee2a2bcc", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png?width=128\u0026height=128\u0026auto=webp\u0026s=96897549f634fd6324e1338a98b9778733ea4813", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/45aeu8mzvsj51_IllDrinktoThat.png"}], "awarders": [], "media_only": false, "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": null, "show_media": true, "description": "[Rules](https://www.reddit.com/r/pics/wiki/index)\n\n1. No screenshots or pics where the only focus is a screen. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_1_-_no_screenshots)\n\n2. No pictures with added or superimposed digital text. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_2_-_no_digital_elements)\n\n3. No porn or gore. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_3_-_no_porn.2Fgore)\n\n4. No personal information, direct links to any social media, subreddit-related meta-drama, witch-hunts or missing/found posts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_4_-_no_doxing.2Fwitch_hunts)\n\n5. All titles must follow title rules. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/titles)\n\n6. Submissions are only allowed from one of the approved image hosts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_6_-_only_allowed_image_hosts) \n\n7. No gifs or videos. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_7_-_no_gifs)\n\n8. Comments must be civil. Any racism, bigotry, or any other kind of hate speech is strictly prohibited and will result in a ban. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_8_-_civility)\n\n9. No submissions featuring before-and-after depictions of personal health progress or achievement. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_9_-_no_progress_pics)\n\n10. No false claims of ownership (FCoO) or flooding. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_10_-_no_fcoo.2Fflooding)\n\n11. Reposts of images on the front page, or within the set limit of /r/pics/top, will be removed. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_11_-_repost_limitations)\n\n12. Normal users are allowed only one self-promotional link per post. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_12_-_limited_self-promotion)\n\n---\n\n[Additional/Temporary Rules](https://www.reddit.com/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* From January 14, 2020 until February 14, 2020, we will not allow political shitposts or political karmawhoring. [details\u003E\u003E](/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* Serial reposters may be filtered or banned. \n\n* We prefer that new users post original content and not common pictures from the internet.\n\n* All posts by new users require mod approval in order to weed out spammers. \n\n* Please mark spoilers for current movies/games/books with spoiler tags. \n\n---\n\nIf you want a picture that belongs to you to be removed from /r/pics then please file a copyright notice [here](https://reddit.zendesk.com/hc/en-us/requests/new?ticket_form_id=73465).\n\n---\n\nClick [here](https://www.reddit.com/r/pics/wiki/links) to find more specialized picture subreddits", "user_is_muted": false, "display_name": "pics", "header_img": "https://b.thumbs.redditmedia.com/1zT3FeN8pCAFIooNVuyuZ0ObU0x1ro4wPfArGHl3KjM.png", "title": "Reddit Pics", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "#ffffff", "icon_img": "https://b.thumbs.redditmedia.com/VZX_KQLnI1DPhlEZ07bIcLzwR1Win808RIt7zm49VIQ.png", "icon_color": "", "submit_link_label": "Submit an image", "header_size": [160, 64], "restrict_commenting": false, "subscribers": 26711137, "submit_text_label": "", "link_flair_position": "left", "display_name_prefixed": "r/pics", "key_color": "#222222", "name": "t5_2qh0u", "created": 1201249869.0, "url": "/r/pics/", "quarantine": false, "created_utc": 1201221069.0, "banner_size": null, "user_is_contributor": false, "public_description": "A place for pictures and photographs.", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2qh0u", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "lah3vq", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "QueenGlass", "discussion_type": null, "num_comments": 190, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/pics/comments/lah3vq/i_made_bread_for_the_first_time/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/anzmjiuc7ye61.jpg", "subreddit_subscribers": 26711137, "created_utc": 1612221033.0, "num_crossposts": 0, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "pics", "selftext": "", "author_fullname": "t2_595xkon8", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "Pam Grier in Coffy, 1973.", "link_flair_richtext": [], "subreddit_name_prefixed": "r/pics", "hidden": false, "pwls": 6, "link_flair_css_class": null, "downs": 0, "thumbnail_height": 140, "top_awarded_type": null, "hide_score": false, "name": "t3_lalhzm", "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 0.96, "author_flair_background_color": null, "ups": 1263, "total_awards_received": 0, "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": "4883d892-6443-11e8-b937-0e4bcaa8957a", "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": null, "can_mod_post": false, "score": 1263, "approved_by": null, "author_premium": false, "thumbnail": "https://b.thumbs.redditmedia.com/RmLxKBGoGmgyI4b-9pLBu_VcGyakbY9UaFakCWLLW8Y.jpg", "edited": false, "author_flair_css_class": "k", "author_flair_richtext": [], "websocket_url": "wss://ws-0ec0cf6b4e835f4a5.wss.redditmedia.com/link/lalhzm?m=AQAA9l4aYKNzykZSYGU2RC8Knpu0_c-SWVYNhm5WeJAUnzR_51Ut", "gildings": {}, "post_hint": "image", "content_categories": ["photography"], "is_self": false, "subreddit_type": "public", "created": 1612262664.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "domain": "i.redd.it", "allow_live_comments": false, "selftext_html": null, "likes": null, "suggested_sort": "confidence", "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/i2hullsf9ze61.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/i2hullsf9ze61.jpg?auto=webp\u0026s=32fc3d9779cb48c5d58570ac070d82b47c6c17c9", "width": 800, "height": 915}, "resolutions": [{"url": "https://preview.redd.it/i2hullsf9ze61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=507d55c0a8b0d0fdef4147642139d427bb5b5da7", "width": 108, "height": 123}, {"url": "https://preview.redd.it/i2hullsf9ze61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=51a53d5f9bd7bca9101b351a4239cec39fa2487d", "width": 216, "height": 247}, {"url": "https://preview.redd.it/i2hullsf9ze61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=e5062959fc1343f3fb3cf6719ce1fd6abaa425f9", "width": 320, "height": 366}, {"url": "https://preview.redd.it/i2hullsf9ze61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=faf21c8cbb65911e15f7404504ee189b4890cb74", "width": 640, "height": 732}], "variants": {}, "id": "jVKDJx7yC03sBha4HvA5sPqE96mKmeRSsdkOWY5DJ6E"}], "enabled": true}, "all_awardings": [], "awarders": [], "media_only": false, "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": null, "show_media": true, "description": "[Rules](https://www.reddit.com/r/pics/wiki/index)\n\n1. No screenshots or pics where the only focus is a screen. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_1_-_no_screenshots)\n\n2. No pictures with added or superimposed digital text. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_2_-_no_digital_elements)\n\n3. No porn or gore. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_3_-_no_porn.2Fgore)\n\n4. No personal information, direct links to any social media, subreddit-related meta-drama, witch-hunts or missing/found posts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_4_-_no_doxing.2Fwitch_hunts)\n\n5. All titles must follow title rules. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/titles)\n\n6. Submissions are only allowed from one of the approved image hosts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_6_-_only_allowed_image_hosts) \n\n7. No gifs or videos. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_7_-_no_gifs)\n\n8. Comments must be civil. Any racism, bigotry, or any other kind of hate speech is strictly prohibited and will result in a ban. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_8_-_civility)\n\n9. No submissions featuring before-and-after depictions of personal health progress or achievement. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_9_-_no_progress_pics)\n\n10. No false claims of ownership (FCoO) or flooding. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_10_-_no_fcoo.2Fflooding)\n\n11. Reposts of images on the front page, or within the set limit of /r/pics/top, will be removed. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_11_-_repost_limitations)\n\n12. Normal users are allowed only one self-promotional link per post. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_12_-_limited_self-promotion)\n\n---\n\n[Additional/Temporary Rules](https://www.reddit.com/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* From January 14, 2020 until February 14, 2020, we will not allow political shitposts or political karmawhoring. [details\u003E\u003E](/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* Serial reposters may be filtered or banned. \n\n* We prefer that new users post original content and not common pictures from the internet.\n\n* All posts by new users require mod approval in order to weed out spammers. \n\n* Please mark spoilers for current movies/games/books with spoiler tags. \n\n---\n\nIf you want a picture that belongs to you to be removed from /r/pics then please file a copyright notice [here](https://reddit.zendesk.com/hc/en-us/requests/new?ticket_form_id=73465).\n\n---\n\nClick [here](https://www.reddit.com/r/pics/wiki/links) to find more specialized picture subreddits", "user_is_muted": false, "display_name": "pics", "header_img": "https://b.thumbs.redditmedia.com/1zT3FeN8pCAFIooNVuyuZ0ObU0x1ro4wPfArGHl3KjM.png", "title": "Reddit Pics", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "#ffffff", "icon_img": "https://b.thumbs.redditmedia.com/VZX_KQLnI1DPhlEZ07bIcLzwR1Win808RIt7zm49VIQ.png", "icon_color": "", "submit_link_label": "Submit an image", "header_size": [160, 64], "restrict_commenting": false, "subscribers": 26711137, "submit_text_label": "", "link_flair_position": "left", "display_name_prefixed": "r/pics", "key_color": "#222222", "name": "t5_2qh0u", "created": 1201249869.0, "url": "/r/pics/", "quarantine": false, "created_utc": 1201221069.0, "banner_size": null, "user_is_contributor": false, "public_description": "A place for pictures and photographs.", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": "", "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2qh0u", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "lalhzm", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "Sofargonept2", "discussion_type": null, "num_comments": 35, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": "dark", "permalink": "/r/pics/comments/lalhzm/pam_grier_in_coffy_1973/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/i2hullsf9ze61.jpg", "subreddit_subscribers": 26711137, "created_utc": 1612233864.0, "num_crossposts": 0, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "mildlyinfuriating", "selftext": "", "author_fullname": "t2_83vr5n7z", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "Why IS My KeyBoaRD LiKe ThIS", "link_flair_richtext": [], "subreddit_name_prefixed": "r/mildlyinfuriating", "hidden": false, "pwls": 6, "link_flair_css_class": null, "downs": 0, "thumbnail_height": 93, "top_awarded_type": null, "hide_score": false, "name": "t3_lachaq", "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 0.97, "author_flair_background_color": null, "ups": 3607, "total_awards_received": 6, "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": null, "can_mod_post": false, "score": 3607, "approved_by": null, "author_premium": false, "thumbnail": "https://b.thumbs.redditmedia.com/mCsZu_1AsaoHpYb2k2eqFP7kbc-XIFgku13o0fErtws.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-0f6ba0a7a86f40302.wss.redditmedia.com/link/lachaq?m=AQAA9l4aYCxgcqjYgpH0sLY38LApehCvID5EEu6302f6I1E-z2db", "gildings": {"gid_1": 1}, "post_hint": "image", "content_categories": null, "is_self": false, "subreddit_type": "public", "created": 1612238387.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "domain": "i.redd.it", "allow_live_comments": true, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/et52a0r39xe61.png", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/et52a0r39xe61.png?auto=webp\u0026s=f72ce75a99566e78f21a9d6e47e3fad5bde503f9", "width": 1015, "height": 675}, "resolutions": [{"url": "https://preview.redd.it/et52a0r39xe61.png?width=108\u0026crop=smart\u0026auto=webp\u0026s=37d8c585fd2b1b2207d201c2b1588756711f23af", "width": 108, "height": 71}, {"url": "https://preview.redd.it/et52a0r39xe61.png?width=216\u0026crop=smart\u0026auto=webp\u0026s=2c0535b5b68ff0b6b67d041827859abd7fba952b", "width": 216, "height": 143}, {"url": "https://preview.redd.it/et52a0r39xe61.png?width=320\u0026crop=smart\u0026auto=webp\u0026s=1efed8483055b109236465347b1a780c925e437c", "width": 320, "height": 212}, {"url": "https://preview.redd.it/et52a0r39xe61.png?width=640\u0026crop=smart\u0026auto=webp\u0026s=dc22322254cf91f02e4c5e5d1261f2b3f75d0cbe", "width": 640, "height": 425}, {"url": "https://preview.redd.it/et52a0r39xe61.png?width=960\u0026crop=smart\u0026auto=webp\u0026s=5a89e7daefe1dfe149eb69d5342ddd291de942fa", "width": 960, "height": 638}], "variants": {}, "id": "uFoXvCkmik_szIZRPH6Fmm0vDmlZVPkC2-Uv670c9Ik"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 150, "id": "award_f44611f1-b89e-46dc-97fe-892280b13b82", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Thank you stranger. Shows the award.", "end_date": null, "subreddit_coin_reward": 0, "count": 2, "static_icon_height": 2048, "name": "Helpful", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 125, "id": "award_5f123e3d-4f48-42f4-9c11-e98b566d5897", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When you come across a feel-good thing.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Wholesome", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "gid_1", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Shows the Silver Award... and that's it.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Silver", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 80, "id": "award_8352bdff-3e03-4189-8a08-82501dd8f835", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Everything is better with a good hug", "end_date": null, "subreddit_coin_reward": 0, "count": 2, "static_icon_height": 2048, "name": "Hugz", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png"}], "awarders": [], "media_only": false, "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": "https://styles.redditmedia.com/t5_2ubgg/styles/communityIcon_lkxajjefezh51.png?width=256\u0026s=7bb81fe43583d4a482979e0e54e1c14ef94ac580", "show_media": true, "description": "\u003E[](https://td.reddit.com/r/mildlyinfuriating/#image)\n[Enter mildyinfuriating \u0026nbsp; \u0026nbsp;( \u0361\u00b0 \u035c\u0296 \u0361\u00b0)](https://td.reddit.com/r/mildlyinfuriating/#button)\n\nIs your day filled with midly infuriating problems? You came to the right place then.\n\n**Rules**:\n\n1) [No Memes or \"meme-like\" image macros.](http://www.reddit.com/r/mildlyinfuriating/comments/1exsuk/meta_modpost_new_rule_see_inside_for_details/) No Memes or \"meme-like\" image macros. These include overdone references in the title (e.g. \u201cbanana for scale\u201d, \u201cpotato quality\u201d, and so on).\n\n8) Content requirements:\n\n* a) Please try to post original content. Reposts or crossposts of someone else's content will be removed if it has been posted on Reddit within the past 6 months. At the moderator's discretion, content posted without the author's original consent or without linking to an original source will also be removed.\n* b) No GIFs that end slightly before something happens ([Example](http://i.imgur.com/Lq6m5QY.gifv))\n* c) Unn^ecessarily overdone ^text, ar\u0026rarr;rows, scribbles, or substantive edits over the original content are not allowed.\n* d) No posting surveys - posts about surveys are allowed, however bear in mind they are often overdone.\n* f) Blur out any personal information. (Full names, phone numbers, license plates etc.)\n* f) Try and keep meta submissions to a minimum. Any meta submission is subject to removal at any time.\n* g) No political posts whatsoever, no matter how harmless it seems.\n\n4) Following Reddiquette is recommended. Following the rules of Reddit is a must.\n\n5) No grandstanding, soapboxing, or pushing any agendas. This includes posts that could be, within reason, regarded as politically, sexually, racially, or socially inappropriate or unnecessary. ([Example](https://i.imgur.com/Um3eIs7.jpg))\n\n6) When posting links to reddit in comments, please use ^[np.reddit.com](np.reddit.com) formatting in order to prevent brigading.\n\nThese rules are **subject to the moderator's discretion**, and can change at any time. A full, in-dpeth explanation can be found in the wiki [here](https://www.reddit.com/r/mildlyinfuriating/about/rules).\n\n*Repeated violation of rules may result in banning*\n\n3) Added emphasis on rule 8g: NO POLITICS\n\n7) /u/dnanf may post whatever he wants, even if it's shit. It is your duty as a good redditor to upvote his posts.\n\n\n\n\n**The Mild Network:**\n\n* /r/MildlyAmusing\n\n* /r/MildlyAwesome\n\n* r/MildlyAww\n\n* /r/MildlyBestOf\n\n* /r/MildlyConfusing\n\n* /r/MildlyCreepy\n\n* r/MildlyDangerous\n\n* /r/MildlyDepressing\n\n* /r/MildlyDisgusting\n\n* /r/MildlyDisturbing\n\n* /r/MildlyEnteristing\n\n* /r/MildlyImpressive\n\n* /r/MildlyMotivated\n\n* /r/MildlyInteresting\n\n* r/MildlyInterestingIAmA\n\n* /r/MildlyInterestingMC (Minecraft)\n\n* /r/MildlyMetal \n\n* /r/MildlyOffensive\n\n* /r/MildlyPleasing\n\n* /r/MildlySatisfying\n\n* /r/MildlyStartledCats \n\n* r/MildlyStupid\n\n* /r/MildlyUninteresting\n\n* /r/MildlyWeird\n\n* /r/MildlyWTF\n\n**Our Friends:**\n\n* /r/gifsthatendtoosoon **NEW: Please post gifs that end too soon in that sub, instead of here.**\n\n* /r/QuestionCollege **NEW**\n\n* /r/UnnecessaryQuotes\n\n* /r/PerfectFit\n\n* /r/FakeRedditNews\n\n* /r/OddlySatisfying\n\n* /r/SlightlyUnsatisfying\n\n* /r/FunnyAndSad\n\n* r/Today_I_Realized\n\n* /r/WellThatSucks \n\n* /r/BadParking \n\n* r/BloodFueledRage\n\n* /r/Rage\n\n* /r/Infuriating\n\n* /r/Amusing\n\n* /r/BenignExistence\n\n* /r/CasualIAmA\n\n* /r/InterestingAnecdote\n\n* /r/GrindsMyGears\n\n* /r/HowToNotGiveaFuck\n\n* /r/NotQuiteWTF\n\n* /r/Onejob\n\n* /r/Vastlystupid \n\n* /r/PleaseJustStop \n\n* /r/BadYTAds \n\n[More mildly related subreddits](http://www.reddit.com/r/mildlyinteresting/comments/zytpk/list_of_similar_subreddits_and_mild_network/)\n\n[Click Here](http://www.reddit.com/r/mildlyinfuriating/comments/17nzkh/meta_announcement_new_flair_options/) for details about flair!\n\n\n##[New Posts](http://www.reddit.com/r/mildlyinfuriating/new)##\n\n\n[](/r/simulated 'This is the best /r/simulated has to offer')\n\n[](https://www.reddit.com/r/mildlyinfuriating/comments/dzlehu/congrats_on_2_million_here_is_the_double#sidebar)\n\n[test](#ad1)\n\njukmifgguggh\n\n[\ud83d\udcb0\ud83d\udcb0\ud83d\udcb0 Nothing\ud83d\udcb8is\ud83d\udcb8more\ud83d\udcb8infuriating\ud83d\udcb8than\ud83d\udcb8restricted\ud83d\udcb8internet \ud83d\udcb0\ud83d\udcb0\ud83d\udcb0](https://www.battleforthenet.com/ \"COME ON!! CLICK IT! DOOOOOO ITTTTTT\")\n\n[](https://redd.it/82yfzr \"What are you doing over there?\")\n\n[](#youtube-footer)", "user_is_muted": false, "display_name": "mildlyinfuriating", "header_img": "https://b.thumbs.redditmedia.com/rmlXC779KUA2MTO4r_GJd2enqa8GKx3BOasymol6gLk.png", "title": "jukmifgguggh", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "", "icon_img": "https://b.thumbs.redditmedia.com/6EKfzU5PYmvE4USNgMZaBR6iCS5NnJ3YFTkZyPbXnZM.png", "icon_color": "", "submit_link_label": "Submit your mild infuriation jukmifgguggh", "header_size": [73, 81], "restrict_commenting": false, "subscribers": 3183066, "submit_text_label": "", "link_flair_position": "right", "display_name_prefixed": "r/mildlyinfuriating", "key_color": "#ff8717", "name": "t5_2ubgg", "created": 1339990463.0, "url": "/r/mildlyinfuriating/", "quarantine": false, "created_utc": 1339961663.0, "banner_size": null, "user_is_contributor": false, "public_description": "A place to post the most midly infuriating things!\n\n\u0026nbsp;\n\n.\n\norder corn", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2ubgg", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "lachaq", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "Mr-Pineapple-101", "discussion_type": null, "num_comments": 112, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/mildlyinfuriating/comments/lachaq/why_is_my_keyboard_like_this/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/et52a0r39xe61.png", "subreddit_subscribers": 3183066, "created_utc": 1612209587.0, "num_crossposts": 1, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "pics", "selftext": "", "author_fullname": "t2_13eop0", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "In October I set out to learn how to make coin rings. I recently made this from a 1 ounce gold coin.", "link_flair_richtext": [], "subreddit_name_prefixed": "r/pics", "hidden": false, "pwls": 6, "link_flair_css_class": null, "downs": 0, "thumbnail_height": 140, "top_awarded_type": null, "hide_score": false, "name": "t3_lahvxk", "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 0.98, "author_flair_background_color": null, "ups": 1985, "total_awards_received": 3, "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": null, "can_mod_post": false, "score": 1985, "approved_by": null, "author_premium": false, "thumbnail": "https://b.thumbs.redditmedia.com/PcCIgE1-hER1pcdSv4cwMAQgils0RFsB9LDMze7RZrU.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-0c77c1e9cd565dd0f.wss.redditmedia.com/link/lahvxk?m=AQAA9l4aYJ3lM_rO4Yu2yiupEEXDZtD6t9mjWuY8XwLy8j2oOOXH", "gildings": {"gid_1": 1}, "post_hint": "image", "content_categories": ["photography"], "is_self": false, "subreddit_type": "public", "created": 1612251960.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "domain": "i.redd.it", "allow_live_comments": true, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/luuylg5odye61.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/luuylg5odye61.jpg?auto=webp\u0026s=232036cb33136a1b8ed766612191129c71981c60", "width": 3024, "height": 4032}, "resolutions": [{"url": "https://preview.redd.it/luuylg5odye61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=4aa0d2909b61db420275b523f2e02c781df08226", "width": 108, "height": 144}, {"url": "https://preview.redd.it/luuylg5odye61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=9ab750b15a3fa3ad8098391e9b0ec12feeb6835a", "width": 216, "height": 288}, {"url": "https://preview.redd.it/luuylg5odye61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=b68d48d5d5bfa29f94a259d92d5c23451e28b018", "width": 320, "height": 426}, {"url": "https://preview.redd.it/luuylg5odye61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=c794cb3432dd3c4bea81f549002dbb09bd030b8a", "width": 640, "height": 853}, {"url": "https://preview.redd.it/luuylg5odye61.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=a33d902a7bf17827280703a6e96e0b894ec90cc8", "width": 960, "height": 1280}, {"url": "https://preview.redd.it/luuylg5odye61.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=5eedfb6bdf78737969c60eef93a29e7678de6154", "width": 1080, "height": 1440}], "variants": {}, "id": "IzU2gOdA3xzDFrK91RWy2935iOFP1Y2WHRfY3MJIPCs"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 30, "id": "award_b4ff447e-05a5-42dc-9002-63568807cfe6", "penny_donate": null, "award_sub_type": "PREMIUM", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/Illuminati_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/Illuminati_512.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/Illuminati_512.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/Illuminati_512.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/Illuminati_512.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/Illuminati_512.png", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "A glowing commendation for all to see", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "All-Seeing Upvote", "resized_static_icons": [{"url": "https://external-preview.redd.it?width=16\u0026height=16\u0026auto=webp\u0026s=d88c9a453f8ac38850b7a8241cfe5804b7b4905d", "width": 16, "height": 16}, {"url": "https://external-preview.redd.it?width=32\u0026height=32\u0026auto=webp\u0026s=96a25019eb75878bdec4f6c012540f3baffbb1b2", "width": 32, "height": 32}, {"url": "https://external-preview.redd.it?width=48\u0026height=48\u0026auto=webp\u0026s=1a51d27d75afde3fbde8bba84f9338f511211461", "width": 48, "height": 48}, {"url": "https://external-preview.redd.it?width=64\u0026height=64\u0026auto=webp\u0026s=96af5ec460b05669ed60224cb0619bb8884abe27", "width": 64, "height": 64}, {"url": "https://external-preview.redd.it?width=128\u0026height=128\u0026auto=webp\u0026s=2d3e648ed2302e6258673051ca5291f57beb29d4", "width": 128, "height": 128}], "icon_format": "APNG", "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/Illuminati_512.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "gid_1", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Shows the Silver Award... and that's it.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Silver", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 80, "id": "award_8352bdff-3e03-4189-8a08-82501dd8f835", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Everything is better with a good hug", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Hugz", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png"}], "awarders": [], "media_only": false, "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": null, "show_media": true, "description": "[Rules](https://www.reddit.com/r/pics/wiki/index)\n\n1. No screenshots or pics where the only focus is a screen. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_1_-_no_screenshots)\n\n2. No pictures with added or superimposed digital text. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_2_-_no_digital_elements)\n\n3. No porn or gore. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_3_-_no_porn.2Fgore)\n\n4. No personal information, direct links to any social media, subreddit-related meta-drama, witch-hunts or missing/found posts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_4_-_no_doxing.2Fwitch_hunts)\n\n5. All titles must follow title rules. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/titles)\n\n6. Submissions are only allowed from one of the approved image hosts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_6_-_only_allowed_image_hosts) \n\n7. No gifs or videos. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_7_-_no_gifs)\n\n8. Comments must be civil. Any racism, bigotry, or any other kind of hate speech is strictly prohibited and will result in a ban. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_8_-_civility)\n\n9. No submissions featuring before-and-after depictions of personal health progress or achievement. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_9_-_no_progress_pics)\n\n10. No false claims of ownership (FCoO) or flooding. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_10_-_no_fcoo.2Fflooding)\n\n11. Reposts of images on the front page, or within the set limit of /r/pics/top, will be removed. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_11_-_repost_limitations)\n\n12. Normal users are allowed only one self-promotional link per post. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_12_-_limited_self-promotion)\n\n---\n\n[Additional/Temporary Rules](https://www.reddit.com/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* From January 14, 2020 until February 14, 2020, we will not allow political shitposts or political karmawhoring. [details\u003E\u003E](/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* Serial reposters may be filtered or banned. \n\n* We prefer that new users post original content and not common pictures from the internet.\n\n* All posts by new users require mod approval in order to weed out spammers. \n\n* Please mark spoilers for current movies/games/books with spoiler tags. \n\n---\n\nIf you want a picture that belongs to you to be removed from /r/pics then please file a copyright notice [here](https://reddit.zendesk.com/hc/en-us/requests/new?ticket_form_id=73465).\n\n---\n\nClick [here](https://www.reddit.com/r/pics/wiki/links) to find more specialized picture subreddits", "user_is_muted": false, "display_name": "pics", "header_img": "https://b.thumbs.redditmedia.com/1zT3FeN8pCAFIooNVuyuZ0ObU0x1ro4wPfArGHl3KjM.png", "title": "Reddit Pics", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "#ffffff", "icon_img": "https://b.thumbs.redditmedia.com/VZX_KQLnI1DPhlEZ07bIcLzwR1Win808RIt7zm49VIQ.png", "icon_color": "", "submit_link_label": "Submit an image", "header_size": [160, 64], "restrict_commenting": false, "subscribers": 26711137, "submit_text_label": "", "link_flair_position": "left", "display_name_prefixed": "r/pics", "key_color": "#222222", "name": "t5_2qh0u", "created": 1201249869.0, "url": "/r/pics/", "quarantine": false, "created_utc": 1201221069.0, "banner_size": null, "user_is_contributor": false, "public_description": "A place for pictures and photographs.", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2qh0u", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "lahvxk", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "fenderboy5r", "discussion_type": null, "num_comments": 73, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/pics/comments/lahvxk/in_october_i_set_out_to_learn_how_to_make_coin/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/luuylg5odye61.jpg", "subreddit_subscribers": 26711137, "created_utc": 1612223160.0, "num_crossposts": 0, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "TheLastAirbender", "selftext": "", "author_fullname": "t2_rd61r", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "My custom \"Fiery Family\" 3D Avatar the Last Airbender inspired Fan Artwork! Hand draw, digitally layered \u0026 self-produced! Took around 80 hours to finish from scratch!", "link_flair_richtext": [{"e": "text", "t": "OC Fan Art"}], "subreddit_name_prefixed": "r/TheLastAirbender", "hidden": false, "pwls": 6, "link_flair_css_class": "oc-fanart", "downs": 0, "thumbnail_height": 140, "top_awarded_type": null, "hide_score": false, "name": "t3_lak3sz", "quarantine": false, "link_flair_text_color": "light", "upvote_ratio": 1.0, "author_flair_background_color": null, "ups": 971, "domain": "i.redd.it", "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": true, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": "OC Fan Art", "can_mod_post": false, "score": 971, "approved_by": null, "author_premium": true, "thumbnail": "https://b.thumbs.redditmedia.com/elUhVjT8OHQTCJpBrVFaJ4ZMiyiGwOCffba_iRSt6ZQ.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-0c77c1e9cd565dd0f.wss.redditmedia.com/link/lak3sz?m=AQAA9l4aYJCZJdxUW1L-knN_tCQ0DuMWizrnznxxUHHLx5wfQRJT", "gildings": {"gid_1": 4}, "post_hint": "image", "content_categories": null, "is_self": false, "subreddit_type": "public", "created": 1612258353.0, "link_flair_type": "richtext", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "total_awards_received": 10, "allow_live_comments": false, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/hmhhxq3lwye61.gif", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/hmhhxq3lwye61.gif?format=png8\u0026s=cbe15ce321a43cce2d037dac16e520bc969c10f6", "width": 600, "height": 727}, "resolutions": [{"url": "https://preview.redd.it/hmhhxq3lwye61.gif?width=108\u0026crop=smart\u0026format=png8\u0026s=6efd6ce913d73e63857501c7dedf2c54ca365013", "width": 108, "height": 130}, {"url": "https://preview.redd.it/hmhhxq3lwye61.gif?width=216\u0026crop=smart\u0026format=png8\u0026s=0dd8ccd34a80485c9003dae9136fd2c06350a0bd", "width": 216, "height": 261}, {"url": "https://preview.redd.it/hmhhxq3lwye61.gif?width=320\u0026crop=smart\u0026format=png8\u0026s=40e46e25ed822d361b9f53449694286c1f4d70e8", "width": 320, "height": 387}], "variants": {"gif": {"source": {"url": "https://preview.redd.it/hmhhxq3lwye61.gif?s=730110365c9ed1349216f54b610621dc899bbce3", "width": 600, "height": 727}, "resolutions": [{"url": "https://preview.redd.it/hmhhxq3lwye61.gif?width=108\u0026crop=smart\u0026s=5eb968119c3a8cf6e8baae31695c2203ca71de4f", "width": 108, "height": 130}, {"url": "https://preview.redd.it/hmhhxq3lwye61.gif?width=216\u0026crop=smart\u0026s=3d58fb24545d55409de698b4546811aa7434ca16", "width": 216, "height": 261}, {"url": "https://preview.redd.it/hmhhxq3lwye61.gif?width=320\u0026crop=smart\u0026s=16b6bf03f2dff02512dc4bdd49152bf2db85311c", "width": 320, "height": 387}]}, "mp4": {"source": {"url": "https://preview.redd.it/hmhhxq3lwye61.gif?format=mp4\u0026s=3cffbe301216c8897bbbc53d5e471830334d0e30", "width": 600, "height": 727}, "resolutions": [{"url": "https://preview.redd.it/hmhhxq3lwye61.gif?width=108\u0026format=mp4\u0026s=d45f2f59be6b6af77a31fd21b4b869487c0bb4ae", "width": 108, "height": 130}, {"url": "https://preview.redd.it/hmhhxq3lwye61.gif?width=216\u0026format=mp4\u0026s=5c4de6d96a0a61dcb2369a5695d0fe78540caa73", "width": 216, "height": 261}, {"url": "https://preview.redd.it/hmhhxq3lwye61.gif?width=320\u0026format=mp4\u0026s=d746fa831d53fb61a0bfbc10abc921cbe4ad4ab0", "width": 320, "height": 387}]}}, "id": "bPp-njl0pIxxfDLSScb2a6hFLTMXPUNl-tt_cFlTJ6s"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 75, "id": "award_9663243a-e77f-44cf-abc6-850ead2cd18d", "penny_donate": 0, "award_sub_type": "PREMIUM", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/SnooClappingPremium_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/SnooClappingPremium_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClappingPremium_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClappingPremium_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClappingPremium_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClappingPremium_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "For an especially amazing showing.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Bravo Grande!", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/59e02tmkl4451_BravoGrande-Static.png?width=16\u0026height=16\u0026auto=webp\u0026s=3459bdf1d1777821a831c5bf9834f4365263fcff", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/59e02tmkl4451_BravoGrande-Static.png?width=32\u0026height=32\u0026auto=webp\u0026s=9181d68065ccfccf2b1074e499cd7c1103aa2ce8", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/59e02tmkl4451_BravoGrande-Static.png?width=48\u0026height=48\u0026auto=webp\u0026s=339b368d395219120abc50d54fb3e2cdcad8ca4f", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/59e02tmkl4451_BravoGrande-Static.png?width=64\u0026height=64\u0026auto=webp\u0026s=de4ebbe92f9019de05aaa77f88810d44adbe1e50", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/59e02tmkl4451_BravoGrande-Static.png?width=128\u0026height=128\u0026auto=webp\u0026s=ba6c1add5204ea43e5af010bd9622392a42140e3", "width": 128, "height": 128}], "icon_format": "APNG", "icon_height": 512, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/59e02tmkl4451_BravoGrande-Static.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 150, "id": "award_f44611f1-b89e-46dc-97fe-892280b13b82", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Thank you stranger. Shows the award.", "end_date": null, "subreddit_coin_reward": 0, "count": 2, "static_icon_height": 2048, "name": "Helpful", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 125, "id": "award_5f123e3d-4f48-42f4-9c11-e98b566d5897", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When you come across a feel-good thing.", "end_date": null, "subreddit_coin_reward": 0, "count": 2, "static_icon_height": 2048, "name": "Wholesome", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "gid_1", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Shows the Silver Award... and that's it.", "end_date": null, "subreddit_coin_reward": 0, "count": 4, "static_icon_height": 512, "name": "Silver", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 80, "id": "award_8352bdff-3e03-4189-8a08-82501dd8f835", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Everything is better with a good hug", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Hugz", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png"}], "awarders": [], "media_only": false, "link_flair_template_id": "69b94608-d590-11ea-ab78-0ed6000e260d", "sr_detail": {"default_set": true, "banner_img": "https://b.thumbs.redditmedia.com/4npNKJLWXF3xJVbv_7rXwLCcwGtQ0iz9DfEsQWsu0lg.png", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": "https://styles.redditmedia.com/t5_2rybx/styles/communityIcon_lnbbgyo7gyz41.png?width=256\u0026s=2fca7035d096f7d807bcd1c93f005e8e0d404724", "show_media": true, "description": "###NEWS\n* [Our Subreddit Rewatch of ATLA has begun](https://www.reddit.com/r/TheLastAirbender/comments/gjxrey/atla_rewatch_2020_announcement_hub/)\n* [Guide to Upcoming Content](https://www.reddit.com/r/TheLastAirbender/comments/cszn3k/guide_to_upcoming_avatar_content/)\n* [A standalone Katara focused graphic novel releasing Oct 2020](https://www.reddit.com/r/TheLastAirbender/comments/fm4baj/katara_and_the_pirates_silver_a_standalone/)\n* Netflix announced the creation of a [live action re-imagining of ATLA](https://www.reddit.com/r/ATLAtv/comments/fxtkki/netflixs_liveaction_atla_series_overview/).\n* [Shadow of Kyoshi novel releases July](https://www.reddit.com/r/Avatar_Kyoshi/comments/egdk6i/shadow_of_kyoshi_what_we_know_so_far/)\n* ATLA Returns to US Netflix May 15th\n\n\n###RULES\n* [Full subreddit rules](http://www.reddit.com/r/TheLastAirbender/about/rules)\n* Check out our [FAQ](https://www.reddit.com/r/TheLastAirbender/comments/d8ohvc/faqsguidesresources_mega_hub/) before posting\n* No blatant reposts! Use the search function before posting\n* Do not request/post non-official stream/download links for any episodes or comics.\n* Do not post links to/images from leaked comic content. \n* SFW posts only\n* Memes must feature avatar characters (as in images of them) **AND** be related to avatar. \n\n\n###SPOILERS\n\n**Posting spoilers**\n\n* No spoilers in titles.\n* [**Official spoiler stance**](https://www.reddit.com/r/TheLastAirbender/comments/7myl6k/200k_subscribers_new_spoiler_rules/)\n\n**Commenting spoilers**\n\n` \u003E!Azula kills Dumbledore!\u003C`\n\nwill become\n\n \u003E!Azula kills Dumbledore!\u003C\n\n###LINKS\n* [Episode and comic discussions](http://www.reddit.com/r/TheLastAirbender/wiki/episodediscussions)\n* [Crew Social Media Accounts](https://www.reddit.com/r/TheLastAirbender/comments/cb4lis/crew_social_media_accounts/)\n* [Avatar Wiki](http://avatar.wikia.com/wiki/Avatar_Wiki)\n* [Legend of Korra Timelapse](https://www.reddit.com/r/TheLastAirbender/wiki/timelapse)\n* [List of shows similar to ATLA/LOK](https://www.reddit.com/r/TheLastAirbender/comments/e4yv2q/okay_i_rewatched_avatar_and_watched_the_dragon/f9g8708/?context=3) \n* [Discord](discord.gg/avatar) \n\n###EVENTS BETWEEN ATLA AND LOK\n\nThere are several main comics which take place shortly after ATLA. They build towards LoK and answer some questions left at the end of ATLA. Check the FAQ for more details.\n\n- [The Promise](http://www.amazon.com/Avatar-The-Last-Airbender-Promise/dp/1616550740) - (Part [1](http://www.amazon.com/Avatar-Last-Airbender-Promise-Part/dp/1595828117), [2](http://www.amazon.com/Avatar-Last-Airbender-Promise-Part/dp/1595828753), \u0026 [3](http://www.amazon.com/Avatar-Last-Airbender-Promise-Part/dp/1595829415)).\n- [The Search](http://www.amazon.com/Avatar-The-Last-Airbender-Search/dp/1616552263) - (Part [1](http://www.amazon.com/Avatar-Last-Airbender-Search-Part/dp/1616550546), [2](http://www.amazon.com/Avatar-Last-Airbender-Search-Part/dp/1616551909) \u0026 [3](http://www.amazon.com/Avatar-Last-Airbender-Search-Part/dp/1616551844)).\n- [The Rift](http://www.amazon.com/Avatar-Last-Airbender-Library-Edition/dp/1616555505) - (Part [1](http://www.amazon.com/Avatar-Last-Airbender-Rift-Part/dp/1616552956), [2](http://www.amazon.com/Avatar-Last-Airbender-Rift-Part/dp/1616552964) \u0026 [3](http://www.amazon.com/Avatar-Last-Airbender-Rift-Part/dp/1616552972)).\n- [Smoke and Shadow](https://www.amazon.com/Avatar-Last-Airbender--Smoke-Shadow-Library/dp/1506700136/ref=sr_1_1?ie=UTF8\u0026qid=1468268967\u0026sr=8-1\u0026keywords=smoke+and+shadow) - (Part [1](https://www.amazon.com/Avatar-Last-Airbender-Smoke-Shadow/dp/1616557613/ref=sr_1_3?ie=UTF8\u0026qid=1468268967\u0026sr=8-3\u0026keywords=smoke+and+shadow), [2](https://www.amazon.com/Avatar-Last-Airbender-Smoke-Shadow/dp/1616557907/ref=sr_1_4?ie=UTF8\u0026qid=1468268967\u0026sr=8-4\u0026keywords=smoke+and+shadow) \u0026 [3](https://www.amazon.com/Avatar-Last-Airbender-Smoke-Shadow-Three/dp/1616558385/ref=sr_1_2?ie=UTF8\u0026qid=1468268967\u0026sr=8-2\u0026keywords=smoke+and+shadow)).\n- [North and South](https://www.amazon.com/Avatar-Last-Airbender-North-South-Library/dp/1506701957) - (Part [1](https://www.amazon.com/Avatar-Last-Airbender-North-South-Part/dp/1506700225), [2](https://www.amazon.com/Avatar-Last-Airbender-North-South-Part/dp/1506701299) \u0026 [3](https://www.amazon.com/Avatar-Last-Airbender-North-South-Three/dp/1506701302)).\n- [Imbalance](https://www.amazon.com/Avatar-Airbender-Imbalance-Faith-Erin-Hicks/dp/1506708129) - (Part [1](https://www.amazon.com/Avatar-Last-Airbender-Imbalance-Part-One/dp/1506704891), [2](https://www.amazon.com/Avatar-Last-Airbender-Imbalance-Part-Two/dp/1506706525) \u0026 [3](https://www.amazon.com/Avatar-Last-Airbender-Imbalance-Part-Three/dp/1506708137))\n\n###EVENTS AFTER LOK\n\n- [Turf Wars](https://www.amazon.com/Legend-Korra-Turf-Wars-Library/dp/1506702023) (Part [1](https://www.amazon.com/Legend-Korra-Turf-Wars-Part/dp/1506700152/), [2](https://www.amazon.com/Legend-Korra-Turf-Wars-Part/dp/1506700403/) \u0026 [3](https://www.amazon.com/Legend-Korra-Turf-Wars-Three/dp/150670185X/))\n- [Ruins of The Empire](https://www.amazon.com/Legend-Korra-Ruins-Empire-Library/dp/1506708935) (Part [1](https://www.amazon.com/Legend-Korra-Ruins-Empire-Part/dp/1506708943), [2](https://www.amazon.com/Legend-Korra-Ruins-Empire-Part/dp/1506708951), \u0026 [3](https://www.amazon.com/Legend-Korra-Ruins-Empire-Three/dp/150670896X))\n\n###Avatar Community Network\n\n^These ^avatar ^themed ^subreddits ^are ^fully ^or ^partially ^run ^by ^moderators ^of ^/r/TheLastAirbender \n\n* /r/legendofkorra \n* /r/ATLA \n* /r/AvatarMemes \n* /r/bending\n* /r/korrasami\n* /r/BendingWallpapers \n* /r/Avatar_Kyoshi (novels)\n* /r/ATLAtv (live-action series)\n* /r/ProBendingArena (table-top game)\n\n\n###Related Subreddits\n* /r/LakeLaogai *What movie?*\n* /r/TheDragonPrince - TV series by the head writer of ATLA\n* /r/cartoons \n* /r/NeverPauseAvatar\n* /r/AvatarVsBattles \n* /r/UnexpectedAvatar \n* /r/BoomerangSquad\n* /r/Iroh\n* /r/AvatarTheories\n\n###Shipping Subreddits\n* /r/sukka\n* /r/Kataang\n* /r/Tokka\n* /r/ZutaraNation\n* /r/Rangshi\n\n\n###Community\n\nThe Minecraft server IP is AvatarMC.com, more info [here](http://AvatarMC.com/). Server is community run.", "user_is_muted": false, "display_name": "TheLastAirbender", "header_img": "https://a.thumbs.redditmedia.com/A3rf2dDGNCQr5IkZKKmnn6HFgtaGS-wOyXBJRBHkNz4.png", "title": "The Last Airbender", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "#333333", "icon_img": "https://b.thumbs.redditmedia.com/7BBF5u_aOIeVPYLKLoZjvST_uyhnQNyHuwQ7PrXusHs.png", "icon_color": "", "submit_link_label": "", "header_size": [60, 87], "restrict_commenting": false, "subscribers": 914603, "submit_text_label": "", "link_flair_position": "left", "display_name_prefixed": "r/TheLastAirbender", "key_color": "#222222", "name": "t5_2rybx", "created": 1279778050.0, "url": "/r/TheLastAirbender/", "quarantine": false, "created_utc": 1279749250.0, "banner_size": [1280, 384], "user_is_contributor": false, "public_description": "The subreddit for fans of Avatar: The Last Airbender, The Legend of Korra, the comics, the upcoming Netflix live action ATLA series, novels, games, and all other Avatar content.", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2rybx", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "#ff4500", "id": "lak3sz", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "Wizyakuza", "discussion_type": null, "num_comments": 43, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/TheLastAirbender/comments/lak3sz/my_custom_fiery_family_3d_avatar_the_last/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/hmhhxq3lwye61.gif", "subreddit_subscribers": 914603, "created_utc": 1612229553.0, "num_crossposts": 0, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "pics", "selftext": "", "author_fullname": "t2_2cgzw0vd", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 2, "clicked": false, "title": "1 year ago I was working an office job, but thanks to reddit I can now make a living with painting!", "link_flair_richtext": [], "subreddit_name_prefixed": "r/pics", "hidden": false, "pwls": 6, "link_flair_css_class": "13", "downs": 0, "thumbnail_height": 111, "top_awarded_type": "INACTIVE", "hide_score": false, "name": "t3_la55j1", "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 0.78, "author_flair_background_color": null, "ups": 95723, "total_awards_received": 273, "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": "Arts/Crafts", "can_mod_post": false, "score": 95723, "approved_by": null, "author_premium": true, "thumbnail": "https://b.thumbs.redditmedia.com/6AhkjVUBwsK2mlkzwQDJOd3FAENWpn6yGFCAhxmEp6E.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-078adc7cb2099a9df.wss.redditmedia.com/link/la55j1?m=AQAA9l4aYHE8N9dT_r-HGgD3lwgp2_tfhVUM6YipJKfjBoe7VqOB", "gildings": {"gid_1": 71, "gid_2": 2}, "post_hint": "image", "content_categories": ["photography"], "is_self": false, "subreddit_type": "public", "created": 1612220881.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "domain": "i.redd.it", "allow_live_comments": true, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/7wffny89tve61.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/7wffny89tve61.jpg?auto=webp\u0026s=07274ef368481751f7b583b52d920d6648190b6c", "width": 3352, "height": 2666}, "resolutions": [{"url": "https://preview.redd.it/7wffny89tve61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=5c87d71e28b5c88ac32001a76aa0edec6fb48d7e", "width": 108, "height": 85}, {"url": "https://preview.redd.it/7wffny89tve61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=0788c5d262018ff09394c723ec1d696d3a42381a", "width": 216, "height": 171}, {"url": "https://preview.redd.it/7wffny89tve61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=3dc97934afa99dd1a5a39119a929cc356ed5879d", "width": 320, "height": 254}, {"url": "https://preview.redd.it/7wffny89tve61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=81a000e50a3c6cce9b8b5b59be69baa0a89dcef0", "width": 640, "height": 509}, {"url": "https://preview.redd.it/7wffny89tve61.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=f5444c7506d1ee4ff9c68be60b46b982e0decf66", "width": 960, "height": 763}, {"url": "https://preview.redd.it/7wffny89tve61.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=ab5a9f052a55ef76a9797c3d51a769eb1a689d88", "width": 1080, "height": 858}], "variants": {}, "id": "J4cahocG6gpWsLGC1o5ACPL3eAE2Gky-wQbPbyuehe8"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 500, "id": "award_1f0462ee-18f5-4f33-89cf-f1f79336a452", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 100, "icon_url": "https://i.redd.it/award_images/t5_22cerq/0o2j782f00e41_WholesomeSuperpro.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/0o2j782f00e41_WholesomeSuperpro.png?width=16\u0026height=16\u0026auto=webp\u0026s=3ca7dc1f4e12ca386a561446e72f772d38ba49d8", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/0o2j782f00e41_WholesomeSuperpro.png?width=32\u0026height=32\u0026auto=webp\u0026s=c19d1e661e4aa6a9326a9f0b74b3ebf5d9f7a75e", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/0o2j782f00e41_WholesomeSuperpro.png?width=48\u0026height=48\u0026auto=webp\u0026s=ed063580825e72b0ae63fe30c807b453b1362694", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/0o2j782f00e41_WholesomeSuperpro.png?width=64\u0026height=64\u0026auto=webp\u0026s=7176b4b72b850e3e052138fe8b3967c4c5b52dae", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/0o2j782f00e41_WholesomeSuperpro.png?width=128\u0026height=128\u0026auto=webp\u0026s=f7b307840995777f9ae04699d019740658ba0e77", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When you come across a feel-good thing. Gives %{coin_symbol}100 Coins to both the author and the community.", "end_date": null, "subreddit_coin_reward": 100, "count": 1, "static_icon_height": 2048, "name": "Wholesome (Pro)", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/0o2j782f00e41_WholesomeSuperpro.png?width=16\u0026height=16\u0026auto=webp\u0026s=3ca7dc1f4e12ca386a561446e72f772d38ba49d8", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/0o2j782f00e41_WholesomeSuperpro.png?width=32\u0026height=32\u0026auto=webp\u0026s=c19d1e661e4aa6a9326a9f0b74b3ebf5d9f7a75e", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/0o2j782f00e41_WholesomeSuperpro.png?width=48\u0026height=48\u0026auto=webp\u0026s=ed063580825e72b0ae63fe30c807b453b1362694", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/0o2j782f00e41_WholesomeSuperpro.png?width=64\u0026height=64\u0026auto=webp\u0026s=7176b4b72b850e3e052138fe8b3967c4c5b52dae", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/0o2j782f00e41_WholesomeSuperpro.png?width=128\u0026height=128\u0026auto=webp\u0026s=f7b307840995777f9ae04699d019740658ba0e77", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/0o2j782f00e41_WholesomeSuperpro.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 500, "id": "gid_2", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 100, "icon_url": "https://www.redditstatic.com/gold/awards/icon/gold_512.png", "days_of_premium": 7, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/gold_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Gives 100 Reddit Coins and a week of r/lounge access and ad-free browsing.", "end_date": null, "subreddit_coin_reward": 0, "count": 2, "static_icon_height": 512, "name": "Gold", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/gold_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/gold_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 400, "id": "award_84276b1e-cc8f-484f-a19c-be6c09adc1a5", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/SnooClapping_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/SnooClapping_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClapping_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClapping_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClapping_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/SnooClapping_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "An amazing showing.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Bravo!", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/m5fdvo7cl4451_Bravo-Static.png?width=16\u0026height=16\u0026auto=webp\u0026s=647cccf78702582f30d23908180da092b135cffe", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/m5fdvo7cl4451_Bravo-Static.png?width=32\u0026height=32\u0026auto=webp\u0026s=4644ac0618ecdef010ae2368e2e58669953fd9a3", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/m5fdvo7cl4451_Bravo-Static.png?width=48\u0026height=48\u0026auto=webp\u0026s=ca4efb2faa26429279f44ced2822f5e81ff37537", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/m5fdvo7cl4451_Bravo-Static.png?width=64\u0026height=64\u0026auto=webp\u0026s=3a307ad71aad031accfd47f1af82a2b1e09195cc", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/m5fdvo7cl4451_Bravo-Static.png?width=128\u0026height=128\u0026auto=webp\u0026s=fb9b2c432b1ddd85fd653ef3cc1a28e5edc40a1f", "width": 128, "height": 128}], "icon_format": "APNG", "icon_height": 512, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/m5fdvo7cl4451_Bravo-Static.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 325, "id": "award_6220ecfe-4552-4949-aa13-fb1fb7db537c", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/Superheart_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/Superheart_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/Superheart_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/Superheart_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/Superheart_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/Superheart_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When the love is out of control.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Super Heart Eyes", "resized_static_icons": [{"url": "https://external-preview.redd.it?width=16\u0026height=16\u0026auto=webp\u0026s=d88c9a453f8ac38850b7a8241cfe5804b7b4905d", "width": 16, "height": 16}, {"url": "https://external-preview.redd.it?width=32\u0026height=32\u0026auto=webp\u0026s=96a25019eb75878bdec4f6c012540f3baffbb1b2", "width": 32, "height": 32}, {"url": "https://external-preview.redd.it?width=48\u0026height=48\u0026auto=webp\u0026s=1a51d27d75afde3fbde8bba84f9338f511211461", "width": 48, "height": 48}, {"url": "https://external-preview.redd.it?width=64\u0026height=64\u0026auto=webp\u0026s=96af5ec460b05669ed60224cb0619bb8884abe27", "width": 64, "height": 64}, {"url": "https://external-preview.redd.it?width=128\u0026height=128\u0026auto=webp\u0026s=2d3e648ed2302e6258673051ca5291f57beb29d4", "width": 128, "height": 128}], "icon_format": "APNG", "icon_height": 512, "penny_price": 0, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/Superheart_512.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 150, "id": "award_f44611f1-b89e-46dc-97fe-892280b13b82", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Thank you stranger. Shows the award.", "end_date": null, "subreddit_coin_reward": 0, "count": 48, "static_icon_height": 2048, "name": "Helpful", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 125, "id": "award_5f123e3d-4f48-42f4-9c11-e98b566d5897", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When you come across a feel-good thing.", "end_date": null, "subreddit_coin_reward": 0, "count": 86, "static_icon_height": 2048, "name": "Wholesome", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "gid_1", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Shows the Silver Award... and that's it.", "end_date": null, "subreddit_coin_reward": 0, "count": 71, "static_icon_height": 512, "name": "Silver", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "award_19860e30-3331-4bac-b3d1-bd28de0c7974", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=16\u0026height=16\u0026auto=webp\u0026s=4e50438bd2d72ae5398e839ac2bdcccf323fca79", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=32\u0026height=32\u0026auto=webp\u0026s=e730f68de038499700c6301470812c29ef6a8555", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=48\u0026height=48\u0026auto=webp\u0026s=8d7c7fa22e6ff3b1b0a347839e42f493eb5f6cbc", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=64\u0026height=64\u0026auto=webp\u0026s=11ec2a72e2724017bb8479639edce8a7f2ba64f4", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=128\u0026height=128\u0026auto=webp\u0026s=1e936ae571e89abb5a5aaa2efd2d7cfb0ed1b537", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "I needed this today", "end_date": null, "subreddit_coin_reward": 0, "count": 3, "static_icon_height": 2048, "name": "Heartwarming", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=16\u0026height=16\u0026auto=webp\u0026s=4e50438bd2d72ae5398e839ac2bdcccf323fca79", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=32\u0026height=32\u0026auto=webp\u0026s=e730f68de038499700c6301470812c29ef6a8555", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=48\u0026height=48\u0026auto=webp\u0026s=8d7c7fa22e6ff3b1b0a347839e42f493eb5f6cbc", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=64\u0026height=64\u0026auto=webp\u0026s=11ec2a72e2724017bb8479639edce8a7f2ba64f4", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png?width=128\u0026height=128\u0026auto=webp\u0026s=1e936ae571e89abb5a5aaa2efd2d7cfb0ed1b537", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/v1mxw8i6wnf51_Heartwarming.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 80, "id": "award_8352bdff-3e03-4189-8a08-82501dd8f835", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Everything is better with a good hug", "end_date": null, "subreddit_coin_reward": 0, "count": 58, "static_icon_height": 2048, "name": "Hugz", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 50, "id": "award_02d9ab2c-162e-4c01-8438-317a016ed3d9", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=16\u0026height=16\u0026auto=webp\u0026s=045db73f47a9513c44823d132b4c393ab9241b6a", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=32\u0026height=32\u0026auto=webp\u0026s=298a02e0edbb5b5e293087eeede63802cbe1d2c7", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=48\u0026height=48\u0026auto=webp\u0026s=7d06d606eb23dbcd6dbe39ee0e60588c5eb89065", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=64\u0026height=64\u0026auto=webp\u0026s=ecd9854b14104a36a210028c43420f0dababd96b", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=128\u0026height=128\u0026auto=webp\u0026s=0d5d7b92c1d66aff435f2ad32e6330ca2b971f6d", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "I'm in this with you.", "end_date": null, "subreddit_coin_reward": 0, "count": 2, "static_icon_height": 2048, "name": "Take My Energy", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=16\u0026height=16\u0026auto=webp\u0026s=045db73f47a9513c44823d132b4c393ab9241b6a", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=32\u0026height=32\u0026auto=webp\u0026s=298a02e0edbb5b5e293087eeede63802cbe1d2c7", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=48\u0026height=48\u0026auto=webp\u0026s=7d06d606eb23dbcd6dbe39ee0e60588c5eb89065", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=64\u0026height=64\u0026auto=webp\u0026s=ecd9854b14104a36a210028c43420f0dababd96b", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png?width=128\u0026height=128\u0026auto=webp\u0026s=0d5d7b92c1d66aff435f2ad32e6330ca2b971f6d", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/jtw7x06j68361_TakeMyEnergyElf.png"}], "awarders": [], "media_only": false, "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": null, "show_media": true, "description": "[Rules](https://www.reddit.com/r/pics/wiki/index)\n\n1. No screenshots or pics where the only focus is a screen. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_1_-_no_screenshots)\n\n2. No pictures with added or superimposed digital text. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_2_-_no_digital_elements)\n\n3. No porn or gore. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_3_-_no_porn.2Fgore)\n\n4. No personal information, direct links to any social media, subreddit-related meta-drama, witch-hunts or missing/found posts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_4_-_no_doxing.2Fwitch_hunts)\n\n5. All titles must follow title rules. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/titles)\n\n6. Submissions are only allowed from one of the approved image hosts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_6_-_only_allowed_image_hosts) \n\n7. No gifs or videos. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_7_-_no_gifs)\n\n8. Comments must be civil. Any racism, bigotry, or any other kind of hate speech is strictly prohibited and will result in a ban. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_8_-_civility)\n\n9. No submissions featuring before-and-after depictions of personal health progress or achievement. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_9_-_no_progress_pics)\n\n10. No false claims of ownership (FCoO) or flooding. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_10_-_no_fcoo.2Fflooding)\n\n11. Reposts of images on the front page, or within the set limit of /r/pics/top, will be removed. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_11_-_repost_limitations)\n\n12. Normal users are allowed only one self-promotional link per post. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_12_-_limited_self-promotion)\n\n---\n\n[Additional/Temporary Rules](https://www.reddit.com/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* From January 14, 2020 until February 14, 2020, we will not allow political shitposts or political karmawhoring. [details\u003E\u003E](/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* Serial reposters may be filtered or banned. \n\n* We prefer that new users post original content and not common pictures from the internet.\n\n* All posts by new users require mod approval in order to weed out spammers. \n\n* Please mark spoilers for current movies/games/books with spoiler tags. \n\n---\n\nIf you want a picture that belongs to you to be removed from /r/pics then please file a copyright notice [here](https://reddit.zendesk.com/hc/en-us/requests/new?ticket_form_id=73465).\n\n---\n\nClick [here](https://www.reddit.com/r/pics/wiki/links) to find more specialized picture subreddits", "user_is_muted": false, "display_name": "pics", "header_img": "https://b.thumbs.redditmedia.com/1zT3FeN8pCAFIooNVuyuZ0ObU0x1ro4wPfArGHl3KjM.png", "title": "Reddit Pics", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "#ffffff", "icon_img": "https://b.thumbs.redditmedia.com/VZX_KQLnI1DPhlEZ07bIcLzwR1Win808RIt7zm49VIQ.png", "icon_color": "", "submit_link_label": "Submit an image", "header_size": [160, 64], "restrict_commenting": false, "subscribers": 26711137, "submit_text_label": "", "link_flair_position": "left", "display_name_prefixed": "r/pics", "key_color": "#222222", "name": "t5_2qh0u", "created": 1201249869.0, "url": "/r/pics/", "quarantine": false, "created_utc": 1201221069.0, "banner_size": null, "user_is_contributor": false, "public_description": "A place for pictures and photographs.", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2qh0u", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "la55j1", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "loes_ger", "discussion_type": null, "num_comments": 1509, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/pics/comments/la55j1/1_year_ago_i_was_working_an_office_job_but_thanks/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/7wffny89tve61.jpg", "subreddit_subscribers": 26711137, "created_utc": 1612192081.0, "num_crossposts": 7, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "pics", "selftext": "", "author_fullname": "t2_149yv2", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 1, "clicked": false, "title": "Two years ago today I started my chemo treatments. Never take your health for granted fam\ud83d\udc9c", "link_flair_richtext": [], "subreddit_name_prefixed": "r/pics", "hidden": false, "pwls": 6, "link_flair_css_class": null, "downs": 0, "thumbnail_height": 140, "top_awarded_type": null, "hide_score": false, "name": "t3_lam58l", "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 0.91, "author_flair_background_color": null, "ups": 756, "total_awards_received": 7, "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": null, "can_mod_post": false, "score": 756, "approved_by": null, "author_premium": true, "thumbnail": "https://a.thumbs.redditmedia.com/kvj-TXCFtJnWmRtTZ4AEdCVCoLmTNXeWXCRpxgbNeK0.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-0c77c1e9cd565dd0f.wss.redditmedia.com/link/lam58l?m=AQAA9l4aYL0yuswxsEKj6xbrclGJxuu1BKxo3PUi7zQtmVdJ8ddG", "gildings": {"gid_2": 1}, "post_hint": "image", "content_categories": ["photography"], "is_self": false, "subreddit_type": "public", "created": 1612264780.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "domain": "i.redd.it", "allow_live_comments": true, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/7k71qt4sfze61.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/7k71qt4sfze61.jpg?auto=webp\u0026s=9493ad8a2d6508488f6e102a637cc5b964ba81cb", "width": 1932, "height": 2576}, "resolutions": [{"url": "https://preview.redd.it/7k71qt4sfze61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=22301aec2b771025e8cde585ede00e96276ff40d", "width": 108, "height": 144}, {"url": "https://preview.redd.it/7k71qt4sfze61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=4b368bad48198c5646a16111a6063c34b6485ad0", "width": 216, "height": 288}, {"url": "https://preview.redd.it/7k71qt4sfze61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=7173b52be0f209576105a35f687bb85d8771d2e0", "width": 320, "height": 426}, {"url": "https://preview.redd.it/7k71qt4sfze61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=9d88b2b62077dd80983bca91745e4aee67a286a7", "width": 640, "height": 853}, {"url": "https://preview.redd.it/7k71qt4sfze61.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=ee1aa34a704fc7b7a29ca9f092f46e4e0caae9a5", "width": 960, "height": 1280}, {"url": "https://preview.redd.it/7k71qt4sfze61.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=4e95ec08a95f35a7d58322d926dd3431038bd2e8", "width": 1080, "height": 1440}], "variants": {}, "id": "vr7c8ZhvxcwZQY73SDW1n32n3yvWHY6nTw2FqgrJOp4"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 500, "id": "gid_2", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 100, "icon_url": "https://www.redditstatic.com/gold/awards/icon/gold_512.png", "days_of_premium": 7, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/gold_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Gives 100 Reddit Coins and a week of r/lounge access and ad-free browsing.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Gold", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/gold_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/gold_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/gold_512.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 125, "id": "award_5f123e3d-4f48-42f4-9c11-e98b566d5897", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When you come across a feel-good thing.", "end_date": null, "subreddit_coin_reward": 0, "count": 2, "static_icon_height": 2048, "name": "Wholesome", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 80, "id": "award_8352bdff-3e03-4189-8a08-82501dd8f835", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Everything is better with a good hug", "end_date": null, "subreddit_coin_reward": 0, "count": 4, "static_icon_height": 2048, "name": "Hugz", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png"}], "awarders": [], "media_only": false, "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": null, "show_media": true, "description": "[Rules](https://www.reddit.com/r/pics/wiki/index)\n\n1. No screenshots or pics where the only focus is a screen. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_1_-_no_screenshots)\n\n2. No pictures with added or superimposed digital text. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_2_-_no_digital_elements)\n\n3. No porn or gore. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_3_-_no_porn.2Fgore)\n\n4. No personal information, direct links to any social media, subreddit-related meta-drama, witch-hunts or missing/found posts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_4_-_no_doxing.2Fwitch_hunts)\n\n5. All titles must follow title rules. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/titles)\n\n6. Submissions are only allowed from one of the approved image hosts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_6_-_only_allowed_image_hosts) \n\n7. No gifs or videos. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_7_-_no_gifs)\n\n8. Comments must be civil. Any racism, bigotry, or any other kind of hate speech is strictly prohibited and will result in a ban. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_8_-_civility)\n\n9. No submissions featuring before-and-after depictions of personal health progress or achievement. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_9_-_no_progress_pics)\n\n10. No false claims of ownership (FCoO) or flooding. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_10_-_no_fcoo.2Fflooding)\n\n11. Reposts of images on the front page, or within the set limit of /r/pics/top, will be removed. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_11_-_repost_limitations)\n\n12. Normal users are allowed only one self-promotional link per post. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_12_-_limited_self-promotion)\n\n---\n\n[Additional/Temporary Rules](https://www.reddit.com/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* From January 14, 2020 until February 14, 2020, we will not allow political shitposts or political karmawhoring. [details\u003E\u003E](/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* Serial reposters may be filtered or banned. \n\n* We prefer that new users post original content and not common pictures from the internet.\n\n* All posts by new users require mod approval in order to weed out spammers. \n\n* Please mark spoilers for current movies/games/books with spoiler tags. \n\n---\n\nIf you want a picture that belongs to you to be removed from /r/pics then please file a copyright notice [here](https://reddit.zendesk.com/hc/en-us/requests/new?ticket_form_id=73465).\n\n---\n\nClick [here](https://www.reddit.com/r/pics/wiki/links) to find more specialized picture subreddits", "user_is_muted": false, "display_name": "pics", "header_img": "https://b.thumbs.redditmedia.com/1zT3FeN8pCAFIooNVuyuZ0ObU0x1ro4wPfArGHl3KjM.png", "title": "Reddit Pics", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "#ffffff", "icon_img": "https://b.thumbs.redditmedia.com/VZX_KQLnI1DPhlEZ07bIcLzwR1Win808RIt7zm49VIQ.png", "icon_color": "", "submit_link_label": "Submit an image", "header_size": [160, 64], "restrict_commenting": false, "subscribers": 26711137, "submit_text_label": "", "link_flair_position": "left", "display_name_prefixed": "r/pics", "key_color": "#222222", "name": "t5_2qh0u", "created": 1201249869.0, "url": "/r/pics/", "quarantine": false, "created_utc": 1201221069.0, "banner_size": null, "user_is_contributor": false, "public_description": "A place for pictures and photographs.", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2qh0u", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "lam58l", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "NummeRuski", "discussion_type": null, "num_comments": 17, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/pics/comments/lam58l/two_years_ago_today_i_started_my_chemo_treatments/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/7k71qt4sfze61.jpg", "subreddit_subscribers": 26711137, "created_utc": 1612235980.0, "num_crossposts": 0, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "pics", "selftext": "", "author_fullname": "t2_4x1j8s7", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "61 years ago today, the first major sit-in of the civil rights movement happened in Greensboro, NC.", "link_flair_richtext": [], "subreddit_name_prefixed": "r/pics", "hidden": false, "pwls": 6, "link_flair_css_class": null, "downs": 0, "thumbnail_height": 78, "top_awarded_type": null, "hide_score": false, "name": "t3_labfba", "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 0.98, "author_flair_background_color": null, "ups": 3327, "total_awards_received": 6, "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": "4883d892-6443-11e8-b937-0e4bcaa8957a", "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": null, "can_mod_post": false, "score": 3327, "approved_by": null, "author_premium": true, "thumbnail": "https://b.thumbs.redditmedia.com/-4VXLdjfmA0aBU3FfFClAdia5WTS9ploiXdPMTnwFUU.jpg", "edited": false, "author_flair_css_class": "k", "author_flair_richtext": [], "websocket_url": "wss://ws-0ec0cf6b4e835f4a5.wss.redditmedia.com/link/labfba?m=AQAA9l4aYKjZTGoqyHOYRIaACfYaM4ga-XJg8-P7DsXkiT5LKIVE", "gildings": {"gid_1": 1}, "post_hint": "image", "content_categories": ["photography"], "is_self": false, "subreddit_type": "public", "created": 1612235793.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "domain": "i.redd.it", "allow_live_comments": false, "selftext_html": null, "likes": null, "suggested_sort": "confidence", "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/hdwnksoc1xe61.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/hdwnksoc1xe61.jpg?auto=webp\u0026s=6e8b6d45f1982c3f9242915438dcd63233f6c40f", "width": 686, "height": 384}, "resolutions": [{"url": "https://preview.redd.it/hdwnksoc1xe61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=184f6ed43d5f74276fa472a972850dc2f8ff63b5", "width": 108, "height": 60}, {"url": "https://preview.redd.it/hdwnksoc1xe61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=4a359bb12ce733995a4255fa9485e726ee1b0637", "width": 216, "height": 120}, {"url": "https://preview.redd.it/hdwnksoc1xe61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=f36df67ebb2f43ad576e9e1e5ad5c0229bac1ce2", "width": 320, "height": 179}, {"url": "https://preview.redd.it/hdwnksoc1xe61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=445e84dc8c055c8b8fee16ff6c87184c5b3efafa", "width": 640, "height": 358}], "variants": {}, "id": "i9xjaL1dUQDryBnGOpcVL6dOH3aZERopHc4VKh4nVeo"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 500, "id": "award_2ae56630-cfe0-424e-b810-4945b9145358", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 100, "icon_url": "https://www.redditstatic.com/gold/awards/icon/Christmas_Helpful_Animated_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/Christmas_Helpful_Animated_512.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/Christmas_Helpful_Animated_512.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/Christmas_Helpful_Animated_512.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/Christmas_Helpful_Animated_512.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/Christmas_Helpful_Animated_512.png", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Thank you stranger. Gives %{coin_symbol}100 Coins to both the author and the community.", "end_date": null, "subreddit_coin_reward": 100, "count": 1, "static_icon_height": 2048, "name": "Helpful (Pro)", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/zkc9cw88c8361_ChristmasHelpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=57278b329d19fd1d345888bfff68a51528777538", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/zkc9cw88c8361_ChristmasHelpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=db7b3f20402a8a6820a4ffebf35160d2557986e2", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/zkc9cw88c8361_ChristmasHelpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=0100d8da8f4dae0dc81d430733aa622d752c268c", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/zkc9cw88c8361_ChristmasHelpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=1029c080a179f45b6d83a51ed79dfd57997ae266", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/zkc9cw88c8361_ChristmasHelpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=50e7f8a870f79df7bc38bedb8a12e01137df5a77", "width": 128, "height": 128}], "icon_format": "APNG", "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/zkc9cw88c8361_ChristmasHelpful.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 150, "id": "award_f44611f1-b89e-46dc-97fe-892280b13b82", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Thank you stranger. Shows the award.", "end_date": null, "subreddit_coin_reward": 0, "count": 3, "static_icon_height": 2048, "name": "Helpful", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "gid_1", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Shows the Silver Award... and that's it.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 512, "name": "Silver", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png"}, {"giver_coin_reward": 0, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 80, "id": "award_8352bdff-3e03-4189-8a08-82501dd8f835", "penny_donate": 0, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Everything is better with a good hug", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Hugz", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=16\u0026height=16\u0026auto=webp\u0026s=69997ace3ef4ffc099b81d774c2c8f1530602875", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=32\u0026height=32\u0026auto=webp\u0026s=e9519d1999ef9dce5c8a9f59369cb92f52d95319", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=48\u0026height=48\u0026auto=webp\u0026s=f076c6434fb2d2f9075991810fd845c40fa73fc6", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=64\u0026height=64\u0026auto=webp\u0026s=85527145e0c4b754306a30df29e584fd16187636", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png?width=128\u0026height=128\u0026auto=webp\u0026s=b8843cdf82c3b741d7af057c14076dcd2621e811", "width": 128, "height": 128}], "icon_format": "PNG", "icon_height": 2048, "penny_price": 0, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_q0gj4/fpm0r5ryq1361_PolarHugs.png"}], "awarders": [], "media_only": false, "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": null, "show_media": true, "description": "[Rules](https://www.reddit.com/r/pics/wiki/index)\n\n1. No screenshots or pics where the only focus is a screen. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_1_-_no_screenshots)\n\n2. No pictures with added or superimposed digital text. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_2_-_no_digital_elements)\n\n3. No porn or gore. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_3_-_no_porn.2Fgore)\n\n4. No personal information, direct links to any social media, subreddit-related meta-drama, witch-hunts or missing/found posts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_4_-_no_doxing.2Fwitch_hunts)\n\n5. All titles must follow title rules. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/titles)\n\n6. Submissions are only allowed from one of the approved image hosts. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_6_-_only_allowed_image_hosts) \n\n7. No gifs or videos. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_7_-_no_gifs)\n\n8. Comments must be civil. Any racism, bigotry, or any other kind of hate speech is strictly prohibited and will result in a ban. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_8_-_civility)\n\n9. No submissions featuring before-and-after depictions of personal health progress or achievement. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_9_-_no_progress_pics)\n\n10. No false claims of ownership (FCoO) or flooding. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_10_-_no_fcoo.2Fflooding)\n\n11. Reposts of images on the front page, or within the set limit of /r/pics/top, will be removed. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_11_-_repost_limitations)\n\n12. Normal users are allowed only one self-promotional link per post. [more\u003E\u003E](https://www.reddit.com/r/pics/wiki/index#wiki_rule_12_-_limited_self-promotion)\n\n---\n\n[Additional/Temporary Rules](https://www.reddit.com/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* From January 14, 2020 until February 14, 2020, we will not allow political shitposts or political karmawhoring. [details\u003E\u003E](/r/pics/wiki/index#wiki_additional.2Ftemporary_rules)\n\n* Serial reposters may be filtered or banned. \n\n* We prefer that new users post original content and not common pictures from the internet.\n\n* All posts by new users require mod approval in order to weed out spammers. \n\n* Please mark spoilers for current movies/games/books with spoiler tags. \n\n---\n\nIf you want a picture that belongs to you to be removed from /r/pics then please file a copyright notice [here](https://reddit.zendesk.com/hc/en-us/requests/new?ticket_form_id=73465).\n\n---\n\nClick [here](https://www.reddit.com/r/pics/wiki/links) to find more specialized picture subreddits", "user_is_muted": false, "display_name": "pics", "header_img": "https://b.thumbs.redditmedia.com/1zT3FeN8pCAFIooNVuyuZ0ObU0x1ro4wPfArGHl3KjM.png", "title": "Reddit Pics", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "#ffffff", "icon_img": "https://b.thumbs.redditmedia.com/VZX_KQLnI1DPhlEZ07bIcLzwR1Win808RIt7zm49VIQ.png", "icon_color": "", "submit_link_label": "Submit an image", "header_size": [160, 64], "restrict_commenting": false, "subscribers": 26711137, "submit_text_label": "", "link_flair_position": "left", "display_name_prefixed": "r/pics", "key_color": "#222222", "name": "t5_2qh0u", "created": 1201249869.0, "url": "/r/pics/", "quarantine": false, "created_utc": 1201221069.0, "banner_size": null, "user_is_contributor": false, "public_description": "A place for pictures and photographs.", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": "", "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2qh0u", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "labfba", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "bcdubbs382", "discussion_type": null, "num_comments": 57, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": "dark", "permalink": "/r/pics/comments/labfba/61_years_ago_today_the_first_major_sitin_of_the/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/hdwnksoc1xe61.jpg", "subreddit_subscribers": 26711137, "created_utc": 1612206993.0, "num_crossposts": 1, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "portraits", "selftext": "", "author_fullname": "t2_2sdssl6l", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "Charcoal pencil and chalk", "link_flair_richtext": [], "subreddit_name_prefixed": "r/portraits", "hidden": false, "pwls": 6, "link_flair_css_class": "oc", "downs": 0, "thumbnail_height": 140, "top_awarded_type": null, "hide_score": true, "name": "t3_laqdbb", "quarantine": false, "link_flair_text_color": "dark", "upvote_ratio": 1.0, "author_flair_background_color": null, "outbound_link": {"url": "https://i.redd.it/33aeoxunp0f61.jpg", "expiration": null, "created": null}, "ups": 2, "domain": "i.redd.it", "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": "OC", "can_mod_post": false, "score": 2, "approved_by": null, "author_premium": false, "thumbnail": "https://b.thumbs.redditmedia.com/aU162xDPcj_qCPczS2XtPSm1kwmOsQNPdpKky2O8o1o.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-050dfc90c26c1b964.wss.redditmedia.com/link/laqdbb?m=AQAA9l4aYKbh-JACBldyLycKC5B5O-hpGZUjU0rsoiTKAQ1exnN1", "gildings": {}, "post_hint": "image", "content_categories": ["photography"], "is_self": false, "mod_note": null, "created": 1612280208.0, "link_flair_type": "text", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "total_awards_received": 0, "allow_live_comments": false, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/33aeoxunp0f61.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/33aeoxunp0f61.jpg?auto=webp\u0026s=090d1ed5b9368fdb87217ddcfa30d78c286e54ad", "width": 2884, "height": 3253}, "resolutions": [{"url": "https://preview.redd.it/33aeoxunp0f61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=0d8a273121ddcf8e5b310a18cc87a8a799077ada", "width": 108, "height": 121}, {"url": "https://preview.redd.it/33aeoxunp0f61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=1b572c871a15c35d2820b08fc8938737352190ae", "width": 216, "height": 243}, {"url": "https://preview.redd.it/33aeoxunp0f61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=b76382fe7060180c85f0373c6272f765ef8a585c", "width": 320, "height": 360}, {"url": "https://preview.redd.it/33aeoxunp0f61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=81b3540d95aa4dc0676d087d9977ec175e05e5ae", "width": 640, "height": 721}, {"url": "https://preview.redd.it/33aeoxunp0f61.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=bec2711c01ea028acfeb144a6d5962ae3d3f6aa9", "width": 960, "height": 1082}, {"url": "https://preview.redd.it/33aeoxunp0f61.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=cdbad7c9f27f7df7946222ddb534407ae25b8db3", "width": 1080, "height": 1218}], "variants": {}, "id": "p2DOsrKTxBtYYsLd0lUSZGJZu2-GiJLVgx0cX7F4bD4"}], "enabled": true}, "all_awardings": [], "awarders": [], "media_only": false, "link_flair_template_id": "bb264daa-d9b0-11ea-b6b5-0ec12c214351", "sr_detail": {"default_set": true, "banner_img": "", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": null, "show_media": true, "description": "**READ THE RULES BEFORE YOU POST!**\n\nA place to post contemporary portrait images, receive constructive feedback, and discuss technique. Please mark non-original images as such.\n\n**Posts should be formatted as follows:**\n\n*\"Title [materials]\"*\n\nSo a painting might be *\"Hello World [oils on canvas]\"* and a photograph might be *\"Hello World [Sony A7sii, Zeiss Loxia 50mm f/2]\"*. Please follow this formatting, otherwise your post will be removed.\n\n\u003EA portrait is a painting, photograph, sculpture, or other artistic representation of a person, in which the face and its expression is predominant to display the likeness, personality, and even the mood of the person. For this reason, in photography a portrait is generally not a snapshot, but a composed image of a person in a still position often looking directly at the painter or photographer to most successfully engage the subject. \n[Wikipedia](https://en.wikipedia.org/wiki/Portrait)\n\nFor historical painted portraits please check out our sister subreddit **/r/portraiture.**", "user_is_muted": false, "display_name": "portraits", "header_img": null, "title": "Portraits", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": null, "primary_color": "", "icon_img": "", "icon_color": "", "is_chat_post_feature_enabled": true, "submit_link_label": "", "header_size": null, "restrict_commenting": false, "subscribers": 23717, "submit_text_label": "", "link_flair_position": "right", "display_name_prefixed": "r/portraits", "key_color": "", "name": "t5_2sxa6", "created": 1317336072.0, "url": "/r/portraits/", "quarantine": false, "created_utc": 1317307272.0, "banner_size": null, "allow_chat_post_creation": false, "user_is_contributor": false, "public_description": "A portrait is a painting, photograph, sculpture, or other artistic representation of a person, in which the face and its expression is predominant to display the likeness, personality, and even the mood of the person. For this reason, in photography a portrait is generally not a snapshot, but a composed image of a person in a still position often looking directly at the painter or photographer to most successfully engage the subject. \n[Wikipedia](https://en.wikipedia.org/wiki/Portrait)", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "subreddit_type": "public", "distinguished": null, "subreddit_id": "t5_2sxa6", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "", "id": "laqdbb", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "ScotchFinger01", "discussion_type": null, "num_comments": 0, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/portraits/comments/laqdbb/charcoal_pencil_and_chalk/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/33aeoxunp0f61.jpg", "subreddit_subscribers": 23717, "created_utc": 1612251408.0, "num_crossposts": 0, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "TheLastAirbender", "selftext": "", "author_fullname": "t2_1jqmldwl", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "[PricklyAlpaca] Korra is one badass avatar", "link_flair_richtext": [{"e": "text", "t": "Fan Art"}], "subreddit_name_prefixed": "r/TheLastAirbender", "hidden": false, "pwls": 6, "link_flair_css_class": "fanart", "downs": 0, "thumbnail_height": 140, "top_awarded_type": null, "hide_score": false, "name": "t3_laalja", "quarantine": false, "link_flair_text_color": "light", "upvote_ratio": 0.98, "author_flair_background_color": null, "ups": 2558, "domain": "i.redd.it", "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": null, "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": "Fan Art", "can_mod_post": false, "score": 2558, "approved_by": null, "author_premium": true, "thumbnail": "https://b.thumbs.redditmedia.com/ibB7uz-xWh00xLuOGzR0JSbUxeCOv3tVvAYnTvlscTg.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [], "websocket_url": "wss://ws-0f6ba0a7a86f40302.wss.redditmedia.com/link/laalja?m=AQAA9l4aYEbOX1aWJWivUizfNCze92nsBaPycrO54475vh_DBlAY", "gildings": {"gid_1": 3}, "post_hint": "image", "content_categories": null, "is_self": false, "subreddit_type": "public", "created": 1612233834.0, "link_flair_type": "richtext", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "text", "total_awards_received": 4, "allow_live_comments": false, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/yl8wfk6svwe61.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/yl8wfk6svwe61.jpg?auto=webp\u0026s=15679a7874a096f6a38a1a4205b4429f904e2bf4", "width": 1242, "height": 1541}, "resolutions": [{"url": "https://preview.redd.it/yl8wfk6svwe61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=6fc38d78171c3aefaff5850157a24a765f3b6af8", "width": 108, "height": 134}, {"url": "https://preview.redd.it/yl8wfk6svwe61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=7cb063bd8358e30287572f47db49ebeffcf469d2", "width": 216, "height": 268}, {"url": "https://preview.redd.it/yl8wfk6svwe61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=0b7d7cd5f2e620c1d8e4049b301a9b1246f4998f", "width": 320, "height": 397}, {"url": "https://preview.redd.it/yl8wfk6svwe61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=65d52e2c8fa4db1029fc3535ac1957aecc952747", "width": 640, "height": 794}, {"url": "https://preview.redd.it/yl8wfk6svwe61.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=e621d85d35d5e7158bca21c16862dd1f833997f8", "width": 960, "height": 1191}, {"url": "https://preview.redd.it/yl8wfk6svwe61.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=a77565012a99474448c2778bf5b213eb27547f6d", "width": 1080, "height": 1340}], "variants": {}, "id": "Suc4LapI0UbdHTkCKHqKJxYKDAs2pVB4oJ7ASEWYpm8"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 125, "id": "award_5f123e3d-4f48-42f4-9c11-e98b566d5897", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When you come across a feel-good thing.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Wholesome", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 100, "id": "gid_1", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_width": 512, "static_icon_width": 512, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Shows the Silver Award... and that's it.", "end_date": null, "subreddit_coin_reward": 0, "count": 3, "static_icon_height": 512, "name": "Silver", "resized_static_icons": [{"url": "https://www.redditstatic.com/gold/awards/icon/silver_16.png", "width": 16, "height": 16}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_32.png", "width": 32, "height": 32}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_48.png", "width": 48, "height": 48}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_64.png", "width": 64, "height": 64}, {"url": "https://www.redditstatic.com/gold/awards/icon/silver_128.png", "width": 128, "height": 128}], "icon_format": null, "icon_height": 512, "penny_price": null, "award_type": "global", "static_icon_url": "https://www.redditstatic.com/gold/awards/icon/silver_512.png"}], "awarders": [], "media_only": false, "link_flair_template_id": "d5f8b79e-c986-11e8-939e-0e8b530433ee", "sr_detail": {"default_set": true, "banner_img": "https://b.thumbs.redditmedia.com/4npNKJLWXF3xJVbv_7rXwLCcwGtQ0iz9DfEsQWsu0lg.png", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": "https://styles.redditmedia.com/t5_2rybx/styles/communityIcon_lnbbgyo7gyz41.png?width=256\u0026s=2fca7035d096f7d807bcd1c93f005e8e0d404724", "show_media": true, "description": "###NEWS\n* [Our Subreddit Rewatch of ATLA has begun](https://www.reddit.com/r/TheLastAirbender/comments/gjxrey/atla_rewatch_2020_announcement_hub/)\n* [Guide to Upcoming Content](https://www.reddit.com/r/TheLastAirbender/comments/cszn3k/guide_to_upcoming_avatar_content/)\n* [A standalone Katara focused graphic novel releasing Oct 2020](https://www.reddit.com/r/TheLastAirbender/comments/fm4baj/katara_and_the_pirates_silver_a_standalone/)\n* Netflix announced the creation of a [live action re-imagining of ATLA](https://www.reddit.com/r/ATLAtv/comments/fxtkki/netflixs_liveaction_atla_series_overview/).\n* [Shadow of Kyoshi novel releases July](https://www.reddit.com/r/Avatar_Kyoshi/comments/egdk6i/shadow_of_kyoshi_what_we_know_so_far/)\n* ATLA Returns to US Netflix May 15th\n\n\n###RULES\n* [Full subreddit rules](http://www.reddit.com/r/TheLastAirbender/about/rules)\n* Check out our [FAQ](https://www.reddit.com/r/TheLastAirbender/comments/d8ohvc/faqsguidesresources_mega_hub/) before posting\n* No blatant reposts! Use the search function before posting\n* Do not request/post non-official stream/download links for any episodes or comics.\n* Do not post links to/images from leaked comic content. \n* SFW posts only\n* Memes must feature avatar characters (as in images of them) **AND** be related to avatar. \n\n\n###SPOILERS\n\n**Posting spoilers**\n\n* No spoilers in titles.\n* [**Official spoiler stance**](https://www.reddit.com/r/TheLastAirbender/comments/7myl6k/200k_subscribers_new_spoiler_rules/)\n\n**Commenting spoilers**\n\n` \u003E!Azula kills Dumbledore!\u003C`\n\nwill become\n\n \u003E!Azula kills Dumbledore!\u003C\n\n###LINKS\n* [Episode and comic discussions](http://www.reddit.com/r/TheLastAirbender/wiki/episodediscussions)\n* [Crew Social Media Accounts](https://www.reddit.com/r/TheLastAirbender/comments/cb4lis/crew_social_media_accounts/)\n* [Avatar Wiki](http://avatar.wikia.com/wiki/Avatar_Wiki)\n* [Legend of Korra Timelapse](https://www.reddit.com/r/TheLastAirbender/wiki/timelapse)\n* [List of shows similar to ATLA/LOK](https://www.reddit.com/r/TheLastAirbender/comments/e4yv2q/okay_i_rewatched_avatar_and_watched_the_dragon/f9g8708/?context=3) \n* [Discord](discord.gg/avatar) \n\n###EVENTS BETWEEN ATLA AND LOK\n\nThere are several main comics which take place shortly after ATLA. They build towards LoK and answer some questions left at the end of ATLA. Check the FAQ for more details.\n\n- [The Promise](http://www.amazon.com/Avatar-The-Last-Airbender-Promise/dp/1616550740) - (Part [1](http://www.amazon.com/Avatar-Last-Airbender-Promise-Part/dp/1595828117), [2](http://www.amazon.com/Avatar-Last-Airbender-Promise-Part/dp/1595828753), \u0026 [3](http://www.amazon.com/Avatar-Last-Airbender-Promise-Part/dp/1595829415)).\n- [The Search](http://www.amazon.com/Avatar-The-Last-Airbender-Search/dp/1616552263) - (Part [1](http://www.amazon.com/Avatar-Last-Airbender-Search-Part/dp/1616550546), [2](http://www.amazon.com/Avatar-Last-Airbender-Search-Part/dp/1616551909) \u0026 [3](http://www.amazon.com/Avatar-Last-Airbender-Search-Part/dp/1616551844)).\n- [The Rift](http://www.amazon.com/Avatar-Last-Airbender-Library-Edition/dp/1616555505) - (Part [1](http://www.amazon.com/Avatar-Last-Airbender-Rift-Part/dp/1616552956), [2](http://www.amazon.com/Avatar-Last-Airbender-Rift-Part/dp/1616552964) \u0026 [3](http://www.amazon.com/Avatar-Last-Airbender-Rift-Part/dp/1616552972)).\n- [Smoke and Shadow](https://www.amazon.com/Avatar-Last-Airbender--Smoke-Shadow-Library/dp/1506700136/ref=sr_1_1?ie=UTF8\u0026qid=1468268967\u0026sr=8-1\u0026keywords=smoke+and+shadow) - (Part [1](https://www.amazon.com/Avatar-Last-Airbender-Smoke-Shadow/dp/1616557613/ref=sr_1_3?ie=UTF8\u0026qid=1468268967\u0026sr=8-3\u0026keywords=smoke+and+shadow), [2](https://www.amazon.com/Avatar-Last-Airbender-Smoke-Shadow/dp/1616557907/ref=sr_1_4?ie=UTF8\u0026qid=1468268967\u0026sr=8-4\u0026keywords=smoke+and+shadow) \u0026 [3](https://www.amazon.com/Avatar-Last-Airbender-Smoke-Shadow-Three/dp/1616558385/ref=sr_1_2?ie=UTF8\u0026qid=1468268967\u0026sr=8-2\u0026keywords=smoke+and+shadow)).\n- [North and South](https://www.amazon.com/Avatar-Last-Airbender-North-South-Library/dp/1506701957) - (Part [1](https://www.amazon.com/Avatar-Last-Airbender-North-South-Part/dp/1506700225), [2](https://www.amazon.com/Avatar-Last-Airbender-North-South-Part/dp/1506701299) \u0026 [3](https://www.amazon.com/Avatar-Last-Airbender-North-South-Three/dp/1506701302)).\n- [Imbalance](https://www.amazon.com/Avatar-Airbender-Imbalance-Faith-Erin-Hicks/dp/1506708129) - (Part [1](https://www.amazon.com/Avatar-Last-Airbender-Imbalance-Part-One/dp/1506704891), [2](https://www.amazon.com/Avatar-Last-Airbender-Imbalance-Part-Two/dp/1506706525) \u0026 [3](https://www.amazon.com/Avatar-Last-Airbender-Imbalance-Part-Three/dp/1506708137))\n\n###EVENTS AFTER LOK\n\n- [Turf Wars](https://www.amazon.com/Legend-Korra-Turf-Wars-Library/dp/1506702023) (Part [1](https://www.amazon.com/Legend-Korra-Turf-Wars-Part/dp/1506700152/), [2](https://www.amazon.com/Legend-Korra-Turf-Wars-Part/dp/1506700403/) \u0026 [3](https://www.amazon.com/Legend-Korra-Turf-Wars-Three/dp/150670185X/))\n- [Ruins of The Empire](https://www.amazon.com/Legend-Korra-Ruins-Empire-Library/dp/1506708935) (Part [1](https://www.amazon.com/Legend-Korra-Ruins-Empire-Part/dp/1506708943), [2](https://www.amazon.com/Legend-Korra-Ruins-Empire-Part/dp/1506708951), \u0026 [3](https://www.amazon.com/Legend-Korra-Ruins-Empire-Three/dp/150670896X))\n\n###Avatar Community Network\n\n^These ^avatar ^themed ^subreddits ^are ^fully ^or ^partially ^run ^by ^moderators ^of ^/r/TheLastAirbender \n\n* /r/legendofkorra \n* /r/ATLA \n* /r/AvatarMemes \n* /r/bending\n* /r/korrasami\n* /r/BendingWallpapers \n* /r/Avatar_Kyoshi (novels)\n* /r/ATLAtv (live-action series)\n* /r/ProBendingArena (table-top game)\n\n\n###Related Subreddits\n* /r/LakeLaogai *What movie?*\n* /r/TheDragonPrince - TV series by the head writer of ATLA\n* /r/cartoons \n* /r/NeverPauseAvatar\n* /r/AvatarVsBattles \n* /r/UnexpectedAvatar \n* /r/BoomerangSquad\n* /r/Iroh\n* /r/AvatarTheories\n\n###Shipping Subreddits\n* /r/sukka\n* /r/Kataang\n* /r/Tokka\n* /r/ZutaraNation\n* /r/Rangshi\n\n\n###Community\n\nThe Minecraft server IP is AvatarMC.com, more info [here](http://AvatarMC.com/). Server is community run.", "user_is_muted": false, "display_name": "TheLastAirbender", "header_img": "https://a.thumbs.redditmedia.com/A3rf2dDGNCQr5IkZKKmnn6HFgtaGS-wOyXBJRBHkNz4.png", "title": "The Last Airbender", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "#333333", "icon_img": "https://b.thumbs.redditmedia.com/7BBF5u_aOIeVPYLKLoZjvST_uyhnQNyHuwQ7PrXusHs.png", "icon_color": "", "submit_link_label": "", "header_size": [60, 87], "restrict_commenting": false, "subscribers": 914603, "submit_text_label": "", "link_flair_position": "left", "display_name_prefixed": "r/TheLastAirbender", "key_color": "#222222", "name": "t5_2rybx", "created": 1279778050.0, "url": "/r/TheLastAirbender/", "quarantine": false, "created_utc": 1279749250.0, "banner_size": [1280, 384], "user_is_contributor": false, "public_description": "The subreddit for fans of Avatar: The Last Airbender, The Legend of Korra, the comics, the upcoming Netflix live action ATLA series, novels, games, and all other Avatar content.", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": null, "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2rybx", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "#ff4719", "id": "laalja", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "julianofcanada", "discussion_type": null, "num_comments": 40, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": null, "permalink": "/r/TheLastAirbender/comments/laalja/pricklyalpaca_korra_is_one_badass_avatar/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/yl8wfk6svwe61.jpg", "subreddit_subscribers": 914603, "created_utc": 1612205034.0, "num_crossposts": 0, "media": null, "is_video": false}}, {"kind": "t3", "data": {"approved_at_utc": null, "subreddit": "TheLastAirbender", "selftext": "", "author_fullname": "t2_3ru7i8us", "location_lat": null, "saved": false, "mod_reason_title": null, "gilded": 0, "clicked": false, "title": "Airbenders weren\u2019t the only ones who could \u201cfly\u201d", "link_flair_richtext": [{"e": "text", "t": "Image"}], "subreddit_name_prefixed": "r/TheLastAirbender", "hidden": false, "pwls": 6, "link_flair_css_class": "image", "downs": 0, "thumbnail_height": 140, "top_awarded_type": null, "hide_score": false, "name": "t3_la7kui", "quarantine": false, "link_flair_text_color": "light", "upvote_ratio": 0.99, "author_flair_background_color": "transparent", "ups": 3132, "domain": "i.redd.it", "media_embed": {}, "thumbnail_width": 140, "author_flair_template_id": "8a15c548-8186-11e4-96e5-22000b3a8129", "is_original_content": false, "user_reports": [], "secure_media": null, "is_reddit_media_domain": true, "is_meta": false, "category": null, "secure_media_embed": {}, "link_flair_text": "Image", "can_mod_post": false, "score": 3132, "approved_by": null, "author_premium": false, "thumbnail": "https://b.thumbs.redditmedia.com/DiE_UjjtI3pgZOCGhdKbk5bsNMroBqOsm9SABEY1MnM.jpg", "edited": false, "author_flair_css_class": null, "author_flair_richtext": [{"a": ":sukiemblem:", "e": "emoji", "u": "https://emoji.redditmedia.com/xx8xoasvnhn11_t5_2rybx/sukiemblem"}, {"e": "text", "t": "I will put you down like the beast you are"}], "websocket_url": "wss://ws-0ec0cf6b4e835f4a5.wss.redditmedia.com/link/la7kui?m=AQAA9l4aYAHkzSxpOqEy5wb9QaG0JDizP8rBeiabuD58wpDiN2__", "gildings": {}, "post_hint": "image", "content_categories": null, "is_self": false, "subreddit_type": "public", "created": 1612226698.0, "link_flair_type": "richtext", "wls": 6, "removed_by_category": null, "send_replies": true, "banned_by": null, "author_flair_type": "richtext", "total_awards_received": 3, "allow_live_comments": true, "selftext_html": null, "likes": null, "suggested_sort": null, "banned_at_utc": null, "url_overridden_by_dest": "https://i.redd.it/q4asxv9kawe61.jpg", "view_count": null, "archived": false, "no_follow": false, "is_crosspostable": true, "pinned": false, "over_18": false, "preview": {"images": [{"source": {"url": "https://preview.redd.it/q4asxv9kawe61.jpg?auto=webp\u0026s=836a70ff169aa01b5a26686d5bfb204330391d9b", "width": 1800, "height": 1800}, "resolutions": [{"url": "https://preview.redd.it/q4asxv9kawe61.jpg?width=108\u0026crop=smart\u0026auto=webp\u0026s=1150a2668ccaf0cd6df3a7f8e566cf98a1c7bd2e", "width": 108, "height": 108}, {"url": "https://preview.redd.it/q4asxv9kawe61.jpg?width=216\u0026crop=smart\u0026auto=webp\u0026s=24e7a8d0a5f68669132bba83798af69fac88b79c", "width": 216, "height": 216}, {"url": "https://preview.redd.it/q4asxv9kawe61.jpg?width=320\u0026crop=smart\u0026auto=webp\u0026s=01388336e1e0f303aea0baefb6d5b8036cb3b2ec", "width": 320, "height": 320}, {"url": "https://preview.redd.it/q4asxv9kawe61.jpg?width=640\u0026crop=smart\u0026auto=webp\u0026s=babc9fdfe5e0333ba62c57f1ce3b817e6d7aff0e", "width": 640, "height": 640}, {"url": "https://preview.redd.it/q4asxv9kawe61.jpg?width=960\u0026crop=smart\u0026auto=webp\u0026s=98a777884811a24bcdaa3910363ef1fd37534f50", "width": 960, "height": 960}, {"url": "https://preview.redd.it/q4asxv9kawe61.jpg?width=1080\u0026crop=smart\u0026auto=webp\u0026s=d66b076ca66be0322dfa76dd0cbcf54d1d150e19", "width": 1080, "height": 1080}], "variants": {}, "id": "mxcACPhLpmCI3Dxy51EvLCGtY_VwhpTcu9kTNIzYAK8"}], "enabled": true}, "all_awardings": [{"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 150, "id": "award_f44611f1-b89e-46dc-97fe-892280b13b82", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "Thank you stranger. Shows the award.", "end_date": null, "subreddit_coin_reward": 0, "count": 2, "static_icon_height": 2048, "name": "Helpful", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=16\u0026height=16\u0026auto=webp\u0026s=a5662dfbdb402bf67866c050aa76c31c147c2f45", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=32\u0026height=32\u0026auto=webp\u0026s=a6882eb3f380e8e88009789f4d0072e17b8c59f1", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=48\u0026height=48\u0026auto=webp\u0026s=e50064b090879e8a0b55e433f6ee61d5cb5fbe1d", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=64\u0026height=64\u0026auto=webp\u0026s=8e5bb2e76683cb6b161830bcdd9642049d6adc11", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png?width=128\u0026height=128\u0026auto=webp\u0026s=eda4a9246f95f42ee6940cc0ec65306fd20de878", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/klvxk1wggfd41_Helpful.png"}, {"giver_coin_reward": null, "subreddit_id": null, "is_new": false, "days_of_drip_extension": 0, "coin_price": 125, "id": "award_5f123e3d-4f48-42f4-9c11-e98b566d5897", "penny_donate": null, "award_sub_type": "GLOBAL", "coin_reward": 0, "icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png", "days_of_premium": 0, "tiers_by_required_awardings": null, "resized_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_width": 2048, "static_icon_width": 2048, "start_date": null, "is_enabled": true, "awardings_required_to_grant_benefits": null, "description": "When you come across a feel-good thing.", "end_date": null, "subreddit_coin_reward": 0, "count": 1, "static_icon_height": 2048, "name": "Wholesome", "resized_static_icons": [{"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=16\u0026height=16\u0026auto=webp\u0026s=92932f465d58e4c16b12b6eac4ca07d27e3d11c0", "width": 16, "height": 16}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=32\u0026height=32\u0026auto=webp\u0026s=d11484a208d68a318bf9d4fcf371171a1cb6a7ef", "width": 32, "height": 32}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=48\u0026height=48\u0026auto=webp\u0026s=febdf28b6f39f7da7eb1365325b85e0bb49a9f63", "width": 48, "height": 48}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=64\u0026height=64\u0026auto=webp\u0026s=b4406a2d88bf86fa3dc8a45aacf7e0c7bdccc4fb", "width": 64, "height": 64}, {"url": "https://preview.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png?width=128\u0026height=128\u0026auto=webp\u0026s=19555b13e3e196b62eeb9160d1ac1d1b372dcb0b", "width": 128, "height": 128}], "icon_format": null, "icon_height": 2048, "penny_price": null, "award_type": "global", "static_icon_url": "https://i.redd.it/award_images/t5_22cerq/5izbv4fn0md41_Wholesome.png"}], "awarders": [], "media_only": false, "link_flair_template_id": "1bb4d5f8-c9ad-11e8-8a67-0e3b561b1856", "sr_detail": {"default_set": true, "banner_img": "https://b.thumbs.redditmedia.com/4npNKJLWXF3xJVbv_7rXwLCcwGtQ0iz9DfEsQWsu0lg.png", "restrict_posting": true, "user_is_banned": false, "free_form_reports": true, "community_icon": "https://styles.redditmedia.com/t5_2rybx/styles/communityIcon_lnbbgyo7gyz41.png?width=256\u0026s=2fca7035d096f7d807bcd1c93f005e8e0d404724", "show_media": true, "description": "###NEWS\n* [Our Subreddit Rewatch of ATLA has begun](https://www.reddit.com/r/TheLastAirbender/comments/gjxrey/atla_rewatch_2020_announcement_hub/)\n* [Guide to Upcoming Content](https://www.reddit.com/r/TheLastAirbender/comments/cszn3k/guide_to_upcoming_avatar_content/)\n* [A standalone Katara focused graphic novel releasing Oct 2020](https://www.reddit.com/r/TheLastAirbender/comments/fm4baj/katara_and_the_pirates_silver_a_standalone/)\n* Netflix announced the creation of a [live action re-imagining of ATLA](https://www.reddit.com/r/ATLAtv/comments/fxtkki/netflixs_liveaction_atla_series_overview/).\n* [Shadow of Kyoshi novel releases July](https://www.reddit.com/r/Avatar_Kyoshi/comments/egdk6i/shadow_of_kyoshi_what_we_know_so_far/)\n* ATLA Returns to US Netflix May 15th\n\n\n###RULES\n* [Full subreddit rules](http://www.reddit.com/r/TheLastAirbender/about/rules)\n* Check out our [FAQ](https://www.reddit.com/r/TheLastAirbender/comments/d8ohvc/faqsguidesresources_mega_hub/) before posting\n* No blatant reposts! Use the search function before posting\n* Do not request/post non-official stream/download links for any episodes or comics.\n* Do not post links to/images from leaked comic content. \n* SFW posts only\n* Memes must feature avatar characters (as in images of them) **AND** be related to avatar. \n\n\n###SPOILERS\n\n**Posting spoilers**\n\n* No spoilers in titles.\n* [**Official spoiler stance**](https://www.reddit.com/r/TheLastAirbender/comments/7myl6k/200k_subscribers_new_spoiler_rules/)\n\n**Commenting spoilers**\n\n` \u003E!Azula kills Dumbledore!\u003C`\n\nwill become\n\n \u003E!Azula kills Dumbledore!\u003C\n\n###LINKS\n* [Episode and comic discussions](http://www.reddit.com/r/TheLastAirbender/wiki/episodediscussions)\n* [Crew Social Media Accounts](https://www.reddit.com/r/TheLastAirbender/comments/cb4lis/crew_social_media_accounts/)\n* [Avatar Wiki](http://avatar.wikia.com/wiki/Avatar_Wiki)\n* [Legend of Korra Timelapse](https://www.reddit.com/r/TheLastAirbender/wiki/timelapse)\n* [List of shows similar to ATLA/LOK](https://www.reddit.com/r/TheLastAirbender/comments/e4yv2q/okay_i_rewatched_avatar_and_watched_the_dragon/f9g8708/?context=3) \n* [Discord](discord.gg/avatar) \n\n###EVENTS BETWEEN ATLA AND LOK\n\nThere are several main comics which take place shortly after ATLA. They build towards LoK and answer some questions left at the end of ATLA. Check the FAQ for more details.\n\n- [The Promise](http://www.amazon.com/Avatar-The-Last-Airbender-Promise/dp/1616550740) - (Part [1](http://www.amazon.com/Avatar-Last-Airbender-Promise-Part/dp/1595828117), [2](http://www.amazon.com/Avatar-Last-Airbender-Promise-Part/dp/1595828753), \u0026 [3](http://www.amazon.com/Avatar-Last-Airbender-Promise-Part/dp/1595829415)).\n- [The Search](http://www.amazon.com/Avatar-The-Last-Airbender-Search/dp/1616552263) - (Part [1](http://www.amazon.com/Avatar-Last-Airbender-Search-Part/dp/1616550546), [2](http://www.amazon.com/Avatar-Last-Airbender-Search-Part/dp/1616551909) \u0026 [3](http://www.amazon.com/Avatar-Last-Airbender-Search-Part/dp/1616551844)).\n- [The Rift](http://www.amazon.com/Avatar-Last-Airbender-Library-Edition/dp/1616555505) - (Part [1](http://www.amazon.com/Avatar-Last-Airbender-Rift-Part/dp/1616552956), [2](http://www.amazon.com/Avatar-Last-Airbender-Rift-Part/dp/1616552964) \u0026 [3](http://www.amazon.com/Avatar-Last-Airbender-Rift-Part/dp/1616552972)).\n- [Smoke and Shadow](https://www.amazon.com/Avatar-Last-Airbender--Smoke-Shadow-Library/dp/1506700136/ref=sr_1_1?ie=UTF8\u0026qid=1468268967\u0026sr=8-1\u0026keywords=smoke+and+shadow) - (Part [1](https://www.amazon.com/Avatar-Last-Airbender-Smoke-Shadow/dp/1616557613/ref=sr_1_3?ie=UTF8\u0026qid=1468268967\u0026sr=8-3\u0026keywords=smoke+and+shadow), [2](https://www.amazon.com/Avatar-Last-Airbender-Smoke-Shadow/dp/1616557907/ref=sr_1_4?ie=UTF8\u0026qid=1468268967\u0026sr=8-4\u0026keywords=smoke+and+shadow) \u0026 [3](https://www.amazon.com/Avatar-Last-Airbender-Smoke-Shadow-Three/dp/1616558385/ref=sr_1_2?ie=UTF8\u0026qid=1468268967\u0026sr=8-2\u0026keywords=smoke+and+shadow)).\n- [North and South](https://www.amazon.com/Avatar-Last-Airbender-North-South-Library/dp/1506701957) - (Part [1](https://www.amazon.com/Avatar-Last-Airbender-North-South-Part/dp/1506700225), [2](https://www.amazon.com/Avatar-Last-Airbender-North-South-Part/dp/1506701299) \u0026 [3](https://www.amazon.com/Avatar-Last-Airbender-North-South-Three/dp/1506701302)).\n- [Imbalance](https://www.amazon.com/Avatar-Airbender-Imbalance-Faith-Erin-Hicks/dp/1506708129) - (Part [1](https://www.amazon.com/Avatar-Last-Airbender-Imbalance-Part-One/dp/1506704891), [2](https://www.amazon.com/Avatar-Last-Airbender-Imbalance-Part-Two/dp/1506706525) \u0026 [3](https://www.amazon.com/Avatar-Last-Airbender-Imbalance-Part-Three/dp/1506708137))\n\n###EVENTS AFTER LOK\n\n- [Turf Wars](https://www.amazon.com/Legend-Korra-Turf-Wars-Library/dp/1506702023) (Part [1](https://www.amazon.com/Legend-Korra-Turf-Wars-Part/dp/1506700152/), [2](https://www.amazon.com/Legend-Korra-Turf-Wars-Part/dp/1506700403/) \u0026 [3](https://www.amazon.com/Legend-Korra-Turf-Wars-Three/dp/150670185X/))\n- [Ruins of The Empire](https://www.amazon.com/Legend-Korra-Ruins-Empire-Library/dp/1506708935) (Part [1](https://www.amazon.com/Legend-Korra-Ruins-Empire-Part/dp/1506708943), [2](https://www.amazon.com/Legend-Korra-Ruins-Empire-Part/dp/1506708951), \u0026 [3](https://www.amazon.com/Legend-Korra-Ruins-Empire-Three/dp/150670896X))\n\n###Avatar Community Network\n\n^These ^avatar ^themed ^subreddits ^are ^fully ^or ^partially ^run ^by ^moderators ^of ^/r/TheLastAirbender \n\n* /r/legendofkorra \n* /r/ATLA \n* /r/AvatarMemes \n* /r/bending\n* /r/korrasami\n* /r/BendingWallpapers \n* /r/Avatar_Kyoshi (novels)\n* /r/ATLAtv (live-action series)\n* /r/ProBendingArena (table-top game)\n\n\n###Related Subreddits\n* /r/LakeLaogai *What movie?*\n* /r/TheDragonPrince - TV series by the head writer of ATLA\n* /r/cartoons \n* /r/NeverPauseAvatar\n* /r/AvatarVsBattles \n* /r/UnexpectedAvatar \n* /r/BoomerangSquad\n* /r/Iroh\n* /r/AvatarTheories\n\n###Shipping Subreddits\n* /r/sukka\n* /r/Kataang\n* /r/Tokka\n* /r/ZutaraNation\n* /r/Rangshi\n\n\n###Community\n\nThe Minecraft server IP is AvatarMC.com, more info [here](http://AvatarMC.com/). Server is community run.", "user_is_muted": false, "display_name": "TheLastAirbender", "header_img": "https://a.thumbs.redditmedia.com/A3rf2dDGNCQr5IkZKKmnn6HFgtaGS-wOyXBJRBHkNz4.png", "title": "The Last Airbender", "previous_names": [], "user_is_moderator": false, "over_18": false, "icon_size": [256, 256], "primary_color": "#333333", "icon_img": "https://b.thumbs.redditmedia.com/7BBF5u_aOIeVPYLKLoZjvST_uyhnQNyHuwQ7PrXusHs.png", "icon_color": "", "submit_link_label": "", "header_size": [60, 87], "restrict_commenting": false, "subscribers": 914603, "submit_text_label": "", "link_flair_position": "left", "display_name_prefixed": "r/TheLastAirbender", "key_color": "#222222", "name": "t5_2rybx", "created": 1279778050.0, "url": "/r/TheLastAirbender/", "quarantine": false, "created_utc": 1279749250.0, "banner_size": [1280, 384], "user_is_contributor": false, "public_description": "The subreddit for fans of Avatar: The Last Airbender, The Legend of Korra, the comics, the upcoming Netflix live action ATLA series, novels, games, and all other Avatar content.", "link_flair_enabled": true, "disable_contributor_requests": false, "subreddit_type": "public", "user_is_subscriber": true}, "can_gild": true, "spoiler": false, "locked": false, "author_flair_text": ":sukiemblem:I will put you down like the beast you are", "treatment_tags": [], "visited": false, "removed_by": null, "mod_note": null, "distinguished": null, "subreddit_id": "t5_2rybx", "mod_reason_by": null, "num_reports": null, "removal_reason": null, "link_flair_background_color": "#ff4719", "id": "la7kui", "is_robot_indexable": true, "location_name": null, "report_reasons": null, "author": "kkachi95", "discussion_type": null, "num_comments": 97, "location_long": null, "whitelist_status": "all_ads", "contest_mode": false, "mod_reports": [], "author_patreon_flair": false, "author_flair_text_color": "dark", "permalink": "/r/TheLastAirbender/comments/la7kui/airbenders_werent_the_only_ones_who_could_fly/", "parent_whitelist_status": "all_ads", "stickied": false, "url": "https://i.redd.it/q4asxv9kawe61.jpg", "subreddit_subscribers": 914603, "created_utc": 1612197898.0, "num_crossposts": 0, "media": null, "is_video": false}}], "after": "t3_la7kui", "before": null}} \ No newline at end of file diff --git a/client/tests/mocks/source.mock.ts b/client/tests/mocks/source.mock.ts deleted file mode 100644 index 1eeacd5..0000000 --- a/client/tests/mocks/source.mock.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { Observable } from 'rxjs' -import { UpdateReal } from '../../lib/sequence-store' -import { Source } from '../../lib/source/source' - -export class MockSource implements Source { - - constructor ( - private readonly mockData: Observable>, - ) { } - - watch$ (): Observable> { - return this.mockData - } - - start (): void { } - - stop (): void { } -} diff --git a/client/tests/patch-db.test.ts b/client/tests/patch-db.test.ts deleted file mode 100644 index 046ca16..0000000 --- a/client/tests/patch-db.test.ts +++ /dev/null @@ -1,90 +0,0 @@ -import { expect } from 'chai' -import { TestScheduler } from 'rxjs/testing' -import { PatchDB } from '../lib/patch-db' -import { MockSource } from './mocks/source.mock' -import { MockHttp } from './mocks/http.mock' -import { PatchOp } from '../lib/patch-db' -import { from } from 'rxjs' -import { MockBootstrapper } from './mocks/bootstrapper.mock' -import { UpdateReal } from '../lib/sequence-store' -import { RemoveOperation } from 'fast-json-patch' -import 'chai-string' - -type Test = { a: string, b: number[], c: object, newKey?: string } - -describe('patch db', function () { - let scheduler: TestScheduler - - beforeEach(() => { - scheduler = new TestScheduler((actual, expected) => { - // console.log('actual', JSON.stringify(actual)) - // console.log('expected', JSON.stringify(expected)) - expect(actual).eql(expected) - }) - }) - - it('dumps', () => { - scheduler.run(({ expectObservable, cold }) => { - const initialData: Test = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const bootstrapper = new MockBootstrapper(0, initialData) - const http = new MockHttp( { getSequences: [], getDump: { id: 0, value: { }, expireId: null } } ) - const updates = { - a: { id: 1, value: { a: 'value1', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } }, expireId: null }, - b: { id: 3, value: { a: 'value3', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } }, expireId: null }, - c: { id: 2, value: { a: 'value2', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } }, expireId: null }, // ooo for fun - } - const source = new MockSource( - cold(Object.keys(updates).join(''), updates), - ) - - PatchDB.init({ sources: [source], http, bootstrapper }).then(pdb => { - pdb.sync$().subscribe() - expectObservable(pdb.store.watch$()).toBe('ab-', { a: updates.a.value, b: updates.b.value }) - }) - }) - }) - - it('replaces + adds', () => { - scheduler.run( ({ expectObservable, cold }) => { - const initialData: Test = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const finalStore: Test = { a: 'value1', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 }, newKey: 'newValue' } - const bootstrapper = new MockBootstrapper(0, initialData ) - const http = new MockHttp({ getSequences: [], getDump: { id: 0, value: { }, expireId: null } } ) - const updates = { - a: { id: 1, value: { a: 'value1', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } }, expireId: null }, - b: { id: 2, patch: [{ op: PatchOp.ADD, value: 'newValue', path: '/newKey' }], expireId: null}, - } - const source = new MockSource( - cold(Object.keys(updates).join(''), updates), - ) - - PatchDB.init({ sources: [source], http, bootstrapper }).then(pdb => { - pdb.sync$().subscribe() - expectObservable(pdb.store.watch$()).toBe('ab', { a: updates.a.value, b: finalStore }) - }) - }) - }) - - it('gets db dump with invalid patch', done => { - const initialData: Test = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const finalStore: Test = { a: 'value1', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 }, newKey: 'newValue' } - const bootstrapper = new MockBootstrapper(0, initialData) - const http = new MockHttp({ getSequences: [], getDump: { id: 2, value: finalStore, expireId: null } }) - const updates: UpdateReal[] = [ - { id: 1, value: { a: 'value1', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } }, expireId: null }, - { id: 2, patch: [{ op: PatchOp.REMOVE, path: '/newKey' } as RemoveOperation], expireId: null}, - ] - const source = new MockSource( - from(updates), - ) - - PatchDB.init({ sources: [source], http, bootstrapper }).then(pdb => { - let counter = 0 - pdb.store.watch$().subscribe(i => { - counter ++ - if (counter === 2) done() - }) - pdb.sync$().subscribe() - }) - }) -}) diff --git a/client/tests/seq.test.ts b/client/tests/seq.test.ts deleted file mode 100644 index 8100f33..0000000 --- a/client/tests/seq.test.ts +++ /dev/null @@ -1,195 +0,0 @@ -import { expect } from 'chai' -import { PatchOp } from '../lib/patch-db' -import { TestScheduler } from 'rxjs/testing' -import { Result, SequenceStore } from '../lib/sequence-store' -import { concatMap, map } from 'rxjs/operators' -import { Store } from '../lib/store' -import { RemoveOperation } from 'fast-json-patch' -import 'chai-string' - -type TestStore = { a: string, b: number[], c?: { [key: string]: number } } -describe('sequence store', function () { - let scheduler: TestScheduler - beforeEach(() => { - scheduler = new TestScheduler((actual, expected) => { - // console.log('actual', JSON.stringify(actual)) - // console.log('expected', JSON.stringify(expected)) - expect(actual).eql(expected) - }) - }) - - it('dumps', done => { - const initialStore: TestStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const finalStore: TestStore = { a: 'valueX', b: [0], c: { g: 10 } } - const store = new Store(initialStore) - const toTest = new SequenceStore(store, 0) - - toTest.update$({ id: 5, value: finalStore, expireId: null }).subscribe(() => { - expect(toTest.store.peek).eql(finalStore) - expect(toTest.sequence).eql(5) - done() - }) - }) - - it('ignores dump for id too low', done => { - const initialStore: TestStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const finalStore: TestStore = { a: 'valueX', b: [0], c: { g: 10 } } - const store = new Store(initialStore) - const toTest = new SequenceStore(store, 0) - - toTest.update$({ id: 5, value: finalStore, expireId: null }).pipe(concatMap(() => - toTest.update$({ id: 4, value: initialStore, expireId: null }), - )).subscribe(() => { - expect(toTest.store.peek).eql(finalStore) - expect(toTest.sequence).eql(5) - done() - }) - }) - - it('revises', done => { - const initialStore: TestStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const finalStore: TestStore = { a: 'value', b: [1, 2, 3], c: { g: 10 } } - const store = new Store(initialStore) - const toTest = new SequenceStore(store, 0) - - toTest.update$({ id: 1, patch: [{ op: PatchOp.REPLACE, value: finalStore.c, path: '/c' }], expireId: null }).subscribe(() => { - expect(toTest.store.peek).eql(finalStore) - expect(toTest.sequence).eql(1) - done() - }) - }) - - it('saves a revision when not next in line', done => { - const initialStore: TestStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const finalStore: TestStore = { a: 'value', b: [1, 2, 3], c: { g: 10 } } - const store = new Store(initialStore) - const toTest = new SequenceStore(store, 0) - - toTest.update$({ id: 2, patch: [{ op: PatchOp.REPLACE, value: finalStore.c, path: '/c' }], expireId: null }).subscribe(() => { - expect(toTest.store.peek).eql(initialStore) - expect(toTest.sequence).eql(0) - done() - }) - }) - - it('applies saved revisions when contiguous revisions become available', done => { - const initialStore: TestStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const finalStore: TestStore = { a: 'value', b: [1, 2, 3, 4], c: { g: 10 } } - const store = new Store(initialStore) - const toTest = new SequenceStore(store, 0) - - toTest.update$({ id: 2, patch: [{ op: PatchOp.REPLACE, value: finalStore.c, path: '/c' }], expireId: null }).pipe(concatMap(() => - toTest.update$({ id: 1, patch: [{ op: PatchOp.ADD, value: 4, path: '/b/-' }], expireId: null }), - )).subscribe(() => { - expect(toTest.store.peek).eql(finalStore) - expect(toTest.sequence).eql(2) - done() - }) - }) - - it('applies saved revisions when contiguous revisions become available part 2', done => { - const initialStore: TestStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const finalStore: TestStore = { a: 'value2', b: [0], c: { g: 10 } } - const store = new Store(initialStore) - const toTest = new SequenceStore(store, 0) - - toTest.update$({ id: 2, patch: [{ op: PatchOp.REPLACE, value: finalStore.c, path: '/c' }], expireId: null }).pipe(concatMap(() => - toTest.update$({ id: 1, value: { a: 'value2', b: [0], c: { d: 1, e: 2, f: 3 } }, expireId: null }), - )).subscribe(() => { - expect(toTest.store.peek).eql(finalStore) - expect(toTest.sequence).eql(2) - done() - }) - }) - - it('wipes out stashed patches when sequence is force updated', done => { - const initialStore: TestStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const finalStore: TestStore = { a: 'value2', b: [0], c: { g: 10 } } - const store = new Store(initialStore) - const toTest = new SequenceStore(store, 0) - - // patch gets stashed - expect(toTest.viewRevisions().length).eql(0) - - toTest.update$({ id: 2, patch: [{ op: PatchOp.REPLACE, value: finalStore.c, path: '/c' }], expireId: null }).pipe( - map(res => expect(res).eql(Result.STASHED) && expect(toTest.viewRevisions().length).eql(1)), - concatMap(() => toTest.update$({ id: 3, value: finalStore, expireId: null })), - map(res => expect(res).eql(Result.DUMPED) && expect(toTest.viewRevisions().length).eql(0)), - ).subscribe(() => done()) - }) - - it('emits sequence + state on updates (revisions)', () => { - scheduler.run( ({ expectObservable, cold }) => { - const initialStore: TestStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const finalStore: TestStore = { a: 'value2', b: [0], c: { g: 10 } } - - const store = new Store(initialStore) - const toTest = new SequenceStore(store, 0) - const expectedStream = 'ab' - - cold('-b').subscribe(() => { - toTest.update$({ id: 3, value: finalStore, expireId: null }).subscribe() - }) - - expectObservable(toTest.watch$().pipe( - map(cache => ({ sequence: cache.sequence, contents: cache.data})), - )).toBe(expectedStream, { - a: { sequence: 0, contents: initialStore }, - b: { sequence: 3, contents: finalStore }, - }) - }) - }) - - it('emits sequence + state on updates (patch)', () => { - scheduler.run( ({ expectObservable, cold }) => { - const initialStore: TestStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const finalStore: TestStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3, g: 4 } } - - const store = new Store(initialStore) - const toTest = new SequenceStore(store, 0) - const expectedStream = 'ab' - - cold('-b').subscribe(() => { - toTest.update$({ id: 1, patch: [{ op: PatchOp.ADD, path: '/c/g', value: 4 }], expireId: null }).subscribe() - }) - - expectObservable(toTest.watch$().pipe( - map(cache => ({ sequence: cache.sequence, contents: cache.data })), - )).toBe(expectedStream, { - a: { sequence: 0, contents: initialStore }, - b: { sequence: 1, contents: finalStore }, - }) - }) - }) - - it('errors bubble out in results', done => { - const initialStore : TestStore = { a: 'value' , b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const intermediaryStore : TestStore = { a: 'value' , b: [1, 2, 3] } - const finalStore : TestStore = { a: 'value' , b: [1, 2, 3] } - - const store = new Store(initialStore) - const toTest = new SequenceStore(store, 0) - - const patch1 = { - id: 1, - patch: [{ op: PatchOp.REMOVE, path: '/c' } as RemoveOperation], - expireId: null, - } - - const patch2 = { - id: 2, - patch: [{ op: PatchOp.ADD, value: 4, path: '/c/g' }], - expireId: null, - } - - toTest.update$(patch1).pipe( - map(res => expect(res).eql(Result.REVISED) && expect(toTest.store.peek).eql(intermediaryStore)), - concatMap(() => toTest.update$(patch2)), - ).subscribe(res => { - expect(res).eql(Result.ERROR) - expect(toTest.store.peek).eql(finalStore) - expect(toTest.sequence).eql(1) - done() - }) - }) -}) diff --git a/client/tests/store.test.ts b/client/tests/store.test.ts deleted file mode 100644 index c1032a5..0000000 --- a/client/tests/store.test.ts +++ /dev/null @@ -1,214 +0,0 @@ -import { expect } from 'chai' -import { PatchOp } from '../lib/patch-db' -import { TestScheduler } from 'rxjs/testing' -import { Store } from '../lib/store' -import { tap } from 'rxjs/operators' -import { AddOperation, RemoveOperation, ReplaceOperation } from 'fast-json-patch' -import 'chai-string' - -describe('rx store', function () { - let scheduler: TestScheduler - beforeEach(() => { - scheduler = new TestScheduler((actual, expected) => { - // console.log('actual', JSON.stringify(actual)) - // console.log('expected', JSON.stringify(expected)) - expect(actual).eql(expected) - }) - }) - - it('returns old and new store state', () => { - const initialStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const expectedFinalStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 }, newKey: 'newValue', newKey2: 'newValue2', newKey3: 'newValue3' } - const toTest = new Store(initialStore) - const add: AddOperation = { op: PatchOp.ADD, value: 'newValue', path: '/newKey' } - const add2: AddOperation = { op: PatchOp.ADD, value: 'newValue2', path: '/newKey2' } - const add3: AddOperation = { op: PatchOp.ADD, value: 'newValue3', path: '/newKey3' } - - const { oldDocument, newDocument} = toTest.applyPatchDocument([add, add2, add3]) - expect(oldDocument).eql(initialStore) - expect(newDocument).eql(expectedFinalStore) - }) - - it('adds', () => { - scheduler.run( ({ expectObservable, cold }) => { - const initialStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const expectedIntermediateStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 }, newKey: 'newValue', newKey2: 'newValue2' } - const expectedFinalStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 }, newKey: 'newValue', newKey2: 'newValue2', newKey3: 'newValue3' } - const toTest = new Store(initialStore) - const add: AddOperation = { op: PatchOp.ADD, value: 'newValue', path: '/newKey' } - const add2: AddOperation = { op: PatchOp.ADD, value: 'newValue2', path: '/newKey2' } - const add3: AddOperation = { op: PatchOp.ADD, value: 'newValue3', path: '/newKey3' } - const expectedStream = 'abc' - - cold('-bc', { b: [add, add2], c: [add3] }).subscribe(i => toTest.applyPatchDocument(i)) - expectObservable(toTest.watch$()).toBe(expectedStream, { a: initialStore, b: expectedIntermediateStore, c: expectedFinalStore }) - }) - }) - - it('adds + revises + removes', () => { - scheduler.run( ({ expectObservable, cold }) => { - const initialStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const expectedFinalStore = { a: 'value', b: [1, 2, 3], newKey: 'newValue', newKey2: 'newValue3' } - const toTest = new Store(initialStore) - const add: AddOperation = { op: PatchOp.ADD, value: 'newValue', path: '/newKey' } - const add2: AddOperation = { op: PatchOp.ADD, value: 'newValue2', path: '/newKey2' } - const revise: ReplaceOperation = { op: PatchOp.REPLACE, value: 'newValue3', path: '/newKey2' } - const remove: RemoveOperation = { op: PatchOp.REMOVE, path: '/c' } - const expectedStream = 'ab' - - cold('-b').subscribe(_ => toTest.applyPatchDocument([add, add2, revise, remove])) - expectObservable(toTest.watch$()).toBe(expectedStream, { a: initialStore, b: expectedFinalStore }) - }) - }) - - it('serializes', done => { - const initialStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const intermediaryStore = { a: 'value', b: [1, 2, 3], newKey: 'newValue', c: { d: 1, e: 2, f: 3 } } - const toTest = new Store(initialStore) - - const add: AddOperation = { op: PatchOp.ADD, value: 'newValue', path: '/newKey' } - const unAdd: RemoveOperation = { op: PatchOp.REMOVE, path: '/newKey' } - - let i = 0 - toTest.watch$().subscribe(t => { - if (i === 0) { expect(t).eql(initialStore) } - if (i === 1) { expect(t).eql(intermediaryStore) } - if (i === 2) { expect(t).eql(initialStore); done() } - i += 1 - }) - toTest.applyPatchDocument([add]) - toTest.applyPatchDocument([unAdd]) - }) - - it('doesnt apply invalid patches', done => { - const initialStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const toTest = new Store(initialStore) - - const removeValid: RemoveOperation = { op: PatchOp.REMOVE, path: '/b' } - const removeInvalid: RemoveOperation = { op: PatchOp.REMOVE, path: '/newKey' } - try { - toTest.applyPatchDocument([removeValid, removeInvalid]) - expect(true).eql('We expected an error here') - } catch (e) { - toTest.watch$().subscribe(t => { - expect(t).eql(initialStore) - done() - }) - } - }) - - it('emits undefined when key disappears', done => { - const initialStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const store = new Store(initialStore) - - const remove: RemoveOperation = { op: PatchOp.REMOVE, path: '/c' } - let counter = 0 - store.watch$('c', 'd').pipe(tap(() => counter++)).subscribe({ - next: i => { - if (counter === 1) expect(i).eql(initialStore.c.d) - if (counter === 2) expect(i).eql(undefined) - if (counter === 2) done() - }, - }) - store.applyPatchDocument([remove]) - }) - - it('when key returns, sub continues', done => { - const initialStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const store = new Store(initialStore) - - const remove: RemoveOperation = { op: PatchOp.REMOVE, path: '/c' } - const reAdd: AddOperation<{ d: number }> = { op: PatchOp.ADD, path: '/c', value: { d: 1 } } - let counter = 0 - store.watch$('c', 'd').pipe(tap(() => counter++)).subscribe({ - next: i => { - if (counter === 1) expect(i).eql(initialStore.c.d) - if (counter === 2) expect(i).eql(undefined) - if (counter === 3) expect(i).eql(reAdd.value.d) - if (counter === 3) done() - }, - }) - store.applyPatchDocument([remove]) - store.applyPatchDocument([reAdd]) - }) - - it('watches a single property', () => { - scheduler.run( ({ expectObservable, cold }) => { - const initialStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const store = new Store(initialStore) - const toTest = store.watch$('b', 1) - - const revise: ReplaceOperation = { op: PatchOp.REPLACE, value: 4, path: '/b/1' } - - const expectedStream = 'ab' - - cold('-b').subscribe(_ => store.applyPatchDocument([revise])) - expectObservable(toTest).toBe(expectedStream, { a: initialStore.b[1], b: revise.value }) - }) - }) - - it('property only emits if it is updated', () => { - scheduler.run( ({ expectObservable, cold }) => { - const initialStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const store = new Store(initialStore) - const toTest = store.watch$('b', 0) - - const revise: ReplaceOperation = { op: PatchOp.REPLACE, value: 4, path: '/b/1' } - - const expectedStream = 'a-' - - cold('-b').subscribe(_ => store.applyPatchDocument([revise])) - expectObservable(toTest).toBe(expectedStream, { a: initialStore.b[0] }) - }) - }) - - it('only does the last updates', () => { - scheduler.run( ({ expectObservable, cold }) => { - const initialStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const store = new Store(initialStore) - const toTest = store.watch$('b', 1) - - const revise1: ReplaceOperation = { op: PatchOp.REPLACE, value: 4, path: '/b/1' } - const revise2: ReplaceOperation = { op: PatchOp.REPLACE, value: 5, path: '/b/1' } - - const expectedStream = 'ab' - - cold('-b').subscribe(_ => store.applyPatchDocument([revise1, revise2])) - expectObservable(toTest).toBe(expectedStream, { a: initialStore.b[1], b: revise2.value }) - }) - }) - - it('emits multiple updates', () => { - scheduler.run( ({ expectObservable, cold }) => { - const initialStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const store = new Store(initialStore) - const toTest = store.watch$('b', 1) - - const revise1: ReplaceOperation = { op: PatchOp.REPLACE, value: 4, path: '/b/1' } - const revise2: ReplaceOperation = { op: PatchOp.REPLACE, value: 5, path: '/b/1' } - - const expectedStream = 'abc' - - cold('-bc', { b: revise1, c: revise2 }).subscribe(i => { - store.applyPatchDocument([i]) - }) - expectObservable(toTest).toBe(expectedStream, { a: initialStore.b[1], b: revise1.value, c: revise2.value}) - }) - }) - - it('does a BIG store', () => { - scheduler.run( ({ expectObservable, cold }) => { - const fatty = require('./mocks/mock-data.json') - const store = new Store(fatty) - const toTest = store.watch$('kind') - - const revise: ReplaceOperation = { op: PatchOp.REPLACE, value: 'testing', path: '/kind' } - const expectedStream = 'ab' - - cold('-b', { b: revise }).subscribe(i => { - store.applyPatchDocument([i]) - }) - expectObservable(toTest).toBe(expectedStream, { a: fatty['kind'], b: revise.value }) - }) - }) -}) diff --git a/client/tests/temp-seq.test.ts b/client/tests/temp-seq.test.ts deleted file mode 100644 index be3bfe6..0000000 --- a/client/tests/temp-seq.test.ts +++ /dev/null @@ -1,158 +0,0 @@ -import { expect } from 'chai' -import { PatchOp } from '../lib/patch-db' -import { TestScheduler } from 'rxjs/testing' -import { Result, SequenceStore } from '../lib/sequence-store' -import { concatMap, map } from 'rxjs/operators' -import { Store } from '../lib/store' -import { RemoveOperation } from 'fast-json-patch' -import 'chai-string' - -type TestStore = { a: string, b: number[], c?: { [key: string]: number } } -describe('sequence store temp functionality', function () { - let scheduler: TestScheduler - beforeEach(() => { - scheduler = new TestScheduler( (actual, expected) => { - // console.log('actual', JSON.stringify(actual)) - // console.log('expected', JSON.stringify(expected)) - expect(actual).eql(expected) - }) - }) - - it('applies a temp patch', done => { - const initialStore: TestStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const finalStore: TestStore = { a: 'value', b: [1, 2, 3], c: { g: 10 } } - - const store = new Store(initialStore) - const toTest = new SequenceStore(store, 0) - - toTest.update$({ - patch: [{ op: PatchOp.REPLACE, value: finalStore.c, path: '/c' }], - expiredBy: 'expireMe', - }).subscribe(() => { - expect(toTest.store.peek).eql(finalStore) - expect(toTest.sequence).eql(0) - done() - }) - }) - - it('applies multiple temp patches', done => { - const initialStore: TestStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const finalStore: TestStore = { a: 'value', b: [0], c: { g: 10 } } - - const store = new Store(initialStore) - const toTest = new SequenceStore(store, 0) - - const tempPatch1 = { - patch: [{ op: PatchOp.REPLACE, value: finalStore.c, path: '/c' }], - expiredBy: 'expireMe1', - } - - const tempPatch2 = { - patch: [{ op: PatchOp.REPLACE, value: finalStore.b, path: '/b' }], - expiredBy: 'expireMe2', - } - - toTest.update$(tempPatch1).pipe(concatMap(() => - toTest.update$(tempPatch2), - )).subscribe(() => { - expect(toTest.store.peek).eql(finalStore) - expect(toTest.sequence).eql(0) - done() - }) - }) - - it('expires a temp patch', done => { - const initialStore: TestStore = { a: 'value', b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const intermediaryStore: TestStore = { a: 'value', b: [1, 2, 3], c: { g: 10 } } - const finalStore: TestStore = { a: 'value', b: [0], c: { d: 1, e: 2, f: 3 } } - - const store = new Store(initialStore) - const toTest = new SequenceStore(store, 0) - - const tempPatch = { - patch: [{ op: PatchOp.REPLACE, value: intermediaryStore.c, path: '/c' }], - expiredBy: 'expireMe', - } - - const expirePatch = { - id: 1, - patch: [{ op: PatchOp.REPLACE, value: finalStore.b, path: '/b' }], - expireId: 'expireMe', - } - - toTest.update$(tempPatch).pipe( - map(() => expect(toTest.store.peek).eql(intermediaryStore)), - concatMap(() => toTest.update$(expirePatch)), - ).subscribe(() => { - expect(toTest.store.peek).eql(finalStore) - expect(toTest.sequence).eql(1) - done() - }) - }) - - it('expires a temp patch beneath a second temp patch', done => { - const initialStore : TestStore = { a: 'value' , b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const intermediaryStore : TestStore = { a: 'value' , b: [0] , c: { g: 10 } } - const finalStore : TestStore = { a: 'valueX', b: [0] , c: { d: 1, e: 2, f: 3 } } - - const store = new Store(initialStore) - const toTest = new SequenceStore(store, 0) - - const tempPatch = { - patch: [{ op: PatchOp.REPLACE, value: intermediaryStore.c, path: '/c' }], - expiredBy: 'expireMe', - } - - const tempPatch2 = { - patch: [{ op: PatchOp.REPLACE, value: intermediaryStore.b, path: '/b' }], - expiredBy: 'expireMe2', - } - - const expirePatch = { - id: 1, - patch: [{ op: PatchOp.REPLACE, value: finalStore.a, path: '/a' }], - expireId: 'expireMe', - } - - toTest.update$(tempPatch).pipe( - concatMap(() => toTest.update$(tempPatch2)), - map(() => expect(toTest.store.peek).eql(intermediaryStore)), - concatMap(() => toTest.update$(expirePatch)), - ).subscribe(() => { - expect(toTest.store.peek).eql(finalStore) - expect(toTest.sequence).eql(1) - done() - }) - }) - - it('real patches are genuinely added beneath', done => { - const initialStore : TestStore = { a: 'value' , b: [1, 2, 3], c: { d: 1, e: 2, f: 3 } } - const intermediaryStore : TestStore = { a: 'value' , b: [1, 2, 3] } - const finalStore : TestStore = { a: 'value' , b: [1, 2, 3] } - - const store = new Store(initialStore) - const toTest = new SequenceStore(store, 0) - - const tempPatch = { - patch: [{ op: PatchOp.REMOVE, path: '/c' } as RemoveOperation], - expiredBy: 'expireMe', - } - - // this patch would error if the above had been a real patch and not a temp - const realPatch = { - id: 1, - patch: [{ op: PatchOp.ADD, value: 4, path: '/c/g' }], - expireId: null, - } - - toTest.update$(tempPatch).pipe( - map(res => expect(res).eql(Result.TEMP) && expect(toTest.store.peek).eql(intermediaryStore)), - concatMap(() => toTest.update$(realPatch)), - ).subscribe(res => { - expect(res).eql(Result.REVISED) - expect(toTest.store.peek).eql(finalStore) - expect(toTest.sequence).eql(1) - done() - }) - }) -})