| 00:01:50 | | etnguyen03 quits [Client Quit] |
| 00:10:08 | | retrograde quits [Remote host closed the connection] |
| 00:10:35 | | retrograde (retrograde) joins |
| 00:15:40 | | retrograde quits [Remote host closed the connection] |
| 00:16:03 | | retrograde (retrograde) joins |
| 00:27:50 | <nicolas17> | https://www.youtube.com/watch?v=0dwagg5wYY4 about Mr Beast |
| 00:42:59 | | etnguyen03 (etnguyen03) joins |
| 01:07:02 | | Exorcism quits [Quit: Ping timeout (120 seconds)] |
| 01:07:05 | | DigitalDragons quits [Quit: Ping timeout (120 seconds)] |
| 01:07:15 | | DigitalDragons (DigitalDragons) joins |
| 01:07:16 | | Exorcism (exorcism) joins |
| 01:15:27 | | Nekroschizofrenetyk joins |
| 01:23:31 | | Nekroschizofrenetyk quits [Client Quit] |
| 02:37:27 | <Doranwen> | Is there a quick way to modify this code to match not only the " but a ' instead of a " here (in both places)? `src="\K[^"?]+` I've got a case where it does img src='PICLINK.EXT' and I want it to grab that pic link there just as it would grab a standard img src="PICLINK.EXT" |
| 02:38:05 | <@JAA> | Only (reasonably) by duplicating it: src="\K[^"?]+|src='\K[^'?]+ |
| 02:38:40 | <@JAA> | If you need to put that in a shell string, it gets a bit ugly. :-) |
| 02:39:08 | <Doranwen> | Lol, that's fine, it's going into a script so I don't have to manually fuss with it. |
| 02:39:46 | <Doranwen> | I'm also going to have to add on this to match as well: `{background: url(PICLINKHERE)` and get the PICLINKHERE out of it. |
| 02:39:56 | <@JAA> | How I would write it: grep -Po 'src="\K[^"?]+|src='\''\K[^'\''?]+' |
| 02:40:24 | <Doranwen> | Yeah, the grep -Po is already there, I just didn't copy the full command here. |
| 02:40:54 | <@JAA> | It's a concatenation of this: 'src="\K[^"?]+|src=' \' '\K[^' \' '?]+' |
| 02:41:13 | <@JAA> | So the actual argument passed to grep becomes: src="\K[^"?]+|src='\K[^'?]+ |
| 02:41:23 | <Doranwen> | Ahh. |
| 02:41:40 | <@JAA> | There are other versions of writing it, but this is the least ugly variant in my opinion. |
| 02:42:32 | <@JAA> | And: background: url\(\K[^)]* |
| 02:43:46 | <Doranwen> | So altogether it would be: src="\K[^"?]+|src='\K[^'?]+|background: url\(\K[^)]* ? (I probably have it very wrong as I barely understand regex and this is beyond my basic skills there) |
| 02:44:20 | <Doranwen> | It has to do the search all at once and dump all the results into one place, so I'm trying to get them all together in one command. Ugly or not, lol. |
| 02:44:25 | <steering> | hmm |
| 02:44:25 | <@JAA> | Sure, and then putting it as a shell command argument like above. |
| 02:44:52 | <Doranwen> | Right, the original line was: grep -oP 'src="\K[^"?]+' "$f" > ImageLinks/"$post".txt |
| 02:44:59 | <Doranwen> | As part of a for loop and all that. |
| 02:45:00 | | Webuser291943 quits [Quit: Ooops, wrong browser tab.] |
| 02:45:24 | <Doranwen> | I actually stitched them together correctly? |
| 02:45:40 | | Doranwen was sure she missed *something*, lol. |
| 02:46:04 | <steering> | something like this should work in grep -P i think btw: src=(["'])\K.+?(?=\1) |
| 02:47:21 | <@JAA> | Yeah, you can use backrefs and a lookahead with PCRE. |
| 02:47:50 | <@JAA> | Teeeechnically not a regex anymore, but... :-P |
| 02:49:14 | <steering> | if you could use capturing groups instead of needing the match to only include what you're interested in `src=(["'])(.+?)\1` would be better but alas :P |
| 02:52:09 | <Doranwen> | Weird, it's working great on the pics with the {background: url( bit - but it's not finding this one, for instance: <img src='https://l-userpic.livejournal.com/122062562/45330521' width='100' height='100' alt='' border='0'/> |
| 02:54:22 | <Doranwen> | Possibly has something to do with the whole thing being enclosed in ' ? The code for the src with the single quotes has a few characters that aren't the correct color, in my editor. |
| 02:54:32 | <Doranwen> | Which usually means something isn't being quoted correctly. |
| 02:54:45 | <Doranwen> | The line currently is: `grep -oP 'src="\K[^"?]+|src='\K[^'?]+|background: url\(\K[^)]*' "$f" > ImageLinks/"$post".txt` |
| 02:55:56 | | etnguyen03 quits [Remote host closed the connection] |
| 02:57:55 | <@JAA> | You didn't handle the quoting as I described above. |
| 02:58:00 | <@JAA> | '\'' |
| 03:01:11 | <steering> | your grep sees the bit in the middle like this: `src=\K[^?]+` |
| 03:01:23 | <steering> | (or something) |
| 03:02:13 | <Doranwen> | I thought I copied from your message but maybe I didn't. |
| 03:02:16 | <@JAA> | src=K[^?]+ actually, I think. |
| 03:02:19 | <steering> | yeah |
| 03:02:30 | <Doranwen> | Oh, I copied from the wrong message. |
| 03:02:41 | <Doranwen> | That's why. |
| 03:02:45 | | SootBector quits [Remote host closed the connection] |
| 03:03:55 | | SootBector (SootBector) joins |
| 03:04:45 | <steering> | also if you don't have any in your dataset great but you may want to add uhh... `|src=\K[^'" ][^ ]*` or so |
| 03:04:54 | <steering> | to get unquoted ones |
| 03:05:43 | <steering> | (*technically* [^ ] needs a lot more characters in it but i don't know exactly what characters will terminate an unquoted html attribute and it probably varies anyway :D) |
| 03:06:11 | <steering> | oh |
| 03:06:18 | <@JAA> | At least > |
| 03:06:21 | <steering> | `|src=\K[^'" >][^ >]*` |
| 03:06:22 | <steering> | yeah |
| 03:06:29 | <Doranwen> | Well, I'm trying to get all the embedded pics, and it turns out these are two other ways they appear besides the standard. |
| 03:06:50 | <steering> | yeah, there's a few more ways. |
| 03:07:00 | <steering> | you can have <img src=/foo/bar.png> |
| 03:07:00 | <@JAA> | The lengths one goes to to avoid having to parse HTML. :-) |
| 03:07:11 | <steering> | you can have background-image:url(...) |
| 03:07:24 | <steering> | (i think its -image, idr, background-something) |
| 03:08:52 | <Doranwen> | Hmm, I thought I copied from the right message this time but this is still not working: `grep -oP 'src="\K[^"?]+|src='\''\K[^'\''?]+|background: url\(\K[^)]*' "$f" > ImageLinks/"$post".txt` |
| 03:09:02 | <Doranwen> | Now a couple of the \ in the middle are the wrong color. |
| 03:09:35 | <@JAA> | > grep -oP 'src="\K[^"?]+|src='\''\K[^'\''?]+|background: url\(\K[^)]*' <<<"<img src='https://l-userpic.livejournal.com/122062562/45330521' width='100' height='100' alt='' border='0'/>" |
| 03:09:39 | <@JAA> | https://l-userpic.livejournal.com/122062562/45330521 |
| 03:09:40 | <@JAA> | Works for me. |
| 03:10:40 | <Doranwen> | I'm going off this page: https://www.livejournal.com/allpics.bml?user=ahs_exchange |
| 03:10:43 | <Doranwen> | Saved as an html. |
| 03:11:10 | <Doranwen> | Can't get the userpic links - which I took that one from - to get pulled. |
| 03:12:05 | <Doranwen> | The script creates a folder for every page that it finds embedded pics for, and dumps those pics into it. That part it handles fine. But it's not creating a folder for this page whatsoever. It simply isn't finding the links. :/ |
| 03:14:41 | | Doranwen has the whole script up on GitHub but doubts the rest of it is relevant to this bit as it's working flawlessly for everything except discovering the urls in the first place. |
| 03:18:35 | <Doranwen> | It's finding ordinary embedded links fine, as well as the banners that were embedded with `{background: url()` - so there's something about how these userpics are linked that's the challenge. |
| 03:23:59 | <@JAA> | > curl -s https://www.livejournal.com/allpics.bml?user=ahs_exchange | grep -oP 'src="\K[^"?]+|src='\''\K[^'\''?]+|background: url\(\K[^)]*' | grep -F https://l-userpic.livejournal.com/122062562/45330521 |
| 03:24:03 | <@JAA> | https://l-userpic.livejournal.com/122062562/45330521 |
| 03:24:04 | <@JAA> | Works for me. |
| 03:25:36 | <Doranwen> | Ohhhhhhh, I know exactly why it's not working. At least, I think I do. |
| 03:25:52 | <Doranwen> | Has to do with the order and way I have the script handling all the image downloads. |
| 03:26:08 | <Doranwen> | Anyway, thank you VERY much! I will work on the script some more. |
| 03:26:23 | <Doranwen> | It was not designed to download userpics per post, and that's where the issue lies, I strongly suspect. |
| 03:29:20 | <Doranwen> | They were being downloaded into a separate folder - which Maggie is fine with - so we'll leave it at that. They're saved, at least. |
| 03:29:21 | <Doranwen> | Whew! |
| 04:39:47 | | fluke quits [Ping timeout: 268 seconds] |
| 05:16:57 | | atphoenix__ (atphoenix) joins |
| 05:19:20 | | atphoenix_ quits [Ping timeout: 268 seconds] |
| 05:28:20 | | HackMii quits [Remote host closed the connection] |
| 05:28:46 | | HackMii (hacktheplanet) joins |
| 05:33:15 | <klea> | If you're evil you culd write the full unquoted version into a file, and use grep -oPf that_file :P |
| 05:37:14 | | Starchives_ (Starchives) joins |
| 05:38:47 | | systwi_ quits [Quit: systwi_] |
| 05:40:50 | | Starchives__ quits [Ping timeout: 268 seconds] |
| 05:43:18 | | nothere quits [Ping timeout: 268 seconds] |
| 05:43:18 | | ivan quits [Ping timeout: 268 seconds] |
| 06:02:29 | | ivan joins |
| 06:25:07 | | SootBector quits [Remote host closed the connection] |
| 06:26:16 | | SootBector (SootBector) joins |
| 06:28:20 | | retrograde quits [Remote host closed the connection] |
| 06:28:44 | | retrograde (retrograde) joins |
| 06:30:36 | | nothere joins |
| 06:31:59 | | SootBector quits [Ping timeout: 260 seconds] |
| 06:31:59 | | HackMii quits [Ping timeout: 260 seconds] |
| 06:32:23 | | HackMii (hacktheplanet) joins |
| 06:50:20 | | SootBector (SootBector) joins |
| 07:05:44 | | lemuria quits [Read error: Connection reset by peer] |
| 07:17:54 | | pabs quits [Read error: Connection reset by peer] |
| 07:18:28 | | pabs (pabs) joins |
| 07:24:00 | | nine quits [Quit: See ya!] |
| 07:24:13 | | nine joins |
| 07:59:11 | | ducky_ (ducky) joins |
| 08:00:54 | | ducky quits [Ping timeout: 268 seconds] |
| 08:02:43 | <steering> | you know what i should do? i should make a mirc bot. in honor of fireonlive |
| 08:02:46 | <steering> | fireonlive++ |
| 08:02:46 | <eggdrop> | [karma] 'fireonlive' now has 1192 karma! |
| 08:03:00 | <steering> | i'm gonna get it to 1337 dangit |
| 08:03:54 | | ducky_ quits [Ping timeout: 268 seconds] |
| 08:16:02 | | ducky (ducky) joins |
| 08:35:26 | | Dango360 quits [Ping timeout: 268 seconds] |
| 08:36:31 | | Dango360 (Dango360) joins |
| 10:00:12 | <@JAA> | Spot the difference: https://web.archive.org/web/diff/20180326073014/20260220155052/https://www.ipcs.org/archive.php |
| 11:00:02 | | Bleo1826007227196234552220110 quits [Quit: The Lounge - https://thelounge.chat] |
| 11:02:50 | | Bleo1826007227196234552220110 joins |
| 11:15:47 | <ivan> | TIL there's a diff feature |
| 11:18:26 | | steering wonders what changed about the fb and twitter icons |
| 11:18:45 | <steering> | oh |
| 11:19:23 | <steering> | they suffixed the class with a 4 i.e. ico-facebook4 |
| 11:23:44 | | datechnoman quits [Quit: Ping timeout (120 seconds)] |
| 11:24:06 | | datechnoman (datechnoman) joins |
| 12:23:25 | | SootBector quits [Remote host closed the connection] |
| 12:24:38 | | SootBector (SootBector) joins |
| 12:47:04 | | SootBector quits [Ping timeout: 260 seconds] |
| 12:48:45 | | SootBector (SootBector) joins |
| 13:00:12 | | ducky_ (ducky) joins |
| 13:01:08 | | ducky quits [Ping timeout: 268 seconds] |
| 13:01:08 | | ducky_ is now known as ducky |
| 13:07:37 | | pabs quits [Remote host closed the connection] |
| 13:08:04 | | pabs (pabs) joins |
| 13:16:57 | <klea> | fireonlive++ |
| 13:16:57 | <eggdrop> | [karma] 'fireonlive' now has 1193 karma! |
| 13:17:50 | <klea> | JAA: Shortly is more than 8 years? |
| 13:17:55 | <klea> | Also. |
| 13:18:46 | <klea> | Copyright © <?php echo date("Y"); ?> |
| 14:04:38 | <klea> | https://zacharykai.net/bookmarklets#word-counter seems useful. |
| 14:07:03 | | Nekroschizofrenetyk joins |
| 14:19:27 | | Nekroschizofrenetyk quits [Client Quit] |
| 14:19:31 | | Nekroschizofrenetyk joins |
| 14:27:08 | <klea> | https://www.youtube.com/watch?v=lvEO4IaEJlw This seems fun to do, I suppose they had a wonderful time reverse engineering the way the program backed up data. |
| 14:45:21 | | Dango360 quits [Ping timeout: 268 seconds] |
| 14:45:31 | | Dango3602 (Dango360) joins |
| 14:53:03 | | nine quits [Quit: See ya!] |
| 14:53:16 | | nine joins |
| 14:55:02 | | Nekroschizofrenetyk quits [Client Quit] |
| 16:13:20 | | Webuser572193 joins |
| 16:45:35 | | atphoenix_ (atphoenix) joins |
| 16:48:46 | | atphoenix__ quits [Ping timeout: 268 seconds] |
| 17:06:45 | | traxys quits [Quit: The Lounge - https://thelounge.chat] |
| 18:18:24 | <@JAA> | klea: Yep |
| 19:13:16 | <@JAA> | 88x31 galore: https://files.leggi.es/8831/ |
| 21:23:46 | <Dango3602> | JAA: only complaint is that they're not clickable (and thus idk where to find some of the things referenced). but it's pretty cool regardless |
| 21:24:29 | <@JAA> | Dango3602: Yeah, would be nice to know what exactly they referenced. |
| 21:25:23 | <Dango3602> | ugh my name is currently not the right one |
| 21:26:24 | | Dango3602 quits [Quit: The Lounge - https://thelounge.chat] |
| 21:26:42 | | Dango3602 (Dango360) joins |
| 21:26:58 | | Dango3602 is now known as Dango360 |
| 21:30:23 | <klea> | btw, JAA did you upload the login.corp.google qwarc WARC? |
| 22:09:21 | | multisn8 quits [Ping timeout: 268 seconds] |
| 22:28:39 | | etnguyen03 (etnguyen03) joins |
| 22:48:36 | | Hackerpcs quits [Remote host closed the connection] |
| 22:48:38 | <nulldata> | https://techcrunch.com/2026/04/20/deezer-says-44-of-songs-uploaded-to-its-platform-daily-are-ai-generated/ |
| 22:49:28 | | Hackerpcs (Hackerpcs) joins |
| 22:53:15 | | ph0rcys quits [*.net *.split] |
| 22:53:15 | | x9fff00 quits [*.net *.split] |
| 22:53:15 | | DigitalDragon quits [*.net *.split] |
| 22:53:15 | | Hans5958 quits [*.net *.split] |
| 22:53:15 | | yzqzss quits [*.net *.split] |
| 22:53:15 | | Vokun quits [*.net *.split] |
| 22:53:15 | | Exorcism|m quits [*.net *.split] |
| 22:53:16 | | M--mlv|m quits [*.net *.split] |
| 22:53:17 | | osiride|m quits [*.net *.split] |
| 22:53:17 | | ax|m quits [*.net *.split] |
| 22:53:17 | | spearcat|m quits [*.net *.split] |
| 22:53:17 | | supermariofan67|m quits [*.net *.split] |
| 22:53:17 | | NickS|m quits [*.net *.split] |
| 22:53:17 | | djasldjasldjalsdj|m quits [*.net *.split] |
| 22:53:17 | | EvanBoehs|m quits [*.net *.split] |
| 22:53:17 | | Fijxu|m quits [*.net *.split] |
| 22:53:17 | | its_notjack quits [*.net *.split] |
| 22:53:17 | | starg2|m quits [*.net *.split] |
| 22:53:17 | | that_lurker|m quits [*.net *.split] |
| 22:53:17 | | l0rd_enki|m quits [*.net *.split] |
| 22:53:17 | | mikolaj|m quits [*.net *.split] |
| 22:53:17 | | vics quits [*.net *.split] |
| 22:53:17 | | Adamvoltagex|m quits [*.net *.split] |
| 22:53:17 | | v1cs quits [*.net *.split] |
| 22:53:17 | | bogsen quits [*.net *.split] |
| 22:53:17 | | trumad|m quits [*.net *.split] |
| 22:53:17 | | akaibu|m quits [*.net *.split] |
| 22:53:17 | | haha-whered-it-go|m quits [*.net *.split] |
| 22:53:17 | | joepie91|m quits [*.net *.split] |
| 22:53:17 | | nosamu|m quits [*.net *.split] |
| 22:53:17 | | GRBaset quits [*.net *.split] |
| 22:53:17 | | s-crypt|m|m quits [*.net *.split] |
| 22:53:17 | | superusercode quits [*.net *.split] |
| 22:53:17 | | wrangle|m quits [*.net *.split] |
| 22:53:17 | | Cydog|m quits [*.net *.split] |
| 22:53:17 | | jwoglom|m quits [*.net *.split] |
| 22:53:17 | | CrispyAlice2 quits [*.net *.split] |
| 22:53:17 | | Explo quits [*.net *.split] |
| 22:53:17 | | thermospheric quits [*.net *.split] |
| 22:53:17 | | Video quits [*.net *.split] |
| 22:53:17 | | Roki_100|m quits [*.net *.split] |
| 22:53:17 | | hexagonwin|m quits [*.net *.split] |
| 22:53:17 | | iCesenberk|m quits [*.net *.split] |
| 22:53:17 | | phaeton quits [*.net *.split] |
| 22:53:17 | | Thibaultmol quits [*.net *.split] |
| 22:53:17 | | tech234a quits [*.net *.split] |
| 22:53:17 | | moe-a-m|m quits [*.net *.split] |
| 22:53:17 | | tech234a|m-backup quits [*.net *.split] |
| 22:53:17 | | schwarzkatz|m quits [*.net *.split] |
| 22:53:17 | | Ember|m quits [*.net *.split] |
| 22:53:17 | | th3z0l4|m quits [*.net *.split] |
| 22:53:17 | | aaq|m quits [*.net *.split] |
| 22:53:17 | | nstrom|m quits [*.net *.split] |
| 22:53:17 | | xxia|m quits [*.net *.split] |
| 22:53:17 | | Fletcher quits [*.net *.split] |
| 22:53:17 | | masterx244|m quits [*.net *.split] |
| 22:53:17 | | cruller quits [*.net *.split] |
| 22:53:17 | | mpeter|m quits [*.net *.split] |
| 22:53:17 | | Minkafighter|m quits [*.net *.split] |
| 22:53:17 | | tomodachi94 quits [*.net *.split] |
| 22:53:17 | | @rewby|m quits [*.net *.split] |
| 22:53:17 | | flashfire42|m quits [*.net *.split] |
| 22:53:17 | | theblazehen|m quits [*.net *.split] |
| 22:53:17 | | gamer191-1|m quits [*.net *.split] |
| 22:53:17 | | justauser|m quits [*.net *.split] |
| 22:53:17 | | igneousx quits [*.net *.split] |
| 22:53:17 | | audrooku|m quits [*.net *.split] |
| 22:53:17 | | britmob|m quits [*.net *.split] |
| 22:53:17 | | mind_combatant quits [*.net *.split] |
| 22:53:17 | | @Sanqui|m quits [*.net *.split] |
| 22:53:17 | | anon00001|m quits [*.net *.split] |
| 22:53:17 | | Ajay quits [*.net *.split] |
| 22:55:45 | | flashfire42|m (flashfire42) joins |
| 23:00:24 | | Sanqui|m (Sanqui) joins |
| 23:00:24 | | EvanBoehs|m joins |
| 23:00:24 | | theblazehen|m joins |
| 23:00:24 | | nstrom|m joins |
| 23:00:24 | | @ChanServ sets mode: +o Sanqui|m |
| 23:00:24 | | joepie91|m joins |
| 23:00:24 | | yzqzss (yzqzss) joins |
| 23:00:24 | | DigitalDragon joins |
| 23:00:24 | | britmob|m joins |
| 23:00:24 | | tech234a|m-backup (tech234a) joins |
| 23:00:24 | | audrooku|m joins |
| 23:00:24 | | igneousx (igneousx) joins |
| 23:00:24 | | mpeter|m joins |
| 23:00:24 | | Thibaultmol joins |
| 23:00:24 | | masterx244|m (masterx244|m) joins |
| 23:00:24 | | akaibu|m joins |
| 23:00:24 | | Fletcher (Fletcher) joins |
| 23:00:24 | | wrangle|m joins |
| 23:00:24 | | superusercode joins |
| 23:00:24 | | jwoglom|m joins |
| 23:00:24 | | Cydog|m joins |
| 23:00:24 | | Explo joins |
| 23:00:24 | | Roki_100|m joins |
| 23:00:24 | | phaeton (phaeton) joins |
| 23:00:24 | | nosamu|m joins |
| 23:00:24 | | aaq|m joins |
| 23:00:24 | | tech234a (tech234a) joins |
| 23:00:24 | | th3z0l4|m joins |
| 23:00:24 | | that_lurker|m joins |
| 23:00:24 | | hexagonwin|m joins |
| 23:00:25 | | justauser|m (justauser|m) joins |
| 23:00:25 | | ph0rcys (ph0rcys) joins |
| 23:00:25 | | rewby|m (rewby) joins |
| 23:00:25 | | xxia|m joins |
| 23:00:25 | | @ChanServ sets mode: +o rewby|m |
| 23:00:25 | | schwarzkatz|m joins |
| 23:00:25 | | Ajay joins |
| 23:00:25 | | GRBaset (GRBaset) joins |
| 23:00:25 | | Minkafighter|m joins |
| 23:00:25 | | CrispyAlice2 joins |
| 23:00:25 | | x9fff00 (x9fff00) joins |
| 23:00:25 | | moe-a-m|m joins |
| 23:00:25 | | thermospheric joins |
| 23:00:25 | | Vokun (Vokun) joins |
| 23:00:25 | | iCesenberk|m joins |
| 23:00:25 | | s-crypt|m|m joins |
| 23:00:25 | | mikolaj|m joins |
| 23:00:25 | | cruller joins |
| 23:00:25 | | l0rd_enki|m joins |
| 23:00:25 | | tomodachi94 (tomodachi94) joins |
| 23:00:25 | | anon00001|m joins |
| 23:00:25 | | Hans5958 joins |
| 23:00:25 | | mind_combatant (mind_combatant) joins |
| 23:00:25 | | Video joins |
| 23:00:25 | | gamer191-1|m joins |
| 23:00:25 | | Ember|m joins |
| 23:00:25 | | Exorcism|m (exorcism) joins |
| 23:00:26 | | haha-whered-it-go|m joins |
| 23:00:26 | | supermariofan67|m joins |
| 23:00:26 | | spearcat|m joins |
| 23:00:26 | | ax|m joins |
| 23:00:26 | | starg2|m joins |
| 23:00:26 | | djasldjasldjalsdj|m joins |
| 23:00:26 | | NickS|m joins |
| 23:00:27 | | trumad|m joins |
| 23:00:27 | | v1cs joins |
| 23:00:27 | | Adamvoltagex|m joins |
| 23:00:27 | | its_notjack (its_notjack) joins |
| 23:00:27 | | osiride|m joins |
| 23:00:27 | | Fijxu|m joins |
| 23:00:29 | | bogsen (bogsen) joins |
| 23:00:29 | | vics joins |
| 23:03:37 | | useretail__ joins |
| 23:03:42 | | wickedplayer494 quits [Ping timeout: 268 seconds] |
| 23:04:06 | | wickedplayer494 (wickedplayer494) joins |
| 23:06:42 | | useretail_ quits [Ping timeout: 268 seconds] |
| 23:21:34 | | etnguyen03 quits [Client Quit] |
| 23:30:45 | | BitByBit4 quits [Ping timeout: 268 seconds] |