This page is a gemerald
This page's topic is a sharty-saving gemerald

GET

From Soyjak Wiki, the free ensoyclopedia
(Redirected from Get)
Jump to navigationJump to search
OH MY JAPANESE CULTURE!!!! THIS IS JUST LIKE MY TRANIME GREENTEXT VIDEOS!!!!!!
FUCK WOJACKSPAMMERS BTW I <3 LESBIAN HENTAI OF TWO DUDES
DESU DESU DESU DESU DESU DESU SUDE
Out of the coal came forth sweetness.
GETs and the heists performed to steal them are gemeralds.
>Check these dubs!

A GET[a] is a post that features an uncommon pattern of repeating digits in its ID; usually a sign that the poster has been blessed by the ID Gods.[1]

Notable GETs include posts where the ID is a single, repeating digit, and powers of ten. Sequential GETs, such as 1234, 12345, 123456, 1234567, etc. are also worth looking out for.

Use the https://getwatcher.net/ website to see when the next GET is coming. DO notify the Party about it if it's close enough to start a heist operation. If you see any board that's less than 100 posts away from its next GET, then notify the Sharty IMMEDIATELY.

Types of GET[2][edit | edit source]

X denotes identical digits present in a post number. The more repeating digits, the more significant the GET is considered. There is also the factor when you can't get any higher GET, so it is considered valuable. For example trips are very worthy if the last post on a board is below 1000, but not anymore if the post count goes above 1000.

Sequence Name
XX Dubs
XXX Trips
XXXX Quads
XXXXX Quints
XXXXXX Hexes
XXXXXXX Septs
XXXXXXXX Octs
XXXXXXXXX Nints
XXXXXXXXXX Decs

there are also "special gets" , otherwise boring post numbers turned into gems by the KHAN himself (or one of the jannies)

Natural vs Artificial GETs[edit | edit source]

A natural GET is a GET that is obtained accidentally, without the poster being aware that their post was likely to be a GET. By contrast, an artificial GET (also known as a scripted GET) is a GET that was obtained on purpose by way of the poster carefully timing when they post in order to increase their chances of obtaining a GET. While it is often impossible to tell for certain whether a GET is natural or artificial, a surefire way to identify an artificial GET post is if it references GETs and/or the digits it expects to have. GETs are more likely to be identified as natural if their content is informal and they look to be unscripted and unexpecting of receiving much attention.

Saging for post count manipulation

Sometimes, when a major GET is approaching, some Anons sage posts far back in the catalog in order to subtly raise the post count, hampering users' ability to monitor the current post number. This method can be used either to procure an artificial GET, or to prevent other users from doing so, thereby increasing the likelihood of an oblivious user's unplanned post obtaining the coveted digits.

This method does not reliably work if the board's catalog has a sorting option that shows posts based on when they were last replied to instead of when they were bumped, which can render this tactic meaningless. It will still throw off GET seekers that sort by bump order and not last reply, though.

Scripts[edit | edit source]

You can use this script, along with 4chan X, to script any GET you wish:

TODO: Someone explain how to use this script; I'm too retarded to understand it
Extended content
// ==UserScript==
// @name 4chan GETter
// @description Script to help you get repeating digits. Loosely based on mGET. Requires 4chan X.
// @author Xyl
// @match *://*.4chan.org/*
// @match *://*.4channel.org/*
// @grant GM_xmlhttpRequest
// @connect sys.4chan.org
// @version 1.2.1
// @namespace https://xyllon.com
// ==/UserScript==

let latestPostNumber = -1;
const board = location.pathname.match(/\/[^\/]+\//)[0];
let games = (board == "/v/" || board == "/vg/" || board == "/vr/");

if (document.getElementById("qr")) inject();
document.addEventListener('QRDialogCreation', (e) => inject());

function inject() {
    let dubs = (games) ? "" : "<option value=\"dubs\">Dubs</option>";
    document.querySelector('#qr .move').insertAdjacentHTML("afterend", `
    <div class="getscript" style="padding-bottom: 5px; padding-left: 5px;">Last Post #<span id="postnumber" style="visibility: hidden"></span>
    <div style="float: right; margin-right: 15px;">
    <input type="number" name="offset" value="1" style="margin-right: -3px; width: 5ch; height: 16px; padding: 0px !important; -moz-appearance:textfield;" id="offset" title="When to post (a value of 1 with a target post of 99 will post at 98, a value of 2 will post at 97, etc.)">
    <select data-name="digits" id="digits" title="Select the numbers you want">
    <option value="none">Select GET</option>` + dubs + `
    <option value="trips">Trips</option>
    <option value="quads">Quads</option>
    <option value="quints">Quints</option>
    <option value="sexts">Sexts</option>
    <option value="septs">Septs</option>
    <option value="octs">Octs</option>
    <option value="nons">Nons</option>
    <option value="decs">Decs</option>
    </select></div></div>`);
    approxLatestPostNumber();
}

function checkForGET () {
    window.target = latestPostNumber + parseInt(document.getElementById('offset').value);
    switch(document.getElementById("digits").value) {
        case "":
            break;
        case "dubs":
            return /(\d)\1{1,}$/.test(target);
            break;
        case "trips":
            return /(\d)\1{2,}$/.test(target);
            break;
        case "quads":
            return /(\d)\1{3,}$/.test(target);
            break;
        case "quints":
            return /(\d)\1{4,}$/.test(target);
            break;
        case "sexts":
            return /(\d)\1{5,}$/.test(target);
            break;
        case "septs":
            return /(\d)\1{6,}$/.test(target);
            break;
        case "octs":
            return /(\d)\1{7,}$/.test(target);
            break;
        case "nons":
            return /(\d)\1{8,}$/.test(target);
            break;
        case "decs":
            return /(\d)\1{9,}$/.test(target);
            break;
    }
}

function approxLatestPostNumber() {
    fetch("https://a.4cdn.org" + board + "1.json").then(response => response.json()).then(json => {
        let threadFound = false;
        let thread = 0;
        while (!threadFound) {
            if (json.threads[thread].posts[0].closed == 1 || json.threads[thread].posts[0].sticky == 1) thread++;
            else threadFound = true;
        }
        latestPostNumber = json.threads[thread].posts.slice(-1)[0].no;
        document.getElementById("postnumber").textContent = latestPostNumber;
updatePostNumber();
    });
}

function updatePostNumber() {
    GM_xmlhttpRequest({
        url: ("https://sys.4chan.org" + board + "imgboard.php?res=" + (latestPostNumber + 1)),
        method: "HEAD",
        onload: response => {
if (response.status == 200) {
latestPostNumber++;
} else if (games && /(([1-9])\2|[^0]0{2,2})$/.test(latestPostNumber + 1)) {
if (/[^9]99$/.test(latestPostNumber + 1)) latestPostNumber += 2;
else latestPostNumber++;
}
if (checkForGET()) {
document.querySelector("#file-n-submit input:last-child").click();
document.getElementById("digits").value = "none";
}
document.getElementById("postnumber").style.visibility = "visible";
document.getElementById("postnumber").textContent = latestPostNumber;
updatePostNumber();
        }
    });
}

GETs on the Sharty[edit | edit source]

See: GET/soyjak.party

GETs on 4chan[edit | edit source]

See also: Raids

OH MY JAPANESE CULTURE!!!! THIS IS JUST LIKE MY TRANIME GREENTEXT VIDEOS!!!!!!
FUCK WOJACKSPAMMERS BTW I <3 LESBIAN HENTAI OF TWO DUDES
DESU DESU DESU DESU DESU DESU SUDE

Site-wide leaderboards[edit | edit source]

Rank Board GET # Significance PPM[b]
#1 /b/ 911111111 Octs ~114.57
#2 /co/ 133333333 Octs ~44.45
#3 /g/ 88888888 Octs ~42.45
#4 /lgbt/ 33333333 Octs ~32.79
#5 /jp/ 44444444 Octs ~20.13
#6 /k/ 55555555 Octs ~19.59
#7 /vp/ 55555555 Octs 15.40[3]
#8 /gif/ 22222222 Octs ~13.86
#9 /lit/ 22222222 Octs ~10.39
#10 [s4s] 11111111 Octs ~4.60

The above leaderboard tracks the most prestigious 4cuck GETs stolen by the Sharty based on GET significance (sexts, septs, octs, etc.) and the board's estimated (or actual) posts per minute (PPM) when the GET was obtained. For example, an octuple-GET will always outrank a septuple-GET due to the former's inherent significance and rarity. However, an octuple-GET obtained on a fast board (like /b/) is more valuable than an octuple-GET obtained on a slow board (like /po/) due to the former's PPM being higher, meaning a greater level of precision, coordination, and luck is required to successfully steal it.

To calculate a board's estimated PPM during an octuple-GET,[c] obtain the board in question's post/min and % Activity Now values from 4stats.io. Divide the posts per minute value by the % Activity Now value to obtain the board's daily PPM peak (eg.: 3.5 PPM ÷ 85% = 4.11764705882), then multiply the product by 2.62 and round your answer to the nearest hundredth (eg. 4.11764705882 × 2.62 = 10.79) to obtain the estimated GET PPM.

Note that these rankings are based solely on quantitative metrics, rather than qualitative metrics. One could argue that the simultaneous 29999999 & 30000000 GETs stolen from /lgbt/ hold more cultural significance to the Soy Community at large than the ten GETs listed above put together due to the role /tttt/ played in Operation Clean Stable. However, cultural significance is not taken into account when determining a GET's leaderboard ranking - only its rarity and difficulty.

/3/[edit | edit source]

999999 GET[4][edit | edit source]

The GET was a 3D image of Cobson

1000000 GET[5][edit | edit source]

/aco/[edit | edit source]

6666666 GET[6][edit | edit source]

'son thread

7999999 GET[edit | edit source]

/a/[edit | edit source]

266666666 GET[7][edit | edit source]

pepe won

The 266666666 GET on the tranime board /a/ was a NAS frog.

/an/[edit | edit source]

4999999 GET[8][edit | edit source]

cobson won

Post no. 4999999 was obtained June 9, 2025, right after the /lgbt/ 39999999 GET was stolen.

/b/[edit | edit source]

911111111 GET[9][10][edit | edit source]

This page is a gemerald.
'Sharty won /b/fags lost

This was a very turbulent GET. This GET is especially notable due to having the highest board PPM during the GET attempt, at 114.5 posts per minute, or one post every 0.523Ϫ seconds.

The calling thread suffered multiple derail attempts, and then the entire site was hit by some faggot with a bot and multiple proxies. Nevertheless, it was still a victory. Not even some terminally obsessed script-throttling tranny can stop the Party.

/bant/[edit | edit source]

14000000 GET[11][edit | edit source]

.

16666666 GET[12][edit | edit source]

he won

18999999 and 19000000 GETs[13][14][edit | edit source]

HWAW, WEABS LOST

The 18999999 and 19000000 GET was taken by a Nate themed Flartson alongside a hanging troonjak of Cirno.

23000000 GET[15][edit | edit source]

dead board

/biz/[edit | edit source]

56000000[16] GET[edit | edit source]

'ABY 'OT 'IN

/co/[edit | edit source]

133333333 GET[17][edit | edit source]

>Family guy

GET 133333333 was a dancing cobson GET

139999999[18] GET[edit | edit source]

ZWABAG(Zellig Will Always Be A Gem)

A major 'zellig GET on 'zellig thread and 'zellig day[d]

/ck/[edit | edit source]

18999999[19] and 19000000[20] GETs[edit | edit source]

These GETs were allegedly taken by the Moroccan, who cited prior posts on /bant/ with the same filename and MD5 hash as the two images used in the GETs as proof.[21]

Big mac
>Drinking soda

/diy/[edit | edit source]

2888888 GET[22][edit | edit source]

HWABAG

/fit/[edit | edit source]

70000000 (maybe)[edit | edit source]

get incoming
Claim
Proof

71000000 (maybe)[edit | edit source]

Claim
Literally built for bbc

71999999[23] and 72000000[24] GETs[edit | edit source]

Both GETs were a babybot GET. They were both deleted a few hours later.

green sweltering clear-cut terribly quicker shakily coaxingly height love throat earthquake cicada progress interpret reply bat settle blind suck
eager sticky weasel dryer prescribe beam last

72999999[25] and 73000000[26] GETs[edit | edit source]

"a chud killed himself today"
"How to deal with lactose intolerance?"

73999999 GET[edit | edit source]

A 'teen was looking to bulk up and happened upon a GET

How do i get this build doe?

/g/[edit | edit source]

88888888 GET[27][edit | edit source]

Give me 1(one) reason why I should leave Windows 7

89000000 GET[28][edit | edit source]

/qa/ won, loiussss lost

91000000 GET[29][edit | edit source]

baby

94444444 GET[edit | edit source]

just use a random copper wire with electrical tape. you wont hear any difference in audio quality anyway

Despite being stolen accidentally by a soyteen, post n°94444444 was a decisive Sharty IAS win. Unlike most soyteen GETs on 4chan, this one was well-received by /g/ natives, and the first GET to feature a HWABAB cat variant of Cobson (He Will Always Be A Bed).[30]

95555555 GET[31][edit | edit source]

another babybot win

96999999 and 97000000[32][33] GET[edit | edit source]

Vaush 'pasta get

Flartbot GET, along with a pro-Apple 'pasta to piss off winbabies and linuxtroons.

99666666 GET[edit | edit source]

Linux lost

/gif/[edit | edit source]

22222222 GET[34][edit | edit source]

YLYL
cartoon bald men with beards edition

24999999[35] and 25000000[36] GETs[edit | edit source]

Gemmy spadeson post
im a selfish little fuck

25999999[37] and 26000000[38] GETs[edit | edit source]

GET 25999999 was "baby bot won", and GET 26000000 was soot shaking his ass. Both of them were posted in a tranny thread.[39]

baby bot won and soot ass

29000000[40] GET[edit | edit source]

GET 29000000 was stolen by Bootists

BOOT FUCKING WON

/hc/[edit | edit source]

2222222 GET[41][edit | edit source]

>Requests for the source of an image, the name of a girl, or more images from a set go on /r/. >>>>/r/ >Failure to do so will result in bans. >OP must post at least 6 images of their own to start a thread, or else it will be deleted without warning. gemmy hardcore image though

The >>>/hc/ get was stolen on October 5, 2022. Unlike most GETs, the coomers were too focused on masturbating to notice that their get was stolen.

/ic/[edit | edit source]

7000000 GET[42][edit | edit source]

How do I get better at drawing black and white characters with glasses?

This one Janny erased fast (geg).

/jp/[edit | edit source]

>My wife Chino has red hair though.

37999999[43] and 38000000[44] GETs[edit | edit source]

/qa/ זכה (Translation: /qa/ won)
OH NO BASEDJAK WHAT ARE YOU DOING?!

38999999[45] and 39000000[46] GETs[edit | edit source]

plier
/qa/ won.

44444444 GET[47][edit | edit source]

sympathetic huge elderly utilized blindly cactus forest ice shoulder bandana waste needle comb print practice slip fold tremble

This one claimed by Baby bot

47000000 and 46999999 GET[edit | edit source]

estatic another identical quintessental stormy limited internal unaturally crop dentist bean roast

June/3/2024, TWO get's are claimed.

48000000 GET[48][edit | edit source]

COBSON GET

/k/[edit | edit source]

55555555 GET[49][edit | edit source]

gun chuds lost, david koeresh lost, randy weaver lost, ruby riege was justified, arrest kyle rittenhouse, ban AR's, atf won, democrats won

57000000 GET[50][edit | edit source]

gun chuds lost, david koeresh lost, randy weaver lost, ruby riege was justified, arrest kyle rittenhouse, ban AR's, atf won, democrats won

58000000 GET[51][edit | edit source]

russia won pigkrainians lost

59999999[52] & 60000000[53] GET[edit | edit source]

flartbot

Despite being an artificial get it still caused a meltdown among 4cucks who thought that 'eens came form /pol/ and started accusing 'teens of being pro-Russian shills.[54][55] One of them even started spamming anti-Russian gore in the thread and on the 'log.[56]

/lgbt/[edit | edit source]

25000000 GET[57][edit | edit source]

This page is a gemerald.

29999999 & 30000000 GET[edit | edit source]

(THIS PAGE OR SECTION CONTAINS ONE OR MORE IP ADDRESSES. THEY MIGHT EXPIRE LATER)
This page is a gemerald.
WE ARE THE CHAMPIONS!
The 29999999 GET on /lgbt/

The 29999999 & 30000000 GET on /lgbt/ were decisive Sharty wins.[58]

The 30000000 GET consisted of a picture of a rock with a soyjak face on it, with the accompanying text 'Out of the coal came forth sweetness.'

'The 29999999 GET was cracker cow, the counterpart to nigger cow. The jannies seethed so much that they deleted the GETs before the archive could even save them, which would have meant deleting them less than 10s after they were posted. They went so far as to ban natives who made the mistake of asking what the get was.

The Sharty erupted into celebration, and both the get thread and the catalog began to play the song "We Are The Champions".[58] The mood on the website was absolutely ecstatic, arguably only beaten by that of the /s4s/ get.

The raid thread later got mysteriously deleted and removed the archives. A mod later stated that it was due to a bug with the archiver as well as the thread being accidentally deleted.[59]

33000000 GET[60][edit | edit source]

The 33000000 GET was stolen by a bot similar to Baby bot that spammed Flartsons.

33333333 GET[61][62][edit | edit source]

The 33333333 was stolen by Baby bot.

34000000 GET[63][edit | edit source]

/qa/ won

Gem on Christmas eve.

36999999 GET[64][edit | edit source]

Post no. 36999999 was obtained on July 23, 2024[65]

TRANNY NIGGER LOST

38999999 GET[66][edit | edit source]

Post no. 38999999 was obtained on February 22, 2025. We could’ve had 39000000 too, but around 1100 posts prior some humongous faggot made a thread alerting the jannies of our plans, likely skewing the outcome of the posts as a result.

troons lost cobson won

39999999 GET[67][edit | edit source]

Post no. 39999999 was obtained on June 9, 2025 by a cacaborean, even doe the goal was 40000000 and the Sharty lost to glegle[68]

hail caca, protect baby

41000000 GET[69][edit | edit source]

Post no. 41000000 was obtained on September 10, 2025 by Scholar, and was swiftly nuked by the jannies.

poop

/lit/[edit | edit source]

22222222 GET[70][edit | edit source]

Stop NEETing it out and interact with people, incel chud

While 'teens agreed that this Bernkastel GET was coal, it was secured by a Sharty poster nonetheless.[71]

/news/[edit | edit source]

1222222 GET[72][edit | edit source]

breaking news all niggers are dead
get brought to you by https://soyjaks.party

1234567[73][74] GET[edit | edit source]

Spic worshipping frog clittycel's failed attempt at taking the get
Frognigger BTFOd in this slowburn fight for /news/'s 1234567 GET

/p/[edit | edit source]

3999999[75], 4000000[76] GETs[edit | edit source]

This get is ID'd.
This is nut

4444444 GET[77][edit | edit source]

/pol/[edit | edit source]

438888888 GET[edit | edit source]

/pol/ saving GET[78]

/qa/ won/

453333333 GET[edit | edit source]

TND victory[79]

kill niggers TND

how blacksissies will recover from this one?

/pw/[edit | edit source]

4000000 GET[80][edit | edit source]

>>Tripple A >>lucha libre >>high flying >>trios

/r9k/[edit | edit source]

68000000 GET[81][edit | edit source]

>I'M SO FUCKING BLACKPILLED BRO >WOW THIS RYAN GOSLING MOVIE IS LITERALLY FUCKING MEO >DUDE YOU GOTTA READ UP ON GNOSTICISM, IT'S LIKE CHRISTIANITY BUT BASED AND BLACKPILLED LIKE MEO >UM, YOU WASH YOUR HANDS SOMETIMES? GTFO NORMALFAGO >UM, JUST WORLD FALLACY MUCH?O >*stubs toe* FUCKING BLACKPILLED AGAIN!

69000000 GET[82][edit | edit source]

The r9k 69000000 GET was NAS, but a /qa/ joke nonetheless.

Honestly I don't even want it

72999999[83] and 73000000[84] GETs[edit | edit source]

'umo un the lon
It's simple, just uhhh.... stop being depressed bro

74000000 GET[85][edit | edit source]

SHARYT WIN 1

75000000 GET[86][edit | edit source]

>we need to circumcice the McDonald's burger or something

76000000 GET[87][edit | edit source]

This GET smell like cheese ~ iaaacgtm
But no party that targets the real causes of G*ldsons' subhuman decline? Why do G*ldsons hate missed threads and Barney? Without cheese G*ldsons will die out in a century and will be replaced by missed threads anyway. More G*ldson subhumans die from sniffism (also traffic accidents related to this), G*ldson on G*ldson violence, homosexuality (jannies, trannies and moddies suicide much more than heteros + they bear no (you)s), drugs (G*ldsons have drug epidemics that are worse than the afghan feet sniffer epidemic) Since L*ebaiters are dying out and getting confused, the government has to fix this or the economies of the G*ldson boards would collapse. G*ldson boards have been paying people welfare and child money in hopes of them breeding (since 2013) but they spend it on alcohol and drugs and keep the crisis going. People on welfare would rather buy ponies and pay half of their welfare on pony foo,d ROFL. So /qa/ fixes it by taking offboarders + L*ebaiters instead, in an attempt to preserve the G*ldson population. Every single board that took refugees has benefited from it economicaIIy apart from boards that were aIready third world. That's because of the G*ldsons' Marge-hoarding culture but I am not gonna get into that in this thread.

Leebait win

[s4s][edit | edit source]

10000000 GET[88][edit | edit source]

The 10m [s4s] GET is the gem that saved the Party!

Main article: Swaglord

As retaliation for the deletion of /qa/, soyteens stole the largest /s4s/ GET ever. This prompted arch-janny, Swaglord, (who had attempted to automate the GET but ended up with Post number 10000001 instead), to seethe big time. Dozens of /s4s/ natives were banned in a fit of impotent rage as a side effect. This GET was perhaps the most impactful in party history, being of a highly desirable number on a relatively popular board, and leading to the normalization of Cobson in soyjak culture.

10999999 GET[89][edit | edit source]

The 10999999 GET of /s4s/ was "gemmy" in response to a failed GET featuring Cobson and the iconic song Cobbo by 6ixϪhrembo that was also used in the 10000000 GET in the same board.

indirect cob win

11000000 GET[90][edit | edit source]

babybot win

11111111 GET[edit | edit source]

babybot win

There's no archive because a janny seethed and deleted it in seconds before any archive could save it.

11200000 GET[91][edit | edit source]

gemmy get doe
FROOOOOOOOOOOOOOOOOT PUT /plier/ IN THE HEADER

a neutralposter got the get, amazing isn't?

12000000 GET[92][edit | edit source]

/soc/[edit | edit source]

This GET smell like cheese ~ ac

31999999[93] and 32000000[94] GETs[edit | edit source]

females of soc, what kind of vibe do I give off?
Rate me?

The 31999999 and 32000000 GETs on /soc/ were stolen by pictures of Lee Goldson and Kuz, respectively.[95] Note that the start of the user ID for post 31999999 was QA, proving that /qa/ won once again.

/t/[edit | edit source]

1111111 GET[edit | edit source]

>piracy... le BAD!!

On February 5, 2022, a soyteen scored the first and so far only septs in the history of /t/.[96] Unlike most soyteen GETs on 4chan, post number n°1111111 was well-received by /t/ natives.

/tg/[edit | edit source]

niggas coally though




soi




/trash/[edit | edit source]

53999999 GET[97][edit | edit source]

Almost a soylady and 'zellig W

Whatever this thing is!!!

57000000 GET[98][edit | edit source]

Whatever this thing is

If >>57000000 or >>56999999 are cirno'd, IAS, or pic rel then the mods must unironically unlock /qa/

58999999 GET[99][edit | edit source]

i dont get it

59000000 GET[100][edit | edit source]

"Sharty and /dbs/ win"

67000000 GET [101][edit | edit source]

"mark"

An AI animated GIF of pepe the frog talking, the GIF from which this video originates from was created on the Sharty, thus making it a Sharty win.[102]

/m/[edit | edit source]

21999999 GET [103][edit | edit source]

HWABAG

cobson egg win

22000000 GET [104][edit | edit source]

babybot win

23000000 GET [105][edit | edit source]

idk mane

/v/[edit | edit source]

/v/ has GETs that don't end in 0 disabled entirely due to a history of autists sperging out over GETs. posts that would end in dubs (and thus any trips, quads, quints, etc) will get their post ID raised by 1 so it's not a GET; if you don't believe me, try making a reply double arrow to a post ending in dubs (you'll have to manually input the post ID) and you'll notice that there was never a post with that ID because it was skipped 700000000 was a failget. We all lost.

/vmg/[edit | edit source]

888888 GET[106][edit | edit source]

piggy board

999999 GET[107][edit | edit source]

piggy board

1111111 GET[108][edit | edit source]

==soooooty==

/vm/[edit | edit source]

777777 GET.[109][110][111][edit | edit source]

Two hours later teens also tried to get the 53000000 GET from /trash/ yet this was taken by a cirnofag.

Common Cobson W

1000000 GET[edit | edit source]

>>999880 and earn money very slowly... without the blue bonuses you suffer

1111111 GET[edit | edit source]

Anyone wanna play gmod

/vp/[edit | edit source]

53000000 GET[112][edit | edit source]

BWC gem, a Sharty win.

I LOVE GRASS TYPE POKEMON

55444444 GET[113][edit | edit source]

Thanks to Shaun the Vorefag chimping out at just the right time, the post numbers were shifted just enough for a Soyteen to post a leaked quote from the jannycord.

The person who organized the GET heist would later set his sights higher and claim the next GET, which brings us to…

Initially, the archive link to the GET wasn’t linkable on the ‘ki due to some tranny posting ‘p out of rage after the archive link was shared on /soy/, which due to how arch.b4k.dev works caused the post to be mirrored on the archive until a archb4k janny cleaned it up and nuked the image from their servers. Fucking /vp/edophiles.

The person who organized the GET heist would later set his sights higher and claim the next GET, which brings us to…

55555555 GET[114][edit | edit source]

Just after midnight on March 8, 2024, an ambitious soyteen raid leader & major contributor to the /vp/ trolling tactics article makes a thread on /soy/[115] with the intent to steal the upcoming 55555555 octs to claim it for the Sharty and as an early birthday present for himself, and out of spite for the board after witnessing /vp/‘s descent into Niggerhell after over 2 and a half years of using that dumpster fire.

After approximately 2 and a half hours of slowburning with ‘teens making normal looking posts to bumo up the board’s post count until 2:42 AM, the GET was secured by a scriptGOD claiming it for the Rape New World Order.

One of the other contenders for the GET were images of a sneed hat-wearing shiny sandshrew saying “Musk won, /soy/ won, HWABAG”, chosen specifically by the raid organizer to piss off tripfags while showing off his favorite pokemon; which the GET heist thread even being named “Operation Pholidote” after the taxonomical order of the animal Sandshrew is based on.

Even though the GET wasn’t claimed with the hand-crafted, soyentifically honed tripfag-enraging gem due to a timing error & captcha issues, the scriptGODs<note>at least 2, according to a steam chat window</note> of the Rape New World Order were able to secure the GET.

GOTTA RAPE EM ALL

Surprisingly, the natives’ reception of the GET was primarily positive and it even convinced at least a few locals to join the Sharty’s side. As usual, there were some /vp/edos complaining, including some jartycuck/tranny/furfag/whatever who posted NSFW ponyshit to try and corrupt the thread. It didn’t work. At least it wasn’t ‘p this time.

/vrpg/[edit | edit source]

3333333 GET[116][edit | edit source]

really nigga?
>turn-based rpgs still exist in 2023 really nigga?

/vst/[edit | edit source]

999999[117] and 1000000[118] GETs[edit | edit source]

'>basedhammer'
>basedhammer

/vt/[edit | edit source]

41000000 GET[119][edit | edit source]

swedish win

47277777 GET[120][edit | edit source]

>just mock them and enjoy while we jack off to a landwhale using a 10 year old as a avatar didnt know cognitive dissonance this strong was achievable natty

56000000 GET[121][edit | edit source]

/qa/ won /lgbt/ lost

60000000 GET[122][edit | edit source]

This get was negatively received because of the babybot parallels and its use of "flartson" which is generally considered forced NAS.

65000000 GET[123][edit | edit source]

soot

74999999 GET[edit | edit source]

Purple Jak

88000000 GET[124][edit | edit source]

98999999 and 99000000 GETs[edit | edit source]

feral win[125]
He spent 1 hour trying to learn lesotho[126]

Both GETs were stolen on April 8, 2025.[127]

/wsg/[edit | edit source]

5555555 GET[edit | edit source]

/plier/GOD GET

5999999[128] and 6000000 GETs[129][edit | edit source]

she won btw

/x/[edit | edit source]

30999999[130] and 31000000[131] GETs[edit | edit source]

'Science'
Science

34999999[132] and 35000000[133] GETs[edit | edit source]

LOL ONIONS

37000000 GET[edit | edit source]

Non-babybot baby get

41000000 GET[134][edit | edit source]

caca

/y/[edit | edit source]

3000000 GET[135][136][137][edit | edit source]

Additional GET picture plus replies of soy'eens
basedjak.party won

/e/[edit | edit source]

3000000 GET[138][edit | edit source]

GETs on Other Imageboards[edit | edit source]

Mintboard[edit | edit source]

/bone/[edit | edit source]

777777 GET[edit | edit source]

The GET Nº777777 (GET of luck) was stolen by a mobilechad after posting a hillbilly impjak gem on /bone/, this caused so much malding amongst their tranjans that they deleted the GET and banned the mobilechad shortly after.

800000 GET[edit | edit source]

The 'unker[edit | edit source]

4000 GET[edit | edit source]
I made those images of soylita with a huge ass and made that one gif of a bbc entering soylitas tight asshole, I also made the chloe thread


4000 GET was obtained in a confession thread by soylita poster.[139]

5000 GET[edit | edit source]
get for him


5000 GET prophecized the appearance of Admin Ϫ and thus considered a massive morale-boosting gem for the scattered soymmunity.[140]

7000 GET[edit | edit source]
The coal that is killing /soy/


7000 GET was obtained by a teen voicing his dissatisfaction with SoySuba coal assumed by many to be the coal that is killing /soy/.

8000 GET[edit | edit source]
ban pony coal NOW!


8000 GET was obtained by someone railing for pony ban.

9000 GET[edit | edit source]
It's a hash code


9000 GET was a reply to a teen who was asking what a tripcode is.

10000 GET[edit | edit source]
Shrek won


10000 GET was a gemmy reference to Shrekchan, a dead "ironic" altchan that was compared to Sharty by some oldfags(It is also having creepypastas too). The GET received a custom message from Angeleno.[141]

11111 GET[edit | edit source]
this


The first quints of the 'unker got obtained by a teen agreeing with a frogposter proclaiming jihad against Red.[142]

12345 GET[edit | edit source]
'Why does everyone hate us?

The 12345th get on the 'unker was by someone asking why everyone hates jakkers.

20000 GET[edit | edit source]

???

Marzichan[edit | edit source]

/plaza/[edit | edit source]

500 GET[edit | edit source]
The gem that BTFO'd all homestuck troons

Endchan[edit | edit source]

/dota/[edit | edit source]

33333 GET[edit | edit source]
COOOOOOOOB GAAAAAAAANG
69999 and 70000 GETs[143][edit | edit source]
Sharty won /qa/ won

/kanojo/[edit | edit source]

77777 GET

HWABAG






/pone/[edit | edit source]

9999 and 10000 GETs

A good amount soyteens really like nu metal.

/genshin/[edit | edit source]

10000 GET[edit | edit source]
I don't mind the sun sometimes The images it shows

19999 and 20000 GETs

Double GET win.

Youre Goyslop!!
/agatha2/[edit | edit source]

59999, 60000, 60001 are all stolen by 'swinny members.

59999 and 60001 are stolen also.
ROOT's congratulation message.
'pesta comes supreme in taking over the 60000 GET on Endchan after a swinny raid. ROOT gives congratulations.

/hisrol/[edit | edit source]

11111 GET[edit | edit source]
Ohio W

/rus/[edit | edit source]

44444 GET[edit | edit source]
QA FUCKING WON

/rapport/[edit | edit source]

60000 GET[edit | edit source]

image to be added

Lainchan[edit | edit source]

KEEP IN MIND: LAINTRANNY JANITORS ARE KNOWN FOR SEETHING TO THE EXTREME EVERY TIME SOMEONE STEALS A GET FROM THEIR EXTREMELY DEAD IMAGEBOARD. TAKE HEED.

/hum/[edit | edit source]

66666 GET[edit | edit source]
niggerglitterboy coon spook spicniggerglitterboy coon spook spicniggerglitterboy coon spook spic...


The GET was later edited by the admin, who proceeded to add custom warning messages to every soy post in the thread.[144]

Skibidigods won
80000 GET And 79999 GET[edit | edit source]
Skibidigods won

/music/[edit | edit source]

11111[edit | edit source]
Heil Sooty soot. Heil sooty soot.

Out of pure seethe, jannies immediately locked not only the board, but the whole site.[it just is, ok?]

12345[edit | edit source]
Post soyboy woahjack music videos ITT

This GET also accounted for the weird /culture/ board which is an overboard of sorts

/q/[edit | edit source]

12345[edit | edit source]
SHARTY WIN.

Shartyteen snitching Shemmy confirmed.

/sec/[edit | edit source]

22222[edit | edit source]
ababa

The get was stolen by a babyGOD flooding multiple threads with excerpts from the Wikipedia page for breast milk and baby images.[145] The site was then rolled back because of "soyjak spammers".[146]

/vis/[edit | edit source]

12345[edit | edit source]
cat gore

The 12345 GET on /vis/ was stolen by Snarky Snappy on April 5, 2025. Foodists tried to steal the GET with cat gore while falseflagging as us but failed miserably, the GET was a Cobson, proving he will always be a gem.[147]

/technology/[edit | edit source]

Yeeeeep, we all won together, epic lainchan lose yet again, all your gets are belong to us

June/2/2024, yet another Lainchan buck BROKEN.

/lit/[edit | edit source]

Despite his incorrect opinion on the idea of a Skibidi Toilet book, it's ANOTHER Sharty WIN!

8kun[edit | edit source]

/biz/[edit | edit source]

7000 GET[148][edit | edit source]

/f1/[edit | edit source]

66666 GET[edit | edit source]
Gem

/hypno/[edit | edit source]

90000 GET[149][edit | edit source]

/tingles/[edit | edit source]

30000 GET[edit | edit source]

The OP's linked image depicted a soyjak drooling whilst listening to ASMR, referring to the board topic. Due to board restrictions, the GET was accompanied not by an image, but by a YouTube embed: (Soyjak Baby Photos (Wholesome) from SoyTube.

Error creating thumbnail: File missing
this is how you niggas be looking like
SoyGOD W
(this shitty site WILL not let me embed images)

Crystal Cafe[edit | edit source]

/b/[edit | edit source]

222222 GET[edit | edit source]
SoyGOD W

/feels/[edit | edit source]

99999 and 100000[150] GETs[edit | edit source]

The Sharty fought over and claimed two GETs that 'fe girls were entirely oblivious to. Baby stole the 99999 GET and was allegedly responsible for an impressive stealth Cacarald leading up to the GET. One post later, a certified platinum GODson victory swept the femcel community off their feet. This post echoed the iconic /s4s/ 10 Million Cobson GET.

CACA
im play with my legose
Niggers coaly tho, cobson got the gemmy tho

/media/[edit | edit source]

30000 GET[151][edit | edit source]
Total Glurple Victory, ladies, the mighty Sharty passes you the salute

Leftypol[edit | edit source]

/siberia/[edit | edit source]

666666 GET[edit | edit source]
ESL gem that made tranitors seethe
trany award o algo

/anime/[edit | edit source]

20000 GET[edit | edit source]
Gem

/hobby/[edit | edit source]

33333 GET[edit | edit source]
Is soy coal

/tech/[edit | edit source]

20000 GET[edit | edit source]
/tech/ 20000
TND
22222 GET[edit | edit source]
dbdbbxxbbxxh

Swedish Win

/edu/[edit | edit source]

20000 GET[edit | edit source]
SOYJAK PARTY WON, HAIL THE REICHSFUHRER, 14/88, REMOVE KEBABSj4v98

Getchan[edit | edit source]

/ref/[edit | edit source]

8888 GET[152][edit | edit source]
KILL YOURSELF
9000 GET[153][edit | edit source]
hwitwer won

/test/[edit | edit source]

600th GET[edit | edit source]
Taken on his birthday
666th GET[edit | edit source]
I lost
700th GET[edit | edit source]
Did baby just BTFO all of dada's anti-baby arguments?

KolymaNET Vichan Demo[edit | edit source]

/news/[edit | edit source]

100th GET[edit | edit source]
Most pedophiles exported to Tennessee award

jakparty.soy[edit | edit source]

/meta/[edit | edit source]

11111th GET[edit | edit source]

Get fucked jartycucks

/raid/[edit | edit source]

777th GET[edit | edit source]

/soy/[edit | edit source]

40000 GET[154][edit | edit source]
tsmt

lol look at all the frogs on here[155]

/Sharty/[edit | edit source]

11111 GET[156][edit | edit source]
He won
12000 GET[157][edit | edit source]
Frootist GET oldpoopas lost
15000 GET[158][edit | edit source]

Kohlchan[edit | edit source]

/pol/[edit | edit source]

123456 GET[159][edit | edit source]
baby win

/z/[edit | edit source]

60000 GET[160][edit | edit source]
Swedish win

Soychan[edit | edit source]

/soy/[edit | edit source]

100 GET[edit | edit source]

On July 18, 2023, Soychan, a clone of soyjak.party, opened for fifteen minutes before being locked for excessive illegal spam.[161] Within this timeframe, a Joeyyposter posted the first GET on /soy/.

Error creating thumbnail: File missing
cinema

TheFrogPond[edit | edit source]

/pepe/[edit | edit source]

2666 GET[edit | edit source]

  This GET shows an image of William Afton in his Scraptrap form, burning and keeping the devil waiting, it was a Sharty win and a markiplier win.  

2700 GET[edit | edit source]

 

2800 GET[edit | edit source]

  The vortex.  

/bant/[edit | edit source]

Wizardchan[edit | edit source]

/music/[edit | edit source]

10000 GET[edit | edit source]

[162]

Bantculture a.k.a tovhov.gyate.net[edit | edit source]

/bant/[edit | edit source]

999 and 1000 GET[edit | edit source]
>make sure the 'teens are not stealing the 1000GET while I'm gone or I'm actually gonna rope

This get is notable because Bantculture tried to make multiple obstacles for those who wish to access the website, from requiring a password to post through the most known URL (and changing those passwords) to shutting down said URL. The jannies apparently started replacing IAS images with gyates. (a meme popular among 4cuck touhou trannies) [163]

60000 and 59999 GETS[edit | edit source]

These GETS were stolen by PINGAS MAN! and a Floyd poster.

60000 Get on Bantculture was stolen by a teen using a jak of Floyd and Chauvin hugging it out.
59999 Get on Bantculture was stolen by the controversial PINGAS MAN!, the newest in a long line of name users

gurochan.cx (now guro.cx)[edit | edit source]

/g/[edit | edit source]

99999 and 100000 GETs[edit | edit source]
COB GANG
COB GET

Swinny[edit | edit source]

/soy/[edit | edit source]

6666 GET[edit | edit source]
50000 GET[edit | edit source]

It was a /cado/ win. The next day they brought down the post counter and made the 50k GET something else GEEEEEEEEEEEG. At least they made it a gemmy video and not obsessed brimstone.

/rr/[edit | edit source]

10 GET[edit | edit source]
New Cado

/dalwa/[edit | edit source]

75 GET[edit | edit source]

/nigger/[edit | edit source]

10 GET[edit | edit source]

The Kuzzy[edit | edit source]

/soy/[edit | edit source]

22222 GET[edit | edit source]


Heyuri[edit | edit source]

/b/[edit | edit source]

99999 & 100000 GETs[164][edit | edit source]
Lee won

Squirreljak.party[edit | edit source]

/meta/[edit | edit source]

35 GET[edit | edit source]

>Threat Level Green won

>Algeria lost

40 GET[edit | edit source]

>Threat Level Green won

>Antartica lost

45 GET[edit | edit source]

>Threat Level Green won

>Aruba lost

50 GET[edit | edit source]

>Threat Level Green won

>Bahrain lost

Desuarchive.org[edit | edit source]

/meta/[edit | edit source]

19999 & 20000 GETs[edit | edit source]
geg

GETs on soyjak.blog[edit | edit source]

(Most GETs were posted here: https://soyjak.blog/index.php?threads/get-shlog-gets-monitoring-and-archive.3996)

69 GET[edit | edit source]

a redditor said nice

121 GET[edit | edit source]

420 GET[edit | edit source]

staff role should be called janny

777 GET[edit | edit source]

1221 GET[edit | edit source]

Janny Jr

1350 GET[edit | edit source]

https://www.youtube.com/watch?v=CpOIMeZg8Vg

1488 GET[edit | edit source]

Gegagedigedagedago[165]

4444 GET[edit | edit source]

[166]

5013 GET[edit | edit source]

Bean GEM

6969 GET[edit | edit source]

Redditor said Nice twice

7777 GET[167][edit | edit source]

>no posts since yesterday even doe I just posted

12321 GET[edit | edit source]

Tranny smh

44444 GET[edit | edit source]

[168]

42069 GET[edit | edit source]

a fat redditor said nice

69420 GET[edit | edit source]

Plz die cunt

88888 GET[edit | edit source]

[169]

99999 GET[edit | edit source]

[170]

100000 GET[edit | edit source]

[171]

Notes

  1. The term "GET" is not an abbreviation despite looking like one, it's just old 4chan slang based off "getting" a repeating post number, with the all caps being part of that old slang that just stuck. Soy culture has yet to find an alternative de-4chanified term.
  2. Based on data pulled from 4stats.io and collected during Operation Pholidote, we can estimate that a board's PPM activity will spike to roughly 2.62 times its average daily peak during a octuple-GET rush.
  3. At the time of writing, more data is required for calculating other types of GETs.
  4. Ongezellig took place on October 14. Check Deel 4 if you don't believe.

Citations

  1. https://archive.today/QainY#222222
  2. https://web.archive.org/web/20230315063157/https://s4s.fandom.com/wiki/List_of_Checks (Archived)
  3. https://files.catbox.moe/q2ntpg.png
  4. https://eientei.xyz/3/thread/999999(archive)
  5. https://eientei.xyz/3/thread/999993#p1000000
  6. https://desuarchive.org/aco/thread/6666666//
  7. https://desuarchive.org/a/thread/266664402/#266666666
  8. https://desuarchive.org/an/thread/4999772/#4999999
  9. https://thebarchive.com/b/thread/911111111/
  10. https://files.catbox.moe/a2fxjn.mhtml
  11. https://archive.palanq.win/bant/thread/14000000/
  12. https://archive.palanq.win/bant/thread/16666666/
  13. https://archive.palanq.win/bant/thread/18992271/#18999999
  14. https://archive.palanq.win/bant/thread/18984444/#q19000000
  15. https://archive.palanq.win/bant/thread/22999953/#23000000
  16. https://warosu.org/biz/thread/55999653#p56000000
  17. https://desuarchive.org/co/thread/133331396/#133333333
  18. https://desuarchive.org/co/thread/139961493/#139999999
  19. https://warosu.org/ck/thread/S18990440#p18999999
  20. https://warosu.org/ck/thread/S18999504#p19000000
  21. https://archive.chud.site/soy/thread/2444579#p2445104
  22. https://archive.today/A76jThttps://ghostarchive.org/archive/6w44Ahttps://archived.moe/diy/thread/2883138/#q2888888
  23. https://archived.moe/fit/thread/71998390/#q71999999
  24. https://archived.moe/fit/thread/71999262#p72000000
  25. https://desuarchive.org/fit/thread/72999999/
  26. https://desuarchive.org/fit/thread/72997746/#73000000
  27. https://desuarchive.org/g/thread/88888888/
  28. https://desuarchive.org/g/thread/88999447/#q89000000
  29. https://desuarchive.org/g/thread/91000000/
  30. https://desuarchive.org/g/thread/94411420/#94444444
  31. https://desuarchive.org/g/thread/95543744/#95555555
  32. https://desuarchive.org/g/thread/96959086/#96999999
  33. https://desuarchive.org/g/thread/96977127/#97000000
  34. https://archived.moe/gif/thread/22222222/
  35. https://archived.moe/gif/thread/24972671/#24999999
  36. https://archived.moe/gif/thread/24999928#25000000
  37. https://archived.moe/gif/thread/25988230/#q25999999
  38. https://archived.moe/gif/thread/25988230/#q26000000
  39. https://archive.today/cGK6Q
  40. https://archived.moe/gif/thread/29000000 https://megalodon.jp/2025-0618-2206-10/https://www.soyjak.st:443/soy/thread/11733365.html
  41. https://archiveofsins.com/hc/thread/2222222/
  42. https://warosu.org/ic/thread/7000000
  43. https://archived.moe/jp/thread/37999999/
  44. https://archived.moe/jp/thread/38000000/
  45. https://warosu.org/jp/thread/38999999#p38999999
  46. https://warosu.org/jp/thread/38996037#p39000000
  47. https://warosu.org/jp/thread/44372921#p44444444
  48. https://archive.today/p2NDW
  49. https://desuarchive.org/k/thread/55555555/
  50. https://desuarchive.org/k/thread/56999831/#57000000
  51. https://desuarchive.org/k/thread/58000000
  52. https://desuarchive.org/k/thread/59997883/#q59999999
  53. https://desuarchive.org/k/thread/59974058/#q60000000
  54. https://desuarchive.org/k/thread/59999973
  55. https://desuarchive.org/k/thread/60000060
  56. https://archive.soyjak.in/soy/thread/5164886# (archive.today)
  57. https://archived.moe/lgbt/thread/25000000/
  58. 58.0 58.1 https://archive.today/nJUsH
  59. https://archive.chud.site/q/thread/74254
  60. https://archive.today/NTosU
  61. https://archived.moe/lgbt/thread/33319192/#33333333
  62. https://archive.today/SYEWH
  63. https://archived.moe/lgbt/thread/33999888/#34000000
  64. https://archive.today/23x5K
  65. https://archive.marge.moe/soy/thread/8374149#
  66. https://archive.today/O8nRY
  67. https://archiveofsins.com/lgbt/thread/39997829/#q39999999
  68. https://archiveofsins.com/lgbt/thread/39999503/#40000000
  69. https://archiveofsins.com/lgbt/thread/40999815/#41000000
  70. https://warosu.org/lit/thread/22222067#p22222222
  71. https://archive.today/k0ncY#3757342
  72. https://archived.moe/news/thread/1222222/
  73. https://archive.today/K0G2G
  74. https://archived.moe/news/thread/1233831/#1234567
  75. https://archive.palanq.win/p/thread/3999989/#3999999
  76. https://archive.palanq.win/p/thread/3999979/#4000000
  77. https://archive.palanq.win/p/thread/4443454/#4444444
  78. https://archive.4plebs.org/pol/thread/438888279#438888888
  79. https://archive.4plebs.org/pol/thread/453333333/
  80. https://archived.moe/pw/thread/3998269/#4000000
  81. https://desuarchive.org/r9k/thread/68000000
  82. https://desuarchive.org/r9k/thread/68999704/#69000000
  83. https://desuarchive.org/r9k/thread/72999973/#q72999999
  84. https://desuarchive.org/r9k/thread/73000000/
  85. https://desuarchive.org/r9k/thread/74000000/
  86. https://desuarchive.org/r9k/thread/74999606/#75000000
  87. https://desuarchive.org/r9k/thread/76000000/
  88. https://archive.4plebs.org/s4s/thread/9999967/#10000000
  89. https://archive.4plebs.org/s4s/thread/10999995/#q10999999
  90. https://archive.4plebs.org/s4s/thread/10998060/#p11000000
  91. https://archive.4plebs.org/s4s/thread/11200000
  92. Sharty thread:https://archive.soyjak.st/soy/thread/9600716 https://archive.today/1sT6M https://ghostarchive.org/archive/ziOpbGet:https://archive.today/XVtFO https://ghostarchive.org/archive/IsXgK
  93. https://archived.moe/soc/thread/31999999/
  94. https://archived.moe/soc/thread/32000000/
  95. https://archive.today/wip/CIw71
  96. https://archived.moe/t/thread/1077508/#1111111
  97. https://desuarchive.org/trash/thread/53997737/#53999999
  98. https://desuarchive.org/trash/thread/57000000/
  99. https://desuarchive.org/trash/thread/58990913#58999999
  100. https://desuarchive.org/trash/thread/59000000
  101. https://desuarchive.org/trash/thread/67000000
  102. https://archive.marge.moe/soy/thread/7547724#p7547829
  103. https://desuarchive.org/m/thread/21999999
  104. https://desuarchive.org/m/thread/21998803/#q22000000
  105. https://desuarchive.org/m/thread/22980250/#23000000
  106. https://arch.b4k.dev/vmg/thread/887744/#888888/
  107. https://arch.b4k.dev/vmg/thread/999999
  108. https://arch.b4k.dev/vmg/thread/1111111/
  109. https://archive.chud.site/soy/thread/1699228
  110. https://archive.chud.site/soy/thread/1698811
  111. https://arch.b4k.dev/vm/thread/777768/
  112. https://arch.b4k.dev/vp/thread/53000000/
  113. https://arch.b4k.dev/vp/thread/55444444/
  114. https://arch.b4k.dev/vp/thread/55555555/
  115. https://archive.today/vjett
  116. https://arch.b4k.dev/vrpg/thread/3333333/#3333333 https://archive.today/D8oTp
  117. https://arch.b4k.dev/vst/thread/999999/
  118. https://arch.b4k.dev/vst/thread/1000000/
  119. https://archived.moe/vt/thread/41000000/
  120. https://warosu.org/vt/thread/47271266#p47277777
  121. https://warosu.org/vt/thread/55903718#p56000000
  122. https://warosu.org/vt/thread/59946690#p60000000
  123. https://warosu.org/vt/thread/64995826#p65000000
  124. https://archived.moe/vt/thread/87989564/#q88000000/
  125. https://archive.palanq.win/vt/thread/98960984/#q98999999
  126. https://archive.palanq.win/vt/thread/98996039/#q99000000
  127. https://web.archive.org/web/20250408202511/https://www.soyjak.st/soy/thread/10553084.html https://archive.today/FUjAj https://ghostarchive.org/archive/xfkyy https://megalodon.jp/2025-0409-0525-08/https://www.soyjak.st:443/soy/thread/10553084.html
  128. https://desuarchive.org/wsg/thread/5997392/#5999999
  129. https://desuarchive.org/wsg/thread/5985527/#6000000
  130. https://archive.4plebs.org/x/thread/30999999/
  131. https://archive.4plebs.org/x/thread/30946203/#31000000
  132. https://archive.4plebs.org/x/thread/34997998/%23q34999999
  133. https://archive.4plebs.org/x/thread/35000000/%23q35000000
  134. https://megalodon.jp/2025-0831-1605-44/https://www.soyjak.st:443/soy/thread/12919567.html
  135. https://boards.fireden.net/y/thread/2998993/#3000000
  136. https://archive.today/trzKx
  137. https://archive.chud.site/soy/thread/2564832
  138. https://archive.palanq.win/e/thread/2903331/#3000000
  139. https://web.archive.org/web/20230815170631/https://bunker.soyjak.wiki/imgboard.php?res=2680
  140. https://archive.today/FDkzc
  141. https://archive.today/L1d2o
  142. https://archive.today/v2ROb
  143. https://archive.today/Yn2Cs
  144. https://archive.today/XD38D
  145. https://web.archive.org/web/20230804190510/https://soyjak.party/soy/thread/4258412.html
  146. https://web.archive.org/web/20230805065943/https://lainchan.org/sec/res/21846.html look at the blotter
  147. https://web.archive.org/web/20250405164114/https://soyjak.st/soy/thread/10520487.html https://archive.today/vprZM https://megalodon.jp/2025-0406-0140-23/https://soyjak.st:443/soy/thread/10520487.html
  148. https://ghostarchive.org/archive/UlpXK
  149. https://ghostarchive.org/archive/edihd
  150. https://web.archive.org/web/20230613011619/https://crystal.cafe/feels/res/100000.html
  151. https://archive.today/tIwXW
  152. https://archive.today/gv8yg#q5644742
  153. https://archive.today/wsK3c#selection-655.0-658.0
  154. https://archive.chud.site/soy/thread/3514466
  155. https://archive.today/JlkvD
  156. https://archive.today/6yF4M
  157. https://archive.today/X22Jk
  158. https://archive.today/6PLRF
  159. https://archive.today/XBOts#123456
  160. https://archive.chud.site/soy/thread/3175541
  161. https://archive.today/NueHv
  162. https://web.archive.org/web/20231110073741/https://wizchan.org/music/res/10000.html
  163. https://kiwifarms.st/threads/soyjak-party-the-Sharty.145349/post-17124509
  164. https://archive.chud.site/soy/thread/6897953# https://archive.today/Wq4fW
  165. https://soyjakblog.com/threads/award-farming-general.155/page-2#post-1488
  166. https://soyjakblog.com/threads/.423/#post-4444
  167. https://soyjak.blog/index.php?threads/blog-is-dead.701/#post-7777
  168. https://soyjakblog.com/threads/the-princess-diaries.1039/page-28#post-44444
  169. https://soyjakblog.com/threads/.3996/#post-88888
  170. https://soyjakblog.com/threads/.4431/#post-99999
  171. https://soyjakblog.com/threads/get-shlog-gets-monitoring-and-archive.3996/page-2#post-100000