<head><link rel="icon" type="image/png" href="/res/f46n_myspace.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">	
<link rel="stylesheet" href="/res/index.css?cc2k=1675382954">
<script src="/res/index.js?cc2k=1675476938"></script>
<script>/******/ (() => { // webpackBootstrap
/******/ 	"use strict";
var __webpack_exports__ = {};

;// CONCATENATED MODULE: ../core/dist/flash-identifiers.js
const FLASH_MIMETYPE = "application/x-shockwave-flash";
const FUTURESPLASH_MIMETYPE = "application/futuresplash";
const FLASH7_AND_8_MIMETYPE = "application/x-shockwave-flash2-preview";
const FLASH_MOVIE_MIMETYPE = "application/vnd.adobe.flash.movie";
const FLASH_ACTIVEX_CLASSID = "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000";

;// CONCATENATED MODULE: ../core/dist/plugin-polyfill.js

/**
 * Replacement object for `MimeTypeArray` that lets us install new fake mime
 * types.
 *
 * Unlike plugins we can at least enumerate mime types in Firefox, so we don't
 * lose data.
 *
 * We also expose a method called `install` which adds a new plugin. This is
 * used to falsify Flash detection. If the existing `navigator.mimeTypes` has an
 * `install` method, you should not use `RuffleMimeTypeArray` as some other
 * plugin emulator is already present.
 */
class RuffleMimeTypeArray {
    constructor(mimeTypes) {
        this.__mimeTypes = [];
        this.__namedMimeTypes = {};
        if (mimeTypes) {
            for (let i = 0; i < mimeTypes.length; i++) {
                this.install(mimeTypes[i]);
            }
        }
    }
    /**
     * Install a MIME Type into the array.
     *
     * @param mimeType The mime type to install
     */
    install(mimeType) {
        const index = this.__mimeTypes.length;
        this.__mimeTypes.push(mimeType);
        this.__namedMimeTypes[mimeType.type] = mimeType;
        this[mimeType.type] = mimeType;
        this[index] = mimeType;
    }
    item(index) {
        return this.__mimeTypes[index];
    }
    namedItem(name) {
        return this.__namedMimeTypes[name];
    }
    get length() {
        return this.__mimeTypes.length;
    }
    [Symbol.iterator]() {
        return this.__mimeTypes[Symbol.iterator]();
    }
}
/**
 * Equivalent object to `Plugin` that allows us to falsify plugins.
 */
class RufflePlugin extends RuffleMimeTypeArray {
    constructor(name, description, filename) {
        super();
        this.name = name;
        this.description = description;
        this.filename = filename;
    }
}
/**
 * Replacement object for `PluginArray` that lets us install new fake plugins.
 *
 * This object needs to wrap the native plugin array, since the user might have
 * actual plugins installed. Firefox doesn't let us enumerate the array, though,
 * which has some consequences. Namely, we can't actually perfectly wrap the
 * native plugin array, at least unless there's some secret "unresolved object
 * property name handler" that I've never known before in JS...
 *
 * We can still wrap `namedItem` perfectly at least.
 *
 * We also expose a method called `install` which adds a new plugin. This is
 * used to falsify Flash detection. If the existing `navigator.plugins` has an
 * `install` method, you should not use `RufflePluginArray` as some other plugin
 * emulator is already present.
 */
class RufflePluginArray {
    constructor(plugins) {
        this.__plugins = [];
        this.__namedPlugins = {};
        for (let i = 0; i < plugins.length; i++) {
            this.install(plugins[i]);
        }
    }
    install(plugin) {
        const index = this.__plugins.length;
        this.__plugins.push(plugin);
        this.__namedPlugins[plugin.name] = plugin;
        this[plugin.name] = plugin;
        this[index] = plugin;
    }
    item(index) {
        return this.__plugins[index];
    }
    namedItem(name) {
        return this.__namedPlugins[name];
    }
    refresh() {
        // Nothing to do, we just need to define the method.
    }
    [Symbol.iterator]() {
        return this.__plugins[Symbol.iterator]();
    }
    get length() {
        return this.__plugins.length;
    }
}
/**
 * A fake plugin designed to trigger Flash detection scripts.
 */
const FLASH_PLUGIN = new RufflePlugin("Shockwave Flash", "Shockwave Flash 32.0 r0", "ruffle.js");
FLASH_PLUGIN.install({
    type: FUTURESPLASH_MIMETYPE,
    description: "Shockwave Flash",
    suffixes: "spl",
    enabledPlugin: FLASH_PLUGIN,
});
FLASH_PLUGIN.install({
    type: FLASH_MIMETYPE,
    description: "Shockwave Flash",
    suffixes: "swf",
    enabledPlugin: FLASH_PLUGIN,
});
FLASH_PLUGIN.install({
    type: FLASH7_AND_8_MIMETYPE,
    description: "Shockwave Flash",
    suffixes: "swf",
    enabledPlugin: FLASH_PLUGIN,
});
FLASH_PLUGIN.install({
    type: FLASH_MOVIE_MIMETYPE,
    description: "Shockwave Flash",
    suffixes: "swf",
    enabledPlugin: FLASH_PLUGIN,
});
/**
 * Install a fake plugin such that detectors will see it in `navigator.plugins`.
 *
 * This function takes care to check if the existing implementation of
 * `navigator.plugins` already accepts fake plugin entries. If so, it will use
 * that version of the plugin array. This allows the plugin polyfill to compose
 * across multiple plugin emulators with the first emulator's polyfill winning.
 *
 * @param plugin The plugin to install
 */
function installPlugin(plugin) {
    if (!("install" in navigator.plugins) || !navigator.plugins["install"]) {
        Object.defineProperty(navigator, "plugins", {
            value: new RufflePluginArray(navigator.plugins),
            writable: false,
        });
    }
    const plugins = navigator.plugins;
    plugins.install(plugin);
    if (plugin.length > 0 &&
        (!("install" in navigator.mimeTypes) || !navigator.mimeTypes["install"])) {
        Object.defineProperty(navigator, "mimeTypes", {
            value: new RuffleMimeTypeArray(navigator.mimeTypes),
            writable: false,
        });
    }
    const mimeTypes = navigator.mimeTypes;
    for (let i = 0; i < plugin.length; i += 1) {
        mimeTypes.install(plugin[i]);
    }
}

;// CONCATENATED MODULE: ./src/plugin-polyfill.ts
// This file is compiled and then injected into content.ts's compiled form.

installPlugin(FLASH_PLUGIN);

/******/ })()
;</script><script src="chrome-extension://donbcfbmhbcapadipfkeojnmajbakjdc/dist/ruffle.js?id=58287151805"></script></head>

<body><div id="container" style="animation-name: none;">
<div id="header">
	<a class="logo" href="/">
			<b>
				<span style="padding-top: 2px; position: absolute;">
					myspace.f46n.org				</span>
			</b>
	</a>
	<span id="hUp" style="float:right;margin-right: 5px;margin-top: 3px;font-size: small;">
	                                			<a href="/?settings">Settings</a>
		<a href="?msg=receive&amp;type=list">MailBox</a>
		<a style="cursor:pointer;" onclick="if(confirm('Do you want to log out?')) { location.href='/?logout=YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR' }">Logout</a>
		
	</span>
</div>
<div id="hSub">
	<a href="/?id=224">Home</a> | 
		<a href="/?fwiends=224"><span class="sep">My </span>Fwiends</a> |
		<a href="/?list">All <span class="sep">Fwiends</span></a> | 
	<a href="/?id=random">Rand<span class="sep">om</span></a> | 
	<a href="/?online">Online</a> | 
	<a href="/?music">Music</a> |
	<span class="sep"> 
		<!--<a href="/?flash">Flash</a> | -->
				<a href="/?blog=224">Blog</a> | 
			</span>
	<a href="/?news">News</a> |
	<a href="/?search">Search</a>
</div>
 
<div id="foolpoolSvmsg" class="svmsg">
	<p>
		We made a forum.<br>
		<a href="https://6.f46n.org/">Check it out</a>
	</p>
</div>	
	<span id="uid">224</span>

    <meta name="theme-color" content="#003399">
    <meta name="generator" content="myspace.f46n.org">
    <meta name="author" content="bear_dea">
    <meta name="description" content="im literally a  random">	
    <meta name="twitter:card" content="summary">
    <meta name="twitter:title" content="bear_dea">
    <meta name="twitter:description" content="im literally a  random">
    <meta name="twitter:image" content="https://myspace.f46n.org/u/224/avatar.png?v=1675193737">
    <meta property="og:title" content="bear_dea">
    <meta property="og:type" content="profile">
    <meta property="og:image" content="https://myspace.f46n.org/u/224/avatar.png?v=1675193737">
    <meta property="og:url" content="https://myspace.f46n.org/">
    <meta property="og:description" content="im literally a  random">
    <meta property="og:site_name" content="myspace.f46n.org">
    <meta property="profile:username" content="bear_dea">
        
	<title>bear_dea | MySpace46</title>			<link rel="stylesheet" href="/?getCSS=224" id="sheet">
	
<div class="topLeft" style="animation-name: none;">
		<div>
			<h2 class="uName" id="name">bear_dea</h2>
		</div>
				<table class="short">
			<tbody>
				<tr>	
					<td>
								
			<img src="u/224/avatar.png?v=1675193737						" id="avatar" class="avatar">
													                  	<div style="text-align: center;">
                  	    <button onclick="window.location='?photo=224'">Edit</button>
                  	</div>
                  					</td>
					<td class="shortRight">
						<div>"<span id="credo">"cola is better than sex"</span>"</div><br>
						<div id="gender">Male</div>
						<div><span id="age">14 </span> years old</div>
						<div id="country">Ukraine</div>
						<div id="online" style="margin-top: 10px; display: block;"><img src="/res/online.gif"></div>
						<div style="font-size:small;margin-top:10px;">Last Login:<br><span id="lastLogin">18/03/2023</span></div>
					</td>
				</tr>
			</tbody>
		</table>
		<div class="boxInfo box">
						<div class="boxHead"><b>Contacting <span class="uName">bear_dea</span></b></div>
			<a href="/?msg=224&amp;type=send"><div class="boxButton" id="sMsg">Send Message</div></a>
			<a href="/?report=224"><div class="boxButton" id="report">Report</div></a>
			<a href="/?processfwiendreq=224&amp;type=send&amp;_csrf=YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR"><div class="boxButton" id="add">Add to fwiends</div></a>
			<a href="/?block=224&amp;_csrf=YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<div class="boxButton" id="block">Block</div>
			</a>
		</div>
		<div class="url box">
			<div><b>MySpace URL:</b></div>
			<div>
								<a style="color:#000;text-decoration:none;" href="//myspace.f46n.org/?id=224">
					myspace.f46n.org/?id=224				</a>
							</div>
		</div>
				<div class="player box">
			<div class="songName">
				<b>Song:</b> <span class="song__title">ULTRAKILL OST - Altars of Apostasy.mp3</span>
				<a href="//myspace.f46n.org/u/224/song.mp3?v=1668555003" download="ULTRAKILL OST - Altars of Apostasy.mp3">
					<img style="height: 15px; float: right; padding-right: 2px;" src="/res/download.svg">
				</a>
			</div>
			<audio controls="" autoplay="" src="//myspace.f46n.org/u/224/song.mp3?v=1668555003" controlslist="nodownload"></audio>
		</div>
				         <div style="text-align: center">
             <button onclick="window.location.href='/?mp3=224'">Edit Mp3</button>
         </div>
					</div>
	<div class="topRight" style="animation-name: none;">
		<div class="extended box">
							<h3><a id="editLink" href="/?edit=224">Edit your profile</a></h3>
					</div>
			<div class="box blurbs">
						<div class="blogs">
			<div>
				<b><span class="uName">bear_dea</span>'s Latest Blog Entry</b>
			</div>
							<div>how do you make a blog [<a href="/?blog=224&amp;bid=1">view more</a>]</div>
			
		</div>
				<div class="rightHead">
			<b><span class="uName">bear_dea</span>'s blurbs</b>
		</div>
			<h4>About me:</h4>
			<div id="about">
				<p>im literally a  random</p>			</div>
			<h4>Who I'd like to meet:</h4>
			<div id="who">
				<p>John Mathias</p>	
			</div>	
		</div>
						<div class="box fwiends">
			<div class="rightHead"><b><span class="uName">bear_dea</span>'s Fwiends Space</b></div>
			<div class="fwiendCounter"><b><span class="uName">bear_dea</span> has <span class="fwiendCount">14</span> fwiends.</b></div>	
			<div id="top">
									<a href="?id=1"><div class="fwiendFace"><b>Tom</b><img src="/u/1/avatar.jpg"></div></a>
						<a href="?id=39"><div class="fwiendFace"><b>ark63</b><img src="/u/39/avatar.jpg"></div></a>
						<a href="?id=6"><div class="fwiendFace"><b>Aydoplaydoh</b><img src="/u/6/avatar.png"></div></a>
						<a href="?id=218"><div class="fwiendFace"><b>Gay</b><img src="/u/218/avatar.png"></div></a>
						<a href="?id=196"><div class="fwiendFace"><b>reina</b><img src="/u/196/avatar.jpg"></div></a>
						<a href="?id=226"><div class="fwiendFace"><b>JohnMathias</b><img src="/u/226/avatar.png"></div></a>
						<a href="?id=267"><div class="fwiendFace"><b>jgygghbhjhf</b><img src="/u/267/avatar.png"></div></a>
						<a href="?id=290"><div class="fwiendFace"><b>Pizza</b><img src="/u/290/avatar.jpeg"></div></a>
					</div>
			<div id="viewFriends">
				<b>View <a href="/?fwiends=224">All</a> <span class="uName">bear_dea</span>'s Fwiends</b>
			</div>
		</div>
		<div class="box comments">		
			        		<div class="boxHead"><b>Leave a comment</b></div>
        			
        		        		<form action="/?id=224" method="post">
        		    <textarea name="comment" minlength="1" maxlength="512" id="commentInput"></textarea>
        		    <input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
        		    <input type="hidden" name="gotoID" value="224">
        		    <input type="submit" value="Send">
        		</form>
						<div class="boxHead"><b>Comments</b></div>	
			<table id="userWall">
			<tbody><tr>
	<td class="tableLeft">
		<a href="/?id=218">
			<div>
				<b>ilker</b>
			</div>
					
			<img src="/u/218/avatar.png			?v=1668360299			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">9 Mar, 21:53</b>
		</div>
		<div>
			<p>ur a cool dude.,..,,.</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=6878">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=356">
			<div>
				<b>Drails</b>
			</div>
					
			<img src="/u/356/avatar.jpg			?v=1676411211			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">9 Mar, 19:42</b>
		</div>
		<div>
			<p>YIPPEEE</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=6859">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=224">
			<div>
				<b>bear_dea</b>
			</div>
					
			<img src="/u/224/avatar.png			?v=1675193737			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">9 Mar, 03:59</b>
		</div>
		<div>
			<p>ok</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=6845">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=477">
			<div>
				<b>maniacalBricoleur</b>
			</div>
					
			<img src="/u/477/avatar.png			?v=1678159790			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">9 Mar, 03:59</b>
		</div>
		<div>
			<p>helo<br>
its because youre cool B)</p>
<p>and also because people here are sparse so might as well interact with who is active</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=6844">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=224">
			<div>
				<b>bear_dea</b>
			</div>
					
			<img src="/u/224/avatar.png			?v=1675193737			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">9 Mar, 03:36</b>
		</div>
		<div>
			<p>no way</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=6833">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=184">
			<div>
				<b>Barney Calhoun</b>
			</div>
					
			<img src="/u/184/avatar.png			?v=1666761511			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">6 Feb, 21:09</b>
		</div>
		<div>
			<p>It's me bear_dea, Barney from Fortnite!</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=5523">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=267">
			<div>
				<b>jgygghbhjhf</b>
			</div>
					
			<img src="/u/267/avatar.png			?v=1671034330			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">2 Feb, 22:15</b>
		</div>
		<div>
			<p>даров</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=5212">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=76">
			<div>
				<b>alex9997979z</b>
			</div>
					
			<img src="/u/76/avatar.png			?v=1674318473			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">1 Feb, 01:14</b>
		</div>
		<div>
			<p>actually, 500 so far</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=5160">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=50">
			<div>
				<b>HDZ</b>
			</div>
					
			<img src="/u/50/avatar.gif			?v=1675117404			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">31 Jan, 23:00</b>
		</div>
		<div>
			<p>TEST</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=5152">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=39">
			<div>
				<b>ark63</b>
			</div>
					
			<img src="/u/39/avatar.jpg			?v=1670625589			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">31 Jan, 22:21</b>
		</div>
		<div>
			<blockquote>
<p>&gt; bro that beat is FIRE🔥🔥🔥</p>
</blockquote>
<p>thanks</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=5150">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=12">
			<div>
				<b>HulkHogan</b>
			</div>
					
			<img src="/u/12/avatar.png			?v=1673562634			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">31 Jan, 22:11</b>
		</div>
		<div>
			<p>Are you a serbochetnik much love Brate HH</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=5149">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=12">
			<div>
				<b>HulkHogan</b>
			</div>
					
			<img src="/u/12/avatar.png			?v=1673562634			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">31 Jan, 22:10</b>
		</div>
		<div>
			<p>Oj Srbine prljav stvore<br>
Kad ćeš opet ti na more<br>
Kupat ćeš se u lavoru<br>
Ja u svome plavom moru</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=5148">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=224">
			<div>
				<b>bear_dea</b>
			</div>
					
			<img src="/u/224/avatar.png			?v=1675193737			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">31 Jan, 22:07</b>
		</div>
		<div>
			<p>happens</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=5146">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=292">
			<div>
				<b>emeri</b>
			</div>
					
			<img src="/u/292/avatar.jpg			?v=1677038472			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">31 Jan, 22:06</b>
		</div>
		<div>
			<p>youre speaking english im screaming and dying inside</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=5145">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=12">
			<div>
				<b>HulkHogan</b>
			</div>
					
			<img src="/u/12/avatar.png			?v=1673562634			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">31 Jan, 22:06</b>
		</div>
		<div>
			<p>ajde odjebi sa svojim ruskim profilom i ruskim idejama jebem ti mater Živjela velika hrvatska ŽAP </p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=5144">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=224">
			<div>
				<b>bear_dea</b>
			</div>
					
			<img src="/u/224/avatar.png			?v=1675193737			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">31 Jan, 22:05</b>
		</div>
		<div>
			<p>ok cool but that really didnt give me anything to work with, translate "cookies are better with milk" to russian. That could theoretically help</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=5143">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=292">
			<div>
				<b>emeri</b>
			</div>
					
			<img src="/u/292/avatar.jpg			?v=1677038472			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">31 Jan, 22:00</b>
		</div>
		<div>
			<p>дуолинго = говно</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=5140">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=224">
			<div>
				<b>bear_dea</b>
			</div>
					
			<img src="/u/224/avatar.png			?v=1675193737			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">31 Jan, 21:59</b>
		</div>
		<div>
			<p>Напиши что нибудь на русском и я попробую понять в чём у тя проблема</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=5138">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=292">
			<div>
				<b>emeri</b>
			</div>
					
			<img src="/u/292/avatar.jpg			?v=1677038472			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">31 Jan, 21:56</b>
		</div>
		<div>
			<p>how do i learn russian grammar duolingo is shit</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=5137">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=224">
			<div>
				<b>bear_dea</b>
			</div>
					
			<img src="/u/224/avatar.png			?v=1675193737			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">31 Jan, 21:53</b>
		</div>
		<div>
			<p>also how do u blog</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=5135">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=224">
			<div>
				<b>bear_dea</b>
			</div>
					
			<img src="/u/224/avatar.png			?v=1675193737			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">31 Jan, 21:51</b>
		</div>
		<div>
			<p>i did not understand a word you just said but i agree</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=5134">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=12">
			<div>
				<b>HulkHogan</b>
			</div>
					
			<img src="/u/12/avatar.png			?v=1673562634			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">31 Jan, 21:50</b>
		</div>
		<div>
			<p>Are you a serbochetnik much love Brate HH</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=5132">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=224">
			<div>
				<b>bear_dea</b>
			</div>
					
			<img src="/u/224/avatar.png			?v=1675193737			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">31 Jan, 21:45</b>
		</div>
		<div>
			<p>что</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=5130">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=292">
			<div>
				<b>emeri</b>
			</div>
					
			<img src="/u/292/avatar.jpg			?v=1677038472			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">31 Jan, 21:44</b>
		</div>
		<div>
			<p>teach me russian please </p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=5129">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=97">
			<div>
				<b>͏ ͏ ͏ ͏ ͏͏ </b>
			</div>
					
			<img src="/u/97/avatar.jpg			?v=1679066694			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">19 Nov 2022, 11:59</b>
		</div>
		<div>
			<p>glung</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=3050">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=224">
			<div>
				<b>bear_dea</b>
			</div>
					
			<img src="/u/224/avatar.png			?v=1675193737			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">17 Nov 2022, 10:14</b>
		</div>
		<div>
			<p>HOLY SHIT</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=3023">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=226">
			<div>
				<b>JohnMathias</b>
			</div>
					
			<img src="/u/226/avatar.png			?v=1668622717			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">16 Nov 2022, 20:40</b>
		</div>
		<div>
			<p>HEY BUDDY I AM HERE</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=3019">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=224">
			<div>
				<b>bear_dea</b>
			</div>
					
			<img src="/u/224/avatar.png			?v=1675193737			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">16 Nov 2022, 01:43</b>
		</div>
		<div>
			<p>remove the 4 from my id for a surprise ;)</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=2984">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=218">
			<div>
				<b>ilker</b>
			</div>
					
			<img src="/u/218/avatar.png			?v=1668360299			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">16 Nov 2022, 00:52</b>
		</div>
		<div>
			<p>welcome</p>						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=2976">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
<tr>
	<td class="tableLeft">
		<a href="/?id=1">
			<div>
				<b>Tom</b>
			</div>
					
			<img src="/u/1/avatar.jpg			?v=1666749996			">
									</a>
	</td>
	<td class="tableRight">
		<div>
			<b class="date">15 Nov 2022, 15:31</b>
		</div>
		<div>
			Thanks 4 the add!						<form style="margin-bottom:unset;text-align:unset;" method="post" action="/?delete=2967">
				<input type="hidden" name="_csrf" value="YGoEnfwMoUUSyydkvQrXRkxslyGGDaMEdaNeCzoDmfniTQphofxbBbCbQOyCFOCR">
				<input type="hidden" name="type" value="profileComment">
				<input type="submit" value="Delete">
			</form>
					</div>
	</td>
</tr>
</tbody></table>
<div style="font-size:small;text-align:right;">(30/100)</div>
		</div>
	</div>
						<div id="imgPreview">
		
			<img src="u/224/avatar.png?v=1675193737						">
								</div>
					<!--<div id="imgPreview"><img src="u/224/avatar.png?v=1675193737"></div>-->
<script>DateCon();</script><div id="footer" style="margin-top:5px;" class="box">
	<div>
		<p>
			<a href="/?static=about">About</a> <a href="/?static=help">Help</a> <br>
			© 1993-2023 <a style="text-decoration:none;" href="https://f46n.org">the F46N organization</a>
			<br>dedicated to users and fans of <a href="https://windows93.net">windows93</a>
			<br>
			</p><div id="footer88x31s">
				<a href="https://f46n.org/"><img src="/res/88x31/f46n2.png"></a>
				<a href="https://php.net"><img src="/res/88x31/php.png"></a>
				<img src="/res/88x31/sausage.gif">
			</div>
		<p></p>
	</div>	
</div>
</div></body>