- published: 12 Nov 2022
- views: 170013
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
Zadar (Croatian pronunciation: [zâdar]; see other names) is a city in Croatia, situated on the Adriatic Sea. It is the centre of Zadar County and the wider northern Dalmatian region. In the last official census of 2011 the population of Zadar was 75,082, making it the fifth largest city in the country. Zadar is a historical centre of Dalmatia as well as the seat of the Roman Catholic Archdiocese of Zadar: it has a rich history dating from prehistoric times.
The name of the city of Zadar emerged as Iadera and Iader in ancient times, but the origin of the name is older. It was most probably related to a hydrographical term, coined by an ancient Mediterranean people and their Pre-Indo-European language. They transmitted it to later settlers, the Liburnians. The name of the Liburnian settlement was first mentioned by a Greek inscription from Pharos (Stari grad) on the island of Hvar in 384 BC, where the citizens of Zadar were noted as Ίαδασινοί (Iadasinoi). According to the Greek source Periplus of Pseudo-Scylax the city was Ίδασσα (Idassa), probably a Greek transcription of the original Liburnian expression.
Zadar may refer to:
Zadar! Cow from Hell is an independent, low-budget comedy film directed by Robert C. Hughes.
The film was released in 1989 and shown in select theaters, mostly located in eastern Iowa. In a two night theatrical run, the film grossed over $25,000. It also premiered at the Sundance Film Festival.
The film was written by and cast with members of the Duck's Breath Mystery Theater, a successful comic acting troupe. The idea was originally introduced Merle Kessler, who was inspired by "Zarda", a dairy in Kansas City, that had a statue of a giant cow. The film was shot in and around Iowa City, Tipton, Solon and Mount Vernon, Iowa.
The plot of the movie revolves around a struggling Hollywood director who wished to return to his home state of Iowa and create a successful horror film. However, upon arriving in Iowa, the young director (played by Merle Kessler) is immediately distracted by old friends and family, a problem which will plague him throughout the making of his film, Zadar! Cow from Hell.
Zadar is located in western Croatia along the Adriatic Sea. Home to a historic old town of Roman ruins, medieval churches, charming squares, and lots of entertainment, Zadar is an intriguing city. It’s a smaller version of Split and Dubrovnik, with lesser crowds and a more relaxed atmosphere. And while its old town isn’t as picture-perfect, it’s the well-preserved ruins, art installations, and proximity to nearby nature attractions that make this place a must-visit. In this video, we'll share with you 10 of the best things to do in and around Zadar, Croatia. From exploring the city's beautiful old town to getting a taste of Croatia's delicious wine, this video has everything you need to plan your trip to Zadar! We’ll first tackle things to do in Zadar itself, and afterwards we’ll highlig...
If you're looking for the perfectly authentic Croatian coastal town without the crazy crowds of Split or Dubrovnik, then Zadar is PERFECT for you! ► Subscribe - https://bit.ly/ProbablyLostSubscribe ► Find Us On Social Media - https://linktr.ee/probablylost Buy Us A Coffee if you'd like!:) ► https://www.buymeacoffee.com/ProbablyLost Wonder where we get our royalty-free music? Click HERE: https://www.epidemicsound.com/referral/dzp8yu #zadar #zadarcroatia #zadartravelguide #probablylost
In this video I go through my top 10 favourite things to do in Zadar, Croatia! We spent a total of 8 days here and was blown away at just how beautiful old town Zadar was. As I've never been to Croatia before I was really impressed with the unique architecture of the buildings and streets. Croatian food was fantastic as well and even if your not a fan there is a wide range of restaurants to enjoy here. Follow us on the socials Instagram - seany_boyy_ - kellygriffiths_ Facebook - Seany Boyy
Next place which City in 4K visited was Zadar, a beautiful city on the Adriatic Coast in Croatia. Enjoy and please share! https://www.instagram.com/citiesin4kcom/ https://www.facebook.com/citiesin4k/ The beautiful old city, the pleasant and kind people and the amazing sunsets at the coast make this city a must seen destination for everyone who travels through croatia. Some attractions which you won´t miss if you ever travel to Zadar, and which are part of the video are: Sea Organ, Greetings to Sun, Church of St.Donatus, Roman Forum, Bell Tower St.Donatus and many more. Filmed and Edited by Amir Kulaglic using: GH4, DJI Inspire 1 and Glidecam HD4000, Canon Mark III and Sony a7r II for Timelapse with Emotimo TB3 and Rhino Slider. All 4K videos are available for licensing, contact m...
Zadar is best-known as the picturesque gateway to other spots on the Croatian coast. But as Sian Lewis found out, its surroundings offer endless possibilities for adventure. Watch as she discovers the wonders of this varied destination... If you love adventure and action sports, subscribe to the Mpora channel here: https://goo.gl/6b2H3J Join Mpora on Facebook: http://mpora.co/home Follow Mpora on Instagram: http://mpora.co/instagram Follow Mpora on Twitter: http://mpora.co/twitter
Hmm, wouldn't recommend staying so long in Zadar. You can easily go through the city in one day. Old Town was literally just tourists, saw nearly any locals. Food was not amazing, only exceptions are Pet Bunara & 4 Kantuna. Anywaaays, here's our itinerary for 4 days in Zadar: Day 1 The Roman Forum Bell tower Church of St. Donatus Promenade Walk Sea Organ Greeting to the Sun Day 2 Preko Island, 20 minutes from Zadar with the ferry Day 3 Venetian Land Gate Plitvice Lakes National Park Day 4 City Market Zadar Kolovare beach Sea Organ
Zadar, a coastal city in Croatia, is known for its rich history and stunning architecture. The old town features Roman ruins, medieval churches, and vibrant markets. The Sea Organ and Sun Salutation are innovative art installations along the waterfront. Zadar offers a charming blend of ancient and modern attractions. Contact us via email: [email protected] #travelscout
Dilnaz here 👩🏻💻 and this is my vlog from Zadar in Croatia. Have you ever heard of this city before? Me neither… That’s why I decided to create an informative video about Zadar and place recommendations there, so that you don’t end up in scam places as we did on the first day. Let me know in the comments if you found the video useful and actually ended up exploring those places! #travel #croatia #zadar #plitvice #plitvicelakes #weekend #vlog #trip #couplegoals
WABA Women's Adriatica Basketball League Regional Women Basketball League with teams from Bosnia&Herzegovina, Bulgaria, Croatia, Montenegro, Serbia and Slovenia (2024-25 season) List of champions: 2002-Merkur Celje, 2003-Zeljeznicar, 2004-Gospic, 2005-Sibenik Jolly JBS, 2006-Sibenik Jolly JBS, 2007-CSKA Sofia, 2008-Sibenik Jolly JBS, 2009-Sibenik Jolly JBS, 2010-Gospic CO, 2011-Sibenik Jolly JBS, 2012-Partizan Galenika, 2013-Partizan, 2014-Radivoj Korac, 2015-Umana Reyer Venezia, 2016-Buducnost Bemax, 2017-Athlete Celje, 2018-Buducnost Bemax, 2019 - Beroe, 2020 - Buducnost Bemax, 2021- Beroe, 2022 - Cinkarna Celje, 2023-Cinkarna Celje, 2024-Cinkarna Celje Official web page: waba-league.com E-mail: [email protected]
How to find cheap flights and travel more: https://travelforalmostfree.com/ref=beforeyougo2 // This Zadar travel guide shares the best things to do in Zadar. ----------------- Recommended Tours in Zadar: Dugi Otok Boat Tour- The Best Island Spots: https://www.viator.com/tours/Zadar/BEST-OF-LONG-ISLAND-TOUR-Full-Day-Small-Group-7-stops-Hidden-Gems/d22433-55713P1?pid=P00104625&mcid=42383&medium=link&medium_version=selector&campaign=yt-zadar-desc Excursion to Kornati National Park from Zadar: https://www.viator.com/tours/Zadar/Excursion-to-Kornati-National-Park-from-Zadar/d22433-65009P1?pid=P00104625&mcid=42383&medium=link&medium_version=selector&campaign=yt-zadar-desc Plitvice Lakes Day Tour from Zadar: https://www.viator.com/tours/Zadar/Plitvice-Lakes-National-Park-Day-Tour-from-Zadar-s...
Wendol Jarvis conceptualized and managed the Iowa Film Office from its inception in 1984 until 2003. During Wendol's tenure at the Iowa Film Office he recruited and coordinated 59 motion pictures, 500 television shows and 2,000 commercials including "Field of Dreams", "Twister", "Michael" and "The Bridges of Madison County," resulting in $1.4 billion in community reinvestment for Iowa.
Hard Core Grocery Store. The adventure begins.
Zadar: Cow From Hell is a legendary Duck's Breath Mystery Theatre comedy film. The 90 minute surreal vision is about a Hollywood film crew shooting a film about a large mythical cow in Iowa. Duck's Breath Mystery Theatre Bill Allard Dan Coffey Merle Kessler Leon Martell Jim Turner
Bovine Brutality at it's finest! Pantera: Live from Mos-Cow!
Congratulations to Duck's Breath Mystery Theatre, taking their final bow in Berkeley, California this fall after four decades of screwball comedy. More information at: www.ducksbreathmysterytheatre.com
Isolation.
Episode 5 - Hell Cow runs into some technical difficulties recording to a click track, and with the drums again! http://www.ProjectHellCow.com
Zadar (Croatian pronunciation: [zâdar]; see other names) is a city in Croatia, situated on the Adriatic Sea. It is the centre of Zadar County and the wider northern Dalmatian region. In the last official census of 2011 the population of Zadar was 75,082, making it the fifth largest city in the country. Zadar is a historical centre of Dalmatia as well as the seat of the Roman Catholic Archdiocese of Zadar: it has a rich history dating from prehistoric times.
The name of the city of Zadar emerged as Iadera and Iader in ancient times, but the origin of the name is older. It was most probably related to a hydrographical term, coined by an ancient Mediterranean people and their Pre-Indo-European language. They transmitted it to later settlers, the Liburnians. The name of the Liburnian settlement was first mentioned by a Greek inscription from Pharos (Stari grad) on the island of Hvar in 384 BC, where the citizens of Zadar were noted as Ίαδασινοί (Iadasinoi). According to the Greek source Periplus of Pseudo-Scylax the city was Ίδασσα (Idassa), probably a Greek transcription of the original Liburnian expression.
Giants can't kill ants, even if they watch they step
Reaching for the sky but your crawl to your death
You spitted gibberish, for the love of chaos
Channel FM drop, called it a Séance
Can thy weak allegories, and shotgun blast definitions
Planet Earth is too small for us, and I'm too bored to
listen to your small talk
Micky Mouse walking the kids to see the body of Tupac
Pretending we fifteen is the human to be I suppose
No one wants fire and brimstone with they gin and juice
anymore
But I come from the future with warnings
End, all relationships fixed, fast, and frozen
Unplug the speakers, if the slogans are hallow
This is a culture war, who do you want to dig your
grave for you?
You're selling piss, you say it's holy water
You hid behind your scarf, I hide behind my shadow
You call me up and say I need more gun shots on my
laptop
Even though I walked from Mecca to Toys R Us backwards
Let no flames catch on my rotting brain
They say you were the greatest playwright, but you
stole those lines
He who plays dead combs the greenest gas
That remains to be seen but I count you loosing teeth
In paradise your teeth will grow back, I promise
In paradise I'll hide my laughter, I promise
Giants can't kill ants even if they watch they step
Giants couldn't kill ants no matter how hard they tried
Tell me, what's the new "poor is cool"?, the new
Telegraph uniform
Thrift stores are out, straight jackets are the new
Naam
Putting newscasters to sleep doesn't interest
All that matters is how we look when they scatter us
Like flies in Africa, I'm loosing for a place
To rest my weary ribs, also my aging face
But the air is dry, and of the Earth there's so much
pain, and in the mountains only so much liquid
So please bleed me dry like the new sons of Wild Pitch
Or I'll be forced to join a Death Can For Cutie cover
band
In paradise your shadow itself it scares you
Over the river, the wind breaks beneath you
In paradise your name is a series of bumps, and dots,
and dashes with little to no connection to the past
In paradise, you pray someone is watching over you
In paradise, someone is indeed watching you
There's not enough electricity to dumb us all
They lock us in jars and say, "Stillness is
perfection."
There's six millions ways to be stoned in the courtyard
Do you want to be an outlaw?
We'll throw you to your in-laws
We'll throw you in the ring with the biggest robots
money could buy
This world's a child's dream, bulldozers sing for you
The cars burn themselves, and streetlight kidnap you
You hand in your medals and they melt them into bullets
and crosses
They told you you were Zeus, but you were just one of
his Goddesses
In paradise... burn victims model underwear
In paradise... there you are forced to enjoy yourself
In paradise... happiness is insanity
The worlds last polar bear gets all the oil companies
In paradise... wars are invented by our fathers
In paradise... wars are invented by our brothers
In paradise... wars are invented by our leaders