• Replying to comment by: 🦇🎃K-ZILLA🎃🦇 (Doing Commissions Now)I’m disappointed in you. And so is ripples
    143

    i told izuki i was the owner and she believed me

    2
    View
  • Replying to comment by: VoltageHave you ever wanted to do a joint with someone or animate a

    beach, i don’t even know hat a joint is. and entityunknown hasn’t replied that that very question yet

    2
    View
  • Replying to comment by: SwiftMan he lied ralph is the owner, and he prob hacked the site.

    man, i’m actually surprised that worked

    5
    View
  • Replying to comment by: SolidaritySupremekdi

    im mad, there’s an among us hacker ruining the servers

    4
    View
  • Replying to comment by: SolidaritySupreme
    219_0-62448900-1603568888_shdhdhdhdhdndsbdhdn

    what drugs are you on rn

    0
    View
  • Replying to comment by: Kuri/mebii
    39223_0-72116200-1603568742_d30e8aed-b30a-461

    are you playing right now, if so wuts the code

    1
    View
  • Replying to comment by: SolidaritySupremeTurns out mom had a panic attack. Im thankful.

    phew

    0
    View
  • Replying to comment by: ∆•[IZUKI]•∆Hi im izuki/oi eu sou o izuki ( ̄^ ̄)

    Hi, im a pokemon. I’m the owner of this site, we are currently been hacked by a user named Ralph, and i’m doing everything in my power to restore everything back to normal.

    ps. welcome to stick nodes

    10
    View
  • Replying to comment by: Droidy tvWhere

    its in uppdogg

    0
    View
  • Replying to comment by: willowI'm going to die in 60 years no matter what and you want me

    yes, folding blankets and tiding up helps you mentally, it gives you a sense of organization

    0
    View
  • Replying to comment by: CheggThe node limit is going to be the death of me

    looks like about 40 nodes

    3
    View
  • /**
    * @preserve HTML5 Shiv 3.7.3 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
    */
    ;(function(window, document) {
    /*jshint evil:true */
    /** version */
    var version = ‘3.7.3’;

    /** Preset options */
    var options = window.html5 || {};

    /** Used to skip problem elements */
    var reSkip = /^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i;

    /** Not all elements can be cloned in IE **/
    var saveClones = /^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i;

    /** Detect whether the browser supports default html5 styles */
    var supportsHtml5Styles;

    /** Name of the expando, to work with multiple documents or to re-shiv one document */
    var expando = '_html5shiv';

    /** The id for the the documents expando */
    var expanID = 0;

    /** Cached data for each document */
    var expandoData = {};

    /** Detect whether the browser supports unknown elements */
    var supportsUnknownElements;

    (function() {
    try {
    var a = document.createElement('a');
    a.innerHTML = '’;
    //if the hidden property is implemented we can assume, that the browser supports basic HTML5 Styles
    supportsHtml5Styles = (‘hidden’ in a);

    supportsUnknownElements = a.childNodes.length == 1 || (function() {
    // assign a false positive if unable to shiv
    (document.createElement)(‘a’);
    var frag = document.createDocumentFragment();
    return (
    typeof frag.cloneNode == ‘undefined’ ||
    typeof frag.createDocumentFragment == ‘undefined’ ||
    typeof frag.createElement == ‘undefined’
    );
    }());
    } catch(e) {
    // assign a false positive if detection fails => unable to shiv
    supportsHtml5Styles = true;
    supportsUnknownElements = true;
    }

    }());

    /*————————————————————————–*/

    /**
    * Creates a style sheet with the given CSS text and adds it to the document.
    * @private
    * @param {Document} ownerDocument The document.
    * @param {String} cssText The CSS text.
    * @returns {StyleSheet} The style element.
    */
    function addStyleSheet(ownerDocument, cssText) {
    var p = ownerDocument.createElement(‘p’),
    parent = ownerDocument.getElementsByTagName(‘head’)[0] || ownerDocument.documentElement;

    p.innerHTML = ‘x’ + cssText + ”;
    return parent.insertBefore(p.lastChild, parent.firstChild);
    }

    /**
    * Returns the value of `html5.elements` as an array.
    * @private
    * @returns {Array} An array of shived element node names.
    */
    function getElements() {
    var elements = html5.elements;
    return typeof elements == ‘string’ ? elements.split(‘ ‘) : elements;
    }

    /**
    * Extends the built-in list of html5 elements
    * @memberOf html5
    * @param {String|Array} newElements whitespace separated list or array of new element names to shiv
    * @param {Document} ownerDocument The context document.
    */
    function addElements(newElements, ownerDocument) {
    var elements = html5.elements;
    if(typeof elements != ‘string’){
    elements = elements.join(‘ ‘);
    }
    if(typeof newElements != ‘string’){
    newElements = newElements.join(‘ ‘);
    }
    html5.elements = elements +’ ‘+ newElements;
    shivDocument(ownerDocument);
    }

    /**
    * Returns the data associated to the given document
    * @private
    * @param {Document} ownerDocument The document.
    * @returns {Object} An object of data.
    */
    function getExpandoData(ownerDocument) {
    var data = expandoData[ownerDocument[expando]];
    if (!data) {
    data = {};
    expanID++;
    ownerDocument[expando] = expanID;
    expandoData[expanID] = data;
    }
    return data;
    }

    /**
    * returns a shived element for the given nodeName and document
    * @memberOf html5
    * @param {String} nodeName name of the element
    * @param {Document|DocumentFragment} ownerDocument The context document.
    * @returns {Object} The shived element.
    */
    function createElement(nodeName, ownerDocument, data){
    if (!ownerDocument) {
    ownerDocument = document;
    }
    if(supportsUnknownElements){
    return ownerDocument.createElement(nodeName);
    }
    if (!data) {
    data = getExpandoData(ownerDocument);
    }
    var node;

    if (data.cache[nodeName]) {
    node = data.cache[nodeName].cloneNode();
    } else if (saveClones.test(nodeName)) {
    node = (data.cache[nodeName] = data.createElem(nodeName)).cloneNode();
    } else {
    node = data.createElem(nodeName);
    }

    // Avoid adding some elements to fragments in IE < 9 because
    // * Attributes like `name` or `type` cannot be set/changed once an element
    // is inserted into a document/fragment
    // * Link elements with `src` attributes that are inaccessible, as with
    // a 403 response, will cause the tab/window to crash
    // * Script elements appended to…[Read more]

    0
  • Replying to comment by: Tylou Officielle

    ಠ_ಠ

    1
    View
  • Replying to comment by: FluffE
    7399_0-44292100-1603563209_0aab6672-2dcf-487b

    He is in your house, i pick 911

    0
    View
  • Replying to comment by: // Flashlock AnimatorPew pew.
    1493_0-04734400-1603564451_beam-effec

    mega brimstone be like

    0
    View
  • Load More