- published: 04 Aug 2024
- views: 15728
'+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; })); }); -->
C4, C04, C.IV, C-4, or C-04 may refer to:
C-4 or Composition C-4 is a common variety of the plastic explosive family known as Composition C. The British version of the explosive is known as PE-4 (Plastic Explosive). C-4 is composed of explosives, plastic binder, plasticizer to make it malleable, and usually a marker or odorizing taggant chemical.
C-4 has a texture similar to modeling clay and can be molded into any desired shape. C-4 is stable and an explosion can only be initiated by the combination of extreme heat and shock wave from a detonator.
The Composition C-4 used by the United States Armed Forces contains 91% RDX ("Research Department Explosive", an explosive nitroamine), 5.3% dioctyl sebacate (DOS) or dioctyl adipate (DOA) as the plasticizer (to increase the plasticity of the explosive), 2.1% polyisobutylene (PIB, a synthetic rubber) as the binder, and 1.6% of a mineral oil often called "process oil". Instead of "process oil", low-viscosity motor oil is used in the manufacture of C-4 for civilian use.
Give me a Hell, Give me a Yeah! (1000 likes would be cool for the robots) Comment what school we rebuild next! SUBSCRIBE (2nd Channel) ► @itsMoreC4 SUPPORT ME HERE → https://www.patreon.com/PAPAC4 TWITTER ► https://twitter.com/PAPAxC4 DISCORD ► https://discord.gg/BHtST7K Year 1 0:01 Year 2 15:20 Year 3: 24:03 Year 4: 31:08 Year 5 37:41 Year 6 47:08 Year 7 51:54 Year 8 58:23 Year 9/10 1:13:32 C4 is the originator of the Realistic Rebuild on YouTube and we're now into College Football 25 season with College Football 25 Dynasty Mode, College Football 25 Realistic Rebuilds, College Football 25 Road To Glory and so much more. #CFB25 #CollegeFootball25 #DynastyMode
2Rare - C4 (ft. Skilla Baby & Rob49) [Official Music Video] 🔔 Subscribe to my channel: https://bit.ly/3qoGfYO Follow 2Rare: Instagram: https://www.instagram.com/2raree/ TikTok: https://www.tiktok.com/@2raree Website: https://2rareofficial.com/ Merch: https://shop.2rareofficial.com/ LYRICS I’m too rare but I’m the one Shawty I’m the one I’m the one, I’m the one, shawty ... I’m the one from the trenches Got the hood tiktokkin Ran them blues up so quick They thought they seen sonic LIKE WAT THE F*CK? Cops TRYNA CHASE ME B*TCHES TRYNA RAP ME HOW THE F*CK I KEEP IT A HUNNIT WHEN N*GGAS BARELY KEPT IT 80 Llil b*tch come thru smelling like BACARAT YEAH SHE MY TYPE OF THOT SHE BE SCREAMING BAE ITS SHOT OCLOCK SHE ON MY TYPE OF TIME THEY SEEING RED WIT ALL THESE RED BEAMS TH...
Chúc cắc bạn ngày mới tốt lành ❤️ Mình có 2 kênh youtube kênh phụ là (C4 Streaming) device: ipad pro M1 Tiktok id lathanhc4 ———————————————————————— music provided by: NoCopyrightSounds music provided by: NEFFEX ———————————————————————— c4,c4 gaming,cu4,ff c4,free fire c4,highlight c4,highligt ff,highlight free fire,highlight ff c4,highlight,ff,free fire
Chúc cắc bạn ngày mới tốt lành ❤️ Mình có 2 kênh youtube kênh phụ là (C4 Streaming) device: ipad pro M1 Tiktok id lathanhc4 ———————————————————————— music provided by: NoCopyrightSounds music provided by: NEFFEX ———————————————————————— c4,c4 gaming,cu4,ff c4,free fire c4,highlight c4,highligt ff,highlight free fire,highlight ff c4,highlight,ff,free fire
Stream "C4" now: https://killdyll.lnk.to/C4Song AMV MADE BY ASAMI Prod. Kill Dyll IG: @asamii.q Twitter: @asamiOwo https://www.killxdyll.com 𝕴𝖓𝖘𝖙𝖆𝖌𝖗𝖆𝖒: @killxdyll 𝕿𝖜𝖎𝖙𝖙𝖊𝖗: @kill_dyll 𝕾𝖕𝖔𝖙𝖎𝖋𝖞: https://open.spotify.com/artist/1r5Yz... 𝕾𝖔𝖚𝖓𝖉𝖈𝖑𝖔𝖚𝖉: / kill_dyll C4.© All Rights Reserved Kill Dyll 2024 Lyrics F f f f fuck everybody I got the c4 And its strapped to my chest I ain come to die or rest I came with a 9 and a vest Rip into the best Ainobody die like i did Ainobody rise like i did I came with a full 9 Dull blade 45 All day Full 9 Forget about everybody I got bullets to your name The second that i get my opportunity to spray You ain gonna live To see another fuckin day Chasing down a victim Better plan on getting saved I just wanna kill I just really wanna rage If lif...
Around 400 people have been arrested and some have been appearing in court today over violence in Sheffield, Sunderland, Liverpool, Southport, Hartlepool and Belfast. (Subscribe: https://bit.ly/C4_News_Subscribe) Yesterday far-right troublemakers targeted hotels containing asylum seekers. One was in Tamworth, a few miles north of here. In another in Rotherham they tried to set a Holiday Inn on fire with people still inside it. ----------------------- Follow us: Facebook - https://www.facebook.com/Channel4News/ Twitter - https://twitter.com/Channel4News TikTok - https://www.tiktok.com/@c4news Instagram - https://www.instagram.com/channel4news/
Chúc cắc bạn ngày mới tốt lành ❤️ Mình có 2 kênh youtube kênh phụ là (C4 Streaming) device: ipad pro M1 Tiktok id lathanhc4 ———————————————————————— music provided by: NoCopyrightSounds music provided by: NEFFEX ———————————————————————— c4,c4 gaming,cu4,ff c4,free fire c4,highlight c4,highligt ff,highlight free fire,highlight ff c4,highlight,ff,free fire
Chúc cắc bạn ngày mới tốt lành ❤️ Mình có 2 kênh youtube kênh phụ là (C4 Streaming) device: ipad pro M1 Tiktok id lathanhc4 ———————————————————————— music provided by: NoCopyrightSounds music provided by: NEFFEX ———————————————————————— c4,c4 gaming,cu4,ff c4,free fire c4,highlight c4,highligt ff,highlight free fire,highlight ff c4,highlight,ff,free fire
Battlefield 3 C4 Troll | Battlefield 3 Trolling #battlefield3 #battlefield #youtubeshorts #shorts #topb1lla LIKE 👍 SUBSCRIBE 🔔 SHARE ❤️ ✔️ Stay Connected : ⚫️ Page - https://www.facebook.com/WARZONE69 ⚫️ Facebook - https://www.facebook.com/TOPB1LLA ⚫️ Instagram - https://www.instagram.com/TOPB1LLA ============================================================ Queries Solved: battlefield trolling battlefield 3 trolling trolling dem noobs battlefield trolling bf3 trolling battlefield walkthrough battlefield gameplay Let's play battlefield battlefield 3 trolling tips battlefield 3 battlefield 3 video battlefield 3 noobs battlefield 3 trolling noobs battlefield 3 trolling iz fun battlefield 3 trolling moments battlefield 3 trolling montage Queries Solved: Battlefield 3 shorts Battlefiel...
New music from 2Rare, Skilla Baby & Rob49 - C4 available now on DatPiff YouTube! #2Rare #SkillaBaby #Rob49 #C4
Get reacquainted with the awesome powers of the explosive called C-4. For more visit: http://dsc.discovery.com/tv/mythbusters/#mkcpgn=ytdsc1
Cutting steal beams with c-4 and other explosion experiments with our new favorite explosive! Don't try this at home! explosives are dangerous and they can throw heavy items really long distances! Video is done by professionals with all necessary permits and with huge safety area around the explosions site. All high speed clips were filmed with Chronos high speed cameras https://www.krontech.ca/ Link to Pommijätkät channel for more C-4 action https://www.youtube.com/channel/UCr1cNqiNxK46w93zw9KfTLg
GizmoSlip Gasoline vs iPhone Video: https://youtu.be/6c0V6TqwMi0 Matt Barnett's War Artwork: https://www.etsy.com/shop/ArtofWarCo Matt's Company: http://bonettiexplosives.com/drupal/ Hey Guys!!! It's been a such a long time since my last upload, but I've been hard at work stacking a bunch of cool new content. Hopefully we can have more regular uploads from here on out! :) Today we try to see if we can visualize the shockwave of a C4 Explosion using colorful smoke bombs. Hope you guys enjoy! My Social: Instagram - @BeyondSlowMotion Twitter - @DarrenDyk Facebook - http:/www.facebook.com/BeyondSlowMotion GizmoSlip Social Instagram - @gizmoslipofficial Twitter - @GizmoSlipBlog Facebook - http://www.facebook.com/gizmoslip Shot on: Phantom v1611 Phantom MIRO LC320s GoPro Hero 5 Sony a63...
U.S. Marines build and detonate Composition 4 (C-4) during Lava Viper Exercise at Demolition Ranges aboard Pohokalua Training Area on the big island of Hawaii. AiirSource Military covers events and missions from the United States Armed Forces: Army, Navy, Marine Corps, Air Force, and Coast Guard. Visit our channel for more military videos: http://www.youtube.com/AiirSource Like & share this video to show your support! Subscribe to stay updated: http://www.youtube.com/subscription_center?add_user=AiirSource Facebook: http://www.facebook.com/AiirSource Google+: http://www.google.com/+AiirSource Twitter: http://www.twitter.com/AiirSource Credits: Brendan Custer
Canadian Army Capt. Tom Dean with 5 Combat Engineer Regiment is interviewed on working with U.S. Marine Corps engineers from 1st Combat Engineer Battalion, 1st Marine Division accompanied by footage of U.S. Marines working closely with the Canadian forces on Camp Pendleton, Calif. June 13, 2013. Multinational amphibious training promotes interoperability between the Navy, Marine Corps, and coalition partners during Exercise Dawn Blitz, June 11-28, 2013. Canada, Japan, New Zealand, and military observers from seven countries are participating. (U.S. Marine Motion Imagery by Cpl. Jesse Witten, 3rd MAW Combat Camera). Video by Cpl. Jesse Witten | 3D Marine Aircraft Wing Combat Camera | Date: 06.12.2013 AiirSource℠ covers military events and missions from the Army, Navy, Marine Corps, Air Fo...
Jamaican Born UK rapper... C4 Highly Explosives latest single, Hypnotize
The official Funker530 iOS/Android app (https://funker530.app.link/AppDownload) is where you can watch the latest videos from Ukraine, analyzed by our team of combat veterans. Grab it today and enable notifications to get a ping when breaking videos and news start trending. ----- C4 bricks explode and destroy a Taliban firing position in Afghanistan.
In this video i will be Raiding a Base named "LuizMaciel" and also try to kill The Big One using C-4 Explosive at Raid Base in version 1.11.12 update in Last Day On Earth Survival game. Please Don't Forget to Like, Share and Subscribe for Daily New Guides, Tips, Tricks, News, Raids and Sneak Peeks for Last Day On Earth Survival Game! Website - http://mturbogamer.com Facebook Page - https://www.facebook.com/mturbogamer/ Instagram - https://www.instagram.com/mturbogamer/ #ldoe #lastdayonearth #lastdayonearthsurvival Background Music: 1. Song: Inova - Isolation Link: https://youtu.be/Gfug2ungXb8 Music promoted by FMW. Released by Argofox. 2. Song: VANTE - Oblivion Link: https://youtu.be/2Ni9xWmBvNo Music provided by FreeMusicWave. 3. Track: TULE - Fearless pt.II (feat. Chris Linton) [N...
C4, C04, C.IV, C-4, or C-04 may refer to:
If we carry on this way we won't survive
We have to draw the line
A victim of your own convictions
We can't let them in to our minds
Hype the threats but never pull the trigger
A nation of patriots with dirty hands
Society under siege, a swarm of gunmen with ruthless intentions
Now I don't have the good intentions
I wore my heart on my sleeve
Not anymore, not me
Its time like these we should have swallowed the key
Stuffed the bottle sent it out to sea
In a sea of treason
Tell me, who or what give you the right to decide what defines innocent lives?
Do you feel threatened by your own kind?
Under the watch of a manmade weapon built to break and honest life
Do you feel threatened by your own kind?
What's the drive behind your motives?
All this blood on your hands
All these lies
How many brains washed does it take to see the dollar signs?
We're wandering the blank space
Filling the gaps of the raw truth
Truth that has yet to set me free
And if we try to recognize the fiction
We won't be part of the picture now
Tell me, who or what give you the right to decide what defines innocent lives?
If we carry on this way we won't survive
If we carry on this way we won't survive
We have to draw the line
If we carry on this way we won't survive