diff --git a/CatherineLynwood/CatherineLynwood.csproj b/CatherineLynwood/CatherineLynwood.csproj index 074322a..1805ea7 100644 --- a/CatherineLynwood/CatherineLynwood.csproj +++ b/CatherineLynwood/CatherineLynwood.csproj @@ -153,19 +153,19 @@ - - - + + + - + - + - + diff --git a/CatherineLynwood/Components/BuyPanel.cs b/CatherineLynwood/Components/BuyPanel.cs index 4998bdc..4b1f5eb 100644 --- a/CatherineLynwood/Components/BuyPanel.cs +++ b/CatherineLynwood/Components/BuyPanel.cs @@ -3,25 +3,39 @@ using CatherineLynwood.Services; using Microsoft.AspNetCore.Mvc; -using Newtonsoft.Json; - namespace CatherineLynwood.Components { public class BuyPanel : ViewComponent { + #region Private Fields + private DataAccess _dataAccess; + #endregion Private Fields + + #region Public Constructors + public BuyPanel(DataAccess dataAccess) { _dataAccess = dataAccess; } + #endregion Public Constructors + + #region Public Methods + public async Task InvokeAsync(string iso2, string src, string title) { BuyPanelViewModel buyPanelViewModel = await _dataAccess.GetBuyPanelViewModel(iso2, title); buyPanelViewModel.Src = src; + if (title == "Reckoning") + { + return View("Reckoning", buyPanelViewModel); + } return View(buyPanelViewModel); } + + #endregion Public Methods } -} +} \ No newline at end of file diff --git a/CatherineLynwood/Controllers/IndieAuthorController.cs b/CatherineLynwood/Controllers/IndieAuthorController.cs index 7644538..ad6695c 100644 --- a/CatherineLynwood/Controllers/IndieAuthorController.cs +++ b/CatherineLynwood/Controllers/IndieAuthorController.cs @@ -2,11 +2,85 @@ namespace CatherineLynwood.Controllers { + [Route("indie-author")] public class IndieAuthorController : Controller { + [HttpGet("")] public IActionResult Index() { return View(); } + + [HttpGet("isbns")] + public IActionResult Isbns() + { + return View(); + } + + [HttpGet("kdp")] + public IActionResult Kdp() + { + return View(); + } + + [HttpGet("audiobooks")] + public IActionResult Audiobooks() + { + return View(); + } + + [HttpGet("ingramspark")] + public IActionResult IngramSpark() + { + return View(); + } + + [HttpGet("kdp-vs-ingramspark")] + public IActionResult KdpVsIngramSpark() + { + return View(); + } + + [HttpGet("editing-and-proofreading")] + public IActionResult EditingAndProofreading() + { + return View(); + } + + [HttpGet("amazon-advertising")] + public IActionResult AmazonAdvertising() + { + return View(); + } + + [HttpGet("reviews-and-arc-readers")] + public IActionResult ReviewsAndArcReaders() + { + return View(); + } + + [HttpGet("cover-design")] + public IActionResult CoverDesign() + { + return View(); + } + + [HttpGet("ai-for-authors")] + public IActionResult AiForAuthors() + { + return View(); + } + + [HttpGet("traditional-vs-self-publishing")] + public IActionResult TraditionalVsSelfPublishing() + { + return View(); + } + + [HttpGet("author-finances")] + public IActionResult AuthorFinances() + { + return View(); + } } } diff --git a/CatherineLynwood/Controllers/ReckoningController.cs b/CatherineLynwood/Controllers/ReckoningController.cs index 1df8602..d319b8b 100644 --- a/CatherineLynwood/Controllers/ReckoningController.cs +++ b/CatherineLynwood/Controllers/ReckoningController.cs @@ -30,6 +30,15 @@ namespace CatherineLynwood.Controllers [Route("")] public async Task Index() { + // Prevent caches or CDNs from cross-serving variants + Response.Headers["Vary"] = "Cookie, User-Agent"; + + // Decide device class first + var device = ResolveDeviceClass(); + + // Decide variant + var variant = ResolveVariant(device); + // Country ISO2 var iso2 = (_country.Iso2 ?? "GB").ToUpperInvariant(); if (iso2 == "UK") iso2 = "GB"; @@ -38,16 +47,34 @@ namespace CatherineLynwood.Controllers Reviews reviews = await _dataAccess.GetReviewsAsync("Reckoning"); reviews.SchemaJsonLd = GenerateBookSchemaJsonLd(reviews, 3); + string src = variant switch + { + Variant.A => "Mobile", + Variant.B => "Mobile", + _ => "Desktop" + }; + + // VM var vm = new TitlePageViewModel { Reviews = reviews, UserIso2 = iso2, - Src = "Index", + Src = src, Title = "Reckoning" }; - return View("Index", vm); + // View mapping: + // - A and B are the two MOBILE variants + // - C is the DESKTOP variant + string viewName = variant switch + { + Variant.A => "IndexMobile", // mobile layout A + Variant.B => "IndexMobile", // mobile layout B + _ => "Index" // desktop layout C + }; + + return View(viewName, vm); } [Route("reviews")] @@ -87,27 +114,27 @@ namespace CatherineLynwood.Controllers return View(flagSupportViewModel); } - [BookAccess(1, 1)] + [BookAccess(1, 2)] [Route("extras")] public IActionResult Extras() => View(); - [BookAccess(1, 1)] + [BookAccess(1, 2)] [Route("extras/epilogue")] public IActionResult Epilogue() => View(); - [BookAccess(1, 1)] + [BookAccess(1, 2)] [Route("extras/scrap-book")] public IActionResult ScrapBook() => View(); - [BookAccess(1, 1)] + [BookAccess(1, 2)] [Route("extras/listen")] public IActionResult Listen() => View(); - [BookAccess(1, 1)] + [BookAccess(1, 2)] [Route("extras/maggies-designs")] public IActionResult MaggiesDesigns() => View(); - [BookAccess(1, 1)] + [BookAccess(1, 2)] [Route("extras/soundtrack")] public async Task Soundtrack() { diff --git a/CatherineLynwood/Controllers/SitemapController.cs b/CatherineLynwood/Controllers/SitemapController.cs index f6b8737..6634ae1 100644 --- a/CatherineLynwood/Controllers/SitemapController.cs +++ b/CatherineLynwood/Controllers/SitemapController.cs @@ -56,6 +56,19 @@ namespace CatherineLynwood.Controllers new SitemapEntry { Url = Url.Action("SamanthaLynwood", "Home", null, Request.Scheme).TrimEnd('/'), LastModified = DateTime.UtcNow }, new SitemapEntry { Url = Url.Action("VerosticGenre", "Home", null, Request.Scheme).TrimEnd('/'), LastModified = DateTime.UtcNow }, new SitemapEntry { Url = Url.Action("LarhysaSaddul", "Collaborations", null, Request.Scheme).TrimEnd('/'), LastModified = DateTime.UtcNow }, + new SitemapEntry { Url = Url.Action("Index", "IndieAuthor", null, Request.Scheme).TrimEnd('/'), LastModified = DateTime.UtcNow }, + new SitemapEntry { Url = Url.Action("Isbn", "IndieAuthor", null, Request.Scheme).TrimEnd('/'), LastModified = DateTime.UtcNow }, + new SitemapEntry { Url = Url.Action("Kdp", "IndieAuthor", null, Request.Scheme).TrimEnd('/'), LastModified = DateTime.UtcNow }, + new SitemapEntry { Url = Url.Action("Audiobooks", "IndieAuthor", null, Request.Scheme).TrimEnd('/'), LastModified = DateTime.UtcNow }, + new SitemapEntry { Url = Url.Action("IngramSpark", "IndieAuthor", null, Request.Scheme).TrimEnd('/'), LastModified = DateTime.UtcNow }, + new SitemapEntry { Url = Url.Action("KdpVsIngramSpark", "IndieAuthor", null, Request.Scheme).TrimEnd('/'), LastModified = DateTime.UtcNow }, + new SitemapEntry { Url = Url.Action("EditingAndProofreading", "IndieAuthor", null, Request.Scheme).TrimEnd('/'), LastModified = DateTime.UtcNow }, + new SitemapEntry { Url = Url.Action("AmazonAdvertising", "IndieAuthor", null, Request.Scheme).TrimEnd('/'), LastModified = DateTime.UtcNow }, + new SitemapEntry { Url = Url.Action("ReviewsAndArcReaders", "IndieAuthor", null, Request.Scheme).TrimEnd('/'), LastModified = DateTime.UtcNow }, + new SitemapEntry { Url = Url.Action("TraditionalVsSelfPublishing", "IndieAuthor", null, Request.Scheme).TrimEnd('/'), LastModified = DateTime.UtcNow }, + new SitemapEntry { Url = Url.Action("AuthorFinances", "IndieAuthor", null, Request.Scheme).TrimEnd('/'), LastModified = DateTime.UtcNow }, + new SitemapEntry { Url = Url.Action("CoverDesign", "IndieAuthor", null, Request.Scheme).TrimEnd('/'), LastModified = DateTime.UtcNow }, + new SitemapEntry { Url = Url.Action("AiForAuthors", "IndieAuthor", null, Request.Scheme).TrimEnd('/'), LastModified = DateTime.UtcNow }, // Additional static pages }; diff --git a/CatherineLynwood/Controllers/TheAlphaFlameController.cs b/CatherineLynwood/Controllers/TheAlphaFlameController.cs index 263aad3..454536e 100644 --- a/CatherineLynwood/Controllers/TheAlphaFlameController.cs +++ b/CatherineLynwood/Controllers/TheAlphaFlameController.cs @@ -1,9 +1,7 @@ -using CatherineLynwood.Helpers; -using CatherineLynwood.Models; +using CatherineLynwood.Models; using CatherineLynwood.Services; using Microsoft.AspNetCore.Mvc; -using Microsoft.Identity.Client; using Newtonsoft.Json; @@ -157,6 +155,30 @@ namespace CatherineLynwood.Controllers return RedirectToAction("BlogItem", new { slug = blogUrl, showThanks = showThanks }); } + [BookAccess(1)] + [Route("extras")] + public IActionResult Extras() + { + var session = HttpContext.Session; + + var level = session.GetInt32("BookAccessLevel"); + var book = session.GetInt32("BookAccessMax"); + + if (book == 2) + { + return RedirectToAction("Extras", "Reckoning"); + } + + if (book == 3) + { + return RedirectToAction("Extras", "Redemption"); + } + + + return RedirectToAction("Extras", "Discovery"); + + } + [Route("")] public IActionResult Index() { diff --git a/CatherineLynwood/Helpers/BookAccessAttribute.cs b/CatherineLynwood/Helpers/BookAccessAttribute.cs index 4577d7f..97649eb 100644 --- a/CatherineLynwood/Helpers/BookAccessAttribute.cs +++ b/CatherineLynwood/Helpers/BookAccessAttribute.cs @@ -6,7 +6,7 @@ public class BookAccessAttribute : Attribute, IAsyncAuthorizationFilter private readonly int _requiredLevel; private readonly int _requiredBook; - public BookAccessAttribute(int requiredLevel, int requiredBook) + public BookAccessAttribute(int requiredLevel, int requiredBook = 0) { _requiredLevel = requiredLevel; _requiredBook = requiredBook; @@ -19,13 +19,28 @@ public class BookAccessAttribute : Attribute, IAsyncAuthorizationFilter var level = session.GetInt32("BookAccessLevel"); var book = session.GetInt32("BookAccessMax"); - if (level == null || book == null || level < _requiredLevel || book < _requiredBook) + if (_requiredBook == 0) { - var currentUrl = context.HttpContext.Request.Path + context.HttpContext.Request.QueryString; - context.HttpContext.Items["RequestedUrl"] = currentUrl; // store temporarily + if (level == null || book == null || level < _requiredLevel) + { + var currentUrl = context.HttpContext.Request.Path + context.HttpContext.Request.QueryString; + context.HttpContext.Items["RequestedUrl"] = currentUrl; // store temporarily - context.Result = new RedirectToActionResult("Prompt", "Access", new { returnUrl = currentUrl }); + context.Result = new RedirectToActionResult("Prompt", "Access", new { returnUrl = currentUrl }); + } } + else + { + if (level == null || book == null || level < _requiredLevel || book != _requiredBook) + { + var currentUrl = context.HttpContext.Request.Path + context.HttpContext.Request.QueryString; + context.HttpContext.Items["RequestedUrl"] = currentUrl; // store temporarily + + context.Result = new RedirectToActionResult("Prompt", "Access", new { returnUrl = currentUrl }); + } + } + + return Task.CompletedTask; } diff --git a/CatherineLynwood/Models/AccessCode.cs b/CatherineLynwood/Models/AccessCode.cs index 4f8ad56..18d66ae 100644 --- a/CatherineLynwood/Models/AccessCode.cs +++ b/CatherineLynwood/Models/AccessCode.cs @@ -2,10 +2,21 @@ { public class AccessCode { - public int PageNumber { get; set; } - public int WordIndex { get; set; } + #region Public Properties + + public int AccessLevel { get; set; } + + // 1 = basic, 2 = retail, 3 = deluxe + public int BookID { get; set; } + public string ExpectedWord { get; set; } - public int AccessLevel { get; set; } // 1 = basic, 2 = retail, 3 = deluxe - public int BookNumber { get; set; } // 1, 2, or 3 + + public int PageNumber { get; set; } + + public int WordIndex { get; set; } + + #endregion Public Properties + + // 1, 2, or 3 } } \ No newline at end of file diff --git a/CatherineLynwood/Services/AccessCodeService.cs b/CatherineLynwood/Services/AccessCodeService.cs index f47fdba..a351635 100644 --- a/CatherineLynwood/Services/AccessCodeService.cs +++ b/CatherineLynwood/Services/AccessCodeService.cs @@ -1,27 +1,37 @@ using CatherineLynwood.Models; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - namespace CatherineLynwood.Services { public interface IAccessCodeService { - Task<(int pageNumber, int wordIndex)> GetCurrentChallengeAsync(); - Task<(int accessLevel, int highestBook)> ValidateWordAsync(string userWord); - } + #region Public Methods + Task<(int pageNumber, int wordIndex)> GetCurrentChallengeAsync(); + + Task<(int accessLevel, int highestBook)> ValidateWordAsync(string userWord); + + #endregion Public Methods + } public class AccessCodeService : IAccessCodeService { + #region Private Fields + private readonly List _accessCodes; + #endregion Private Fields + + #region Public Constructors + public AccessCodeService(DataAccess dataAccess) { _accessCodes = dataAccess.GetAccessCodes(); } + #endregion Public Constructors + + #region Public Methods + public Task<(int pageNumber, int wordIndex)> GetCurrentChallengeAsync() { var challenge = _accessCodes.First(); // current prompt @@ -34,10 +44,11 @@ namespace CatherineLynwood.Services c.ExpectedWord.Equals(userWord, StringComparison.OrdinalIgnoreCase)); if (match != null) - return Task.FromResult((match.AccessLevel, match.BookNumber)); + return Task.FromResult((match.AccessLevel, match.BookID)); return Task.FromResult((0, 0)); } - } -} + #endregion Public Methods + } +} \ No newline at end of file diff --git a/CatherineLynwood/Services/DataAccess.cs b/CatherineLynwood/Services/DataAccess.cs index 2a80203..475bc88 100644 --- a/CatherineLynwood/Services/DataAccess.cs +++ b/CatherineLynwood/Services/DataAccess.cs @@ -3,11 +3,6 @@ using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.Data.SqlClient; -using SixLabors.ImageSharp.Web.Commands.Converters; - -using System.Collections.Generic; -using System.Collections.Specialized; -using System.ComponentModel; using System.Data; namespace CatherineLynwood.Services @@ -27,76 +22,6 @@ namespace CatherineLynwood.Services _connectionString = connectionString; } - public async Task GetBuyPanelViewModel(string iso2, string title) - { - BuyPanelViewModel buyPanelViewModel = new BuyPanelViewModel(); - - using (SqlConnection conn = new SqlConnection(_connectionString)) - { - using (SqlCommand cmd = new SqlCommand()) - { - try - { - await conn.OpenAsync(); - cmd.Connection = conn; - cmd.CommandType = CommandType.StoredProcedure; - cmd.CommandText = "GetBuyLinks"; - cmd.Parameters.AddWithValue("@ISO2", iso2); - cmd.Parameters.AddWithValue("@Title", title); - - using (SqlDataReader rdr = await cmd.ExecuteReaderAsync()) - { - while (await rdr.ReadAsync()) - { - buyPanelViewModel.ISO2 = GetDataString(rdr, "ISO2"); - buyPanelViewModel.CountryName = GetDataString(rdr, "CountryName"); - } - - await rdr.NextResultAsync(); - - while (await rdr.ReadAsync()) - { - BuyGroup buyGroup = new BuyGroup - { - BuyGroupID = GetDataInt(rdr, "BuyGroupID"), - Message = GetDataString(rdr, "Message"), - DisplayOrder = GetDataInt(rdr, "DisplayOrder"), - GroupName = GetDataString(rdr, "GroupName") - }; - buyPanelViewModel.Groups.Add(buyGroup); - } - - await rdr.NextResultAsync(); - - while (await rdr.ReadAsync()) - { - BuyLink buyLink = new BuyLink - { - BuyGroupID = GetDataInt(rdr, "BuyGroupID"), - BuyLinkID = GetDataInt(rdr, "BuyLinkID"), - ISO2 = GetDataString(rdr, "ISO2"), - Price = GetDataString(rdr, "Price"), - Slug = GetDataString(rdr, "Slug"), - Target = GetDataString(rdr, "Target"), - Icon = GetDataString(rdr, "Icon"), - Text = GetDataString(rdr, "Text") - }; - var group = buyPanelViewModel.Groups.Find(g => g.BuyGroupID == buyLink.BuyGroupID); - if (group != null) - { - group.Links.Add(buyLink); - } - } - } - } - catch (Exception ex) - { - } - } - } - - return buyPanelViewModel; - } public async Task AddBlogCommentAsync(BlogComment blogComment) { bool visible = false; @@ -297,7 +222,7 @@ namespace CatherineLynwood.Services WordIndex = GetDataInt(rdr, "WordIndex"), ExpectedWord = GetDataString(rdr, "ExpectedWord"), AccessLevel = GetDataInt(rdr, "AccessLevel"), - BookNumber = GetDataInt(rdr, "BookNumber") + BookID = GetDataInt(rdr, "BookID") }); } } @@ -618,6 +543,77 @@ namespace CatherineLynwood.Services return blogIndex; } + public async Task GetBuyPanelViewModel(string iso2, string title) + { + BuyPanelViewModel buyPanelViewModel = new BuyPanelViewModel(); + + using (SqlConnection conn = new SqlConnection(_connectionString)) + { + using (SqlCommand cmd = new SqlCommand()) + { + try + { + await conn.OpenAsync(); + cmd.Connection = conn; + cmd.CommandType = CommandType.StoredProcedure; + cmd.CommandText = "GetBuyLinks"; + cmd.Parameters.AddWithValue("@ISO2", iso2); + cmd.Parameters.AddWithValue("@Title", title); + + using (SqlDataReader rdr = await cmd.ExecuteReaderAsync()) + { + while (await rdr.ReadAsync()) + { + buyPanelViewModel.ISO2 = GetDataString(rdr, "ISO2"); + buyPanelViewModel.CountryName = GetDataString(rdr, "CountryName"); + } + + await rdr.NextResultAsync(); + + while (await rdr.ReadAsync()) + { + BuyGroup buyGroup = new BuyGroup + { + BuyGroupID = GetDataInt(rdr, "BuyGroupID"), + Message = GetDataString(rdr, "Message"), + DisplayOrder = GetDataInt(rdr, "DisplayOrder"), + GroupName = GetDataString(rdr, "GroupName") + }; + buyPanelViewModel.Groups.Add(buyGroup); + } + + await rdr.NextResultAsync(); + + while (await rdr.ReadAsync()) + { + BuyLink buyLink = new BuyLink + { + BuyGroupID = GetDataInt(rdr, "BuyGroupID"), + BuyLinkID = GetDataInt(rdr, "BuyLinkID"), + ISO2 = GetDataString(rdr, "ISO2"), + Price = GetDataString(rdr, "Price"), + Slug = GetDataString(rdr, "Slug"), + Target = GetDataString(rdr, "Target"), + Icon = GetDataString(rdr, "Icon"), + Text = GetDataString(rdr, "Text") + }; + var group = buyPanelViewModel.Groups.Find(g => g.BuyGroupID == buyLink.BuyGroupID); + if (group != null) + { + group.Links.Add(buyLink); + } + } + } + } + catch (Exception ex) + { + } + } + } + + return buyPanelViewModel; + } + public async Task> GetDueBlogPostsAsync() { List blogPosts = new List(); @@ -1009,7 +1005,7 @@ namespace CatherineLynwood.Services string userAgent, string referer, string sessionId, - string src + string src ) { bool success = true; @@ -1131,10 +1127,10 @@ namespace CatherineLynwood.Services cmd.Parameters.AddWithValue("@CountryName", geo.CountryName); cmd.Parameters.AddWithValue("@LastSeenUtc", geo.LastSeenUtc); cmd.Parameters.AddWithValue("@Source", geo.Source ?? (object)DBNull.Value); - cmd.Parameters.AddWithValue("@UserAgent", geo.UserAgent ?? (object)DBNull.Value); - cmd.Parameters.AddWithValue("@Path", geo.Path ?? (object)DBNull.Value); - cmd.Parameters.AddWithValue("@QueryString", geo.QueryString ?? (object)DBNull.Value); - cmd.Parameters.AddWithValue("@City", geo.City ?? (object)DBNull.Value); + cmd.Parameters.AddWithValue("@UserAgent", geo.UserAgent ?? (object)DBNull.Value); + cmd.Parameters.AddWithValue("@Path", geo.Path ?? (object)DBNull.Value); + cmd.Parameters.AddWithValue("@QueryString", geo.QueryString ?? (object)DBNull.Value); + cmd.Parameters.AddWithValue("@City", geo.City ?? (object)DBNull.Value); await cmd.ExecuteNonQueryAsync(); } diff --git a/CatherineLynwood/Views/Discovery/AudioBook.cshtml b/CatherineLynwood/Views/Discovery/AudioBook.cshtml index 7d1192d..ede7dfb 100644 --- a/CatherineLynwood/Views/Discovery/AudioBook.cshtml +++ b/CatherineLynwood/Views/Discovery/AudioBook.cshtml @@ -50,9 +50,9 @@
-
Narration
diff --git a/CatherineLynwood/Views/Discovery/Epilogue.cshtml b/CatherineLynwood/Views/Discovery/Epilogue.cshtml index 044de26..5288463 100644 --- a/CatherineLynwood/Views/Discovery/Epilogue.cshtml +++ b/CatherineLynwood/Views/Discovery/Epilogue.cshtml @@ -9,7 +9,7 @@ - + diff --git a/CatherineLynwood/Views/Discovery/Extras.cshtml b/CatherineLynwood/Views/Discovery/Extras.cshtml index 5deb070..bc32a66 100644 --- a/CatherineLynwood/Views/Discovery/Extras.cshtml +++ b/CatherineLynwood/Views/Discovery/Extras.cshtml @@ -1,8 +1,8 @@ @{ - ViewData["Title"] = "Extras"; - + ViewData["Title"] = "The Alpha Flame: Discovery Extras"; int? accessLevel = Context.Session.GetInt32("BookAccessLevel"); int? accessBook = Context.Session.GetInt32("BookAccessMax"); + }
@@ -19,100 +19,43 @@
-

Your Exclusive Extras

- - @if (accessBook == 1) - { -
- @if (accessLevel >= 1) - { -
-
-
Epilogue
-

Immerse yourself in the Eplilogue to The Alpha Flame: Discovery. Join the team as they relax for a quite drink at the Barnt Green Inn

- Read or Listen -
-
- } - @if (accessLevel >= 2) - { -
-
-
Discovery Scrap Book
-

Take a look at my image scrapbook for The Alpha Flame: Discovery. View the images I used for inspiration when writing the various scenes within the book.

- View Scrapbook -
-
- -
-
-
Discovery Soundtrack
-

Have a listen to The Alpha Flame soundtrack. A selection of original songs written by me and put to music.

- Soundtrack -
-
- } - @if (accessLevel >= 3) - { -
-
-
Listen to The Alpha Flame: Discovery
-

Because you've purchased a premium physical copy of The Alpha Flame: Discovery, for a limited time this entitles you to listen to the audio version with no extra charge.

- Listen to the Book -
-
- -
-
-
Scrapbook: Maggie’s Designs
-

Flip through Maggie’s sketches, fashion notes, and photos from her original designs – including the infamous red skirt.

- View Scrapbook -
-
- } -
- } - else if (accessBook == 2) - { - -
- @if (accessLevel >= 1) - { - - } - else if (accessLevel >= 2) - { - - } - else if (accessLevel >= 3) - { - - } - else if(accessLevel >= 4) - { - - } +

The Alpha Flame Discovery Exclusive Extras

+
+ @if (accessLevel >= 1) + {
Epilogue

Immerse yourself in the Eplilogue to The Alpha Flame: Discovery. Join the team as they relax for a quite drink at the Barnt Green Inn

- Read or Listen + Read or Listen
- + } + @if (accessLevel >= 2) + {
Discovery Scrap Book

Take a look at my image scrapbook for The Alpha Flame: Discovery. View the images I used for inspiration when writing the various scenes within the book.

- View Scrapbook + View Scrapbook
-
Rubery Hill Photo Archive
-

Explore historical photos and floor plans of the real Rubery Hill Hospital, the eerie inspiration behind key scenes.

- Explore +
Discovery Soundtrack
+

Have a listen to The Alpha Flame soundtrack. A selection of original songs written by me and put to music.

+ Soundtrack +
+
+ } + @if (accessLevel >= 3) + { +
+
+
Listen to The Alpha Flame: Discovery
+

Because you've purchased a premium physical copy of The Alpha Flame: Discovery, for a limited time this entitles you to listen to the audio version with no extra charge.

+ Listen to the Book
@@ -120,53 +63,11 @@
Scrapbook: Maggie’s Designs

Flip through Maggie’s sketches, fashion notes, and photos from her original designs – including the infamous red skirt.

- View Scrapbook + View Scrapbook
- -
- } - else if (accessBook == 3) - { -
-
-
-
Epilogue
-

Immerse yourself in the Eplilogue to The Alpha Flame: Discovery. Join the team as they relax for a quite drink at the Barnt Green Inn

- Read or Listen -
-
- -
-
-
Discovery Scrap Book
-

Take a look at my image scrapbook for The Alpha Flame: Discovery. View the images I used for inspiration when writing the various scenes within the book.

- View Scrapbook -
-
- -
-
-
Rubery Hill Photo Archive
-

Explore historical photos and floor plans of the real Rubery Hill Hospital, the eerie inspiration behind key scenes.

- Explore -
-
- -
-
-
Scrapbook: Maggie’s Designs
-

Flip through Maggie’s sketches, fashion notes, and photos from her original designs – including the infamous red skirt.

- View Scrapbook -
-
- -
- } - - - - + } +
@section Meta{ diff --git a/CatherineLynwood/Views/Discovery/Listen.cshtml b/CatherineLynwood/Views/Discovery/Listen.cshtml index 0037dae..4c7a6b3 100644 --- a/CatherineLynwood/Views/Discovery/Listen.cshtml +++ b/CatherineLynwood/Views/Discovery/Listen.cshtml @@ -9,7 +9,7 @@ - + diff --git a/CatherineLynwood/Views/Discovery/MaggiesDesigns.cshtml b/CatherineLynwood/Views/Discovery/MaggiesDesigns.cshtml index b382be4..822b144 100644 --- a/CatherineLynwood/Views/Discovery/MaggiesDesigns.cshtml +++ b/CatherineLynwood/Views/Discovery/MaggiesDesigns.cshtml @@ -8,7 +8,7 @@ - + diff --git a/CatherineLynwood/Views/Discovery/ScrapBook.cshtml b/CatherineLynwood/Views/Discovery/ScrapBook.cshtml index 4adbd7a..99a439a 100644 --- a/CatherineLynwood/Views/Discovery/ScrapBook.cshtml +++ b/CatherineLynwood/Views/Discovery/ScrapBook.cshtml @@ -8,7 +8,7 @@ - + diff --git a/CatherineLynwood/Views/Discovery/_Layout.cshtml b/CatherineLynwood/Views/Discovery/_Layout.cshtml index 4dc0194..2ae504c 100644 --- a/CatherineLynwood/Views/Discovery/_Layout.cshtml +++ b/CatherineLynwood/Views/Discovery/_Layout.cshtml @@ -2,7 +2,7 @@ Layout = "/Views/Shared/_Layout.cshtml"; } -@section CSS{ +@section CSS { + +} + +@section Meta { + @RenderSection("Meta", required: false) +} + + +@section BackgroundVideo { +
+
+ +
+
+
+} + +@RenderBody() + +@section Scripts { + @RenderSection("Scripts", required: false) +} diff --git a/CatherineLynwood/Views/Shared/_LayoutReckoning.cshtml b/CatherineLynwood/Views/Shared/_LayoutReckoning.cshtml new file mode 100644 index 0000000..a319657 --- /dev/null +++ b/CatherineLynwood/Views/Shared/_LayoutReckoning.cshtml @@ -0,0 +1,29 @@ +@{ + Layout = "/Views/Shared/_Layout.cshtml"; +} + +@section Meta { + @RenderSection("Meta", required: false) +} + +@section BackgroundVideo { +
+
+ +
+
+
+} + +@RenderBody() + +@section Scripts { + @RenderSection("Scripts", required: false) +} diff --git a/CatherineLynwood/appsettings.Development.json b/CatherineLynwood/appsettings.Development.json index 0c208ae..5892a3a 100644 --- a/CatherineLynwood/appsettings.Development.json +++ b/CatherineLynwood/appsettings.Development.json @@ -1,8 +1,32 @@ { + "ConnectionStrings": { + "DefaultConnection": "Server=localhost;Database=CatherineLynwood;Trusted_Connection=True;MultipleActiveResultSets=true;Encrypt=false;" + }, + "Smtp": { + "Host": "smtpout.secureserver.net", + "Port": "587", + "Sender": "your-email@catherinelynwood.com", + "Username": "catherine@catherinelynwood.com", + "Password": "ryaN9982?" + }, + "AudioSecurity": { + "HmacSecretKey": "SG.7xaVKHzRQsS5os1IJUJZ2Q.2osFDJIRkjlDl3eM05uZ9R1IUA6Wv", + "TokenExpirySeconds": 86400 + }, + "ApiKeys": { + "BlogPost": "d73dbc3429dh3ycn79f3dfc0nfhyu98q" + }, + "IndexNow": { + "ApiKey": "cc6ff72c3d1a48d0b0b7c2c2b543f15f" + }, + "AbTest": { + "DiscoveryBPercent": 50 + }, "Logging": { "LogLevel": { "Default": "Information", "Microsoft.AspNetCore": "Warning" } - } + }, + "AllowedHosts": "*" } diff --git a/CatherineLynwood/appsettings.json b/CatherineLynwood/appsettings.json index 5892a3a..124552b 100644 --- a/CatherineLynwood/appsettings.json +++ b/CatherineLynwood/appsettings.json @@ -1,6 +1,6 @@ { "ConnectionStrings": { - "DefaultConnection": "Server=localhost;Database=CatherineLynwood;Trusted_Connection=True;MultipleActiveResultSets=true;Encrypt=false;" + "DefaultConnection": "Server=localhost;Database=CatherineLynwood;User Id=web;Password=ryaN9982?;MultipleActiveResultSets=true;Encrypt=false;TrustServerCertificate=true;" }, "Smtp": { "Host": "smtpout.secureserver.net", diff --git a/CatherineLynwood/dotnet-tools.json b/CatherineLynwood/dotnet-tools.json new file mode 100644 index 0000000..bffb60c --- /dev/null +++ b/CatherineLynwood/dotnet-tools.json @@ -0,0 +1,13 @@ +{ + "version": 1, + "isRoot": true, + "tools": { + "dotnet-ef": { + "version": "10.0.3", + "commands": [ + "dotnet-ef" + ], + "rollForward": false + } + } +} \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/audio/cassette-tape.mp3 b/CatherineLynwood/wwwroot/audio/cassette-tape.mp3 new file mode 100644 index 0000000..85d95be Binary files /dev/null and b/CatherineLynwood/wwwroot/audio/cassette-tape.mp3 differ diff --git a/CatherineLynwood/wwwroot/audio/editing-and-proof-reading.mp3 b/CatherineLynwood/wwwroot/audio/editing-and-proof-reading.mp3 new file mode 100644 index 0000000..215dee4 Binary files /dev/null and b/CatherineLynwood/wwwroot/audio/editing-and-proof-reading.mp3 differ diff --git a/CatherineLynwood/wwwroot/css/reckoning-mobile.css b/CatherineLynwood/wwwroot/css/reckoning-mobile.css new file mode 100644 index 0000000..d80adf9 --- /dev/null +++ b/CatherineLynwood/wwwroot/css/reckoning-mobile.css @@ -0,0 +1,408 @@ +.reckoning-mobile-page { + background: radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 30%), linear-gradient(180deg, #5e4632 0%, #6b5139 40%, #4b3728 100%); + min-height: 100vh; + padding: 16px 12px 40px; + color: #2f2419; +} + +.reckoning-mobile-hero { + margin-bottom: 18px; +} + +.reckoning-mobile-hero-inner { + position: relative; + background: linear-gradient(180deg, #cbb189 0%, #b9986d 100%); + border: 1px solid rgba(70, 45, 20, 0.28); + border-radius: 10px; + box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28); + padding: 22px 18px 18px; + overflow: hidden; +} + + .reckoning-mobile-hero-inner::before { + content: ""; + position: absolute; + inset: 0; + background: linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0)), repeating-linear-gradient( 0deg, rgba(90, 60, 25, 0.02) 0, rgba(90, 60, 25, 0.02) 2px, transparent 2px, transparent 6px ); + pointer-events: none; + } + +.reckoning-mobile-stamp { + display: inline-block; + margin-bottom: 14px; + padding: 6px 12px; + border: 3px solid #9c2b24; + color: #9c2b24; + font-weight: 800; + font-size: 0.95rem; + letter-spacing: 0.08em; + transform: rotate(-7deg); + opacity: 0.9; +} + +.reckoning-mobile-kicker { + font-size: 0.8rem; + font-weight: 700; + letter-spacing: 0.12em; + text-transform: uppercase; + color: #5b4330; + margin-bottom: 10px; +} + +.reckoning-mobile-hero h1 { + margin: 0 0 10px; + font-size: 1.8rem; + line-height: 1.05; + text-transform: uppercase; + letter-spacing: 0.04em; +} + +.reckoning-mobile-ref, +.reckoning-mobile-status { + margin: 0; + font-size: 0.95rem; + color: #4c3828; +} + +.reckoning-mobile-status { + margin-top: 4px; +} + +.reckoning-mobile-props { + margin-bottom: 18px; +} + +.reckoning-mobile-props-scroll { + display: flex; + gap: 14px; + overflow-x: auto; + padding: 4px 2px 10px; + scroll-snap-type: x proximity; +} + +.reckoning-mobile-polaroid, +.reckoning-mobile-postit { + flex: 0 0 150px; + scroll-snap-align: start; +} + +.reckoning-mobile-polaroid { + background: #fff; + padding: 10px 10px 22px; + border-radius: 2px; + box-shadow: 0 10px 20px rgba(0,0,0,0.24); + transform: rotate(-2deg); +} + +.polaroid-tilt-left { + transform: rotate(-4deg); +} + +.polaroid-tilt-right { + transform: rotate(3deg); +} + +.polaroid-tilt-slight { + transform: rotate(1.5deg); +} + +.reckoning-mobile-postit { + background: #f3df77; + color: #403518; + padding: 18px 14px; + min-height: 150px; + box-shadow: 0 10px 18px rgba(0,0,0,0.22); + transform: rotate(-3deg); + border: 1px solid rgba(80, 65, 20, 0.12); + display: flex; + align-items: center; + justify-content: center; + text-align: center; +} + + .reckoning-mobile-postit span { + display: block; + font-family: "Shadows Into Light", cursive; + font-size: 1.35rem; + line-height: 1.1; + font-weight: 700; + } + +.reckoning-mobile-nav { + position: sticky; + top: 0; + z-index: 20; + display: flex; + gap: 8px; + overflow-x: auto; + padding: 10px 0 12px; + margin-bottom: 14px; + background: linear-gradient(180deg, rgba(79, 58, 40, 0.96), rgba(79, 58, 40, 0.82)); + backdrop-filter: blur(4px); + border-radius: 10px; +} + + .reckoning-mobile-nav a { + flex: 0 0 auto; + display: inline-block; + padding: 9px 14px; + border-radius: 999px; + background: rgba(255,255,255,0.14); + color: #fff6e9; + text-decoration: none; + font-size: 0.9rem; + font-weight: 700; + white-space: nowrap; + } + +.reckoning-mobile-file { + display: flex; + flex-direction: column; + gap: 22px; +} + +.reckoning-mobile-section { + position: relative; + padding-top: 18px; +} + +.reckoning-mobile-tab { + position: absolute; + top: 0; + right: 12px; + z-index: 2; + padding: 7px 14px 8px; + border-radius: 8px 8px 0 0; + font-size: 0.85rem; + font-weight: 800; + text-transform: uppercase; + letter-spacing: 0.04em; + box-shadow: 0 -1px 0 rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.14); +} + +.reckoning-tab-summary { + background: #d9d1a7; +} + +.reckoning-tab-subjects { + background: #b8d1ea; +} + +.reckoning-tab-evidence { + background: #d8b2a7; +} + +.reckoning-tab-review { + background: #cbb8dd; +} + +.reckoning-tab-purchase { + background: #b7d6b6; +} + +.reckoning-tab-restricted { + background: #e0b0b0; +} + +.reckoning-mobile-paper { + background: #f7f1e4; + border: 1px solid rgba(90, 66, 42, 0.16); + border-radius: 10px; + box-shadow: 0 10px 24px rgba(0,0,0,0.22); + padding: 22px 16px 18px; + position: relative; + overflow: hidden; +} + + .reckoning-mobile-paper::before { + content: ""; + position: absolute; + inset: 0; + pointer-events: none; + background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent 40%), repeating-linear-gradient( 0deg, rgba(110, 85, 55, 0.018) 0, rgba(110, 85, 55, 0.018) 2px, transparent 2px, transparent 8px ); + } + + .reckoning-mobile-paper > * { + position: relative; + z-index: 1; + } + + .reckoning-mobile-paper h2 { + margin-top: 0; + margin-bottom: 14px; + font-size: 1.4rem; + line-height: 1.15; + text-transform: uppercase; + } + + .reckoning-mobile-paper h3 { + font-size: 1rem; + line-height: 1.2; + margin-top: 0; + } + + .reckoning-mobile-paper p, + .reckoning-mobile-paper li, + .reckoning-mobile-paper blockquote { + font-size: 0.98rem; + line-height: 1.55; + } + + .reckoning-mobile-paper .row { + --bs-gutter-x: 12px; + } + + .reckoning-mobile-paper .col-4, + .reckoning-mobile-paper .col-8 { + width: 100%; + } + + .reckoning-mobile-paper .col-4 { + margin-bottom: 12px; + } + + .reckoning-mobile-paper .img-polaroid, + .reckoning-mobile-paper .casefile-evidence-image { + width: 100%; + height: auto; + } + + .reckoning-mobile-paper .reckoning-subject-entry, + .reckoning-mobile-paper .casefile-evidence-item, + .reckoning-mobile-paper .casefile-review-entry { + margin-bottom: 18px; + padding-bottom: 18px; + border-bottom: 1px dashed rgba(90, 66, 42, 0.2); + } + + .reckoning-mobile-paper .reckoning-subject-entry:last-child, + .reckoning-mobile-paper .casefile-evidence-item:last-child, + .reckoning-mobile-paper .casefile-review-entry:last-child { + border-bottom: 0; + margin-bottom: 0; + padding-bottom: 0; + } + +html { + scroll-behavior: smooth; +} + +@media (min-width: 576px) { + .reckoning-mobile-page { + padding-left: 16px; + padding-right: 16px; + } + + .reckoning-mobile-paper { + padding: 26px 20px 20px; + } + + .reckoning-mobile-hero h1 { + font-size: 2.2rem; + } + + .reckoning-mobile-paper .col-4 { + width: 33.333333%; + margin-bottom: 0; + } + + .reckoning-mobile-paper .col-8 { + width: 66.666667%; + } +} + +.casefile-audio-trigger { + display: inline-block; + padding: 0; + border: none; + background: none; + cursor: pointer; + position: relative; + line-height: 0; +} + +.casefile-audio-image-wrapper { + position: relative; + display: inline-block; + overflow: hidden; + border-radius: 2px; +} + + .casefile-audio-image-wrapper::after { + content: ""; + position: absolute; + inset: 0; + background: rgba(0, 0, 0, 0); + transition: background 0.2s ease; + z-index: 2; + pointer-events: none; + } + +.casefile-audio-trigger:hover .casefile-audio-image-wrapper::after, +.casefile-audio-trigger:focus-visible .casefile-audio-image-wrapper::after { + background: rgba(0, 0, 0, 0.14); +} + +.casefile-audio-trigger .casefile-evidence-image { + display: block; + position: relative; + z-index: 1; +} + +.casefile-audio-overlay { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + width: 58px; + height: 58px; + border-radius: 50%; + background: rgba(0, 0, 0, 0.68); + display: flex; + align-items: center; + justify-content: center; + pointer-events: none; + z-index: 3; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35); +} + + .casefile-audio-overlay::before, + .casefile-audio-overlay::after { + content: ""; + position: absolute; + } + + /* Play icon */ + .casefile-audio-overlay::before { + width: 0; + height: 0; + margin-left: 4px; + border-left: 15px solid #fff; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + } + + .casefile-audio-overlay::after { + display: none; + } + +/* Pause icon when playing */ +.casefile-audio-trigger.is-playing .casefile-audio-overlay::before, +.casefile-audio-trigger.is-playing .casefile-audio-overlay::after { + width: 5px; + height: 20px; + background: #fff; + border: none; + margin-left: 0; + top: 50%; + transform: translateY(-50%); +} + +.casefile-audio-trigger.is-playing .casefile-audio-overlay::before { + left: calc(50% - 7px); +} + +.casefile-audio-trigger.is-playing .casefile-audio-overlay::after { + display: block; + left: calc(50% + 2px); +} \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/css/reckoning.css b/CatherineLynwood/wwwroot/css/reckoning.css new file mode 100644 index 0000000..9722e35 --- /dev/null +++ b/CatherineLynwood/wwwroot/css/reckoning.css @@ -0,0 +1,982 @@ +.reckoning-page-shell { + position: relative; + width: 100vw; + max-width: 100vw; + margin-left: calc(50% - 50vw); + margin-right: calc(50% - 50vw); + overflow-x: clip; +} + +.reckoning-desk-section { + position: relative; + width: 100%; + padding: 50px 0 120px 0; + background-image: url('/images/webp/walnut-desktop.webp'); + background-size: cover; + background-position: center; + background-repeat: no-repeat; + overflow: visible; +} + + .reckoning-desk-section::before { + content: ""; + position: absolute; + top: -80px; + left: 0; + right: 0; + height: 120px; + background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(20,12,8,0.45), rgba(20,12,8,0.0)); + pointer-events: none; + } + +.reckoning-casefile-page { + width: 100%; + min-height: auto; + padding: 0; + display: flex; + justify-content: center; + align-items: flex-start; + box-sizing: border-box; + overflow: visible; +} + +.casefile-stage { + width: 100%; + display: flex; + justify-content: flex-start; + perspective: 2200px; + overflow: visible; +} + +.casefile { + position: relative; + display: inline-block; + width: min(560px, 100%); + max-width: 100%; + overflow: visible; + opacity: 0; + transition: opacity 0.2s ease; + z-index: 10; + margin-left: 50%; +} + + .casefile.assets-ready { + opacity: 1; + } + +.casefile-rear { + position: relative; + display: inline-block; + width: 100%; +} + +.casefile-rear-img { + display: block; + width: 100%; + height: auto; + max-width: 100%; + user-select: none; + pointer-events: none; +} + +.casefile-flap-shadow { + position: absolute; + inset: 0; + pointer-events: none; + z-index: 1; + background: linear-gradient( to right, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.10) 10%, rgba(0, 0, 0, 0.04) 22%, rgba(0, 0, 0, 0.00) 38% ); + opacity: 0.85; + transition: opacity 1.4s cubic-bezier(.22,1,.36,1); +} + +.casefile.open .casefile-flap-shadow { + opacity: 0.08; +} + +.casefile-front { + position: absolute; + inset: 0; + transform-origin: left center; + transform-style: preserve-3d; + z-index: 30; + will-change: transform; + transform: translateY(0); + transition: transform 0.4s ease; + cursor: pointer; +} + +.casefile.ready .casefile-front { + transform: translateY(2px); +} + +.casefile.open .casefile-front { + animation: folderOpenRealistic 1.65s cubic-bezier(.22,1,.36,1) forwards; +} + +.casefile-front-face { + position: absolute; + inset: 0; + backface-visibility: hidden; + transform-style: preserve-3d; +} + +.casefile-front-face-front { + z-index: 2; +} + +.casefile-front-face-back { + transform: rotateY(180deg); + z-index: 1; +} + +.casefile-front-img { + display: block; + width: 100%; + height: auto; + user-select: none; + pointer-events: none; + filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.25)); +} + +.casefile-front-img-back { + filter: brightness(0.96) saturate(0.9); +} + +@keyframes folderOpenRealistic { + 0% { + transform: perspective(2200px) rotateY(0deg); + } + + 16% { + transform: perspective(2200px) rotateY(-14deg); + } + + 45% { + transform: perspective(2200px) rotateY(-72deg); + } + + 72% { + transform: perspective(2200px) rotateY(-138deg); + } + + 100% { + transform: perspective(2200px) rotateY(-180deg); + } +} + +.casefile-front-overlay { + position: absolute; + inset: 0; + pointer-events: none; + box-sizing: border-box; + z-index: 2; +} + +.casefile-stamp { + position: absolute; + top: 8%; + right: 10%; + color: rgba(135, 22, 22, 0.78); + border: 3px solid rgba(135, 22, 22, 0.78); + padding: 0.35rem 0.8rem; + font-size: 1rem; + font-weight: 700; + letter-spacing: 0.08em; + transform: translateX(-30px) rotate(-8deg) scale(2); + transform-origin: top right; +} + +.casefile-cover-text { + position: absolute; + top: 18%; + left: 10%; + width: 52%; + color: #2e2518; + z-index: 3; +} + +.casefile-cover-kicker { + font-size: 0.85rem; + font-weight: 700; + letter-spacing: 0.14em; + margin-bottom: 1rem; +} + +.casefile-cover-text h1 { + margin: 0 0 1rem 0; + font-size: clamp(2rem, 3.8vw, 3.2rem); + line-height: 1; + color: inherit; +} + +.casefile-cover-text p { + margin: 0.35rem 0; + font-size: 1rem; + line-height: 1.4; + color: inherit; +} + +.casefile-open-hint { + position: absolute; + bottom: 8%; + right: 10%; + font-size: 0.95rem; + font-weight: 600; + color: rgba(47, 38, 25, 0.8); + letter-spacing: 0.04em; + transition: opacity 0.2s ease; +} + +.casefile.open .casefile-open-hint { + opacity: 0; +} + +.casefile-inner { + position: absolute; + inset: 4% 6% 5% 2%; + display: flex; + gap: 0; + box-sizing: border-box; + z-index: 2; + visibility: hidden; + opacity: 0; + align-items: stretch; +} + +.casefile.revealed .casefile-inner { + visibility: visible; + opacity: 1; +} + +.casefile-paper-stack { + position: relative; + flex: 1 1 auto; + min-width: 0; + min-height: 100%; + height: calc(100% + 24px); + width: calc(100% + 10px); + z-index: 1; + margin-left: -10px; + margin-top: -10px; + margin-bottom: -10px; +} + +.casefile-paper-stack-layer { + position: absolute; + inset: 0; + border-radius: 2px; + background: #f6f1e5; + pointer-events: none; +} + +.casefile-paper-stack-layer-1 { + transform: translate(10px, 8px); + opacity: 0.85; + z-index: 0; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06); +} + +.casefile-paper-stack-layer-2 { + transform: translate(5px, 4px); + opacity: 0.92; + z-index: 1; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.casefile-content { + position: relative; + z-index: 6; + min-width: 0; + min-height: 100%; + height: 100%; + padding: 1.6rem 2rem 1.5rem 1.8rem; + overflow: hidden; + border-radius: 2px; + background-color: #fbf8ef; + background-image: repeating-linear-gradient( to bottom, rgba(120, 140, 170, 0.14) 0px, rgba(120, 140, 170, 0.14) 1px, transparent 1px, transparent 34px ); + box-shadow: inset 0 0 0 1px rgba(80, 60, 35, 0.08); + display: flex; + flex-direction: column; +} + +.casefile-panel { + display: none; + max-width: 100%; + flex: 1 1 auto; + position: relative; + height: 100%; + box-sizing: border-box; + padding: 1.75rem 1.5rem 1.5rem; + overflow: hidden; + font-family: "Courier New", Courier, monospace; + color: #2e241c; + line-height: 1.55; +} + + .casefile-panel.active { + display: block; + } + + .casefile-panel h2 { + margin: 0 0 1rem; + font-size: 1.4rem; + text-transform: uppercase; + letter-spacing: 0.08em; + color: #1f1813; + } + + .casefile-panel h2::after { + content: ""; + display: block; + margin-top: 0.5rem; + height: 1px; + background: rgba(60, 45, 30, 0.35); + } + + .casefile-panel p, + .casefile-panel li { + font-size: clamp(0.95rem, 1.2vw, 1rem); + line-height: 1.7; + margin: 0 0 0.45rem; + font-size: 0.95rem; + color: #332a1d; + } + + .casefile-panel p:last-child { + margin-bottom: 0; + } + + .casefile-panel strong { + font-weight: bold; + color: #201914; + } + + .casefile-panel ul { + margin: 1rem 0 0 1.25rem; + padding: 0; + } + + .casefile-panel::after { + content: ""; + position: absolute; + inset: 0; + pointer-events: none; + /*background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.06));*/ + mix-blend-mode: multiply; + opacity: 0.45; + } + + .casefile-panel[data-tab="summary"] p:nth-last-child(2), + .casefile-panel[data-tab="summary"] p:last-child { + font-weight: bold; + letter-spacing: 0.02em; + } + + .casefile-panel[data-tab="summary"] p:last-child { + margin-top: 1.25rem; + font-size: 1.05rem; + letter-spacing: 0.06em; + } + +.casefile-inner .casefile-content { + height: 100%; + overflow: hidden; +} + +.casefile-inner .casefile-panel { + display: none; + height: 100%; + box-sizing: border-box; + overflow-y: auto; + overflow-x: hidden; + padding: 1.5rem; + -webkit-overflow-scrolling: touch; + scrollbar-width: thin; + scrollbar-color: rgba(80, 60, 40, 0.45) transparent; +} + + .casefile-inner .casefile-panel.active { + display: block; + } + + .casefile-inner .casefile-panel::-webkit-scrollbar { + width: 8px; + } + + .casefile-inner .casefile-panel::-webkit-scrollbar-track { + background: transparent; + } + + .casefile-inner .casefile-panel::-webkit-scrollbar-thumb { + background: rgba(80, 60, 40, 0.45); + border-radius: 4px; + } + +.casefile-tabs { + width: 100px; + flex: 0 0 100px; + display: flex; + flex-direction: column; + gap: 0; + padding-top: 1.1rem; + position: relative; + z-index: 7; + margin-left: 0; +} + +.casefile-tab { + appearance: none; + border: 1px solid rgba(70, 55, 35, 0.18); + color: #2f2619; + padding: 0.65rem 0.6rem 0.65rem 1rem; + text-align: right; + font-size: 0.9rem; + font-weight: 700; + border-radius: 0 10px 10px 0; + cursor: pointer; + position: relative; + box-shadow: none; + transition: none; + margin-bottom: -1px; + left: 0; + background-clip: padding-box; + overflow: visible; +} + + .casefile-tab::before { + content: ""; + position: absolute; + top: -1px; + bottom: -1px; + left: -20px; + width: 30px; + background: inherit; + border-top: 1px solid rgba(70, 55, 35, 0.18); + border-bottom: 1px solid rgba(70, 55, 35, 0.04); + border-left: 1px solid rgba(70, 55, 35, 0.18); + opacity: 0; + pointer-events: none; + z-index: 2; + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; + } + + .casefile-tab:nth-child(1) { + background: #f6d96b; + z-index: 6; + } + + .casefile-tab:nth-child(2) { + background: #f4a6c1; + z-index: 5; + } + + .casefile-tab:nth-child(3) { + background: #9ed8f5; + z-index: 4; + } + + .casefile-tab:nth-child(4) { + background: #b9e3a1; + z-index: 3; + } + + .casefile-tab:nth-child(5) { + background: #f7b26a; + z-index: 2; + } + + .casefile-tab:nth-child(6) { + background: #c7b5f0; + z-index: 1; + } + + .casefile-tab:hover { + filter: brightness(0.98); + } + + .casefile-tab.active { + z-index: 20; + filter: none; + } + + .casefile-tab.active::before { + opacity: 1; + } + + .casefile-tab.restricted { + background: #c7b5f0; + color: #5c4631; + } + + .casefile-tab.restricted.active { + background: #c7b5f0; + color: #5c4631; + } + +.restricted-panel .restricted-label { + display: inline-block; + padding: 0.35rem 0.7rem; + border: 2px solid #8d1b1b; + color: #8d1b1b; + font-weight: 700; + letter-spacing: 0.08em; + margin-bottom: 1rem; +} + +.restricted-button { + display: inline-block; + margin-top: 1rem; + background: #2f2619; + color: #fff8eb; + text-decoration: none; + padding: 0.8rem 1.2rem; + border-radius: 6px; +} + +.reckoning-desk-props { + position: absolute; + inset: 0; + pointer-events: none; + z-index: 0; +} + +.reckoning-desk-photos { + position: absolute; + top: 110px; + left: 7%; + width: 320px; + height: 420px; +} + +.reckoning-desk-photo { + position: absolute; + width: 240px; + background: #f7f3ea; + padding: 10px 10px 28px 10px; + box-shadow: 0 14px 24px rgba(0, 0, 0, 0.28); + border: 1px solid rgba(60, 45, 30, 0.14); +} + + .reckoning-desk-photo img { + display: block; + width: 100%; + height: auto; + aspect-ratio: 2 / 3; + object-fit: cover; + } + +.reckoning-desk-photo-1 { + top: 100px; + left: 152px; + transform: rotate(-11deg); + z-index: 1; +} + +.reckoning-desk-photo-2 { + top: 20; + left: 174px; + transform: rotate(23deg); + z-index: 2; +} + +.reckoning-desk-photo-3 { + top: 36px; + left: 56px; + transform: rotate(-7deg); + z-index: 3; +} + +.reckoning-desk-postit { + position: absolute; + top: 620px; + left: 250px; + width: 150px; + min-height: 150px; + background: #f6e27a; + color: #3f341c; + padding: 18px 16px; + box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22); + transform: rotate(-4deg); + border: 1px solid rgba(80, 65, 20, 0.12); + display: flex; + align-items: center; + justify-content: center; + text-align: center; +} + + .reckoning-desk-postit span { + display: block; + font-family: 'Permanent Marker', cursive; + /* swap to 'Shadows Into Light' if you want softer */ + + font-size: 1.25rem; + line-height: 1.3; + font-weight: normal; /* handwritten fonts don't need bold */ + + letter-spacing: 0.5px; + word-spacing: 2px; + color: #2e2614; + transform: rotate(-1deg); /* slight imperfection */ + + text-shadow: 0.5px 0.5px 0 rgba(0,0,0,0.15); /* subtle ink bleed */ + } + +.casefile-evidence-image { + display: block; + max-width: 100%; + height: auto; + width: 100%; + object-fit: contain; + border-radius: 2px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 8px 14px rgba(0, 0, 0, 0.18); + vertical-align: middle; +} + +.casefile-audio-trigger { + display: inline-block; + padding: 0; + border: none; + background: none; + cursor: pointer; + position: relative; +} + +.casefile-audio-image-wrapper { + position: relative; + display: inline-block; +} + + .casefile-audio-image-wrapper::after { + content: ""; + position: absolute; + inset: 0; + background: rgba(0,0,0,0.0); + transition: background 0.2s ease; + } + +.casefile-audio-trigger:hover .casefile-audio-image-wrapper::after { + background: rgba(0,0,0,0.15); +} + +.casefile-audio-overlay { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + width: 56px; + height: 56px; + border-radius: 50%; + background: rgba(0, 0, 0, 0.65); + display: flex; + align-items: center; + justify-content: center; + pointer-events: none; + box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35); +} + + .casefile-audio-overlay::before, + .casefile-audio-overlay::after { + content: ""; + position: absolute; + } + + .casefile-audio-overlay::before { + width: 0; + height: 0; + margin-left: 3px; + border-left: 14px solid white; + border-top: 9px solid transparent; + border-bottom: 9px solid transparent; + } + + .casefile-audio-overlay::after { + display: none; + } + +.casefile-audio-trigger.is-playing .casefile-audio-overlay::before, +.casefile-audio-trigger.is-playing .casefile-audio-overlay::after { + width: 4px; + height: 18px; + background: white; + border: none; + margin-left: 0; + top: 50%; + transform: translateY(-50%); +} + +.casefile-audio-trigger.is-playing .casefile-audio-overlay::before { + left: calc(50% - 6px); +} + +.casefile-audio-trigger.is-playing .casefile-audio-overlay::after { + display: block; + left: calc(50% + 2px); +} + +@media (max-width: 900px) { + .reckoning-desk-section { + padding: 70px 0 80px 0; + } + + .casefile-inner { + inset: 9% 8% 10% 8%; + flex-direction: column; + gap: 16px; + } + + .casefile-paper-stack { + min-height: 0; + height: auto; + width: auto; + margin-left: 0; + margin-top: 0; + margin-bottom: 0; + } + + .casefile-paper-stack-layer-1 { + transform: translate(6px, 5px); + } + + .casefile-paper-stack-layer-2 { + transform: translate(3px, 2px); + } + + .casefile-content { + padding: 1rem; + min-height: auto; + height: auto; + } + + .casefile-tabs { + width: 100%; + flex: 0 0 auto; + flex-direction: row; + flex-wrap: wrap; + gap: 8px; + padding-top: 0.5rem; + margin-left: 0; + } + + .casefile-tab { + flex: 1 1 calc(50% - 8px); + border-radius: 8px; + text-align: center; + margin-bottom: 0; + left: 0 !important; + } + + .casefile-tab.active { + left: 0 !important; + } + + .casefile-tab::before { + display: none; + } + + .casefile-cover-text { + width: 75%; + } + + .casefile-cover-text h1 { + font-size: clamp(1.6rem, 5vw, 2.3rem); + } + + .casefile-open-hint { + right: 8%; + bottom: 6%; + font-size: 0.88rem; + } +} + +@media (max-width: 768px) { + .casefile-panel { + padding: 1.25rem 1rem 1rem; + } + + .casefile-panel h2 { + font-size: 1.15rem; + } + + .casefile-panel p { + font-size: 0.92rem; + } +} + +.buybox-casefile-page { + font-family: "Courier New", Courier, monospace; + color: #2e241c; + line-height: 1.55; +} + +.buybox-casefile-page-header { + margin-bottom: 1.5rem; +} + + .buybox-casefile-page-header h2 { + margin: 0 0 0.75rem; + font-size: 1.4rem; + text-transform: uppercase; + letter-spacing: 0.08em; + color: #1f1813; + } + + .buybox-casefile-page-header h2::after { + content: ""; + display: block; + margin-top: 0.5rem; + height: 1px; + background: rgba(60, 45, 30, 0.35); + } + +.buybox-casefile-country { + display: flex; + align-items: center; + gap: 0.5rem; + margin: 0; + font-size: 0.95rem; + color: #5a4a3d; +} + +.buybox-casefile-flag { + display: block; + flex: 0 0 auto; + width: 20px; + height: 14px; +} + +.buybox-casefile-groups { + display: block; +} + +.buybox-casefile-group { + margin-bottom: 1.5rem; +} + + .buybox-casefile-group:last-child { + margin-bottom: 0; + } + +.buybox-casefile-group-title { + margin: 0 0 0.5rem; + font-size: 1rem; + text-transform: none; + letter-spacing: 0.04em; + color: #1f1813; +} + +.buybox-casefile-group-message { + margin: 0 0 0.85rem; + font-size: 0.95rem; + color: #5a4a3d; +} + +.buybox-casefile-links { + border-top: 1px solid rgba(70, 50, 35, 0.2); +} + +.buybox-casefile-link { + display: flex; + align-items: center; + justify-content: space-between; + gap: 1rem; + padding: 0.7rem 0; + text-decoration: none; + color: #2e241c; + border-bottom: 1px dashed rgba(70, 50, 35, 0.28); + transition: background-color 0.15s ease, padding-left 0.15s ease; +} + + .buybox-casefile-link:hover { + background-color: rgba(90, 74, 61, 0.06); + padding-left: 0.35rem; + color: #1f1813; + text-decoration: none; + } + + .buybox-casefile-link:last-child { + border-bottom: 1px dashed rgba(70, 50, 35, 0.28); + } + +.buybox-casefile-link-main { + min-width: 0; + flex: 1 1 auto; +} + +.buybox-casefile-link-text { + display: inline-flex; + align-items: center; + gap: 0.45rem; + line-height: 1.35; +} + +.buybox-casefile-price { + flex: 0 0 auto; + white-space: nowrap; + font-weight: bold; + color: #1f1813; +} + +@media (max-width: 575.98px) { + .buybox-casefile-page-header h2 { + font-size: 1.15rem; + } + + .buybox-casefile-country, + .buybox-casefile-group-message, + .buybox-casefile-link, + .buybox-casefile-price { + font-size: 0.92rem; + } + + .buybox-casefile-link { + gap: 0.75rem; + } +} + +.reckoning-subject-entry { + margin-bottom: 1.25rem; + padding-bottom: 1rem; + border-bottom: 1px dashed rgba(70, 50, 35, 0.35); +} + + .reckoning-subject-entry:last-child { + margin-bottom: 0; + padding-bottom: 0; + border-bottom: none; + } + + .reckoning-subject-entry h3 { + margin: 0 0 0.55rem; + font-size: 1rem; + font-weight: bold; + text-transform: uppercase; + letter-spacing: 0.04em; + color: #1f1813; + } + + .reckoning-subject-entry p:last-child { + margin-bottom: 0; + } + + .reckoning-subject-entry strong { + font-weight: bold; + color: #201914; + } + +.img-polaroid { + display: block; + max-width: 100%; + height: auto; + /* Polaroid border */ + background: #fff; + padding: 5px 5px 10px 5px; /* thicker bottom */ + /* Subtle ageing */ + border: 1px solid rgba(0, 0, 0, 0.08); + /* Shadow for realism */ + box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25), 0 2px 5px rgba(0, 0, 0, 0.15); + /* Slight imperfection */ + transform: rotate(-1.5deg); + /* Optional: soften edges slightly */ + border-radius: 2px; +} \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/images/80k-word-limit-is-a-myth.png b/CatherineLynwood/wwwroot/images/80k-word-limit-is-a-myth.png new file mode 100644 index 0000000..c81b7e4 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/80k-word-limit-is-a-myth.png differ diff --git a/CatherineLynwood/wwwroot/images/bank-book.png b/CatherineLynwood/wwwroot/images/bank-book.png new file mode 100644 index 0000000..bea98e2 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/bank-book.png differ diff --git a/CatherineLynwood/wwwroot/images/blackmail-note.png b/CatherineLynwood/wwwroot/images/blackmail-note.png new file mode 100644 index 0000000..21fa6d6 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/blackmail-note.png differ diff --git a/CatherineLynwood/wwwroot/images/cassette-tape.png b/CatherineLynwood/wwwroot/images/cassette-tape.png new file mode 100644 index 0000000..7731930 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/cassette-tape.png differ diff --git a/CatherineLynwood/wwwroot/images/flags/ad.svg.br b/CatherineLynwood/wwwroot/images/flags/ad.svg.br deleted file mode 100644 index f526378..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ad.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ad.svg.gz b/CatherineLynwood/wwwroot/images/flags/ad.svg.gz deleted file mode 100644 index 50206ec..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ad.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ae.svg.br b/CatherineLynwood/wwwroot/images/flags/ae.svg.br deleted file mode 100644 index cdfc36b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ae.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ae.svg.gz b/CatherineLynwood/wwwroot/images/flags/ae.svg.gz deleted file mode 100644 index 3de6e51..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ae.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/af.svg.br b/CatherineLynwood/wwwroot/images/flags/af.svg.br deleted file mode 100644 index f1ff2b2..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/af.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/af.svg.gz b/CatherineLynwood/wwwroot/images/flags/af.svg.gz deleted file mode 100644 index 1382e6c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/af.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ag.svg.br b/CatherineLynwood/wwwroot/images/flags/ag.svg.br deleted file mode 100644 index 3ef2c9d..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ag.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ag.svg.gz b/CatherineLynwood/wwwroot/images/flags/ag.svg.gz deleted file mode 100644 index 33358be..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ag.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ai.svg.br b/CatherineLynwood/wwwroot/images/flags/ai.svg.br deleted file mode 100644 index ce87908..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ai.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ai.svg.gz b/CatherineLynwood/wwwroot/images/flags/ai.svg.gz deleted file mode 100644 index d4c41ee..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ai.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/al.svg.br b/CatherineLynwood/wwwroot/images/flags/al.svg.br deleted file mode 100644 index b8dad3d..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/al.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/al.svg.gz b/CatherineLynwood/wwwroot/images/flags/al.svg.gz deleted file mode 100644 index 2b28d59..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/al.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/am.svg.br b/CatherineLynwood/wwwroot/images/flags/am.svg.br deleted file mode 100644 index c71193a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/am.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/am.svg.gz b/CatherineLynwood/wwwroot/images/flags/am.svg.gz deleted file mode 100644 index 2aad651..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/am.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ao.svg.br b/CatherineLynwood/wwwroot/images/flags/ao.svg.br deleted file mode 100644 index 477e6cd..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ao.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ao.svg.gz b/CatherineLynwood/wwwroot/images/flags/ao.svg.gz deleted file mode 100644 index 35a6f76..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ao.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/aq.svg.br b/CatherineLynwood/wwwroot/images/flags/aq.svg.br deleted file mode 100644 index dead5a1..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/aq.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/aq.svg.gz b/CatherineLynwood/wwwroot/images/flags/aq.svg.gz deleted file mode 100644 index e10c11a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/aq.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ar.svg.br b/CatherineLynwood/wwwroot/images/flags/ar.svg.br deleted file mode 100644 index 8844da2..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ar.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ar.svg.gz b/CatherineLynwood/wwwroot/images/flags/ar.svg.gz deleted file mode 100644 index 7f9b1b4..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ar.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/arab.svg.br b/CatherineLynwood/wwwroot/images/flags/arab.svg.br deleted file mode 100644 index cf91116..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/arab.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/arab.svg.gz b/CatherineLynwood/wwwroot/images/flags/arab.svg.gz deleted file mode 100644 index 44efc60..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/arab.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/as.svg.br b/CatherineLynwood/wwwroot/images/flags/as.svg.br deleted file mode 100644 index e17a099..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/as.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/as.svg.gz b/CatherineLynwood/wwwroot/images/flags/as.svg.gz deleted file mode 100644 index 768454a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/as.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/asean.svg.br b/CatherineLynwood/wwwroot/images/flags/asean.svg.br deleted file mode 100644 index 4014c27..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/asean.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/asean.svg.gz b/CatherineLynwood/wwwroot/images/flags/asean.svg.gz deleted file mode 100644 index 399e766..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/asean.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/at.svg.br b/CatherineLynwood/wwwroot/images/flags/at.svg.br deleted file mode 100644 index 1e8e55a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/at.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/at.svg.gz b/CatherineLynwood/wwwroot/images/flags/at.svg.gz deleted file mode 100644 index 8dc5bd5..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/at.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/au.svg.br b/CatherineLynwood/wwwroot/images/flags/au.svg.br deleted file mode 100644 index 458c1af..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/au.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/au.svg.gz b/CatherineLynwood/wwwroot/images/flags/au.svg.gz deleted file mode 100644 index e7bf548..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/au.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/aw.svg.br b/CatherineLynwood/wwwroot/images/flags/aw.svg.br deleted file mode 100644 index 0b13e06..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/aw.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/aw.svg.gz b/CatherineLynwood/wwwroot/images/flags/aw.svg.gz deleted file mode 100644 index aeefbfa..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/aw.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ax.svg.br b/CatherineLynwood/wwwroot/images/flags/ax.svg.br deleted file mode 100644 index 727fde2..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ax.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ax.svg.gz b/CatherineLynwood/wwwroot/images/flags/ax.svg.gz deleted file mode 100644 index 2f05102..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ax.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/az.svg.br b/CatherineLynwood/wwwroot/images/flags/az.svg.br deleted file mode 100644 index ddc966a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/az.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/az.svg.gz b/CatherineLynwood/wwwroot/images/flags/az.svg.gz deleted file mode 100644 index 53ad6d6..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/az.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ba.svg.br b/CatherineLynwood/wwwroot/images/flags/ba.svg.br deleted file mode 100644 index 7c1eae6..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ba.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ba.svg.gz b/CatherineLynwood/wwwroot/images/flags/ba.svg.gz deleted file mode 100644 index 49450d6..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ba.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bb.svg.br b/CatherineLynwood/wwwroot/images/flags/bb.svg.br deleted file mode 100644 index 7ea412c..0000000 --- a/CatherineLynwood/wwwroot/images/flags/bb.svg.br +++ /dev/null @@ -1 +0,0 @@ -s Kh-_J^3O^›%p [M>eW$a/O)>#ig6߫/o6f-O譵 Kس:ૹ#!L>4Z-v#k}.!7  X.gy v[J%5n)'bk\!)3*D$ha-HW^uDjBD[Bs) @*N'5>,qFiJP N&f GvA!o;Ux{KY2p*u E$ϛS:+V6gSv \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/images/flags/bb.svg.gz b/CatherineLynwood/wwwroot/images/flags/bb.svg.gz deleted file mode 100644 index 27dcaa1..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bb.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bd.svg.br b/CatherineLynwood/wwwroot/images/flags/bd.svg.br deleted file mode 100644 index 481de54..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bd.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bd.svg.gz b/CatherineLynwood/wwwroot/images/flags/bd.svg.gz deleted file mode 100644 index 87423f4..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bd.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/be.svg.br b/CatherineLynwood/wwwroot/images/flags/be.svg.br deleted file mode 100644 index a7f4771..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/be.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/be.svg.gz b/CatherineLynwood/wwwroot/images/flags/be.svg.gz deleted file mode 100644 index 51cb021..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/be.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bf.svg.br b/CatherineLynwood/wwwroot/images/flags/bf.svg.br deleted file mode 100644 index 7b3b45d..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bf.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bf.svg.gz b/CatherineLynwood/wwwroot/images/flags/bf.svg.gz deleted file mode 100644 index f391cce..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bf.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bg.svg.br b/CatherineLynwood/wwwroot/images/flags/bg.svg.br deleted file mode 100644 index de39d61..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bg.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bg.svg.gz b/CatherineLynwood/wwwroot/images/flags/bg.svg.gz deleted file mode 100644 index 3642d41..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bg.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bh.svg.br b/CatherineLynwood/wwwroot/images/flags/bh.svg.br deleted file mode 100644 index 60ee5c3..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bh.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bh.svg.gz b/CatherineLynwood/wwwroot/images/flags/bh.svg.gz deleted file mode 100644 index 2886b68..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bh.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bi.svg.br b/CatherineLynwood/wwwroot/images/flags/bi.svg.br deleted file mode 100644 index b9c0e7b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bi.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bi.svg.gz b/CatherineLynwood/wwwroot/images/flags/bi.svg.gz deleted file mode 100644 index 00efaeb..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bi.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bj.svg.br b/CatherineLynwood/wwwroot/images/flags/bj.svg.br deleted file mode 100644 index 8729896..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bj.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bj.svg.gz b/CatherineLynwood/wwwroot/images/flags/bj.svg.gz deleted file mode 100644 index 9bd7c66..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bj.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bl.svg.br b/CatherineLynwood/wwwroot/images/flags/bl.svg.br deleted file mode 100644 index 9d3884f..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bl.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bl.svg.gz b/CatherineLynwood/wwwroot/images/flags/bl.svg.gz deleted file mode 100644 index 7a5e377..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bl.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bm.svg.br b/CatherineLynwood/wwwroot/images/flags/bm.svg.br deleted file mode 100644 index 956eec5..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bm.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bm.svg.gz b/CatherineLynwood/wwwroot/images/flags/bm.svg.gz deleted file mode 100644 index 94c84c0..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bm.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bn.svg.br b/CatherineLynwood/wwwroot/images/flags/bn.svg.br deleted file mode 100644 index f6b6996..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bn.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bn.svg.gz b/CatherineLynwood/wwwroot/images/flags/bn.svg.gz deleted file mode 100644 index 29d3d01..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bn.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bo.svg.br b/CatherineLynwood/wwwroot/images/flags/bo.svg.br deleted file mode 100644 index 6ef872f..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bo.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bo.svg.gz b/CatherineLynwood/wwwroot/images/flags/bo.svg.gz deleted file mode 100644 index 16fff58..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bo.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bq.svg.br b/CatherineLynwood/wwwroot/images/flags/bq.svg.br deleted file mode 100644 index 291e3f8..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bq.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bq.svg.gz b/CatherineLynwood/wwwroot/images/flags/bq.svg.gz deleted file mode 100644 index 81d98cb..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bq.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/br.svg.br b/CatherineLynwood/wwwroot/images/flags/br.svg.br deleted file mode 100644 index e3b11e7..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/br.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/br.svg.gz b/CatherineLynwood/wwwroot/images/flags/br.svg.gz deleted file mode 100644 index 53ed3bc..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/br.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bs.svg.br b/CatherineLynwood/wwwroot/images/flags/bs.svg.br deleted file mode 100644 index cfc8535..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bs.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bs.svg.gz b/CatherineLynwood/wwwroot/images/flags/bs.svg.gz deleted file mode 100644 index 9ac0a3a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bs.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bt.svg.br b/CatherineLynwood/wwwroot/images/flags/bt.svg.br deleted file mode 100644 index 8527688..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bt.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bt.svg.gz b/CatherineLynwood/wwwroot/images/flags/bt.svg.gz deleted file mode 100644 index ad1e67f..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bt.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bv.svg.br b/CatherineLynwood/wwwroot/images/flags/bv.svg.br deleted file mode 100644 index af37c26..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bv.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bv.svg.gz b/CatherineLynwood/wwwroot/images/flags/bv.svg.gz deleted file mode 100644 index a27ab05..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bv.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bw.svg.br b/CatherineLynwood/wwwroot/images/flags/bw.svg.br deleted file mode 100644 index 0c9e5ff..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bw.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bw.svg.gz b/CatherineLynwood/wwwroot/images/flags/bw.svg.gz deleted file mode 100644 index c8049c1..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bw.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/by.svg.br b/CatherineLynwood/wwwroot/images/flags/by.svg.br deleted file mode 100644 index 0f8b882..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/by.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/by.svg.gz b/CatherineLynwood/wwwroot/images/flags/by.svg.gz deleted file mode 100644 index f1f0bc1..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/by.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bz.svg.br b/CatherineLynwood/wwwroot/images/flags/bz.svg.br deleted file mode 100644 index 0a945f0..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bz.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/bz.svg.gz b/CatherineLynwood/wwwroot/images/flags/bz.svg.gz deleted file mode 100644 index 0045f2d..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/bz.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ca.svg.br b/CatherineLynwood/wwwroot/images/flags/ca.svg.br deleted file mode 100644 index 913d871..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ca.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ca.svg.gz b/CatherineLynwood/wwwroot/images/flags/ca.svg.gz deleted file mode 100644 index de23828..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ca.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cc.svg.br b/CatherineLynwood/wwwroot/images/flags/cc.svg.br deleted file mode 100644 index 031abeb..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cc.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cc.svg.gz b/CatherineLynwood/wwwroot/images/flags/cc.svg.gz deleted file mode 100644 index 6a724d5..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cc.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cd.svg.br b/CatherineLynwood/wwwroot/images/flags/cd.svg.br deleted file mode 100644 index 1ccd735..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cd.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cd.svg.gz b/CatherineLynwood/wwwroot/images/flags/cd.svg.gz deleted file mode 100644 index 1b48d0e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cd.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cefta.svg.br b/CatherineLynwood/wwwroot/images/flags/cefta.svg.br deleted file mode 100644 index 36bb3b8..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cefta.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cefta.svg.gz b/CatherineLynwood/wwwroot/images/flags/cefta.svg.gz deleted file mode 100644 index a7fbf57..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cefta.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cf.svg.br b/CatherineLynwood/wwwroot/images/flags/cf.svg.br deleted file mode 100644 index 9c0a725..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cf.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cf.svg.gz b/CatherineLynwood/wwwroot/images/flags/cf.svg.gz deleted file mode 100644 index 4c57eec..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cf.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cg.svg.br b/CatherineLynwood/wwwroot/images/flags/cg.svg.br deleted file mode 100644 index 3cb7d53..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cg.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cg.svg.gz b/CatherineLynwood/wwwroot/images/flags/cg.svg.gz deleted file mode 100644 index 9efc012..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cg.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ch.svg.br b/CatherineLynwood/wwwroot/images/flags/ch.svg.br deleted file mode 100644 index e955376..0000000 --- a/CatherineLynwood/wwwroot/images/flags/ch.svg.br +++ /dev/null @@ -1 +0,0 @@ -!n,vK|Nl3~=DF3BXnK%=Ph"a6)vm:Z{A e m6ICPD-{\_A.ᆔH7h՟gE]/,x<â/[Ԗ~2 l$]ݐ bVڄ6=* -5<$'5W2WG*TF{J :呾+Dt<KS~t^bhMyx< X?~LMUSL \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/images/flags/cm.svg.gz b/CatherineLynwood/wwwroot/images/flags/cm.svg.gz deleted file mode 100644 index 534d0cb..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cm.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cn.svg.br b/CatherineLynwood/wwwroot/images/flags/cn.svg.br deleted file mode 100644 index 8448783..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cn.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cn.svg.gz b/CatherineLynwood/wwwroot/images/flags/cn.svg.gz deleted file mode 100644 index 18f6529..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cn.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/co.svg.br b/CatherineLynwood/wwwroot/images/flags/co.svg.br deleted file mode 100644 index ba05d2e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/co.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/co.svg.gz b/CatherineLynwood/wwwroot/images/flags/co.svg.gz deleted file mode 100644 index c84b8f6..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/co.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cp.svg.br b/CatherineLynwood/wwwroot/images/flags/cp.svg.br deleted file mode 100644 index 9ee6f62..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cp.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cp.svg.gz b/CatherineLynwood/wwwroot/images/flags/cp.svg.gz deleted file mode 100644 index 1af0db0..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cp.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cr.svg.br b/CatherineLynwood/wwwroot/images/flags/cr.svg.br deleted file mode 100644 index 360b955..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cr.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cr.svg.gz b/CatherineLynwood/wwwroot/images/flags/cr.svg.gz deleted file mode 100644 index 0150370..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cr.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cu.svg.br b/CatherineLynwood/wwwroot/images/flags/cu.svg.br deleted file mode 100644 index 1090feb..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cu.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cu.svg.gz b/CatherineLynwood/wwwroot/images/flags/cu.svg.gz deleted file mode 100644 index e548f83..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cu.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cv.svg.br b/CatherineLynwood/wwwroot/images/flags/cv.svg.br deleted file mode 100644 index 424087b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cv.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cv.svg.gz b/CatherineLynwood/wwwroot/images/flags/cv.svg.gz deleted file mode 100644 index 9109c04..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cv.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cw.svg.br b/CatherineLynwood/wwwroot/images/flags/cw.svg.br deleted file mode 100644 index d94e516..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cw.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cw.svg.gz b/CatherineLynwood/wwwroot/images/flags/cw.svg.gz deleted file mode 100644 index 6abd9d8..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cw.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cx.svg.br b/CatherineLynwood/wwwroot/images/flags/cx.svg.br deleted file mode 100644 index c986c5a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cx.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cx.svg.gz b/CatherineLynwood/wwwroot/images/flags/cx.svg.gz deleted file mode 100644 index 886820b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cx.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cy.svg.br b/CatherineLynwood/wwwroot/images/flags/cy.svg.br deleted file mode 100644 index ba50344..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cy.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cy.svg.gz b/CatherineLynwood/wwwroot/images/flags/cy.svg.gz deleted file mode 100644 index a45370e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cy.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cz.svg.br b/CatherineLynwood/wwwroot/images/flags/cz.svg.br deleted file mode 100644 index b0d6003..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cz.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/cz.svg.gz b/CatherineLynwood/wwwroot/images/flags/cz.svg.gz deleted file mode 100644 index 3a2d480..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/cz.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/de.svg.br b/CatherineLynwood/wwwroot/images/flags/de.svg.br deleted file mode 100644 index 760320b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/de.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/de.svg.gz b/CatherineLynwood/wwwroot/images/flags/de.svg.gz deleted file mode 100644 index a97d01f..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/de.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/dg.svg.br b/CatherineLynwood/wwwroot/images/flags/dg.svg.br deleted file mode 100644 index f4bc4a5..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/dg.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/dg.svg.gz b/CatherineLynwood/wwwroot/images/flags/dg.svg.gz deleted file mode 100644 index c038af7..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/dg.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/dj.svg.br b/CatherineLynwood/wwwroot/images/flags/dj.svg.br deleted file mode 100644 index a0d2122..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/dj.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/dj.svg.gz b/CatherineLynwood/wwwroot/images/flags/dj.svg.gz deleted file mode 100644 index fe8fa8c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/dj.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/dk.svg.br b/CatherineLynwood/wwwroot/images/flags/dk.svg.br deleted file mode 100644 index fa27053..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/dk.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/dk.svg.gz b/CatherineLynwood/wwwroot/images/flags/dk.svg.gz deleted file mode 100644 index 81af769..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/dk.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/dm.svg.br b/CatherineLynwood/wwwroot/images/flags/dm.svg.br deleted file mode 100644 index fa77c8b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/dm.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/dm.svg.gz b/CatherineLynwood/wwwroot/images/flags/dm.svg.gz deleted file mode 100644 index 6e4680b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/dm.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/do.svg.br b/CatherineLynwood/wwwroot/images/flags/do.svg.br deleted file mode 100644 index 3359b24..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/do.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/do.svg.gz b/CatherineLynwood/wwwroot/images/flags/do.svg.gz deleted file mode 100644 index 35e4da6..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/do.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/dz.svg.br b/CatherineLynwood/wwwroot/images/flags/dz.svg.br deleted file mode 100644 index 0e14495..0000000 --- a/CatherineLynwood/wwwroot/images/flags/dz.svg.br +++ /dev/null @@ -1,2 +0,0 @@ -% 868-R6J{BT -oNeڟt-k %E`]ATǹ'-lgx>ic[5'xGvo P -#}"߅ v /M Nfo1HL'ZSIrEAd >N) DJi)"adR- \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/images/flags/dz.svg.gz b/CatherineLynwood/wwwroot/images/flags/dz.svg.gz deleted file mode 100644 index f3fcd5d..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/dz.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/eac.svg.br b/CatherineLynwood/wwwroot/images/flags/eac.svg.br deleted file mode 100644 index 1beeaa3..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/eac.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/eac.svg.gz b/CatherineLynwood/wwwroot/images/flags/eac.svg.gz deleted file mode 100644 index a488c96..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/eac.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ec.svg.br b/CatherineLynwood/wwwroot/images/flags/ec.svg.br deleted file mode 100644 index 74084b2..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ec.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ec.svg.gz b/CatherineLynwood/wwwroot/images/flags/ec.svg.gz deleted file mode 100644 index 9898028..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ec.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ee.svg.br b/CatherineLynwood/wwwroot/images/flags/ee.svg.br deleted file mode 100644 index d49bd86..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ee.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ee.svg.gz b/CatherineLynwood/wwwroot/images/flags/ee.svg.gz deleted file mode 100644 index 2d96643..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ee.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/eg.svg.br b/CatherineLynwood/wwwroot/images/flags/eg.svg.br deleted file mode 100644 index 22529df..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/eg.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/eg.svg.gz b/CatherineLynwood/wwwroot/images/flags/eg.svg.gz deleted file mode 100644 index c02dbb9..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/eg.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/eh.svg.br b/CatherineLynwood/wwwroot/images/flags/eh.svg.br deleted file mode 100644 index c727c2a..0000000 --- a/CatherineLynwood/wwwroot/images/flags/eh.svg.br +++ /dev/null @@ -1,4 +0,0 @@ -# nK9*9~ܛM8?Je,/PaZ$uf Q85|E j{H3CymXs4+?X(|F ۨT˜c+cZ+'ޮ ZI{nB)|2tZ|wSKL^k(Tnwj)|~&:Tb$cQ..ޛŭnW -jT&ZAU07}#x -D/*"@k?O$|VeqszZۭ&` S~X)P\]#e$K*c17dP(e4Z\#R{ \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/images/flags/eh.svg.gz b/CatherineLynwood/wwwroot/images/flags/eh.svg.gz deleted file mode 100644 index a4648fc..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/eh.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/er.svg.br b/CatherineLynwood/wwwroot/images/flags/er.svg.br deleted file mode 100644 index b2b4ddd..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/er.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/er.svg.gz b/CatherineLynwood/wwwroot/images/flags/er.svg.gz deleted file mode 100644 index f4743ee..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/er.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/es-ct.svg.br b/CatherineLynwood/wwwroot/images/flags/es-ct.svg.br deleted file mode 100644 index 152e83a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/es-ct.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/es-ct.svg.gz b/CatherineLynwood/wwwroot/images/flags/es-ct.svg.gz deleted file mode 100644 index b66d1ff..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/es-ct.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/es-ga.svg.br b/CatherineLynwood/wwwroot/images/flags/es-ga.svg.br deleted file mode 100644 index 6eff91e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/es-ga.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/es-ga.svg.gz b/CatherineLynwood/wwwroot/images/flags/es-ga.svg.gz deleted file mode 100644 index 66a8625..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/es-ga.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/es-pv.svg.br b/CatherineLynwood/wwwroot/images/flags/es-pv.svg.br deleted file mode 100644 index a2ae7f0..0000000 --- a/CatherineLynwood/wwwroot/images/flags/es-pv.svg.br +++ /dev/null @@ -1,5 +0,0 @@ -(975a*y@|k?S67} -uvH۾;D'aĤ'Fv -w&~gc Sj,9ҺWT5t6.,'N$?W$%yL \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/images/flags/es-pv.svg.gz b/CatherineLynwood/wwwroot/images/flags/es-pv.svg.gz deleted file mode 100644 index ec534c7..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/es-pv.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/es.svg.br b/CatherineLynwood/wwwroot/images/flags/es.svg.br deleted file mode 100644 index 09dd6d6..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/es.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/es.svg.gz b/CatherineLynwood/wwwroot/images/flags/es.svg.gz deleted file mode 100644 index fa21eb5..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/es.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/et.svg.br b/CatherineLynwood/wwwroot/images/flags/et.svg.br deleted file mode 100644 index 7f76b1e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/et.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/et.svg.gz b/CatherineLynwood/wwwroot/images/flags/et.svg.gz deleted file mode 100644 index 122b5c0..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/et.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/eu.svg.br b/CatherineLynwood/wwwroot/images/flags/eu.svg.br deleted file mode 100644 index 2836c90..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/eu.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/eu.svg.gz b/CatherineLynwood/wwwroot/images/flags/eu.svg.gz deleted file mode 100644 index bb05308..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/eu.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/fi.svg.br b/CatherineLynwood/wwwroot/images/flags/fi.svg.br deleted file mode 100644 index 7db5a26..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/fi.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/fi.svg.gz b/CatherineLynwood/wwwroot/images/flags/fi.svg.gz deleted file mode 100644 index da2cd92..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/fi.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/fj.svg.br b/CatherineLynwood/wwwroot/images/flags/fj.svg.br deleted file mode 100644 index 0b7ea62..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/fj.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/fj.svg.gz b/CatherineLynwood/wwwroot/images/flags/fj.svg.gz deleted file mode 100644 index 2575f63..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/fj.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/fk.svg.br b/CatherineLynwood/wwwroot/images/flags/fk.svg.br deleted file mode 100644 index 88e3c0c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/fk.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/fk.svg.gz b/CatherineLynwood/wwwroot/images/flags/fk.svg.gz deleted file mode 100644 index 9f7eab8..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/fk.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/fm.svg.br b/CatherineLynwood/wwwroot/images/flags/fm.svg.br deleted file mode 100644 index 951ea7e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/fm.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/fm.svg.gz b/CatherineLynwood/wwwroot/images/flags/fm.svg.gz deleted file mode 100644 index 64da2dc..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/fm.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/fo.svg.br b/CatherineLynwood/wwwroot/images/flags/fo.svg.br deleted file mode 100644 index fcc0d3a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/fo.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/fo.svg.gz b/CatherineLynwood/wwwroot/images/flags/fo.svg.gz deleted file mode 100644 index c3e7b4f..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/fo.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/fr.svg.br b/CatherineLynwood/wwwroot/images/flags/fr.svg.br deleted file mode 100644 index f893088..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/fr.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/fr.svg.gz b/CatherineLynwood/wwwroot/images/flags/fr.svg.gz deleted file mode 100644 index 66eb89b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/fr.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ga.svg.br b/CatherineLynwood/wwwroot/images/flags/ga.svg.br deleted file mode 100644 index ea7ef5d..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ga.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ga.svg.gz b/CatherineLynwood/wwwroot/images/flags/ga.svg.gz deleted file mode 100644 index fca6689..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ga.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gb-eng.svg.br b/CatherineLynwood/wwwroot/images/flags/gb-eng.svg.br deleted file mode 100644 index d90269e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gb-eng.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gb-eng.svg.gz b/CatherineLynwood/wwwroot/images/flags/gb-eng.svg.gz deleted file mode 100644 index 0a95b8c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gb-eng.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gb-nir.svg.br b/CatherineLynwood/wwwroot/images/flags/gb-nir.svg.br deleted file mode 100644 index 24635a8..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gb-nir.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gb-nir.svg.gz b/CatherineLynwood/wwwroot/images/flags/gb-nir.svg.gz deleted file mode 100644 index 04c991c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gb-nir.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gb-sct.svg.br b/CatherineLynwood/wwwroot/images/flags/gb-sct.svg.br deleted file mode 100644 index 328c215..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gb-sct.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gb-sct.svg.gz b/CatherineLynwood/wwwroot/images/flags/gb-sct.svg.gz deleted file mode 100644 index 212f09d..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gb-sct.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gb-wls.svg.br b/CatherineLynwood/wwwroot/images/flags/gb-wls.svg.br deleted file mode 100644 index 013a244..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gb-wls.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gb-wls.svg.gz b/CatherineLynwood/wwwroot/images/flags/gb-wls.svg.gz deleted file mode 100644 index 6867e6d..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gb-wls.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gb.svg.br b/CatherineLynwood/wwwroot/images/flags/gb.svg.br deleted file mode 100644 index baf0ccd..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gb.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gb.svg.gz b/CatherineLynwood/wwwroot/images/flags/gb.svg.gz deleted file mode 100644 index 95ec9aa..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gb.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gd.svg.br b/CatherineLynwood/wwwroot/images/flags/gd.svg.br deleted file mode 100644 index a01d1aa..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gd.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gd.svg.gz b/CatherineLynwood/wwwroot/images/flags/gd.svg.gz deleted file mode 100644 index 451c970..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gd.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ge.svg.br b/CatherineLynwood/wwwroot/images/flags/ge.svg.br deleted file mode 100644 index 76870a6..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ge.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ge.svg.gz b/CatherineLynwood/wwwroot/images/flags/ge.svg.gz deleted file mode 100644 index d0870c4..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ge.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gf.svg.br b/CatherineLynwood/wwwroot/images/flags/gf.svg.br deleted file mode 100644 index 6aa907a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gf.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gf.svg.gz b/CatherineLynwood/wwwroot/images/flags/gf.svg.gz deleted file mode 100644 index 2d15297..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gf.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gg.svg.br b/CatherineLynwood/wwwroot/images/flags/gg.svg.br deleted file mode 100644 index 3395ee1..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gg.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gg.svg.gz b/CatherineLynwood/wwwroot/images/flags/gg.svg.gz deleted file mode 100644 index db6c197..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gg.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gh.svg.br b/CatherineLynwood/wwwroot/images/flags/gh.svg.br deleted file mode 100644 index 722ddb0..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gh.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gh.svg.gz b/CatherineLynwood/wwwroot/images/flags/gh.svg.gz deleted file mode 100644 index 5fb3496..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gh.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gi.svg.br b/CatherineLynwood/wwwroot/images/flags/gi.svg.br deleted file mode 100644 index 9fbcdb9..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gi.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gi.svg.gz b/CatherineLynwood/wwwroot/images/flags/gi.svg.gz deleted file mode 100644 index d5112a5..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gi.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gl.svg.br b/CatherineLynwood/wwwroot/images/flags/gl.svg.br deleted file mode 100644 index 4ac75c5..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gl.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gl.svg.gz b/CatherineLynwood/wwwroot/images/flags/gl.svg.gz deleted file mode 100644 index 68017b4..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gl.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gm.svg.br b/CatherineLynwood/wwwroot/images/flags/gm.svg.br deleted file mode 100644 index 0b9dfec..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gm.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gm.svg.gz b/CatherineLynwood/wwwroot/images/flags/gm.svg.gz deleted file mode 100644 index 6b21831..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gm.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gn.svg.br b/CatherineLynwood/wwwroot/images/flags/gn.svg.br deleted file mode 100644 index dabe09b..0000000 --- a/CatherineLynwood/wwwroot/images/flags/gn.svg.br +++ /dev/null @@ -1,5 +0,0 @@ -#`, -61q>@qn#-؃\:ɑ(ɬy9l.~CE -wxClwd. -KGI M4*zzC%wv[,# 5mWPM -T39# mL|h 4u]SyǦ LzҸBStni[Lݖ(l".uo1 \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/images/flags/gn.svg.gz b/CatherineLynwood/wwwroot/images/flags/gn.svg.gz deleted file mode 100644 index 4edd4e7..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gn.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gp.svg.br b/CatherineLynwood/wwwroot/images/flags/gp.svg.br deleted file mode 100644 index b8e37b3..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gp.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gp.svg.gz b/CatherineLynwood/wwwroot/images/flags/gp.svg.gz deleted file mode 100644 index cd3bb83..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gp.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gq.svg.br b/CatherineLynwood/wwwroot/images/flags/gq.svg.br deleted file mode 100644 index 1f206c6..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gq.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gq.svg.gz b/CatherineLynwood/wwwroot/images/flags/gq.svg.gz deleted file mode 100644 index ffcdb4b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gq.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gr.svg.br b/CatherineLynwood/wwwroot/images/flags/gr.svg.br deleted file mode 100644 index e279a0c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gr.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gr.svg.gz b/CatherineLynwood/wwwroot/images/flags/gr.svg.gz deleted file mode 100644 index fcce09f..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gr.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gs.svg.br b/CatherineLynwood/wwwroot/images/flags/gs.svg.br deleted file mode 100644 index 054756d..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gs.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gs.svg.gz b/CatherineLynwood/wwwroot/images/flags/gs.svg.gz deleted file mode 100644 index 9e8c577..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gs.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gt.svg.br b/CatherineLynwood/wwwroot/images/flags/gt.svg.br deleted file mode 100644 index 1ec4586..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gt.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gt.svg.gz b/CatherineLynwood/wwwroot/images/flags/gt.svg.gz deleted file mode 100644 index a9428b5..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gt.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gu.svg.br b/CatherineLynwood/wwwroot/images/flags/gu.svg.br deleted file mode 100644 index 0fdd1ee..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gu.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gu.svg.gz b/CatherineLynwood/wwwroot/images/flags/gu.svg.gz deleted file mode 100644 index 6f56dba..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/gu.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/gw.svg.br b/CatherineLynwood/wwwroot/images/flags/gw.svg.br deleted file mode 100644 index d395a15..0000000 --- a/CatherineLynwood/wwwroot/images/flags/gw.svg.br +++ /dev/null @@ -1,4 +0,0 @@ -M e`%֜}"-qls>wGFDedޗۢ-2.%l? cve0GZY -aeO7eE3+`l7usyְ90"(Ұ2Y -)Z368yꍙx1 6^m+w.m][.=[/Rfk]nnݦ.Wx `}Yaz}}:"tK%)&N"Ո/VfHl"yL — -kf*dJv&f̹)[,goN`ܩC񁪌,i),vT}5*thKW(- _S_>>rʬT ;p"JS\^Y \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/images/flags/hk.svg.gz b/CatherineLynwood/wwwroot/images/flags/hk.svg.gz deleted file mode 100644 index 8e76881..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/hk.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/hm.svg.br b/CatherineLynwood/wwwroot/images/flags/hm.svg.br deleted file mode 100644 index ae4735b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/hm.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/hm.svg.gz b/CatherineLynwood/wwwroot/images/flags/hm.svg.gz deleted file mode 100644 index 949c340..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/hm.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/hn.svg.br b/CatherineLynwood/wwwroot/images/flags/hn.svg.br deleted file mode 100644 index 7ee0bab..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/hn.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/hn.svg.gz b/CatherineLynwood/wwwroot/images/flags/hn.svg.gz deleted file mode 100644 index 75bdd13..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/hn.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/hr.svg.br b/CatherineLynwood/wwwroot/images/flags/hr.svg.br deleted file mode 100644 index 260abdf..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/hr.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/hr.svg.gz b/CatherineLynwood/wwwroot/images/flags/hr.svg.gz deleted file mode 100644 index e19bbb3..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/hr.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ht.svg.br b/CatherineLynwood/wwwroot/images/flags/ht.svg.br deleted file mode 100644 index 81644b2..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ht.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ht.svg.gz b/CatherineLynwood/wwwroot/images/flags/ht.svg.gz deleted file mode 100644 index 0e9b68c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ht.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/hu.svg.br b/CatherineLynwood/wwwroot/images/flags/hu.svg.br deleted file mode 100644 index 1e56700..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/hu.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/hu.svg.gz b/CatherineLynwood/wwwroot/images/flags/hu.svg.gz deleted file mode 100644 index 82af977..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/hu.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ic.svg.br b/CatherineLynwood/wwwroot/images/flags/ic.svg.br deleted file mode 100644 index 571725b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ic.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ic.svg.gz b/CatherineLynwood/wwwroot/images/flags/ic.svg.gz deleted file mode 100644 index b1c3572..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ic.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/id.svg.br b/CatherineLynwood/wwwroot/images/flags/id.svg.br deleted file mode 100644 index d29ee5e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/id.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/id.svg.gz b/CatherineLynwood/wwwroot/images/flags/id.svg.gz deleted file mode 100644 index 397bcb9..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/id.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ie.svg.br b/CatherineLynwood/wwwroot/images/flags/ie.svg.br deleted file mode 100644 index c309557..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ie.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ie.svg.gz b/CatherineLynwood/wwwroot/images/flags/ie.svg.gz deleted file mode 100644 index 90140a1..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ie.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/il.svg.br b/CatherineLynwood/wwwroot/images/flags/il.svg.br deleted file mode 100644 index 2e5b52b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/il.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/il.svg.gz b/CatherineLynwood/wwwroot/images/flags/il.svg.gz deleted file mode 100644 index 6690d1d..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/il.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/im.svg.br b/CatherineLynwood/wwwroot/images/flags/im.svg.br deleted file mode 100644 index 9d15330..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/im.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/im.svg.gz b/CatherineLynwood/wwwroot/images/flags/im.svg.gz deleted file mode 100644 index 821b8d4..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/im.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/in.svg.br b/CatherineLynwood/wwwroot/images/flags/in.svg.br deleted file mode 100644 index adadb2f..0000000 --- a/CatherineLynwood/wwwroot/images/flags/in.svg.br +++ /dev/null @@ -1 +0,0 @@ -A :'@x}1 OPP?щnmZ\-[UDT A$:vX~tvτ1Y # uR.|wf@lt YEzAm.l[8?`mu42*O @Xtz)62W]&1GˬڶMVWO%s;5,+hDYcA2d~yf +\PZ k, G@#xaiٕl_zNޒ|+z0`yuKEK*YJ6R%+҆ZJO:K.ఈ \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/images/flags/in.svg.gz b/CatherineLynwood/wwwroot/images/flags/in.svg.gz deleted file mode 100644 index 2fc85f4..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/in.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/io.svg.br b/CatherineLynwood/wwwroot/images/flags/io.svg.br deleted file mode 100644 index f0e44fa..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/io.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/io.svg.gz b/CatherineLynwood/wwwroot/images/flags/io.svg.gz deleted file mode 100644 index 473a2de..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/io.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/iq.svg.br b/CatherineLynwood/wwwroot/images/flags/iq.svg.br deleted file mode 100644 index 9b32687..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/iq.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/iq.svg.gz b/CatherineLynwood/wwwroot/images/flags/iq.svg.gz deleted file mode 100644 index 49cc752..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/iq.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ir.svg.br b/CatherineLynwood/wwwroot/images/flags/ir.svg.br deleted file mode 100644 index 884ddd3..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ir.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ir.svg.gz b/CatherineLynwood/wwwroot/images/flags/ir.svg.gz deleted file mode 100644 index ccbbfb8..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ir.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/is.svg.br b/CatherineLynwood/wwwroot/images/flags/is.svg.br deleted file mode 100644 index e1c025c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/is.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/is.svg.gz b/CatherineLynwood/wwwroot/images/flags/is.svg.gz deleted file mode 100644 index 159c061..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/is.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/it.svg.br b/CatherineLynwood/wwwroot/images/flags/it.svg.br deleted file mode 100644 index bbd1659..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/it.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/it.svg.gz b/CatherineLynwood/wwwroot/images/flags/it.svg.gz deleted file mode 100644 index 5a7cebe..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/it.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/je.svg.br b/CatherineLynwood/wwwroot/images/flags/je.svg.br deleted file mode 100644 index a214475..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/je.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/je.svg.gz b/CatherineLynwood/wwwroot/images/flags/je.svg.gz deleted file mode 100644 index 0d1913c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/je.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/jm.svg.br b/CatherineLynwood/wwwroot/images/flags/jm.svg.br deleted file mode 100644 index dd181ce..0000000 --- a/CatherineLynwood/wwwroot/images/flags/jm.svg.br +++ /dev/null @@ -1,2 +0,0 @@ - nvC\S\Ͼy)B!D[օ"n -lKDEњ3w%\{H\]̐!9~,v2\A"@Aq +r6W=:PJ?"8qlXD%VeQzg_6\<%#JŐDr |[^QJ'(0n!D.ck \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/images/flags/jm.svg.gz b/CatherineLynwood/wwwroot/images/flags/jm.svg.gz deleted file mode 100644 index 05ec202..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/jm.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/jo.svg.br b/CatherineLynwood/wwwroot/images/flags/jo.svg.br deleted file mode 100644 index 2885631..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/jo.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/jo.svg.gz b/CatherineLynwood/wwwroot/images/flags/jo.svg.gz deleted file mode 100644 index 3f1d7c0..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/jo.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/jp.svg.br b/CatherineLynwood/wwwroot/images/flags/jp.svg.br deleted file mode 100644 index 71e9023..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/jp.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/jp.svg.gz b/CatherineLynwood/wwwroot/images/flags/jp.svg.gz deleted file mode 100644 index 422bbd7..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/jp.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ke.svg.br b/CatherineLynwood/wwwroot/images/flags/ke.svg.br deleted file mode 100644 index 945a55b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ke.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ke.svg.gz b/CatherineLynwood/wwwroot/images/flags/ke.svg.gz deleted file mode 100644 index 0f06310..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ke.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/kg.svg.br b/CatherineLynwood/wwwroot/images/flags/kg.svg.br deleted file mode 100644 index 66da048..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/kg.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/kg.svg.gz b/CatherineLynwood/wwwroot/images/flags/kg.svg.gz deleted file mode 100644 index 13a1a3a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/kg.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/kh.svg.br b/CatherineLynwood/wwwroot/images/flags/kh.svg.br deleted file mode 100644 index 945028a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/kh.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/kh.svg.gz b/CatherineLynwood/wwwroot/images/flags/kh.svg.gz deleted file mode 100644 index 9119774..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/kh.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ki.svg.br b/CatherineLynwood/wwwroot/images/flags/ki.svg.br deleted file mode 100644 index 38e0ac9..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ki.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ki.svg.gz b/CatherineLynwood/wwwroot/images/flags/ki.svg.gz deleted file mode 100644 index 5b4a219..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ki.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/km.svg.br b/CatherineLynwood/wwwroot/images/flags/km.svg.br deleted file mode 100644 index 67b568e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/km.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/km.svg.gz b/CatherineLynwood/wwwroot/images/flags/km.svg.gz deleted file mode 100644 index 67b770c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/km.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/kn.svg.br b/CatherineLynwood/wwwroot/images/flags/kn.svg.br deleted file mode 100644 index 9fcc260..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/kn.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/kn.svg.gz b/CatherineLynwood/wwwroot/images/flags/kn.svg.gz deleted file mode 100644 index 1f34c33..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/kn.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/kp.svg.br b/CatherineLynwood/wwwroot/images/flags/kp.svg.br deleted file mode 100644 index 846094a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/kp.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/kp.svg.gz b/CatherineLynwood/wwwroot/images/flags/kp.svg.gz deleted file mode 100644 index d01f613..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/kp.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/kr.svg.br b/CatherineLynwood/wwwroot/images/flags/kr.svg.br deleted file mode 100644 index 948831e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/kr.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/kr.svg.gz b/CatherineLynwood/wwwroot/images/flags/kr.svg.gz deleted file mode 100644 index fe05350..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/kr.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/kw.svg.br b/CatherineLynwood/wwwroot/images/flags/kw.svg.br deleted file mode 100644 index 2bf188b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/kw.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/kw.svg.gz b/CatherineLynwood/wwwroot/images/flags/kw.svg.gz deleted file mode 100644 index 656e6a5..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/kw.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ky.svg.br b/CatherineLynwood/wwwroot/images/flags/ky.svg.br deleted file mode 100644 index 73615ba..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ky.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ky.svg.gz b/CatherineLynwood/wwwroot/images/flags/ky.svg.gz deleted file mode 100644 index ce168ce..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ky.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/kz.svg.br b/CatherineLynwood/wwwroot/images/flags/kz.svg.br deleted file mode 100644 index e7e695b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/kz.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/kz.svg.gz b/CatherineLynwood/wwwroot/images/flags/kz.svg.gz deleted file mode 100644 index 796d5bc..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/kz.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/la.svg.br b/CatherineLynwood/wwwroot/images/flags/la.svg.br deleted file mode 100644 index 56e54be..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/la.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/la.svg.gz b/CatherineLynwood/wwwroot/images/flags/la.svg.gz deleted file mode 100644 index 809eb9a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/la.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/lb.svg.br b/CatherineLynwood/wwwroot/images/flags/lb.svg.br deleted file mode 100644 index aabfe21..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/lb.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/lb.svg.gz b/CatherineLynwood/wwwroot/images/flags/lb.svg.gz deleted file mode 100644 index 9584b0f..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/lb.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/lc.svg.br b/CatherineLynwood/wwwroot/images/flags/lc.svg.br deleted file mode 100644 index 69e751d..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/lc.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/lc.svg.gz b/CatherineLynwood/wwwroot/images/flags/lc.svg.gz deleted file mode 100644 index 03544a4..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/lc.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/li.svg.br b/CatherineLynwood/wwwroot/images/flags/li.svg.br deleted file mode 100644 index 80403b4..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/li.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/li.svg.gz b/CatherineLynwood/wwwroot/images/flags/li.svg.gz deleted file mode 100644 index 1be2f44..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/li.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/lk.svg.br b/CatherineLynwood/wwwroot/images/flags/lk.svg.br deleted file mode 100644 index 6a43a22..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/lk.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/lk.svg.gz b/CatherineLynwood/wwwroot/images/flags/lk.svg.gz deleted file mode 100644 index 6c71043..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/lk.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/lr.svg.br b/CatherineLynwood/wwwroot/images/flags/lr.svg.br deleted file mode 100644 index d9910c1..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/lr.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/lr.svg.gz b/CatherineLynwood/wwwroot/images/flags/lr.svg.gz deleted file mode 100644 index fd5a017..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/lr.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ls.svg.br b/CatherineLynwood/wwwroot/images/flags/ls.svg.br deleted file mode 100644 index 1b77962..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ls.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ls.svg.gz b/CatherineLynwood/wwwroot/images/flags/ls.svg.gz deleted file mode 100644 index a174661..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ls.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/lt.svg.br b/CatherineLynwood/wwwroot/images/flags/lt.svg.br deleted file mode 100644 index 72d8dda..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/lt.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/lt.svg.gz b/CatherineLynwood/wwwroot/images/flags/lt.svg.gz deleted file mode 100644 index 35db1cd..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/lt.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/lu.svg.br b/CatherineLynwood/wwwroot/images/flags/lu.svg.br deleted file mode 100644 index 137a95d..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/lu.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/lu.svg.gz b/CatherineLynwood/wwwroot/images/flags/lu.svg.gz deleted file mode 100644 index 5a09ebd..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/lu.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/lv.svg.br b/CatherineLynwood/wwwroot/images/flags/lv.svg.br deleted file mode 100644 index 7309348..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/lv.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/lv.svg.gz b/CatherineLynwood/wwwroot/images/flags/lv.svg.gz deleted file mode 100644 index ac819cd..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/lv.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ly.svg.br b/CatherineLynwood/wwwroot/images/flags/ly.svg.br deleted file mode 100644 index eb5a338..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ly.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ly.svg.gz b/CatherineLynwood/wwwroot/images/flags/ly.svg.gz deleted file mode 100644 index c3fc5fc..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ly.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ma.svg.br b/CatherineLynwood/wwwroot/images/flags/ma.svg.br deleted file mode 100644 index 4c68c46..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ma.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ma.svg.gz b/CatherineLynwood/wwwroot/images/flags/ma.svg.gz deleted file mode 100644 index 72374ef..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ma.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mc.svg.br b/CatherineLynwood/wwwroot/images/flags/mc.svg.br deleted file mode 100644 index 58239a5..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mc.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mc.svg.gz b/CatherineLynwood/wwwroot/images/flags/mc.svg.gz deleted file mode 100644 index 17cb6c1..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mc.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/md.svg.br b/CatherineLynwood/wwwroot/images/flags/md.svg.br deleted file mode 100644 index f46570a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/md.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/md.svg.gz b/CatherineLynwood/wwwroot/images/flags/md.svg.gz deleted file mode 100644 index 6c07c13..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/md.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/me.svg.br b/CatherineLynwood/wwwroot/images/flags/me.svg.br deleted file mode 100644 index 179723f..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/me.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/me.svg.gz b/CatherineLynwood/wwwroot/images/flags/me.svg.gz deleted file mode 100644 index c569b2a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/me.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mf.svg.br b/CatherineLynwood/wwwroot/images/flags/mf.svg.br deleted file mode 100644 index f24e751..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mf.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mf.svg.gz b/CatherineLynwood/wwwroot/images/flags/mf.svg.gz deleted file mode 100644 index bc3c6f4..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mf.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mg.svg.br b/CatherineLynwood/wwwroot/images/flags/mg.svg.br deleted file mode 100644 index bc45a32..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mg.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mg.svg.gz b/CatherineLynwood/wwwroot/images/flags/mg.svg.gz deleted file mode 100644 index 48494f0..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mg.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mh.svg.br b/CatherineLynwood/wwwroot/images/flags/mh.svg.br deleted file mode 100644 index b2326ee..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mh.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mh.svg.gz b/CatherineLynwood/wwwroot/images/flags/mh.svg.gz deleted file mode 100644 index ab0072c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mh.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mk.svg.br b/CatherineLynwood/wwwroot/images/flags/mk.svg.br deleted file mode 100644 index eeeaeff..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mk.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mk.svg.gz b/CatherineLynwood/wwwroot/images/flags/mk.svg.gz deleted file mode 100644 index 9822c19..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mk.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ml.svg.br b/CatherineLynwood/wwwroot/images/flags/ml.svg.br deleted file mode 100644 index 002a94e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ml.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ml.svg.gz b/CatherineLynwood/wwwroot/images/flags/ml.svg.gz deleted file mode 100644 index f927f68..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ml.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mm.svg.br b/CatherineLynwood/wwwroot/images/flags/mm.svg.br deleted file mode 100644 index e849aa5..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mm.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mm.svg.gz b/CatherineLynwood/wwwroot/images/flags/mm.svg.gz deleted file mode 100644 index 9a9d9d0..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mm.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mn.svg.br b/CatherineLynwood/wwwroot/images/flags/mn.svg.br deleted file mode 100644 index 2b9708b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mn.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mn.svg.gz b/CatherineLynwood/wwwroot/images/flags/mn.svg.gz deleted file mode 100644 index 9a05e3d..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mn.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mo.svg.br b/CatherineLynwood/wwwroot/images/flags/mo.svg.br deleted file mode 100644 index 90c489d..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mo.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mo.svg.gz b/CatherineLynwood/wwwroot/images/flags/mo.svg.gz deleted file mode 100644 index e30bb01..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mo.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mp.svg.br b/CatherineLynwood/wwwroot/images/flags/mp.svg.br deleted file mode 100644 index 9115fa3..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mp.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mp.svg.gz b/CatherineLynwood/wwwroot/images/flags/mp.svg.gz deleted file mode 100644 index 063a3bf..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mp.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mq.svg.br b/CatherineLynwood/wwwroot/images/flags/mq.svg.br deleted file mode 100644 index 85e4ba2..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mq.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mq.svg.gz b/CatherineLynwood/wwwroot/images/flags/mq.svg.gz deleted file mode 100644 index a03e11e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mq.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mr.svg.br b/CatherineLynwood/wwwroot/images/flags/mr.svg.br deleted file mode 100644 index d28a74e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mr.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mr.svg.gz b/CatherineLynwood/wwwroot/images/flags/mr.svg.gz deleted file mode 100644 index 7d518d7..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mr.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ms.svg.br b/CatherineLynwood/wwwroot/images/flags/ms.svg.br deleted file mode 100644 index 7cea73e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ms.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ms.svg.gz b/CatherineLynwood/wwwroot/images/flags/ms.svg.gz deleted file mode 100644 index 101af89..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ms.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mt.svg.br b/CatherineLynwood/wwwroot/images/flags/mt.svg.br deleted file mode 100644 index d839e17..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mt.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mt.svg.gz b/CatherineLynwood/wwwroot/images/flags/mt.svg.gz deleted file mode 100644 index 2d81d0c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mt.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mu.svg.br b/CatherineLynwood/wwwroot/images/flags/mu.svg.br deleted file mode 100644 index 8c8e7b7..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mu.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mu.svg.gz b/CatherineLynwood/wwwroot/images/flags/mu.svg.gz deleted file mode 100644 index 608c0cf..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mu.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mv.svg.br b/CatherineLynwood/wwwroot/images/flags/mv.svg.br deleted file mode 100644 index c09c87c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mv.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mv.svg.gz b/CatherineLynwood/wwwroot/images/flags/mv.svg.gz deleted file mode 100644 index 2f64e90..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mv.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mw.svg.br b/CatherineLynwood/wwwroot/images/flags/mw.svg.br deleted file mode 100644 index 7a07fb3..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mw.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mw.svg.gz b/CatherineLynwood/wwwroot/images/flags/mw.svg.gz deleted file mode 100644 index 46a82a6..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mw.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mx.svg.br b/CatherineLynwood/wwwroot/images/flags/mx.svg.br deleted file mode 100644 index 3699594..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mx.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mx.svg.gz b/CatherineLynwood/wwwroot/images/flags/mx.svg.gz deleted file mode 100644 index 1e702a0..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mx.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/my.svg.br b/CatherineLynwood/wwwroot/images/flags/my.svg.br deleted file mode 100644 index 42a8a52..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/my.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/my.svg.gz b/CatherineLynwood/wwwroot/images/flags/my.svg.gz deleted file mode 100644 index e63b643..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/my.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mz.svg.br b/CatherineLynwood/wwwroot/images/flags/mz.svg.br deleted file mode 100644 index e1362e0..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mz.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/mz.svg.gz b/CatherineLynwood/wwwroot/images/flags/mz.svg.gz deleted file mode 100644 index e9dea1c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/mz.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/na.svg.br b/CatherineLynwood/wwwroot/images/flags/na.svg.br deleted file mode 100644 index 5248153..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/na.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/na.svg.gz b/CatherineLynwood/wwwroot/images/flags/na.svg.gz deleted file mode 100644 index 34ebe50..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/na.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/nc.svg.br b/CatherineLynwood/wwwroot/images/flags/nc.svg.br deleted file mode 100644 index cb25cad..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/nc.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/nc.svg.gz b/CatherineLynwood/wwwroot/images/flags/nc.svg.gz deleted file mode 100644 index 53fc512..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/nc.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ne.svg.br b/CatherineLynwood/wwwroot/images/flags/ne.svg.br deleted file mode 100644 index 201444b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ne.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ne.svg.gz b/CatherineLynwood/wwwroot/images/flags/ne.svg.gz deleted file mode 100644 index 5a3e602..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ne.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/nf.svg.br b/CatherineLynwood/wwwroot/images/flags/nf.svg.br deleted file mode 100644 index 11d3287..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/nf.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/nf.svg.gz b/CatherineLynwood/wwwroot/images/flags/nf.svg.gz deleted file mode 100644 index c326a0b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/nf.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ng.svg.br b/CatherineLynwood/wwwroot/images/flags/ng.svg.br deleted file mode 100644 index 39315bd..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ng.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ng.svg.gz b/CatherineLynwood/wwwroot/images/flags/ng.svg.gz deleted file mode 100644 index 5f6185b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ng.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ni.svg.br b/CatherineLynwood/wwwroot/images/flags/ni.svg.br deleted file mode 100644 index c169c10..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ni.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ni.svg.gz b/CatherineLynwood/wwwroot/images/flags/ni.svg.gz deleted file mode 100644 index bdb3fbf..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ni.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/nl.svg.br b/CatherineLynwood/wwwroot/images/flags/nl.svg.br deleted file mode 100644 index 93f34cb..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/nl.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/nl.svg.gz b/CatherineLynwood/wwwroot/images/flags/nl.svg.gz deleted file mode 100644 index de9149e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/nl.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/no.svg.br b/CatherineLynwood/wwwroot/images/flags/no.svg.br deleted file mode 100644 index 6760680..0000000 --- a/CatherineLynwood/wwwroot/images/flags/no.svg.br +++ /dev/null @@ -1 +0,0 @@ -=`ՍO'NJH'O7<f[̃g LK!by_67M(IURS-̗?_Yʫ&`ЕJ'K@ Opwf]^'I~d޻&Dka$2>Y;Н!!1M \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/images/flags/no.svg.gz b/CatherineLynwood/wwwroot/images/flags/no.svg.gz deleted file mode 100644 index d822e63..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/no.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/np.svg.br b/CatherineLynwood/wwwroot/images/flags/np.svg.br deleted file mode 100644 index e25f4bd..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/np.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/np.svg.gz b/CatherineLynwood/wwwroot/images/flags/np.svg.gz deleted file mode 100644 index 012750f..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/np.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/nr.svg.br b/CatherineLynwood/wwwroot/images/flags/nr.svg.br deleted file mode 100644 index a85218a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/nr.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/nr.svg.gz b/CatherineLynwood/wwwroot/images/flags/nr.svg.gz deleted file mode 100644 index 2f9db94..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/nr.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/nu.svg.br b/CatherineLynwood/wwwroot/images/flags/nu.svg.br deleted file mode 100644 index 908dd0f..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/nu.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/nu.svg.gz b/CatherineLynwood/wwwroot/images/flags/nu.svg.gz deleted file mode 100644 index 477b391..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/nu.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/nz.svg.br b/CatherineLynwood/wwwroot/images/flags/nz.svg.br deleted file mode 100644 index c0c756f..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/nz.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/nz.svg.gz b/CatherineLynwood/wwwroot/images/flags/nz.svg.gz deleted file mode 100644 index 18d87e5..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/nz.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/om.svg.br b/CatherineLynwood/wwwroot/images/flags/om.svg.br deleted file mode 100644 index 8cf4a3b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/om.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/om.svg.gz b/CatherineLynwood/wwwroot/images/flags/om.svg.gz deleted file mode 100644 index 5eafe1f..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/om.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/pa.svg.br b/CatherineLynwood/wwwroot/images/flags/pa.svg.br deleted file mode 100644 index f787789..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/pa.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/pa.svg.gz b/CatherineLynwood/wwwroot/images/flags/pa.svg.gz deleted file mode 100644 index 627cee8..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/pa.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/pc.svg.br b/CatherineLynwood/wwwroot/images/flags/pc.svg.br deleted file mode 100644 index 469a855..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/pc.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/pc.svg.gz b/CatherineLynwood/wwwroot/images/flags/pc.svg.gz deleted file mode 100644 index f3a239c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/pc.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/pe.svg.br b/CatherineLynwood/wwwroot/images/flags/pe.svg.br deleted file mode 100644 index d274dba..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/pe.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/pe.svg.gz b/CatherineLynwood/wwwroot/images/flags/pe.svg.gz deleted file mode 100644 index 1f8a565..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/pe.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/pf.svg.br b/CatherineLynwood/wwwroot/images/flags/pf.svg.br deleted file mode 100644 index 66884eb..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/pf.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/pf.svg.gz b/CatherineLynwood/wwwroot/images/flags/pf.svg.gz deleted file mode 100644 index 6371900..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/pf.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/pg.svg.br b/CatherineLynwood/wwwroot/images/flags/pg.svg.br deleted file mode 100644 index 4faeecf..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/pg.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/pg.svg.gz b/CatherineLynwood/wwwroot/images/flags/pg.svg.gz deleted file mode 100644 index 7e2199a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/pg.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ph.svg.br b/CatherineLynwood/wwwroot/images/flags/ph.svg.br deleted file mode 100644 index ad67984..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ph.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ph.svg.gz b/CatherineLynwood/wwwroot/images/flags/ph.svg.gz deleted file mode 100644 index 7462949..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ph.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/pk.svg.br b/CatherineLynwood/wwwroot/images/flags/pk.svg.br deleted file mode 100644 index f0346fd..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/pk.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/pk.svg.gz b/CatherineLynwood/wwwroot/images/flags/pk.svg.gz deleted file mode 100644 index 067c5d7..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/pk.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/pl.svg.br b/CatherineLynwood/wwwroot/images/flags/pl.svg.br deleted file mode 100644 index 2781a97..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/pl.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/pl.svg.gz b/CatherineLynwood/wwwroot/images/flags/pl.svg.gz deleted file mode 100644 index e15cffa..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/pl.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/pm.svg.br b/CatherineLynwood/wwwroot/images/flags/pm.svg.br deleted file mode 100644 index 50d4191..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/pm.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/pm.svg.gz b/CatherineLynwood/wwwroot/images/flags/pm.svg.gz deleted file mode 100644 index 941a06b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/pm.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/pn.svg.br b/CatherineLynwood/wwwroot/images/flags/pn.svg.br deleted file mode 100644 index 7e57ec0..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/pn.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/pn.svg.gz b/CatherineLynwood/wwwroot/images/flags/pn.svg.gz deleted file mode 100644 index 740d85d..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/pn.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/pr.svg.br b/CatherineLynwood/wwwroot/images/flags/pr.svg.br deleted file mode 100644 index b27f7a9..0000000 --- a/CatherineLynwood/wwwroot/images/flags/pr.svg.br +++ /dev/null @@ -1,3 +0,0 @@ -p wǔ -G#6/Ln+7`w (T&2氖zK}e<$~ںcr?f-)d\i۪lt#/cl9u~׻0ij]`&rd`XN%vfk}ľM *:P2H/M?ve0KV2-y2XtVfTwHJXs16M31eRW9Yv;+H D޺$E!DtULJ\ٞ㦬9{'ĵL:e U"qT\^ $$F}tJ15.4 -߬*)#Y&m3>eYB.s{4@7ZO_$4 \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/images/flags/sl.svg.gz b/CatherineLynwood/wwwroot/images/flags/sl.svg.gz deleted file mode 100644 index 14393f2..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/sl.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/sm.svg.br b/CatherineLynwood/wwwroot/images/flags/sm.svg.br deleted file mode 100644 index c5e7429..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/sm.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/sm.svg.gz b/CatherineLynwood/wwwroot/images/flags/sm.svg.gz deleted file mode 100644 index 712710e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/sm.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/sn.svg.br b/CatherineLynwood/wwwroot/images/flags/sn.svg.br deleted file mode 100644 index 7b0cd1d..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/sn.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/sn.svg.gz b/CatherineLynwood/wwwroot/images/flags/sn.svg.gz deleted file mode 100644 index 17965c0..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/sn.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/so.svg.br b/CatherineLynwood/wwwroot/images/flags/so.svg.br deleted file mode 100644 index a05023e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/so.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/so.svg.gz b/CatherineLynwood/wwwroot/images/flags/so.svg.gz deleted file mode 100644 index 0057fa7..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/so.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/sr.svg.br b/CatherineLynwood/wwwroot/images/flags/sr.svg.br deleted file mode 100644 index de58184..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/sr.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/sr.svg.gz b/CatherineLynwood/wwwroot/images/flags/sr.svg.gz deleted file mode 100644 index 4e3398a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/sr.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ss.svg.br b/CatherineLynwood/wwwroot/images/flags/ss.svg.br deleted file mode 100644 index a4875cf..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ss.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ss.svg.gz b/CatherineLynwood/wwwroot/images/flags/ss.svg.gz deleted file mode 100644 index 1e40720..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ss.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/st.svg.br b/CatherineLynwood/wwwroot/images/flags/st.svg.br deleted file mode 100644 index f1ad06b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/st.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/st.svg.gz b/CatherineLynwood/wwwroot/images/flags/st.svg.gz deleted file mode 100644 index fcec477..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/st.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/sv.svg.br b/CatherineLynwood/wwwroot/images/flags/sv.svg.br deleted file mode 100644 index f44ac67..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/sv.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/sv.svg.gz b/CatherineLynwood/wwwroot/images/flags/sv.svg.gz deleted file mode 100644 index f2784ce..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/sv.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/sx.svg.br b/CatherineLynwood/wwwroot/images/flags/sx.svg.br deleted file mode 100644 index 5132b62..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/sx.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/sx.svg.gz b/CatherineLynwood/wwwroot/images/flags/sx.svg.gz deleted file mode 100644 index 3f01606..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/sx.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/sy.svg.br b/CatherineLynwood/wwwroot/images/flags/sy.svg.br deleted file mode 100644 index a83f310..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/sy.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/sy.svg.gz b/CatherineLynwood/wwwroot/images/flags/sy.svg.gz deleted file mode 100644 index d44bfc2..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/sy.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/sz.svg.br b/CatherineLynwood/wwwroot/images/flags/sz.svg.br deleted file mode 100644 index 7d45870..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/sz.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/sz.svg.gz b/CatherineLynwood/wwwroot/images/flags/sz.svg.gz deleted file mode 100644 index b3af70c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/sz.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tc.svg.br b/CatherineLynwood/wwwroot/images/flags/tc.svg.br deleted file mode 100644 index db138bd..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tc.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tc.svg.gz b/CatherineLynwood/wwwroot/images/flags/tc.svg.gz deleted file mode 100644 index 26e17e6..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tc.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/td.svg.br b/CatherineLynwood/wwwroot/images/flags/td.svg.br deleted file mode 100644 index c1fa5e2..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/td.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/td.svg.gz b/CatherineLynwood/wwwroot/images/flags/td.svg.gz deleted file mode 100644 index 6ea749b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/td.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tf.svg.br b/CatherineLynwood/wwwroot/images/flags/tf.svg.br deleted file mode 100644 index 7197256..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tf.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tf.svg.gz b/CatherineLynwood/wwwroot/images/flags/tf.svg.gz deleted file mode 100644 index 5fc9153..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tf.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tg.svg.br b/CatherineLynwood/wwwroot/images/flags/tg.svg.br deleted file mode 100644 index d852b4e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tg.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tg.svg.gz b/CatherineLynwood/wwwroot/images/flags/tg.svg.gz deleted file mode 100644 index 6aa5725..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tg.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/th.svg.br b/CatherineLynwood/wwwroot/images/flags/th.svg.br deleted file mode 100644 index b7f2b0f..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/th.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/th.svg.gz b/CatherineLynwood/wwwroot/images/flags/th.svg.gz deleted file mode 100644 index feec9b6..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/th.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tj.svg.br b/CatherineLynwood/wwwroot/images/flags/tj.svg.br deleted file mode 100644 index 47b5cf2..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tj.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tj.svg.gz b/CatherineLynwood/wwwroot/images/flags/tj.svg.gz deleted file mode 100644 index b75184e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tj.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tk.svg.br b/CatherineLynwood/wwwroot/images/flags/tk.svg.br deleted file mode 100644 index 4af866b..0000000 --- a/CatherineLynwood/wwwroot/images/flags/tk.svg.br +++ /dev/null @@ -1,2 +0,0 @@ - nY&sTt@Ьu~- '6֤l |b6c>:-G;_}Jufʳ&wgSjsLmO[|u\Ny  R¡d5Dίb3NM dzšy&f 5~7#8obdݷ][5pb'f,'$wO6X>pN.-2 -`9_ ub[dFvYKيo?N1:;~=f\4(I40os BdjcDY;6,Tmm'3GIe0ִǔX5x:jֶio \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/images/flags/tk.svg.gz b/CatherineLynwood/wwwroot/images/flags/tk.svg.gz deleted file mode 100644 index 11ffd17..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tk.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tl.svg.br b/CatherineLynwood/wwwroot/images/flags/tl.svg.br deleted file mode 100644 index d6e8549..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tl.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tl.svg.gz b/CatherineLynwood/wwwroot/images/flags/tl.svg.gz deleted file mode 100644 index 58004dc..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tl.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tm.svg.br b/CatherineLynwood/wwwroot/images/flags/tm.svg.br deleted file mode 100644 index 1477c50..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tm.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tm.svg.gz b/CatherineLynwood/wwwroot/images/flags/tm.svg.gz deleted file mode 100644 index 9161485..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tm.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tn.svg.br b/CatherineLynwood/wwwroot/images/flags/tn.svg.br deleted file mode 100644 index f7a9dfa..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tn.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tn.svg.gz b/CatherineLynwood/wwwroot/images/flags/tn.svg.gz deleted file mode 100644 index 54a0f1c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tn.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/to.svg.br b/CatherineLynwood/wwwroot/images/flags/to.svg.br deleted file mode 100644 index 3a3cc59..0000000 --- a/CatherineLynwood/wwwroot/images/flags/to.svg.br +++ /dev/null @@ -1 +0,0 @@ -_ nvC~zeouX(N40>ziE- 400 )ln4i&mdu-#C5q-V2I /!7_oE>rV/˥-Na%'`4קR[5XXV3) z %`C 볡U)Qv2Vڔ7[Djޞ, \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/images/flags/to.svg.gz b/CatherineLynwood/wwwroot/images/flags/to.svg.gz deleted file mode 100644 index 5be45a3..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/to.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tr.svg.br b/CatherineLynwood/wwwroot/images/flags/tr.svg.br deleted file mode 100644 index 8ec6f75..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tr.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tr.svg.gz b/CatherineLynwood/wwwroot/images/flags/tr.svg.gz deleted file mode 100644 index df667ad..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tr.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tt.svg.br b/CatherineLynwood/wwwroot/images/flags/tt.svg.br deleted file mode 100644 index dbd5d71..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tt.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tt.svg.gz b/CatherineLynwood/wwwroot/images/flags/tt.svg.gz deleted file mode 100644 index 91c5231..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tt.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tv.svg.br b/CatherineLynwood/wwwroot/images/flags/tv.svg.br deleted file mode 100644 index 006fce6..0000000 --- a/CatherineLynwood/wwwroot/images/flags/tv.svg.br +++ /dev/null @@ -1,4 +0,0 @@ - , -lc B,?l% i?qѡ!Jn Yj -[yr; +@#v?Z/Z`QEіMQt<[uõba?IHClC!l.'U/"in}:j̴Ex`1/·GVo"]w 8+y#MxF^J70ť+AיdgÝ6揊4Ґ ŗW@&P5Գ̧!e,zBuz8m -m"M'uɲaz(0`%C$;@%f:vSM$5S`nXȏ$SiS| ѓe?G.Gc6;o#44-J0M !&=_<#aoȿVrt6^tyIg@uOyk9sùy%2P{+Ӳ&[Z?x>ZףFrKS` \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/images/flags/tv.svg.gz b/CatherineLynwood/wwwroot/images/flags/tv.svg.gz deleted file mode 100644 index 884ff0d..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tv.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tw.svg.br b/CatherineLynwood/wwwroot/images/flags/tw.svg.br deleted file mode 100644 index fdc47bd..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tw.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tw.svg.gz b/CatherineLynwood/wwwroot/images/flags/tw.svg.gz deleted file mode 100644 index fe2c4f1..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tw.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tz.svg.br b/CatherineLynwood/wwwroot/images/flags/tz.svg.br deleted file mode 100644 index 7faa2de..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tz.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/tz.svg.gz b/CatherineLynwood/wwwroot/images/flags/tz.svg.gz deleted file mode 100644 index 8662f29..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/tz.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ua.svg.br b/CatherineLynwood/wwwroot/images/flags/ua.svg.br deleted file mode 100644 index eb6bc03..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ua.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ua.svg.gz b/CatherineLynwood/wwwroot/images/flags/ua.svg.gz deleted file mode 100644 index f9f092c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ua.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ug.svg.br b/CatherineLynwood/wwwroot/images/flags/ug.svg.br deleted file mode 100644 index 8ca3a10..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ug.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ug.svg.gz b/CatherineLynwood/wwwroot/images/flags/ug.svg.gz deleted file mode 100644 index 4a30b36..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ug.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/uk.svg.br b/CatherineLynwood/wwwroot/images/flags/uk.svg.br deleted file mode 100644 index baf0ccd..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/uk.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/uk.svg.gz b/CatherineLynwood/wwwroot/images/flags/uk.svg.gz deleted file mode 100644 index 95ec9aa..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/uk.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/um.svg.br b/CatherineLynwood/wwwroot/images/flags/um.svg.br deleted file mode 100644 index e6c806b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/um.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/um.svg.gz b/CatherineLynwood/wwwroot/images/flags/um.svg.gz deleted file mode 100644 index caccdf2..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/um.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/un.svg.br b/CatherineLynwood/wwwroot/images/flags/un.svg.br deleted file mode 100644 index 82aab79..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/un.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/un.svg.gz b/CatherineLynwood/wwwroot/images/flags/un.svg.gz deleted file mode 100644 index 0a79d0b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/un.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/us.svg.br b/CatherineLynwood/wwwroot/images/flags/us.svg.br deleted file mode 100644 index 71bb8ce..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/us.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/us.svg.gz b/CatherineLynwood/wwwroot/images/flags/us.svg.gz deleted file mode 100644 index 893d92b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/us.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/uy.svg.br b/CatherineLynwood/wwwroot/images/flags/uy.svg.br deleted file mode 100644 index 09a892d..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/uy.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/uy.svg.gz b/CatherineLynwood/wwwroot/images/flags/uy.svg.gz deleted file mode 100644 index e628ff3..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/uy.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/uz.svg.br b/CatherineLynwood/wwwroot/images/flags/uz.svg.br deleted file mode 100644 index 8cccdd9..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/uz.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/uz.svg.gz b/CatherineLynwood/wwwroot/images/flags/uz.svg.gz deleted file mode 100644 index 0f20b34..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/uz.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/va.svg.br b/CatherineLynwood/wwwroot/images/flags/va.svg.br deleted file mode 100644 index e32243e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/va.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/va.svg.gz b/CatherineLynwood/wwwroot/images/flags/va.svg.gz deleted file mode 100644 index bf5ab3e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/va.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/vc.svg.br b/CatherineLynwood/wwwroot/images/flags/vc.svg.br deleted file mode 100644 index 387ab06..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/vc.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/vc.svg.gz b/CatherineLynwood/wwwroot/images/flags/vc.svg.gz deleted file mode 100644 index ddfaa16..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/vc.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ve.svg.br b/CatherineLynwood/wwwroot/images/flags/ve.svg.br deleted file mode 100644 index ea98b5b..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ve.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ve.svg.gz b/CatherineLynwood/wwwroot/images/flags/ve.svg.gz deleted file mode 100644 index a4f491a..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ve.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/vg.svg.br b/CatherineLynwood/wwwroot/images/flags/vg.svg.br deleted file mode 100644 index 25c80e8..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/vg.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/vg.svg.gz b/CatherineLynwood/wwwroot/images/flags/vg.svg.gz deleted file mode 100644 index 894aadd..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/vg.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/vi.svg.br b/CatherineLynwood/wwwroot/images/flags/vi.svg.br deleted file mode 100644 index 2fcea35..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/vi.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/vi.svg.gz b/CatherineLynwood/wwwroot/images/flags/vi.svg.gz deleted file mode 100644 index d0e52fc..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/vi.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/vn.svg.br b/CatherineLynwood/wwwroot/images/flags/vn.svg.br deleted file mode 100644 index 7fc0c2c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/vn.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/vn.svg.gz b/CatherineLynwood/wwwroot/images/flags/vn.svg.gz deleted file mode 100644 index 908a28f..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/vn.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/vu.svg.br b/CatherineLynwood/wwwroot/images/flags/vu.svg.br deleted file mode 100644 index a932d3c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/vu.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/vu.svg.gz b/CatherineLynwood/wwwroot/images/flags/vu.svg.gz deleted file mode 100644 index d6deb8e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/vu.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/wf.svg.br b/CatherineLynwood/wwwroot/images/flags/wf.svg.br deleted file mode 100644 index 702a4f0..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/wf.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/wf.svg.gz b/CatherineLynwood/wwwroot/images/flags/wf.svg.gz deleted file mode 100644 index 975124e..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/wf.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ws.svg.br b/CatherineLynwood/wwwroot/images/flags/ws.svg.br deleted file mode 100644 index 882dbc7..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ws.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ws.svg.gz b/CatherineLynwood/wwwroot/images/flags/ws.svg.gz deleted file mode 100644 index 759b690..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ws.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/xk.svg.br b/CatherineLynwood/wwwroot/images/flags/xk.svg.br deleted file mode 100644 index fb5915c..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/xk.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/xk.svg.gz b/CatherineLynwood/wwwroot/images/flags/xk.svg.gz deleted file mode 100644 index 9107d18..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/xk.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/xx.svg.br b/CatherineLynwood/wwwroot/images/flags/xx.svg.br deleted file mode 100644 index 521facb..0000000 --- a/CatherineLynwood/wwwroot/images/flags/xx.svg.br +++ /dev/null @@ -1 +0,0 @@ - \aJug/%H/D-ڷiY X<GEt=xGא}(}u`IN$%"!~D @e(0`0M])[H0:SqB>J !ɔ}qKr+Ě]hsO(*:(`m \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/images/flags/xx.svg.gz b/CatherineLynwood/wwwroot/images/flags/xx.svg.gz deleted file mode 100644 index c094681..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/xx.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ye.svg.br b/CatherineLynwood/wwwroot/images/flags/ye.svg.br deleted file mode 100644 index 66f7961..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ye.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/ye.svg.gz b/CatherineLynwood/wwwroot/images/flags/ye.svg.gz deleted file mode 100644 index 258a554..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/ye.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/yt.svg.br b/CatherineLynwood/wwwroot/images/flags/yt.svg.br deleted file mode 100644 index f2be578..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/yt.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/yt.svg.gz b/CatherineLynwood/wwwroot/images/flags/yt.svg.gz deleted file mode 100644 index ae1dabd..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/yt.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/za.svg.br b/CatherineLynwood/wwwroot/images/flags/za.svg.br deleted file mode 100644 index 7e1f2d2..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/za.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/za.svg.gz b/CatherineLynwood/wwwroot/images/flags/za.svg.gz deleted file mode 100644 index 83f3255..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/za.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/zm.svg.br b/CatherineLynwood/wwwroot/images/flags/zm.svg.br deleted file mode 100644 index 59f9847..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/zm.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/zm.svg.gz b/CatherineLynwood/wwwroot/images/flags/zm.svg.gz deleted file mode 100644 index 367585d..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/zm.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/zw.svg.br b/CatherineLynwood/wwwroot/images/flags/zw.svg.br deleted file mode 100644 index 73c17c9..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/zw.svg.br and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/flags/zw.svg.gz b/CatherineLynwood/wwwroot/images/flags/zw.svg.gz deleted file mode 100644 index 8c7e398..0000000 Binary files a/CatherineLynwood/wwwroot/images/flags/zw.svg.gz and /dev/null differ diff --git a/CatherineLynwood/wwwroot/images/folder-front.png b/CatherineLynwood/wwwroot/images/folder-front.png new file mode 100644 index 0000000..89a4874 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/folder-front.png differ diff --git a/CatherineLynwood/wwwroot/images/folder-rear.png b/CatherineLynwood/wwwroot/images/folder-rear.png new file mode 100644 index 0000000..b1cdc81 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/folder-rear.png differ diff --git a/CatherineLynwood/wwwroot/images/jpg/80k-word-limit-is-a-myth-400.jpg b/CatherineLynwood/wwwroot/images/jpg/80k-word-limit-is-a-myth-400.jpg new file mode 100644 index 0000000..10d386f Binary files /dev/null and b/CatherineLynwood/wwwroot/images/jpg/80k-word-limit-is-a-myth-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/jpg/bank-book-400.jpg b/CatherineLynwood/wwwroot/images/jpg/bank-book-400.jpg new file mode 100644 index 0000000..b41736b Binary files /dev/null and b/CatherineLynwood/wwwroot/images/jpg/bank-book-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/jpg/blackmail-note-400.jpg b/CatherineLynwood/wwwroot/images/jpg/blackmail-note-400.jpg new file mode 100644 index 0000000..026c6de Binary files /dev/null and b/CatherineLynwood/wwwroot/images/jpg/blackmail-note-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/jpg/cassette-tape-400.jpg b/CatherineLynwood/wwwroot/images/jpg/cassette-tape-400.jpg new file mode 100644 index 0000000..83d7ff5 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/jpg/cassette-tape-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/jpg/maggie-grant-36-400.jpg b/CatherineLynwood/wwwroot/images/jpg/maggie-grant-36-400.jpg new file mode 100644 index 0000000..d5c36bb Binary files /dev/null and b/CatherineLynwood/wwwroot/images/jpg/maggie-grant-36-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/jpg/maggie-grant-evidence-400.jpg b/CatherineLynwood/wwwroot/images/jpg/maggie-grant-evidence-400.jpg new file mode 100644 index 0000000..fbe38c0 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/jpg/maggie-grant-evidence-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/jpg/simon-jones-mug-shot-400.jpg b/CatherineLynwood/wwwroot/images/jpg/simon-jones-mug-shot-400.jpg new file mode 100644 index 0000000..95beff5 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/jpg/simon-jones-mug-shot-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/jpg/sophie-jones-nightclub-400.jpg b/CatherineLynwood/wwwroot/images/jpg/sophie-jones-nightclub-400.jpg new file mode 100644 index 0000000..854cfe4 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/jpg/sophie-jones-nightclub-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/jpg/sophie-jones-street-shot-400.jpg b/CatherineLynwood/wwwroot/images/jpg/sophie-jones-street-shot-400.jpg new file mode 100644 index 0000000..91408a4 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/jpg/sophie-jones-street-shot-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/jpg/the-alpha-flame-discovery-audiobook-400.jpg b/CatherineLynwood/wwwroot/images/jpg/the-alpha-flame-discovery-audiobook-400.jpg new file mode 100644 index 0000000..13371bc Binary files /dev/null and b/CatherineLynwood/wwwroot/images/jpg/the-alpha-flame-discovery-audiobook-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/jpg/the-alpha-flame-reckoning-cover-400.jpg b/CatherineLynwood/wwwroot/images/jpg/the-alpha-flame-reckoning-cover-400.jpg index df0811d..667fc96 100644 Binary files a/CatherineLynwood/wwwroot/images/jpg/the-alpha-flame-reckoning-cover-400.jpg and b/CatherineLynwood/wwwroot/images/jpg/the-alpha-flame-reckoning-cover-400.jpg differ diff --git a/CatherineLynwood/wwwroot/images/maggie-grant-evidence.png b/CatherineLynwood/wwwroot/images/maggie-grant-evidence.png new file mode 100644 index 0000000..1da473b Binary files /dev/null and b/CatherineLynwood/wwwroot/images/maggie-grant-evidence.png differ diff --git a/CatherineLynwood/wwwroot/images/simon-jones-mug-shot.png b/CatherineLynwood/wwwroot/images/simon-jones-mug-shot.png new file mode 100644 index 0000000..c882e83 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/simon-jones-mug-shot.png differ diff --git a/CatherineLynwood/wwwroot/images/sophie-jones-nightclub.png b/CatherineLynwood/wwwroot/images/sophie-jones-nightclub.png new file mode 100644 index 0000000..b27e84e Binary files /dev/null and b/CatherineLynwood/wwwroot/images/sophie-jones-nightclub.png differ diff --git a/CatherineLynwood/wwwroot/images/sophie-jones-street-shot.png b/CatherineLynwood/wwwroot/images/sophie-jones-street-shot.png new file mode 100644 index 0000000..24839cd Binary files /dev/null and b/CatherineLynwood/wwwroot/images/sophie-jones-street-shot.png differ diff --git a/CatherineLynwood/wwwroot/images/the-alpha-flame-discovery-audiobook.png b/CatherineLynwood/wwwroot/images/the-alpha-flame-discovery-audiobook.png new file mode 100644 index 0000000..88f61e3 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/the-alpha-flame-discovery-audiobook.png differ diff --git a/CatherineLynwood/wwwroot/images/the-alpha-flame-reckoning-cover.png b/CatherineLynwood/wwwroot/images/the-alpha-flame-reckoning-cover.png index 5d51b09..7e80ec4 100644 Binary files a/CatherineLynwood/wwwroot/images/the-alpha-flame-reckoning-cover.png and b/CatherineLynwood/wwwroot/images/the-alpha-flame-reckoning-cover.png differ diff --git a/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-1200.webp b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-1200.webp new file mode 100644 index 0000000..3f7464b Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-1200.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-1400.webp b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-1400.webp new file mode 100644 index 0000000..82bc838 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-1400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-172.webp b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-172.webp new file mode 100644 index 0000000..92799c4 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-172.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-1920.webp b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-1920.webp new file mode 100644 index 0000000..52d678d Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-1920.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-230.webp b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-230.webp new file mode 100644 index 0000000..3188053 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-230.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-288.webp b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-288.webp new file mode 100644 index 0000000..b28871c Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-288.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-297.webp b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-297.webp new file mode 100644 index 0000000..e857e32 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-297.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-360.webp b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-360.webp new file mode 100644 index 0000000..78e1066 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-360.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-384.webp b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-384.webp new file mode 100644 index 0000000..45738ce Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-384.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-400.webp b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-400.webp new file mode 100644 index 0000000..c4df2d6 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-420.webp b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-420.webp new file mode 100644 index 0000000..50248f0 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-420.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-496.webp b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-496.webp new file mode 100644 index 0000000..3425d9a Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-496.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-576.webp b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-576.webp new file mode 100644 index 0000000..e1515b3 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-600.webp b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-600.webp new file mode 100644 index 0000000..c20f8ab Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-600.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-700.webp b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-700.webp new file mode 100644 index 0000000..1cc6789 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-700.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-768.webp b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-768.webp new file mode 100644 index 0000000..2babfa7 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-768.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-960.webp b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-960.webp new file mode 100644 index 0000000..f3b75f5 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-960.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-992.webp b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-992.webp new file mode 100644 index 0000000..f5c776c Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/80k-word-limit-is-a-myth-992.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/bank-book-1200.webp b/CatherineLynwood/wwwroot/images/webp/bank-book-1200.webp new file mode 100644 index 0000000..726d7d5 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/bank-book-1200.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/bank-book-1400.webp b/CatherineLynwood/wwwroot/images/webp/bank-book-1400.webp new file mode 100644 index 0000000..9f94bf1 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/bank-book-1400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/bank-book-172.webp b/CatherineLynwood/wwwroot/images/webp/bank-book-172.webp new file mode 100644 index 0000000..3055d57 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/bank-book-172.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/bank-book-1920.webp b/CatherineLynwood/wwwroot/images/webp/bank-book-1920.webp new file mode 100644 index 0000000..2e8e418 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/bank-book-1920.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/bank-book-230.webp b/CatherineLynwood/wwwroot/images/webp/bank-book-230.webp new file mode 100644 index 0000000..9994f67 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/bank-book-230.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/bank-book-297.webp b/CatherineLynwood/wwwroot/images/webp/bank-book-297.webp new file mode 100644 index 0000000..da15802 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/bank-book-297.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/bank-book-360.webp b/CatherineLynwood/wwwroot/images/webp/bank-book-360.webp new file mode 100644 index 0000000..71b71be Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/bank-book-360.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/bank-book-400.webp b/CatherineLynwood/wwwroot/images/webp/bank-book-400.webp new file mode 100644 index 0000000..f60a939 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/bank-book-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/bank-book-420.webp b/CatherineLynwood/wwwroot/images/webp/bank-book-420.webp new file mode 100644 index 0000000..1e12b2a Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/bank-book-420.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/bank-book-576.webp b/CatherineLynwood/wwwroot/images/webp/bank-book-576.webp new file mode 100644 index 0000000..1d9f4b8 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/bank-book-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/bank-book-768.webp b/CatherineLynwood/wwwroot/images/webp/bank-book-768.webp new file mode 100644 index 0000000..cea15de Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/bank-book-768.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/bank-book-992.webp b/CatherineLynwood/wwwroot/images/webp/bank-book-992.webp new file mode 100644 index 0000000..0fb8ac9 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/bank-book-992.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/blackmail-note-1200.webp b/CatherineLynwood/wwwroot/images/webp/blackmail-note-1200.webp new file mode 100644 index 0000000..7b8cfb2 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/blackmail-note-1200.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/blackmail-note-1400.webp b/CatherineLynwood/wwwroot/images/webp/blackmail-note-1400.webp new file mode 100644 index 0000000..1434f1f Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/blackmail-note-1400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/blackmail-note-172.webp b/CatherineLynwood/wwwroot/images/webp/blackmail-note-172.webp new file mode 100644 index 0000000..4ede198 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/blackmail-note-172.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/blackmail-note-1920.webp b/CatherineLynwood/wwwroot/images/webp/blackmail-note-1920.webp new file mode 100644 index 0000000..dab2e06 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/blackmail-note-1920.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/blackmail-note-230.webp b/CatherineLynwood/wwwroot/images/webp/blackmail-note-230.webp new file mode 100644 index 0000000..09add81 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/blackmail-note-230.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/blackmail-note-297.webp b/CatherineLynwood/wwwroot/images/webp/blackmail-note-297.webp new file mode 100644 index 0000000..aa9b1e3 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/blackmail-note-297.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/blackmail-note-360.webp b/CatherineLynwood/wwwroot/images/webp/blackmail-note-360.webp new file mode 100644 index 0000000..ab6622d Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/blackmail-note-360.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/blackmail-note-400.webp b/CatherineLynwood/wwwroot/images/webp/blackmail-note-400.webp new file mode 100644 index 0000000..7a88e6c Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/blackmail-note-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/blackmail-note-420.webp b/CatherineLynwood/wwwroot/images/webp/blackmail-note-420.webp new file mode 100644 index 0000000..41b3ede Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/blackmail-note-420.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/blackmail-note-576.webp b/CatherineLynwood/wwwroot/images/webp/blackmail-note-576.webp new file mode 100644 index 0000000..142ea54 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/blackmail-note-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/blackmail-note-768.webp b/CatherineLynwood/wwwroot/images/webp/blackmail-note-768.webp new file mode 100644 index 0000000..c35edf9 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/blackmail-note-768.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/blackmail-note-992.webp b/CatherineLynwood/wwwroot/images/webp/blackmail-note-992.webp new file mode 100644 index 0000000..57f2101 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/blackmail-note-992.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/cassette-tape-1200.webp b/CatherineLynwood/wwwroot/images/webp/cassette-tape-1200.webp new file mode 100644 index 0000000..8b2dd22 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/cassette-tape-1200.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/cassette-tape-1400.webp b/CatherineLynwood/wwwroot/images/webp/cassette-tape-1400.webp new file mode 100644 index 0000000..8142a71 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/cassette-tape-1400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/cassette-tape-172.webp b/CatherineLynwood/wwwroot/images/webp/cassette-tape-172.webp new file mode 100644 index 0000000..b639357 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/cassette-tape-172.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/cassette-tape-1920.webp b/CatherineLynwood/wwwroot/images/webp/cassette-tape-1920.webp new file mode 100644 index 0000000..a0280b3 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/cassette-tape-1920.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/cassette-tape-230.webp b/CatherineLynwood/wwwroot/images/webp/cassette-tape-230.webp new file mode 100644 index 0000000..109ee46 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/cassette-tape-230.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/cassette-tape-297.webp b/CatherineLynwood/wwwroot/images/webp/cassette-tape-297.webp new file mode 100644 index 0000000..499a16d Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/cassette-tape-297.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/cassette-tape-360.webp b/CatherineLynwood/wwwroot/images/webp/cassette-tape-360.webp new file mode 100644 index 0000000..dd29b15 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/cassette-tape-360.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/cassette-tape-400.webp b/CatherineLynwood/wwwroot/images/webp/cassette-tape-400.webp new file mode 100644 index 0000000..56cfcf4 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/cassette-tape-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/cassette-tape-420.webp b/CatherineLynwood/wwwroot/images/webp/cassette-tape-420.webp new file mode 100644 index 0000000..dab802b Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/cassette-tape-420.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/cassette-tape-576.webp b/CatherineLynwood/wwwroot/images/webp/cassette-tape-576.webp new file mode 100644 index 0000000..652179d Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/cassette-tape-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/cassette-tape-768.webp b/CatherineLynwood/wwwroot/images/webp/cassette-tape-768.webp new file mode 100644 index 0000000..42a5d89 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/cassette-tape-768.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/cassette-tape-992.webp b/CatherineLynwood/wwwroot/images/webp/cassette-tape-992.webp new file mode 100644 index 0000000..6d9b85f Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/cassette-tape-992.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/folder-front-inside.webp b/CatherineLynwood/wwwroot/images/webp/folder-front-inside.webp new file mode 100644 index 0000000..832629c Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/folder-front-inside.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/folder-front.webp b/CatherineLynwood/wwwroot/images/webp/folder-front.webp new file mode 100644 index 0000000..580d276 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/folder-front.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/folder-rear.webp b/CatherineLynwood/wwwroot/images/webp/folder-rear.webp new file mode 100644 index 0000000..003146c Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/folder-rear.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-1200.webp b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-1200.webp new file mode 100644 index 0000000..64e7929 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-1200.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-1400.webp b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-1400.webp new file mode 100644 index 0000000..8a856f6 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-1400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-172.webp b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-172.webp new file mode 100644 index 0000000..fdf1efc Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-172.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-1920.webp b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-1920.webp new file mode 100644 index 0000000..9e917c0 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-1920.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-230.webp b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-230.webp new file mode 100644 index 0000000..f0aa1bf Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-230.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-297.webp b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-297.webp new file mode 100644 index 0000000..a3d0ff5 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-297.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-360.webp b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-360.webp new file mode 100644 index 0000000..37a8a43 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-360.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-400.webp b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-400.webp new file mode 100644 index 0000000..69394d3 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-420.webp b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-420.webp new file mode 100644 index 0000000..f24d569 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-420.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-576.webp b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-576.webp new file mode 100644 index 0000000..8e50f28 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-768.webp b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-768.webp new file mode 100644 index 0000000..bf9435d Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-768.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-992.webp b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-992.webp new file mode 100644 index 0000000..d5afc50 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/maggie-grant-36-992.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-288.webp b/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-288.webp new file mode 100644 index 0000000..cf161af Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-288.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-384.webp b/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-384.webp new file mode 100644 index 0000000..78fe400 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-384.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-400.webp b/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-400.webp new file mode 100644 index 0000000..8a8a645 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-496.webp b/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-496.webp new file mode 100644 index 0000000..1c51dc3 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-496.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-600.webp b/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-600.webp new file mode 100644 index 0000000..11a796f Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-600.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-700.webp b/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-700.webp new file mode 100644 index 0000000..928ddd5 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-700.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-960.webp b/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-960.webp new file mode 100644 index 0000000..3dd6650 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/maggie-grant-evidence-960.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-1200.webp b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-1200.webp new file mode 100644 index 0000000..f2cf815 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-1200.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-1400.webp b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-1400.webp new file mode 100644 index 0000000..0807089 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-1400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-172.webp b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-172.webp new file mode 100644 index 0000000..a8638dd Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-172.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-1920.webp b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-1920.webp new file mode 100644 index 0000000..7628218 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-1920.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-230.webp b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-230.webp new file mode 100644 index 0000000..ff04cb1 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-230.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-297.webp b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-297.webp new file mode 100644 index 0000000..97efba6 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-297.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-360.webp b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-360.webp new file mode 100644 index 0000000..134a64c Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-360.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-400.webp b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-400.webp new file mode 100644 index 0000000..5781bbc Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-420.webp b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-420.webp new file mode 100644 index 0000000..ef3e620 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-420.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-576.webp b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-576.webp new file mode 100644 index 0000000..077497b Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-768.webp b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-768.webp new file mode 100644 index 0000000..7821bae Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-768.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-992.webp b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-992.webp new file mode 100644 index 0000000..88f7fe4 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/simon-jones-mug-shot-992.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-288.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-288.webp new file mode 100644 index 0000000..59c5ed9 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-288.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-384.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-384.webp new file mode 100644 index 0000000..1411009 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-384.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-496.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-496.webp new file mode 100644 index 0000000..695e8a4 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-496.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-600.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-600.webp new file mode 100644 index 0000000..f14e987 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-600.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-700.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-700.webp new file mode 100644 index 0000000..fdabdd9 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-700.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-960.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-960.webp new file mode 100644 index 0000000..b05dcf9 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-960.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-1200.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-1200.webp new file mode 100644 index 0000000..b8bffcc Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-1200.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-1400.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-1400.webp new file mode 100644 index 0000000..53a8d94 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-1400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-1920.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-1920.webp new file mode 100644 index 0000000..eeb6722 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-1920.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-288.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-288.webp new file mode 100644 index 0000000..ca4fd97 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-288.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-384.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-384.webp new file mode 100644 index 0000000..37030c7 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-384.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-400.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-400.webp new file mode 100644 index 0000000..5ae7470 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-496.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-496.webp new file mode 100644 index 0000000..680406e Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-496.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-576.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-576.webp new file mode 100644 index 0000000..4a4e491 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-600.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-600.webp new file mode 100644 index 0000000..40e86f5 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-600.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-700.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-700.webp new file mode 100644 index 0000000..675069a Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-700.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-768.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-768.webp new file mode 100644 index 0000000..f01308b Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-768.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-960.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-960.webp new file mode 100644 index 0000000..89cdab6 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-960.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-992.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-992.webp new file mode 100644 index 0000000..efe1b42 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-nightclub-992.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-1200.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-1200.webp new file mode 100644 index 0000000..0a493f3 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-1200.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-1400.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-1400.webp new file mode 100644 index 0000000..73b5785 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-1400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-172.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-172.webp new file mode 100644 index 0000000..b7fdb39 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-172.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-1920.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-1920.webp new file mode 100644 index 0000000..5ab5adf Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-1920.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-230.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-230.webp new file mode 100644 index 0000000..3efbc11 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-230.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-297.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-297.webp new file mode 100644 index 0000000..37cba55 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-297.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-360.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-360.webp new file mode 100644 index 0000000..d6a311f Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-360.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-400.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-400.webp new file mode 100644 index 0000000..54ce136 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-420.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-420.webp new file mode 100644 index 0000000..b470f6d Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-420.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-576.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-576.webp new file mode 100644 index 0000000..90531e8 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-768.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-768.webp new file mode 100644 index 0000000..d72d4ed Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-768.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-992.webp b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-992.webp new file mode 100644 index 0000000..a711006 --- /dev/null +++ b/CatherineLynwood/wwwroot/images/webp/sophie-jones-street-shot-992.webp @@ -0,0 +1 @@ +RIFF \ No newline at end of file diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-115.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-115.webp new file mode 100644 index 0000000..b631d22 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-115.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-1200.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-1200.webp new file mode 100644 index 0000000..42485b3 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-1200.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-1400.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-1400.webp new file mode 100644 index 0000000..c9944ee Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-1400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-153.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-153.webp new file mode 100644 index 0000000..1b0c893 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-153.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-1920.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-1920.webp new file mode 100644 index 0000000..9bbde63 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-1920.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-198.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-198.webp new file mode 100644 index 0000000..9e72574 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-198.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-240.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-240.webp new file mode 100644 index 0000000..73f47a6 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-240.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-280.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-280.webp new file mode 100644 index 0000000..c4c54c4 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-280.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-384.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-384.webp new file mode 100644 index 0000000..33ecfff Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-384.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-400.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-400.webp new file mode 100644 index 0000000..20454d8 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-576.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-576.webp new file mode 100644 index 0000000..95fdee2 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-768.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-768.webp new file mode 100644 index 0000000..6bbfea7 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-768.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-992.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-992.webp new file mode 100644 index 0000000..e13141c Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-audiobook-992.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-cover-1200.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-cover-1200.webp new file mode 100644 index 0000000..8a976ca Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-cover-1200.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-cover-1400.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-cover-1400.webp new file mode 100644 index 0000000..98f15c3 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-cover-1400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-cover-1920.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-cover-1920.webp new file mode 100644 index 0000000..44768be Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-cover-1920.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-cover-576.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-cover-576.webp new file mode 100644 index 0000000..ca4efbd Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-cover-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-cover-768.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-cover-768.webp new file mode 100644 index 0000000..1bb2612 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-cover-768.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-cover-992.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-cover-992.webp new file mode 100644 index 0000000..ad090d0 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-discovery-cover-992.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-1200.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-1200.webp new file mode 100644 index 0000000..8f8c0b1 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-1200.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-1400.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-1400.webp new file mode 100644 index 0000000..1bd92cb Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-1400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-1920.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-1920.webp new file mode 100644 index 0000000..335faec Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-1920.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-288.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-288.webp index a5721b9..14ec955 100644 Binary files a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-288.webp and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-288.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-384.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-384.webp index a33eece..a6fbedc 100644 Binary files a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-384.webp and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-384.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-400.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-400.webp index 914e85f..e37d9dc 100644 Binary files a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-400.webp and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-496.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-496.webp index 4ac3ec1..41d27a9 100644 Binary files a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-496.webp and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-496.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-576.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-576.webp new file mode 100644 index 0000000..610a307 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-600.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-600.webp index 2b35b93..db909e7 100644 Binary files a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-600.webp and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-600.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-700.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-700.webp index 5f136f0..6e469b5 100644 Binary files a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-700.webp and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-700.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-768.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-768.webp new file mode 100644 index 0000000..b13f450 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-768.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-960.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-960.webp index 53c6020..7472c93 100644 Binary files a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-960.webp and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-960.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-992.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-992.webp new file mode 100644 index 0000000..c49309f Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-cover-992.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-overlay-1200.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-overlay-1200.webp new file mode 100644 index 0000000..3f15b58 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-overlay-1200.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-overlay-1400.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-overlay-1400.webp new file mode 100644 index 0000000..c3a9596 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-overlay-1400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-overlay-1920.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-overlay-1920.webp new file mode 100644 index 0000000..ffbdc9d Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-overlay-1920.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-overlay-576.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-overlay-576.webp new file mode 100644 index 0000000..e786b98 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-overlay-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-overlay-768.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-overlay-768.webp new file mode 100644 index 0000000..833e315 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-overlay-768.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-overlay-992.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-overlay-992.webp new file mode 100644 index 0000000..a2c6923 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-reckoning-overlay-992.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-redemption-cover-1200.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-redemption-cover-1200.webp new file mode 100644 index 0000000..c5615a1 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-redemption-cover-1200.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-redemption-cover-1400.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-redemption-cover-1400.webp new file mode 100644 index 0000000..7687c56 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-redemption-cover-1400.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-redemption-cover-1920.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-redemption-cover-1920.webp new file mode 100644 index 0000000..c5693f8 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-redemption-cover-1920.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-redemption-cover-576.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-redemption-cover-576.webp new file mode 100644 index 0000000..5a61cae Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-redemption-cover-576.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-redemption-cover-768.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-redemption-cover-768.webp new file mode 100644 index 0000000..10e2d04 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-redemption-cover-768.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-redemption-cover-992.webp b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-redemption-cover-992.webp new file mode 100644 index 0000000..933bca3 Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/the-alpha-flame-redemption-cover-992.webp differ diff --git a/CatherineLynwood/wwwroot/images/webp/walnut-desktop.webp b/CatherineLynwood/wwwroot/images/webp/walnut-desktop.webp new file mode 100644 index 0000000..198829a Binary files /dev/null and b/CatherineLynwood/wwwroot/images/webp/walnut-desktop.webp differ diff --git a/CatherineLynwood/wwwroot/service-worker.js b/CatherineLynwood/wwwroot/service-worker.js index 89920d6..d3eb1eb 100644 --- a/CatherineLynwood/wwwroot/service-worker.js +++ b/CatherineLynwood/wwwroot/service-worker.js @@ -1,9 +1,12 @@ -const CACHE_NAME = 'catherine-lynwood-v11'; -const urlsToCache = [ +const CACHE_NAME = 'catherine-lynwood-v12'; + +// Precache only the essentials. +// Note: pick ONE offline URL and be consistent. I’ll use /offline here. +const PRECACHE_URLS = [ '/', '/manifest.json', - '/css/site.css', // Update as needed - '/js/site.js', // Update as needed + '/css/site.css', + '/js/site.js', '/lib/jquery/dist/jquery.min.js', '/lib/bootstrap/dist/js/bootstrap.bundle.min.js', '/lib/jquery-validation/dist/jquery.validate.min.js', @@ -16,39 +19,75 @@ const urlsToCache = [ '/offline' ]; -// Install and pre-cache +// Install and precache self.addEventListener('install', (event) => { event.waitUntil( - caches.open(CACHE_NAME).then((cache) => { - return cache.addAll(urlsToCache); - }) + caches.open(CACHE_NAME).then((cache) => cache.addAll(PRECACHE_URLS)) ); + + // Optional but recommended: activate updated SW sooner. + self.skipWaiting(); }); // Activate and clean old caches self.addEventListener('activate', (event) => { - event.waitUntil( - caches.keys().then((cacheNames) => - Promise.all( - cacheNames.map((cacheName) => { - if (cacheName !== CACHE_NAME) { - return caches.delete(cacheName); - } - }) - ) - ) - ); + event.waitUntil((async () => { + const cacheNames = await caches.keys(); + await Promise.all( + cacheNames.map((name) => (name !== CACHE_NAME ? caches.delete(name) : null)) + ); + + // Take control of existing pages ASAP + await self.clients.claim(); + })()); }); -// Fetch: try cache, then network +// Helper: network-first strategy (good for HTML) +async function networkFirst(request) { + const cache = await caches.open(CACHE_NAME); + + try { + const fresh = await fetch(request); + // Only cache valid responses (avoid caching opaque errors) + if (fresh && fresh.status === 200) { + cache.put(request, fresh.clone()); + } + return fresh; + } catch (err) { + const cached = await cache.match(request); + return cached || cache.match('/offline'); + } +} + +// Helper: cache-first strategy (good for static assets) +async function cacheFirst(request) { + const cache = await caches.open(CACHE_NAME); + + const cached = await cache.match(request); + if (cached) return cached; + + const fresh = await fetch(request); + if (fresh && fresh.status === 200) { + cache.put(request, fresh.clone()); + } + return fresh; +} + self.addEventListener('fetch', (event) => { if (event.request.method !== 'GET') return; - event.respondWith( - caches.match(event.request).then((response) => - response || fetch(event.request).catch(() => - caches.match('/offline.html') - ) - ) - ); -}); + const req = event.request; + const url = new URL(req.url); + + // Only handle your own origin + if (url.origin !== self.location.origin) return; + + // If this is a navigation (page load), do network-first so HTML updates. + if (req.mode === 'navigate' || (req.headers.get('accept') || '').includes('text/html')) { + event.respondWith(networkFirst(req)); + return; + } + + // For everything else (css/js/images/fonts), do cache-first. + event.respondWith(cacheFirst(req)); +}); \ No newline at end of file