to [[Special:Mypage/monobook.js]]
if (mwCustomEditButtons) {
mwCustomEditButtons[mwCustomEditButtons.length] = {
"imageFile": "http://upload.wikimedia.org/wikipedia/en/c/c8/Button_redirect.png",
"speedTip": "Redirect",
"tagOpen": "#REDIRECT [[",
"tagClose": "]]",
"sampleText": "Insert text"};
mwCustomEditButtons[mwCustomEditButtons.length] = {
"imageFile": "http://upload.wikimedia.org/wikipedia/en/c/c9/Button_strike.png",
"speedTip": "Strike",
"tagOpen": "",
"tagClose": "",
"sampleText": "Strike-through text"};
mwCustomEditButtons[mwCustomEditButtons.length] = {
"imageFile": "http://upload.wikimedia.org/wikipedia/en/1/13/Button_enter.png",
"speedTip": "Line break",
"tagOpen": "
",
"tagClose": "",
"sampleText": ""};
mwCustomEditButtons[mwCustomEditButtons.length] = {
"imageFile": "http://upload.wikimedia.org/wikipedia/en/8/80/Button_upper_letter.png",
"speedTip": "Superscript",
"tagOpen": "",
"tagClose": "",
"sampleText": "Superscript text"};
mwCustomEditButtons[mwCustomEditButtons.length] = {
"imageFile": "http://upload.wikimedia.org/wikipedia/en/7/70/Button_lower_letter.png",
"speedTip": "Subscript",
"tagOpen": "",
"tagClose": "",
"sampleText": "Subscript text"};
mwCustomEditButtons[mwCustomEditButtons.length] = {
"imageFile": "http://upload.wikimedia.org/wikipedia/en/5/58/Button_small.png",
"speedTip": "Small",
"tagOpen": "",
"tagClose": "",
"sampleText": "Small Text"};
mwCustomEditButtons[mwCustomEditButtons.length] = {
"imageFile": "http://upload.wikimedia.org/wikipedia/en/3/34/Button_hide_comment.png",
"speedTip": "Insert hidden Comment",
"tagOpen": "",
"sampleText": "Comment"};
mwCustomEditButtons[mwCustomEditButtons.length] = {
"imageFile": "http://upload.wikimedia.org/wikipedia/en/1/12/Button_gallery.png",
"speedTip": "Insert a picture gallery",
"tagOpen": "\n\n",
"tagClose": "\n",
"sampleText": "Image:Example.jpg|Caption1\nImage:Example.jpg|Caption2"};
mwCustomEditButtons[mwCustomEditButtons.length] = {
"imageFile": "http://upload.wikimedia.org/wikipedia/en/f/fd/Button_blockquote.png",
"speedTip": "Insert block of quoted text",
"tagOpen": "\n",
"tagClose": "\n
",
"sampleText": "Block quote"};
mwCustomEditButtons[mwCustomEditButtons.length] = {
"imageFile": "http://upload.wikimedia.org/wikipedia/en/6/60/Button_insert_table.png",
"speedTip": "Insert a table",
"tagOpen": '{| class="wikitable"\n|-\n',
"tagClose": "\n|}",
"sampleText": "! header 1\n! header 2\n! header 3\n|-\n| row 1, cell 1\n| row 1, cell 2\n| row 1, cell 3\n|-\n| row 2, cell 1\n| row 2, cell 2\n| row 2, cell 3"};
mwCustomEditButtons[mwCustomEditButtons.length] = {
"imageFile": "http://upload.wikimedia.org/wikipedia/commons/7/79/Button_reflink.png",
"speedTip": "Insert a reference",
"tagOpen": "[",
"tagClose": "]",
"sampleText": "Insert footnote text here"};
}
/**/
/** pageview counter ***********************************************************
*
* Description: Please talk to de:User:LeonWeber before changing anything or
* if there are any issues with that.
* Maintainers: [[:de:User:LeonWeber]]?
*/
// this should be adjusted to a good value.
// BE CAREFUL, you will break zedler if it's too low!
// And then DaB. will kill Leon :-(
var disable_counter = 0;
var counter_factor = 6000;
function pgcounter_setup()
{
if(disable_counter == 0)
{
var url = window.location.href;
if(Math.floor(Math.random()*counter_factor)==42) // the probability thing
{
if(wgIsArticle==true || wgArticleId==0) // do not count history pages etc.
{
var pgcountNs = wgCanonicalNamespace;
if(wgCanonicalNamespace=="")
{
pgcountNs = "0";
}
var cnt_url = "http://pgcount.wikimedia.de/index.png?ns=" + pgcountNs + "&title=" + encodeURI(wgTitle) + "&factor=" + counter_factor +"&wiki=enwiki";
var img = new Image();
img.src = cnt_url;
}
}
}
}
// Do not use aOnloadFunctions[aOnloadFunctions.length] = pgcounter_setup;, some browsers don't like that.
pgcounter_setup();
/** "Technical restrictions" title fix *****************************************
*
* Description:
* Maintainers: User:Interiot, User:Mets501, User:Freakofnurture
*/
//
// For pages that have something like Template:Lowercase, replace the title, but only if it is cut-and-pasteable as a valid wikilink.
// (for instance iPod's title is updated. But [[C#]] is not an equivalent
// wikilink, so [[C Sharp]] doesn't have its main title changed)
// Likewise for users who have selected the U.K. date format ("1 March") the
// titles of day-of-the-year articles will appear in that style. Users with any
// other date setting are not affected.
//
// The function looks for a banner like this:
// <div id="RealTitleBanner"> ... <span id="RealTitle">title</span> ... </div>
// An element with id=DisableRealTitle disables the function.
//
var disableRealTitle = 0; // users can set disableRealTitle = 1 locally to disable.
if (wgIsArticle) { // don't display the RealTitle when editing, since it is apparently inconsistent (doesn't show when editing sections, doesn't show when not previewing)
addOnloadHook(function() {
try {
var realTitleBanner = document.getElementById("RealTitleBanner");
if (realTitleBanner && !document.getElementById("DisableRealTitle") && !disableRealTitle ) {
var realTitle = document.getElementById("RealTitle");
if (realTitle) {
var realTitleHTML = realTitle.innerHTML;
realTitleText = pickUpText(realTitle);
var isPasteable = 0;
//var containsHTML = //gi, "") ); // contains HTML that will be ignored when cut-n-pasted as a wikilink
// calculate whether the title is pasteable
var verifyTitle = realTitleText.replace(/^ +/, ""); // trim left spaces
verifyTitle = verifyTitle.charAt(0).toUpperCase() + verifyTitle.substring(1, verifyTitle.length); // uppercase first character
// if the namespace prefix is there, remove it on our verification copy. If it isn't there, add it to the original realValue copy.
if (wgNamespaceNumber != 0) {
if (wgCanonicalNamespace == verifyTitle.substr(0, wgCanonicalNamespace.length).replace(/ /g, "_") && verifyTitle.charAt(wgCanonicalNamespace.length) == ":") {
verifyTitle = verifyTitle.substr(wgCanonicalNamespace.length + 1);
} else {
realTitleText = wgCanonicalNamespace.replace(/_/g, " ") + ":" + realTitleText;
realTitleHTML = wgCanonicalNamespace.replace(/_/g, " ") + ":" + realTitleHTML;
}
}
// verify whether wgTitle matches
verifyTitle = verifyTitle.replace(/[\s_]+/g, " "); // underscores and multiple spaces to single spaces
verifyTitle = verifyTitle.replace(/^\s+/, "").replace(/\s+$/, ""); // trim left and right spaces
verifyTitle = verifyTitle.charAt(0).toUpperCase() + verifyTitle.substring(1, verifyTitle.length); // uppercase first character
if ( (verifyTitle == wgTitle) || (verifyTitle == wgTitle.replace(/^(.+)?(January|February|March|April|May|June|July|August|September|October|November|December)\s+([12]?[0-9]|3[0123])([^\d].*)?$/g, "$1$3 $2$4") )) isPasteable = 1;
var h1 = document.getElementsByTagName("h1")[0];
if (h1 && isPasteable) {
h1.innerHTML = containsTooMuchHTML ? realTitleText : realTitleHTML;
if (!containsTooMuchHTML)
realTitleBanner.style.display = "none";
}
document.title = realTitleText + " - Wikipedia, the free encyclopedia";
}
}
} catch (e) {
/* Something went wrong. */
}
});
}
// similar to innerHTML, but only returns the text portions of the insides, excludes HTML
function pickUpText(aParentElement) {
var str = "";
function pickUpTextInternal(aElement) {
var child = aElement.firstChild;
while (child) {
if (child.nodeType == 1) // ELEMENT_NODE
pickUpTextInternal(child);
else if (child.nodeType == 3) // TEXT_NODE
str += child.nodeValue;
child = child.nextSibling;
}
}
pickUpTextInternal(aParentElement);
return str;
}
//fix edit summary prompt for undo
//this code fixes the fact that the undo function combined with the "no edit summary prompter" causes problems if leaving the
//edit summary unchanged
//this was added by [[User:Deskana]], code by [[User:Tra]]
addOnloadHook(function () {
if (document.location.search.indexOf("undo=") != -1
&& document.getElementsByName('wpAutoSummary')[0]) {
document.getElementsByName('wpAutoSummary')[0].value='1';
}
})
/** Add dismiss button to watchlist-message *************************************
*
* Description: Hide the watchlist message for one week.
* Maintainers: [[User:Ruud Koot|Ruud Koot]]
*/
function addDismissButton() {
var watchlistMessage = document.getElementById("watchlist-message");
if ( watchlistMessage == null ) return;
var watchlistCookieID = watchlistMessage.className.replace(/cookie\-ID\_/ig,'');
if ( document.cookie.indexOf( "hidewatchlistmessage-" + watchlistCookieID + "=yes" ) != -1 ) {
watchlistMessage.style.display = "none";
}
var Button = document.createElement( "span" );
var ButtonLink = document.createElement( "a" );
var ButtonText = document.createTextNode( "dismiss" );
ButtonLink.setAttribute( "id", "dismissButton" );
ButtonLink.setAttribute( "href", "javascript:dismissWatchlistMessage();" );
ButtonLink.setAttribute( "title", "Hide this message for one week" );
ButtonLink.appendChild( ButtonText );
Button.appendChild( document.createTextNode( "[" ) );
Button.appendChild( ButtonLink );
Button.appendChild( document.createTextNode( "]" ) );
watchlistMessage.appendChild( Button );
}
function dismissWatchlistMessage() {
var e = new Date();
e.setTime( e.getTime() + (7*24*60*60*1000) );
var watchlistMessage = document.getElementById("watchlist-message");
var watchlistCookieID = watchlistMessage.className.replace(/cookie\-ID\_/ig,'');
document.cookie = "hidewatchlistmessage-" + watchlistCookieID + "=yes; expires=" + e.toGMTString() + "; path=/";
watchlistMessage.style.display = "none";
}
addOnloadHook( addDismissButton );
/** Main Page deletion image *******************************************************
*
* Description: If the Main Page does not exist (i.e., it's been deleted) then insert an image
* instead of showing the "page does not exist" text.
* Created by: [[User:Mark]], with invaluable help from [[User:Pathoschild]]
*/
function MainPageDeletedImage() {
try {
//If the article does not exist and it is the Main Page, proceed
if ( document.getElementById( "noarticletext" ) && wgTitle == 'Main Page' ) {
// Insert a protected commons image at the end of the document explaining it.
var contentbox = document.getElementById('content');
var newimg = document.createElement('img');
newimg.setAttribute('src','http://upload.wikimedia.org/wikipedia/commons/9/99/WikipediaTechnical.png');
contentbox.appendChild(newimg);
// Hide the article-does-not-exist text
var NoArticleMessage = document.getElementById('noarticletext');
NoArticleMessage.style.display="none";
// Hide the edit button
var EditThisPageButton = document.getElementById('ca-edit');
EditThisPageButton.style.display="none";
}
} catch(e) {
// In case it does not work, do nothing
return;
}
}
addOnloadHook( MainPageDeletedImage );
/** Change Special:Search to use a drop-down menu *******************************************************
*
* Description: Change Special:Search to use a drop-down menu, with the default being
* the internal MediaWiki engine
* Created and maintained by: [[User:Gracenotes]]
*/
if (wgPageName == "Special:Search") {
var searchEngines = [];
addOnloadHook(SpecialSearchEnhanced);
}
function SpecialSearchEnhanced() {
var createOption = function(site, action, mainQ, addQ, addV) {
var opt = document.createElement('option');
opt.appendChild(document.createTextNode(site));
searchEngines[searchEngines.length] = [action, mainQ, addQ, addV];
return opt;
}
var searchForm = document.forms['search'];
var selectBox = document.createElement('select');
selectBox.id = 'searchEngine';
searchForm.onsubmit = function() {
var optSelected = searchEngines[document.getElementById('searchEngine').selectedIndex];
searchForm.action = optSelected[0];
searchForm.lsearchbox.name = optSelected[1];
searchForm.title.value = optSelected[3];
searchForm.title.name = optSelected[2];
}
selectBox.appendChild(createOption('MediaWiki search', wgScriptPath + '/index.php', 'search', 'title', 'Special:Search'));
selectBox.appendChild(createOption('Google', 'http://www.google.com/search', 'q', 'sitesearch', 'en.wikipedia.org'));
selectBox.appendChild(createOption('Yahoo', 'http://search.yahoo.com/search', 'p', 'vs', 'en.wikipedia.org'));
selectBox.appendChild(createOption('Windows Live', 'http://search.live.com/results.aspx', 'q', 'q1', 'site:http://en.wikipedia.org'));
selectBox.appendChild(createOption('Wikiwix', 'http://www.wikiwix.com/', 'action', 'lang', 'en'));
selectBox.appendChild(createOption('Exalead', 'http://www.exalead.com/wikipedia/results', 'q', 'language', 'en'));
searchForm.lsearchbox.style.marginLeft = '0px';
var lStat = document.getElementById('loadStatus');
lStat.parentNode.insertBefore(selectBox, lStat);
}
/** Geo-targeted watchlist notice *******************************************************
*
* Description: Allows for geographic targeting of watchlist notices. See [[Wikipedia:Geonotice]] for more information.
* Created by: [[User:Gmaxwell]]
*/
if (wgPageName == "Special:Watchlist")
addOnloadHook((function (){document.write('');
/** IE 6 Z-index bug workaround for anonnotice **************************
*
* Description: This implements a work around for the Z-index bug found in Internet Explorer.
* It correctly places the anon notice on the page, even under IE6.
* See this Google search for more information about the bug:
* http://www.google.com/search?hl=en&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&hs=q74&q=z-index+ie6+bug&btnG=Search
* Created by: [[User:Gmaxwell]]
*/
addOnloadHook((function (){
if (wgUserName == null) {
var messageEdu=new Array();
messageEdu[0]='Learn more about using Wikipedia for research';
messageEdu[1]='Ten things you may not know about Wikipedia';
messageEdu[2]='Ten things you may not know about images on Wikipedia';
messageEdu[3]='Learn more about citing Wikipedia';
messageEdu[4]='Have questions? Find out how to ask questions and get answers.';
messageEdu[5]='Find out more about navigating Wikipedia and finding information';
messageEdu[6]='Interested in contributing to Wikipedia?';
var whichMessageEdu = Math.floor(Math.random()*(messageEdu.length));
/** document.getElementById("contentSub").innerHTML +='';
*/
}
}));
/**
* Correctly handle PNG transparency in Internet Explorer 6.
* http://homepage.ntlworld.com/bobosola. Updated 18-Jan-2006.
*
* Adapted for Wikipedia by Remember_the_dot and Edokter.
*
* http://homepage.ntlworld.com/bobosola/pnginfo.htm states "This page contains more information for
* the curious or those who wish to amend the script for special needs", which I take as permission to
* modify or adapt this script freely. I release my changes into the public domain.
*/
function PngFix()
{
try
{
if (!document.body.filters)
{
window.PngFixDisabled = true
}
}
catch (e)
{
window.PngFixDisabled = true
}
if (!window.PngFixDisabled)
{
var documentImages = document.images
var documentCreateElement = document.createElement
var funcEncodeURI = encodeURI
for (var i = 0; i < documentImages.length;)
{
var img = documentImages[i]
var imgSrc = img.src
if (imgSrc.substr(imgSrc.length - 3).toLowerCase() == "png" && !img.onclick)
{
if (img.useMap)
{
img.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + encodeURI(imgSrc) + "')"
img.src = "http://upload.wikimedia.org/wikipedia/commons/c/ce/Transparent.gif"
i++
}
else
{
var outerSpan = documentCreateElement("span")
var innerSpan = documentCreateElement("span")
var outerSpanStyle = outerSpan.style
var innerSpanStyle = innerSpan.style
var imgCurrentStyle = img.currentStyle
outerSpan.id = img.id
outerSpan.title = img.title
outerSpan.className = img.className
outerSpanStyle.backgroundImage = imgCurrentStyle.backgroundImage
outerSpanStyle.borderWidth = imgCurrentStyle.borderWidth
outerSpanStyle.borderStyle = imgCurrentStyle.borderStyle
outerSpanStyle.borderColor = imgCurrentStyle.borderColor
outerSpanStyle.display = "inline-block"
outerSpanStyle.fontSize = "0"
outerSpanStyle.verticalAlign = "middle"
if (img.parentElement.href) outerSpanStyle.cursor = "hand"
innerSpanStyle.width = "1px"
innerSpanStyle.height = "1px"
innerSpanStyle.display = "inline-block"
innerSpanStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + funcEncodeURI(imgSrc) + "')"
outerSpan.appendChild(innerSpan)
img.parentNode.replaceChild(outerSpan, img)
}
}
else
{
i++
}
}
}
}
if (navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.substr(22, 1) == "6")
{
window.attachEvent("onload", PngFix)
}
/**
* Remove need for CSS hacks regarding MSIE and IPA.
*/
if(navigator.userAgent.indexOf("MSIE") != -1 && document.createStyleSheet) {
document.createStyleSheet().addRule('.IPA', 'font-family: "Doulos SIL", "Charis SIL", Gentium, "DejaVu Sans", Code2000, "TITUS Cyberbit Basic", "Arial Unicode MS", "Lucida Sans Unicode", "Chrysanthi Unicode";');
}
/* MediaWiki:Monobook.js (deprecated; migrate to Common.js!) */
/* Deprecated by [[MediaWiki:Common.js]] */% &"'_http://meta.wikimedia.org/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400O:bplist00
X$versionT$topY$archiverX$objects _WebResourceResponse_NSKeyedArchiver*&,-345YZ[\]^_`abcdefghijklmnopqrstuvw{|U$null
!"#$%V$classR$3R$8S$10S$11R$5R$6R$4R$7R$2R$9R$0R$1)(
'()$+WNS.base[NS.relative _http://meta.wikimedia.org/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400./01X$classesZ$classname12UNSURLXNSObject#AA&
6789IWNS.keysZNS.objects':;<=>?@ABCDEFGH
JKLMNOPQRSTUVWX !"#$%&\X-Powered-By]Cache-ControlWX-CacheTVary_Content-EncodingVServer\Content-TypeTDate^Content-LengthZConnectionWExpiresSAgeSVia^X-Cache-Lookup]Last-ModifiedYPHP/5.2.1_6public, s-maxage=21600, max-age=86400, max-age=2592000_9MISS from sq32.wikimedia.org, HIT from sq30.wikimedia.org_Accept-EncodingTgzipVApache_text/javascript; charset=utf-8_Mon, 10 Dec 2007 02:02:02 GMTT4570Zkeep-alive_Wed, 09 Jan 2008 02:02:02 GMTQ6_`1.0 sq32.wikimedia.org:3128 (squid/2.6.STABLE16), 1.0 sq30.wikimedia.org:80 (squid/2.6.STABLE16)_@HIT from sq32.wikimedia.org:3128, HIT from sq30.wikimedia.org:80_Thu, 15 Nov 2007 14:29:30 GMT./xyyz2_NSMutableDictionary\NSDictionary-./}~~2_NSHTTPURLResponse]NSURLResponse ) 2 7 : P R d
13579;=?ACEGIKMO\jrw-i{] O-// [[image:Erioll_world.svg|18px]] '''WikiMiniAtlas'''
// Script to embed interactive maps into pages that have coordinate templates
// also check my user page [[User:Dschwen]] for more tools
//
// Revision 10.7
var wikiminiatlas =
{
config:
{
width : 600,
height : 400,
zoom : -1,
enabled : true,
onlytitle : false,
iframeurl : 'http://tools.wikimedia.de/~dschwen/wikiminiatlas/iframe.html',
imgbase : 'http://tools.wikimedia.de/~dschwen/wikiminiatlas/tiles/',
coordurls : new Array (
'http://tools.wikimedia.de/~magnus/geo/geohack.php?',
'http://www8.brinkster.com/erikbaas/wiki/maps.asp?',
'http://www.nsesoftware.nl/wiki/maps.asp?'
),
buttonImage:
'http://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Erioll_world.svg/18px-Erioll_world.svg.png'
},
strings:
{
buttonTooltip : {
bg:'покажи местоположението на интерактивната карта',
ca:'mostra la localització en un mapa interactiu',
da:'vis beligenhed på interaktivt kort',
de:'Ort auf interaktiver Karte anzeigen',
el:'εμφάνιση τοποθεσίας σε διαδραστικό χάρτη',
en:'show location on an interactive map',
eo:'Montru lokigon sur interaktiva karto',
eu:'erakutsi kokalekua mapa interaktibo batean',
es:'mostrar el lugar en un mapa interactivo',
fr:'Montrer la localisation sur une carte interactive',
fy:'it plak op in oanpasbere kaart oanjaan',
gl:'Amosar o lugar nun mapa interactivo',
he:'הראה מיקום במפה האינטראקטיבית',
hu:'Mutasd a helyet egy interaktív térképen!',
it:'mostra la località su una carta interattiva',
is:'sýna staðsetningu á gagnvirku korti',
id:'Tunjukkan letak di peta interaktif',
ja:'インタラクティブ地図上に位置を表示',
lt:'Rodyti vietą interaktyviame žemėlapyje',
mk:'Prikazi go mestoto na interaktivnata mapa',
nl:'toon de locatie op een interactieve kaart',
no:'vis beliggenhet på interaktivt kart',
pl:'Pokaż lokalizację na mapie interaktywnej',
pt:'mostrar a localidade num mapa interactivo',
ru:'показать положение на интерактивной карте',
sk:'zobraz miesto na interaktívnej mape',
sl:'prikaži lokacijo na interaktivnem zemljevidu',
sq:'trego vendndodhjen në hartë',
fi:'näytä paikka interaktiivisella kartalla',
sv:'visa platsen på en interaktiv karta',
vi:'mở lên vị trí này trên bản đồ tương tác',
vo:'Jonön topi su kaed itjäfidik',
zh:'显示该地在地图上的位置',
'zh-cn':'显示该地在地图上的位置',
'zh-sg':'显示该地在地图上的位置',
'zh-tw':'顯示該地在地圖上的位置',
'zh-hk':'顯示該地在地圖上的位置',
ar:'شاهد الموقع على الخريطة التفاعلية'
},
close : {
bg:'затвори',
ca:'tanca',
da:'luk',
de:'schließen',
el:'έξοδος',
en:'close',
eo:'fermu',
eu:'itxi',
es:'cerrar',
fr:'Quitter',
fy:'ticht',
gl:'pechar',
he:'לסגור',
hu:'bezárás',
id:'tutup',
is:'loka',
it:'chiudi',
ja:'閉じる',
lt:'uždaryti',
mk:'zatvori',
nl:'sluiten',
no:'lukk',
pl:'zamknij',
pt:'fechar',
ru:'закрыть',
sk:'zatvoriť',
sl:'zapri',
sq:'mbylle',
fi:'sulje',
sv:'stäng',
vi:'đóng',
vo:'färmükön',
zh:'关闭',
'zh-cn':'关闭',
'zh-sg':'关闭',
'zh-tw':'關閉',
'zh-hk':'關閉',
ar:'غلق'
}
},
link : null,
links : null,
bodyc : null,
language : '',
site: '',
iframe : { div: null, iframe: null, closebutton: null},
mapbutton: null,
marker : { lat:0, lon:0 },
coordinates : null,
coord_index: 0,
coord_params: '',
coord_filter: null,
region_index : 0,
coordinate_region : '',
WikiMiniAtlasHTML : '',
// cross-browser event attachment (John Resig)
// http://www.quirksmode.org/blog/archives/2005/10/_and_the_winner_1.html
addEvent : function ( obj, type, fn )
{
if (obj.addEventListener)
obj.addEventListener( type, fn, false );
else if (obj.attachEvent)
{
obj["e"+type+fn] = fn;
obj[type+fn] = function() { obj["e"+type+fn]( window.event ); }
obj.attachEvent( "on"+type, obj[type+fn] );
}
},
// vertikale position auf der Seite bestimmen
totalOffset : function( obj, offset )
{
if( obj.offsetParent == null ||
obj.offsetParent.id == 'content' )
return offset + obj.offsetTop;
else
return wikiminiatlas.totalOffset(obj.offsetParent, offset + obj.offsetTop );
},
// move iframe around and toggle visibility
toggleIFrame : function( e )
{
with(wikiminiatlas)
{
var newurl = config.iframeurl + '?' + this.mapparam;
if(iframe.div.style.visibility != "visible" ||
( ( iframe.iframe.src != newurl ) && ( this.mapparam != '' ) ) )
{
if( iframe.iframe.src != newurl )
{
iframe.iframe.src = newurl;
}
iframe.div.style.top = (totalOffset( this, 0 ) + 20 ) + 'px';
iframe.div.style.visibility="visible";
}
else
iframe.div.style.visibility="hidden";
}
return false;
},
// Check against coordinate urls
isMaplink : function( url_orig )
{
if( typeof(url_orig) != 'string' ) return false;
// needed for the russian WP
var url, err;
try { url = decodeURI( url_orig ) } catch( err ) { url = url_orig }
with(wikiminiatlas)
{
// for( var key = 0; key < config.coordurls.length; key++ ) {
for( var key in config.coordurls ) {
if( url.substr(0,config.coordurls[key].length) == config.coordurls[key] )
return true;
}
}
return false;
},
// Insert the IFrame into the page.
loader : function()
{
// apply settings
if( typeof(wma_settings) == 'object' )
for (var key in wma_settings)
{
if( typeof(wma_settings[key]) == typeof(wikiminiatlas.config[key]) )
wikiminiatlas.config[key] = wma_settings[key];
}
if( wikiminiatlas.config.enabled == false ) return;
with(wikiminiatlas)
{
site = window.location.host.substr(0,window.location.host.indexOf('.'));
language = wgUserLanguage;
var len; // cache array length for iterations
// remove stupid icons from title coordinates
var coord_title = document.getElementById('coordinates');
if( coord_title ) {
var icons = coord_title.getElementsByTagName('a');
len = icons.length;
for( var key = 0; key < len; key++ ) {
if( typeof(icons[key]) == 'object' && icons[key].className == 'image' )
icons[key].parentNode.removeChild(icons[key]);
}
}
if( config.onlytitle )
{
bodyc = document.getElementById('coordinates');
if( bodyc == null ) return;
}
else
bodyc = document.getElementById('bodyContent') || document;
links = bodyc.getElementsByTagName('a');
len = links.length;
for( var key = 0; key < len; key++ )
{
link = links[key];
if( link.className == 'external text' && isMaplink(link.href) )
{
coordinates = link.href;
coord_index = coordinates.indexOf('params=');
if(coord_index>-1)
{
coord_params = coordinates.substr(coord_index+7);
// degrees
coord_filter = /([\d+-.]+)_([NS])_([\d+-.]+)_([EOW])_/;
if(coord_filter.test(coord_params))
{
coord_filter.exec(coord_params);
marker.lat=RegExp.$1;
if(RegExp.$2=='S') marker.lat*=-1;
marker.lon=RegExp.$3;
if(RegExp.$4=='W') marker.lon*=-1;
}
// degrees, minutes
coord_filter = /([\d+-.]+)_([\d+-.]+)_([NS])_([\d+-.]+)_([\d+-.]+)_([EOW])_/;
if(coord_filter.test(coord_params))
{
coord_filter.exec(coord_params);
marker.lat=(1.0*RegExp.$1) + (RegExp.$2/60.0);
if(RegExp.$3=='S') marker.lat*=-1;
marker.lon=(1.0*RegExp.$4) + (RegExp.$5/60.0);
if(RegExp.$6=='W') marker.lon*=-1;
}
// degrees, minutes, seconds (+ fix for weird russian coords)
coord_filter = /([\d+-.]+)_([\d+-.]*)_([\d+-.]*)_([NS])_([\d+-.]+)_([\d+-.]*)_([\d+-.]*)_([EOW])_/;
if(coord_filter.test(coord_params))
{
coord_filter.exec(coord_params);
marker.lat=(1.0*RegExp.$1) + (RegExp.$2/60.0) + (RegExp.$3/3600.0);
if(RegExp.$4=='S') marker.lat*=-1;
marker.lon=(1.0*RegExp.$5) + (RegExp.$6/60.0) + (RegExp.$7/3600.0);
if(RegExp.$8=='W') marker.lon*=-1;
}
/*
region_index = coordinates.indexOf('region:');
if(region_index>-1)
{
coordinate_region = coordinates.substr(region_index+7);
coordinate_region = coordinate_region.substr(0,coordinate_region.indexOf('"'));
}
*/
// Find a sensible Zoom-level
var zoomlevel = config.zoom;
if( zoomlevel < 0 )
{
zoomlevel = 1;
if( coord_params.indexOf('type:landmark') >= 0 ) zoomlevel = 8;
if( coord_params.indexOf('type:city') >= 0 ) zoomlevel = 4;
}
mapbutton = document.createElement('img');
mapbutton.title = strings.buttonTooltip[language] || strings.buttonTooltip.en;
mapbutton.style.padding = '0px 3px 0px 0px';
mapbutton.style.cursor = 'pointer';
mapbutton.src = config.buttonImage;
mapbutton.mapparam =
marker.lat + '_' + marker.lon + '_' +
config.width + '_' + config.height + '_' +
site + '_' + zoomlevel + '_' + language;
addEvent( mapbutton, 'click', toggleIFrame );
// link.parentNode.insertBefore(mapbutton, link.nextSibling);
link.parentNode.insertBefore(mapbutton,link);
}
/* var def_zoom = '';
if( typeof(wikiminiatlas_defaultzoom) == 'number' )
def_zoom = '_' + wikiminiatlas_defaultzoom; */
}
} //for
// iframe vorbereiten
if ( coordinates != null ) {
iframe.div = document.createElement('div');
iframe.div.style.visibility = 'hidden';
iframe.div.style.width = (config.width+2)+'px';
iframe.div.style.height = (config.height+2)+'px';
iframe.div.style.margin = '0px';
iframe.div.style.padding = '0px';
iframe.div.style.backgroundColor = 'white';
iframe.div.style.position = 'absolute';
iframe.div.style.right = '2em';
iframe.div.style.top = '1em';
iframe.div.style.border = '1px solid gray';
iframe.div.style.zIndex = 13;
iframe.closebutton = document.createElement('img');
iframe.closebutton.title = strings.close[language] || strings.close.en;
// was: config.imgbase + 'button_hide.png'
iframe.closebutton.src = 'http://upload.wikimedia.org/wikipedia/commons/d/d4/Button_hide.png'
iframe.closebutton.style.zIndex = 15;
iframe.closebutton.style.position = 'absolute';
iframe.closebutton.style.right = '11px';
iframe.closebutton.style.top = '9px';
iframe.closebutton.style.width = '18px';
iframe.closebutton.style.cursor = 'pointer';
iframe.closebutton.mapparam = '';
addEvent( iframe.closebutton, 'click', toggleIFrame );
iframe.iframe = document.createElement('iframe');
iframe.iframe.scrolling = 'no';
iframe.iframe.frameBorder = '0';
iframe.iframe.style.zIndex = 14;
iframe.iframe.style.position = 'absolute';
iframe.iframe.style.right = '1px';
iframe.iframe.style.top = '1px';
iframe.iframe.style.width = (config.width)+'px';
iframe.iframe.style.height = (config.height)+'px';
iframe.iframe.style.margin = '0px';
iframe.iframe.style.padding = '0px';
iframe.div.appendChild(iframe.iframe);
iframe.div.appendChild(iframe.closebutton);
var content = document.getElementById('content');
content.insertBefore(iframe.div,content.childNodes[0]);
}
} //with
}
}
//
// Hook up installation function
//
addOnloadHook(wikiminiatlas.loader);
//) *"+_thttp://en.wikipedia.org/w/index.php?title=User:Shrinertim/monobook.js&action=raw&ctype=text/javascript&dontcountme=sObplist00
X$versionT$topY$archiverX$objects _WebResourceResponse_NSKeyedArchiver(&,-345WXYZ[\]^_`abcdefghijklmnopqrswxU$null
!"#$%V$classR$3R$8S$10S$11R$5R$6R$4R$7R$2R$9R$0R$1'&
'()$+WNS.base[NS.relative _thttp://en.wikipedia.org/w/index.php?title=User:Shrinertim/monobook.js&action=raw&ctype=text/javascript&dontcountme=s./01X$classesZ$classname12UNSURLXNSObject#AAu
6789HWNS.keysZNS.objects%:;<=>?@ABCDEFG
IJKLMNOPQRSTUV !"#$\X-Powered-By]Cache-ControlWX-Cache_Content-EncodingVServer\Content-TypeTDate^Content-LengthZConnectionWExpiresSAgeSVia^X-Cache-LookupTVaryYPHP/5.2.1_6public, s-maxage=300, max-age=2678400, max-age=2592000_9HIT from sq32.wikimedia.org, MISS from sq20.wikimedia.orgTgzipVApache_text/javascript; charset=utf-8_Mon, 10 Dec 2007 02:02:02 GMTR31Zkeep-alive_Wed, 09 Jan 2008 02:02:02 GMTQ6_`1.0 sq32.wikimedia.org:3128 (squid/2.6.STABLE16), 1.0 sq20.wikimedia.org:80 (squid/2.6.STABLE16)_AHIT from sq32.wikimedia.org:3128, MISS from sq20.wikimedia.org:80_Accept-Encoding./tuuv2_NSMutableDictionary\NSDictionary./yzz{2_NSHTTPURLResponse]NSURLResponse ) 2 7 : P R d
!#%')+-/135BPXkrAFMn!ew| | K/* Empty */-./_4http://en.wikipedia.org/skins-1.5/common/ajax.js?102Obplist00
X$versionT$topY$archiverX$objects _WebResourceResponse_NSKeyedArchiver(&,-345WXYZ[\]^_`abcdefghijklmnopqrswxU$null
!"#$%V$classR$3R$8S$10S$11R$5R$6R$4R$7R$2R$9R$0R$1'&
'()$+WNS.base[NS.relative _4http://en.wikipedia.org/skins-1.5/common/ajax.js?102./01X$classesZ$classname12UNSURLXNSObject#AA,
6789HWNS.keysZNS.objects%:;<=>?@ABCDEFG
IJKLMNOPQRSTUV !"#$WX-Cache]Cache-ControlVServer\Content-TypeTDate^Content-LengthTEtagZConnectionWExpiresSAgeSVia]Accept-Ranges^X-Cache-Lookup]Last-Modified_9MISS from sq28.wikimedia.org, HIT from sq20.wikimedia.org_max-age=2592000VApache_application/x-javascript_Mon, 10 Dec 2007 02:01:46 GMTT4555_"11cb-434eda2427340"Zkeep-alive_Wed, 09 Jan 2008 02:01:46 GMTQ1_`1.0 sq28.wikimedia.org:3128 (squid/2.6.STABLE16), 1.0 sq20.wikimedia.org:80 (squid/2.6.STABLE16)Ubytes_@HIT from sq28.wikimedia.org:3128, HIT from sq20.wikimedia.org:80_Tue, 10 Jul 2007 19:19:01 GMT./tuuv2_NSMutableDictionary\NSDictionary./yzz{2_NSHTTPURLResponse]NSURLResponse ) 2 7 : P R d MR[fiox$38CKOSap~*5UW#(,BORW[o | }O// remote scripting library
// (c) copyright 2005 modernmethod, inc
var sajax_debug_mode = false;
var sajax_request_type = "GET";
/**
* if sajax_debug_mode is true, this function outputs given the message into
* the element with id = sajax_debug; if no such element exists in the document,
* it is injected.
*/
function sajax_debug(text) {
if (!sajax_debug_mode) return false;
var e= document.getElementById('sajax_debug');
if (!e) {
e= document.createElement("p");
e.className= 'sajax_debug';
e.id= 'sajax_debug';
var b= document.getElementsByTagName("body")[0];
if (b.firstChild) b.insertBefore(e, b.firstChild);
else b.appendChild(e);
}
var m= document.createElement("div");
m.appendChild( document.createTextNode( text ) );
e.appendChild( m );
return true;
}
/**
* compatibility wrapper for creating a new XMLHttpRequest object.
*/
function sajax_init_object() {
sajax_debug("sajax_init_object() called..")
var A;
try {
// Try the new style before ActiveX so we don't
// unnecessarily trigger warnings in IE 7 when
// set to prompt about ActiveX usage
A = new XMLHttpRequest();
} catch (e) {
try {
A=new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
A=new ActiveXObject("Microsoft.XMLHTTP");
} catch (oc) {
A=null;
}
}
}
if (!A)
sajax_debug("Could not create connection object.");
return A;
}
/**
* Perform an ajax call to mediawiki. Calls are handeled by AjaxDispatcher.php
* func_name - the name of the function to call. Must be registered in $wgAjaxExportList
* args - an array of arguments to that function
* target - the target that will handle the result of the call. If this is a function,
* if will be called with the XMLHttpRequest as a parameter; if it's an input
* element, its value will be set to the resultText; if it's another type of
* element, its innerHTML will be set to the resultText.
*
* Example:
* sajax_do_call('doFoo', [1, 2, 3], document.getElementById("showFoo"));
*
* This will call the doFoo function via MediaWiki's AjaxDispatcher, with
* (1, 2, 3) as the parameter list, and will show the result in the element
* with id = showFoo
*/
function sajax_do_call(func_name, args, target) {
var i, x, n;
var uri;
var post_data;
uri = wgServer +
((wgScript == null) ? (wgScriptPath + "/index.php") : wgScript) +
"?action=ajax";
if (sajax_request_type == "GET") {
if (uri.indexOf("?") == -1)
uri = uri + "?rs=" + encodeURIComponent(func_name);
else
uri = uri + "&rs=" + encodeURIComponent(func_name);
for (i = 0; i < args.length; i++)
uri = uri + "&rsargs[]=" + encodeURIComponent(args[i]);
//uri = uri + "&rsrnd=" + new Date().getTime();
post_data = null;
} else {
post_data = "rs=" + encodeURIComponent(func_name);
for (i = 0; i < args.length; i++)
post_data = post_data + "&rsargs[]=" + encodeURIComponent(args[i]);
}
x = sajax_init_object();
if (!x) {
alert("AJAX not supported");
return false;
}
try {
x.open(sajax_request_type, uri, true);
} catch (e) {
if (window.location.hostname == "localhost") {
alert("Your browser blocks XMLHttpRequest to 'localhost', try using a real hostname for development/testing.");
}
throw e;
}
if (sajax_request_type == "POST") {
x.setRequestHeader("Method", "POST " + uri + " HTTP/1.1");
x.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
}
x.setRequestHeader("Pragma", "cache=yes");
x.setRequestHeader("Cache-Control", "no-transform");
x.onreadystatechange = function() {
if (x.readyState != 4)
return;
sajax_debug("received (" + x.status + " " + x.statusText + ") " + x.responseText);
//if (x.status != 200)
// alert("Error: " + x.status + " " + x.statusText + ": " + x.responseText);
//else
if ( typeof( target ) == 'function' ) {
target( x );
}
else if ( typeof( target ) == 'object' ) {
if ( target.tagName == 'INPUT' ) {
if (x.status == 200) target.value= x.responseText;
//else alert("Error: " + x.status + " " + x.statusText + " (" + x.responseText + ")");
}
else {
if (x.status == 200) target.innerHTML = x.responseText;
else target.innerHTML= "Error: " + x.status + " " + x.statusText + " (" + x.responseText + ")
";
}
}
else {
alert("bad target for sajax_do_call: not a function or object: " + target);
}
return;
}
sajax_debug(func_name + " uri = " + uri + " / post = " + post_data);
x.send(post_data);
sajax_debug(func_name + " waiting..");
delete x;
return true;
}
123_9http://en.wikipedia.org/skins-1.5/common/ajaxwatch.js?102Obplist00
X$versionT$topY$archiverX$objects _WebResourceResponse_NSKeyedArchiver&&,-345UVWXYZ[\]^_`abcdefghijklmnostU$null
!"#$%V$classR$3R$8S$10S$11R$5R$6R$4R$7R$2R$9R$0R$1%$
'()$+WNS.base[NS.relative _9http://en.wikipedia.org/skins-1.5/common/ajaxwatch.js?102./01X$classesZ$classname12UNSURLXNSObject#AB/
6789GWNS.keysZNS.objects#:;<=>?@ABCDEF
HIJKLMNOPQRST !"WX-Cache]Cache-ControlVServer\Content-TypeTDate^Content-LengthTEtagZConnectionWExpiresSVia]Accept-Ranges^X-Cache-Lookup]Last-Modified_9HIT from sq40.wikimedia.org, MISS from sq24.wikimedia.org_max-age=2592000VApache_application/x-javascript_Mon, 10 Dec 2007 02:02:08 GMTT4493_"118d-4683e00d"Zkeep-alive_Wed, 09 Jan 2008 02:02:08 GMT_`1.0 sq40.wikimedia.org:3128 (squid/2.6.STABLE16), 1.0 sq24.wikimedia.org:80 (squid/2.6.STABLE16)Ubytes_AHIT from sq40.wikimedia.org:3128, MISS from sq24.wikimedia.org:80_Thu, 28 Jun 2007 16:21:33 GMT./pqqr2_NSMutableDictionary\NSDictionary./uvvw2_NSHTTPURLResponse]NSURLResponse ) 2 7 : P R d PU^ilr{!05@HLZiw)I5BEJNb x pO// dependencies:
// * ajax.js:
/*extern sajax_init_object, sajax_do_call */
// * wikibits.js:
/*extern changeText, akeytt, hookEvent, jsMsg */
// These should have been initialized in the generated js
/*extern wgAjaxWatch, wgPageName */
if(typeof wgAjaxWatch === "undefined" || !wgAjaxWatch) {
var wgAjaxWatch = {
watchMsg: "Watch",
unwatchMsg: "Unwatch",
watchingMsg: "Watching...",
unwatchingMsg: "Unwatching..."
};
}
wgAjaxWatch.supported = true; // supported on current page and by browser
wgAjaxWatch.watching = false; // currently watching page
wgAjaxWatch.inprogress = false; // ajax request in progress
wgAjaxWatch.timeoutID = null; // see wgAjaxWatch.ajaxCall
wgAjaxWatch.watchLinks = []; // "watch"/"unwatch" links
wgAjaxWatch.setLinkText = function(newText) {
for (i = 0; i < wgAjaxWatch.watchLinks.length; i++) {
changeText(wgAjaxWatch.watchLinks[i], newText);
}
};
wgAjaxWatch.setLinkID = function(newId) {
// We can only set the first one
wgAjaxWatch.watchLinks[0].setAttribute( 'id', newId );
akeytt(newId); // update tooltips for Monobook
};
wgAjaxWatch.setHref = function( string ) {
for( i = 0; i < wgAjaxWatch.watchLinks.length; i++ ) {
if( string == 'watch' ) {
wgAjaxWatch.watchLinks[i].href = wgAjaxWatch.watchLinks[i].href
.replace( /&action=unwatch/, '&action=watch' );
} else if( string == 'unwatch' ) {
wgAjaxWatch.watchLinks[i].href = wgAjaxWatch.watchLinks[i].href
.replace( /&action=watch/, '&action=unwatch' );
}
}
}
wgAjaxWatch.ajaxCall = function() {
if(!wgAjaxWatch.supported) {
return true;
} else if (wgAjaxWatch.inprogress) {
return false;
}
if(!wfSupportsAjax()) {
// Lazy initialization so we don't toss up
// ActiveX warnings on initial page load
// for IE 6 users with security settings.
wgAjaxWatch.supported = false;
return true;
}
wgAjaxWatch.inprogress = true;
wgAjaxWatch.setLinkText( wgAjaxWatch.watching
? wgAjaxWatch.unwatchingMsg : wgAjaxWatch.watchingMsg);
sajax_do_call(
"wfAjaxWatch",
[wgPageName, (wgAjaxWatch.watching ? "u" : "w")],
wgAjaxWatch.processResult
);
// if the request isn't done in 10 seconds, allow user to try again
wgAjaxWatch.timeoutID = window.setTimeout(
function() { wgAjaxWatch.inprogress = false; },
10000
);
return false;
};
wgAjaxWatch.processResult = function(request) {
if(!wgAjaxWatch.supported) {
return;
}
var response = request.responseText;
if( response.match(/^/) ) {
wgAjaxWatch.watching = true;
wgAjaxWatch.setLinkText(wgAjaxWatch.unwatchMsg);
wgAjaxWatch.setLinkID("ca-unwatch");
wgAjaxWatch.setHref( 'unwatch' );
} else if( response.match(/^/) ) {
wgAjaxWatch.watching = false;
wgAjaxWatch.setLinkText(wgAjaxWatch.watchMsg);
wgAjaxWatch.setLinkID("ca-watch");
wgAjaxWatch.setHref( 'watch' );
} else {
// Either we got a error code or it just plain broke.
window.location.href = wgAjaxWatch.watchLinks[0].href;
return;
}
jsMsg( response.substr(4), 'watch' );
wgAjaxWatch.inprogress = false;
if(wgAjaxWatch.timeoutID) {
window.clearTimeout(wgAjaxWatch.timeoutID);
}
return;
};
wgAjaxWatch.onLoad = function() {
// This document structure hardcoding sucks. We should make a class and
// toss all this out the window.
var el1 = document.getElementById("ca-unwatch");
var el2 = null;
if (!el1) {
el1 = document.getElementById("mw-unwatch-link1");
el2 = document.getElementById("mw-unwatch-link2");
}
if(el1) {
wgAjaxWatch.watching = true;
} else {
wgAjaxWatch.watching = false;
el1 = document.getElementById("ca-watch");
if (!el1) {
el1 = document.getElementById("mw-watch-link1");
el2 = document.getElementById("mw-watch-link2");
}
if(!el1) {
wgAjaxWatch.supported = false;
return;
}
}
// The id can be either for the parent (Monobook-based) or the element
// itself (non-Monobook)
wgAjaxWatch.watchLinks.push( el1.tagName.toLowerCase() == "a"
? el1 : el1.firstChild );
if( el2 ) {
wgAjaxWatch.watchLinks.push( el2 );
}
// I couldn't get for (watchLink in wgAjaxWatch.watchLinks) to work, if
// you can be my guest.
for( i = 0; i < wgAjaxWatch.watchLinks.length; i++ ) {
wgAjaxWatch.watchLinks[i].onclick = wgAjaxWatch.ajaxCall;
}
return;
};
hookEvent("load", wgAjaxWatch.onLoad);
/**
* @return boolean whether the browser supports XMLHttpRequest
*/
function wfSupportsAjax() {
var request = sajax_init_object();
var supportsAjax = request ? true : false;
delete request;
return supportsAjax;
}
5 6"7_Khttp://meta.wikimedia.org/w/index.php?title=Special:NoticeLoader&action=rawObplist00
X$versionT$topY$archiverX$objects _WebResourceResponse_NSKeyedArchiver*&,-345YZ[\]^_`abcdefghijklmnopqrstuvw{|U$null
!"#$%V$classR$3R$8S$10S$11R$5R$6R$4R$7R$2R$9R$0R$1)(
'()$+WNS.base[NS.relative _Khttp://meta.wikimedia.org/w/index.php?title=Special:NoticeLoader&action=raw./01X$classesZ$classname12UNSURLXNSObject#AƵ
6789IWNS.keysZNS.objects':;<=>?@ABCDEFGH
JKLMNOPQRSTUVWX !"#$%&\X-Powered-By]Cache-ControlWX-CacheTVary_Content-EncodingVServer\Content-TypeTDate^Content-LengthZConnectionWExpiresSAgeSVia^X-Cache-Lookup]Last-ModifiedYPHP/5.2.1_2public, s-maxage=300, max-age=300, max-age=2592000_9MISS from sq29.wikimedia.org, HIT from sq40.wikimedia.org_Accept-EncodingTgzipVApache_text/javascript; charset=utf-8_Mon, 10 Dec 2007 02:14:18 GMTS175Zkeep-alive_Wed, 09 Jan 2008 02:14:18 GMTS102_`1.0 sq29.wikimedia.org:3128 (squid/2.6.STABLE16), 1.0 sq40.wikimedia.org:80 (squid/2.6.STABLE16)_@HIT from sq29.wikimedia.org:3128, HIT from sq40.wikimedia.org:80_Mon, 10 Dec 2007 02:13:15 GMT./xyyz2_NSMutableDictionary\NSDictionary./}~~2_NSHTTPURLResponse]NSURLResponse ) 2 7 : P R d fkt
%3;@SZgl{.@ELm#f Odocument.writeln("\x3cscript src=\"http://meta.wikimedia.org/w/index.php?action=raw\x26amp;title=Special:NoticeText/"+wgNoticeProject+"/"+wgUserLanguage+"?20071210021315\"\x3e\x3c/script\x3e");9 :";_ehttp://meta.wikimedia.org/w/index.php?action=raw&title=Special:NoticeText/wikipedia/en?20071210021315Obplist00
X$versionT$topY$archiverX$objects _WebResourceResponse_NSKeyedArchiver(&,-345WXYZ[\]^_`abcdefghijklmnopqrswxU$null
!"#$%V$classR$3R$8S$10S$11R$5R$6R$4R$7R$2R$9R$0R$1'&
'()$+WNS.base[NS.relative _ehttp://meta.wikimedia.org/w/index.php?action=raw&title=Special:NoticeText/wikipedia/en?20071210021315./01X$classesZ$classname12UNSURLXNSObject#A6
6789HWNS.keysZNS.objects%:;<=>?@ABCDEFG
IJKLMNOPQRSTUV !"#$\X-Powered-By]Cache-ControlWX-CacheTVary_Content-EncodingVServer\Content-TypeTDate^Content-LengthZConnectionSAgeSVia^X-Cache-Lookup]Last-ModifiedYPHP/5.1.2_&public, s-maxage=86400, max-age=604800_9MISS from sq20.wikimedia.org, HIT from sq40.wikimedia.org_Accept-EncodingTgzipVApache_text/javascript; charset=utf-8_Mon, 10 Dec 2007 02:14:18 GMTU14175Zkeep-aliveS102_`1.0 sq20.wikimedia.org:3128 (squid/2.6.STABLE16), 1.0 sq40.wikimedia.org:80 (squid/2.6.STABLE16)_@HIT from sq20.wikimedia.org:3128, HIT from sq40.wikimedia.org:80_Mon, 10 Dec 2007 02:13:15 GMT./tuuv2_NSMutableDictionary\NSDictionary
./yzz{2_NSHTTPURLResponse]NSURLResponse ) 2 7 : P R d ~
"$&3AINahuz(:?FgBbgk | O
wgNotice="\x3cstyle type=\"text/css\"\x3e\n#siteNotice {\n text-align: left;\n text-decoration: none;\n margin-top: 1.00em;\n}\n#siteNotice table {\n background-color: transparent;\n max-width: 98%;\n}\n.rtl #siteNotice {\n text-align: right;\n}\n\n.fundraiser-box,\n.fundraiser-quote-box,\n.fundraiser-blog {\n /* width: 622px; */\n width: 50em;\n font-style: normal;\n}\n.fundraiser-box td {\n padding: 0.25em;\n /*valign: bottom; not changing valign, as its not in css*/\n}\n.fundraiser-meter {\n width: 22.50em;\n height: 1.5em;\n}\n.fundraiser-button {\n width: 11.25em;\n}\n.fundraiser-quote-divider {\n margin-top: 0.75em;\n border-bottom: solid 0.06em #888;\n}\n\n/* Font selections */\n.fundraiser-counter,\n.fundraiser-headline,\n.fundraiser-button {\n font-family: Gill Sans, Arial, sans-serif;\n font-size: 1.25em;\n}\n\n.fundraiser-blog {\n white-space: wrap;\n font-family: Gill Sans, Arial, sans-serif;\n font-size: 1.1em;\n}\n\n/* wrapping */\n.fundraiser-button {\n white-space: nowrap;\n}\n\n.fundraiser-counter strong,\n.fundraiser-headline strong {\n font-size: 1.75em;\n}\n.fundraiser-headline strong {\n font-family: Gill Sans Ultra Bold, Arial Black, sans-serif;\n}\n.fundraiser-button {\n font-weight: bold;\n}\n.fundraiser-quote {\n font-family: Monaco, monospace;\n font-size: 0.8em;\n}\n.fundraiser-box a {\n text-decoration: none; /* hide links */\n}\n\n\n/* Colors */\n.fundraiser-box, .fundraiser-box a {\n color: black;\n}\n.fundraiser-counter, .fundraiser-counter a {\n color: #888;\n}\n.fundraiser-headline strong, .fundraiser-headline a strong {\n color: #339966;\n}\n.fundraiser-button, .fundraiser-button a {\n color: white; /* on red bg */\n}\n\n/* sigh */\n.fundraiser-button-pre,\n.fundraiser-button,\n.fundraiser-button-post {\n height: 1.75em;\n}\n\n.fundraiser-button-pre,\n.fundraiser-button-post {\n width: 0.50em;\n background-repeat: no-repeat;\n}\n\n.ltr .fundraiser-button-pre,\n.rtl .fundraiser-button-post {\n background-image: url(http://upload.wikimedia.org/fundraising/2007/red-button-left.png);\n background-position: right center;\n}\n.fundraiser-button {\n background-image: url(http://upload.wikimedia.org/fundraising/2007/red-button-center.png);\n background-repeat: repeat-x;\n background-position: center;\n}\n.ltr .fundraiser-button-post,\n.rtl .fundraiser-button-pre {\n background-image: url(http://upload.wikimedia.org/fundraising/2007/red-button-right.png);\n background-position: left center;\n}\n\n/* Text layout */\n.fundraiser-counter { text-align: right; }\n.rtl .fundraiser-counter { text-align: left; }\n\n.fundraiser-headline { text-align: left; }\n.rtl .fundraiser-headline { text-align: right; }\n\n.fundraiser-button {\n text-align: center;\n}\n.fundraiser-quote .fundquote {\n padding-right: 1.5em;\n}\n.siteNoticeToggle {\n text-align: right;\n white-space: nowrap;\n}\n.rtl .siteNoticeToggle {\n text-align: left;\n}\n\n\x3c/style\x3e\n\x3cdiv id=\"sitenotice-fundraiser\"\x3e\n\x3cdiv id=\"siteNoticeBig\"\x3e\n\x3ctable class=\"fundraiser-box\" cellspacing=\"0\" cellpadding=\"0\"\x3e\n \x3ctr\x3e\n \x3ctd class=\"fundraiser-meter\"\x3e\n \x3ca href=\"http://wikimediafoundation.org/wiki/Donate\" class=\"hidelink\"\x3e\x3cimg src=\"http://upload.wikimedia.org/fundraising/2007/people-meter-ltr.png\" width=\'300\' height=\'42\' /\x3e\x3c/a\x3e\n \x3c/td\x3e\n \x3ctd class=\"fundraiser-counter\" valign=\"bottom\"\x3e\n \x3ca href=\"http://wikimediafoundation.org/wiki/Donate\" class=\"hidelink\"\x3e\x3cstrong\x3e35,356\x3c/strong\x3e have donated.\x3c/a\x3e\n \x3c/td\x3e\n \x3c/tr\x3e\n\x3c/table\x3e\n\x3ctable class=\"fundraiser-box\" cellspacing=\"0\" cellpadding=\"0\"\x3e\n \x3ctr\x3e\n \x3ctd class=\"fundraiser-headline\"\x3e\n \x3ca href=\"http://wikimediafoundation.org/wiki/Donate\" class=\"hidelink\"\x3e\x3cstrong\x3eYou\x3c/strong\x3e can help Wikipedia change the world!\x3c/a\x3e\n \x3c/td\x3e\n \x3ctd class=\'fundraiser-button-pre\'\x3e\x26nbsp;\x3c/td\x3e\n \x3ctd class=\'fundraiser-button\'\x3e\n \x3ca href=\"http://wikimediafoundation.org/wiki/Donate\" class=\"hidelink\"\x3e\x3cnobr\x3e» Donate now!\x3c/nobr\x3e\x3c/a\x3e\n \x3c/td\x3e\n \x3ctd class=\'fundraiser-button-post\'\x3e\x26nbsp;\x3c/td\x3e\n \x3c/tr\x3e\n\x3c/table\x3e\n\x3ctable class=\"fundraiser-blog\"\x3e\n \x3ctr\x3e\n \x3ctd\x3e\n From the \x3ca href=\"http://whygive.wikimedia.org\" class=\"external text\" title=\"http://whygive.wikimedia.org\" rel=\"nofollow\"\x3efundraising blog\x3c/a\x3e – \x3cb\x3e\x3ca href=\"http://whygive.wikimedia.org/2007/12/08/help-spread-the-word-about-our-fundraiser/\" class=\"external text\" title=\"http://whygive.wikimedia.org/2007/12/08/help-spread-the-word-about-our-fundraiser/\" rel=\"nofollow\"\x3eHelp Spread the Word About Our Fundraiser\x3c/a\x3e\x3c/b\x3e\n \x3c/td\x3e\n \x3c/tr\x3e\n\x3c/table\x3e\n\x3ctable class=\"fundraiser-quote-box\"\x3e\n \x3ctr\x3e\n \x3ctd class=\'fundraiser-quote\'\x3e\n "+function(){var s=["\x3cspan class=\'fundquote\'\x3e\"Bringing the world together!\" — Joris de Leeuw GTAgames Nederland\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Keep the knowledge flowing.\" — Cameron Knight\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikimedia has the power to change the world!\" — Moritz Zumbuehl\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I believe in this cause\" — Errol Ehrhardt\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Best damn encyclopedia I have ever used. Period.\" — Jordan Leonen\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge is the key to peace and harmony\" — Tom H Lautenbacher\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"every little bit helps\" — Sarah Weyant\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Ma dépense la plus utile de l\'année\x26nbsp;!\" — Emmanuel Charriere\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Que la connaissance soit\x26nbsp;!\" — Emeric Planet\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"One of the most useful online tools.\" — Jonathan Seastrunk\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Spreading knowledge is worth a donation..\" — Luke Jeremy\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"¡Siempre con la Wikipedia!\" — Manuel Méndez Gago\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Merci de faire partie de ma vie\x26nbsp;!\" — Diana Chebret\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Veni, vidi, dedi - I came, I saw, I gave.\" — Adam Tekle\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Because I believe in Wikimedia\'s goal.\" — Vanessa R Palmer\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge Is Power. Keep Empowering.\" — Saket Vaidya\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wiki is Wonderful\x26nbsp;!!\" — Jim Windgassen\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Hello from Russia! Thank you very much!\" — Igor Philippov\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"save the wiki save the world\" — Reinhard Pointner\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Ad maiorem Wikipedia gloriam\x26nbsp;;)\" — Jakub Dziwior\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Hours of interactive reading.\" — Steve Verner\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Information when I need it.\" — Markos Douridas\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Shared information unites people.\" — Richard Frickmann\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Free access to information for all!\" — Daniel Tedmon\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Still and always a treasure of the Internet.\" — Robert Gore\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge should be available to everyone.\" — Miguel Nogueira\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"For tripling the number of Elephants in Africa!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"DREAM EXTRA LARGE\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Even my cats like it!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Eskerrik asko wikipedia!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is a cornerstone of modern civilization.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Thank you for constantly feeding my quest for knowledge\" — Drew G.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"For the love of information, for the love of freedom.\" — Matthew A.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The epitome of free speech, an invaluble reference.\" — Samuel J.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"glad to be able to contribute to this great initiative\" — Susan C.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"c\'est peu, mais si tout le monde en fait autant...\" — Axel CHAMBILY\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I feel I am contributing to a worthwhile project!\" — Peter McGinley\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"El conocimiento es la base de toda sociedad.\" — Pablo Román Alfaro\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge is power! Everyone\'s gotta have it!\" — Sebastian K\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"More than a public service, a worldwide treasure!\" — Steven Scharff\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is my weapon of choice against my own ignorance.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Tremendous respect for what is being done...\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"my mind now is filled mostly with wikipedia\" — Ramsi Woodcock\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Bringing the world together!\" — Joris de Leeuw GTAgames Nederland\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"For the greater good of the world\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikis makes procrastination productive!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Most people don\'t realise how entertaining Wikipedia is!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I hope that Wikipedia continues for many years to come.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is the manifest of human collaborative spirit.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Thanks for a brilliant public resource!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Modern Day Library of Alexandria!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia changed my life!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge will make us free!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Educate them, one edit at a time.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge at your fingertips!\" — Robert C Merrell\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Hope you change many more lives....\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"So that others may enjoy the gift of knowledge\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Spread the knowledge, better the world\" — Percy Grunwald\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"spread the knowledge to every corner of the world!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is OUR encyclopedia, keep it free!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The most important resource on the Internet today\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I would have failed so many classes without wiki!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The way the web should be.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"One of the world\'s great resources. Thanks!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Empower the world!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Let Wiki Rock forever!!\" — Kiran Thyagaraja\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I can\'t recall how i managed before Wiki\" — Jean-Claude Van Soest\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"greatest site of them all, We contribute it, We Police it.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"This is one of mankind\'s greatest undertakings.\" — Dr. Tobias G\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Weiter für die Demokratisierung des Wissens\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Спасибо, Википедия!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipédia, pra cima e avante!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Kunskap är makt!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Tack för allt.\" — Tobias Rundström\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge is power, don\'t waste it.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia has revolutionized the way we learn.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Free information will save the world.\" — Marshall Strother\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge is a good thing!!!\" — Edwin Ponciano\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Thank you for having information on everything!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Let\'s make the world wiser!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is the easiest way to learn...I support them\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Spreading knowledge is worth a donation..\" — Luke Jeremy\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge is the key to survival.\" — Gabbie Brown\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Biggest contribution to World knowledge. Thanks to all!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The greatest internet invention since the internet itself.\" — Yuan\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"There is no excuse for ignorance in the age of Wikipedia\" — Andrew\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The epitome of free speech, an invaluble reference.\" — Samuel J.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The Global War on Ignorance-- A battle worth fighting!\" — Stony S.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is overall the most interesting site on the web.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"You\'re usually the first place I check for any information.\" — Anon\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"ich muss nichts mehr sagen, WP spricht für sich.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Indispensable de nos jours!\" — Julien Matuszak\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"¡Siempre con la Wikipedia!\" — Manuel Méndez Gago\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"WikiPedia rocks!\" — David Ouziel\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"You guys rock!!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is Hope\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"You guys do a fantastic job!!!\" — Guoming Sun\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia, is there anything it can\'t do?\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"If you read this note, donate!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"For not deleting at least some articles\" — Vladimir Mozhenkov\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia: Destroyer of productivity; love of my life.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"This model of information transfer will change humanity.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"much much less annoying than an NPR fundraising drive\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Because knowledge may be free, but servers are not.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"What did we do before Wiki?\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"My first time here. Thanks for improving civilization.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Free access to information is the key to prosperity!\" — Simon Roby\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Amazing! That\'s what you are. Keep up the good work.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia, AKA the Degree Saver! Many thanks\" — Tom Graham\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The legacy of Alexandria lives on\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I love this site. Keep up the awesome work!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I use Wiki - I have to pay for it\x26nbsp;!\" — Immo Wetzel\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wiki is the future!\" — Christoph Burschka\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikimedia Rocks!\" — Jasmeet Singh\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Cheaper than cable\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Give Wiki a boost!!\" — Kiminori Noma\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is my homepage. I learn something new everyday.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I wikipedia now instead of google my searches.\" — Michael Patronik\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Thanks Wikipedia. You\'re my favourite website.\" — Oliver Kiehl\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Nice work to all involved behind the scenes!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"image is nothing, thirst for knowledge is everything\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Brilliant\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"power to the pedia!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Super Site!\" — Urs Schwerzmann\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"A most delightful time waster!\" — Shreesh Taskar\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Que viva la educacion gratuita\" — Dennis Salcedo\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Woooo! Cheaper than college!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wisdom of the Crowds rules the Long Tail\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Where would the world be without Wikimedia?\" — Emily Baker\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The Bear wishes you well\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Bravo\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"To prevent commercialization of knowledge\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Great site: my favourite and most visited!\" — Andrew O\'Callaghan\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The best purpose for donation I can think of.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"This is the first time I have donated online.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"here\'s to FDLing all the knowledge in da universe!\x26nbsp;:-)\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Pour une encyclopedie si utile.\" — Gabriel D. Matthews\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Long Live Freedom\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Astonishingly useful!\" — Navarro Parker\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I love philanthropy\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia helps me drop clue bombs on people.\" — Michael Styne\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Onwards and upwards!\" — Yuri Astrakhan\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"You guys are fantastic! Keep up the good work\" — World of Worlds\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"A great site! My kids love it and use it often\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Pour un savoir commun, libre et gratuit.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"La informacion quiere ser libre\" — Paredes Olay Francisco Javier\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I am so grateful for your wonderful site.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"weiter so\x26nbsp;!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I really enjoy using your site.\" — Howard Sims\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"You are the best!\" — Rodrigo Ventura\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"vive le libre =)\" — Le bisou\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"This is the future.\" — David Altman\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Go baby go, go!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Very handy resource, keep up the great work.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Gladly support the Great Wikipedia Project\" — Grant Slater\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Viva la information revolution!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is an invaluable research tool.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"My college students depend on Wikipedia\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Keep it free \x26amp; non-biased high quality!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"By the people for the people\" — Andrew Black\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"De omni re scibili et quibusdam aliis.\" — Berteun Damman\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Continuemos, entre todos, por las licencias libres...\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The most useful website of the net!\" — Antonio Madonna\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Vive auto-organisation\" — Carlos Oliveira Reis\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I really love this site\" — Charles Reid\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikiversity is my passion\" — Chris Burley\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Education good\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"continuez\x26nbsp;!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia ist eine geniale Sache!\" — Rene Chelvier\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Surpasses all expectations!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wissen muss kostenlos sein!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Simply because open content leads to better knowledge\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Five bucks well spent.\" — Andreas Neukoetter\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I love you, Wikipedia!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge isn\'t a possession - it cannot be monopolized.\" — Robert\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Fantastic system - best of luck from a Random Page addict\" — Steve\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"For one of the most exciting enterprises of mankind!\" — Renato C.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Possibly the greatest project ever undertaken — humankind\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I\'d rather read Wikipedia than my college textbooks.\" — William R.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"My first stop when I want to get started on a new topic.\" — Joel\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Symbolic gesture of appreciation. Wikipedia is important.\" — Thomas\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"thanks for wikipedia. the revolution will be wikified.\" — Jeremy F.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikimedia, a terrific open source project of knowledge\" — Alexander\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikimedia is doing GREAT things, I\'m proud to support them.\" — Jeff\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Nothing compares to Wikipedia. It\'s the greatest informer.\" — Niels\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"A shining example of what the net is really all about.\" — William F\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wonderful site! I recommend it to all of my students.\" — Michael R.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Probably the best evolving source of general knowledge\" — Marc E.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Before I knew about Wikipedia, I was afraid...\" — Christopher H.C.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"... Wikipedia restored my faith in humanity\" — Christopher H.C.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"For the freedom of knowledge and the knowledge of freedom\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Discover a personal world of information...\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"University would not be the same without Wikipedia.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia: my first stop on every journey for knowledge\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Indispensable help for school!\" — Andra Cochran\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Share your Knowledge!\" — David Corcoran\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Human knowledge should be free and open to all\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"thanks for helping me get through school!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia gives me faith in human nature.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I am learning a lot more than I thought I could\" — Gary Fung\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Information is the greatest gift of all\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge sharing as it should be. Keep up the good work!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"For the wonderful idea of making a free encyclopedia.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Without knowledge, there is no freedom.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"college would be impossible without wikipedia!\" — katy tull\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Thanks for the countless times you\'ve enlightened me.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Let all peoples work together for the benefit of all people\" — Anon\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knoweldge is power, and Wikipedia shares it with everyone!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia itself is an outstanding achievement of humanity.\" — Anon\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Merci de faire partie de ma vie\x26nbsp;!\" — Diana Chebret\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"El conocimiento es la base de toda sociedad.\"— Pablo Román Alfaro\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"L\'informazione deve essere libera!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia erleichtert mein Leben!\x26nbsp;:)\" — Martin Goth\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Al veel kennis opgedaan via Wikipedia!\" — R Timmermans\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Rock on. An invaluable resource that deserves support.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Shared information unites people.\" — Richard Frickmann\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Invaluable asset to my career\" — Tom Adams\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"a small donation for a big revolution\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is the future of knowledge.\" — Christopher Kelly\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Free knowledge for the world.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Damit Wissen überall ankommt\" — Stephan Knörr\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"e pluribus unum\" — Wouter Simons\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Siamo come nani sulle spalle dei giganti\" — Angelo Losanno\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia hat die Welt verbessert!\" — Christoph Neumueller\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Freier Bildungszugang für alle!\" — Lechi Langewand\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Scientia est potentia\" — Bjørn Christian Nipedal\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The best thing since sliced bread\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"You rock my world!\" — Hákon Már Pétursson\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Never forget that knowledge belongs to everybody.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Thank you for giving so much and expecting so little!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"This is an invaluable resource for the world.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"You\'ve revolutionized research. Thank you.\" — Lieselot Whitbeck\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Uniting the world through the power of knowledge\" — Ian G Myers\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"You make my life so much easier, thanks wiki!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is one of the few reservoirs of hope left.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Non costa niente e fa bene a tutti.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Votre encyclopedie est une bible de la connaisance\" — Cedric PETERSON\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"E\' grazie a persone come voi che il mondo è vivibile\" - Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Grazie per questo nuovo modo di pensare.\" — Fabrizio Benedetti\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Un idéal noble, une utopie que je veux soutenir\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Entrez dans la socièté de la connaissance\" — Claire Duchemin\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is my weapon of choice against my own ignorance.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The sustainability of our planet is leveraged on knowledge.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Making the world a better place.\" — Christian Cooper\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Where would we be these days without Wikipedia?\" — Bram Schoenmakers\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Sharing knowledge is one way to peace!\" — Elmar Höfner\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Giving back to a repository which has given so much to me\" — Gabriel Seah\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge brings power to the people.\" — Raphael Bosshard\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"A great, reliable, constantly-updated online encyclopedia!\" — Dave Britz\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I wish I could contribute millions. WP is an invaluable treasure.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge deserves to be free\" — Alan Isherwood\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The Wiki is mightier than the sword!\" — Stig Palmquist\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I wish I could have gotten my textbooks for university from Wiki.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"This is the future of information and education. I believe in it!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Possibly the most revolutionary site ever.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Continue sharing knowledge to inspire advancement around the world.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge should be free for all people all over the world.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Un sueño de Jorge Luis Borges hecho realidad.\" — Andres Lopez\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Weitermachen\x26nbsp;!!! Great Job!\" — Christoph Merk\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wiki hat mir oft geholfen, darum spende ich!\" — Dennis Pankowski\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Estamos construyendo un nuevo mundo\" — Pablo Torrecilla González\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"* ¡Larga vida a Wikipedia!\"—Anonymous\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Dzięki Wikipedii wiedza staje się domeną publiczną!\" - Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Ein Tag ohne Wiki - ist ein Tag ohne mehr Wissen!\" — Ingo Immer\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Ótimo site\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Vive le savoir libre\x26nbsp;!\" — Damien Sornette\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I\'m proud to give the gift of knowledge. Go Wiki!\" — Stuart Wattssm\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is the first site I go to to begin learning about a topic.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"You do a great service to humanity.\" — Michael Dimitriou\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Thanks for delivering knoweldge to the whole globe.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Ohne Wissen gibt es keine Kultur.\" — Oscar Dustmann\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Ein Klasse System, mein Rückgrat beim Lernen\" — Ronald Baumann\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Ich danke allen Ehrenamtlichen bei Wikipedia\" - Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Ohne Wikipedia hätte ich schlechte Noten!\" — Vladimir Hof\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Merci pour tout se savoir, et \"Keep going on\"!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Merci de partager les connaissances du monde\" — parm SOOLAL\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Bene, bravi, bello. Ancora!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"il mondo si salva attraverso la conoscenza\" — Andrea Garavaglia\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Grazie per tutto l\'aiuto che date alla mia conoscenza\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"O Brasil ama a Wikipedia!\" — Anon\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"You are changing the world for the better. Keep it up!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Education is the greatest gift of all\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia gives me hope in humanity.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"One small step for a man, one giant leap for mankind.\" — Araceli Calderon\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I am most likely to turn to Wiki for all of life\'s answers\" — Mark Prince\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia makes me believe a bit more in human race\" — Marc Kirchner\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is the Gutenberg printing press of the 21st century.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"wikipedia is the greatest thing since the wheel...\" — Marius Andre Strand\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Informative AND entertaining - a great tool.\" — Peter Delmonte\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia has taught me more than most college classes I\'ve taken.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"One site to rule them all...\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The best ever.. its helping me with my exams\" — colin o shaughnessy\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Amazing outreach for a worldwide cause!\" — Yee-Keong Chan\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Conhecimento livre é a chave para muitas coisas!\" - Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia darf nicht sterben\" — Bülent Gedikli\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Danke für viele hilfreiche Informationen.\" — Jens Rascher\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Macht weiter so, ein tolles Projekt!\" — Gerrit Richter\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Beste Informationsquelle im Internet\" — Harald Heintz\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Freies Wissen macht Spaß\" — Christian Zimmermann\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Keep up the good work. May this €1 be put to good use!\" — John Ward\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Thank you for the wonderful gift of Wikipedia\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wiki finally found what the internet is really for - Knowledge.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I learn something new everyday thanks to Wikipedia.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The best things in life are free\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Everything I\'ve ever wanted to know!\" — Andrew Ghelerter\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Giving money was never such an easy decision...\" — Lucas Rayala\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is an absolutely amazing body of knowledge!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Ignorance is not bliss.\" — Michael Dinolfo\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"A great free resource of information, and all for free.\" — Jero Sutlovic\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Thank you for helping me expand my knowledge of the world.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Keep on collecting great knowledge!\" — Benjamin Gibbat\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Free knowledge = Enlightenment = Evolution. Thanks Wikipedia!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is my fountain of knowledge\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Community knowledge gathered together!\" — Daniel Alamita\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is my answer to everything, I owe you so much!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is my second brain.\" — Erick Kyogoku\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia\'s best! Global knowledge for everybody - THX!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia\'s existence makes me feel better about the world\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikiquote is awesome.\" — Nicolas Bosma\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The knowledge must flow!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The best thing that has happened to education since schools!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is the only reason I know what I\'m talking about.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia rocks the party!\" — Marc Delehanty\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I heart knowledge.\" — Anonymous\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"One of the most promising developments of the 21st century.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge at our finger tips, what more can we ask for?\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wiki is a reliable friend who always solves my questions.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Vamos construir um novo mundo! Um mundo mais justo.\" — Valério Wittler\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge in its purest form. Thank you.\" — Anonymous\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is the joint creation of the minds of the world\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"If you find an error, you can correct it. Excellent.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is a great contribution to world culture\" — Worley Thorne\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Uma enciclopédia fantástica. Parabéns\" — Eduardo Camara\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Continuem com o bom trabalho\" — Francisco Faísca\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikibooks and Wikiversity are budding and need to be nurtured.\" — A. Whitworth\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I can\'t imagine being able to do the job I do without Wikipedia.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Promoting human knowledge is the foundation of peace and liberty.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Ignorance may be bliss, but it can get so boring...\" — Galit Eden\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Happily supporting the best free knowledge repository in the universe!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"If there\'s a question, Wikipedia has the answer.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Educação para os necessitados.\" — Joel Guzmán\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The smartest one of us is all of us.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Hope this small amount can help foster something great\" — Jeff Appis\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Unbelievable how many subjects are covered.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Do you want know anything? ask Wiki!\" — Marcos C L Ribeiro\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"A produção colaborativa é o futuro!\"— Jorge Machado\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The power of humanity working together\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"A resource almost as valuable to modern humanity as the internet itself.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"80% of my Google searches end up on a Wiki page!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia has changed the way the world gets information forever.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Thank-you to everyone who has contributed.\" — James Ludwick\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia has restored my faith in both the internet and humanity.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I do believe that this is the future of civil society.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Keep the dream of unlimited free knowledge alive\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Probably the best thing modern world has ever achieved.\" — Frei Klaus\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"More and more valuable with each edit.\" — Clark Venable\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Thanks Wikimedia! Keep on Changing the World!\" — Stefan Bungart\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"You keep me awake all night, I just can\'t stop reading.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Thanks for being a world-wide asset.\" — Sylvia DuLaney\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"because it\'s getting me through med school\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I can\'t go more than a day without this site!\" — Vincent Badali\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wiki is always there for me. Even when nobody else is.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Because there is no freedom without knowledge\" — Jérémie Marguerie\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Greatest source of answers to pop culture and high culture alike!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Tack för all hjälp o inspiration\" — Camilla Christoffersson\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia: let\'s change the world\x26nbsp;:)\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I have used wikipedia to help me advance my career\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia makes me more productive!\" — Harald Lie\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Best venue for learning and quick reference.\" — Bo Zhu\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"knowledge is power, use it wisely\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"May this information stream reach many new people.\" — Robert Keeley\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Better than all of my university textbooks combined.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"While people are a source of knowledge, this is a fountain of wisdom\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I cannot finish counting how many things I have learned from Wikipedia.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The web is no longer imaginable without Wikipedia.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is great fun for all knowledge lovers of the world!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Giving money never felt so good...\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Best money I\'ve spent this year!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Most useful site on internet..as revolutionary as the google search\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Thanks for being there for me.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Continuação de bom trabalho na divulgação da cultura!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia has given so much to us. Now it\'s our turn to give back.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is THE information superhighway\" — William Wilkerson\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia has become my most utilized reference!\" — Shawn Iverson\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is getting me through college!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is the quickest, most reliable answer to almost any question.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Exercise the most important muscle: Your brain!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"For Liberation of Mankind through Truth and Knowledge\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"How knowledge is meant to be - shared, growing, and self-correcting.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Ambition of this nature shouldn\'t go unrecognized.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I can appreciate brilliance when I see it.\" — Joshua Ramey\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge is power and you have empowered millions\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"If Wikipedia did not exists, we would have to create it!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge is the key to a better future.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Google is for searching, Wikipedia is for knowing\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge is power. Let\'s share the power!\" — Abtin Rahimian\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Simply a wonderful resource for the entire world\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"If I ever want to research something, the first thing I do is Wiki it!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I usually don\'t donate but Wiki isn\'t usual\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Spread knowledge not troops!\" — Sam bouguerra\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Without wikipedia, I wouldn\'t know what the capital of Vermont is.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I love the community nature of this site- and the quality of information.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is the beginning of Asimov\'s Encyclopaedia Galactica!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"A wonderful vision with the potential to change the world.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"This is one of the greatest ideas of the century!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I hope the Tamil (தமிழ்) wikipedia receives more support.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge is the real wealth\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"The best idea since printing books\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Danke für Wikipedia\" — Axel Kerber\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Thanks to all who\'ve contributed to this great project.\" — Ian Weston\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"A small price to pay for a world of knowledge\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is officially a Very Good Thing.\" — Paul Bird\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"for the future generations\" — Yoshio Murai\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"It\'s cheaper than buying an encyclopedia.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Saving the planet one mind at a time...\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"One of the wonders of the world\" — Alistair Corrie\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Freedom of knowledge is an inalienable right of the civilized world.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Helping to support one of the greatest uses of modern technology.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia has become an indispensible day-to-day companion\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Information is like air. It must be free for all. Forever.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"To grow in knowledge, curiosity, and wisdom\" — Sara Taylor\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"You make my studies so much easier!\" — Jacob de Lichtenberg\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Information is the currency of Democracy.\" — Silver Persinger\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia is not perfect, but it\'s fantastic!\" — Stefan Goettsch\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Wikipedia resurrects the original concept of knowledge\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Couldn\'t live without it.\" — Simon Luethi\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"You show others light where they would not have seen it\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Thanks for all of your work to make this site what it is.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Teach, Share, Communicate, Uplift, Awaken, Inspire\" — John Malone\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Even the toughest crosswords are a snap now thanks to Wikipedia!\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Knowledge is the international currency.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"There is no democracy without knowledge and education. — Jari Winter\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"What light through yonder Windows breaks? \'Tis Wikipedia!\" — Corey White\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"Being housebound with my computer, Wikipedia is the gateway to my world.\" — Anon.\x3c/span\x3e", "\x3cspan class=\'fundquote\'\x3e\"I\'m in law school. Wikipedia has clarified many complex legal topics.\" — Anon.\x3c/span\x3e"];return s[Math.floor(Math.random()*s.length)];}()+"\n \x3c/td\x3e\n \x3ctd class=\"siteNoticeToggle\"\x3e\n [\x3ca href=\"#\" onclick=\"toggleNotice()\"\x3eHide this message\x3c/a\x3e]\n \x3c/td\x3e\n \x3c/tr\x3e\n\x3c/table\x3e\n\x3c/div\x3e\n\x3cdiv id=\"siteNoticeSmall\" class=\"fundraiser-folded\"\x3e\x3ca href=\"http://wikimediafoundation.org/wiki/Donate\"\x3e\x3cimg src=\"http://upload.wikimedia.org/fundraising/2007/meter-en.png\" width=\'407\' height=\'14\' /\x3e\x3c/a\x3e \x3cspan class=\"siteNoticeToggle\"\x3e[\x3ca href=\"#\" onclick=\"toggleNotice()\"\x3eShow more\x3c/a\x3e]\x3c/span\x3e\x3c/div\x3e\n\x3c/div\x3e"; var wgNoticeToggleState = (document.cookie.indexOf("hidesnmessage=1")==-1);
document.writeln(
wgNoticeToggleState
? "\x3cstyle type=\"text/css\"\x3e#siteNoticeSmall{display:none;}\x3c/style\x3e"
: "\x3cstyle type=\"text/css\"\x3e#siteNoticeBig{display:none;}\x3c/style\x3e");
if(wgUserName == null) {
document.writeln("\x3cstyle type=\"text/css\"\x3e.siteNoticeToggle{display:none;}\x3c/style\x3e");
}
function toggleNotice() {
var big = document.getElementById('siteNoticeBig');
var small = document.getElementById('siteNoticeSmall');
if (!wgNoticeToggleState) {
if(big) big.style.display = 'block';
if(small) small.style.display = 'none';
toggleNoticeCookie("0");
} else {
if(big) big.style.display = 'none';
if(small) small.style.display = 'block';
toggleNoticeCookie("1");
}
wgNoticeToggleState = !wgNoticeToggleState;
}
function toggleNoticeCookie(state) {
var e = new Date();
e.setTime( e.getTime() + (7*24*60*60*1000) ); // one week
var work="hidesnmessage="+state+"; expires=" + e.toGMTString() + "; path=/";
document.cookie = work;
}= >"+_Hhttp://en.wikipedia.org/w/index.php?title=Special:NoticeLocal&action=rawObplist00
X$versionT$topY$archiverX$objects _WebResourceResponse_NSKeyedArchiver(&,-345WXYZ[\]^_`abcdefghijklmnopqrswxU$null
!"#$%V$classR$3R$8S$10S$11R$5R$6R$4R$7R$2R$9R$0R$1'&
'()$+WNS.base[NS.relative _Hhttp://en.wikipedia.org/w/index.php?title=Special:NoticeLocal&action=raw./01X$classesZ$classname12UNSURLXNSObject#AC
6789HWNS.keysZNS.objects%:;<=>?@ABCDEFG
IJKLMNOPQRSTUV !"#$\X-Powered-By]Cache-ControlWX-CacheTVary_Content-EncodingVServer\Content-TypeTDate^Content-LengthZConnectionWExpiresSVia^X-Cache-Lookup]Last-ModifiedYPHP/5.2.1_2private, s-maxage=0, max-age=7200, max-age=2592000_:MISS from sq18.wikimedia.org, MISS from sq24.wikimedia.org_Accept-EncodingTgzipVApache_text/javascript; charset=utf-8_Mon, 10 Dec 2007 02:02:09 GMTR31Zkeep-alive_Wed, 09 Jan 2008 02:02:09 GMT_`1.0 sq18.wikimedia.org:3128 (squid/2.6.STABLE16), 1.0 sq24.wikimedia.org:80 (squid/2.6.STABLE16)_BMISS from sq18.wikimedia.org:3128, MISS from sq24.wikimedia.org:80_Mon, 10 Dec 2007 01:58:12 GMT./tuuv2_NSMutableDictionary\NSDictionary./yzz{2_NSHTTPURLResponse]NSURLResponse ) 2 7 : P R d afoz} $,1DKX]lw.3:[{~Qqvz | @ABC_Ahttp://upload.wikimedia.org/fundraising/2007/people-meter-ltr.pngObplist00
X$versionT$topY$archiverX$objects _WebResourceResponse_NSKeyedArchiver$&,-345STUVWXYZ[\]^_`abcdefbghijnoU$null
!"#$%V$classR$3R$8S$10S$11R$5R$6R$4R$7R$2R$9R$0R$1#"
'()$+WNS.base[NS.relative _Ahttp://upload.wikimedia.org/fundraising/2007/people-meter-ltr.png./01X$classesZ$classname12UNSURLXNSObject#A
6789FWNS.keysZNS.objects!:;<=>?@ABCDE
GHIJKLMNOPQR WX-CacheSAgeSVia]Last-Modified]Accept-Ranges\Content-TypeVServer^Content-LengthTDateTEtagZConnection^X-Cache-Lookup_HIT from sq15.wikimedia.orgR64_.1.0 sq15.wikimedia.org:80 (squid/2.6.STABLE16)_Mon, 10 Dec 2007 02:15:02 GMTUbytesYimage/png_lighttpd/1.4.18T9516\"2060908798"Zkeep-alive_HIT from sq15.wikimedia.org:80./kllm2_NSMutableDictionary\NSDictionary%,./pqqr2_NSHTTPURLResponse]NSURLResponse ) 2 7 : P R d V[dorx+2AFKVe7<@Vcfko s Yimage/pngO%,PNG
IHDR , * Sf bKGD tIME
" IDATxy|UoD$:w>z}ՙ;Uqfū("" j\({ lI]Uu՝%8o>>ԷΩ<穧s*Zhd^4AZ`=|M?tﭬi8Eڜӣ{~NϞSCϟ\#&fK݀ڡq}
|:1/Df@:Μg~c(zqxVgw&n@VTj]yztow:Lb8~J=ópXώOq#fw1E_%;Y! .nb
jCQQAHYeR`Dp0p曖$e?πa+7+@{jiVY]5X?&]ޯn8$D'!b`'w$E p~
*V݀ڡ0ģfOaaǜrLS7O8jnޭ$RJnσ !Ǣb51p{|x0B` c
x^Nܢ" 'OYU': _h 3 _@\ phףSw % |Zu0I ;InΔ,>17gX(nX˷ޓ'F09ve?21X^'}F$eᘜ [>tz<Ø5x={$eܚT$cС>Lz1".7bذainmnn`E74:thBu---dY_i>;tPCCzy+\)tTuTKq|o톳Li<3dȐFe۶mH 4O{5QKi3ZϱcǤ LNÍUeѣGZOCCܳgJ rJxbmmI8p,,
e+n߾ب=z,`Ν;;vx &\rpzxYuxfq:+W߸W#iUVJkE9s(
gϞ(--Mkjj4;6TPP Mq7fڴijnn. ??'OVXMv b.] 999>}&ry:bz PU555L]9dO> I0k,Et\i!C x
7 ,;͖1Ǘy6gq5Aߩ.'*pPuM3b9sv |>ׯ zزeK$gƎ7C `ӦM~4wiG[l |> @$`4ܮm۶aÆO}w^ɓ B֮]
>/lذ!Lٞ!H/Vr u.̡C#_}5[ !ɦIk!BvpB9⾓y˙Dq\;
JJJu1ipޚ;h̦MnnnMgijރ{ϊ)E%I7n>Crܹ&v8Ɗ
sNr#^w`w:t^9Ӓi?'Z߿?9ry?i
7^|0Hm=vlS4s|ST A' 1 z#r
Alr Br. iM* 4ba1N@hADۚ$D˔M"^9Dr<מAG/`
$IaaeH$
|$}*hhq\8=pxSKy`&oqq\8
qHѷqE0LBcp8EAØǙDž v;7UUWq
q0xeM>Mr (u]Na Sp0t~uN?tuRn4ۜv c#jx2`ϙv0@sI^.$gܞؽݞh 8!1p6C @#ɐ mK#!U_&DCԸRC'} +Q\