- published: 29 Mar 2023
- views: 4808459
'+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; })); }); -->
Here I Stand may refer to:
In music:
Here I Stand is a 1999 album by British folk-rock band Oysterband. It is their 17th studio album.
Released on 3 August 1999, the album's much praised lyrics deal with topics such as globalisation, political and philosophical insights. The album has been described as the one of the band's most upbeat albums. The album guest features Canadian folk rock band Great Big Sea and British punk pop band Chumbawamba.
Here I Stand, co-produced with Alaric Neville, released during the last summer of the 20th Century, created another landmark with the formation of their own label Running Man. Sales proved the Oysters' following were not fazed by the album's "provocative (read "risky") mix of austerity, improvisation, tradition and outright pop; which proved surprisingly radio-friendly and promises well for the label's future."
The reception for the album was very positive. FAME said of the album "with the opening chords of On the Edge it is clear these guys are fresh and unique. Their anthemic sing-along against the corporatisation of the world won't leave your head. In fact, there are aspects of this album that make it the strongest I have heard in a quite some time. Merging traditional folk music topics and instrumentation, with modern rock sensibilities, Oyseterband creates a lively album that the listener can't help but dance to.
From Them, Through Us, to You is the debut album by Chicago-based rock band Madina Lake. The album was released in the United States on March 27, 2007 via Roadrunner Records; it was released a day earlier in the UK.
The album debuted at number 154 on the U.S. Billboard 200 albums chart, number three on the Billboard Top Heatseekers chart, and number sixty on the UK Albums Chart.
The first single off the album was "House of Cards", followed by "Here I Stand", "One Last Kiss" and "Pandora", all of which have music videos.
For unknown reasons the iTunes release includes the whole advanced track listing with "The Auspice" but "Now or Never", "Morning Sadness" and "True Love" are omitted with the advanced version lengths not the retail lengths. The iTunes version also indicates three segues in the subtitles of two songs ("Pandora" and "True Love"; "True Love" has two segues) but the tracks appear the same as in the advanced version.
Melanie Alvarez (born Melanie Hernandez Calumpad; born 5 January 1981), better known by her stage name Kyla, is a Filipino R&B singer-songwriter, occasional actress and presenter.
Kyla began her career in 2000 under OctoArts EMI Philippines and rose to prominence with the release of her second single "Hanggang Ngayon" (English translation: "Until Now"). The song won the MTV Viewers' Choice for Southeast Asia at the 2001 MTV Video Music Awards making her the first East Asian female artist to win at the MTV Video Music Awards
Known in the Philippines as "the Queen of R&B", her work has earned her several achievements, including a star on the Walk of Fame in the Philippines, an MTV Video Music Award, eleven Awit Awards, four MTV Philippines Music Award, and four MYX Music Awards. She was honored by the Philippines Society of Composers, Singers, and Publishers for her contributions to music as one of the first pioneers of R&B music in the country. In 2015, Kyla signed with Cornerstone Talent Management Center and transferred to ABS-CBN after over 10 years with GMA Network.
Kyla is a given name, and may refer to:
Kyla is the second self-titled studio album by Filipino R&B singer Kyla, released by Poly East Records under EMI Philippines in 2002.
The album carrier single is I Feel For You written by Edwin Marollano and produced by Francis Guevarra, Jr.
1 the original version is from Way To Your Heart album
TREASURE JAPAN 1st SINGLE『Here I Stand』 ●STREAMING・DOWNLOAD (available now) →https://treasure.lnk.to/HIS_DLSTR ●PACKAGE (2023.03.29 on sale) → https://treasure.lnk.to/JP_0322CD ●[YGEX OFFICIAL SHOP / mu-mo SHOP] BUY → https://shop.mu-mo.net/avx/sv/list1/?jsiteid=YGSP&categ_id=3108101 ●YGEX OFFICIAL SHOP / mu-mo SHOP限定商品:"トレカ(絵柄C)(メンバー別全10種よりランダム1種)"販売中! ●パッケージ初回封入特典:応募抽選特典シリアルアクセスコード
A special music video for "Here I Stand" by TREASURE from Black Clover: Sword of the Wizard King, now streaming on Netflix! Subscribe: https://bit.ly/33okaL0 About Netflix: Netflix is one of the world's leading entertainment services with 233 million paid memberships in over 190 countries enjoying TV series, films and games across a wide variety of genres and languages. Members can play, pause and resume watching as much as they want, anytime, anywhere, and can change their plans at any time. Find Netflix Anime: ➡️:ANIME TWITTER: https://twitter.com/NetflixAnime ➡️:JAPAN ANIME TWITTER: https://twitter.com/NetflixJP_Anime Find Netflix Japan: ➡️:JAPAN TWITTER: https://twitter.com/NetflixJP ➡️:JAPAN INSTAGRAM: https://www.instagram.com/netflixjp ➡️:JAPAN FACEBOOK: https://ww...
!! NO COPYRIGHT INFRINGEMENT INTENDED !! :FOR ENTERTAINMENT PURPOSES ONLY: :ALL RIGHTS RESERVED TO ITS ENT.: : I DO NOT OWN ANYTHING: !! New Kpop Lyrics Update! The boy group TREASURE has finally released their 2nd Japanese OST for the anime BLACK CLOVER titled "HERE I STAND". Subscribe to my channel for more Kpop Lyrics! Like, Comment and Share my videos! ((( DO NOT REUPLOAD ))) TREASURE TREASURE HERE I STAND TREASURE HERE I STAND FULL TREASURE HERE I STAND FULL VERSION TREASURE HERE I STAND FULL VER. TREASURE HERE I STAND LYRICS TREASURE HERE I STAND LIVE TREASURE HERE I STAND AUDIO TREASURE HERE I STAND LINE DISTRIBUTION TREASURE HERE I STAND DEBUT STAGE TREASURE HERE I STAND PERFORMANCE TREASURE HERE I STAND REACTION TREASURE HERE I STAND INSTRUMENTAL TREASURE HERE I ...
Provided to YouTube by LaFace Records Here I Stand · Usher Here I Stand ℗ 2008 RCA Records, a division of Sony Music Entertainment Released on: 2008-05-27 Composer, Lyricist: V. Davis Associated Performer, Producer: Vidal Davis Associated Performer, Producer: Andre Harris Composer, Lyricist: A. Harris Engineer, Mixing Engineer: Vincent DiLorenzo Auto-generated by YouTube.
끝이 아닌 새로운 시작! 'tving 스타리그 2012' 공식 OST 대공개! 대한민국 유일의 게임전문채널 온게임넷의 33번째 스타리그인 'tving 스타리그 2012'의 막이 올랐다. 지난 스타리그 결승전 이후 6개월 만에 개막하는 이번 'tving 스타리그 2012'를 위해 e-sports에 각별한 애정을 가진 것으로 알려진 가수 박완규씨가 직접 OST 작업에 참여했다. 타이틀 곡 'Here I stand'는 이번 대회를 기다린 많은 프로게이머들과 스타리그 팬들을 위한 헌정곡으로 언제나 스타리그의 팬으로서 스타리그와 프로게이머들을 응원한다는 박완규씨의 깊은 애정이 담겨있다. '끝이 아닌 새로운 시작'이라는 의미를 담은 이번 대회인만큼 'Here I stand' M/V와 타이틀 영상에는 이번 대회 스타리거 16인뿐만 아니라 임요환, 홍진호, 박정석 스타리그 레전드 3인과 박완규씨의 OST 녹음 현장이 담겨있다.
Madina Lake's video for 'Here I Stand' off the album From Them, Through Us, to You - available now on Roadrunner Records. Download now on iTunes: http://smarturl.it/madinalake-rr LYRICS My hands shake cause today I know you're gonna break my heart and My life without you in it Is a life that's not worth living I'll be strong but I wish I was someone else Anyone but me tonight Here I stand, all alone, tonight And I wish I was strong enough to breathe Without you in my life And I wish I was anyone but me So I'll start to pretend I'm ok But you should know by now that My life is smoke and mirrors, One thing is crystal clear That I'm the one wishing I was someone else Anyone but me tonight Here I stand (here I stand) All alone (here I stand) Tonight (here I stand) And I wish I was strong...
TREASURE💙🤍 #choihyunsuk #parkjihoon #yoshi #junkyu #jaehyuk #asahi #doyoung #haruto #jeongwoo #junghwan #hello #fanmeeting #treasureconcert
Artist: TREASURE (トレジャー) Album: Here I Stand Release: 27.03.2023 01. Here I Stand 02. BEAUTIFUL (Ballad Ver.) 03. JIKJIN [TREASURE JAPAN ARENA TOUR 2022-23~HELLO~] BONUS TRACK 04. BOY [TREASURE JAPAN ARENA TOUR 2022-23~HELLO~] BONUS TRACK 05. HELLO [TREASURE JAPAN ARENA TOUR 2022-23~HELLO~] BONUS TRACK treasure here i stand full album treasure here i stand audio treasure beautiful ballad ver audio Thanks for watching! Please LIKE and SHARE this video! Don't forget to SUBSCRIBE our channel. ℗ AVEX ENTERTAINMENT #TREASURE #Here_I_Stand #トレジャー #트레저 Artist: TREASURE (トレジャー) Album: REBOOT -JP Special Selection- Release: 21.02.2024 01. LET IT BURN 02. BONA BONA -JP Ver.- 03. MOVE (T5) -JP Ver.- 04. B.O.M.B -JP Ver.- 05. STUPID -JP Ver.- 06. Here I Stand treasure reboot jp special se...
Here I Stand - Detailed Rules Overview Introduction - 00:00 Spaces - 0:23 Political Control - 1:52 Religious Control - 2:50 Keys and Victory Points - 4:03 Space Connections - 5:35 Language Zones - 5:47 Sea Zones - 6:15 Victory Types - 6:34 Earning Standard VP - 8:11 Earning Special VP - 8:50 Earning Bonus VP - 12:10 Impulse Order - 14:02 Power Cards and Power Leaders - 14:45 Leaders and Units - 16:27 Formations - 18:58 Card Types - 19:36 Sequence of Play - 21:51 Luther's 95 Theses - 24:17 Card Draw Phase (New World Riches) - 24:33 Card Draw Phase (Drawing Cards) - 27:33 Diet of Worms - 28:27 Spring Deployment - 30:45 Taking Actions - 32:57 Winter Phase - 35:14 Victory Determination Phase - 40:40 Detailed Action Overview - 41:47 Movement Concepts Line of Communication - 51:...
Vasil represented North Macedonia in the First Semi-Final of the Eurovision Song Contest 2021 with the song Here I Stand - The Eurovision Song Contest celebrates diversity through music. Please keep your comments respectful. We will not tolerate racism, sexism, ableism, homophobia, transphobia, body-shaming or any other derogatory or hostile language. Offensive users will be blocked and reported. Music first, always. If you want to know more about the Eurovision Song Contest, visit https://eurovision.tv Shop the official Eurovision Song Contest merchandise: https://shop.eurovision.tv/ Follow us on Instagram: https://www.instagram.com/eurovision Follow us on Twitter: https://twitter.com/Eurovision Follow us on Facebook: https://www.facebook.com/EurovisionSongContest/
Here I Stand may refer to:
In music:
Where do we go from here
{Tell me} do you even want me still
{Tell me} you thinkin bout walking away
After everything we had say
But you heard enough and the rain is poring down
And you looking for someone to cover you
Baby that's what I wanna do
What you push me away, you don't know where
And I'm the one that loves you still, you know that I always will
I appoligise, just wanna be by your side, Baby I can't fight no more
Is that what we came all this way for
Here I stand {here I stand} from the accuse
And all that love for you baby you know I do so
Here I stand {here I stand} slowly confused
Welcome to the world where I'm fighting for my girl
So here I stand {here I stand}
Are you gonna hear me out {I'm talking}
All the words that I sing it counts, have you made your mind up bout me
Did you even take time and think, think about the joy and pain
And how I felt about you will never change, girl I know who you really are
How did we get this far apart
But you pushed me away, and you don't know where
I'm the one that loves you still, you know that I always will
I appoligised, just wanna be by your side, baby I can't fight no more
Is that why we came all this way for
Here I stand {here I stand} from the accuse
And all that love for you baby you know I do so
So here I stand {here I stand} slowly confused
Welcome to the world where I'm fighting for my girl so here I stand
How many chances are you gonna give [?]
You know it's you, I wanna be where you are too
But I can't do this no more, just not gonna think and close that door
This is all that I am and this is my final stand
I'm standing, I'm standing right here, I'm standing
Here I stand {here I stand} from the accuse
And all that love for you baby you know I do so
Here I stand {here I stand} slowly confused
Welcome to the world where I'm fighting for my girl