NeoGriever Geschrieben 12. Oktober 2016 Autor Melden Teilen Geschrieben 12. Oktober 2016 - Die Anordnung der Elemente des Script-Editors wurde angepasst - Die Tab-Reihenfolge wurde korrigiert - C#-Quick-Check (Statusleiste) wurde gefixed - Script-Share-Funktion wurde hinzugefügt - Script-Import-Funktion wurde hinzugefügt Das sind die wichtigsten Änderungen. Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
NeoGriever Geschrieben 12. Oktober 2016 Autor Melden Teilen Geschrieben 12. Oktober 2016 *kopfqualm* ... erstmal n bissl Minecraft ... Muss mich mit meinem 60-Mods-Modpack ablenken ... (Ja! 60 Mods!!!) 1 Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
davbra98 Geschrieben 12. Oktober 2016 Melden Teilen Geschrieben 12. Oktober 2016 (bearbeitet) vor einer Stunde schrieb maxrator: was wurde geändern Wenn ich das richtig gesehen habe kann man jetzt Skripts teilen und geteilte Skripts importieren (per Code) Sry fehlpost Seite 38 nicht gesehen Bearbeitet 12. Oktober 2016 von davbra98 Fehlerhafter Post Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
gbgt5 Geschrieben 12. Oktober 2016 Melden Teilen Geschrieben 12. Oktober 2016 Ich kriege immer noch Hoster Probleme! Was kann ich tun? Spoiler <?xml version="1.0" encoding="UTF-8" standalone="no"?> <hosterscripts priorityList="OpenLoadHD,FlashX,AuroraVid,Vidto,Vivo,OpenLoad"> <hoster name="Vivo" type="0"> <supporteddomains> <host domain="vivo.sx" /> </supporteddomains> <script><![CDATA[Imports System.Net Imports System.Collections.Specialized Imports System.Text.RegularExpressions Public Class HosterParser ' Create networkHandler (Simple WebClient) Public Shared networkHandler As New WebClient() Private Shared hosterlink As String = "" ' Define main function (ParseHoster ...) Public Shared Function ParseHoster(ByVal rhosterlink As String) As String hosterlink = rhosterlink hosterlink = hosterlink.Replace("http://","https://") Dim useragentstring As String = "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100" GlobalDebugDiag.DebugDiag.Log(hosterlink & " wird geparsed ... User-Agent: " & useragentstring,"Information","TESTER") networkHandler.Headers.Add ("user-agent", useragentstring) ' Load sourcecode of hosterlink Dim hoster_source As String = networkHandler.DownloadString(hosterlink) Return(EvaluateIt(hoster_source)) End Function Private Shared Function EvaluateIt(ByVal hoster_source As String,Optional ByVal tries As Integer = 1) As String ' Regex-Reading of needed hidden post values Dim regex_results As MatchCollection = RegEx.Matches(hoster_source,"<input type=""hidden"" name=""([^""]*)"" value=""([^""]*)") ' Define collection of post values Dim post_values As New NameValueCollection() ' Literate between postvalues and sort them inside the collection with name as key and value as value For Each regex_literator As Match In regex_results post_values.Add(regex_literator.Groups(1).Value.Trim(),regex_literator.Groups(2).Value.Trim()) GlobalDebugDiag.DebugDiag.Log(hosterlink & " wird geparsed ... (Durchgang " & tries & ") " & "Post-Values: " & regex_literator.Groups(1).Value.Trim() & "=" & regex_literator.Groups(2).Value.Trim(),"Information","TESTER") Next post_values.Add("throttle","1") Dim regex_res As Match = RegEx.Match(hoster_source,"var RequestWaiting = (\d*);") Dim wait_time As Integer = CInt(regex_res.Groups(1).Value.Trim()) GlobalDebugDiag.DebugDiag.Log(hosterlink & " wird geparsed ... (Durchgang " & tries & ") " & "Warte " & wait_time & ",5 Sekunden ...","Information","TESTER") System.Threading.Thread.Sleep((wait_time*1000)+500) ' Submit post values to same hosterlink as post request and get source of accepted page networkHandler.Headers.Add ("referer",hosterlink) Dim Nvc As New NameValueCollection() Nvc.Add("action","view") Nvc.Add("hash",hosterlink.Substring(hosterlink.lastIndexOf("/") + 1)) Nvc.Add("abs","true") networkHandler.UploadValues("https://vivo.sx/request",Nvc) Dim hoster_source_posted As String = System.Text.Encoding.Default.GetString(networkHandler.UploadValues(hosterlink,post_values)) ' Regex-Reading of directlink Dim regex_result_directlink As Match = RegEx.Match(hoster_source_posted,"stream-content[^=]*=""([^""]*)") ' Try-Catch for returning direct link Try If Not regex_result_directlink.Success Then If tries < 3 Then Return(EvaluateIt(hoster_source_posted,tries+1)) Else ' Failed, return empty string GlobalDebugDiag.DebugDiag.Log(hosterlink & " konnte nicht geparsed werden.","Fehler","TESTER") Return("") End If Else ' Success, return directlink for downloading GlobalDebugDiag.DebugDiag.Log(hosterlink & " wurde geparsed. Link: " & regex_result_directlink.Groups(1).Value.Trim(),"Information","TESTER") Return(regex_result_directlink.Groups(1).Value.Trim()) End If Catch ' Failed, return empty string GlobalDebugDiag.DebugDiag.Log(hosterlink & " konnte nicht geparsed werden.","Fehler","TESTER") Return("") End Try End Function End Class]]></script> </hoster> <hoster name="FlashX" type="0"> <supporteddomains> <host domain="www.flashx.tv" /> <host domain="flashx.tv" /> </supporteddomains> <script><![CDATA[Imports System.IO Imports System.Net Imports System.Collections.Specialized Imports System.Diagnostics Imports System.Text.RegularExpressions Public Class HosterParser Public Shared wc As New WebClient() Public Shared Function ParseHoster(ByVal url As String) As String Debug.WriteLine("Parsing " & url) Try Dim src As String = wc.DownloadString(url) Dim rx As String = "<input type=""hidden"" name=""([^""]*)"" value=""([^""]*)""" Dim rxres As MatchCollection = RegEx.Matches(src,rx) Dim postdata As New NameValueCollection() For Each rxlit As Match In rxres postdata.Add(rxlit.Groups(1).Value.Trim(),rxlit.Groups(2).Value.Trim()) Debug.WriteLine("Post-Values: " & rxlit.Groups(1).Value.Trim() & "=" & rxlit.Groups(2).Value.Trim()) Next Debug.WriteLine("Wait 5.5 Seconds") System.Threading.Thread.Sleep(5500) Dim hoster_source_posted As String = System.Text.Encoding.Default.GetString(wc.UploadValues(url,postdata)) Dim m As Match = RegEx.Match(hoster_source_posted,"(\|\|tv\|http[^']*)") Dim d() As String = m.Groups(1).Value.Trim().Split("|") Try Dim buildLink As String = "" buildLink &= d(3) & "://" buildLink &= d(133) & "." buildLink &= d(48) & "." buildLink &= d(47) & "." buildLink &= d(46) & "." buildLink &= d(44) & "/" buildLink &= d(132) & "/" buildLink &= d(131) & "." buildLink &= d(35) Debug.WriteLine("Direct download link: " & buildLink) Return(buildLink) Catch Debug.WriteLine("Fehlschlag") Return("") End Try Catch ex As System.Exception Debug.WriteLine("FEHLER") Debug.WriteLine(ex.Message.ToString()) Return("") End Try End Function End Class]]></script> </hoster> <hoster name="AuroraVid" type="0"> <supporteddomains> <host domain="www.auroravid.to" /> <host domain="auroravid.to" /> </supporteddomains> <script><![CDATA[Imports System.IO Imports System.Net Imports System.Collections.Specialized Imports System.Diagnostics Public Class HosterParser Public Shared wc As New WebClient() Public Shared Function ParseHoster(ByVal url As String) As String Try System.Net.ServicePointManager.Expect100Continue = false Debug.WriteLine("Parsing " & url) Dim src As String = wc.DownloadString(url) Dim rm As System.Text.RegularExpressions.Match = System.Text.RegularExpressions.RegEx.Match(src,"stepkey"" value=""([^""]*)""") Dim pv As New NameValueCollection() pv.Add("stepkey",rm.Groups(1).Value.Trim()) pv.Add("submit","submit") Debug.WriteLine("Stepkey: " & rm.Groups(1).Value.Trim()) Debug.WriteLine("Wait 5.5 Seconds") System.Threading.Thread.Sleep(5500) Debug.WriteLine("Parsing ...") Dim hoster_source_posted As String = System.Text.Encoding.Default.GetString(wc.UploadValues(url,pv)) rm = System.Text.RegularExpressions.RegEx.Match(hoster_source_posted,"\.file=""([^""]*)"";[^\.]*\.filekey=""([^""]*)"";") Dim s1 As String = rm.Groups(1).Value.Trim() Dim s2 As String = rm.Groups(2).Value.Trim() Dim lnk As String = wc.DownloadString("http://www.auroravid.to/api/player.api.php?file=" & s1 & "&numOfErrors=0&user=undefined&key=" & s2 & "&pass=undefined&cid3=auroravid%2Eto&cid2=undefined&cid=1") Dim d As System.Text.RegularExpressions.Match = System.Text.RegularExpressions.RegEx.Match(lnk,"url=([^\&]*)\&title") Return(d.Groups(1).Value.Trim()) Catch ex As System.Exception Debug.WriteLine(ex.ToString()) Return("") End Try End Function End Class]]></script> </hoster> <hoster name="Vidto" type="0"> <supporteddomains> <host domain="vidto.me" /> </supporteddomains> <script><![CDATA[Imports System.IO Imports System.Net Imports System.Collections.Specialized Imports System.Text.RegularExpressions Public Class HosterParser Private Shared wc As New WebClient() Public Shared Function ParseHoster(ByVal url As String) As String url = url.Replace(".me/",".me/embed-") url = url.Replace(".html","-640x360.html") GlobalDebugDiag.DebugDiag.Log("Parse: " & url,"Information","TESTER") Dim src As String = wc.DownloadString(url) GlobalDebugDiag.DebugDiag.Log("Parse: " & url & " > Erzeuge Link ...","Information","TESTER") Dim d As String = RegEx.Match(src,"modes\|hd_default\|([^\|]*)").Groups(1).Value.Trim() Dim c() As String = RegEx.Match(src,",'([^']*)'\.split").Groups(1).Value.Trim().Split("|") Dim b() As String = RegEx.Match(src,"3b:\\'5:\/\/([^\/]*)").Groups(1).Value.Trim().Split(".") Dim host As String = "" For Each a As String in b If a.Length > 1 Then host &= a & "." Else host &= c(System.Convert.ToInt32(a,16)) & "." End If Next host = "http://" & host.Substring(0,host.Length - 1) & "/" & d & "/video.mp4?start=0" GlobalDebugDiag.DebugDiag.Log("Parse: " & url & " > Link: " & host,"Information","TESTER") Return(host) End Function End Class]]></script> </hoster> <hoster name="OpenLoad" type="1"> <supporteddomains> <host domain="openload.co" /> </supporteddomains> <script><![CDATA[using System.Net; public class HosterParser{ public static WebClient wc = new WebClient(); public static string ParseHoster(string hoster_input_url){ ServicePointManager.ServerCertificateValidationCallback = (sender, cert, chain, ssl) => true; string html = wc.DownloadString(hoster_input_url); var splitted = html.Split ('"'); string x = ""; for (int i=0;i<splitted.Length;i++){ if (splitted == "streamurl") x = splitted [i - 3].Split (new string[]{ "</span>" },System.StringSplitOptions.None)[0].Replace("<","<").Replace("&","&").Replace(">",">"); } x = x.Substring (1, x.Length - 1); string s=""; for (var i = 0; i < x.Length; i++) { var j = ((int)x); if ((j >= 33) && (j <= 126)) { char newCharCode = (char)(33 + ((j + 14) % 94)); s += newCharCode; } else { char newCharCode = (char)(j); s += newCharCode; } } char getChar =s[s.Length-1]; s = s.Substring (0, s.Length - 1) + ((char)(((int)getChar) + 2)).ToString(); return ("https://openload.co/stream/" + s+ "?mime=true"); } }]]></script> </hoster> <hoster name="OpenLoadHD" type="1"> <supporteddomains> <host domain="openload.co" /> </supporteddomains> <script><![CDATA[using System.Net; public class HosterParser{ public static WebClient wc = new WebClient(); public static string ParseHoster(string hoster_input_url){ ServicePointManager.ServerCertificateValidationCallback = (sender, cert, chain, ssl) => true; string html = wc.DownloadString(hoster_input_url); var splitted = html.Split ('"'); string x = ""; for (int i=0;i<splitted.Length;i++){ if (splitted == "streamurl") x = splitted [i - 3].Split (new string[]{ "</span>" },System.StringSplitOptions.None)[0].Replace("<","<").Replace("&","&").Replace(">",">"); } x = x.Substring (1, x.Length - 1); string s=""; for (var i = 0; i < x.Length; i++) { var j = ((int)x); if ((j >= 33) && (j <= 126)) { char newCharCode = (char)(33 + ((j + 14) % 94)); s += newCharCode; } else { char newCharCode = (char)(j); s += newCharCode; } } char getChar =s[s.Length-1]; s = s.Substring (0, s.Length - 1) + ((char)(((int)getChar) + 2)).ToString(); return ("https://openload.co/stream/" + s+ "?mime=true"); } }]]></script> </hoster> </hosterscripts> Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
NeoGriever Geschrieben 12. Oktober 2016 Autor Melden Teilen Geschrieben 12. Oktober 2016 Die hoster.xml ist nicht die, die du hochladen sollst. Im Installationsverzeichnis liegt eine Datei namens log.xml. DA steht alles relevante für mich drin. Die Hoster werde ich morgen erst einmal komplett überarbeiten und updaten. Ich bitte darum, dafür etwas geduld zu haben ... Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
patte Geschrieben 13. Oktober 2016 Melden Teilen Geschrieben 13. Oktober 2016 Hab v2 installiert aber immer noch gleiche Problem Spoiler <?xml version="1.0" encoding="ISO-8859-15" standalone="true"?> -<DebugLog> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:36:54"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:36:55"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:03"> <![CDATA[Staffeln der Serie "Death Note" werden geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:03"> <![CDATA[Loading Seasons of Death Note]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:03"> <![CDATA[Movies 1]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:03"> <![CDATA[Seasons 2]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:03"> <![CDATA[Staffeln der Serie "Death Note" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Episoden der Staffel "1" der Serie "Death Note" werden geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Load Episodes of Season 1 of Serie Death Note]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Found 19 Episodes]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Added Episode Wiedergeburt]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Added Episode Kampf]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Added Episode Handel]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Added Episode Jagd]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Added Episode Diplomatie]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Added Episode Kluft]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Added Episode Versuchung]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Added Episode Blick]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Added Episode Kontakt]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Added Episode Zweifel]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Added Episode Verantwortung]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Added Episode Liebe]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Added Episode Geständnis]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Added Episode Freund]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Added Episode Glücksspiel]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Added Episode Entscheidung]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Added Episode Vollstreckung]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Added Episode Team]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Added Episode Matsuda]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:05"> <![CDATA[Episoden der Staffel "1" der Serie "Death Note" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:06"> <![CDATA[Hoster der Episode "Wiedergeburt" der Staffel "1" der Serie "Death Note" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:06"> <![CDATA[Load Hoster of Wiedergeburt of Episode Death Note]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:06"> <![CDATA[Hoster found: AuroraVid (618138)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:06"> <![CDATA[Hoster found: FlashX (1713780)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:06"> <![CDATA[Hoster found: OpenLoad (2264913)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:06"> <![CDATA[Hoster found: PowerWatch (1506719)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:06"> <![CDATA[Hoster found: Vivo (2561399)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:06"> <![CDATA[Hoster found: YouWatch (1291810)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:06"> <![CDATA[Hoster der Episode "Wiedergeburt" der Staffel "1" der Serie "Death Note" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:06"> <![CDATA[Füge Episode "Wiedergeburt" der Staffel "1" der Serie "Death Note" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:09"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:09"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:37:09"> <![CDATA[Return http://vivo.sx/abcd8227bf]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="11.10.2016 16:37:09"> <![CDATA[https://vivo.sx/abcd8227bf wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="11.10.2016 16:37:10"> <![CDATA[https://vivo.sx/abcd8227bf wird geparsed ... (Durchgang 1) Post-Values: hash=8a62a47b989a4d7b3f18b97dda739902]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="11.10.2016 16:37:10"> <![CDATA[https://vivo.sx/abcd8227bf wird geparsed ... (Durchgang 1) Post-Values: timestamp=1476196880]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="11.10.2016 16:37:10"> <![CDATA[https://vivo.sx/abcd8227bf wird geparsed ... (Durchgang 1) Warte 8,5 Sekunden ...]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="11.10.2016 16:37:19"> <![CDATA[https://vivo.sx/abcd8227bf wurde geparsed. Link: https://delivery--rsc-4.vivo.sx/get/0030286184?e=1476218488&s=200&m=video/mp4&h=m1wovqm16aGNbsRjvn5tpw]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:42:28"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="11.10.2016 16:42:29"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="DEBUG" time="12.10.2016 18:44:36"> <![CDATA[Array ( ) Array ( ) Array ( [MIBDIRS] => C:/xampp/php/extras/mibs [MYSQL_HOME] => \xampp\mysql\bin [OPENSSL_CONF] => C:/xampp/apache/bin/openssl.cnf [PHP_PEAR_SYSCONF_DIR] => \xampp\php [PHPRC] => \xampp\php [TMP] => \xampp\tmp [HTTP_X_TEXTUPLOADER_API_KEY] => T871Y3KRSpQB8e9MhLbpdlasU+zlesap [HTTP_HOST] => localhost [CONTENT_LENGTH] => 71 [HTTP_EXPECT] => 100-continue [HTTP_CONNECTION] => Keep-Alive [PATH] => C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\ [SystemRoot] => C:\Windows [COMSPEC] => C:\Windows\system32\cmd.exe [PATHEXT] => .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC [WINDIR] => C:\Windows [SERVER_SIGNATURE] => <address>Apache/2.4.23 (Win32) OpenSSL/1.0.2h PHP/5.5.38 Server at localhost Port 80</address> [SERVER_SOFTWARE] => Apache/2.4.23 (Win32) OpenSSL/1.0.2h PHP/5.5.38 [SERVER_NAME] => localhost [SERVER_ADDR] => ::1 [SERVER_PORT] => 80 [REMOTE_ADDR] => ::1 [DOCUMENT_ROOT] => C:/xampp/htdocs [REQUEST_SCHEME] => http [CONTEXT_PREFIX] => [CONTEXT_DOCUMENT_ROOT] => C:/xampp/htdocs [SERVER_ADMIN] => postmaster@localhost [SCRIPT_FILENAME] => C:/xampp/htdocs/source_post.php [REMOTE_PORT] => 54787 [GATEWAY_INTERFACE] => CGI/1.1 [SERVER_PROTOCOL] => HTTP/1.1 [REQUEST_METHOD] => POST [QUERY_STRING] => [REQUEST_URI] => /source_post.php [SCRIPT_NAME] => /source_post.php [PHP_SELF] => /source_post.php [REQUEST_TIME_FLOAT] => 1476290676.874 [REQUEST_TIME] => 1476290676 ) ]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 18:44:37"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 18:44:39"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="DEBUG" time="12.10.2016 18:46:50"> <![CDATA[Array ( [timestamp] => 12.10.2016 18:46:50 [source] => Ein einfacher Test [name] => Test ) Array ( ) Array ( [MIBDIRS] => C:/xampp/php/extras/mibs [MYSQL_HOME] => \xampp\mysql\bin [OPENSSL_CONF] => C:/xampp/apache/bin/openssl.cnf [PHP_PEAR_SYSCONF_DIR] => \xampp\php [PHPRC] => \xampp\php [TMP] => \xampp\tmp [CONTENT_TYPE] => application/x-www-form-urlencoded [HTTP_HOST] => localhost [CONTENT_LENGTH] => 69 [HTTP_EXPECT] => 100-continue [HTTP_CONNECTION] => Keep-Alive [PATH] => C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\ [SystemRoot] => C:\Windows [COMSPEC] => C:\Windows\system32\cmd.exe [PATHEXT] => .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC [WINDIR] => C:\Windows [SERVER_SIGNATURE] => <address>Apache/2.4.23 (Win32) OpenSSL/1.0.2h PHP/5.5.38 Server at localhost Port 80</address> [SERVER_SOFTWARE] => Apache/2.4.23 (Win32) OpenSSL/1.0.2h PHP/5.5.38 [SERVER_NAME] => localhost [SERVER_ADDR] => ::1 [SERVER_PORT] => 80 [REMOTE_ADDR] => ::1 [DOCUMENT_ROOT] => C:/xampp/htdocs [REQUEST_SCHEME] => http [CONTEXT_PREFIX] => [CONTEXT_DOCUMENT_ROOT] => C:/xampp/htdocs [SERVER_ADMIN] => postmaster@localhost [SCRIPT_FILENAME] => C:/xampp/htdocs/source_post.php [REMOTE_PORT] => 54798 [GATEWAY_INTERFACE] => CGI/1.1 [SERVER_PROTOCOL] => HTTP/1.1 [REQUEST_METHOD] => POST [QUERY_STRING] => [REQUEST_URI] => /source_post.php [SCRIPT_NAME] => /source_post.php [PHP_SELF] => /source_post.php [REQUEST_TIME_FLOAT] => 1476290810.276 [REQUEST_TIME] => 1476290810 ) ]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 18:46:50"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 18:46:51"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="DEBUG" time="12.10.2016 18:46:58"> <![CDATA[Array ( [timestamp] => 12.10.2016 18:46:58 [source] => Ein einfacher Test [name] => Test ) Array ( ) Array ( [MIBDIRS] => C:/xampp/php/extras/mibs [MYSQL_HOME] => \xampp\mysql\bin [OPENSSL_CONF] => C:/xampp/apache/bin/openssl.cnf [PHP_PEAR_SYSCONF_DIR] => \xampp\php [PHPRC] => \xampp\php [TMP] => \xampp\tmp [CONTENT_TYPE] => application/x-www-form-urlencoded [HTTP_HOST] => localhost [CONTENT_LENGTH] => 69 [HTTP_EXPECT] => 100-continue [HTTP_CONNECTION] => Keep-Alive [PATH] => C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\ [SystemRoot] => C:\Windows [COMSPEC] => C:\Windows\system32\cmd.exe [PATHEXT] => .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC [WINDIR] => C:\Windows [SERVER_SIGNATURE] => <address>Apache/2.4.23 (Win32) OpenSSL/1.0.2h PHP/5.5.38 Server at localhost Port 80</address> [SERVER_SOFTWARE] => Apache/2.4.23 (Win32) OpenSSL/1.0.2h PHP/5.5.38 [SERVER_NAME] => localhost [SERVER_ADDR] => ::1 [SERVER_PORT] => 80 [REMOTE_ADDR] => ::1 [DOCUMENT_ROOT] => C:/xampp/htdocs [REQUEST_SCHEME] => http [CONTEXT_PREFIX] => [CONTEXT_DOCUMENT_ROOT] => C:/xampp/htdocs [SERVER_ADMIN] => postmaster@localhost [SCRIPT_FILENAME] => C:/xampp/htdocs/source_post.php [REMOTE_PORT] => 54801 [GATEWAY_INTERFACE] => CGI/1.1 [SERVER_PROTOCOL] => HTTP/1.1 [REQUEST_METHOD] => POST [QUERY_STRING] => [REQUEST_URI] => /source_post.php [SCRIPT_NAME] => /source_post.php [PHP_SELF] => /source_post.php [REQUEST_TIME_FLOAT] => 1476290818.921 [REQUEST_TIME] => 1476290818 ) ]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 18:46:58"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 18:46:59"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="DEBUG" time="12.10.2016 18:49:51"> <![CDATA[<br /> <b>Parse error</b>: syntax error, unexpected ')' in <b>C:\xampp\htdocs\source_post.php</b> on line <b>5</b><br /> ]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 18:49:51"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 18:49:51"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="DEBUG" time="12.10.2016 18:50:14"> <![CDATA[3u0b1ng6mtcg00000000000000]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 18:50:14"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 18:50:15"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="DEBUG" time="12.10.2016 19:02:00"> <![CDATA[<br /> <b>Notice</b>: Undefined variable: source in <b>C:\xampp\htdocs\source_post.php</b> on line <b>16</b><br /> <?xml version="1.0"?> <result><short>2iqnzqv</short></result> ]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 19:02:00"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 19:02:02"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="DEBUG" time="12.10.2016 19:02:53"> <![CDATA[<?xml version="1.0"?> <result><short>2iqnzqv</short></result> ]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 19:02:53"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 19:02:54"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="DEBUG" time="12.10.2016 19:06:03"> <![CDATA[<?xml version="1.0"?> <result><short>2iqnzqv</short></result> ]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 19:06:03"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 19:06:04"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="DEBUG" time="12.10.2016 19:26:26"> <![CDATA[2iqnzqv]]> </entry> -<entry visible="1" sub="MAIN" type="DEBUG" time="12.10.2016 19:26:26"> <![CDATA[<?xml version="1.0"?><result><name>Test</name><source><![CDATA[Ein einfacher Test]]></source></result>]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 19:26:27"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 19:26:29"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="DEBUG" time="12.10.2016 19:27:37"> <![CDATA[2iqnzqv]]> </entry> -<entry visible="1" sub="MAIN" type="DEBUG" time="12.10.2016 19:32:03"> <![CDATA[2iqnzqv]]> </entry> -<entry visible="1" sub="MAIN" type="DEBUG" time="12.10.2016 19:32:03"> <![CDATA[<?xml version="1.0"?><result><name>Test</name><source>Ein einfacher Test</source><domains></domains></result>]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 19:32:03"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 19:53:36"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 19:53:37"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 19:54:50"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 19:54:51"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="12.10.2016 19:54:55"> <![CDATA[ wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 19:54:56"> <![CDATA[Schnelltest erfolgreich]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 19:55:18"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 19:55:18"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="12.10.2016 19:55:23"> <![CDATA[ wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 19:55:23"> <![CDATA[Schnelltest erfolgreich]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 19:57:49"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 19:57:50"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:07:37"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:07:38"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="12.10.2016 20:07:54"> <![CDATA[ wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:07:54"> <![CDATA[Schnelltest erfolgreich]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="12.10.2016 20:08:03"> <![CDATA[ wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:08:03"> <![CDATA[Schnelltest erfolgreich]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:09:45"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:09:46"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:10:20"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:10:21"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:10:36"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:10:37"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:13:31"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:13:31"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:13:58"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:13:58"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:14:18"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:14:19"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:14:40"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:14:42"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:16:20"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:16:21"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:22:02"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:22:03"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:22:07"> <![CDATA[Schnelltest erfolgreich]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:30:09"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:30:10"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:30:21"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:30:22"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Fehler" time="12.10.2016 20:30:28"> <![CDATA[Schnelltest fehlgeschlagen. Prüfe den Klassennamen!]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:31:32"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:31:32"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Fehler" time="12.10.2016 20:31:39"> <![CDATA[Schnelltest fehlgeschlagen. Prüfe den Klassennamen!]]> </entry> -<entry visible="1" sub="MAIN" type="Fehler" time="12.10.2016 20:31:44"> <![CDATA[Schnelltest fehlgeschlagen. Prüfe den Klassennamen!]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:34:33"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:34:34"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Fehler" time="12.10.2016 20:35:23"> <![CDATA[Schnelltest fehlgeschlagen. Prüfe den Klassennamen!]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:36:09"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:36:10"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Fehler" time="12.10.2016 20:36:22"> <![CDATA[Schnelltest fehlgeschlagen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:37:43"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:37:44"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Fehler" time="12.10.2016 20:37:49"> <![CDATA[Schnelltest fehlgeschlagen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:37:56"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:37:57"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Fehler" time="12.10.2016 20:39:46"> <![CDATA[Schnelltest fehlgeschlagen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:39:57"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:39:58"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:40:45"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:40:46"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Fehler" time="12.10.2016 20:41:31"> <![CDATA[Schnelltest fehlgeschlagen]]> </entry> -<entry visible="1" sub="MAIN" type="Fehler" time="12.10.2016 20:41:37"> <![CDATA[Schnelltest fehlgeschlagen]]> </entry> -<entry visible="1" sub="MAIN" type="Fehler" time="12.10.2016 20:41:39"> <![CDATA[Schnelltest fehlgeschlagen]]> </entry> -<entry visible="1" sub="MAIN" type="Fehler" time="12.10.2016 20:41:39"> <![CDATA[Schnelltest fehlgeschlagen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:41:58"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:41:59"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Fehler" time="12.10.2016 20:42:10"> <![CDATA[Schnelltest fehlgeschlagen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:43:46"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:43:47"> <![CDATA[Loaded 3434 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Fehler" time="12.10.2016 20:43:51"> <![CDATA[Schnelltest fehlgeschlagen. Prüfe den Klassennamen!]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:43:57"> <![CDATA[Schnelltest erfolgreich]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="12.10.2016 20:44:02"> <![CDATA[Schnelltest erfolgreich]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:54:59"> <![CDATA[Loading whole Series list ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:00"> <![CDATA[Loaded 3440 Series]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:36"> <![CDATA[Staffeln der Serie "24" werden geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:36"> <![CDATA[Loading Seasons of 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:36"> <![CDATA[Movies 1]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:36"> <![CDATA[Seasons 8]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:36"> <![CDATA[Staffeln der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Episoden der Staffel "1" der Serie "24" werden geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Load Episodes of Season 1 of Serie 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Found 24 Episodes]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 24:00 - 01:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 01:00 - 02:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 02:00 - 03:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 03:00 - 04:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 04:00 - 05:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 05:00 - 06:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 06:00 - 07:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 07:00 - 08:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 08:00 - 09:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 09:00 - 10:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 10:00 - 11:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 11:00 - 12:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 12:00 - 13:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 13:00 - 14:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 14:00 - 15:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 15:00 - 16:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 16:00 - 17:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 17:00 - 18:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 18:00 - 19:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 19:00 - 20:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 20:00 - 21:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 21:00 - 22:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 22:00 - 23:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Added Episode Tag 1: 23:00 - 24:00 Uhr]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:40"> <![CDATA[Episoden der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Hoster der Episode "Tag 1: 24:00 - 01:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Load Hoster of Tag 1: 24:00 - 01:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Hoster found: FlashX (1698928)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Hoster found: OpenLoad (2431955)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Hoster found: OpenLoadHD (2643665)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Hoster found: PowerWatch (1433975)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Hoster found: Vivo (2548941)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Hoster found: YouWatch (624475)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Hoster der Episode "Tag 1: 24:00 - 01:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Füge Episode "Tag 1: 24:00 - 01:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Hoster der Episode "Tag 1: 01:00 - 02:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Load Hoster of Tag 1: 01:00 - 02:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Hoster found: FlashX (1698931)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Hoster found: OpenLoad (2431956)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Hoster found: OpenLoadHD (2643666)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Hoster found: PowerWatch (1433978)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Hoster found: Vivo (2548942)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Hoster found: YouWatch (624476)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Hoster der Episode "Tag 1: 01:00 - 02:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Füge Episode "Tag 1: 01:00 - 02:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Hoster der Episode "Tag 1: 02:00 - 03:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:53"> <![CDATA[Load Hoster of Tag 1: 02:00 - 03:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: FlashX (1698934)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: OpenLoad (2431957)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: OpenLoadHD (2643667)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: PowerWatch (1433980)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: Vivo (2548943)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: YouWatch (624477)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster der Episode "Tag 1: 02:00 - 03:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Füge Episode "Tag 1: 02:00 - 03:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster der Episode "Tag 1: 03:00 - 04:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Load Hoster of Tag 1: 03:00 - 04:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: FlashX (1698937)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: OpenLoad (2431958)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: OpenLoadHD (2643668)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: PowerWatch (1433983)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: Vivo (2548944)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: YouWatch (624478)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster der Episode "Tag 1: 03:00 - 04:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Füge Episode "Tag 1: 03:00 - 04:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster der Episode "Tag 1: 04:00 - 05:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Load Hoster of Tag 1: 04:00 - 05:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: FlashX (1698940)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: OpenLoad (2431959)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: OpenLoadHD (2643669)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: PowerWatch (1433986)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: Vivo (2548945)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: YouWatch (624479)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster der Episode "Tag 1: 04:00 - 05:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Füge Episode "Tag 1: 04:00 - 05:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster der Episode "Tag 1: 05:00 - 06:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Load Hoster of Tag 1: 05:00 - 06:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: FlashX (1698944)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: OpenLoad (2431960)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: OpenLoadHD (2643670)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: PowerWatch (1433989)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: Vivo (2548946)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: YouWatch (624480)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster der Episode "Tag 1: 05:00 - 06:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Füge Episode "Tag 1: 05:00 - 06:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster der Episode "Tag 1: 06:00 - 07:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Load Hoster of Tag 1: 06:00 - 07:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: FlashX (1698947)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: OpenLoad (2431961)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: OpenLoadHD (2643671)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: PowerWatch (1433991)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: Vivo (2548947)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: YouWatch (624481)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster der Episode "Tag 1: 06:00 - 07:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Füge Episode "Tag 1: 06:00 - 07:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster der Episode "Tag 1: 07:00 - 08:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Load Hoster of Tag 1: 07:00 - 08:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:54"> <![CDATA[Hoster found: FlashX (1698950)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: OpenLoad (2431962)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: OpenLoadHD (2643672)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: PowerWatch (1433996)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: Vivo (2548948)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: YouWatch (624482)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster der Episode "Tag 1: 07:00 - 08:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Füge Episode "Tag 1: 07:00 - 08:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster der Episode "Tag 1: 08:00 - 09:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Load Hoster of Tag 1: 08:00 - 09:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: FlashX (1698953)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: OpenLoad (2431963)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: OpenLoadHD (2643673)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: PowerWatch (1434069)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: Vivo (2548949)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: YouWatch (1502974)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster der Episode "Tag 1: 08:00 - 09:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Füge Episode "Tag 1: 08:00 - 09:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster der Episode "Tag 1: 09:00 - 10:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Load Hoster of Tag 1: 09:00 - 10:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: FlashX (1698956)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: OpenLoad (2431964)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: OpenLoadHD (2643674)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: PowerWatch (1434072)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: Vivo (2548950)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: YouWatch (624484)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster der Episode "Tag 1: 09:00 - 10:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Füge Episode "Tag 1: 09:00 - 10:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster der Episode "Tag 1: 10:00 - 11:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Load Hoster of Tag 1: 10:00 - 11:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: FlashX (1698960)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: OpenLoad (2431965)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: OpenLoadHD (2643675)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: PowerWatch (1434079)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: Vivo (2548951)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: YouWatch (624485)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster der Episode "Tag 1: 10:00 - 11:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Füge Episode "Tag 1: 10:00 - 11:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster der Episode "Tag 1: 11:00 - 12:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Load Hoster of Tag 1: 11:00 - 12:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: FlashX (1698963)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: OpenLoad (2431966)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: OpenLoadHD (2643676)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: PowerWatch (1434081)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: Vivo (2548952)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: YouWatch (2463628)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster der Episode "Tag 1: 11:00 - 12:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Füge Episode "Tag 1: 11:00 - 12:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster der Episode "Tag 1: 12:00 - 13:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Load Hoster of Tag 1: 12:00 - 13:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: FlashX (1698966)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: OpenLoad (2431967)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: OpenLoadHD (2643677)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: PowerWatch (1434088)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: Vivo (2548953)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:55"> <![CDATA[Hoster found: YouWatch (624487)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster der Episode "Tag 1: 12:00 - 13:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Füge Episode "Tag 1: 12:00 - 13:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster der Episode "Tag 1: 13:00 - 14:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Load Hoster of Tag 1: 13:00 - 14:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: FlashX (1698969)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: OpenLoad (2431968)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: OpenLoadHD (2643678)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: PowerWatch (1434091)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: Vivo (2548954)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: YouWatch (624488)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster der Episode "Tag 1: 13:00 - 14:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Füge Episode "Tag 1: 13:00 - 14:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster der Episode "Tag 1: 14:00 - 15:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Load Hoster of Tag 1: 14:00 - 15:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: FlashX (1698974)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: OpenLoad (2431969)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: OpenLoadHD (2643679)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: PowerWatch (1434093)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: Vivo (2548955)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: YouWatch (1387000)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster der Episode "Tag 1: 14:00 - 15:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Füge Episode "Tag 1: 14:00 - 15:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster der Episode "Tag 1: 15:00 - 16:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Load Hoster of Tag 1: 15:00 - 16:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: FlashX (1698977)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: OpenLoad (2431970)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: OpenLoadHD (2643680)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: PowerWatch (1434107)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: Vivo (2548956)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: YouWatch (624490)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster der Episode "Tag 1: 15:00 - 16:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Füge Episode "Tag 1: 15:00 - 16:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster der Episode "Tag 1: 16:00 - 17:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Load Hoster of Tag 1: 16:00 - 17:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: FlashX (1698980)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: OpenLoad (2431971)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: OpenLoadHD (2643681)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: PowerWatch (1434110)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: Vivo (2548957)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster found: YouWatch (624491)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster der Episode "Tag 1: 16:00 - 17:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Füge Episode "Tag 1: 16:00 - 17:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Hoster der Episode "Tag 1: 17:00 - 18:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:56"> <![CDATA[Load Hoster of Tag 1: 17:00 - 18:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: FlashX (1698983)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: OpenLoad (2431972)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: OpenLoadHD (2643682)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: PowerWatch (1434113)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: Vivo (2548958)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: YouWatch (624492)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster der Episode "Tag 1: 17:00 - 18:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Füge Episode "Tag 1: 17:00 - 18:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster der Episode "Tag 1: 18:00 - 19:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Load Hoster of Tag 1: 18:00 - 19:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: FlashX (1698986)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: OpenLoad (2431973)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: OpenLoadHD (2643683)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: PowerWatch (1434116)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: Vivo (2548959)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: YouWatch (624493)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster der Episode "Tag 1: 18:00 - 19:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Füge Episode "Tag 1: 18:00 - 19:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster der Episode "Tag 1: 19:00 - 20:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Load Hoster of Tag 1: 19:00 - 20:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: FlashX (1698989)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: OpenLoad (2431974)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: OpenLoadHD (2643684)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: PowerWatch (1434121)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: Vivo (2548960)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: YouWatch (624494)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster der Episode "Tag 1: 19:00 - 20:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Füge Episode "Tag 1: 19:00 - 20:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster der Episode "Tag 1: 20:00 - 21:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Load Hoster of Tag 1: 20:00 - 21:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: FlashX (1698992)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: OpenLoad (2431975)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: OpenLoadHD (2643685)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: PowerWatch (1434124)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: Vivo (2548961)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster found: YouWatch (624495)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster der Episode "Tag 1: 20:00 - 21:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Füge Episode "Tag 1: 20:00 - 21:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Hoster der Episode "Tag 1: 21:00 - 22:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:57"> <![CDATA[Load Hoster of Tag 1: 21:00 - 22:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster found: FlashX (1698994)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster found: OpenLoad (2431976)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster found: OpenLoadHD (2643686)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster found: PowerWatch (1434137)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster found: Vivo (2548962)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster found: YouWatch (624496)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster der Episode "Tag 1: 21:00 - 22:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Füge Episode "Tag 1: 21:00 - 22:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster der Episode "Tag 1: 22:00 - 23:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Load Hoster of Tag 1: 22:00 - 23:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster found: FlashX (1698997)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster found: OpenLoad (2431977)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster found: OpenLoadHD (2643687)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster found: PowerWatch (1434139)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster found: Vivo (2548963)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster found: YouWatch (2463629)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster der Episode "Tag 1: 22:00 - 23:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Füge Episode "Tag 1: 22:00 - 23:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster der Episode "Tag 1: 23:00 - 24:00 Uhr" der Staffel "1" der Serie "24" wird geladen ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Load Hoster of Tag 1: 23:00 - 24:00 Uhr of Episode 24]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster found: FlashX (1699000)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster found: OpenLoad (2431978)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster found: OpenLoadHD (2643688)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster found: PowerWatch (1434142)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster found: Vivo (2548964)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster found: YouWatch (624498)]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Hoster der Episode "Tag 1: 23:00 - 24:00 Uhr" der Staffel "1" der Serie "24" geladen]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:55:58"> <![CDATA[Füge Episode "Tag 1: 23:00 - 24:00 Uhr" der Staffel "1" der Serie "24" der Downloadliste hinzu ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:02"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:02"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:02"> <![CDATA[Return http://vivo.sx/a43e2cf37a]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:02"> <![CDATA[https://vivo.sx/a43e2cf37a wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:03"> <![CDATA[https://vivo.sx/a43e2cf37a wird geparsed ... (Durchgang 1) Post-Values: hash=f330d9cdc9c58705e6f08a7d09006f89]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:03"> <![CDATA[https://vivo.sx/a43e2cf37a wird geparsed ... (Durchgang 1) Post-Values: timestamp=1476352808]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:03"> <![CDATA[https://vivo.sx/a43e2cf37a wird geparsed ... (Durchgang 1) Warte 8,5 Sekunden ...]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:11"> <![CDATA[https://vivo.sx/a43e2cf37a wurde geparsed. Link: https://delivery--rsc-4.vivo.sx/get/0036902515?e=1476374417&s=200&m=video/mp4&h=1IZKTofWcFowHecHeERXng]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:11"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:11"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:11"> <![CDATA[Return http://www.flashx.tv/gskqkvmhxsx0]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:18"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:18"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:18"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:18"> <![CDATA[Return e5cp7RRmiQQ/]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:18"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:19"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:19"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:19"> <![CDATA[Return kxJM5LVOocg/24.S01E01.GERMAN.DUBBED.720p.WebHD.h264-iNFOTv.mkv]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:28"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:28"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:28"> <![CDATA[Return http://vivo.sx/868878399f]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:28"> <![CDATA[https://vivo.sx/868878399f wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:28"> <![CDATA[https://vivo.sx/868878399f wird geparsed ... (Durchgang 1) Post-Values: hash=34e5389258d3d23d4ae761f3b522752f]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:28"> <![CDATA[https://vivo.sx/868878399f wird geparsed ... (Durchgang 1) Post-Values: timestamp=1476352834]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:28"> <![CDATA[https://vivo.sx/868878399f wird geparsed ... (Durchgang 1) Warte 8,5 Sekunden ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:29"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:29"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:29"> <![CDATA[Return http://vivo.sx/71efce75c6]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:29"> <![CDATA[https://vivo.sx/71efce75c6 wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:29"> <![CDATA[https://vivo.sx/71efce75c6 wird geparsed ... (Durchgang 1) Post-Values: hash=fa07caae73307e8956bcf6f014887fd6]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:29"> <![CDATA[https://vivo.sx/71efce75c6 wird geparsed ... (Durchgang 1) Post-Values: timestamp=1476352835]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:29"> <![CDATA[https://vivo.sx/71efce75c6 wird geparsed ... (Durchgang 1) Warte 8,5 Sekunden ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:30"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:30"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:30"> <![CDATA[Return http://vivo.sx/0b61021061]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:30"> <![CDATA[https://vivo.sx/0b61021061 wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:30"> <![CDATA[https://vivo.sx/0b61021061 wird geparsed ... (Durchgang 1) Post-Values: hash=0ea2724a79b8b10fabc3c1e2391ada2c]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:30"> <![CDATA[https://vivo.sx/0b61021061 wird geparsed ... (Durchgang 1) Post-Values: timestamp=1476352836]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:30"> <![CDATA[https://vivo.sx/0b61021061 wird geparsed ... (Durchgang 1) Warte 8,5 Sekunden ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:30"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:30"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:30"> <![CDATA[Return http://vivo.sx/1c0f4021d8]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:31"> <![CDATA[https://vivo.sx/1c0f4021d8 wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:31"> <![CDATA[https://vivo.sx/1c0f4021d8 wird geparsed ... (Durchgang 1) Post-Values: hash=5b8b88d8f5c85bc7a6be0304e032f258]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:31"> <![CDATA[https://vivo.sx/1c0f4021d8 wird geparsed ... (Durchgang 1) Post-Values: timestamp=1476352837]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:31"> <![CDATA[https://vivo.sx/1c0f4021d8 wird geparsed ... (Durchgang 1) Warte 8,5 Sekunden ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:31"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:31"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:31"> <![CDATA[Return http://vivo.sx/6777aa4d91]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:31"> <![CDATA[https://vivo.sx/6777aa4d91 wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:32"> <![CDATA[https://vivo.sx/6777aa4d91 wird geparsed ... (Durchgang 1) Post-Values: hash=23b9d80714cfdb3896a3910581ef4b31]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:32"> <![CDATA[https://vivo.sx/6777aa4d91 wird geparsed ... (Durchgang 1) Post-Values: timestamp=1476352837]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:32"> <![CDATA[https://vivo.sx/6777aa4d91 wird geparsed ... (Durchgang 1) Warte 8,5 Sekunden ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:32"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:32"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:32"> <![CDATA[Return http://vivo.sx/a832019524]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:32"> <![CDATA[https://vivo.sx/a832019524 wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:32"> <![CDATA[https://vivo.sx/a832019524 wird geparsed ... (Durchgang 1) Post-Values: hash=0e88b2eca0e6c8a6d61f82b7feba97e7]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:32"> <![CDATA[https://vivo.sx/a832019524 wird geparsed ... (Durchgang 1) Post-Values: timestamp=1476352838]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:32"> <![CDATA[https://vivo.sx/a832019524 wird geparsed ... (Durchgang 1) Warte 8,5 Sekunden ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:33"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:33"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:33"> <![CDATA[Return http://vivo.sx/c2296a47f4]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:33"> <![CDATA[https://vivo.sx/c2296a47f4 wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:33"> <![CDATA[https://vivo.sx/c2296a47f4 wird geparsed ... (Durchgang 1) Post-Values: hash=3174ed6ecffea41de0e74799b23ce10b]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:33"> <![CDATA[https://vivo.sx/c2296a47f4 wird geparsed ... (Durchgang 1) Post-Values: timestamp=1476352839]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:33"> <![CDATA[https://vivo.sx/c2296a47f4 wird geparsed ... (Durchgang 1) Warte 8,5 Sekunden ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:34"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:34"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:34"> <![CDATA[Return http://vivo.sx/dcaaca8b67]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:34"> <![CDATA[https://vivo.sx/dcaaca8b67 wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:34"> <![CDATA[https://vivo.sx/dcaaca8b67 wird geparsed ... (Durchgang 1) Post-Values: hash=3d465576de68ff4f371ea4274b662dc9]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:34"> <![CDATA[https://vivo.sx/dcaaca8b67 wird geparsed ... (Durchgang 1) Post-Values: timestamp=1476352840]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:34"> <![CDATA[https://vivo.sx/dcaaca8b67 wird geparsed ... (Durchgang 1) Warte 8,5 Sekunden ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:35"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:35"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:35"> <![CDATA[Return http://vivo.sx/d7f2fb886e]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:35"> <![CDATA[https://vivo.sx/d7f2fb886e wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:35"> <![CDATA[https://vivo.sx/d7f2fb886e wird geparsed ... (Durchgang 1) Post-Values: hash=1a080da90d7004126b05790515069e72]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:35"> <![CDATA[https://vivo.sx/d7f2fb886e wird geparsed ... (Durchgang 1) Post-Values: timestamp=1476352841]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:35"> <![CDATA[https://vivo.sx/d7f2fb886e wird geparsed ... (Durchgang 1) Warte 8,5 Sekunden ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:35"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:36"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:36"> <![CDATA[Return http://vivo.sx/5ce5210e87]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:36"> <![CDATA[https://vivo.sx/5ce5210e87 wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:36"> <![CDATA[https://vivo.sx/5ce5210e87 wird geparsed ... (Durchgang 1) Post-Values: hash=aa97d14a4fea7502904bd0703633d528]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:36"> <![CDATA[https://vivo.sx/5ce5210e87 wird geparsed ... (Durchgang 1) Post-Values: timestamp=1476352842]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:36"> <![CDATA[https://vivo.sx/5ce5210e87 wird geparsed ... (Durchgang 1) Warte 8,5 Sekunden ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:36"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:36"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:36"> <![CDATA[Return http://vivo.sx/2aeadc87b2]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:36"> <![CDATA[https://vivo.sx/2aeadc87b2 wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:37"> <![CDATA[https://vivo.sx/2aeadc87b2 wird geparsed ... (Durchgang 1) Post-Values: hash=fdde19ed4e9456e886f15b18b27baff3]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:37"> <![CDATA[https://vivo.sx/2aeadc87b2 wird geparsed ... (Durchgang 1) Post-Values: timestamp=1476352842]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:37"> <![CDATA[https://vivo.sx/2aeadc87b2 wird geparsed ... (Durchgang 1) Warte 8,5 Sekunden ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:37"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:37"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:37"> <![CDATA[Return http://vivo.sx/f4076937f1]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:37"> <![CDATA[https://vivo.sx/868878399f wurde geparsed. Link: https://delivery--rsc-4.vivo.sx/get/0036902536?e=1476374443&s=200&m=video/mp4&h=XdgrRM0HIgb1Y8ZvQ5HuAw]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:37"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:37"> <![CDATA[https://vivo.sx/f4076937f1 wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:37"> <![CDATA[https://vivo.sx/f4076937f1 wird geparsed ... (Durchgang 1) Post-Values: hash=d8f09a7ae3eaf53bed5e227e21140f7c]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:37"> <![CDATA[https://vivo.sx/f4076937f1 wird geparsed ... (Durchgang 1) Post-Values: timestamp=1476352843]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:37"> <![CDATA[https://vivo.sx/f4076937f1 wird geparsed ... (Durchgang 1) Warte 8,5 Sekunden ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:37"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:37"> <![CDATA[Return http://www.flashx.tv/y9docfgxwo4r]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:38"> <![CDATA[https://vivo.sx/71efce75c6 wurde geparsed. Link: https://delivery--rsc-4.vivo.sx/get/0036902535?e=1476374444&s=200&m=video/mp4&h=TAParYpXuxwdQqt9_ifEPw]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:38"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:38"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:38"> <![CDATA[Return http://www.flashx.tv/mm1gp7jdb5xq]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:39"> <![CDATA[https://vivo.sx/0b61021061 wurde geparsed. Link: https://delivery--rsc-5.vivo.sx/get/0000002702?e=1476374445&s=200&m=video/mp4&h=whcqws6tNoJqcngkASlmBQ]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:39"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:39"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:39"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:39"> <![CDATA[Return http://www.flashx.tv/cnvhyaxd38ah]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:39"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:39"> <![CDATA[Return http://vivo.sx/8a492196da]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:39"> <![CDATA[https://vivo.sx/8a492196da wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:39"> <![CDATA[https://vivo.sx/8a492196da wird geparsed ... (Durchgang 1) Post-Values: hash=6efe53b46dfb14c283d9ed77e498bc13]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:39"> <![CDATA[https://vivo.sx/8a492196da wird geparsed ... (Durchgang 1) Post-Values: timestamp=1476352845]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:39"> <![CDATA[https://vivo.sx/8a492196da wird geparsed ... (Durchgang 1) Warte 8,5 Sekunden ...]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:39"> <![CDATA[https://vivo.sx/1c0f4021d8 wurde geparsed. Link: https://delivery--rsc-4.vivo.sx/get/0036902534?e=1476374445&s=200&m=video/mp4&h=Bhy-EUXlnbmPeOvhXhmAug]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:39"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:40"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:40"> <![CDATA[Return http://www.flashx.tv/kqrxi4cs4ug8]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:40"> <![CDATA[https://vivo.sx/6777aa4d91 wurde geparsed. Link: https://delivery--rsc-4.vivo.sx/get/0036902520?e=1476374446&s=200&m=video/mp4&h=P1nl7_ae_V-IDaOkqIlgAA]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:40"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:40"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:40"> <![CDATA[Return http://www.flashx.tv/zpbz1dfm1ddo]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:41"> <![CDATA[https://vivo.sx/a832019524 wurde geparsed. Link: https://delivery--rsc-4.vivo.sx/get/0036902532?e=1476374447&s=200&m=video/mp4&h=Ka4vKtfvAobxe1iyzZ2Y_w]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:41"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:41"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:41"> <![CDATA[Return http://www.flashx.tv/3j4vao2aur8g]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:42"> <![CDATA[https://vivo.sx/c2296a47f4 wurde geparsed. Link: https://delivery--rsc-4.vivo.sx/get/0036902519?e=1476374448&s=200&m=video/mp4&h=WfjRL4PKgt5949SGkKwvtg]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:42"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:42"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:42"> <![CDATA[Return http://www.flashx.tv/rtqn3e7ldd1c]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:43"> <![CDATA[https://vivo.sx/dcaaca8b67 wurde geparsed. Link: https://delivery--rsc-5.vivo.sx/get/0000002673?e=1476374449&s=200&m=video/mp4&h=xb5lWlRRt52XLwO_LaGJ6g]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:43"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:43"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:43"> <![CDATA[Return http://www.flashx.tv/sbc4q7309sxy]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:44"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:44"> <![CDATA[https://vivo.sx/d7f2fb886e wurde geparsed. Link: https://delivery--rsc-5.vivo.sx/get/0000002671?e=1476374450&s=200&m=video/mp4&h=auZhBpwAtPRYod2ZZYqEXw]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:44"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:44"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:44"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:44"> <![CDATA[Return rNTYT89eL9o/]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:44"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:44"> <![CDATA[Return http://www.flashx.tv/xud80s9ijkb7]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:44"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:44"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:44"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:44"> <![CDATA[Return DQdlKjQqX20/24.S01E02.GERMAN.DUBBED.720p.WebHD.h264-iNFOTv.mkv]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:44"> <![CDATA[https://vivo.sx/5ce5210e87 wurde geparsed. Link: https://delivery--rsc-5.vivo.sx/get/0000002708?e=1476374450&s=200&m=video/mp4&h=kA96ZVx3rcu2coAPYKMnqw]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:44"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:45"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:45"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:45"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:45"> <![CDATA[Return GQi-dU8ZOMU/]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:45"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:45"> <![CDATA[Return http://www.flashx.tv/avpefqviggkw]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:45"> <![CDATA[https://vivo.sx/2aeadc87b2 wurde geparsed. Link: https://delivery--rsc-4.vivo.sx/get/0036902537?e=1476374451&s=200&m=video/mp4&h=lJd21H8BQ1c96oav5vToEQ]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:45"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:45"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:45"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:45"> <![CDATA[Return http://www.flashx.tv/cugqfvi08qtk]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:45"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:45"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:45"> <![CDATA[Return p9b50CGF5eA/24.S01E03.GERMAN.DUBBED.720p.WebHD.h264-iNFOTv.mkv]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:46"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:46"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:46"> <![CDATA[Return k36X4qEiGks/]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:46"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:46"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:46"> <![CDATA[https://vivo.sx/f4076937f1 wurde geparsed. Link: https://delivery--rsc-5.vivo.sx/get/0000002672?e=1476374452&s=200&m=video/mp4&h=7h40XYcoT2z7xq4YPhatBA]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:46"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:46"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:46"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:46"> <![CDATA[Return pgwdr_xdI0g/24.S01E04.GERMAN.DUBBED.720p.WebHD.h264-iNFOTv.mkv]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:46"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:46"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:46"> <![CDATA[Return EUtDK8uoyd4/]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:46"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:46"> <![CDATA[Return http://www.flashx.tv/dph045iiou8d]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:46"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:46"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:46"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:46"> <![CDATA[Return FDF8H5jP6oM/24.S01E05.GERMAN.DUBBED.720p.WebHD.h264-iNFOTv.mkv]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:47"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:47"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:47"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:47"> <![CDATA[Return vq987McchcQ/]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:47"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:47"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:47"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:47"> <![CDATA[Return PXKmvCv5vSQ/24.S01E06.GERMAN.DUBBED.720p.WebHD.h264-iNFOTv.mkv]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:48"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:48"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:48"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:48"> <![CDATA[Return c6vWNTNmefQ/]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:48"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="TESTER" type="Information" time="13.10.2016 11:56:48"> <![CDATA[https://vivo.sx/8a492196da wurde geparsed. Link: https://delivery--rsc-4.vivo.sx/get/0036902517?e=1476374454&s=200&m=video/mp4&h=o6wH7K5Rj6krPeTplNq95Q]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:48"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:48"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:48"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:48"> <![CDATA[Return rnKPUgq_Mko/24.S01E08.GERMAN.DUBBED.720p.WebHD.h264-iNFOTv.mkv]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:48"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:48"> <![CDATA[Return http://www.flashx.tv/rnd6koa98q70]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:49"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:49"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:49"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:49"> <![CDATA[Return dTPrXMK0rVc/]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:49"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:49"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:49"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:49"> <![CDATA[Return pnq4WP7TAFY/24.S01E07.GERMAN.DUBBED.720p.WebHD.h264-iNFOTv.mkv]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:50"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:50"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:50"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:50"> <![CDATA[Return fhNf1dagjfI/]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:50"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:50"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:50"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:50"> <![CDATA[Return RsPOVNwibKE/24.S01E09.GERMAN.DUBBED.720p.WebHD.h264-iNFOTv.mkv]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:51"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:51"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:51"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:51"> <![CDATA[Return wzKrxCrJP7c/]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:51"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:51"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:51"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:51"> <![CDATA[Return w7cVn56FSoI/24.S01E10.GERMAN.DUBBED.720p.WebHD.h264-iNFOTv.mkv]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:52"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:52"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:52"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:52"> <![CDATA[Return LhjBe0ZNRcs/]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:52"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:52"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:52"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:52"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:52"> <![CDATA[Return Mzrf8uK2dRo/]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:52"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:52"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:52"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:52"> <![CDATA[Return A_J92EX8k4k/24.S01E11.GERMAN.DUBBED.720p.WebHD.h264-iNFOTv.mkv]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:53"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:53"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:53"> <![CDATA[Return jGyoIBA9ZBs/24.S01E13.GERMAN.DUBBED.720p.WebHD.h264-iNFOTv.mkv]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:53"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:53"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:53"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:53"> <![CDATA[Return FCc0LvrfaaY/]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:53"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:53"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:53"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:53"> <![CDATA[Return 9zePKkla0oU/24.S01E12.GERMAN.DUBBED.720p.WebHD.h264-iNFOTv.mkv]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:55"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:55"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:55"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:55"> <![CDATA[Return n7sLM2FRK6s/]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:55"> <![CDATA[Watch single episode (Changes status of "watched")]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:55"> <![CDATA[Get Hoster-Link]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:55"> <![CDATA[Full-URL no direct link. Using alternate detection ...]]> </entry> -<entry visible="1" sub="MAIN" type="Information" time="13.10.2016 11:56:55"> <![CDATA[Return eP1AlbT1wkM/24.S01E14.GERMAN.DUBBED.720p.WebHD.h264-iNFOTv.mkv]]> </entry> </DebugLog Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
gbgt5 Geschrieben 13. Oktober 2016 Melden Teilen Geschrieben 13. Oktober 2016 Ist das richtig? Spoiler <?xml version="1.0" encoding="iso-8859-15" standalone="yes"?> <DebugLog> <entry time="11.10.2016 16:36:54" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="11.10.2016 16:36:55" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="11.10.2016 16:37:03" type="Information" sub="MAIN" visible="1"><![CDATA[Staffeln der Serie "Death Note" werden geladen ...]]></entry> <entry time="11.10.2016 16:37:03" type="Information" sub="MAIN" visible="1"><![CDATA[Loading Seasons of Death Note]]></entry> <entry time="11.10.2016 16:37:03" type="Information" sub="MAIN" visible="1"><![CDATA[Movies 1]]></entry> <entry time="11.10.2016 16:37:03" type="Information" sub="MAIN" visible="1"><![CDATA[Seasons 2]]></entry> <entry time="11.10.2016 16:37:03" type="Information" sub="MAIN" visible="1"><![CDATA[Staffeln der Serie "Death Note" geladen]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Episoden der Staffel "1" der Serie "Death Note" werden geladen ...]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Load Episodes of Season 1 of Serie Death Note]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Found 19 Episodes]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Wiedergeburt]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Kampf]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Handel]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Jagd]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Diplomatie]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Kluft]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Versuchung]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Blick]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Kontakt]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Zweifel]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Verantwortung]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Liebe]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Geständnis]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Freund]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Glücksspiel]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Entscheidung]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Vollstreckung]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Team]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Matsuda]]></entry> <entry time="11.10.2016 16:37:05" type="Information" sub="MAIN" visible="1"><![CDATA[Episoden der Staffel "1" der Serie "Death Note" geladen]]></entry> <entry time="11.10.2016 16:37:06" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Wiedergeburt" der Staffel "1" der Serie "Death Note" wird geladen ...]]></entry> <entry time="11.10.2016 16:37:06" type="Information" sub="MAIN" visible="1"><![CDATA[Load Hoster of Wiedergeburt of Episode Death Note]]></entry> <entry time="11.10.2016 16:37:06" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: AuroraVid (618138)]]></entry> <entry time="11.10.2016 16:37:06" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: FlashX (1713780)]]></entry> <entry time="11.10.2016 16:37:06" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: OpenLoad (2264913)]]></entry> <entry time="11.10.2016 16:37:06" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: PowerWatch (1506719)]]></entry> <entry time="11.10.2016 16:37:06" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vivo (2561399)]]></entry> <entry time="11.10.2016 16:37:06" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: YouWatch (1291810)]]></entry> <entry time="11.10.2016 16:37:06" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Wiedergeburt" der Staffel "1" der Serie "Death Note" geladen]]></entry> <entry time="11.10.2016 16:37:06" type="Information" sub="MAIN" visible="1"><![CDATA[Füge Episode "Wiedergeburt" der Staffel "1" der Serie "Death Note" der Downloadliste hinzu ...]]></entry> <entry time="11.10.2016 16:37:09" type="Information" sub="MAIN" visible="1"><![CDATA[Watch single episode (Changes status of "watched")]]></entry> <entry time="11.10.2016 16:37:09" type="Information" sub="MAIN" visible="1"><![CDATA[Get Hoster-Link]]></entry> <entry time="11.10.2016 16:37:09" type="Information" sub="MAIN" visible="1"><![CDATA[Return http://vivo.sx/abcd8227bf]]> <entry time="11.10.2016 16:37:09" type="Information" sub="TESTER" visible="1"><![CDATA[https://vivo.sx/abcd8227bf wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]></entry> <entry time="11.10.2016 16:37:10" type="Information" sub="TESTER" visible="1"><![CDATA[https://vivo.sx/abcd8227bf wird geparsed ... (Durchgang 1) Post-Values: hash=8a62a47b989a4d7b3f18b97dda739902]]></entry> <entry time="11.10.2016 16:37:10" type="Information" sub="TESTER" visible="1"><![CDATA[https://vivo.sx/abcd8227bf wird geparsed ... (Durchgang 1) Post-Values: timestamp=1476196880]]></entry> <entry time="11.10.2016 16:37:10" type="Information" sub="TESTER" visible="1"><![CDATA[https://vivo.sx/abcd8227bf wird geparsed ... (Durchgang 1) Warte 8,5 Sekunden ...]]></entry> <entry time="11.10.2016 16:37:19" type="Information" sub="TESTER" visible="1"><![CDATA[https://vivo.sx/abcd8227bf wurde geparsed. Link: https://delivery--rsc-4.vivo.sx/get/0030286184?e=1476218488&s=200&m=video/mp4&h=m1wovqm16aGNbsRjvn5tpw]]> <entry time="11.10.2016 16:42:28" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="11.10.2016 16:42:29" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 18:44:36" type="DEBUG" sub="MAIN" visible="1"><![CDATA[Array ( ) Array ( ) Array ( [MIBDIRS] => C:/xampp/php/extras/mibs [MYSQL_HOME] => \xampp\mysql\bin [OPENSSL_CONF] => C:/xampp/apache/bin/openssl.cnf [PHP_PEAR_SYSCONF_DIR] => \xampp\php [PHPRC] => \xampp\php [TMP] => \xampp\tmp [HTTP_X_TEXTUPLOADER_API_KEY] => T871Y3KRSpQB8e9MhLbpdlasU+zlesap [HTTP_HOST] => localhost [CONTENT_LENGTH] => 71 [HTTP_EXPECT] => 100-continue [HTTP_CONNECTION] => Keep-Alive [PATH] => C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\ [SystemRoot] => C:\Windows [COMSPEC] => C:\Windows\system32\cmd.exe [PATHEXT] => .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC [WINDIR] => C:\Windows [SERVER_SIGNATURE] => <address>Apache/2.4.23 (Win32) OpenSSL/1.0.2h PHP/5.5.38 Server at localhost Port 80</address> [SERVER_SOFTWARE] => Apache/2.4.23 (Win32) OpenSSL/1.0.2h PHP/5.5.38 [SERVER_NAME] => localhost [SERVER_ADDR] => ::1 [SERVER_PORT] => 80 [REMOTE_ADDR] => ::1 [DOCUMENT_ROOT] => C:/xampp/htdocs [REQUEST_SCHEME] => http [CONTEXT_PREFIX] => [CONTEXT_DOCUMENT_ROOT] => C:/xampp/htdocs [SERVER_ADMIN] => postmaster@localhost [SCRIPT_FILENAME] => C:/xampp/htdocs/source_post.php [REMOTE_PORT] => 54787 [GATEWAY_INTERFACE] => CGI/1.1 [SERVER_PROTOCOL] => HTTP/1.1 [REQUEST_METHOD] => POST [QUERY_STRING] => [REQUEST_URI] => /source_post.php [SCRIPT_NAME] => /source_post.php [PHP_SELF] => /source_post.php [REQUEST_TIME_FLOAT] => 1476290676.874 [REQUEST_TIME] => 1476290676 ) ]]></entry> <entry time="12.10.2016 18:44:37" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 18:44:39" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 18:46:50" type="DEBUG" sub="MAIN" visible="1"><![CDATA[Array ( [timestamp] => 12.10.2016 18:46:50 [source] => Ein einfacher Test [name] => Test ) Array ( ) Array ( [MIBDIRS] => C:/xampp/php/extras/mibs [MYSQL_HOME] => \xampp\mysql\bin [OPENSSL_CONF] => C:/xampp/apache/bin/openssl.cnf [PHP_PEAR_SYSCONF_DIR] => \xampp\php [PHPRC] => \xampp\php [TMP] => \xampp\tmp [CONTENT_TYPE] => application/x-www-form-urlencoded [HTTP_HOST] => localhost [CONTENT_LENGTH] => 69 [HTTP_EXPECT] => 100-continue [HTTP_CONNECTION] => Keep-Alive [PATH] => C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\ [SystemRoot] => C:\Windows [COMSPEC] => C:\Windows\system32\cmd.exe [PATHEXT] => .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC [WINDIR] => C:\Windows [SERVER_SIGNATURE] => <address>Apache/2.4.23 (Win32) OpenSSL/1.0.2h PHP/5.5.38 Server at localhost Port 80</address> [SERVER_SOFTWARE] => Apache/2.4.23 (Win32) OpenSSL/1.0.2h PHP/5.5.38 [SERVER_NAME] => localhost [SERVER_ADDR] => ::1 [SERVER_PORT] => 80 [REMOTE_ADDR] => ::1 [DOCUMENT_ROOT] => C:/xampp/htdocs [REQUEST_SCHEME] => http [CONTEXT_PREFIX] => [CONTEXT_DOCUMENT_ROOT] => C:/xampp/htdocs [SERVER_ADMIN] => postmaster@localhost [SCRIPT_FILENAME] => C:/xampp/htdocs/source_post.php [REMOTE_PORT] => 54798 [GATEWAY_INTERFACE] => CGI/1.1 [SERVER_PROTOCOL] => HTTP/1.1 [REQUEST_METHOD] => POST [QUERY_STRING] => [REQUEST_URI] => /source_post.php [SCRIPT_NAME] => /source_post.php [PHP_SELF] => /source_post.php [REQUEST_TIME_FLOAT] => 1476290810.276 [REQUEST_TIME] => 1476290810 ) ]]></entry> <entry time="12.10.2016 18:46:50" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 18:46:51" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 18:46:58" type="DEBUG" sub="MAIN" visible="1"><![CDATA[Array ( [timestamp] => 12.10.2016 18:46:58 [source] => Ein einfacher Test [name] => Test ) Array ( ) Array ( [MIBDIRS] => C:/xampp/php/extras/mibs [MYSQL_HOME] => \xampp\mysql\bin [OPENSSL_CONF] => C:/xampp/apache/bin/openssl.cnf [PHP_PEAR_SYSCONF_DIR] => \xampp\php [PHPRC] => \xampp\php [TMP] => \xampp\tmp [CONTENT_TYPE] => application/x-www-form-urlencoded [HTTP_HOST] => localhost [CONTENT_LENGTH] => 69 [HTTP_EXPECT] => 100-continue [HTTP_CONNECTION] => Keep-Alive [PATH] => C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\ [SystemRoot] => C:\Windows [COMSPEC] => C:\Windows\system32\cmd.exe [PATHEXT] => .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC [WINDIR] => C:\Windows [SERVER_SIGNATURE] => <address>Apache/2.4.23 (Win32) OpenSSL/1.0.2h PHP/5.5.38 Server at localhost Port 80</address> [SERVER_SOFTWARE] => Apache/2.4.23 (Win32) OpenSSL/1.0.2h PHP/5.5.38 [SERVER_NAME] => localhost [SERVER_ADDR] => ::1 [SERVER_PORT] => 80 [REMOTE_ADDR] => ::1 [DOCUMENT_ROOT] => C:/xampp/htdocs [REQUEST_SCHEME] => http [CONTEXT_PREFIX] => [CONTEXT_DOCUMENT_ROOT] => C:/xampp/htdocs [SERVER_ADMIN] => postmaster@localhost [SCRIPT_FILENAME] => C:/xampp/htdocs/source_post.php [REMOTE_PORT] => 54801 [GATEWAY_INTERFACE] => CGI/1.1 [SERVER_PROTOCOL] => HTTP/1.1 [REQUEST_METHOD] => POST [QUERY_STRING] => [REQUEST_URI] => /source_post.php [SCRIPT_NAME] => /source_post.php [PHP_SELF] => /source_post.php [REQUEST_TIME_FLOAT] => 1476290818.921 [REQUEST_TIME] => 1476290818 ) ]]></entry> <entry time="12.10.2016 18:46:58" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 18:46:59" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 18:49:51" type="DEBUG" sub="MAIN" visible="1"><![CDATA[<br /> <b>Parse error</b>: syntax error, unexpected ')' in <b>C:\xampp\htdocs\source_post.php</b> on line <b>5</b><br /> ]]></entry> <entry time="12.10.2016 18:49:51" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 18:49:51" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 18:50:14" type="DEBUG" sub="MAIN" visible="1"><![CDATA[3u0b1ng6mtcg00000000000000]]></entry> <entry time="12.10.2016 18:50:14" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 18:50:15" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 19:02:00" type="DEBUG" sub="MAIN" visible="1"><![CDATA[<br /> <b>Notice</b>: Undefined variable: source in <b>C:\xampp\htdocs\source_post.php</b> on line <b>16</b><br /> <?xml version="1.0"?> <result><short>2iqnzqv</short></result> ]]></entry> <entry time="12.10.2016 19:02:00" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 19:02:02" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 19:02:53" type="DEBUG" sub="MAIN" visible="1"><![CDATA[<?xml version="1.0"?> <result><short>2iqnzqv</short></result> ]]></entry> <entry time="12.10.2016 19:02:53" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 19:02:54" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 19:06:03" type="DEBUG" sub="MAIN" visible="1"><![CDATA[<?xml version="1.0"?> <result><short>2iqnzqv</short></result> ]]></entry> <entry time="12.10.2016 19:06:03" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 19:06:04" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 19:26:26" type="DEBUG" sub="MAIN" visible="1"><![CDATA[2iqnzqv]]></entry> <entry time="12.10.2016 19:26:26" type="DEBUG" sub="MAIN" visible="1"><![CDATA[<?xml version="1.0"?><result><name>Test</name><source><![CDATA[Ein einfacher Test]]></source></result>]]></entry> <entry time="12.10.2016 19:26:27" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 19:26:29" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 19:27:37" type="DEBUG" sub="MAIN" visible="1"><![CDATA[2iqnzqv]]></entry> <entry time="12.10.2016 19:32:03" type="DEBUG" sub="MAIN" visible="1"><![CDATA[2iqnzqv]]></entry> <entry time="12.10.2016 19:32:03" type="DEBUG" sub="MAIN" visible="1"><![CDATA[<?xml version="1.0"?><result><name>Test</name><source>Ein einfacher Test</source><domains></domains></result>]]></entry> <entry time="12.10.2016 19:32:03" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 19:53:36" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 19:53:37" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 19:54:50" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 19:54:51" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 19:54:55" type="Information" sub="TESTER" visible="1"><![CDATA[ wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]></entry> <entry time="12.10.2016 19:54:56" type="Information" sub="MAIN" visible="1"><![CDATA[Schnelltest erfolgreich]]></entry> <entry time="12.10.2016 19:55:18" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 19:55:18" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 19:55:23" type="Information" sub="TESTER" visible="1"><![CDATA[ wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]></entry> <entry time="12.10.2016 19:55:23" type="Information" sub="MAIN" visible="1"><![CDATA[Schnelltest erfolgreich]]></entry> <entry time="12.10.2016 19:57:49" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 19:57:50" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:07:37" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:07:38" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:07:54" type="Information" sub="TESTER" visible="1"><![CDATA[ wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]></entry> <entry time="12.10.2016 20:07:54" type="Information" sub="MAIN" visible="1"><![CDATA[Schnelltest erfolgreich]]></entry> <entry time="12.10.2016 20:08:03" type="Information" sub="TESTER" visible="1"><![CDATA[ wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]></entry> <entry time="12.10.2016 20:08:03" type="Information" sub="MAIN" visible="1"><![CDATA[Schnelltest erfolgreich]]></entry> <entry time="12.10.2016 20:09:45" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:09:46" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:10:20" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:10:21" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:10:36" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:10:37" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:13:31" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:13:31" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:13:58" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:13:58" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:14:18" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:14:19" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:14:40" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:14:42" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:16:20" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:16:21" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:22:02" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:22:03" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:22:07" type="Information" sub="MAIN" visible="1"><![CDATA[Schnelltest erfolgreich]]></entry> <entry time="12.10.2016 20:30:09" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:30:10" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:30:21" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:30:22" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:30:28" type="Fehler" sub="MAIN" visible="1"><![CDATA[Schnelltest fehlgeschlagen. Prüfe den Klassennamen!]]></entry> <entry time="12.10.2016 20:31:32" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:31:32" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:31:39" type="Fehler" sub="MAIN" visible="1"><![CDATA[Schnelltest fehlgeschlagen. Prüfe den Klassennamen!]]></entry> <entry time="12.10.2016 20:31:44" type="Fehler" sub="MAIN" visible="1"><![CDATA[Schnelltest fehlgeschlagen. Prüfe den Klassennamen!]]></entry> <entry time="12.10.2016 20:34:33" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:34:34" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:35:23" type="Fehler" sub="MAIN" visible="1"><![CDATA[Schnelltest fehlgeschlagen. Prüfe den Klassennamen!]]></entry> <entry time="12.10.2016 20:36:09" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:36:10" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:36:22" type="Fehler" sub="MAIN" visible="1"><![CDATA[Schnelltest fehlgeschlagen]]></entry> <entry time="12.10.2016 20:37:43" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:37:44" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:37:49" type="Fehler" sub="MAIN" visible="1"><![CDATA[Schnelltest fehlgeschlagen]]></entry> <entry time="12.10.2016 20:37:56" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:37:57" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:39:46" type="Fehler" sub="MAIN" visible="1"><![CDATA[Schnelltest fehlgeschlagen]]></entry> <entry time="12.10.2016 20:39:57" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:39:58" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:40:45" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:40:46" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:41:31" type="Fehler" sub="MAIN" visible="1"><![CDATA[Schnelltest fehlgeschlagen]]></entry> <entry time="12.10.2016 20:41:37" type="Fehler" sub="MAIN" visible="1"><![CDATA[Schnelltest fehlgeschlagen]]></entry> <entry time="12.10.2016 20:41:39" type="Fehler" sub="MAIN" visible="1"><![CDATA[Schnelltest fehlgeschlagen]]></entry> <entry time="12.10.2016 20:41:39" type="Fehler" sub="MAIN" visible="1"><![CDATA[Schnelltest fehlgeschlagen]]></entry> <entry time="12.10.2016 20:41:58" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:41:59" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:42:10" type="Fehler" sub="MAIN" visible="1"><![CDATA[Schnelltest fehlgeschlagen]]></entry> <entry time="12.10.2016 20:43:46" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 20:43:47" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3434 Series]]></entry> <entry time="12.10.2016 20:43:51" type="Fehler" sub="MAIN" visible="1"><![CDATA[Schnelltest fehlgeschlagen. Prüfe den Klassennamen!]]></entry> <entry time="12.10.2016 20:43:57" type="Information" sub="MAIN" visible="1"><![CDATA[Schnelltest erfolgreich]]></entry> <entry time="12.10.2016 20:44:02" type="Information" sub="MAIN" visible="1"><![CDATA[Schnelltest erfolgreich]]></entry> <entry time="12.10.2016 22:22:08" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> <entry time="12.10.2016 22:22:09" type="Information" sub="MAIN" visible="1"><![CDATA[Loaded 3438 Series]]></entry> <entry time="12.10.2016 22:23:03" type="Information" sub="MAIN" visible="1"><![CDATA[Staffeln der Serie "Seiken Tsukai no World Break" werden geladen ...]]></entry> <entry time="12.10.2016 22:23:03" type="Information" sub="MAIN" visible="1"><![CDATA[Loading Seasons of Seiken Tsukai no World Break]]></entry> <entry time="12.10.2016 22:23:03" type="Information" sub="MAIN" visible="1"><![CDATA[Movies 0]]></entry> <entry time="12.10.2016 22:23:03" type="Information" sub="MAIN" visible="1"><![CDATA[Seasons 1]]></entry> <entry time="12.10.2016 22:23:03" type="Information" sub="MAIN" visible="1"><![CDATA[Staffeln der Serie "Seiken Tsukai no World Break" geladen]]></entry> <entry time="12.10.2016 22:23:07" type="Information" sub="MAIN" visible="1"><![CDATA[Staffeln der Serie "Saki" werden geladen ...]]></entry> <entry time="12.10.2016 22:23:07" type="Information" sub="MAIN" visible="1"><![CDATA[Loading Seasons of Saki]]></entry> <entry time="12.10.2016 22:23:08" type="Information" sub="MAIN" visible="1"><![CDATA[Movies 0]]></entry> <entry time="12.10.2016 22:23:08" type="Information" sub="MAIN" visible="1"><![CDATA[Seasons 2]]></entry> <entry time="12.10.2016 22:23:08" type="Information" sub="MAIN" visible="1"><![CDATA[Staffeln der Serie "Saki" geladen]]></entry> <entry time="12.10.2016 22:23:11" type="Information" sub="MAIN" visible="1"><![CDATA[Staffeln der Serie "Seikai no Monshou" werden geladen ...]]></entry> <entry time="12.10.2016 22:23:11" type="Information" sub="MAIN" visible="1"><![CDATA[Loading Seasons of Seikai no Monshou]]></entry> <entry time="12.10.2016 22:23:11" type="Information" sub="MAIN" visible="1"><![CDATA[Movies 0]]></entry> <entry time="12.10.2016 22:23:12" type="Information" sub="MAIN" visible="1"><![CDATA[Seasons 4]]></entry> <entry time="12.10.2016 22:23:12" type="Information" sub="MAIN" visible="1"><![CDATA[Staffeln der Serie "Seikai no Monshou" geladen]]></entry> <entry time="12.10.2016 22:23:14" type="Information" sub="MAIN" visible="1"><![CDATA[Staffeln der Serie "Shikabane Hime" werden geladen ...]]></entry> <entry time="12.10.2016 22:23:14" type="Information" sub="MAIN" visible="1"><![CDATA[Loading Seasons of Shikabane Hime]]></entry> <entry time="12.10.2016 22:23:15" type="Information" sub="MAIN" visible="1"><![CDATA[Movies 1]]></entry> <entry time="12.10.2016 22:23:15" type="Information" sub="MAIN" visible="1"><![CDATA[Seasons 2]]></entry> <entry time="12.10.2016 22:23:15" type="Information" sub="MAIN" visible="1"><![CDATA[Staffeln der Serie "Shikabane Hime" geladen]]></entry> <entry time="12.10.2016 22:23:37" type="Information" sub="MAIN" visible="1"><![CDATA[Staffeln der Serie "Sledge Hammer!" werden geladen ...]]></entry> <entry time="12.10.2016 22:23:37" type="Information" sub="MAIN" visible="1"><![CDATA[Loading Seasons of Sledge Hammer!]]></entry> <entry time="12.10.2016 22:23:37" type="Information" sub="MAIN" visible="1"><![CDATA[Movies 0]]></entry> <entry time="12.10.2016 22:23:37" type="Information" sub="MAIN" visible="1"><![CDATA[Seasons 2]]></entry> <entry time="12.10.2016 22:23:37" type="Information" sub="MAIN" visible="1"><![CDATA[Staffeln der Serie "Sledge Hammer!" geladen]]></entry> <entry time="12.10.2016 22:23:46" type="Information" sub="MAIN" visible="1"><![CDATA[Staffeln der Serie "Shimoneta" werden geladen ...]]></entry> <entry time="12.10.2016 22:23:46" type="Information" sub="MAIN" visible="1"><![CDATA[Loading Seasons of Shimoneta]]></entry> <entry time="12.10.2016 22:23:47" type="Information" sub="MAIN" visible="1"><![CDATA[Movies 0]]></entry> <entry time="12.10.2016 22:23:47" type="Information" sub="MAIN" visible="1"><![CDATA[Seasons 1]]></entry> <entry time="12.10.2016 22:23:47" type="Information" sub="MAIN" visible="1"><![CDATA[Staffeln der Serie "Shimoneta" geladen]]></entry> <entry time="12.10.2016 22:23:50" type="Information" sub="MAIN" visible="1"><![CDATA[Episoden der Staffel "1" der Serie "Shimoneta" werden geladen ...]]></entry> <entry time="12.10.2016 22:23:50" type="Information" sub="MAIN" visible="1"><![CDATA[Load Episodes of Season 1 of Serie Shimoneta]]></entry> <entry time="12.10.2016 22:23:50" type="Information" sub="MAIN" visible="1"><![CDATA[Found 12 Episodes]]></entry> <entry time="12.10.2016 22:23:50" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Wem nützen öffentliche Ordnung und Moral?]]></entry> <entry time="12.10.2016 22:23:51" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Das Geheimnis der Schwangerschaft]]></entry> <entry time="12.10.2016 22:23:51" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Wie Menschen Liebe machen]]></entry> <entry time="12.10.2016 22:23:51" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Die Welt sagt: Liebe ist Gerechtigkeit]]></entry> <entry time="12.10.2016 22:23:51" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Wem nützt der Vulgärterrorismus?]]></entry> <entry time="12.10.2016 22:23:51" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Wärme in Handarbeit]]></entry> <entry time="12.10.2016 22:23:51" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode What SOX Created]]></entry> <entry time="12.10.2016 22:23:51" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode The Devil Blows His Own Trumpet]]></entry> <entry time="12.10.2016 22:23:51" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Do Androids Dream Of Electric Masseurs?]]></entry> <entry time="12.10.2016 22:23:51" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Masturbation Quest]]></entry> <entry time="12.10.2016 22:23:51" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Techno Break]]></entry> <entry time="12.10.2016 22:23:51" type="Information" sub="MAIN" visible="1"><![CDATA[Added Episode Dirty Jokes Forever]]></entry> <entry time="12.10.2016 22:23:51" type="Information" sub="MAIN" visible="1"><![CDATA[Episoden der Staffel "1" der Serie "Shimoneta" geladen]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Wem nützen öffentliche Ordnung und Moral?" der Staffel "1" der Serie "Shimoneta" wird geladen ...]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Load Hoster of Wem nützen öffentliche Ordnung und Moral? of Episode Shimoneta]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: FlashX (2561750)]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: OpenLoad (2570607)]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: OpenLoadHD (2664928)]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vivo (2561753)]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: YouWatch (2561751)]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Wem nützen öffentliche Ordnung und Moral?" der Staffel "1" der Serie "Shimoneta" geladen]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Füge Episode "Wem nützen öffentliche Ordnung und Moral?" der Staffel "1" der Serie "Shimoneta" der Downloadliste hinzu ...]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Das Geheimnis der Schwangerschaft" der Staffel "1" der Serie "Shimoneta" wird geladen ...]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Load Hoster of Das Geheimnis der Schwangerschaft of Episode Shimoneta]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: FlashX (2561755)]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: OpenLoad (2570609)]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: OpenLoadHD (2664929)]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vivo (2561758)]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: YouWatch (2561756)]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Das Geheimnis der Schwangerschaft" der Staffel "1" der Serie "Shimoneta" geladen]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Füge Episode "Das Geheimnis der Schwangerschaft" der Staffel "1" der Serie "Shimoneta" der Downloadliste hinzu ...]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Wie Menschen Liebe machen" der Staffel "1" der Serie "Shimoneta" wird geladen ...]]></entry> <entry time="12.10.2016 22:23:54" type="Information" sub="MAIN" visible="1"><![CDATA[Load Hoster of Wie Menschen Liebe machen of Episode Shimoneta]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: FlashX (2561760)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: OpenLoad (2570611)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: OpenLoadHD (2664930)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vivo (2561763)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: YouWatch (2561761)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Wie Menschen Liebe machen" der Staffel "1" der Serie "Shimoneta" geladen]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Füge Episode "Wie Menschen Liebe machen" der Staffel "1" der Serie "Shimoneta" der Downloadliste hinzu ...]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Die Welt sagt: Liebe ist Gerechtigkeit" der Staffel "1" der Serie "Shimoneta" wird geladen ...]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Load Hoster of Die Welt sagt: Liebe ist Gerechtigkeit of Episode Shimoneta]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: FlashX (2664218)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: OpenLoad (2664214)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: OpenLoadHD (2664741)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vidto (2664216)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vivo (2664219)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: YouWatch (2664217)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Die Welt sagt: Liebe ist Gerechtigkeit" der Staffel "1" der Serie "Shimoneta" geladen]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Füge Episode "Die Welt sagt: Liebe ist Gerechtigkeit" der Staffel "1" der Serie "Shimoneta" der Downloadliste hinzu ...]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Wem nützt der Vulgärterrorismus?" der Staffel "1" der Serie "Shimoneta" wird geladen ...]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Load Hoster of Wem nützt der Vulgärterrorismus? of Episode Shimoneta]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: FlashX (2664221)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: OpenLoad (2664220)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: OpenLoadHD (2664742)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vidto (2664223)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vivo (2664230)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: YouWatch (2664224)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Wem nützt der Vulgärterrorismus?" der Staffel "1" der Serie "Shimoneta" geladen]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Füge Episode "Wem nützt der Vulgärterrorismus?" der Staffel "1" der Serie "Shimoneta" der Downloadliste hinzu ...]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Wärme in Handarbeit" der Staffel "1" der Serie "Shimoneta" wird geladen ...]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Load Hoster of Wärme in Handarbeit of Episode Shimoneta]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: FlashX (2664226)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: OpenLoad (2664225)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: OpenLoadHD (2664743)]]></entry> <entry time="12.10.2016 22:23:55" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vidto (2664228)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vivo (2664231)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: YouWatch (2664229)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Wärme in Handarbeit" der Staffel "1" der Serie "Shimoneta" geladen]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Füge Episode "Wärme in Handarbeit" der Staffel "1" der Serie "Shimoneta" der Downloadliste hinzu ...]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "What SOX Created" der Staffel "1" der Serie "Shimoneta" wird geladen ...]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Load Hoster of What SOX Created of Episode Shimoneta]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: AuroraVid (1828584)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: FlashX (1828523)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: OpenLoad (2656041)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: PowerWatch (1828526)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vidto (2656043)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vivo (2656046)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: YouWatch (1828525)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "What SOX Created" der Staffel "1" der Serie "Shimoneta" geladen]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Füge Episode "What SOX Created" der Staffel "1" der Serie "Shimoneta" der Downloadliste hinzu ...]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "The Devil Blows His Own Trumpet" der Staffel "1" der Serie "Shimoneta" wird geladen ...]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Load Hoster of The Devil Blows His Own Trumpet of Episode Shimoneta]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: AuroraVid (1864069)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: FlashX (1864059)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: OpenLoad (2656052)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: PowerWatch (1864064)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vidto (2656064)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vivo (2656251)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: YouWatch (1864066)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "The Devil Blows His Own Trumpet" der Staffel "1" der Serie "Shimoneta" geladen]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Füge Episode "The Devil Blows His Own Trumpet" der Staffel "1" der Serie "Shimoneta" der Downloadliste hinzu ...]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Do Androids Dream Of Electric Masseurs?" der Staffel "1" der Serie "Shimoneta" wird geladen ...]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Load Hoster of Do Androids Dream Of Electric Masseurs? of Episode Shimoneta]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: FlashX (1884035)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: OpenLoad (2656266)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: PowerWatch (1884034)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vidto (2656270)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vivo (2656273)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: YouWatch (1884036)]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Do Androids Dream Of Electric Masseurs?" der Staffel "1" der Serie "Shimoneta" geladen]]></entry> <entry time="12.10.2016 22:23:56" type="Information" sub="MAIN" visible="1"><![CDATA[Füge Episode "Do Androids Dream Of Electric Masseurs?" der Staffel "1" der Serie "Shimoneta" der Downloadliste hinzu ...]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Masturbation Quest" der Staffel "1" der Serie "Shimoneta" wird geladen ...]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Load Hoster of Masturbation Quest of Episode Shimoneta]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: FlashX (1917818)]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: OpenLoad (2656274)]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: PowerWatch (1917817)]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vidto (2656275)]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vivo (2656276)]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: YouWatch (1917819)]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Masturbation Quest" der Staffel "1" der Serie "Shimoneta" geladen]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Füge Episode "Masturbation Quest" der Staffel "1" der Serie "Shimoneta" der Downloadliste hinzu ...]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Techno Break" der Staffel "1" der Serie "Shimoneta" wird geladen ...]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Load Hoster of Techno Break of Episode Shimoneta]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: FlashX (1939013)]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: OpenLoad (2656277)]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: PowerWatch (1939011)]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vidto (2656278)]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vivo (2656279)]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: YouWatch (1939014)]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Techno Break" der Staffel "1" der Serie "Shimoneta" geladen]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Füge Episode "Techno Break" der Staffel "1" der Serie "Shimoneta" der Downloadliste hinzu ...]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Dirty Jokes Forever" der Staffel "1" der Serie "Shimoneta" wird geladen ...]]></entry> <entry time="12.10.2016 22:23:57" type="Information" sub="MAIN" visible="1"><![CDATA[Load Hoster of Dirty Jokes Forever of Episode Shimoneta]]></entry> <entry time="12.10.2016 22:23:58" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: FlashX (1986868)]]></entry> <entry time="12.10.2016 22:23:58" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: OpenLoad (2656280)]]></entry> <entry time="12.10.2016 22:23:58" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: PowerWatch (1986867)]]></entry> <entry time="12.10.2016 22:23:58" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vidto (2656281)]]></entry> <entry time="12.10.2016 22:23:58" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster found: Vivo (2656282)]]></entry> <entry time="12.10.2016 22:23:58" type="Information" sub="MAIN" visible="1"><![CDATA[Hoster der Episode "Dirty Jokes Forever" der Staffel "1" der Serie "Shimoneta" geladen]]></entry> <entry time="12.10.2016 22:23:58" type="Information" sub="MAIN" visible="1"><![CDATA[Füge Episode "Dirty Jokes Forever" der Staffel "1" der Serie "Shimoneta" der Downloadliste hinzu ...]]></entry> <entry time="12.10.2016 22:24:19" type="Information" sub="MAIN" visible="1"><![CDATA[Schnelltest erfolgreich]]></entry> <entry time="12.10.2016 22:24:42" type="Information" sub="MAIN" visible="1"><![CDATA[Schnelltest erfolgreich]]></entry> <entry time="12.10.2016 22:25:08" type="Information" sub="MAIN" visible="1"><![CDATA[Watch single episode (Changes status of "watched")]]></entry> <entry time="12.10.2016 22:25:08" type="Information" sub="MAIN" visible="1"><![CDATA[Get Hoster-Link]]></entry> <entry time="12.10.2016 22:25:08" type="Information" sub="MAIN" visible="1"><![CDATA[Full-URL no direct link. Using alternate detection ...]]></entry> <entry time="12.10.2016 22:25:08" type="Information" sub="MAIN" visible="1"><![CDATA[Return rVqIJwgJd3s/Shimoneta.Ep.01.German.AC3.720p.BluRay.x264-AST4u.mkv]]></entry> <entry time="12.10.2016 22:25:08" type="Information" sub="MAIN" visible="1"><![CDATA[Watch single episode (Changes status of "watched")]]></entry> <entry time="12.10.2016 22:25:09" type="Information" sub="MAIN" visible="1"><![CDATA[Get Hoster-Link]]></entry> <entry time="12.10.2016 22:25:09" type="Information" sub="MAIN" visible="1"><![CDATA[Return http://www.flashx.tv/t6vqao5dj067]]> <entry time="12.10.2016 22:25:15" type="Information" sub="MAIN" visible="1"><![CDATA[Watch single episode (Changes status of "watched")]]></entry> <entry time="12.10.2016 22:25:16" type="Information" sub="MAIN" visible="1"><![CDATA[Get Hoster-Link]]></entry> <entry time="12.10.2016 22:25:16" type="Information" sub="MAIN" visible="1"><![CDATA[Return http://vivo.sx/043fe878ba]]> <entry time="12.10.2016 22:25:16" type="Information" sub="TESTER" visible="1"><![CDATA[https://vivo.sx/043fe878ba wird geparsed ... User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36 OPR/15.0.1147.100]]></entry> <entry time="12.10.2016 22:25:16" type="Information" sub="TESTER" visible="1"><![CDATA[https://vivo.sx/043fe878ba wird geparsed ... (Durchgang 1) Post-Values: hash=fcf9fd89c38612445070ca13b184442f]]></entry> <entry time="12.10.2016 22:25:16" type="Information" sub="TESTER" visible="1"><![CDATA[https://vivo.sx/043fe878ba wird geparsed ... (Durchgang 1) Post-Values: timestamp=1476304160]]></entry> <entry time="12.10.2016 22:25:16" type="Information" sub="TESTER" visible="1"><![CDATA[https://vivo.sx/043fe878ba wird geparsed ... (Durchgang 1) Warte 8,5 Sekunden ...]]></entry> <entry time="12.10.2016 22:25:25" type="Information" sub="TESTER" visible="1"><![CDATA[https://vivo.sx/043fe878ba wurde geparsed. Link: https://delivery--rsc-4.vivo.sx/get/0030296675?e=1476325769&s=200&m=video/mp4&h=bPt3gT9FqHk61S909d-1Vg]]> <entry time="12.10.2016 22:25:25" type="Information" sub="MAIN" visible="1"><![CDATA[Watch single episode (Changes status of "watched")]]></entry> <entry time="12.10.2016 22:25:25" type="Information" sub="MAIN" visible="1"><![CDATA[Get Hoster-Link]]></entry> <entry time="12.10.2016 22:25:25" type="Information" sub="MAIN" visible="1"><![CDATA[Full-URL no direct link. Using alternate detection ...]]></entry> <entry time="12.10.2016 22:25:25" type="Information" sub="MAIN" visible="1"><![CDATA[Return wg6-hzeVICg/Shimoneta.Ep.01.German.MP3.BluRay.Xvid.AST4u.mkv]]></entry> </DebugLog> Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
NeoGriever Geschrieben 13. Oktober 2016 Autor Melden Teilen Geschrieben 13. Oktober 2016 Also: 1. Benutzt bitte z. b. Mediafire, um die log.xml hochzuladen und verlinkt sie hier nur. Denn diese enthält (wie ihr selbst merkt) VIELE Infos. So brauchen wir das Forum hier nicht mit Kilometer langen Spoilern vollzustopfen. 2. Ich habe gesagt, dass ich die Hoster-Parser-Scripts nochmal überarbeite. Bitte geduldet euch ... Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
patte Geschrieben 13. Oktober 2016 Melden Teilen Geschrieben 13. Oktober 2016 http://www77.zippyshare.com/v/LU2jhGZe/file.html Hier noch mal meins. Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
maxxe Geschrieben 13. Oktober 2016 Melden Teilen Geschrieben 13. Oktober 2016 Mein Gott!!! Lasst den armen NeoGriever doch mal in ruhe machen. Es befindet sich alles noch im beta status! Wenn's euch net passt dann nutzt den jDownloader oder ladet es einfach nicht runter! @NeoGriever Lass dir Zeit und lass dich nicht aus der Ruhe bringen. Du leistest super Arbeit und das auch noch für umme. *Daumen Hoch* Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
patte Geschrieben 13. Oktober 2016 Melden Teilen Geschrieben 13. Oktober 2016 Er kann sich doch so viel Zeit lassen wie er will, wir sollten mal zufrieden seien das er das überhaupt macht. 1000X Danke @NeoGriever 1 Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
gaga1984 Geschrieben 13. Oktober 2016 Melden Teilen Geschrieben 13. Oktober 2016 @NeoGriever: Du bist für mich der Grösste. Vielen Dank für Deine tolle Arbeit. Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
NeoGriever Geschrieben 13. Oktober 2016 Autor Melden Teilen Geschrieben 13. Oktober 2016 Hm. Mich interessiert jetzt wirklich BRENNEND, welche Episoden von welchen Staffeln von welchen Serien ihr versucht habt, etwas herunter zu laden ... Ich habe jetzt ALLE (bis auf FlashX) scripts getestet und bin zu folgenden Möglichen Ursachen gekommen: - ENTWEDER es liegt an mir und mein System kann irgendwie alles oO - ODER es liegt an den Hostern der jeweiligen Serie/Staffel/Episode - ODER (was wahrscheinlicher ist), dass bei euch irgendwelche Sicherheitsprogramme die Sache erschweren/abfälschen. Ich werde mal ein ausführliches Diagnoseprogramm schreiben, welches Vivo, FlashX (welches ich noch schreiben muss) und VidTo testet, logfiles erstellt und diese an mich übermittelt. Da kommen dann auch Infos rein wie: - Installierte .NET-Frameworks - Betriebssystem - Prozessorty (x86 oder x64) - Zeit und Datum - Laufzeit des Systems. (Das heißt: Seit wann der PC ununterbrochen eingeschaltet ist. "Abmelden" gilt dabei als ausgeschaltet!) Ihr könnt natürlich auswählen, wenn ihr irgendwas nicht mit in das Logfile reinpacken wollt. Es dauert etwas, bis ich das Tool fertig habe und werde natürlich nicht ALLEN das Tool zukommen lassen. (Eben weil es so viele Infos sammeln wird) Daher bitte auf meine PN warten und nicht ungeduldig spammend brüllen: "WANN KOMMT DEIN TOOL UND WO KANN ICHS RUNTERLADEN!?!?" ihr wisst, wie ichs mein ^^ Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
patte Geschrieben 13. Oktober 2016 Melden Teilen Geschrieben 13. Oktober 2016 (bearbeitet) Bei mir die Serie 24 geht nicht, auf allen Hostern, aber wenn ich bei BS kucke sind die Online Gibt auch noch andere die nicht gehen. Gibt aber auch welche gehen. Bearbeitet 13. Oktober 2016 von patte Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
davbra98 Geschrieben 13. Oktober 2016 Melden Teilen Geschrieben 13. Oktober 2016 vor 2 Stunden schrieb NeoGriever: Ich werde mal ein ausführliches Diagnoseprogramm schreiben, welches Vivo, FlashX (welches ich noch schreiben muss) und VidTo testet, logfiles erstellt und diese an mich übermittelt. Da kommen dann auch Infos rein wie: - Installierte .NET-Frameworks - Betriebssystem - Prozessorty (x86 oder x64) - Zeit und Datum - Laufzeit des Systems. (Das heißt: Seit wann der PC ununterbrochen eingeschaltet ist. "Abmelden" gilt dabei als ausgeschaltet!) Die Informationen kann ich dir auch so geben .NET-Frameworks:2.0.50727, 3.0, 3.5, 4, 4.0, 4.6 Betriebssystem: Windows 10 Insider Preview Build 14936 (Buildnummer wird sich nach Upgrades ändern) Prozessortyp: x64 Zeit und Datum: aktualisiert sich automatisch und stündlich mit der deutschen Atomuhr (ptbtime1.ptb.de) Laufzeit des Systems: Ich habe die 1. Version nach geschäzt 4 Stunden Laufzeit und die v2 nach geschäzt 1,5 Stunden Laufzeit getestet. Wenn du noch weitere Informationen brauchst einfach fragen Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
NeoGriever Geschrieben 13. Oktober 2016 Autor Melden Teilen Geschrieben 13. Oktober 2016 Danke für den Hinweis bezüglich 24 Scheinbar ist es ein INTERNES problem meines downloader-listview-controls ... *der spur folgen tu* Werde das mal prüfen und ggf. schon die nacht noch ein update raushauen Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
NeoGriever Geschrieben 13. Oktober 2016 Autor Melden Teilen Geschrieben 13. Oktober 2016 Vielen Dank für den Hinweis von 24 Somit konnte ich den Fehler in Windeseile finden. Grund: Schaut euch mal die Episodennamen von 24 an. Ein Doppelpunkt ist in einem Datei- oder Ordnernamen nicht zugelassen. DAS führte stets zu Fehlern, wodurch KEIN Download funktionierte Habe nun etwas dazugeschrieben, damit die Datei- und Pfadnamen gesäubert werden. Ungültige Zeichen werden mit _ ersetzt. Auch schreibe ich noch fix eine Update-Benachrichtigung mit rein. Bis spätestens 02:00 Uhr werde ich das neue Update raushauen. DANN könnt ihr SAUGEN WIE DIE WELTMEISTER Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
NeoGriever Geschrieben 13. Oktober 2016 Autor Melden Teilen Geschrieben 13. Oktober 2016 Voila http://www.mediafire.com/file/u4jmn6f2x3czaer/BSNova4ever+setup+v3.exe JETZT dürfte (zumindest vivo, welchen ich getestet habe) funktionieren. Darüber hinaus gibts ne Hoster-Sortier-Funktion (Siehe Einstellungen) Viel Spaß damit 1 Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
Snorlax Geschrieben 14. Oktober 2016 Melden Teilen Geschrieben 14. Oktober 2016 Habe Version 3 ausprobiert was mir aufgefallen ist: 1. Der Prozess scheint nicht richtig beendet zu werden nachdem BsNova geschlossen wurde. 2. Im Script Tester tritt folgender Fehler auf: <entry time="14.10.2016 01:41:28" type="Fehler" sub="MAIN" visible="1"><![CDATA[vbc : Command line (0,0) : error BC2017: Die Bibliothek System.Linq.dll konnte nicht gefunden werden.]]></entry> <entry time="14.10.2016 01:41:29" type="Fehler" sub="MAIN" visible="1"><![CDATA[vbc : Fatal (0,0) : error BC2000: Unerwarteter Fehler bei der Compilerinitialisierung: Das System kann die angegebene Datei nicht finden. .]]></entry> 3. Die Liste der Serien scheint nicht geladen zu werden im Log steht nur: <entry time="14.10.2016 01:40:40" type="UPDATER" sub="MAIN" visible="1"><![CDATA[Versions-Check ...]]></entry> <entry time="14.10.2016 01:40:50" type="Information" sub="MAIN" visible="1"><![CDATA[Loading whole Series list ...]]></entry> Betriebssystem: Windows XP Home - ServicePack 3 - 32bit .net Framework: 2 - 3.5 - 4 installiert. Als Administrator ausgeführt und die Ordner haben Sonderrechte. In der Firewall und Virenscanner steht BsNova auf der Whitelist. Falls noch Informationen fehlen einfach melden. Ich hoffe ich konnte helfen. Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
NeoGriever Geschrieben 14. Oktober 2016 Autor Melden Teilen Geschrieben 14. Oktober 2016 Prüfe bitte nochmal genau nach, ob .net framework 4 korrekt installiert ist. Ggf. nochmal das .net framework 4 neu drüberinstallieren (Nicht 4.5!) und erneut testen. Zitat vbc : Command line (0,0) : error BC2017: Die Bibliothek System.Linq.dll konnte nicht gefunden werden. Das ist die Haupt-Fehlermeldung. Und System.Linq.dll ist fester Bestandteil vom .net Framework 4. Daher kann eigentlich nur da das Problem liegen. Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
davbra98 Geschrieben 14. Oktober 2016 Melden Teilen Geschrieben 14. Oktober 2016 (bearbeitet) vivo funktioniert bei mir. Bei den anderen wird zwar unterstüzt angezeigt aber er lädt dort nicht runter Bearbeitet 14. Oktober 2016 von davbra98 Neue Version Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
maxrator Geschrieben 14. Oktober 2016 Melden Teilen Geschrieben 14. Oktober 2016 Also bei mit geht es jetzt mit Vivo Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
patte Geschrieben 14. Oktober 2016 Melden Teilen Geschrieben 14. Oktober 2016 Danke du bist der beste, habe jetzt die Episode E01 Probiert und geht danke. Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
NeoGriever Geschrieben 14. Oktober 2016 Autor Melden Teilen Geschrieben 14. Oktober 2016 (bearbeitet) Update für FlashX: Geht auf "Script-Editor öffnen" Klickt auf den Button "Importieren" Gebt folgenden Code ein: 606fwfw Drückt auf "OK" Drückt auf "Script speichern" Nun könnt ihr den Script-Editor schließen und habt einen funktionstüchtigen FlashX-Parser Der ist im übrigen schneller als vivo Denn dort fallen die 6 Sekunden Wartezeit weg (Embed-Code sei dank :D) Bearbeitet 14. Oktober 2016 von NeoGriever 1 Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
maxxe Geschrieben 14. Oktober 2016 Melden Teilen Geschrieben 14. Oktober 2016 Gibt es eine Möglichkeit die Scripts mit BSNova zu nutzen? Link zu diesem Kommentar Auf anderen Seiten teilen More sharing options...
Empfohlene Beiträge