posted updated version
This commit is contained in:
parent
6d58eafdd1
commit
3ff7476aa8
1 changed files with 697 additions and 0 deletions
697
Art Pages/clns.html
Normal file
697
Art Pages/clns.html
Normal file
|
@ -0,0 +1,697 @@
|
|||
<html>
|
||||
<head>
|
||||
<script>(function(){class RuffleMimeType{constructor(a,b,c){this.type=a,this.description=b,this.suffixes=c}}class RuffleMimeTypeArray{constructor(a){this.__mimetypes=[],this.__named_mimetypes={};for(let b of a)this.install(b)}install(a){let b=this.__mimetypes.length;this.__mimetypes.push(a),this.__named_mimetypes[a.type]=a,this[a.type]=a,this[b]=a}item(a){return this.__mimetypes[a]}namedItem(a){return this.__named_mimetypes[a]}get length(){return this.__mimetypes.length}}class RufflePlugin extends RuffleMimeTypeArray{constructor(a,b,c,d){super(d),this.name=a,this.description=b,this.filename=c}install(a){a.enabledPlugin||(a.enabledPlugin=this),super.install(a)}}class RufflePluginArray{[Symbol.iterator](){return this.__plugins[Symbol.iterator]()}constructor(a){this.__plugins=[],this.__named_plugins={};for(let b of a)this.install(b)}install(a){let b=this.__plugins.length;this.__plugins.push(a),this.__named_plugins[a.name]=a,this[a.name]=a,this[b]=a}item(a){return this.__plugins[a]}namedItem(a){return this.__named_plugins[a]}refresh(){}get length(){return this.__plugins.length}}const FLASH_PLUGIN=new RufflePlugin("Shockwave Flash","Shockwave Flash 32.0 r0","ruffle.js",[new RuffleMimeType("application/futuresplash","Shockwave Flash","spl"),new RuffleMimeType("application/x-shockwave-flash","Shockwave Flash","swf"),new RuffleMimeType("application/x-shockwave-flash2-preview","Shockwave Flash","swf"),new RuffleMimeType("application/vnd.adobe.flash.movie","Shockwave Flash","swf")]);function install_plugin(a){navigator.plugins.install||Object.defineProperty(navigator,"plugins",{value:new RufflePluginArray(navigator.plugins),writable:!1}),navigator.plugins.install(a),0<a.length&&!navigator.mimeTypes.install&&Object.defineProperty(navigator,"mimeTypes",{value:new RuffleMimeTypeArray(navigator.mimeTypes),writable:!1});for(var b=0;b<a.length;b+=1)navigator.mimeTypes.install(a[b])}install_plugin(FLASH_PLUGIN);})();</script>
|
||||
<meta name="robots" content="robots.txt" />
|
||||
<script src="chrome-extension://donbcfbmhbcapadipfkeojnmajbakjdc/dist/ruffle.js?id=78676581236"></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=93847073000"></script>
|
||||
<script>/******/ (() => { // webpackBootstrap
|
||||
/******/ "use strict";
|
||||
var __webpack_exports__ = {};
|
||||
|
||||
;// CONCATENATED MODULE: ../core/pkg/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/pkg/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(native_mimetype_array) {
|
||||
this.__mimetypes = [];
|
||||
this.__named_mimetypes = {};
|
||||
if (native_mimetype_array) {
|
||||
for (let i = 0; i < native_mimetype_array.length; i++) {
|
||||
this.install(native_mimetype_array[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Install a MIME Type into the array.
|
||||
*
|
||||
* @param mimetype The mimetype to install
|
||||
*/
|
||||
install(mimetype) {
|
||||
const id = this.__mimetypes.length;
|
||||
this.__mimetypes.push(mimetype);
|
||||
this.__named_mimetypes[mimetype.type] = mimetype;
|
||||
this[mimetype.type] = mimetype;
|
||||
this[id] = mimetype;
|
||||
}
|
||||
item(index) {
|
||||
return this.__mimetypes[index];
|
||||
}
|
||||
namedItem(name) {
|
||||
return this.__named_mimetypes[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, mimetypes) {
|
||||
super(mimetypes);
|
||||
this.name = name;
|
||||
this.description = description;
|
||||
this.filename = filename;
|
||||
}
|
||||
install(mimetype) {
|
||||
super.install(mimetype);
|
||||
}
|
||||
[Symbol.iterator]() {
|
||||
return super[Symbol.iterator]();
|
||||
}
|
||||
}
|
||||
/**
|
||||
* 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(native_plugin_array) {
|
||||
this.__plugins = [];
|
||||
this.__named_plugins = {};
|
||||
for (let i = 0; i < native_plugin_array.length; i++) {
|
||||
this.install(native_plugin_array[i]);
|
||||
}
|
||||
}
|
||||
install(plugin) {
|
||||
const id = this.__plugins.length;
|
||||
this.__plugins.push(plugin);
|
||||
this.__named_plugins[plugin.name] = plugin;
|
||||
this[plugin.name] = plugin;
|
||||
this[id] = plugin;
|
||||
}
|
||||
item(index) {
|
||||
return this.__plugins[index];
|
||||
}
|
||||
namedItem(name) {
|
||||
return this.__named_plugins[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", null);
|
||||
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=57604562838"></script>
|
||||
<script>/******/ (() => { // webpackBootstrap
|
||||
/******/ "use strict";
|
||||
var __webpack_exports__ = {};
|
||||
|
||||
;// CONCATENATED MODULE: ../core/pkg/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/pkg/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(native_mimetype_array) {
|
||||
this.__mimetypes = [];
|
||||
this.__named_mimetypes = {};
|
||||
if (native_mimetype_array) {
|
||||
for (let i = 0; i < native_mimetype_array.length; i++) {
|
||||
this.install(native_mimetype_array[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Install a MIME Type into the array.
|
||||
*
|
||||
* @param mimetype The mimetype to install
|
||||
*/
|
||||
install(mimetype) {
|
||||
const id = this.__mimetypes.length;
|
||||
this.__mimetypes.push(mimetype);
|
||||
this.__named_mimetypes[mimetype.type] = mimetype;
|
||||
this[mimetype.type] = mimetype;
|
||||
this[id] = mimetype;
|
||||
}
|
||||
item(index) {
|
||||
return this.__mimetypes[index];
|
||||
}
|
||||
namedItem(name) {
|
||||
return this.__named_mimetypes[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, mimetypes) {
|
||||
super(mimetypes);
|
||||
this.name = name;
|
||||
this.description = description;
|
||||
this.filename = filename;
|
||||
}
|
||||
install(mimetype) {
|
||||
super.install(mimetype);
|
||||
}
|
||||
[Symbol.iterator]() {
|
||||
return super[Symbol.iterator]();
|
||||
}
|
||||
}
|
||||
/**
|
||||
* 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(native_plugin_array) {
|
||||
this.__plugins = [];
|
||||
this.__named_plugins = {};
|
||||
for (let i = 0; i < native_plugin_array.length; i++) {
|
||||
this.install(native_plugin_array[i]);
|
||||
}
|
||||
}
|
||||
install(plugin) {
|
||||
const id = this.__plugins.length;
|
||||
this.__plugins.push(plugin);
|
||||
this.__named_plugins[plugin.name] = plugin;
|
||||
this[plugin.name] = plugin;
|
||||
this[id] = plugin;
|
||||
}
|
||||
item(index) {
|
||||
return this.__plugins[index];
|
||||
}
|
||||
namedItem(name) {
|
||||
return this.__named_plugins[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", null);
|
||||
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=70882645688"></script>
|
||||
</head>
|
||||
<body style="visibility: visible; background-color: rgb(235, 232, 199);">
|
||||
<p><a href="https://donottadee.web.fc2.com/index.html"><img src="https://blog-imgs-165.fc2.com/l/h/v/lhv7cm2ajoj9/2023032311292425c.png" /></a></p>
|
||||
<hr /><hr />
|
||||
<p style="text-align: center;"><span style="font-size: 300%;"><b>Colorful Nonsense</b></span></p>
|
||||
<hr /><hr />
|
||||
<p><a href="https://blog-imgs-160.fc2.com/l/h/v/lhv7cm2ajoj9/20230126232311cdd.png"><img src="https://blog-imgs-160.fc2.com/l/h/v/lhv7cm2ajoj9/RibonRibon_convert_20230126235920.png" vspace="0" hspace="0" border="0" align="bottom" /></a><b style="color: #660000;"><span style="font-size: x-large;">RibonRibon_2023 </span></b><a href="https://blog-imgs-160.fc2.com/l/h/v/lhv7cm2ajoj9/Nulline.png"><img src="https://blog-imgs-160.fc2.com/l/h/v/lhv7cm2ajoj9/Nulline_convert_20230127001134.png" /></a><span style="color: #000033;"><b><span style="font-size: x-large;">Nulline_2018</span></b></span></p>
|
||||
<p><a href="https://blog-imgs-160.fc2.com/l/h/v/lhv7cm2ajoj9/reverse-rainbow-horse-girl.png"><img src="https://blog-imgs-160.fc2.com/l/h/v/lhv7cm2ajoj9/reverse-rainbow-horse-girl_convert_20230127001752.png" /></a><b><span style="font-size: x-large;">Raboma_2023</span></b></p>
|
||||
<p><a href="https://blog-imgs-160.fc2.com/l/h/v/lhv7cm2ajoj9/20230127002213828.png"><img src="https://blog-imgs-160.fc2.com/l/h/v/lhv7cm2ajoj9/Dreamy-Chan_And_Sadness_convert_20230127002119.png" /></a><b><span style="font-size: large;"><span style="color: #666699;">Dreamy-Chan</span> And <span style="color: #000033;">Sadness_2020</span></span></b></p>
|
||||
<p><b><span style="font-size: large;"><span style="color: #000033;"> </span></span></b><a href="https://blog-imgs-160.fc2.com/l/h/v/lhv7cm2ajoj9/Ms-aquina.png"><img src="https://blog-imgs-160.fc2.com/l/h/v/lhv7cm2ajoj9/Ms-aquina_convert_20230127002726.png" /></a><b><span style="font-size: large;">Ms.Aquina_2018</span></b></p>
|
||||
<p><a href="https://blog-imgs-160.fc2.com/l/h/v/lhv7cm2ajoj9/baglings-worshipping-traon.png"><img src="https://blog-imgs-160.fc2.com/l/h/v/lhv7cm2ajoj9/baglings-worshipping-traon_convert_20230127003323.png" /></a><b><span style="font-size: large;"><span style="color: #660066;">Baglings </span>Worshiping <span style="color: #330066;">Traon_2021</span></span></b></p>
|
||||
<p><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/202403261859308c7.png"><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/202403261859308c7.png" alt="" width="425" height="255" /></a> <span style="color: #008000;"><strong><span style="font-size: 18pt;">Furomam_2017</span></strong></span></p>
|
||||
<p><a href="https://blog-imgs-160.fc2.com/l/h/v/lhv7cm2ajoj9/20230131030216f14.jpg"><img src="https://blog-imgs-160.fc2.com/l/h/v/lhv7cm2ajoj9/Peter_Roots_Hamsterman_2015_convert_20230131030346.jpg" vspace="0" hspace="0" border="0" align="bottom" /></a><span style="font-size: large;"><b>Peter Roots - Hamsterman_2015</b></span></p>
|
||||
<p><span style="font-size: large;"><b><span style="white-space: pre;"> </span></b></span><a href="https://blog-imgs-160.fc2.com/l/h/v/lhv7cm2ajoj9/20230213141424c05.jpg" title="Colorful Lands"><img src="https://blog-imgs-160.fc2.com/l/h/v/lhv7cm2ajoj9/Colorful_Lands_convert_20230217201031.jpg" vspace="0" hspace="0" border="0" /></a><b><span style="white-space: pre;"> </span><span style="white-space: pre;"><span style="font-size: large;"> </span> Colorfulness_2014</span></b></p>
|
||||
<hr />
|
||||
<p><a href="https://blog-imgs-160.fc2.com/l/h/v/lhv7cm2ajoj9/20230217195702a77.png"><img src="https://blog-imgs-160.fc2.com/l/h/v/lhv7cm2ajoj9/20230217195702a77s.png" width="229" vspace="0" hspace="0" height="172" border="0" /></a><b>Hamsterman And His Doodlings_2014</b></p>
|
||||
<p><b></b></p>
|
||||
<p><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/Green.png"><b><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/Green.png" alt="" width="204" height="205" /></b></a><b><span style="color: #339966;">Green_2014</span></b></p>
|
||||
<p><a href="https://side7.com/galleries/2/203/20366/originals/image/d04cee4f37d1eef7d90093f28118dff71f9498fb.png"><img src="https://side7.com/galleries/2/203/20366/originals/image/d04cee4f37d1eef7d90093f28118dff71f9498fb.png" alt="" width="465" height="350" /></a></p>
|
||||
<p><span style="color: #000080;"><strong>Crowded_Room_2015</strong></span></p>
|
||||
<p><a href="https://blog-imgs-165.fc2.com/l/h/v/lhv7cm2ajoj9/20230307073612f5d.jpg"><img src="https://blog-imgs-165.fc2.com/l/h/v/lhv7cm2ajoj9/20230307074119773.jpg" width="322" vspace="0" hspace="0" height="407" border="0" /></a><span style="font-size: large;"><b>Colorful Waves_2023</b></span></p>
|
||||
<hr />
|
||||
<p><a href="https://blog-imgs-165.fc2.com/l/h/v/lhv7cm2ajoj9/20230328064148dba.png"><img src="https://blog-imgs-165.fc2.com/l/h/v/lhv7cm2ajoj9/20230328064148dba.png" /></a><span style="font-size: large;"><b>Blue Scarf_2018</b></span></p>
|
||||
<p><a href="https://blog-imgs-165.fc2.com/l/h/v/lhv7cm2ajoj9/202304291213008cc.png"><img src="https://blog-imgs-165.fc2.com/l/h/v/lhv7cm2ajoj9/20230429124621685.png" alt="Lsdiika The Rabbit (2023)" vspace="0" hspace="0" border="0" />Lsdiika The Rabbit 2023</a></p>
|
||||
<p></p>
|
||||
<p><a href="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_0839_convert_20230706194811.png"><img src="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_0839_convert_20230706194811.png" alt="" width="500" height="500" /> Colorful Cylops 2023</a></p>
|
||||
<p><br /><a href="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_0921.png"><img src="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_0921.png" alt="" width="300" height="400" /></a> Weidodo_2023</p>
|
||||
<p></p>
|
||||
<p><a href="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_0970_convert_20230807083047.png"><img src="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_0970_convert_20230807083047.png" alt="" width="400" height="573" /> Diamond Jester 2023</a></p>
|
||||
<p></p>
|
||||
<p><img src="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_1079.png" alt="" width="660" height="495" /> <br />Office Lavender_2023</p>
|
||||
<p></p>
|
||||
<p></p>
|
||||
<p><a href="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_1133.png"><img src="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_1133.png" alt="" />Alien_Girl_23_2023</a></p>
|
||||
<p></p>
|
||||
<p><a href="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_1137.png"><img src="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_1137.png" alt="" width="696" height="522" /></a></p>
|
||||
<p>Girly _Tomboy_2033</p>
|
||||
<p></p>
|
||||
<p><img src="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_1138.png" alt="" width="646" height="646" /> <br />Quilla Zolli_2023</p>
|
||||
<p><a href="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_1155_convert_20231023004626.png"><img src="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_1155_convert_20231023004626.png" alt="" width="300" height="400" /></a><br />Chill_Autumn_Scent_2023</p>
|
||||
<p></p>
|
||||
<p><a href="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_1257-min.png"><img src="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_1257-min.png" alt="" width="400" height="400" /></a><br />Blue_Octogreed_2023</p>
|
||||
<p><a href="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_1267.png"><img src="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_1267.png" alt="" width="400" height="300" /></a><br />Mocha_Uniform_2023</p>
|
||||
<p></p>
|
||||
<p><img src="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_1332.png" alt="" width="400" height="300" /><br />Nitza's_Green_Dress _2023</p>
|
||||
<p></p>
|
||||
<p>--------------------------------------------------------------------------------------------------------------------------</p>
|
||||
<p><img src="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/202401030349011cd.png" alt="" width="380" height="532" /></p>
|
||||
<p>Fluffy_Snake_Woman_2024</p>
|
||||
<p></p>
|
||||
<p><a href="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/U.png" title="Uranium (U)_2024"><img src="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/U.png" alt="" width="352" height="469" /></a></p>
|
||||
<p>Uranium (U)_2024</p>
|
||||
<p></p>
|
||||
<p><a href="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/Shrimpy-Chani.jpg"><img src="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/Shrimpy-Chani.jpg" alt="" width="353" height="353" /></a></p>
|
||||
<p>Shrimpy_Chani_2024</p>
|
||||
<p><a href="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/202401250446113c4.png"><img src="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/202401250446113c4.png" alt="" width="392" height="353" /></a></p>
|
||||
<p>Odd_Flower_Dress_2024</p>
|
||||
<p><a href="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/Teratomonster-min.png"><img src="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/Teratomonster-min.png" alt="" width="351" height="351" /></a></p>
|
||||
<p>Teratomonster_2024</p>
|
||||
<p><a href="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/20240205063505985.png"><img src="https://blog-imgs-170.fc2.com/l/h/v/lhv7cm2ajoj9/20240205063505985.png" alt="" width="286" height="282" /></a></p>
|
||||
<p><span style="font-size: 12pt; color: #800000;">Red_Velvet_Trollpin_2024</span></p>
|
||||
<p><span style="font-size: 12pt; color: #800000;"></span></p>
|
||||
<p><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/20240217124320c6f.png"><span style="font-size: 12pt; color: #800000;"><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/20240217124320c6f.png" alt="" width="361" height="417" /></span></a></p>
|
||||
<p><span style="font-size: 14pt; color: #008000;">Albino_In_Green_And_Black_2024</span></p>
|
||||
<p><span style="font-size: 14pt; color: #008000;"></span></p>
|
||||
<p><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/20240217123348a94.png"><span style="font-size: 14pt; color: #008000;"><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/20240217123348a94.png" alt="" width="454" height="461" /></span></a></p>
|
||||
<p><span style="font-size: 14pt;">Valentine's_Snail_2024</span></p>
|
||||
<p><span style="font-size: 14pt;"></span></p>
|
||||
<p><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/202402241156262e8.png"><span style="font-size: 14pt;"><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/202402241156262e8.png" alt="" width="240" height="343" /></span></a></p>
|
||||
<p><span style="font-size: 14pt;">Green_Nature_2024</span></p>
|
||||
<p><span style="font-size: 14pt;"></span></p>
|
||||
<p><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/20240226105104387.png"><span style="font-size: 14pt;"><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/20240226105104387.png" alt="" width="315" height="481" /></span></a></p>
|
||||
<p>Zigzags_&_Scralet_Scarf_2024</p>
|
||||
<p></p>
|
||||
<p><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/202403012246373e0.png"><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/202403012246373e0.png" alt="" width="413" height="526" /></a></p>
|
||||
<p>Floral_Alien_2024</p>
|
||||
<p></p>
|
||||
<p><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_1623.png"><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/IMG_1623.png" alt="" width="503" height="503" /></a></p>
|
||||
<p><span style="font-size: 14pt;">Angel_Of_Healing_2024</span></p>
|
||||
<p></p>
|
||||
<p><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/Pigsect.png"><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/Pigsect.png" alt="" width="419" height="314" /></a></p>
|
||||
<p><span style="font-size: 14pt;">Pigsect_2024</span></p>
|
||||
<p></p>
|
||||
<p><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/20240315105505b1d.png"><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/20240315105505b1d.png" alt="" width="449" height="337" /></a></p>
|
||||
<p><span style="font-size: 14pt;">Locked_Love_&_Feelings_2024</span></p>
|
||||
<p></p>
|
||||
<p><span style="font-size: 14pt;"><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/20240325093948cad.png" alt="" width="487" height="568" /></span></p>
|
||||
<p><span style="font-size: 18pt; color: #800080;"><span style="color: #ff00ff;">Pink</span>_Woman_<span style="color: #ff00ff;">Rosa</span>_Fraulein_2024</span><span style="font-size: 14pt;"></span></p>
|
||||
<p><span style="font-size: 18pt; color: #800080;"></span></p>
|
||||
<p><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/202404092346465cc.png"><span style="font-size: 18pt; color: #800080;"><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/202404092346465cc.png" alt="" width="312" height="416" />Poetrie In White_&_Blue</span></a></p>
|
||||
<p><span style="font-size: 18pt; color: #800080;"></span></p>
|
||||
<p><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/202404092346454c2.png"><span style="font-size: 18pt; color: #800080;"><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/202404092346454c2.png" alt="" width="416" height="312" />Fanged_Trollpin_2024</span></a><span style="font-size: 18pt; color: #800080;"></span></p>
|
||||
<p><span style="font-size: 18pt; color: #800080;"><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/20240402212204ccd.jpeg"><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/20240402212204ccd.jpeg" alt="" width="543" height="538" /></a> Pink_Ghost_Girl_2024</span></p>
|
||||
<p><span style="font-size: 18pt; color: #800080;"></span></p>
|
||||
<p><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/2024041600173287f.png"><span style="font-size: 18pt; color: #800080;"><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/2024041600173287f.png" alt="" width="367" height="522" /></span></a><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/2024041600173287f.png"><span style="font-size: 18pt; color: #800080;"></span></a><span style="font-size: 18pt; color: #333399;">Fern_Scarf,_Bright_Stars_2024</span><span style="font-size: 18pt; color: #800080;"></span></p>
|
||||
<p><span style="font-size: 18pt; color: #333399;"><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/Lsdiika.png"><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/Lsdiika.png" alt="" width="365" height="274" /></a> </span></p>
|
||||
<p><span style="font-size: 18pt; color: #333399;"><span style="color: #ff0000;">Lsdiika_The_Rabirat_2024</span></span></p>
|
||||
<p><span style="font-size: 18pt; color: #333399;"><span style="color: #ff0000;"></span></span></p>
|
||||
<p><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/202405051023171d2.png"><span style="font-size: 18pt; color: #333399;"><span style="color: #ff0000;"><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/202405051023171d2.png" alt="" width="379" height="379" /></span></span></a></p>
|
||||
<p><span style="font-size: 18pt; color: #333399;"><span style="color: #ff0000;">Sakura_Eyegirl_2024</span></span></p>
|
||||
<p><span style="font-size: 18pt; color: #333399;"><span style="color: #ff0000;"></span></span></p>
|
||||
<p><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/7538753.png"><span style="font-size: 18pt; color: #333399;"><span style="color: #ff0000;"><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/7538753.png" alt="" width="370" height="530" /></span></span></a></p>
|
||||
<p><span style="font-size: 18pt;">Laviva_&_Illumity_2024</span><span style="font-size: 18pt;"></span></p>
|
||||
<p><span style="font-size: 18pt;"></span></p>
|
||||
<p><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/20240618134012940.png"><span style="font-size: 18pt;"><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/20240618134012940.png" alt="" width="347" height="331" /></span></a></p>
|
||||
<p><span style="font-size: 18pt;"><span style="color: #000080;">Cute_Blue_Demon_2024</span></span><span style="font-size: 18pt;"></span></p>
|
||||
<p><span style="font-size: 18pt;"><span style="color: #000080;">-----------------------------------</span></span></p>
|
||||
<p><a href="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/20240708142110888.png"><span style="font-size: 18pt;"><span style="color: #000080;"><img src="https://blog-imgs-174.fc2.com/l/h/v/lhv7cm2ajoj9/20240708142110888.png" alt="" width="376" height="282" /></span></span></a><span style="font-size: 18pt; color: #ff0000;">Sweet_Cherry_Calls_2024</span></p>
|
||||
<p><span style="font-size: 18pt;"><span style="color: #000080;"></span></span></p>
|
||||
<hr align="baseline" />
|
||||
<script><!--
|
||||
var fc2footerparam = 'charset=' + encodeURIComponent(document.charset ? document.charset : document.characterSet) + '&url=' + encodeURIComponent(document.location) + '&service=0&r=' + Math.floor(Math.random()*99999999999);
|
||||
var fc2footertag = "//vip.chps-api.fc2.com/apis/footer/?" + fc2footerparam;
|
||||
var script = document.createElement('script');
|
||||
script.src = fc2footertag;
|
||||
script.charset = "UTF-8";
|
||||
script.async = true;
|
||||
document.getElementsByTagName('head')[0].appendChild(script);
|
||||
//--></script>
|
||||
<!-- FC2, inc.-->
|
||||
<img src="//media.fc2.com/counter_img.php?id=50" style="display:none" alt="inserted by FC2 system" width="0" height="0">
|
||||
<!-- FC2, inc.--></body></html>
|
Loading…
Reference in a new issue