diff --git a/NzbDrone.Core.Test/ParserTest.cs b/NzbDrone.Core.Test/ParserTest.cs
index 4fa825297..7f332b1c5 100644
--- a/NzbDrone.Core.Test/ParserTest.cs
+++ b/NzbDrone.Core.Test/ParserTest.cs
@@ -51,7 +51,8 @@ namespace NzbDrone.Core.Test
         [Row("Sonny.With.a.Chance.S02E15", QualityTypes.Unknown)]
         [Row("S01E04 - So Old - Playdate - 720p TV.mkv", QualityTypes.HDTV)]
         [Row("S22E03 - MoneyBART - HD TV.mkv", QualityTypes.HDTV)]
-        [Row("S01E03 - Come Fly With Me - 720p BluRay.mkv", QualityTypes.Bluray)]
+        [Row("S01E03 - Come Fly With Me - 720p BluRay.mkv", QualityTypes.Bluray720)]
+        [Row("S01E03 - Come Fly With Me - 1080p BluRay.mkv", QualityTypes.Bluray1080)]
         [Row("S11E06 - D-Yikes! - 720p WEB-DL.mkv", QualityTypes.WEBDL)]
         public void quality_parse(string path, object quality)
         {
diff --git a/NzbDrone.Core/CentralDispatch.cs b/NzbDrone.Core/CentralDispatch.cs
index e88c77a9c..23ef95237 100644
--- a/NzbDrone.Core/CentralDispatch.cs
+++ b/NzbDrone.Core/CentralDispatch.cs
@@ -33,6 +33,9 @@ namespace NzbDrone.Core
                 Logger.Debug("Binding Ninject's Kernel");
                 _kernel = new StandardKernel();
 
+                //Store the startup path 
+                _startupPath = AppPath;
+
                 //Sqlite
                 string connectionString = String.Format("Data Source={0};Version=3;", Path.Combine(AppPath, "nzbdrone.db"));
                 var dbProvider = ProviderFactory.GetProvider(connectionString, "System.Data.SQLite");
@@ -88,9 +91,6 @@ namespace NzbDrone.Core
                 SetupIndexers(_kernel.Get<IRepository>()); //Setup the default set of indexers on start-up
                 SetupDefaultQualityProfiles(_kernel.Get<IRepository>()); //Setup the default QualityProfiles on start-up
 
-                //Store the startup path 
-                _startupPath = AppPath;
-
                 //Get the Timers going
                 var config = _kernel.Get<IConfigProvider>();
                 var timer = _kernel.Get<ITimerProvider>();
@@ -273,142 +273,50 @@ namespace NzbDrone.Core
 
         private static void SetupDefaultQualityProfiles(IRepository repository)
         {
-            var sdtv = new QualityProfile
+            var sd = new QualityProfile
                             {
-                                Name = "SDTV",
-                                Allowed = new List<QualityTypes> { QualityTypes.TV },
+                                Name = "SD",
+                                Allowed = new List<QualityTypes> { QualityTypes.TV, QualityTypes.DVD },
                                 Cutoff = QualityTypes.TV
                             };
 
-            var dvd = new QualityProfile
-                             {
-                                 Name = "DVD SD",
-                                 Allowed = new List<QualityTypes> { QualityTypes.DVD },
-                                 Cutoff = QualityTypes.DVD
-                             };
-
-            var bdrip = new QualityProfile
-                             {
-                                 Name = "BDRip",
-                                 Allowed = new List<QualityTypes> { QualityTypes.BDRip },
-                                 Cutoff = QualityTypes.BDRip
-                             };
-
-            var hdtv = new QualityProfile
+            var hd = new QualityProfile
                              {
-                                 Name = "HDTV",
-                                 Allowed = new List<QualityTypes> { QualityTypes.HDTV },
+                                 Name = "HD",
+                                 Allowed = new List<QualityTypes> { QualityTypes.HDTV, QualityTypes.WEBDL, QualityTypes.BDRip, QualityTypes.Bluray720 },
                                  Cutoff = QualityTypes.HDTV
                              };
 
-            var webdl = new QualityProfile
-                           {
-                               Name = "WEBDL",
-                               Allowed = new List<QualityTypes> { QualityTypes.WEBDL },
-                               Cutoff = QualityTypes.WEBDL
-                           };
-
-            var bluray = new QualityProfile
-                           {
-                               Name = "Bluray",
-                               Allowed = new List<QualityTypes> { QualityTypes.Bluray },
-                               Cutoff = QualityTypes.Bluray
-                           };
-
-            //Add or Update SDTV
-            Logger.Debug(String.Format("Checking for default QualityProfile: {0}", sdtv.Name));
-            var sdtvDb = repository.Single<QualityProfile>(i => i.Name == sdtv.Name);
-            if (sdtvDb == null)
-            {
-                Logger.Debug(String.Format("Adding new default QualityProfile: {0}", sdtv.Name));
-                repository.Add(sdtv);
-            }
-
-            else
-            {
-                Logger.Debug(String.Format("Updating default QualityProfile: {0}", sdtv.Name));
-                sdtv.QualityProfileId = sdtvDb.QualityProfileId;
-                repository.Update(sdtv);
-            }
-
-            //Add or Update DVD
-            Logger.Debug(String.Format("Checking for default QualityProfile: {0}", dvd.Name));
-            var dvdDb = repository.Single<QualityProfile>(i => i.Name == dvd.Name);
-            if (dvdDb == null)
-            {
-                Logger.Debug(String.Format("Adding new default QualityProfile: {0}", dvd.Name));
-                repository.Add(dvd);
-            }
-
-            else
-            {
-                Logger.Debug(String.Format("Updating default QualityProfile: {0}", dvd.Name));
-                dvd.QualityProfileId = dvdDb.QualityProfileId;
-                repository.Update(dvd);
-            }
-
-            //Add or Update BDRip
-            Logger.Debug(String.Format("Checking for default QualityProfile: {0}", bdrip.Name));
-            var bdripDb = repository.Single<QualityProfile>(i => i.Name == bdrip.Name);
-            if (bdripDb == null)
-            {
-                Logger.Debug(String.Format("Adding new default QualityProfile: {0}", bdrip.Name));
-                repository.Add(bdrip);
-            }
-
-            else
-            {
-                Logger.Debug(String.Format("Updating default QualityProfile: {0}", bdrip.Name));
-                bdrip.QualityProfileId = bdripDb.QualityProfileId;
-                repository.Update(bdrip);
-            }
-
-            //Add or Update HDTV
-            Logger.Debug(String.Format("Checking for default QualityProfile: {0}", hdtv.Name));
-            var hdtvDb = repository.Single<QualityProfile>(i => i.Name == hdtv.Name);
-            if (hdtvDb == null)
-            {
-                Logger.Debug(String.Format("Adding new default QualityProfile: {0}", hdtv.Name));
-                repository.Add(hdtv);
-            }
-
-            else
-            {
-                Logger.Debug(String.Format("Updating default QualityProfile: {0}", hdtv.Name));
-                hdtv.QualityProfileId = hdtvDb.QualityProfileId;
-                repository.Update(hdtv);
-            }
-
-            //Add or Update WEBDL
-            Logger.Debug(String.Format("Checking for default QualityProfile: {0}", webdl.Name));
-            var webdlDb = repository.Single<QualityProfile>(i => i.Name == webdl.Name);
-            if (webdlDb == null)
+            //Add or Update SD
+            Logger.Debug(String.Format("Checking for default QualityProfile: {0}", sd.Name));
+            var sdDb = repository.Single<QualityProfile>(i => i.Name == sd.Name);
+            if (sdDb == null)
             {
-                Logger.Debug(String.Format("Adding new default QualityProfile: {0}", webdl.Name));
-                repository.Add(webdl);
+                Logger.Debug(String.Format("Adding new default QualityProfile: {0}", sd.Name));
+                repository.Add(sd);
             }
 
             else
             {
-                Logger.Debug(String.Format("Updating default QualityProfile: {0}", webdl.Name));
-                webdl.QualityProfileId = webdlDb.QualityProfileId;
-                repository.Update(webdl);
+                Logger.Debug(String.Format("Updating default QualityProfile: {0}", sd.Name));
+                sd.QualityProfileId = sdDb.QualityProfileId;
+                repository.Update(sd);
             }
 
-            //Add or Update Bluray
-            Logger.Debug(String.Format("Checking for default QualityProfile: {0}", bluray.Name));
-            var blurayDb = repository.Single<QualityProfile>(i => i.Name == bluray.Name);
-            if (blurayDb == null)
+            //Add or Update HD
+            Logger.Debug(String.Format("Checking for default QualityProfile: {0}", hd.Name));
+            var hdDb = repository.Single<QualityProfile>(i => i.Name == hd.Name);
+            if (hdDb == null)
             {
-                Logger.Debug(String.Format("Adding new default QualityProfile: {0}", bluray.Name));
-                repository.Add(bluray);
+                Logger.Debug(String.Format("Adding new default QualityProfile: {0}", hd.Name));
+                repository.Add(hd);
             }
 
             else
             {
-                Logger.Debug(String.Format("Updating default QualityProfile: {0}", bluray.Name));
-                bluray.QualityProfileId = blurayDb.QualityProfileId;
-                repository.Update(bluray);
+                Logger.Debug(String.Format("Updating default QualityProfile: {0}", hd.Name));
+                hd.QualityProfileId = hdDb.QualityProfileId;
+                repository.Update(hd);
             }
         }
     }
diff --git a/NzbDrone.Core/Parser.cs b/NzbDrone.Core/Parser.cs
index c88550ab4..8e1af4c82 100644
--- a/NzbDrone.Core/Parser.cs
+++ b/NzbDrone.Core/Parser.cs
@@ -190,7 +190,13 @@ namespace NzbDrone.Core
 
             if (name.Contains("bluray"))
             {
-                return QualityTypes.Bluray;
+                if (name.Contains("720p"))
+                    return QualityTypes.Bluray720;
+
+                if (name.Contains("1080p"))
+                    return QualityTypes.Bluray1080;
+
+                return QualityTypes.Bluray720;
             }
             if (name.Contains("web-dl"))
                 return QualityTypes.WEBDL;
diff --git a/NzbDrone.Core/Providers/RssItemProcessingProvider.cs b/NzbDrone.Core/Providers/RssItemProcessingProvider.cs
index 0de0edd56..1e91915cb 100644
--- a/NzbDrone.Core/Providers/RssItemProcessingProvider.cs
+++ b/NzbDrone.Core/Providers/RssItemProcessingProvider.cs
@@ -359,8 +359,8 @@ namespace NzbDrone.Core.Providers
             if (String.IsNullOrEmpty(path))
             {
                 //Use the NZBDrone root Directory + /NZBs
-                //path = CentralDispatch.StartupPath + "NZBs";
-                path = @"C:\Test\NZBs";
+                path = CentralDispatch.StartupPath + "NZBs";
+                //path = @"C:\Test\NZBs";
             }
 
             if (_diskProvider.FolderExists(path))
diff --git a/NzbDrone.Core/Repository/Quality/QualityTypes.cs b/NzbDrone.Core/Repository/Quality/QualityTypes.cs
index d18f211d4..39c4db84d 100644
--- a/NzbDrone.Core/Repository/Quality/QualityTypes.cs
+++ b/NzbDrone.Core/Repository/Quality/QualityTypes.cs
@@ -31,9 +31,12 @@ namespace NzbDrone.Core.Repository.Quality
         /// </summary>
         WEBDL = 5,
         /// <summary>
-        ///   HD File (Blu-ray Source could be 1080p or 720p)
+        ///   HD File (720p Blu-ray Source)
         /// </summary>
-        Bluray = 6,
-
+        Bluray720 = 6,
+        /// <summary>
+        ///   HD File (1080p Blu-ray Source)
+        /// </summary>
+        Bluray1080 = 7,
     }
 }
\ No newline at end of file
diff --git a/NzbDrone.Web/NzbDrone.Web.Publish.xml b/NzbDrone.Web/NzbDrone.Web.Publish.xml
index 8e47c9855..58860a7c2 100644
--- a/NzbDrone.Web/NzbDrone.Web.Publish.xml
+++ b/NzbDrone.Web/NzbDrone.Web.Publish.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <publishData>
-  <publishProfile publishUrl="C:\Users\keivan.beigi\Desktop\D\" deleteExistingFiles="True" ftpAnonymousLogin="False" ftpPassiveMode="True" msdeploySite="" msdeploySiteID="" msdeployRemoteSitePhysicalPath="" msdeployAllowUntrustedCertificate="False" msdeploySkipExtraFilesOnServer="True" msdeployMarkAsApp="False" profileName="Profile1" publishMethod="FileSystem" replaceMatchingFiles="False" userName="" savePWD="False" userPWD="" SelectedForPublish="True">
+  <publishProfile publishUrl="C:\Users\keivan.beigi\Desktop\D\" deleteExistingFiles="True" ftpAnonymousLogin="False" ftpPassiveMode="True" msdeploySite="" msdeploySiteID="" msdeployRemoteSitePhysicalPath="" msdeployAllowUntrustedCertificate="False" msdeploySkipExtraFilesOnServer="True" msdeployMarkAsApp="False" profileName="Profile1" publishMethod="FileSystem" replaceMatchingFiles="False" userName="" savePWD="False" userPWD="" SelectedForPublish="False">
     <file relUrl="Views/Series/Unmapped.aspx" publishTime="10/04/2010 22:53:21" />
     <file relUrl="Content/Sunset/loading.gif" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Scripts/MicrosoftAjax.js" publishTime="09/23/2010 18:44:18" />
@@ -16,11 +16,12 @@
     <file relUrl="Content/Outlook/treeview-nodes.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Web.config" publishTime="10/13/2010 09:30:51" />
     <file relUrl="Content/Images/img07.jpg" publishTime="10/02/2010 12:01:03" />
+    <file relUrl="bin/Ninject.dll" publishTime="09/23/2010 18:44:18" />
     <file relUrl="Content/Hay/sprite.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Views/Web.config" publishTime="10/13/2010 09:30:51" />
     <file relUrl="Content/Simple/loading.gif" publishTime="10/02/2010 12:01:03" />
+    <file relUrl="Content/Vista/sprite.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Scripts/jquery.validate.js" publishTime="09/23/2010 18:44:18" />
-    <file relUrl="Content/Default/loading.gif" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/telerik.hay.min.css" publishTime="10/02/2010 12:01:03" />
     <file relUrl="bin/SubSonic.Core.dll" publishTime="10/07/2010 20:33:38" />
     <file relUrl="Content/Simple/treeview-nodes.png" publishTime="10/02/2010 12:01:03" />
@@ -32,7 +33,6 @@
     <file relUrl="bin/Telerik.Web.Mvc.xml" publishTime="10/02/2010 12:01:03" />
     <file relUrl="bin/SubSonic.Core.xml" publishTime="10/07/2010 16:34:28" />
     <file relUrl="Content/Simple/sprite.png" publishTime="10/02/2010 12:01:03" />
-    <file relUrl="bin/System.Data.SQLite.dll" publishTime="09/23/2010 18:44:18" />
     <file relUrl="Content/Sitefinity/treeview-nodes.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/Black/editor.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/telerik.simple.min.css" publishTime="10/02/2010 12:01:03" />
@@ -42,10 +42,9 @@
     <file relUrl="Content/telerik.office2007.min.css" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/Black/treeview-nodes.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/Black/sprite.png" publishTime="10/02/2010 12:01:03" />
-    <file relUrl="Content/Vista/loading.gif" publishTime="10/02/2010 12:01:03" />
+    <file relUrl="Libraries/Telerik.Web.Mvc.xml" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Scripts/2010.2.825/telerik.grid.min.js" publishTime="10/02/2010 12:01:03" />
     <file relUrl="bin/Ninject.xml" publishTime="09/23/2010 18:44:18" />
-    <file relUrl="Libraries/Telerik.Web.Mvc.xml" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Scripts/2010.2.825/telerik.draganddrop.min.js" publishTime="10/02/2010 12:01:03" />
     <file relUrl="bin/NzbDrone.Core.dll" publishTime="10/13/2010 09:25:46" />
     <file relUrl="Scripts/MicrosoftMvcAjax.debug.js" publishTime="09/23/2010 18:44:18" />
@@ -63,8 +62,9 @@
     <file relUrl="Content/Default/sprite.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/WebBlue/editor.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/Black/treeview-line.png" publishTime="10/02/2010 12:01:03" />
+    <file relUrl="bin/System.Data.SQLite.xml" publishTime="09/23/2010 18:44:18" />
     <file relUrl="Scripts/MicrosoftMvcValidation.js" publishTime="09/23/2010 18:44:18" />
-    <file relUrl="Content/Outlook/sprite.png" publishTime="10/02/2010 12:01:03" />
+    <file relUrl="Scripts/2010.2.825/telerik.datepicker.min.js" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Scripts/2010.2.825/jquery.validate.min.js" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/telerik.default.min.css" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/Forest/editor.png" publishTime="10/02/2010 12:01:03" />
@@ -77,14 +77,14 @@
     <file relUrl="bin/NLog.pdb" publishTime="10/02/2010 12:01:03" />
     <file relUrl="bin/TvdbLib.xml" publishTime="09/23/2010 18:44:18" />
     <file relUrl="Content/Black/loading.gif" publishTime="10/02/2010 12:01:03" />
-    <file relUrl="Content/Vista/sprite.png" publishTime="10/02/2010 12:01:03" />
+    <file relUrl="Content/Telerik/treeview-nodes.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="bin/TvdbLib.dll" publishTime="09/23/2010 18:44:18" />
     <file relUrl="Content/Default/treeview-line.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/Hay/editor.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/Sunset/sprite.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/Forest/treeview-line.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/Web20/treeview-nodes.png" publishTime="10/02/2010 12:01:03" />
-    <file relUrl="Content/WebBlue/treeview-line.png" publishTime="10/02/2010 12:01:03" />
+    <file relUrl="Content/Default/loading.gif" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/Hay/loading.gif" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Libraries/Telerik.Web.Mvc.dll" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/telerik.webblue.min.css" publishTime="10/02/2010 12:01:03" />
@@ -92,6 +92,7 @@
     <file relUrl="bin/Castle.Core.dll" publishTime="10/07/2010 16:21:40" />
     <file relUrl="Scripts/2010.2.825/telerik.common.min.js" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Scripts/MicrosoftMvcValidation.debug.js" publishTime="09/23/2010 18:44:18" />
+    <file relUrl="Scripts/2010.2.825/telerik.autocomplete.min.js" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Scripts/2010.2.825/telerik.window.min.js" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Scripts/2010.2.825/telerik.editor.min.js" publishTime="10/02/2010 12:01:03" />
     <file relUrl="bin/UPnP.dll" publishTime="10/08/2010 00:10:47" />
@@ -104,25 +105,24 @@
     <file relUrl="Content/Sitefinity/treeview-line.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Scripts/MicrosoftMvcAjax.js" publishTime="09/23/2010 18:44:18" />
     <file relUrl="Content/Sunset/treeview-line.png" publishTime="10/02/2010 12:01:03" />
-    <file relUrl="Content/Outlook/treeview-line.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/telerik.forest.min.css" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/Web20/treeview-line.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/Images/img02.jpg" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/Web20/loading.gif" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/Telerik/editor.png" publishTime="10/02/2010 12:01:03" />
-    <file relUrl="Scripts/2010.2.825/telerik.datepicker.min.js" publishTime="10/02/2010 12:01:03" />
+    <file relUrl="Content/WebBlue/treeview-line.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/telerik.sunset.min.css" publishTime="10/02/2010 12:01:03" />
-    <file relUrl="bin/Ninject.dll" publishTime="09/23/2010 18:44:18" />
+    <file relUrl="Content/Outlook/treeview-line.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Views/Account/Register.aspx" publishTime="09/23/2010 18:44:18" />
     <file relUrl="Scripts/2010.2.825/telerik.calendar.min.js" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Scripts/2010.2.825/telerik.combobox.min.js" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Scripts/2010.2.825/telerik.grid.editing.min.js" publishTime="10/02/2010 12:01:03" />
-    <file relUrl="bin/System.Data.SQLite.xml" publishTime="09/23/2010 18:44:18" />
+    <file relUrl="Content/Vista/loading.gif" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Content/Outlook/editor.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Scripts/jquery-1.4.1-vsdoc.js" publishTime="09/23/2010 18:44:18" />
-    <file relUrl="Scripts/2010.2.825/telerik.autocomplete.min.js" publishTime="10/02/2010 12:01:03" />
+    <file relUrl="Content/Simple/treeview-line.png" publishTime="10/02/2010 12:01:03" />
+    <file relUrl="bin/System.Data.SQLite.dll" publishTime="09/23/2010 18:44:18" />
     <file relUrl="Content/Hay/treeview-line.png" publishTime="10/02/2010 12:01:03" />
-    <file relUrl="Views/Settings/Index.aspx" publishTime="10/04/2010 22:53:21" />
     <file relUrl="Content/Default/treeview-nodes.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="bin/NzbDrone.Web.pdb" publishTime="10/13/2010 09:30:36" />
     <file relUrl="bin/NzbDrone.Core.pdb" publishTime="10/13/2010 09:25:46" />
@@ -136,8 +136,8 @@
     <file relUrl="Scripts/jquery.jgrowl.js" publishTime="10/11/2010 13:31:43" />
     <file relUrl="Content/Office2007/treeview-line.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Views/Shared/Error.aspx" publishTime="10/07/2010 20:33:38" />
-    <file relUrl="Content/Simple/treeview-line.png" publishTime="10/02/2010 12:01:03" />
-    <file relUrl="Content/Telerik/treeview-nodes.png" publishTime="10/02/2010 12:01:03" />
+    <file relUrl="Content/Outlook/sprite.png" publishTime="10/02/2010 12:01:03" />
+    <file relUrl="Views/Settings/Index.aspx" publishTime="10/04/2010 22:53:21" />
     <file relUrl="Scripts/jquery-ui-1.8.5.custom.min.js" publishTime="10/11/2010 19:48:30" />
     <file relUrl="Content/Web20/editor.png" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Scripts/2010.2.825/telerik.grid.grouping.min.js" publishTime="10/02/2010 12:01:03" />
@@ -162,4 +162,240 @@
     <file relUrl="Scripts/2010.2.825/jquery-1.4.2.min.js" publishTime="10/02/2010 12:01:03" />
     <file relUrl="Scripts/2010.2.825/telerik.treeview.min.js" publishTime="10/02/2010 12:01:03" />
   </publishProfile>
+  <publishProfile publishUrl="C:\NzbDrone Deploy\NzbDrone.Web" deleteExistingFiles="False" ftpAnonymousLogin="False" ftpPassiveMode="True" msdeploySite="" msdeploySiteID="" msdeployRemoteSitePhysicalPath="" msdeployAllowUntrustedCertificate="False" msdeploySkipExtraFilesOnServer="True" msdeployMarkAsApp="False" profileName="Markus" publishMethod="FileSystem" replaceMatchingFiles="True" userName="" savePWD="False" userPWD="" SelectedForPublish="True">
+    <file relUrl="Views/Series/Unmapped.aspx" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Sunset/loading.gif" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/MicrosoftAjax.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/jquery-tgc-countdown-1.0.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/Telerik.Web.Mvc.dll" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Default/editor.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/style.css" publishTime="03/17/2011 08:08:13" />
+    <file relUrl="Content/Outlook/loading.gif" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Office2007/sprite.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/Notification.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Sunset/treeview-nodes-rtl.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Telerik/sprite.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/WebBlue/loading.gif" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Account/ChangePassword.aspx" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/jquery.form.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Outlook/treeview-nodes.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Web.config" publishTime="03/26/2011 13:17:08" />
+    <file relUrl="Content/Images/img07.jpg" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Series/AddNew.aspx" publishTime="03/17/2011 08:07:55" />
+    <file relUrl="Views/Series/Edit.aspx" publishTime="03/24/2011 00:22:44" />
+    <file relUrl="Scripts/2010.3.1318/telerik.grid.filtering.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Web.config" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Simple/loading.gif" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Windows7/editor.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/telerik.common.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/jquery.validate.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/X.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/ui-bg_diagonals-thick_15_444444_40x40.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/telerik.panelbar.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/notibar.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/SubSonic.Core.dll" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/ui-bg_glass_50_99c2ff_1x400.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/telerik.common.min.css" publishTime="03/23/2011 08:10:39" />
+    <file relUrl="bin/TvdbLib.dll" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/telerik.grid.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/WebBlue/treeview-nodes.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/NLog.xml" publishTime="09/26/2010 18:12:50" />
+    <file relUrl="Content/Forest/loading.gif" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/Telerik.Web.Mvc.xml" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/jquery-simpledropdown.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Forest/treeview-line.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/SubSonic.Core.xml" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Simple/sprite.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Outlook/treeview-line.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Sitefinity/treeview-nodes.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Black/editor.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Shared/Site.Master" publishTime="03/23/2011 08:19:09" />
+    <file relUrl="Views/Series/SeriesSearchResults.ascx" publishTime="03/16/2011 23:25:46" />
+    <file relUrl="Content/Office2007/treeview-nodes-rtl.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/jquery.simpledropdown.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Sunset/treeview-nodes.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Sitefinity/sprite.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/telerik.calendar.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Sitefinity/loading.gif" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/telerik.office2007.min.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Black/treeview-nodes.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Black/sprite.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Libraries/Telerik.Web.Mvc.xml" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/ui-bg_highlight-soft_100_e7eef3_1x100.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/Ninject.xml" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Sitefinity/treeview-nodes-rtl.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Simple/treeview-nodes-rtl.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Simple/treeview-nodes.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/spin.gif" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/MicrosoftMvcAjax.debug.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Shared/Footer.ascx" publishTime="03/09/2011 08:20:34" />
+    <file relUrl="Content/Windows7/sprite.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Settings/EpisodeSorting.ascx" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/img03.jpg" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Simple/editor.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Settings/Notifications.ascx" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Forest/treeview-nodes.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/telerik.grid.resizing.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/WebBlue/sprite.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/NzbDrone.Core.dll" publishTime="03/26/2011 17:02:26" />
+    <file relUrl="Content/telerik.sitefinity.min.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/ui-bg_highlight-hard_100_f9f9f9_1x100.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/telerik.grid.grouping.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Office2007/loading.gif" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Series/SubMenu.ascx" publishTime="03/11/2011 00:39:20" />
+    <file relUrl="Content/Telerik/treeview-nodes.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/telerik.black.min.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/Plus.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/jquery-1.4.4.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Global.asax" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Default/sprite.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/jquery-ui.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/WebBlue/editor.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Black/treeview-line.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/ui-icons_cd0a0a_256x240.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/telerik.list.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/NzbDrone.Web.dll" publishTime="03/26/2011 17:02:27" />
+    <file relUrl="Scripts/2010.3.1318/telerik.datepicker.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Outlook/sprite.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Account/LogOn.aspx" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/telerik.default.min.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Forest/editor.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/ui-icons_888888_256x240.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/System.Web.Mvc.dll" publishTime="02/17/2010 08:24:14" />
+    <file relUrl="Content/Telerik/loading.gif" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/System.Web.Mvc.xml" publishTime="02/17/2010 08:22:24" />
+    <file relUrl="Content/telerik.outlook.min.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/jquery-ui-1.8.8.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Series/EpisodeDetail.ascx" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/Exceptioneer.WindowsFormsClient.dll" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/jquery.jgrowl.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/NLog.pdb" publishTime="09/26/2010 18:12:50" />
+    <file relUrl="Content/Images/ui-icons_72a7cf_256x240.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/TvdbLib.xml" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Black/loading.gif" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Vista/sprite.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/ui-bg_glass_95_fef1ec_1x400.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Outlook/editor.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="log.config" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/RSS.NET.xml" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Default/treeview-line.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/ui-icons_ffffff_256x240.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Sunset/sprite.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Office2007/editor.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/RSS.NET.dll" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Web20/treeview-nodes.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Web20/treeview-nodes-rtl.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Default/loading.gif" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Hay/loading.gif" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Libraries/Telerik.Web.Mvc.dll" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Sunset/treeview-line.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/telerik.webblue.min.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Black/treeview-nodes-rtl.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Telerik/treeview-nodes-rtl.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/Castle.Core.dll" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/MicrosoftMvcValidation.debug.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/telerik.combobox.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Settings/Quality.ascx" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/ui-bg_glass_55_fbf5d0_1x400.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Vista/loading.gif" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/ui-icons_2e83ff_256x240.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/UPnP.dll" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/telerik.vista.min.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/jquery.validate-vsdoc.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Home/Index.aspx" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/arrow.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/ui-bg_glass_100_f0f0f0_1x400.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Sitefinity/treeview-line.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/MicrosoftMvcAjax.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Log/Index.aspx" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/telerik.simple.min.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Default/treeview-nodes-rtl.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/telerik.autocomplete.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/telerik.forest.min.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Web20/treeview-line.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/telerik.tabstrip.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Series/AddExisting.aspx" publishTime="03/17/2011 00:32:05" />
+    <file relUrl="Views/Settings/Downloads.ascx" publishTime="03/21/2011 20:56:07" />
+    <file relUrl="Scripts/2010.3.1318/telerik.grid.editing.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/XbmcNotification.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Account/Register.aspx" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/img02.jpg" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Web20/loading.gif" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Forest/treeview-nodes-rtl.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Telerik/editor.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/telerik.draganddrop.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/WebBlue/treeview-line.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/telerik.sunset.min.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Simple/treeview-line.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/Ninject.dll" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/History/Index.aspx" publishTime="03/23/2011 08:35:21" />
+    <file relUrl="Content/Hay/sprite.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Windows7/loading.gif" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/MicrosoftMvcValidation.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/telerik.hay.min.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/Castle.Core.xml" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/jquery-ui-1.8.8.custom.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/System.Data.SQLite.xml" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/WebBlue/treeview-nodes-rtl.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/jquery-1.4.1-vsdoc.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/ui-icons_222222_256x240.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/System.Data.SQLite.dll" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Hay/treeview-line.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Settings/Index.aspx" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/telerik.datetimepicker.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Default/treeview-nodes.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/NzbDrone.Web.pdb" publishTime="03/26/2011 17:02:27" />
+    <file relUrl="bin/NzbDrone.Core.pdb" publishTime="03/26/2011 17:02:25" />
+    <file relUrl="Content/telerik.web20.min.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/telerik.grid.reordering.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/telerik.windows7.min.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Series/Add.aspx" publishTime="03/10/2011 09:14:43" />
+    <file relUrl="Content/Hay/editor.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/jquery-1.4.3.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Series/index.aspx" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Sunset/editor.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Telerik/treeview-line.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/MicrosoftAjax.debug.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/jquery.jgrowl.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Office2007/treeview-line.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Settings/SubMenu.ascx" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Shared/Error.aspx" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Upcoming/Index.aspx" publishTime="03/23/2011 08:34:52" />
+    <file relUrl="Scripts/2010.3.1318/telerik.menu.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Series/AddExistingManual.aspx" publishTime="03/16/2011 23:38:06" />
+    <file relUrl="Views/Settings/UserProfileSection.ascx" publishTime="03/08/2011 22:05:27" />
+    <file relUrl="Scripts/jquery-ui-1.8.5.custom.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Settings/RootDir.ascx" publishTime="03/08/2011 22:09:59" />
+    <file relUrl="Content/Web20/editor.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/ui-bg_diagonals-small_0_aaaaaa_40x40.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Settings/General.ascx" publishTime="03/15/2011 08:20:40" />
+    <file relUrl="Content/Office2007/treeview-nodes.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Home/Test.aspx" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Outlook/treeview-nodes-rtl.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Vista/editor.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/telerik.rtl.min.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Hay/treeview-nodes-rtl.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Settings/Indexers.ascx" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Sitefinity/editor.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/telerik.timepicker.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/ui-icons_2694e8_256x240.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Series/Details.aspx" publishTime="03/22/2011 21:11:56" />
+    <file relUrl="Content/Images/ui-bg_glass_80_e6e6e6_1x400.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/telerik.treeview.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/telerik.window.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/jquery-ui.custom.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Hay/treeview-nodes.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Forest/sprite.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="bin/NLog.dll" publishTime="09/26/2010 18:12:50" />
+    <file relUrl="Content/ie.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Account/ChangePasswordSuccess.aspx" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/telerik.textbox.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/telerik.telerik.min.css" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/telerik.editor.min.js" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Web20/sprite.png" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/Images/img01.jpg" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Content/ajax-loader.gif" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Views/Home/About.aspx" publishTime="03/07/2011 20:48:08" />
+    <file relUrl="Scripts/2010.3.1318/jquery.validate.min.js" publishTime="03/07/2011 20:48:08" />
+  </publishProfile>
 </publishData>
\ No newline at end of file