diff --git a/.gitignore b/.gitignore index 40b8d4b..6e255e2 100644 --- a/.gitignore +++ b/.gitignore @@ -53,3 +53,9 @@ npm-debug.log # OS files .DS_Store Thumbs.db + + +# Others +*.claude +*.mcp.json +e2e \ No newline at end of file diff --git a/BlazorGridExamples/BlazorGridExamples.csproj b/BlazorGridExamples/BlazorGridExamples.csproj index 22be4c6..edeeb61 100644 --- a/BlazorGridExamples/BlazorGridExamples.csproj +++ b/BlazorGridExamples/BlazorGridExamples.csproj @@ -8,7 +8,7 @@ - + diff --git a/BlazorGridExamples/Layout/NavMenu.razor b/BlazorGridExamples/Layout/NavMenu.razor index d76d0bf..acbf0b2 100644 --- a/BlazorGridExamples/Layout/NavMenu.razor +++ b/BlazorGridExamples/Layout/NavMenu.razor @@ -1,19 +1,26 @@ @inject NavigationManager NavigationManager +@inject IJSRuntime JS +@implements IDisposable +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.JSInterop
-
- @foreach (var tab in Tabs) - { -
-
-
- @tab.Title.ToUpper() + @if (!isFullscreen) + { +
+ @foreach (var tab in Tabs) + { +
+
+
+ @tab.Title.ToUpper() +
-
- } -
+ } +
+ } @if (CurrentTab != null) { @@ -26,22 +33,28 @@
Theme: @CurrentTab.Theme
-
Mode: Light
+
Mode: @CurrentTab.Mode
- - - Download - - - - 👁 - View More - - - - @(isFullscreen ? "⊗" : "⛶") - @(isFullscreen ? "Exit Fullscreen" : "Fullscreen") - + + + + Download + + + + + + + View More + + + + + + + @(isFullscreen ? "Exit Fullscreen" : "Fullscreen") + +
@@ -54,6 +67,13 @@ private bool isFullscreen = false; + private const string DownloadSvg = """"""; + private const string ViewMoreSvg = """"""; + private const string FullScreenSvg = """"""; + private const string ExitFullScreenSvg = """"""; + private DotNetObjectReference? _selfRef; + private IgbIcon? iconRef; + private class TabInfo { @@ -61,40 +81,50 @@ public string Title { get; set; } = ""; public string Description { get; set; } = ""; public string Theme { get; set; } = "Bootstrap"; + public string Mode { get; set; } = "Light"; } private List Tabs = new() { new TabInfo { - Key = "erp-inventory", + Key = "inventory", Title = "ERP/Inventory", - Description = "Sample app for ERP/Inventory handling large data volumes using Hierarchical Grid." + Description = "Tracking and managing quantity, location and details of products in stock.", + Theme = "Material", + Mode = "Light" }, new TabInfo { Key = "hr-portal", Title = "Org Chart/HR Portal", - Description = "Example featuring a Tree Grid to manage and display employee information.", - Theme = "Fluent" + Description = "Displaying company's hierarchical structure and showing employees data.", + Theme = "Fluent", + Mode = "Light" }, new TabInfo { - Key = "finance-grid", + Key = "finance", Title = "Financial Portfolio", - Description = "An example app showing assets, profit, and loss analyses with live data updates and high-performance Data Grid." + Description = "Asset tracking, profit and loss analysis, featuring interactive dynamic charts.", + Theme = "Bootstrap", + Mode = "Light" }, new TabInfo { - Key = "sales-grid", + Key = "sales", Title = "Sales Dashboard", - Description = "Sales app example with summaries by region, product, and time periods using Pivot Grid." + Description = "For trend analysis, KPIs and viewing sales summaries by region, product, etc.", + Theme = "Indigo", + Mode = "Light" }, new TabInfo { - Key = "fleet-management", + Key = "fleet", Title = "Fleet Management", - Description = "Sample app with a Master-Detail Grid for managing vehicle acquisition, operations, and maintenance." + Description = "A master-detail grid for managing vehicle acquisition, operations, and maintenance.", + Theme = "Material", + Mode = "Dark" } }; @@ -102,35 +132,80 @@ private bool IsActive(string key) { - var currentPath = new Uri(NavigationManager.Uri).LocalPath; - return currentPath.Contains(key, StringComparison.OrdinalIgnoreCase); + var path = new Uri(NavigationManager.Uri).LocalPath; + var current = path.Contains("/home/", StringComparison.OrdinalIgnoreCase) + ? path.Split("/home/")[^1].TrimEnd('/') + : "inventory"; + return string.Equals(current, key, StringComparison.OrdinalIgnoreCase); } private void NavigateToSample(string key) { - NavigationManager.NavigateTo($"/{key}"); + NavigationManager.NavigateTo($"/home/{key}"); + } + + protected override void OnInitialized() + { + // The NavMenu lives in the layout and isn't re-rendered automatically on route + // changes, so the active tab / current-tab-info would go stale. Re-render on navigation. + NavigationManager.LocationChanged += HandleLocationChanged; + } + + private void HandleLocationChanged(object? sender, LocationChangedEventArgs e) + { + InvokeAsync(StateHasChanged); } private async Task DownloadSample(string key) { - // TODO: Implement download functionality - // This would zip the sample project and download it - await Task.CompletedTask; + await JS.InvokeVoidAsync("shellInterop.download", + "https://github.com/IgniteUI/blazor-grid-examples/archive/refs/heads/master.zip"); + } + + private async Task ViewMore(string key) + { + await JS.InvokeVoidAsync("shellInterop.openTab", + "https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/grids/grid/overview"); + } + + private async Task ToggleFullscreen() + { + // Browser fullscreen is toggled here; isFullscreen is then synced by the + // fullscreenchange listener so pressing Esc also restores the tab strip. + await JS.InvokeVoidAsync("shellInterop.toggleFullscreen"); + } + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + if (firstRender) + { + _selfRef = DotNetObjectReference.Create(this); + await JS.InvokeVoidAsync("shellInterop.registerFullscreenListener", _selfRef); + + if (iconRef is not null) + { + await iconRef.EnsureReady(); + await iconRef.RegisterIconFromTextAsync("file_download", DownloadSvg, "material"); + await iconRef.RegisterIconFromTextAsync("view_more", ViewMoreSvg, "material"); + await iconRef.RegisterIconFromTextAsync("full_screen", FullScreenSvg, "material"); + await iconRef.RegisterIconFromTextAsync("exit_full_screen", ExitFullScreenSvg, "material"); + } + } } - private void ViewMore(string key) + [JSInvokable] + public void OnFullscreenChange(bool isFs) { - // Navigate to documentation or more info - var tab = Tabs.FirstOrDefault(t => t.Key == key); - if (tab != null) + if (isFullscreen != isFs) { - NavigationManager.NavigateTo($"https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/grids/grid/overview", true); + isFullscreen = isFs; + InvokeAsync(StateHasChanged); } } - private void ToggleFullscreen() + public void Dispose() { - isFullscreen = !isFullscreen; - // TODO: Implement actual fullscreen toggle using JS Interop + NavigationManager.LocationChanged -= HandleLocationChanged; + _selfRef?.Dispose(); } } diff --git a/BlazorGridExamples/Pages/ERPInventory.razor b/BlazorGridExamples/Pages/ERPInventory.razor deleted file mode 100644 index 246552e..0000000 --- a/BlazorGridExamples/Pages/ERPInventory.razor +++ /dev/null @@ -1,3 +0,0 @@ -@page "/erp-inventory" - - \ No newline at end of file diff --git a/BlazorGridExamples/Pages/FinanceGrid.razor b/BlazorGridExamples/Pages/FinanceGrid.razor deleted file mode 100644 index 94946d9..0000000 --- a/BlazorGridExamples/Pages/FinanceGrid.razor +++ /dev/null @@ -1,3 +0,0 @@ -@page "/finance-grid" - - \ No newline at end of file diff --git a/BlazorGridExamples/Pages/FleetManagement.razor b/BlazorGridExamples/Pages/FleetManagement.razor deleted file mode 100644 index fb7e4b0..0000000 --- a/BlazorGridExamples/Pages/FleetManagement.razor +++ /dev/null @@ -1,3 +0,0 @@ -@page "/fleet-management" - - \ No newline at end of file diff --git a/BlazorGridExamples/Pages/HRPortal.razor b/BlazorGridExamples/Pages/HRPortal.razor deleted file mode 100644 index 87fb0ad..0000000 --- a/BlazorGridExamples/Pages/HRPortal.razor +++ /dev/null @@ -1,4 +0,0 @@ -@page "/" -@page "/hr-portal" - - \ No newline at end of file diff --git a/BlazorGridExamples/Pages/SalesGrid.razor b/BlazorGridExamples/Pages/SalesGrid.razor deleted file mode 100644 index bbbb187..0000000 --- a/BlazorGridExamples/Pages/SalesGrid.razor +++ /dev/null @@ -1,3 +0,0 @@ -@page "/sales-grid" - - \ No newline at end of file diff --git a/BlazorGridExamples/Pages/SampleHost.razor b/BlazorGridExamples/Pages/SampleHost.razor new file mode 100644 index 0000000..ea9be28 --- /dev/null +++ b/BlazorGridExamples/Pages/SampleHost.razor @@ -0,0 +1,58 @@ +@page "/" +@page "/home" +@page "/home/{Sample?}" + +@* Single host for all five samples. Each sample is lazily mounted the first time its tab is + opened and then kept alive; switching tabs only toggles pane visibility, so the grids are + never destroyed/recreated and every revisit is instant. Lazy (not prewarmed) so background + grid-building never competes with the active view. *@ +
+ @if (_mounted.Contains("inventory")) + { +
+ +
+ } + @if (_mounted.Contains("hr-portal")) + { +
+ +
+ } + @if (_mounted.Contains("finance")) + { +
+ +
+ } + @if (_mounted.Contains("sales")) + { +
+ +
+ } + @if (_mounted.Contains("fleet")) + { +
+ +
+ } +
+ +@code { + [Parameter] public string? Sample { get; set; } + + private static readonly string[] AllKeys = { "inventory", "hr-portal", "finance", "sales", "fleet" }; + private readonly HashSet _mounted = new(); + private string Active = "inventory"; + + private string Hidden(string key) => Active == key ? "" : "sample-pane--hidden"; + + protected override void OnParametersSet() + { + var key = string.IsNullOrWhiteSpace(Sample) ? "inventory" : Sample.Trim().ToLowerInvariant(); + if (!AllKeys.Contains(key)) key = "inventory"; + Active = key; + _mounted.Add(key); // lazily mount the active tab on first visit; it stays mounted after + } +} diff --git a/BlazorGridExamples/Pages/SampleHost.razor.css b/BlazorGridExamples/Pages/SampleHost.razor.css new file mode 100644 index 0000000..2bf51bf --- /dev/null +++ b/BlazorGridExamples/Pages/SampleHost.razor.css @@ -0,0 +1,28 @@ +.sample-host { + position: relative; + /* Fill the router area so panes (and percentage-height grids inside them) have a + definite height to resolve against. */ + height: 100%; + /* Clip the off-screen inactive panes so they can't add phantom scrollbars. */ + overflow: hidden; +} + +/* Panes fill the host's height. Samples that size their grid with calc(100vh - N) (HR, Fleet) + are unaffected; samples that use height:100% (Finance, Sales) need this height chain to + reach #finance-section / #sales-section, otherwise the grid collapses to content height. */ +.sample-pane { + height: 100%; +} + +/* Inactive panes are moved fully off-screen rather than hidden with visibility:hidden -- + some Ignite UI parts (e.g. pivot value chips) force visibility:visible on themselves and + would bleed through over the active sample. Off-screen positioning can't be overridden by a + descendant, and it keeps the panes laid out at the same size, so prewarmed grids stay + measured and activating a pane needs no reflow (the switch is instant). */ +.sample-pane--hidden { + position: absolute; + top: 0; + left: -100000px; + width: 100%; + pointer-events: none; +} diff --git a/BlazorGridExamples/Program.cs b/BlazorGridExamples/Program.cs index 2f7a57c..be14295 100644 --- a/BlazorGridExamples/Program.cs +++ b/BlazorGridExamples/Program.cs @@ -16,13 +16,36 @@ // Register IgniteUI Blazor -builder.Services.AddIgniteUIBlazor(typeof(IgbIconModule)); +builder.Services.AddIgniteUIBlazor( + typeof(IgbIconModule), + typeof(IgbGridModule), + typeof(IgbAvatarModule), + typeof(IgbBadgeModule), + typeof(IgbButtonModule), + typeof(IgbTabsModule), + typeof(IgbCarouselModule), + typeof(IgbCategoryChartModule), + typeof(IgbPieChartModule), + typeof(IgbSelectModule), + typeof(IgbLinearProgressModule), + typeof(IgbInputModule), + typeof(IgbHierarchicalGridModule), + typeof(IgbRatingModule), + typeof(IgbDataChartCoreModule), + typeof(IgbDataChartCategoryModule), + typeof(IgbDataChartInteractivityModule), + typeof(IgbTreeGridModule), + typeof(IgbPaginatorModule), + typeof(IgbIconButtonModule), + typeof(IgbDropdownModule), + typeof(IgbPivotGridModule), + typeof(IgbPivotDataSelectorModule)); // Register Data Services for samples builder.Services.AddScoped(); builder.Services.AddScoped(); builder.Services.AddScoped(); builder.Services.AddScoped(); -builder.Services.AddScoped(); +builder.Services.AddScoped(); await builder.Build().RunAsync(); diff --git a/BlazorGridExamples/wwwroot/css/app.css b/BlazorGridExamples/wwwroot/css/app.css index 1584763..fc1c74c 100644 --- a/BlazorGridExamples/wwwroot/css/app.css +++ b/BlazorGridExamples/wwwroot/css/app.css @@ -10,7 +10,7 @@ .demo-container { width: 100%; - height: 100%; + height: 100vh; display: flex; flex-direction: column; align-items: center; @@ -70,7 +70,7 @@ padding: 12px; cursor: pointer; user-select: none; - color: black; + color: var(--ig-gray-800); box-sizing: border-box; } @@ -105,7 +105,7 @@ width: 100%; height: 90px; padding: 20px 24px; - border: 1px solid #D6D6D6; + border: 1px solid var(--ig-gray-300); } .current-tab-info .sample-info { @@ -138,7 +138,7 @@ letter-spacing: 0.15px; height: 40px; padding-right: 16px; - border-right: 1px solid #D6D6D6; + border-right: 1px solid var(--ig-gray-300); } .current-tab-info .sample-actions .action-buttons { @@ -147,14 +147,31 @@ gap: 16px; } + .current-tab-info .sample-actions .action-buttons .action-btn { + display: inline-flex; + cursor: pointer; + } + + .current-tab-info .sample-actions .action-buttons .btn-icon { + --ig-icon-size: 18px; + width: 18px; + height: 18px; + margin-right: 4px; + color: var(--ig-gray-800); + } + + .current-tab-info .sample-actions .action-buttons .btn-icon::part(icon) { + color: var(--ig-gray-800); + } + .current-tab-info .sample-actions .action-buttons .custom-button::part(base) { - color: black; - border-color: #D6D6D6; + color: var(--ig-gray-800); + border-color: var(--ig-gray-300); text-transform: unset; } .current-tab-info .sample-actions .action-buttons .custom-button::part(base) igc-icon::part(icon) { - color: black; + color: var(--ig-gray-800); } :fullscreen, @@ -166,7 +183,7 @@ height: 100vh; display: flex; flex-direction: column; - background: white; + background: var(--ig-surface-500); } :host(:fullscreen) .demo-container, @@ -197,4 +214,9 @@ body { margin: 0; padding: 0; min-width: 1100px; + /* The dashboard fills exactly the viewport; the grids scroll internally, so the page + itself must never produce its own vertical/horizontal scrollbar. */ + overflow: hidden; + background-color: var(--ig-surface-500); + color: var(--ig-gray-900); } diff --git a/BlazorGridExamples/wwwroot/index.html b/BlazorGridExamples/wwwroot/index.html index 2385e5d..13376ab 100644 --- a/BlazorGridExamples/wwwroot/index.html +++ b/BlazorGridExamples/wwwroot/index.html @@ -7,12 +7,19 @@ BlazorGridExamples + + + + + + + diff --git a/BlazorGridExamples/wwwroot/scripts/scope-css.js b/BlazorGridExamples/wwwroot/scripts/scope-css.js index 763fc1f..092ba2e 100644 --- a/BlazorGridExamples/wwwroot/scripts/scope-css.js +++ b/BlazorGridExamples/wwwroot/scripts/scope-css.js @@ -1,32 +1,85 @@ -window.scopeThemeToElement = async function(cssUrl, scopeSelector) { - // Prevent loading same theme twice - const styleId = `scoped-theme-${scopeSelector.replace(/[^a-zA-Z0-9]/g, '')}`; +// Fetches a stock Ignite UI theme at runtime and re-applies it under a scope selector, so a +// section of the app can use a different theme than the global one. Two modes: +// +// tokens-only (default): inject just the theme's :root design tokens. Lightweight; the +// globally-loaded component rules read var(--ig-*), so the palette/typography re-themes. +// Good enough for sections whose look is palette-driven. +// +// full (3rd arg === true): re-scope the theme's ENTIRE ruleset (component rules + tokens) +// under the selector, so component-level styling (button states, checkbox shape, etc.) +// matches the target theme exactly. Heavier (injects the whole theme), so it's opt-in. +// +// The full mode parses with the browser's own engine (a temporary + + + + + + + + + + + + + } +
+
@code { + [Parameter] public bool IsActive { get; set; } + private bool isLoading = true; - private System.Timers.Timer? updateTimer; + private PeriodicTimer? updateTimer; private IgbGrid? grid; + private string searchTerm = ""; + private IgbColumnPipeArgs currencyDigitsFormat = new IgbColumnPipeArgs { DigitsInfo = "1.2-2" }; + + private List FilteredData => + string.IsNullOrWhiteSpace(searchTerm) + ? FinancialService.Data + : FinancialService.Data.Where(d => + (d.Id != null && d.Id.Contains(searchTerm, StringComparison.OrdinalIgnoreCase)) || + (d.HoldingName != null && d.HoldingName.Contains(searchTerm, StringComparison.OrdinalIgnoreCase))) + .ToList(); + protected override async Task OnInitializedAsync() { FinancialService.OnDataChanged += OnDataChanged; - await FinancialService.LoadDataAsync(); + // Data persists in the singleton service, so only fetch the first time. + if (FinancialService.Data.Count == 0) + { + await FinancialService.LoadDataAsync(); + } isLoading = false; + } + + protected override void OnParametersSet() + { + // Only run the live-update loop while this sample is the visible tab; pause it when + // hidden so background tabs don't burn CPU or re-render off-screen grids. + if (IsActive) + { + EnsureTimerRunning(); + } + else + { + StopTimer(); + } + } - // Start auto-update timer (every 3 seconds) - updateTimer = new System.Timers.Timer(3000); - updateTimer.Elapsed += (sender, args) => + private void EnsureTimerRunning() + { + if (updateTimer is not null) return; + _ = RunLiveUpdatesAsync(); + } + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + if (firstRender) + { + // Re-theme this sample to Bootstrap at the component level (full=true) by re-scoping + // the whole stock theme under #finance-section, so buttons/checkboxes/headers match + // Bootstrap exactly. The scopeThemeToElement helper dedupes, so remounts won't re-inject. + await JS.InvokeVoidAsync("scopeThemeToElement", + "_content/IgniteUI.Blazor/themes/light/bootstrap.css", "#finance-section", true); + await JS.InvokeVoidAsync("scopeThemeToElement", + "_content/IgniteUI.Blazor/themes/grid/light/bootstrap.css", "#finance-section", true); + } + } + + private async Task RunLiveUpdatesAsync() + { + updateTimer = new PeriodicTimer(TimeSpan.FromSeconds(3)); + while (await updateTimer.WaitForNextTickAsync()) { FinancialService.UpdateAllPrices(); - }; - updateTimer.Start(); + } + } + + private void StopTimer() + { + updateTimer?.Dispose(); + updateTimer = null; } private void OnDataChanged() @@ -81,18 +148,13 @@ InvokeAsync(() => { StateHasChanged(); - // Trigger grid change detection to refresh with updated data - if (grid != null) - { - grid.MarkForCheck(); - } + grid?.MarkForCheck(); }); } public void Dispose() { - updateTimer?.Stop(); - updateTimer?.Dispose(); + StopTimer(); FinancialService.OnDataChanged -= OnDataChanged; } } diff --git a/samples/FinanceGrid/FinanceGridComponent.razor.css b/samples/FinanceGrid/FinanceGridComponent.razor.css deleted file mode 100644 index c6afca4..0000000 --- a/samples/FinanceGrid/FinanceGridComponent.razor.css +++ /dev/null @@ -1,6 +0,0 @@ -.my-component { - border: 2px dashed red; - padding: 1em; - margin: 1em 0; - background-image: url('background.png'); -} diff --git a/samples/FinanceGrid/Models/FinancialData.cs b/samples/FinanceGrid/Models/FinancialData.cs index 42289e4..0d07a1a 100644 --- a/samples/FinanceGrid/Models/FinancialData.cs +++ b/samples/FinanceGrid/Models/FinancialData.cs @@ -33,6 +33,9 @@ public class FinancialData [JsonPropertyName("dailyPercentageChange")] public double DailyPercentageChange { get; set; } + + [JsonPropertyName("holdingPeriod")] + public int HoldingPeriod { get; set; } } public class PriceValue diff --git a/samples/FinanceGrid/Services/FinancialService.cs b/samples/FinanceGrid/Services/FinancialService.cs index 457f5e5..f31cad1 100644 --- a/samples/FinanceGrid/Services/FinancialService.cs +++ b/samples/FinanceGrid/Services/FinancialService.cs @@ -75,6 +75,8 @@ public void UpdateAllPrices() dataRow.DailyPercentageChange = randomizedData.DailyPercentageChange; } + // New list reference so the Blazor grid re-syncs the mutated rows to the web component. + Data = new List(Data); OnDataChanged?.Invoke(); } @@ -93,8 +95,7 @@ private double CalculateProfitLossPercentage(double profitLossValue, double boug private double CalculateDailyPercentageChange(double initialPrice, double finalPrice) { - var priceDifference = finalPrice - initialPrice; - return (priceDifference / initialPrice) * 100; + return (finalPrice - initialPrice) / initialPrice; } private (double NewPrice, double ProfitLossValue, double ProfitLossPercentage, double MarketValue, double DailyPercentageChange) diff --git a/samples/FinanceGrid/wwwroot/background.png b/samples/FinanceGrid/wwwroot/background.png deleted file mode 100644 index e15a3bd..0000000 Binary files a/samples/FinanceGrid/wwwroot/background.png and /dev/null differ diff --git a/samples/FinanceGrid/wwwroot/companies/3M.png b/samples/FinanceGrid/wwwroot/companies/3M.png new file mode 100644 index 0000000..459eb05 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/3M.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Adobe.png b/samples/FinanceGrid/wwwroot/companies/Adobe.png new file mode 100644 index 0000000..faeb8c6 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Adobe.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Advanced.png b/samples/FinanceGrid/wwwroot/companies/Advanced.png new file mode 100644 index 0000000..aaeaaa9 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Advanced.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Airbnb.png b/samples/FinanceGrid/wwwroot/companies/Airbnb.png new file mode 100644 index 0000000..3948673 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Airbnb.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Alibaba.png b/samples/FinanceGrid/wwwroot/companies/Alibaba.png new file mode 100644 index 0000000..3ca2aa9 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Alibaba.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Alphabet.png b/samples/FinanceGrid/wwwroot/companies/Alphabet.png new file mode 100644 index 0000000..d76a483 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Alphabet.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Amazon.com.png b/samples/FinanceGrid/wwwroot/companies/Amazon.com.png new file mode 100644 index 0000000..d56cf46 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Amazon.com.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/American.png b/samples/FinanceGrid/wwwroot/companies/American.png new file mode 100644 index 0000000..6fd8aeb Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/American.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Apple.png b/samples/FinanceGrid/wwwroot/companies/Apple.png new file mode 100644 index 0000000..4962775 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Apple.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Bitcoin.png b/samples/FinanceGrid/wwwroot/companies/Bitcoin.png new file mode 100644 index 0000000..dc6d97d Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Bitcoin.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Boeing.png b/samples/FinanceGrid/wwwroot/companies/Boeing.png new file mode 100644 index 0000000..fb3eb84 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Boeing.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Booking.png b/samples/FinanceGrid/wwwroot/companies/Booking.png new file mode 100644 index 0000000..9953e70 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Booking.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Caterpillar.png b/samples/FinanceGrid/wwwroot/companies/Caterpillar.png new file mode 100644 index 0000000..45e35ce Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Caterpillar.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Chevron.png b/samples/FinanceGrid/wwwroot/companies/Chevron.png new file mode 100644 index 0000000..4c97dbd Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Chevron.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Cisco.png b/samples/FinanceGrid/wwwroot/companies/Cisco.png new file mode 100644 index 0000000..2e2c553 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Cisco.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Coca-Cola.png b/samples/FinanceGrid/wwwroot/companies/Coca-Cola.png new file mode 100644 index 0000000..e8e11e6 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Coca-Cola.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Costco.png b/samples/FinanceGrid/wwwroot/companies/Costco.png new file mode 100644 index 0000000..dbba209 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Costco.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Dominos.png b/samples/FinanceGrid/wwwroot/companies/Dominos.png new file mode 100644 index 0000000..b23e21e Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Dominos.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Ethereum.png b/samples/FinanceGrid/wwwroot/companies/Ethereum.png new file mode 100644 index 0000000..96ba8c4 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Ethereum.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Exxon.png b/samples/FinanceGrid/wwwroot/companies/Exxon.png new file mode 100644 index 0000000..5649014 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Exxon.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/FedEx.png b/samples/FinanceGrid/wwwroot/companies/FedEx.png new file mode 100644 index 0000000..61b23ac Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/FedEx.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Ford.png b/samples/FinanceGrid/wwwroot/companies/Ford.png new file mode 100644 index 0000000..78f1a00d Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Ford.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/General.png b/samples/FinanceGrid/wwwroot/companies/General.png new file mode 100644 index 0000000..53442e5 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/General.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Honeywell.png b/samples/FinanceGrid/wwwroot/companies/Honeywell.png new file mode 100644 index 0000000..f51ba37 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Honeywell.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/IBM.png b/samples/FinanceGrid/wwwroot/companies/IBM.png new file mode 100644 index 0000000..9695845 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/IBM.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Intel.png b/samples/FinanceGrid/wwwroot/companies/Intel.png new file mode 100644 index 0000000..f56839b Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Intel.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/JPMorgan.png b/samples/FinanceGrid/wwwroot/companies/JPMorgan.png new file mode 100644 index 0000000..d086d15 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/JPMorgan.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Johnson.png b/samples/FinanceGrid/wwwroot/companies/Johnson.png new file mode 100644 index 0000000..8c7bee8 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Johnson.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Kellogg.png b/samples/FinanceGrid/wwwroot/companies/Kellogg.png new file mode 100644 index 0000000..bc8d451 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Kellogg.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/McDonalds.png b/samples/FinanceGrid/wwwroot/companies/McDonalds.png new file mode 100644 index 0000000..77f9109 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/McDonalds.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Microsoft.png b/samples/FinanceGrid/wwwroot/companies/Microsoft.png new file mode 100644 index 0000000..fb4711b Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Microsoft.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Mondelez.png b/samples/FinanceGrid/wwwroot/companies/Mondelez.png new file mode 100644 index 0000000..3d0e611 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Mondelez.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Morgan.png b/samples/FinanceGrid/wwwroot/companies/Morgan.png new file mode 100644 index 0000000..044c16c Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Morgan.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/NVIDIA.png b/samples/FinanceGrid/wwwroot/companies/NVIDIA.png new file mode 100644 index 0000000..39ee3a0 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/NVIDIA.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Netflix.png b/samples/FinanceGrid/wwwroot/companies/Netflix.png new file mode 100644 index 0000000..f1c93fb Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Netflix.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/PayPal.png b/samples/FinanceGrid/wwwroot/companies/PayPal.png new file mode 100644 index 0000000..069ca17 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/PayPal.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/PepsiCo.png b/samples/FinanceGrid/wwwroot/companies/PepsiCo.png new file mode 100644 index 0000000..8be0a30 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/PepsiCo.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Pfizer.png b/samples/FinanceGrid/wwwroot/companies/Pfizer.png new file mode 100644 index 0000000..ffecb04 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Pfizer.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Procter.png b/samples/FinanceGrid/wwwroot/companies/Procter.png new file mode 100644 index 0000000..aed1027 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Procter.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Salesforce.png b/samples/FinanceGrid/wwwroot/companies/Salesforce.png new file mode 100644 index 0000000..316712c Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Salesforce.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Spotify.png b/samples/FinanceGrid/wwwroot/companies/Spotify.png new file mode 100644 index 0000000..8f15517 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Spotify.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Starbucks.png b/samples/FinanceGrid/wwwroot/companies/Starbucks.png new file mode 100644 index 0000000..d3b3d8f Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Starbucks.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Tesla.png b/samples/FinanceGrid/wwwroot/companies/Tesla.png new file mode 100644 index 0000000..56856ff Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Tesla.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/The.png b/samples/FinanceGrid/wwwroot/companies/The.png new file mode 100644 index 0000000..2ab44f2 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/The.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Uber.png b/samples/FinanceGrid/wwwroot/companies/Uber.png new file mode 100644 index 0000000..82f26bf Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Uber.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Visa.png b/samples/FinanceGrid/wwwroot/companies/Visa.png new file mode 100644 index 0000000..a3ebd79 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Visa.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Walmart.png b/samples/FinanceGrid/wwwroot/companies/Walmart.png new file mode 100644 index 0000000..c7d6038 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Walmart.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Walt.png b/samples/FinanceGrid/wwwroot/companies/Walt.png new file mode 100644 index 0000000..9846ac5 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Walt.png differ diff --git a/samples/FinanceGrid/wwwroot/companies/Zoom.png b/samples/FinanceGrid/wwwroot/companies/Zoom.png new file mode 100644 index 0000000..4aa2bc7 Binary files /dev/null and b/samples/FinanceGrid/wwwroot/companies/Zoom.png differ diff --git a/samples/FinanceGrid/wwwroot/exampleJsInterop.js b/samples/FinanceGrid/wwwroot/exampleJsInterop.js deleted file mode 100644 index ea8d76a..0000000 --- a/samples/FinanceGrid/wwwroot/exampleJsInterop.js +++ /dev/null @@ -1,6 +0,0 @@ -// This is a JavaScript module that is loaded on demand. It can export any number of -// functions, and may import other JavaScript modules if required. - -export function showPrompt(message) { - return prompt(message, 'Type anything here'); -} diff --git a/samples/FinanceGrid/wwwroot/scripts/finance-grid-templates.js b/samples/FinanceGrid/wwwroot/scripts/finance-grid-templates.js new file mode 100644 index 0000000..0417ad6 --- /dev/null +++ b/samples/FinanceGrid/wwwroot/scripts/finance-grid-templates.js @@ -0,0 +1,39 @@ +(function registerFinanceGridTemplates() { + if (!window.igRegisterScript || !window.igTemplating || !window.igTemplating.html) { + setTimeout(registerFinanceGridTemplates, 50); + return; + } + const html = window.igTemplating.html; + const icons = { + up: html``, + down: html`` + }; + const trend = (v) => (v >= 0 ? icons.up : icons.down); + const sign = (v) => (v >= 0 ? "profit" : "loss"); + + window.igRegisterScript("financeAssetCell", (ctx) => { + const name = ctx.cell.value || ""; + const logo = "_content/FinanceGrid/companies/" + name.split(" ")[0] + ".png"; + return html`
${name}
`; + }, false); + + window.igRegisterScript("financePercentCell", (ctx) => { + const v = ctx.cell.value || 0; + return html`
${(v * 100).toFixed(2)}%${trend(v)}
`; + }, false); + + window.igRegisterScript("financeProfitValueCell", (ctx) => { + const v = ctx.cell.value || 0; + const formatted = (v < 0 ? "-$" : "$") + Math.abs(v).toFixed(2); + return html`
${formatted}${trend(v)}
`; + }, false); + + window.igRegisterScript("financeAllocationCell", (ctx) => { + const pct = ((ctx.cell.value || 0) * 100).toFixed(2); + return html`
${pct}%
`; + }, false); + + window.igRegisterScript("financeHoldingPeriodCell", (ctx) => { + return html`${ctx.cell.value} days`; + }, false); +})(); diff --git a/samples/FinanceGrid/wwwroot/styles/finance.css b/samples/FinanceGrid/wwwroot/styles/finance.css new file mode 100644 index 0000000..df868ed --- /dev/null +++ b/samples/FinanceGrid/wwwroot/styles/finance.css @@ -0,0 +1,97 @@ +#finance-section { + height: 100%; + display: flex; + flex-direction: column; + --ig-size: var(--ig-size-small); +} + +#finance-section .finance-container { + flex: 1; + min-height: 0; + width: 100%; +} + +/* Title on the left, search on the right (matches the web-components layout). The toolbar + title, buttons and column-header typography are driven by the scoped Bootstrap theme + (full-scope), so no manual color/weight overrides are needed here. */ +#finance-section .igx-grid-toolbar__title { + flex: 0 0 auto; +} + +#finance-section .igx-grid-toolbar__custom-content { + flex: 1 1 auto; + justify-content: flex-start; +} + +#finance-section .finance-search { + width: 240px; + height: 32px; + margin-left: auto; + margin-right: 8px; + padding: 4px 10px; + /* Match the WC filter input: Bootstrap system font at 16px, gray text/placeholder. */ + font-family: var(--ig-font-family); + font-size: 1rem; + color: var(--ig-gray-700); + background-color: #fff; + border: 1px solid var(--ig-gray-400); + border-radius: 4px; + box-sizing: border-box; +} + +#finance-section .finance-search::placeholder { + color: var(--ig-gray-700); +} + +#finance-section .finance-search:focus { + outline: 0; + border-color: var(--ig-primary-300); + box-shadow: 0 0 0 0.2rem hsl(from var(--ig-primary-500) h s l / 0.25); +} + +#finance-section .cell-flex { + display: flex; + align-items: center; + gap: 0.4rem; +} + +#finance-section .asset-avatar { + --size: 24px; + --ig-size: var(--ig-size-small); +} + +#finance-section .cell-flex svg { + width: 16px; + height: 16px; + flex-shrink: 0; +} + +#finance-section .profit { + color: var(--ig-success-500); + font-weight: 600; +} + +#finance-section .loss { + color: var(--ig-error-500); + font-weight: 600; +} + +#finance-section .alloc-cell { + display: flex; + align-items: center; + gap: 0.5rem; + width: 100%; +} + +#finance-section .alloc-cell igc-linear-progress { + flex: 1; + min-width: 60px; + height: 12px; +} + +#finance-section .alloc-cell igc-linear-progress::part(base), +#finance-section .alloc-cell igc-linear-progress::part(track), +#finance-section .alloc-cell igc-linear-progress::part(fill) { + height: 12px; + border-radius: 4px; +} diff --git a/samples/FleetManagement/ExampleJsInterop.cs b/samples/FleetManagement/ExampleJsInterop.cs deleted file mode 100644 index b8db55c..0000000 --- a/samples/FleetManagement/ExampleJsInterop.cs +++ /dev/null @@ -1,32 +0,0 @@ -using Microsoft.JSInterop; - -namespace FleetManagement -{ - // This class provides an example of how JavaScript functionality can be wrapped - // in a .NET class for easy consumption. The associated JavaScript module is - // loaded on demand when first needed. - // - // This class can be registered as scoped DI service and then injected into Blazor - // components for use. - - public class ExampleJsInterop(IJSRuntime jsRuntime) : IAsyncDisposable - { - private readonly Lazy> moduleTask = new(() => jsRuntime.InvokeAsync( - "import", "./_content/FleetManagement/exampleJsInterop.js").AsTask()); - - public async ValueTask Prompt(string message) - { - var module = await moduleTask.Value; - return await module.InvokeAsync("showPrompt", message); - } - - public async ValueTask DisposeAsync() - { - if (moduleTask.IsValueCreated) - { - var module = await moduleTask.Value; - await module.DisposeAsync(); - } - } - } -} diff --git a/samples/FleetManagement/FleetManagement.csproj b/samples/FleetManagement/FleetManagement.csproj index fd2f805..8e22ef3 100644 --- a/samples/FleetManagement/FleetManagement.csproj +++ b/samples/FleetManagement/FleetManagement.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/FleetManagement/FleetManagementComponent.razor b/samples/FleetManagement/FleetManagementComponent.razor index e0f5600..bbc4f42 100644 --- a/samples/FleetManagement/FleetManagementComponent.razor +++ b/samples/FleetManagement/FleetManagementComponent.razor @@ -1,10 +1,14 @@ -@using FleetManagement.Services +@using FleetManagement.Services @using FleetManagement.Models @using IgniteUI.Blazor.Controls +@using Microsoft.JSInterop @inject FleetService FleetService -@implements IDisposable +@inject IJSRuntime JS -
+ + +
+
@if (isLoading) {
@@ -22,66 +26,114 @@ } else { - - - - - - - - - - - + + + Fleet Management + + @if (hasSort) + { + + @((MarkupString)ClearIcon) + Clear Sort + + } + + + + + + + + + + + + + + + + + + + @{ + var ctx = (IgbGridMasterDetailContext)detail; + var vehicle = (FleetData)ctx.Implicit; + } + + -
- - Data updates every 3 seconds to simulate live fleet tracking - -
}
+
@code { + private const string ClearIcon = """"""; + private bool isLoading = true; - private System.Timers.Timer? updateTimer; + private bool optionalDataLoaded; private IgbGrid? grid; - protected override async Task OnInitializedAsync() + private IgbSortingExpression[] sortExpressions = { - FleetService.OnDataChanged += OnDataChanged; - await FleetService.LoadDataAsync(); - isLoading = false; + new() { FieldName = "VehicleId", Dir = SortingDirection.Asc } + }; - // Start auto-update timer (every 3 seconds) - updateTimer = new System.Timers.Timer(3000); - updateTimer.Elapsed += (sender, args) => - { - FleetService.UpdateAllData(); - }; - updateTimer.Start(); + private bool hasSort = true; + + private void OnSortingDone(IgbSortingExpressionEventArgs args) + { + hasSort = args.Detail is { Length: > 0 }; } - private void OnDataChanged() + private async Task ClearSort() { - InvokeAsync(() => + // The SortingExpressions parameter only seeds the grid's initial sort; once the user + // sorts, the grid owns its sort state, so reassigning the bound field is a no-op. + // Clear it through the grid's own API instead. + if (grid is not null) { - StateHasChanged(); - if (grid != null) - { - grid.MarkForCheck(); - } - }); + await grid.ClearSortAsync(); + } + sortExpressions = Array.Empty(); + hasSort = false; + await InvokeAsync(StateHasChanged); + } + + protected override async Task OnInitializedAsync() + { + await FleetService.LoadDataAsync(); + isLoading = false; } - public void Dispose() + protected override async Task OnAfterRenderAsync(bool firstRender) { - updateTimer?.Stop(); - updateTimer?.Dispose(); - FleetService.OnDataChanged -= OnDataChanged; + if (firstRender) + { + // Re-theme this sample to dark Material by scoping the stock theme's design + // tokens to #fleet-section, instead of shipping a hand-generated token dump. + // The scopeThemeToElement helper dedupes, so remounts won't re-inject. + await JS.InvokeVoidAsync("scopeThemeToElement", + "_content/IgniteUI.Blazor/themes/dark/material.css", "#fleet-section"); + await JS.InvokeVoidAsync("scopeThemeToElement", + "_content/IgniteUI.Blazor/themes/grid/dark/material.css", "#fleet-section"); + } + + if (firstRender && !optionalDataLoaded) + { + optionalDataLoaded = true; + await FleetService.LoadOptionalDataAsync(); + await InvokeAsync(StateHasChanged); + } } } diff --git a/samples/FleetManagement/FleetManagementComponent.razor.css b/samples/FleetManagement/FleetManagementComponent.razor.css index c6afca4..526191f 100644 --- a/samples/FleetManagement/FleetManagementComponent.razor.css +++ b/samples/FleetManagement/FleetManagementComponent.razor.css @@ -1,6 +1,3 @@ -.my-component { - border: 2px dashed red; - padding: 1em; - margin: 1em 0; - background-image: url('background.png'); +.fleet-container { + height: 100%; } diff --git a/samples/FleetManagement/Models/FleetData.cs b/samples/FleetManagement/Models/FleetData.cs index c84e69a..f840f6d 100644 --- a/samples/FleetManagement/Models/FleetData.cs +++ b/samples/FleetManagement/Models/FleetData.cs @@ -4,39 +4,75 @@ namespace FleetManagement.Models; public class FleetData { - [JsonPropertyName("id")] - public string? Id { get; set; } - [JsonPropertyName("vehicleId")] public string? VehicleId { get; set; } - + + [JsonPropertyName("licensePlate")] + public string? LicensePlate { get; set; } + [JsonPropertyName("make")] public string? Make { get; set; } - + [JsonPropertyName("model")] public string? Model { get; set; } - - [JsonPropertyName("year")] - public int Year { get; set; } - - [JsonPropertyName("mileage")] - public double Mileage { get; set; } - - [JsonPropertyName("fuelLevel")] - public double FuelLevel { get; set; } - + + [JsonPropertyName("type")] + public string? Type { get; set; } + + [JsonPropertyName("vin")] + public string? Vin { get; set; } + [JsonPropertyName("status")] public string? Status { get; set; } - - [JsonPropertyName("driver")] - public string? Driver { get; set; } - - [JsonPropertyName("location")] - public string? Location { get; set; } - - [JsonPropertyName("lastService")] - public DateTime LastService { get; set; } - - [JsonPropertyName("nextService")] - public DateTime NextService { get; set; } + + [JsonPropertyName("locationCity")] + public string? LocationCity { get; set; } + + [JsonPropertyName("locationGps")] + public string? LocationGps { get; set; } + + [JsonPropertyName("details")] + public VehicleDetails? Details { get; set; } +} + +public class VehicleDetails +{ + [JsonPropertyName("generation")] + public string? Generation { get; set; } + + [JsonPropertyName("yearOfManufacture")] + public int YearOfManufacture { get; set; } + + [JsonPropertyName("fuelType")] + public string? FuelType { get; set; } + + [JsonPropertyName("doors")] + public int Doors { get; set; } + + [JsonPropertyName("seats")] + public int Seats { get; set; } + + [JsonPropertyName("transmission")] + public string? Transmission { get; set; } + + [JsonPropertyName("engine")] + public string? Engine { get; set; } + + [JsonPropertyName("power")] + public string? Power { get; set; } + + [JsonPropertyName("mileage")] + public string? Mileage { get; set; } + + [JsonPropertyName("cubature")] + public string? Cubature { get; set; } + + [JsonPropertyName("color")] + public string? Color { get; set; } + + [JsonPropertyName("msrp")] + public string? Msrp { get; set; } + + [JsonPropertyName("tollPassId")] + public string? TollPassId { get; set; } } diff --git a/samples/FleetManagement/Models/FleetDetailModels.cs b/samples/FleetManagement/Models/FleetDetailModels.cs new file mode 100644 index 0000000..ef33f0f --- /dev/null +++ b/samples/FleetManagement/Models/FleetDetailModels.cs @@ -0,0 +1,177 @@ +using System.Text.Json.Serialization; + +namespace FleetManagement.Models; + +public class Driver +{ + [JsonPropertyName("name")] + public string? Name { get; set; } + + [JsonPropertyName("license")] + public string? License { get; set; } + + [JsonPropertyName("address")] + public string? Address { get; set; } + + [JsonPropertyName("city")] + public string? City { get; set; } + + [JsonPropertyName("phone")] + public string? Phone { get; set; } + + [JsonPropertyName("email")] + public string? Email { get; set; } + + [JsonPropertyName("photo")] + public string? Photo { get; set; } +} + +public class TripRecord +{ + [JsonPropertyName("id")] + public int Id { get; set; } + + [JsonPropertyName("driverName")] + public string? DriverName { get; set; } + + [JsonPropertyName("start")] + public string? Start { get; set; } + + [JsonPropertyName("end")] + public string? End { get; set; } + + [JsonPropertyName("startLocation")] + public string? StartLocation { get; set; } + + [JsonPropertyName("endLocation")] + public string? EndLocation { get; set; } + + [JsonPropertyName("startMeter")] + public string? StartMeter { get; set; } + + [JsonPropertyName("endMeter")] + public string? EndMeter { get; set; } + + [JsonPropertyName("distance")] + public string? Distance { get; set; } + + [JsonPropertyName("totalTime")] + public string? TotalTime { get; set; } + + [JsonPropertyName("driverPhotoUrl")] + public string? DriverPhotoUrl { get; set; } +} + +public class VehicleTripHistory +{ + [JsonPropertyName("vehicleId")] + public string? VehicleId { get; set; } + + [JsonPropertyName("tripHistory")] + public List TripHistory { get; set; } = new(); +} + +public class MaintenanceRecord +{ + [JsonPropertyName("id")] + public int Id { get; set; } + + [JsonPropertyName("event")] + public string? Event { get; set; } + + [JsonPropertyName("date")] + public string? Date { get; set; } + + [JsonPropertyName("location")] + public string? Location { get; set; } + + [JsonPropertyName("type")] + public string? Type { get; set; } + + [JsonPropertyName("remarks")] + public string? Remarks { get; set; } +} + +public class VehicleMaintenance +{ + [JsonPropertyName("vehicleId")] + public string? VehicleId { get; set; } + + [JsonPropertyName("maintenance")] + public List Maintenance { get; set; } = new(); +} + +public class CarPhotoManifestEntry +{ + [JsonPropertyName("id")] + public string? Id { get; set; } + + [JsonPropertyName("folder")] + public string? Folder { get; set; } +} + +public class CostTypeSlice +{ + [JsonPropertyName("value")] + public double Value { get; set; } + + [JsonPropertyName("category")] + public string? Category { get; set; } + + [JsonPropertyName("summary")] + public string? Summary { get; set; } +} + +public class CostPerMeterPoint +{ + [JsonPropertyName("quarter")] + public string? Quarter { get; set; } + + [JsonPropertyName("costPerMeter")] + public double CostPerMeter { get; set; } +} + +public class FuelCostPoint +{ + [JsonPropertyName("month")] + public string? Month { get; set; } + + [JsonPropertyName("cost")] + public double Cost { get; set; } +} + +public class VehicleCost +{ + [JsonPropertyName("vehicleId")] + public string? VehicleId { get; set; } + + [JsonPropertyName("costPerType")] + public Dictionary> CostPerType { get; set; } = new(); + + [JsonPropertyName("costsPerMeterPerQuarter")] + public Dictionary> CostsPerMeterPerQuarter { get; set; } = new(); + + [JsonPropertyName("fuelCostsPerMonth")] + public List FuelCostsPerMonth { get; set; } = new(); +} + +public class UtilizationPoint +{ + [JsonPropertyName("month")] + public string? Month { get; set; } + + [JsonPropertyName("'2023'")] + public double Year2023 { get; set; } + + [JsonPropertyName("'2024'")] + public double Year2024 { get; set; } +} + +public class VehicleUtilization +{ + [JsonPropertyName("vehicleId")] + public string? VehicleId { get; set; } + + [JsonPropertyName("utilization")] + public List Utilization { get; set; } = new(); +} diff --git a/samples/FleetManagement/Services/FleetService.cs b/samples/FleetManagement/Services/FleetService.cs index 55bec96..c82e3e2 100644 --- a/samples/FleetManagement/Services/FleetService.cs +++ b/samples/FleetManagement/Services/FleetService.cs @@ -13,11 +13,23 @@ public class FleetService private const string UtilizationDataUrl = "https://www.infragistics.com/grid-examples-data/data/fleet/utilization.json"; private const string TripHistoryDataUrl = "https://www.infragistics.com/grid-examples-data/data/fleet/trip_history.json"; + private const string ContentRoot = "_content/FleetManagement"; + private const string CarPhotoManifestUrl = ContentRoot + "/data/car_photo_manifest.json"; + private const string CarImagesUrl = ContentRoot + "/data/car_images.json"; + private static readonly JsonSerializerOptions options = new() { PropertyNameCaseInsensitive = true }; + private List _drivers = new(); + private List _tripHistory = new(); + private List _maintenance = new(); + private List _cost = new(); + private List _utilization = new(); + private List _carPhotoManifest = new(); + private Dictionary> _carImages = new(); + public List Data { get; private set; } = new(); public event Action? OnDataChanged; @@ -37,23 +49,94 @@ public async Task LoadDataAsync() } catch (Exception) { - // Failed to load data - Data list remains empty } } - public void UpdateAllData() + public async Task LoadOptionalDataAsync() + { + _drivers = await GetAsync>(DriversDataUrl) ?? new(); + _tripHistory = await GetAsync>(TripHistoryDataUrl) ?? new(); + _maintenance = await GetAsync>(MaintanenceDataUrl) ?? new(); + _cost = await GetAsync>(CostDataUrl) ?? new(); + _utilization = await GetAsync>(UtilizationDataUrl) ?? new(); + _carPhotoManifest = await GetAsync>(CarPhotoManifestUrl) ?? new(); + _carImages = await GetAsync>>(CarImagesUrl) ?? new(); + + OnDataChanged?.Invoke(); + } + + private async Task GetAsync(string url) + { + try + { + var json = await _httpClient.GetStringAsync(url); + return JsonSerializer.Deserialize(json, options); + } + catch (Exception) + { + return default; + } + } + + public List FindTripHistoryById(string? vehicleId) { - foreach (var dataRow in Data) + var trips = _tripHistory.FirstOrDefault(t => t.VehicleId == vehicleId)?.TripHistory ?? new(); + foreach (var trip in trips) { - // Simulate live data updates - randomly adjust mileage and fuel level - var mileageIncrease = Random.Shared.NextDouble() * 5; // 0-5 miles increase - dataRow.Mileage += Math.Round(mileageIncrease, 1); - - var fuelDecrease = Random.Shared.NextDouble() * 2; // 0-2% fuel decrease - dataRow.FuelLevel = Math.Max(0, dataRow.FuelLevel - fuelDecrease); - dataRow.FuelLevel = Math.Round(dataRow.FuelLevel, 1); + trip.DriverPhotoUrl ??= GetDriverPhotoPath(trip.DriverName); } + return trips; + } - OnDataChanged?.Invoke(); + public List FindMaintenanceById(string? vehicleId) => + _maintenance.FirstOrDefault(m => m.VehicleId == vehicleId)?.Maintenance ?? new(); + + public Driver? FindDriverByName(string? driverName) => + _drivers.FirstOrDefault(d => d.Name == driverName); + + public string GetDriverPhotoPath(string? driverName) + { + var photo = FindDriverByName(driverName)?.Photo; + return string.IsNullOrEmpty(photo) ? string.Empty : $"{ContentRoot}/people/{photo}.jpg"; + } + + private VehicleCost? FindCost(string? vehicleId) => + _cost.FirstOrDefault(c => c.VehicleId == vehicleId); + + public List FindCostsPerType(string? vehicleId, string period = "ytd") + { + var cost = FindCost(vehicleId); + return cost != null && cost.CostPerType.TryGetValue(period, out var slices) ? slices : new(); + } + + public List FindCostsPerMeter(string? vehicleId, string period = "ytd") + { + var cost = FindCost(vehicleId); + return cost != null && cost.CostsPerMeterPerQuarter.TryGetValue(period, out var points) ? points : new(); + } + + public List GetFuelCosts(string? vehicleId, string period = "ytd") + { + var months = FindCost(vehicleId)?.FuelCostsPerMonth ?? new(); + return period switch + { + "3months" => months.TakeLast(3).ToList(), + "6months" => months.TakeLast(6).ToList(), + _ => months + }; + } + + public List FindUtilization(string? vehicleId) => + _utilization.FirstOrDefault(u => u.VehicleId == vehicleId)?.Utilization ?? new(); + + public List GetCarImagePaths(string? vehicleId) + { + var folder = _carPhotoManifest.FirstOrDefault(c => c.Id == vehicleId)?.Folder; + if (string.IsNullOrEmpty(folder) || !_carImages.TryGetValue(folder, out var files)) + { + return new(); + } + + return files.Select(f => $"{ContentRoot}/cars/photos/{Uri.EscapeDataString(folder)}/{Uri.EscapeDataString(f)}").ToList(); } } diff --git a/samples/FleetManagement/VehicleDetailPanel.razor b/samples/FleetManagement/VehicleDetailPanel.razor new file mode 100644 index 0000000..83f332b --- /dev/null +++ b/samples/FleetManagement/VehicleDetailPanel.razor @@ -0,0 +1,265 @@ +@using FleetManagement.Services +@using FleetManagement.Models +@using IgniteUI.Blazor.Controls +@inject FleetService FleetService +@implements IDisposable + +@{ + var images = FleetService.GetCarImagePaths(Vehicle.VehicleId); + var trips = FleetService.FindTripHistoryById(Vehicle.VehicleId); + var maintenance = FleetService.FindMaintenanceById(Vehicle.VehicleId); + var costsPerType = FleetService.FindCostsPerType(Vehicle.VehicleId, GetChartPeriod("costType")); + var costsPerMeter = FleetService.FindCostsPerMeter(Vehicle.VehicleId, GetChartPeriod("costMeter")); + var fuelCosts = FleetService.GetFuelCosts(Vehicle.VehicleId, GetChartPeriod("fuel")); + var utilization = FleetService.FindUtilization(Vehicle.VehicleId); +} + + +
+ +
+ @foreach (var categorySet in new[] { GetVehicleRows(Vehicle), GetEngineRows(Vehicle) }) + { +
+
+ @foreach (var row in categorySet) + { +
+ @row.Key: +
+ } +
+
+ @foreach (var row in categorySet) + { +
+ @row.Value +
+ } +
+
+ } +
+
+
+ + + @if (IsTabActive("Trip History")) + { + + + + + + + + + + + + + } + + + + @if (IsTabActive("Maintenance")) + { + + + + + + + + + } + + + + @if (IsTabActive("Cost")) + { +
+
+
+ Costs per Type + + YTD + Last 3 Months + Last 6 Months + Last 12 Months + +
+
+ +
+
+
+
+ Cost per Meter, per Quarter + + YTD + 2023 + 2022 + 2021 + 2020 + +
+
+ +
+
+
+
+ Fuel Costs per Month + + YTD + Last 3 Months + Last 6 Months + Last 12 Months + +
+
+ +
+
+
+ } +
+ + + @if (IsTabActive("Utilization")) + { +
+
+

Utilization per Month

+
+ 2023 + 2024 +
+
+ +
+
+
+ } +
+
+ +@code { + [Parameter, EditorRequired] public FleetData Vehicle { get; set; } = default!; + + private readonly HashSet _renderedTabs = new(); + + private bool IsTabActive(string label) + => label == "Details" || _renderedTabs.Contains(label); + + private void OnTabChange(IgbTabComponentEventArgs args) + { + var label = args.Detail?.Label; + if (label is not null) _renderedTabs.Add(label); + } + + protected override void OnInitialized() => FleetService.OnDataChanged += OnFleetDataChanged; + + public void Dispose() => FleetService.OnDataChanged -= OnFleetDataChanged; + + private void OnFleetDataChanged() => InvokeAsync(StateHasChanged); + + private readonly Dictionary _chartPeriod = new(); + + private string GetChartPeriod(string chart) + => _chartPeriod.TryGetValue(chart, out var p) ? p : "ytd"; + + private void SetChartPeriod(string chart, string value) + { + _chartPeriod[chart] = value; + StateHasChanged(); + } + + private static List> GetVehicleRows(FleetData v) + { + var d = v.Details; + return new() + { + new("Make", v.Make), + new("Generation", d?.Generation), + new("Year of Manufacture", d?.YearOfManufacture.ToString()), + new("Fuel Type", d?.FuelType), + new("Doors", d?.Doors.ToString()), + new("Seats", d?.Seats.ToString()), + new("Transmission", d?.Transmission) + }; + } + + private static List> GetEngineRows(FleetData v) + { + var d = v.Details; + return new() + { + new("Engine", d?.Engine), + new("Power", d?.Power), + new("Mileage", d?.Mileage), + new("Cubature", d?.Cubature), + new("Color", d?.Color), + new("MSRP", d?.Msrp), + new("Toll Pass ID", d?.TollPassId) + }; + } +} diff --git a/samples/FleetManagement/wwwroot/cars/logos/Ford.png b/samples/FleetManagement/wwwroot/cars/logos/Ford.png new file mode 100644 index 0000000..950a37e Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/logos/Ford.png differ diff --git a/samples/FleetManagement/wwwroot/cars/logos/Honda.png b/samples/FleetManagement/wwwroot/cars/logos/Honda.png new file mode 100644 index 0000000..4424bd1 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/logos/Honda.png differ diff --git a/samples/FleetManagement/wwwroot/cars/logos/Hyundai.png b/samples/FleetManagement/wwwroot/cars/logos/Hyundai.png new file mode 100644 index 0000000..6f9d514 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/logos/Hyundai.png differ diff --git a/samples/FleetManagement/wwwroot/cars/logos/Kia.png b/samples/FleetManagement/wwwroot/cars/logos/Kia.png new file mode 100644 index 0000000..f9d727e Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/logos/Kia.png differ diff --git a/samples/FleetManagement/wwwroot/cars/logos/Mazda.png b/samples/FleetManagement/wwwroot/cars/logos/Mazda.png new file mode 100644 index 0000000..dbd03db Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/logos/Mazda.png differ diff --git a/samples/FleetManagement/wwwroot/cars/logos/Tesla.png b/samples/FleetManagement/wwwroot/cars/logos/Tesla.png new file mode 100644 index 0000000..a8f5371 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/logos/Tesla.png differ diff --git a/samples/FleetManagement/wwwroot/cars/logos/Toyota.png b/samples/FleetManagement/wwwroot/cars/logos/Toyota.png new file mode 100644 index 0000000..2f96004 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/logos/Toyota.png differ diff --git a/samples/FleetManagement/wwwroot/cars/logos/VW.png b/samples/FleetManagement/wwwroot/cars/logos/VW.png new file mode 100644 index 0000000..94b626d Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/logos/VW.png differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Ford F-150 blue/Ford-F150-caleb-white-XGJBSkoqX_I-unsplash.jpg b/samples/FleetManagement/wwwroot/cars/photos/Ford F-150 blue/Ford-F150-caleb-white-XGJBSkoqX_I-unsplash.jpg new file mode 100644 index 0000000..5859716 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Ford F-150 blue/Ford-F150-caleb-white-XGJBSkoqX_I-unsplash.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Ford F-150 blue/Ford-F150-caleb-white-XGJBSkoqX_I-unsplash1.jpg b/samples/FleetManagement/wwwroot/cars/photos/Ford F-150 blue/Ford-F150-caleb-white-XGJBSkoqX_I-unsplash1.jpg new file mode 100644 index 0000000..0dd531f Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Ford F-150 blue/Ford-F150-caleb-white-XGJBSkoqX_I-unsplash1.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Ford F-150 blue/Ford-F150-caleb-white-XGJBSkoqX_I-unsplash2.jpg b/samples/FleetManagement/wwwroot/cars/photos/Ford F-150 blue/Ford-F150-caleb-white-XGJBSkoqX_I-unsplash2.jpg new file mode 100644 index 0000000..c7553ed Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Ford F-150 blue/Ford-F150-caleb-white-XGJBSkoqX_I-unsplash2.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Ford F-150 red/Ford-f150-7572360_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Ford F-150 red/Ford-f150-7572360_1920.jpg new file mode 100644 index 0000000..ab7c2b6 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Ford F-150 red/Ford-f150-7572360_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Ford F-150 red/Ford-f150-7572360_19201.jpg b/samples/FleetManagement/wwwroot/cars/photos/Ford F-150 red/Ford-f150-7572360_19201.jpg new file mode 100644 index 0000000..5cb886d Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Ford F-150 red/Ford-f150-7572360_19201.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Ford F-150 red/Ford-f150-7572360_19202.jpg b/samples/FleetManagement/wwwroot/cars/photos/Ford F-150 red/Ford-f150-7572360_19202.jpg new file mode 100644 index 0000000..8a5d4f7 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Ford F-150 red/Ford-f150-7572360_19202.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Ford Focus blue/ford-focus-5167838_1280.jpg b/samples/FleetManagement/wwwroot/cars/photos/Ford Focus blue/ford-focus-5167838_1280.jpg new file mode 100644 index 0000000..f828bca Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Ford Focus blue/ford-focus-5167838_1280.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Ford Focus blue/ford-focus-5167838_12801.jpg b/samples/FleetManagement/wwwroot/cars/photos/Ford Focus blue/ford-focus-5167838_12801.jpg new file mode 100644 index 0000000..16014d6 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Ford Focus blue/ford-focus-5167838_12801.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Ford Focus blue/ford-focus-5167838_12802.jpg b/samples/FleetManagement/wwwroot/cars/photos/Ford Focus blue/ford-focus-5167838_12802.jpg new file mode 100644 index 0000000..2a4fd1a Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Ford Focus blue/ford-focus-5167838_12802.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Ford Focus dark gray/1-1-Ford-Focus-car-3300587_1280.jpg b/samples/FleetManagement/wwwroot/cars/photos/Ford Focus dark gray/1-1-Ford-Focus-car-3300587_1280.jpg new file mode 100644 index 0000000..8114461 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Ford Focus dark gray/1-1-Ford-Focus-car-3300587_1280.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Ford Focus dark gray/1-2-Ford-Focus-car-3300588_1280.jpg b/samples/FleetManagement/wwwroot/cars/photos/Ford Focus dark gray/1-2-Ford-Focus-car-3300588_1280.jpg new file mode 100644 index 0000000..d125287 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Ford Focus dark gray/1-2-Ford-Focus-car-3300588_1280.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Ford Focus dark gray/1-3-Ford-Focus-car-3300587_1280.jpg b/samples/FleetManagement/wwwroot/cars/photos/Ford Focus dark gray/1-3-Ford-Focus-car-3300587_1280.jpg new file mode 100644 index 0000000..826f7a3 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Ford Focus dark gray/1-3-Ford-Focus-car-3300587_1280.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Ford Mustang blue/Ford-Mustang-automobile-1450573_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Ford Mustang blue/Ford-Mustang-automobile-1450573_1920.jpg new file mode 100644 index 0000000..3b65c24 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Ford Mustang blue/Ford-Mustang-automobile-1450573_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Ford Mustang blue/Ford-Mustang-automobile-1450573_19201.jpg b/samples/FleetManagement/wwwroot/cars/photos/Ford Mustang blue/Ford-Mustang-automobile-1450573_19201.jpg new file mode 100644 index 0000000..afa2bbd Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Ford Mustang blue/Ford-Mustang-automobile-1450573_19201.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Ford Mustang blue/Ford-Mustang-automobile-1450573_19202.jpg b/samples/FleetManagement/wwwroot/cars/photos/Ford Mustang blue/Ford-Mustang-automobile-1450573_19202.jpg new file mode 100644 index 0000000..3fb360b Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Ford Mustang blue/Ford-Mustang-automobile-1450573_19202.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Ford Mustang red/Ford-Mustang-convertible-1630448_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Ford Mustang red/Ford-Mustang-convertible-1630448_1920.jpg new file mode 100644 index 0000000..29515e1 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Ford Mustang red/Ford-Mustang-convertible-1630448_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Ford Mustang red/Ford-Mustang-convertible-1630448_19201.jpg b/samples/FleetManagement/wwwroot/cars/photos/Ford Mustang red/Ford-Mustang-convertible-1630448_19201.jpg new file mode 100644 index 0000000..2d15371 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Ford Mustang red/Ford-Mustang-convertible-1630448_19201.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Ford Mustang red/Ford-Mustang-convertible-1630448_19202.jpg b/samples/FleetManagement/wwwroot/cars/photos/Ford Mustang red/Ford-Mustang-convertible-1630448_19202.jpg new file mode 100644 index 0000000..5cd6171 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Ford Mustang red/Ford-Mustang-convertible-1630448_19202.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Honda Civic/honda-civic-4967605_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Honda Civic/honda-civic-4967605_1920.jpg new file mode 100644 index 0000000..7bacbfc Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Honda Civic/honda-civic-4967605_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Honda Civic/honda-civic-4967605_19201.jpg b/samples/FleetManagement/wwwroot/cars/photos/Honda Civic/honda-civic-4967605_19201.jpg new file mode 100644 index 0000000..58b4858 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Honda Civic/honda-civic-4967605_19201.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Honda Civic/honda-civic-4967605_19202.jpg b/samples/FleetManagement/wwwroot/cars/photos/Honda Civic/honda-civic-4967605_19202.jpg new file mode 100644 index 0000000..1416ad6 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Honda Civic/honda-civic-4967605_19202.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Hyundai Kona/Hyundai-Kona-electric-4964667_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Hyundai Kona/Hyundai-Kona-electric-4964667_1920.jpg new file mode 100644 index 0000000..31723c0 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Hyundai Kona/Hyundai-Kona-electric-4964667_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Hyundai Kona/Hyundai-Kona-electric-4964667_19201.jpg b/samples/FleetManagement/wwwroot/cars/photos/Hyundai Kona/Hyundai-Kona-electric-4964667_19201.jpg new file mode 100644 index 0000000..ac676df Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Hyundai Kona/Hyundai-Kona-electric-4964667_19201.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Hyundai Kona/Hyundai-Kona-electric-4964667_19202.jpg b/samples/FleetManagement/wwwroot/cars/photos/Hyundai Kona/Hyundai-Kona-electric-4964667_19202.jpg new file mode 100644 index 0000000..b702436 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Hyundai Kona/Hyundai-Kona-electric-4964667_19202.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Hyundai ix35/Hyundai-ix35-5505817_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Hyundai ix35/Hyundai-ix35-5505817_1920.jpg new file mode 100644 index 0000000..51de0d7 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Hyundai ix35/Hyundai-ix35-5505817_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Hyundai ix35/Hyundai-ix35-5505817_19201.jpg b/samples/FleetManagement/wwwroot/cars/photos/Hyundai ix35/Hyundai-ix35-5505817_19201.jpg new file mode 100644 index 0000000..be27fd1 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Hyundai ix35/Hyundai-ix35-5505817_19201.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Hyundai ix35/Hyundai-ix35-5505817_19202.jpg b/samples/FleetManagement/wwwroot/cars/photos/Hyundai ix35/Hyundai-ix35-5505817_19202.jpg new file mode 100644 index 0000000..75b16de Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Hyundai ix35/Hyundai-ix35-5505817_19202.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia Ceed red/Kia-Ceed-car-3305685_1280.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia Ceed red/Kia-Ceed-car-3305685_1280.jpg new file mode 100644 index 0000000..c9f2caa Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia Ceed red/Kia-Ceed-car-3305685_1280.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia Ceed red/Kia-Ceed-car-3305699_1280.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia Ceed red/Kia-Ceed-car-3305699_1280.jpg new file mode 100644 index 0000000..83308e5 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia Ceed red/Kia-Ceed-car-3305699_1280.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia Ceed red/Kia-ceed-car-3305686_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia Ceed red/Kia-ceed-car-3305686_1920.jpg new file mode 100644 index 0000000..c90c1f1 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia Ceed red/Kia-ceed-car-3305686_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia Ceed white/Kia-Ceed-car-6097887_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia Ceed white/Kia-Ceed-car-6097887_1920.jpg new file mode 100644 index 0000000..9079712 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia Ceed white/Kia-Ceed-car-6097887_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia Ceed white/Kia-Ceed-car-6097887_19201.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia Ceed white/Kia-Ceed-car-6097887_19201.jpg new file mode 100644 index 0000000..8b8b3ce Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia Ceed white/Kia-Ceed-car-6097887_19201.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia Ceed white/Kia-Ceed-car-6097887_19202.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia Ceed white/Kia-Ceed-car-6097887_19202.jpg new file mode 100644 index 0000000..39c7d08 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia Ceed white/Kia-Ceed-car-6097887_19202.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 GT/KIA-EV6-GT-line (edited) hyundai-motor-group-ErBFxMkJpKk-unsplash-detail1.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 GT/KIA-EV6-GT-line (edited) hyundai-motor-group-ErBFxMkJpKk-unsplash-detail1.jpg new file mode 100644 index 0000000..8f29720 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 GT/KIA-EV6-GT-line (edited) hyundai-motor-group-ErBFxMkJpKk-unsplash-detail1.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 GT/KIA-EV6-GT-line (edited) hyundai-motor-group-ErBFxMkJpKk-unsplash.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 GT/KIA-EV6-GT-line (edited) hyundai-motor-group-ErBFxMkJpKk-unsplash.jpg new file mode 100644 index 0000000..8d197a8 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 GT/KIA-EV6-GT-line (edited) hyundai-motor-group-ErBFxMkJpKk-unsplash.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 GT/KIA-EV6-GT-line (edited) hyundai-motor-group-ErBFxMkJpKk-unsplash2.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 GT/KIA-EV6-GT-line (edited) hyundai-motor-group-ErBFxMkJpKk-unsplash2.jpg new file mode 100644 index 0000000..a693d4c Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 GT/KIA-EV6-GT-line (edited) hyundai-motor-group-ErBFxMkJpKk-unsplash2.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 gray/KIA-EV6-hyundai-motor-group-gKODwMitO-c-unsplash.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 gray/KIA-EV6-hyundai-motor-group-gKODwMitO-c-unsplash.jpg new file mode 100644 index 0000000..babce47 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 gray/KIA-EV6-hyundai-motor-group-gKODwMitO-c-unsplash.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 gray/KIA-EV6-hyundai-motor-group-gKODwMitO-c-unsplash1.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 gray/KIA-EV6-hyundai-motor-group-gKODwMitO-c-unsplash1.jpg new file mode 100644 index 0000000..35e65b3 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 gray/KIA-EV6-hyundai-motor-group-gKODwMitO-c-unsplash1.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 gray/KIA-EV6-hyundai-motor-group-gKODwMitO-c-unsplash2.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 gray/KIA-EV6-hyundai-motor-group-gKODwMitO-c-unsplash2.jpg new file mode 100644 index 0000000..d85ec4e Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 gray/KIA-EV6-hyundai-motor-group-gKODwMitO-c-unsplash2.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 red/KIA-EV6-hyundai-motor-group-jdjzmbw4GPg-unsplash.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 red/KIA-EV6-hyundai-motor-group-jdjzmbw4GPg-unsplash.jpg new file mode 100644 index 0000000..6acdff1 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 red/KIA-EV6-hyundai-motor-group-jdjzmbw4GPg-unsplash.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 red/KIA-EV6-hyundai-motor-group-jdjzmbw4GPg-unsplash1.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 red/KIA-EV6-hyundai-motor-group-jdjzmbw4GPg-unsplash1.jpg new file mode 100644 index 0000000..1d222f5 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 red/KIA-EV6-hyundai-motor-group-jdjzmbw4GPg-unsplash1.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 red/KIA-EV6-hyundai-motor-group-jdjzmbw4GPg-unsplash2.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 red/KIA-EV6-hyundai-motor-group-jdjzmbw4GPg-unsplash2.jpg new file mode 100644 index 0000000..3987daf Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia EV6 red/KIA-EV6-hyundai-motor-group-jdjzmbw4GPg-unsplash2.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia Soul/Kia-Soul-car-2441815_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia Soul/Kia-Soul-car-2441815_1920.jpg new file mode 100644 index 0000000..4e2b8b2 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia Soul/Kia-Soul-car-2441815_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia Soul/Kia-Soul-car-2441815_19201.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia Soul/Kia-Soul-car-2441815_19201.jpg new file mode 100644 index 0000000..46e5b2f Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia Soul/Kia-Soul-car-2441815_19201.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia Soul/Kia-Soul-car-2441815_19202.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia Soul/Kia-Soul-car-2441815_19202.jpg new file mode 100644 index 0000000..2d192fe Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia Soul/Kia-Soul-car-2441815_19202.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia Sportage/Kia-Sportage-2382086_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia Sportage/Kia-Sportage-2382086_1920.jpg new file mode 100644 index 0000000..305a7ce Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia Sportage/Kia-Sportage-2382086_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia Sportage/Kia-Sportage-2382086_19201.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia Sportage/Kia-Sportage-2382086_19201.jpg new file mode 100644 index 0000000..a4f1d10 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia Sportage/Kia-Sportage-2382086_19201.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Kia Sportage/Kia-Sportage-2382086_19202.jpg b/samples/FleetManagement/wwwroot/cars/photos/Kia Sportage/Kia-Sportage-2382086_19202.jpg new file mode 100644 index 0000000..a8c591c Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Kia Sportage/Kia-Sportage-2382086_19202.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Mazda 3/mazda-3-7498005_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Mazda 3/mazda-3-7498005_1920.jpg new file mode 100644 index 0000000..4913970 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Mazda 3/mazda-3-7498005_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Mazda 3/mazda-3-7498005_19201.jpg b/samples/FleetManagement/wwwroot/cars/photos/Mazda 3/mazda-3-7498005_19201.jpg new file mode 100644 index 0000000..9670a1d Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Mazda 3/mazda-3-7498005_19201.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Mazda 3/mazda-3-7498005_19202.jpg b/samples/FleetManagement/wwwroot/cars/photos/Mazda 3/mazda-3-7498005_19202.jpg new file mode 100644 index 0000000..5c41cbf Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Mazda 3/mazda-3-7498005_19202.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Mazda 6/3-1-Mazda-6-car-6122178_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Mazda 6/3-1-Mazda-6-car-6122178_1920.jpg new file mode 100644 index 0000000..7ae228b Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Mazda 6/3-1-Mazda-6-car-6122178_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Mazda 6/3-2-Mazda-6-car-6122177_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Mazda 6/3-2-Mazda-6-car-6122177_1920.jpg new file mode 100644 index 0000000..07447d2 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Mazda 6/3-2-Mazda-6-car-6122177_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Mazda 6/3-3-Mazda-6-car-6122177_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Mazda 6/3-3-Mazda-6-car-6122177_1920.jpg new file mode 100644 index 0000000..5ff6df9 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Mazda 6/3-3-Mazda-6-car-6122177_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Mazda MX-5/2-1-Mazda-MX-5-cabriolet-3627312_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Mazda MX-5/2-1-Mazda-MX-5-cabriolet-3627312_1920.jpg new file mode 100644 index 0000000..a180747 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Mazda MX-5/2-1-Mazda-MX-5-cabriolet-3627312_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Mazda MX-5/2-2-Mazda-MX-5-cabriolet-3708152_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Mazda MX-5/2-2-Mazda-MX-5-cabriolet-3708152_1920.jpg new file mode 100644 index 0000000..b24e8e0 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Mazda MX-5/2-2-Mazda-MX-5-cabriolet-3708152_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Mazda MX-5/2-3-Mazda-MX-5-cabriolet-3708152_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Mazda MX-5/2-3-Mazda-MX-5-cabriolet-3708152_1920.jpg new file mode 100644 index 0000000..c5ba049 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Mazda MX-5/2-3-Mazda-MX-5-cabriolet-3708152_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 red/Tesla-3-car-8607713_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 red/Tesla-3-car-8607713_1920.jpg new file mode 100644 index 0000000..0b06ec7 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 red/Tesla-3-car-8607713_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 red/Tesla-3-car-8607713_19201.jpg b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 red/Tesla-3-car-8607713_19201.jpg new file mode 100644 index 0000000..8af4bbe Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 red/Tesla-3-car-8607713_19201.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 red/Tesla-3-car-8607713_19202.jpg b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 red/Tesla-3-car-8607713_19202.jpg new file mode 100644 index 0000000..7b86fd0 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 red/Tesla-3-car-8607713_19202.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 1/tesla-3-5937063_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 1/tesla-3-5937063_1920.jpg new file mode 100644 index 0000000..717c5c2 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 1/tesla-3-5937063_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 1/tesla-3-5937063_19201.jpg b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 1/tesla-3-5937063_19201.jpg new file mode 100644 index 0000000..bf533b7 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 1/tesla-3-5937063_19201.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 1/tesla-3-5937063_19202.jpg b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 1/tesla-3-5937063_19202.jpg new file mode 100644 index 0000000..953f4ac Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 1/tesla-3-5937063_19202.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 2/Tesla-3-charlie-deets-AkgALppFIwo-unsplash.jpg b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 2/Tesla-3-charlie-deets-AkgALppFIwo-unsplash.jpg new file mode 100644 index 0000000..8a1b126 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 2/Tesla-3-charlie-deets-AkgALppFIwo-unsplash.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 2/Tesla-3-charlie-deets-AkgALppFIwo-unsplash1.jpg b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 2/Tesla-3-charlie-deets-AkgALppFIwo-unsplash1.jpg new file mode 100644 index 0000000..8bdc8ea Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 2/Tesla-3-charlie-deets-AkgALppFIwo-unsplash1.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 2/Tesla-3-charlie-deets-AkgALppFIwo-unsplash2.jpg b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 2/Tesla-3-charlie-deets-AkgALppFIwo-unsplash2.jpg new file mode 100644 index 0000000..abc5273 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 2/Tesla-3-charlie-deets-AkgALppFIwo-unsplash2.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 3/Tesla-3-i-m-zion-A-JEMot0hWs-unsplash.jpg b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 3/Tesla-3-i-m-zion-A-JEMot0hWs-unsplash.jpg new file mode 100644 index 0000000..50044d4 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 3/Tesla-3-i-m-zion-A-JEMot0hWs-unsplash.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 3/Tesla-3-i-m-zion-A-JEMot0hWs-unsplash1.jpg b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 3/Tesla-3-i-m-zion-A-JEMot0hWs-unsplash1.jpg new file mode 100644 index 0000000..f42bc13 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 3/Tesla-3-i-m-zion-A-JEMot0hWs-unsplash1.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 3/Tesla-3-i-m-zion-A-JEMot0hWs-unsplash2.jpg b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 3/Tesla-3-i-m-zion-A-JEMot0hWs-unsplash2.jpg new file mode 100644 index 0000000..584e1fc Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Tesla 3 white 3/Tesla-3-i-m-zion-A-JEMot0hWs-unsplash2.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Toyota Corolla/toyota-corolla-347288_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Toyota Corolla/toyota-corolla-347288_1920.jpg new file mode 100644 index 0000000..b7bfd49 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Toyota Corolla/toyota-corolla-347288_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Toyota Corolla/toyota-corolla-347288_19201.jpg b/samples/FleetManagement/wwwroot/cars/photos/Toyota Corolla/toyota-corolla-347288_19201.jpg new file mode 100644 index 0000000..b81bc36 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Toyota Corolla/toyota-corolla-347288_19201.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Toyota Corolla/toyota-corolla-347288_19202.jpg b/samples/FleetManagement/wwwroot/cars/photos/Toyota Corolla/toyota-corolla-347288_19202.jpg new file mode 100644 index 0000000..cbcaee9 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Toyota Corolla/toyota-corolla-347288_19202.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 1/Toyota-RAV4-gino-marcelo-hernandez-sanchez-MN0-x2hDNrc-unsplash.jpg b/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 1/Toyota-RAV4-gino-marcelo-hernandez-sanchez-MN0-x2hDNrc-unsplash.jpg new file mode 100644 index 0000000..bd69c56 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 1/Toyota-RAV4-gino-marcelo-hernandez-sanchez-MN0-x2hDNrc-unsplash.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 1/Toyota-RAV4-gino-marcelo-hernandez-sanchez-MN0-x2hDNrc-unsplash1.jpg b/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 1/Toyota-RAV4-gino-marcelo-hernandez-sanchez-MN0-x2hDNrc-unsplash1.jpg new file mode 100644 index 0000000..3d5a407 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 1/Toyota-RAV4-gino-marcelo-hernandez-sanchez-MN0-x2hDNrc-unsplash1.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 1/Toyota-RAV4-gino-marcelo-hernandez-sanchez-MN0-x2hDNrc-unsplash2.jpg b/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 1/Toyota-RAV4-gino-marcelo-hernandez-sanchez-MN0-x2hDNrc-unsplash2.jpg new file mode 100644 index 0000000..c4fbbb7 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 1/Toyota-RAV4-gino-marcelo-hernandez-sanchez-MN0-x2hDNrc-unsplash2.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 2/Toyota-RAV4-krish-parmar-PmSwFm4Lw1c-unsplash.jpg b/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 2/Toyota-RAV4-krish-parmar-PmSwFm4Lw1c-unsplash.jpg new file mode 100644 index 0000000..b796550 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 2/Toyota-RAV4-krish-parmar-PmSwFm4Lw1c-unsplash.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 2/Toyota-RAV4-krish-parmar-PmSwFm4Lw1c-unsplash1.jpg b/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 2/Toyota-RAV4-krish-parmar-PmSwFm4Lw1c-unsplash1.jpg new file mode 100644 index 0000000..7da69ba Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 2/Toyota-RAV4-krish-parmar-PmSwFm4Lw1c-unsplash1.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 2/Toyota-RAV4-krish-parmar-PmSwFm4Lw1c-unsplash2.jpg b/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 2/Toyota-RAV4-krish-parmar-PmSwFm4Lw1c-unsplash2.jpg new file mode 100644 index 0000000..0e7af30 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 2/Toyota-RAV4-krish-parmar-PmSwFm4Lw1c-unsplash2.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 3/Toyota-RAV4-stephen-andrews-28Lmg9YaTFY-unsplash.jpg b/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 3/Toyota-RAV4-stephen-andrews-28Lmg9YaTFY-unsplash.jpg new file mode 100644 index 0000000..47e9b9f Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 3/Toyota-RAV4-stephen-andrews-28Lmg9YaTFY-unsplash.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 3/Toyota-RAV4-stephen-andrews-28Lmg9YaTFY-unsplash1.jpg b/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 3/Toyota-RAV4-stephen-andrews-28Lmg9YaTFY-unsplash1.jpg new file mode 100644 index 0000000..98be96a Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 3/Toyota-RAV4-stephen-andrews-28Lmg9YaTFY-unsplash1.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 3/Toyota-RAV4-stephen-andrews-28Lmg9YaTFY-unsplash2.jpg b/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 3/Toyota-RAV4-stephen-andrews-28Lmg9YaTFY-unsplash2.jpg new file mode 100644 index 0000000..441bbf8 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Toyota RAV4 3/Toyota-RAV4-stephen-andrews-28Lmg9YaTFY-unsplash2.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Toyota Tundra/toyota-tundra-1241658_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/Toyota Tundra/toyota-tundra-1241658_1920.jpg new file mode 100644 index 0000000..0554e29 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Toyota Tundra/toyota-tundra-1241658_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Toyota Tundra/toyota-tundra-1241658_19201.jpg b/samples/FleetManagement/wwwroot/cars/photos/Toyota Tundra/toyota-tundra-1241658_19201.jpg new file mode 100644 index 0000000..1b6b83d Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Toyota Tundra/toyota-tundra-1241658_19201.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/Toyota Tundra/toyota-tundra-1241658_19202.jpg b/samples/FleetManagement/wwwroot/cars/photos/Toyota Tundra/toyota-tundra-1241658_19202.jpg new file mode 100644 index 0000000..0a0135d Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/Toyota Tundra/toyota-tundra-1241658_19202.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Caddy 1/VW_Caddy-ollie-walls-jDo2IZm-uFc-unsplash.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Caddy 1/VW_Caddy-ollie-walls-jDo2IZm-uFc-unsplash.jpg new file mode 100644 index 0000000..d61db34 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Caddy 1/VW_Caddy-ollie-walls-jDo2IZm-uFc-unsplash.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Caddy 1/VW_Caddy-ollie-walls-jDo2IZm-uFc-unsplash1.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Caddy 1/VW_Caddy-ollie-walls-jDo2IZm-uFc-unsplash1.jpg new file mode 100644 index 0000000..c373365 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Caddy 1/VW_Caddy-ollie-walls-jDo2IZm-uFc-unsplash1.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Caddy 1/VW_Caddy-ollie-walls-jDo2IZm-uFc-unsplash2.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Caddy 1/VW_Caddy-ollie-walls-jDo2IZm-uFc-unsplash2.jpg new file mode 100644 index 0000000..bc61026 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Caddy 1/VW_Caddy-ollie-walls-jDo2IZm-uFc-unsplash2.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Caddy 2/VW-Caddy-daniil-lyusov-fesux3IvcVo-unsplash-2.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Caddy 2/VW-Caddy-daniil-lyusov-fesux3IvcVo-unsplash-2.jpg new file mode 100644 index 0000000..1ecdfcb Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Caddy 2/VW-Caddy-daniil-lyusov-fesux3IvcVo-unsplash-2.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Caddy 2/VW-Caddy-daniil-lyusov-fesux3IvcVo-unsplash-21.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Caddy 2/VW-Caddy-daniil-lyusov-fesux3IvcVo-unsplash-21.jpg new file mode 100644 index 0000000..cbf010e Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Caddy 2/VW-Caddy-daniil-lyusov-fesux3IvcVo-unsplash-21.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Caddy 2/VW-Caddy-daniil-lyusov-fesux3IvcVo-unsplash-22.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Caddy 2/VW-Caddy-daniil-lyusov-fesux3IvcVo-unsplash-22.jpg new file mode 100644 index 0000000..03f253f Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Caddy 2/VW-Caddy-daniil-lyusov-fesux3IvcVo-unsplash-22.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Golf/VW-Golf-car-5671331_1280.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Golf/VW-Golf-car-5671331_1280.jpg new file mode 100644 index 0000000..1ba7e55 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Golf/VW-Golf-car-5671331_1280.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Golf/vw-Golf-4332807_1280.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Golf/vw-Golf-4332807_1280.jpg new file mode 100644 index 0000000..69eae2d Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Golf/vw-Golf-4332807_1280.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Golf/vw-Golf-4332807_12801.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Golf/vw-Golf-4332807_12801.jpg new file mode 100644 index 0000000..ac924f9 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Golf/vw-Golf-4332807_12801.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Passat black/VW-passat-768159_1280.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Passat black/VW-passat-768159_1280.jpg new file mode 100644 index 0000000..79c0205 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Passat black/VW-passat-768159_1280.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Passat black/VW-passat-768159_12801.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Passat black/VW-passat-768159_12801.jpg new file mode 100644 index 0000000..aa10ba2 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Passat black/VW-passat-768159_12801.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Passat black/VW-passat-768159_12802.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Passat black/VW-passat-768159_12802.jpg new file mode 100644 index 0000000..7532cc4 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Passat black/VW-passat-768159_12802.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Passat gray/VW-Passat-car-866764_1280.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Passat gray/VW-Passat-car-866764_1280.jpg new file mode 100644 index 0000000..6418fd7 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Passat gray/VW-Passat-car-866764_1280.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Passat gray/VW-Passat-car-866769_1280.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Passat gray/VW-Passat-car-866769_1280.jpg new file mode 100644 index 0000000..1b01f80 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Passat gray/VW-Passat-car-866769_1280.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Passat gray/VW-Passat-car-866769_12801.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Passat gray/VW-Passat-car-866769_12801.jpg new file mode 100644 index 0000000..d034647 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Passat gray/VW-Passat-car-866769_12801.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Polo/VW-Polo-pexels-hellojoshwithers-16625624.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Polo/VW-Polo-pexels-hellojoshwithers-16625624.jpg new file mode 100644 index 0000000..bd6588d Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Polo/VW-Polo-pexels-hellojoshwithers-16625624.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Polo/VW-Polo-pexels-hellojoshwithers-166256241.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Polo/VW-Polo-pexels-hellojoshwithers-166256241.jpg new file mode 100644 index 0000000..a285155 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Polo/VW-Polo-pexels-hellojoshwithers-166256241.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Polo/VW-Polo-pexels-hellojoshwithers-166256242.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Polo/VW-Polo-pexels-hellojoshwithers-166256242.jpg new file mode 100644 index 0000000..d82c8b1 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Polo/VW-Polo-pexels-hellojoshwithers-166256242.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Touareg 1/4-1-VW-Touareg-automobile-4061855_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Touareg 1/4-1-VW-Touareg-automobile-4061855_1920.jpg new file mode 100644 index 0000000..2297e32 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Touareg 1/4-1-VW-Touareg-automobile-4061855_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Touareg 1/4-2-VW-Touareg-338895_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Touareg 1/4-2-VW-Touareg-338895_1920.jpg new file mode 100644 index 0000000..945ff16 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Touareg 1/4-2-VW-Touareg-338895_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Touareg 1/4-3-VW-Touareg-automobile-4061855_1920.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Touareg 1/4-3-VW-Touareg-automobile-4061855_1920.jpg new file mode 100644 index 0000000..21de263 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Touareg 1/4-3-VW-Touareg-automobile-4061855_1920.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Touareg 2/5-1-VW-Touareg-pexels-ardit-mbrati-216809103-16646414.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Touareg 2/5-1-VW-Touareg-pexels-ardit-mbrati-216809103-16646414.jpg new file mode 100644 index 0000000..269d133 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Touareg 2/5-1-VW-Touareg-pexels-ardit-mbrati-216809103-16646414.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Touareg 2/5-2-VW-Touareg-pexels-ardit-mbrati-216809103-16646416.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Touareg 2/5-2-VW-Touareg-pexels-ardit-mbrati-216809103-16646416.jpg new file mode 100644 index 0000000..b5d7566 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Touareg 2/5-2-VW-Touareg-pexels-ardit-mbrati-216809103-16646416.jpg differ diff --git a/samples/FleetManagement/wwwroot/cars/photos/VW Touareg 2/5-3-VW-Touareg-pexels-ardit-mbrati-216809103-16646412.jpg b/samples/FleetManagement/wwwroot/cars/photos/VW Touareg 2/5-3-VW-Touareg-pexels-ardit-mbrati-216809103-16646412.jpg new file mode 100644 index 0000000..2e1e7c0 Binary files /dev/null and b/samples/FleetManagement/wwwroot/cars/photos/VW Touareg 2/5-3-VW-Touareg-pexels-ardit-mbrati-216809103-16646412.jpg differ diff --git a/samples/FleetManagement/wwwroot/data/car_images.json b/samples/FleetManagement/wwwroot/data/car_images.json new file mode 100644 index 0000000..74f1190 --- /dev/null +++ b/samples/FleetManagement/wwwroot/data/car_images.json @@ -0,0 +1,182 @@ +{ + "Ford F-150 blue": [ + "Ford-F150-caleb-white-XGJBSkoqX_I-unsplash.jpg", + "Ford-F150-caleb-white-XGJBSkoqX_I-unsplash1.jpg", + "Ford-F150-caleb-white-XGJBSkoqX_I-unsplash2.jpg" + ], + "Ford F-150 red": [ + "Ford-f150-7572360_1920.jpg", + "Ford-f150-7572360_19201.jpg", + "Ford-f150-7572360_19202.jpg" + ], + "Ford Focus blue": [ + "ford-focus-5167838_1280.jpg", + "ford-focus-5167838_12801.jpg", + "ford-focus-5167838_12802.jpg" + ], + "Ford Focus dark gray": [ + "1-1-Ford-Focus-car-3300587_1280.jpg", + "1-2-Ford-Focus-car-3300588_1280.jpg", + "1-3-Ford-Focus-car-3300587_1280.jpg" + ], + "Ford Mustang blue": [ + "Ford-Mustang-automobile-1450573_1920.jpg", + "Ford-Mustang-automobile-1450573_19201.jpg", + "Ford-Mustang-automobile-1450573_19202.jpg" + ], + "Ford Mustang red": [ + "Ford-Mustang-convertible-1630448_1920.jpg", + "Ford-Mustang-convertible-1630448_19201.jpg", + "Ford-Mustang-convertible-1630448_19202.jpg" + ], + "Honda Civic": [ + "honda-civic-4967605_1920.jpg", + "honda-civic-4967605_19201.jpg", + "honda-civic-4967605_19202.jpg" + ], + "Hyundai ix35": [ + "Hyundai-ix35-5505817_1920.jpg", + "Hyundai-ix35-5505817_19201.jpg", + "Hyundai-ix35-5505817_19202.jpg" + ], + "Hyundai Kona": [ + "Hyundai-Kona-electric-4964667_1920.jpg", + "Hyundai-Kona-electric-4964667_19201.jpg", + "Hyundai-Kona-electric-4964667_19202.jpg" + ], + "Kia Ceed red": [ + "Kia-Ceed-car-3305685_1280.jpg", + "Kia-ceed-car-3305686_1920.jpg", + "Kia-Ceed-car-3305699_1280.jpg" + ], + "Kia Ceed white": [ + "Kia-Ceed-car-6097887_1920.jpg", + "Kia-Ceed-car-6097887_19201.jpg", + "Kia-Ceed-car-6097887_19202.jpg" + ], + "Kia EV6 gray": [ + "KIA-EV6-hyundai-motor-group-gKODwMitO-c-unsplash.jpg", + "KIA-EV6-hyundai-motor-group-gKODwMitO-c-unsplash1.jpg", + "KIA-EV6-hyundai-motor-group-gKODwMitO-c-unsplash2.jpg" + ], + "Kia EV6 red": [ + "KIA-EV6-hyundai-motor-group-jdjzmbw4GPg-unsplash.jpg", + "KIA-EV6-hyundai-motor-group-jdjzmbw4GPg-unsplash1.jpg", + "KIA-EV6-hyundai-motor-group-jdjzmbw4GPg-unsplash2.jpg" + ], + "Kia EV6 GT": [ + "KIA-EV6-GT-line edited hyundai-motor-group-ErBFxMkJpKk-unsplash-detail1.jpg", + "KIA-EV6-GT-line edited hyundai-motor-group-ErBFxMkJpKk-unsplash.jpg", + "KIA-EV6-GT-line edited hyundai-motor-group-ErBFxMkJpKk-unsplash2.jpg" + ], + "Kia Soul": [ + "Kia-Soul-car-2441815_1920.jpg", + "Kia-Soul-car-2441815_19201.jpg", + "Kia-Soul-car-2441815_19202.jpg" + ], + "Kia Sportage": [ + "Kia-Sportage-2382086_1920.jpg", + "Kia-Sportage-2382086_19201.jpg", + "Kia-Sportage-2382086_19202.jpg" + ], + "Mazda 3": [ + "mazda-3-7498005_1920.jpg", + "mazda-3-7498005_19201.jpg", + "mazda-3-7498005_19202.jpg" + ], + "Mazda 6": [ + "3-1-Mazda-6-car-6122178_1920.jpg", + "3-2-Mazda-6-car-6122177_1920.jpg", + "3-3-Mazda-6-car-6122177_1920.jpg" + ], + "Mazda MX-5": [ + "2-1-Mazda-MX-5-cabriolet-3627312_1920.jpg", + "2-2-Mazda-MX-5-cabriolet-3708152_1920.jpg", + "2-3-Mazda-MX-5-cabriolet-3708152_1920.jpg" + ], + "Tesla 3 red": [ + "Tesla-3-car-8607713_1920.jpg", + "Tesla-3-car-8607713_19201.jpg", + "Tesla-3-car-8607713_19202.jpg" + ], + "Tesla 3 white 1": [ + "tesla-3-5937063_1920.jpg", + "tesla-3-5937063_19201.jpg", + "tesla-3-5937063_19202.jpg" + ], + "Tesla 3 white 2": [ + "Tesla-3-charlie-deets-AkgALppFIwo-unsplash.jpg", + "Tesla-3-charlie-deets-AkgALppFIwo-unsplash1.jpg", + "Tesla-3-charlie-deets-AkgALppFIwo-unsplash2.jpg" + ], + "Tesla 3 white 3": [ + "Tesla-3-i-m-zion-A-JEMot0hWs-unsplash.jpg", + "Tesla-3-i-m-zion-A-JEMot0hWs-unsplash1.jpg", + "Tesla-3-i-m-zion-A-JEMot0hWs-unsplash2.jpg" + ], + "Toyota Corolla": [ + "toyota-corolla-347288_1920.jpg", + "toyota-corolla-347288_19201.jpg", + "toyota-corolla-347288_19202.jpg" + ], + "Toyota RAV4 1": [ + "Toyota-RAV4-gino-marcelo-hernandez-sanchez-MN0-x2hDNrc-unsplash.jpg", + "Toyota-RAV4-gino-marcelo-hernandez-sanchez-MN0-x2hDNrc-unsplash1.jpg", + "Toyota-RAV4-gino-marcelo-hernandez-sanchez-MN0-x2hDNrc-unsplash2.jpg" + ], + "Toyota RAV4 2": [ + "Toyota-RAV4-krish-parmar-PmSwFm4Lw1c-unsplash.jpg", + "Toyota-RAV4-krish-parmar-PmSwFm4Lw1c-unsplash1.jpg", + "Toyota-RAV4-krish-parmar-PmSwFm4Lw1c-unsplash2.jpg" + ], + "Toyota RAV4 3": [ + "Toyota-RAV4-stephen-andrews-28Lmg9YaTFY-unsplash.jpg", + "Toyota-RAV4-stephen-andrews-28Lmg9YaTFY-unsplash1.jpg", + "Toyota-RAV4-stephen-andrews-28Lmg9YaTFY-unsplash2.jpg" + ], + "Toyota Tundra": [ + "toyota-tundra-1241658_1920.jpg", + "toyota-tundra-1241658_19201.jpg", + "toyota-tundra-1241658_19202.jpg" + ], + "VW Caddy 1": [ + "VW_Caddy-ollie-walls-jDo2IZm-uFc-unsplash.jpg", + "VW_Caddy-ollie-walls-jDo2IZm-uFc-unsplash1.jpg", + "VW_Caddy-ollie-walls-jDo2IZm-uFc-unsplash2.jpg" + ], + "VW Caddy 2": [ + "VW-Caddy-daniil-lyusov-fesux3IvcVo-unsplash-2.jpg", + "VW-Caddy-daniil-lyusov-fesux3IvcVo-unsplash-21.jpg", + "VW-Caddy-daniil-lyusov-fesux3IvcVo-unsplash-22.jpg" + ], + "VW Golf": [ + "vw-Golf-4332807_1280.jpg", + "vw-Golf-4332807_12801.jpg", + "VW-Golf-car-5671331_1280.jpg" + ], + "VW Passat black": [ + "VW-passat-768159_1280.jpg", + "VW-passat-768159_12801.jpg", + "VW-passat-768159_12802.jpg" + ], + "VW Passat gray": [ + "VW-Passat-car-866764_1280.jpg", + "VW-Passat-car-866769_1280.jpg", + "VW-Passat-car-866769_12801.jpg" + ], + "VW Polo": [ + "VW-Polo-pexels-hellojoshwithers-16625624.jpg", + "VW-Polo-pexels-hellojoshwithers-166256241.jpg", + "VW-Polo-pexels-hellojoshwithers-166256242.jpg" + ], + "VW Touareg 1": [ + "4-1-VW-Touareg-automobile-4061855_1920.jpg", + "4-2-VW-Touareg-338895_1920.jpg", + "4-3-VW-Touareg-automobile-4061855_1920.jpg" + ], + "VW Touareg 2": [ + "5-1-VW-Touareg-pexels-ardit-mbrati-216809103-16646414.jpg", + "5-2-VW-Touareg-pexels-ardit-mbrati-216809103-16646416.jpg", + "5-3-VW-Touareg-pexels-ardit-mbrati-216809103-16646412.jpg" + ] +} diff --git a/samples/FleetManagement/wwwroot/data/car_photo_manifest.json b/samples/FleetManagement/wwwroot/data/car_photo_manifest.json new file mode 100644 index 0000000..b3d3e80 --- /dev/null +++ b/samples/FleetManagement/wwwroot/data/car_photo_manifest.json @@ -0,0 +1,102 @@ +[ + { + "id": "A00101", + "folder": "Ford Focus dark gray" + }, + { + "id": "A00102", + "folder": "Ford Focus blue" + }, + { + "id": "A00103", + "folder": "VW Passat black" + }, + { + "id": "A00104", + "folder": "VW Passat gray" + }, + { + "id": "A00105", + "folder": "VW Golf" + }, + { + "id": "A00106", + "folder": "Kia Ceed white" + }, + { + "id": "A00107", + "folder": "Honda Civic" + }, + { + "id": "A00108", + "folder": "Toyota Corolla" + }, + { + "id": "A00109", + "folder": "Mazda 3" + }, + { + "id": "A00110", + "folder": "Ford Mustang red" + }, + { + "id": "A00111", + "folder": "Toyota RAV4 1" + }, + { + "id": "A00112", + "folder": "Toyota RAV4 2" + }, + { + "id": "A00113", + "folder": "Ford F-150 blue" + }, + { + "id": "A00114", + "folder": "Ford F-150 red" + }, + { + "id": "A00115", + "folder": "Hyundai Kona" + }, + { + "id": "A00116", + "folder": "Hyundai ix35" + }, + { + "id": "A00117", + "folder": "Kia Ceed red" + }, + { + "id": "A00118", + "folder": "Ford Mustang blue" + }, + { + "id": "A00119", + "folder": "Kia EV6 gray" + }, + { + "id": "A00120", + "folder": "Tesla 3 red" + }, + { + "id": "A00121", + "folder": "Kia EV6 red" + }, + { + "id": "A00122", + "folder": "Mazda 6" + }, + { + "id": "A00123", + "folder": "Toyota Tundra" + }, + { + "id": "A00124", + "folder": "VW Touareg 1" + }, + { + "id": "A00125", + "folder": "Kia Sportage" + } +] diff --git a/samples/FleetManagement/wwwroot/exampleJsInterop.js b/samples/FleetManagement/wwwroot/exampleJsInterop.js deleted file mode 100644 index ea8d76a..0000000 --- a/samples/FleetManagement/wwwroot/exampleJsInterop.js +++ /dev/null @@ -1,6 +0,0 @@ -// This is a JavaScript module that is loaded on demand. It can export any number of -// functions, and may import other JavaScript modules if required. - -export function showPrompt(message) { - return prompt(message, 'Type anything here'); -} diff --git a/samples/FleetManagement/wwwroot/location_pin.svg b/samples/FleetManagement/wwwroot/location_pin.svg new file mode 100644 index 0000000..24cce8d --- /dev/null +++ b/samples/FleetManagement/wwwroot/location_pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/samples/FleetManagement/wwwroot/people/men/1.jpg b/samples/FleetManagement/wwwroot/people/men/1.jpg new file mode 100644 index 0000000..c87da4b Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/1.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/10.jpg b/samples/FleetManagement/wwwroot/people/men/10.jpg new file mode 100644 index 0000000..64b23ba Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/10.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/11.jpg b/samples/FleetManagement/wwwroot/people/men/11.jpg new file mode 100644 index 0000000..78f1a00b Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/11.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/12.jpg b/samples/FleetManagement/wwwroot/people/men/12.jpg new file mode 100644 index 0000000..7fe953e Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/12.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/13.jpg b/samples/FleetManagement/wwwroot/people/men/13.jpg new file mode 100644 index 0000000..793050e Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/13.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/14.jpg b/samples/FleetManagement/wwwroot/people/men/14.jpg new file mode 100644 index 0000000..28485eb Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/14.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/15.jpg b/samples/FleetManagement/wwwroot/people/men/15.jpg new file mode 100644 index 0000000..fa9b0b4 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/15.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/16.jpg b/samples/FleetManagement/wwwroot/people/men/16.jpg new file mode 100644 index 0000000..c8b10c9 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/16.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/17.jpg b/samples/FleetManagement/wwwroot/people/men/17.jpg new file mode 100644 index 0000000..4582ff9 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/17.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/18.jpg b/samples/FleetManagement/wwwroot/people/men/18.jpg new file mode 100644 index 0000000..ec8efea Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/18.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/19.jpg b/samples/FleetManagement/wwwroot/people/men/19.jpg new file mode 100644 index 0000000..22146cf Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/19.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/2.jpg b/samples/FleetManagement/wwwroot/people/men/2.jpg new file mode 100644 index 0000000..46b50b3 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/2.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/20.jpg b/samples/FleetManagement/wwwroot/people/men/20.jpg new file mode 100644 index 0000000..443ca04 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/20.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/21.jpg b/samples/FleetManagement/wwwroot/people/men/21.jpg new file mode 100644 index 0000000..db7d2e1 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/21.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/22.jpg b/samples/FleetManagement/wwwroot/people/men/22.jpg new file mode 100644 index 0000000..a684a66 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/22.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/23.jpg b/samples/FleetManagement/wwwroot/people/men/23.jpg new file mode 100644 index 0000000..e01c7c3 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/23.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/24.jpg b/samples/FleetManagement/wwwroot/people/men/24.jpg new file mode 100644 index 0000000..1cd8992 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/24.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/25.jpg b/samples/FleetManagement/wwwroot/people/men/25.jpg new file mode 100644 index 0000000..638bba9 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/25.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/26.jpg b/samples/FleetManagement/wwwroot/people/men/26.jpg new file mode 100644 index 0000000..1e540f2 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/26.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/3.jpg b/samples/FleetManagement/wwwroot/people/men/3.jpg new file mode 100644 index 0000000..a1ca2b7 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/3.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/4.jpg b/samples/FleetManagement/wwwroot/people/men/4.jpg new file mode 100644 index 0000000..3d2b1d4 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/4.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/5.jpg b/samples/FleetManagement/wwwroot/people/men/5.jpg new file mode 100644 index 0000000..a925c20 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/5.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/6.jpg b/samples/FleetManagement/wwwroot/people/men/6.jpg new file mode 100644 index 0000000..e2a8a00 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/6.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/7.jpg b/samples/FleetManagement/wwwroot/people/men/7.jpg new file mode 100644 index 0000000..5cc24cf Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/7.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/8.jpg b/samples/FleetManagement/wwwroot/people/men/8.jpg new file mode 100644 index 0000000..79342d9 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/8.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/men/9.jpg b/samples/FleetManagement/wwwroot/people/men/9.jpg new file mode 100644 index 0000000..676b050 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/men/9.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/1.jpg b/samples/FleetManagement/wwwroot/people/women/1.jpg new file mode 100644 index 0000000..11adb72 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/1.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/10.jpg b/samples/FleetManagement/wwwroot/people/women/10.jpg new file mode 100644 index 0000000..9c0db98 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/10.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/11.jpg b/samples/FleetManagement/wwwroot/people/women/11.jpg new file mode 100644 index 0000000..6939e63 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/11.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/12.jpg b/samples/FleetManagement/wwwroot/people/women/12.jpg new file mode 100644 index 0000000..19472d3 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/12.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/13.jpg b/samples/FleetManagement/wwwroot/people/women/13.jpg new file mode 100644 index 0000000..4c4cf0e Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/13.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/14.jpg b/samples/FleetManagement/wwwroot/people/women/14.jpg new file mode 100644 index 0000000..97505f6 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/14.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/15.jpg b/samples/FleetManagement/wwwroot/people/women/15.jpg new file mode 100644 index 0000000..7ba8f35 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/15.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/16.jpg b/samples/FleetManagement/wwwroot/people/women/16.jpg new file mode 100644 index 0000000..52d0986 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/16.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/17.jpg b/samples/FleetManagement/wwwroot/people/women/17.jpg new file mode 100644 index 0000000..119b560 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/17.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/18.jpg b/samples/FleetManagement/wwwroot/people/women/18.jpg new file mode 100644 index 0000000..c6fb88b Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/18.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/19.jpg b/samples/FleetManagement/wwwroot/people/women/19.jpg new file mode 100644 index 0000000..e8cc163 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/19.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/2.jpg b/samples/FleetManagement/wwwroot/people/women/2.jpg new file mode 100644 index 0000000..d2a4dad Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/2.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/20.jpg b/samples/FleetManagement/wwwroot/people/women/20.jpg new file mode 100644 index 0000000..9273d25 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/20.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/21.jpg b/samples/FleetManagement/wwwroot/people/women/21.jpg new file mode 100644 index 0000000..5c4668b Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/21.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/22.jpg b/samples/FleetManagement/wwwroot/people/women/22.jpg new file mode 100644 index 0000000..d8e6acc Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/22.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/23.jpg b/samples/FleetManagement/wwwroot/people/women/23.jpg new file mode 100644 index 0000000..f02a947 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/23.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/24.jpg b/samples/FleetManagement/wwwroot/people/women/24.jpg new file mode 100644 index 0000000..6a65364 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/24.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/25.jpg b/samples/FleetManagement/wwwroot/people/women/25.jpg new file mode 100644 index 0000000..7b04bf0 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/25.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/26.jpg b/samples/FleetManagement/wwwroot/people/women/26.jpg new file mode 100644 index 0000000..5e97b5c Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/26.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/3.jpg b/samples/FleetManagement/wwwroot/people/women/3.jpg new file mode 100644 index 0000000..75c60ae Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/3.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/4.jpg b/samples/FleetManagement/wwwroot/people/women/4.jpg new file mode 100644 index 0000000..22ee31d Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/4.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/5.jpg b/samples/FleetManagement/wwwroot/people/women/5.jpg new file mode 100644 index 0000000..8d913a4 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/5.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/6.jpg b/samples/FleetManagement/wwwroot/people/women/6.jpg new file mode 100644 index 0000000..a85d010 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/6.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/7.jpg b/samples/FleetManagement/wwwroot/people/women/7.jpg new file mode 100644 index 0000000..42e1c5b Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/7.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/8.jpg b/samples/FleetManagement/wwwroot/people/women/8.jpg new file mode 100644 index 0000000..e88ff99 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/8.jpg differ diff --git a/samples/FleetManagement/wwwroot/people/women/9.jpg b/samples/FleetManagement/wwwroot/people/women/9.jpg new file mode 100644 index 0000000..2178980 Binary files /dev/null and b/samples/FleetManagement/wwwroot/people/women/9.jpg differ diff --git a/samples/FleetManagement/wwwroot/scripts/fleet-grid-templates.js b/samples/FleetManagement/wwwroot/scripts/fleet-grid-templates.js new file mode 100644 index 0000000..9577cee --- /dev/null +++ b/samples/FleetManagement/wwwroot/scripts/fleet-grid-templates.js @@ -0,0 +1,41 @@ +(function registerFleetGridTemplates() { + if (!window.igRegisterScript || !window.igTemplating || !window.igTemplating.html) { + setTimeout(registerFleetGridTemplates, 50); + return; + } + + const html = window.igTemplating.html; + + const icons = { + check: html``, + wrench: html``, + delivery: html``, + gitIssue: html`` + }; + + const statusVariant = { "Available": "success", "In Maintenance": "danger", "Active": "info" }; + const statusIcon = { "Available": icons.check, "In Maintenance": icons.wrench, "Active": icons.delivery }; + + window.igRegisterScript("fleetDriverCell", (ctx) => { + const data = ctx.cell.row.data || {}; + const photo = data.driverPhotoUrl || data.DriverPhotoUrl || ""; + const isCurrent = ctx.cell.row.index === 0 && (data.end ?? data.End) === "N/A"; + return html`
${ctx.cell.value}${isCurrent ? html`Current` : ""}
`; + }, false); + + window.igRegisterScript("fleetMakeCell", (ctx) => { + const make = ctx.cell.value; + return html`
${make}
`; + }, false); + + window.igRegisterScript("fleetStatusCell", (ctx) => { + const status = ctx.cell.value; + return html`
${statusIcon[status] || icons.delivery}${status}
`; + }, false); + + window.igRegisterScript("fleetMaintenanceTypeCell", (ctx) => { + const value = ctx.cell.value; + const regular = value === "Regular"; + return html`
${regular ? icons.check : icons.gitIssue}${value}
`; + }, false); +})(); diff --git a/samples/FleetManagement/wwwroot/styles/fleet.css b/samples/FleetManagement/wwwroot/styles/fleet.css new file mode 100644 index 0000000..a5dc3ef --- /dev/null +++ b/samples/FleetManagement/wwwroot/styles/fleet.css @@ -0,0 +1,313 @@ +#fleet-section { + background-color: var(--ig-surface-500); + color: var(--ig-gray-900); + min-height: 100%; +} + +#fleet-section .main-grid { + --ig-size: var(--ig-size-small); +} + +/* The grid generates its row theming from --ig-theme-variant, which the globally-loaded light + grid theme pins to "light" on the grid element, so it paints a white background directly on + the even rows (bypassing the --row-even-background token, which our scoped dark tokens can't + reach anyway). Force the even rows back to the dark surface so they match the odd rows -- + high specificity + !important to beat the grid's generated rule. */ +#fleet-section .main-grid .igx-grid__tr.igx-grid__tr--even { + background: var(--ig-gray-50) !important; +} + +/* Match the WC header sort indicator size (15px) — the grid otherwise renders it at the + default 24px, which makes the small header look oversized. */ +#fleet-section .main-grid igx-grid-header igx-icon { + font-size: 15px; + width: 15px; + height: 15px; +} + +#fleet-section [id^="host-"] { + width: 100%; +} + +#fleet-section igc-tabs::part(inner) { + width: 100%; +} + +#fleet-section igc-tab::part(tab-body) { + width: 100%; +} + +#fleet-section igc-tab[selected]::part(tab-header) { + color: var(--ig-primary-500); +} + +#fleet-section .igx-grid-toolbar__title { + flex: 0 0 auto; + /* Show the "Fleet Management" title (WC parity) in the dark theme's light text colour; + the grid's default title colour is dark and would be invisible on the dark surface. */ + color: var(--ig-gray-900); +} + +#fleet-section .igx-grid-toolbar__custom-content { + justify-content: flex-start; + color: #e0e0e0; +} + +#fleet-section .clear-sort-btn { + margin-left: auto; +} + +#fleet-section igc-grid { + --ig-size: var(--ig-size-small); +} + +#fleet-section .clear-sort-btn .toolbar-btn-icon { + display: inline-flex; + align-items: center; + margin-right: 2px; +} + +#fleet-section .clear-sort-btn .toolbar-btn-icon svg { + width: 16px; + height: 16px; + fill: currentColor; +} + +#fleet-section .cell-flex { + display: flex; + align-items: center; + gap: 0.5rem; +} + +#fleet-section .driver-avatar, +#fleet-section .logo-avatar { + --size: 22px; + --ig-size: var(--ig-size-small); +} + +#fleet-section .driver-badge { + --ig-size: var(--ig-size-small); +} + +#fleet-section .driver-badge::part(base) { + background: var(--ig-success-500); +} + +#fleet-section .current-badge-text { + margin: 0 8px; +} + +#fleet-section .status-icon { + display: inline-flex; + align-items: center; + justify-content: center; +} + +#fleet-section .status-icon svg { + width: 14px; + height: 14px; + fill: #000000; +} + +#fleet-section .status-value { + white-space: nowrap; +} + +#fleet-section .detail-tabs { + width: 100%; +} + +#fleet-section .details-container { + display: flex; + align-items: flex-start; + padding: 16px; + width: 100%; +} + +#fleet-section .carousel-container { + width: 420px; + height: 240px; + flex: 0 0 420px; +} + +#fleet-section .carousel-container igc-carousel { + display: block; + width: 100%; + height: 100%; +} + +#fleet-section .image-container { + width: 100%; + height: 100%; + display: flex; + align-items: center; + justify-content: center; + overflow: hidden; +} + +#fleet-section .image-container img { + width: 100%; + height: 100%; + object-fit: cover; + border-radius: 8px; +} + +#fleet-section .details-table { + display: flex; + flex-direction: row; + width: calc(100% * (2 / 3)); + height: auto; + justify-content: space-around; +} + +#fleet-section .detail-block-container { + display: flex; + flex-direction: row; + justify-content: space-around; + align-items: flex-start; + width: 50%; +} + +#fleet-section .detail-category-container, +#fleet-section .detail-content-container { + width: 50%; +} + +#fleet-section .detail-category-container { + padding-left: 25px; +} + +#fleet-section .detail-item { + padding: 5px 0; + font-size: 0.8125rem; + border-bottom: 1px solid var(--ig-gray-300); + white-space: nowrap; +} + +#fleet-section .detail-category { + font-weight: 600; +} + +#fleet-section .detail-value { + opacity: 0.85; +} + +#fleet-section .charts-dashboard { + display: flex; + flex-wrap: wrap; + gap: 1rem; + padding: 1rem; + height: 460px; +} + +#fleet-section .chart-card { + flex: 1 1 0; + min-width: 240px; + display: flex; + flex-direction: column; +} + +#fleet-section .chart-card-wide { + flex-basis: 100%; +} + +#fleet-section .cost-dashboard { + display: grid; + grid-template-columns: 1fr 2.5fr; + grid-template-rows: 1fr 1fr; + gap: 1rem; + height: 480px; +} + +#fleet-section .cost-dashboard .pie-cell { + grid-column: 1; + grid-row: 1; +} + +#fleet-section .cost-dashboard .area-cell { + grid-column: 1; + grid-row: 2; +} + +#fleet-section .cost-dashboard .column-cell { + grid-column: 2; + grid-row: 1 / span 2; +} + +#fleet-section .cost-dashboard .chart-card { + min-width: 0; +} + +#fleet-section .chart-title { + font-weight: 600; +} + +#fleet-section .chart-header { + display: flex; + justify-content: space-between; + align-items: center; + gap: 1rem; + margin-bottom: 0.5rem; + min-height: 48px; +} + +#fleet-section .chart-period { + width: 160px; + flex-shrink: 0; +} + +#fleet-section .chart-legend { + display: flex; + gap: 1rem; +} + +#fleet-section .legend-item { + display: flex; + align-items: center; + gap: 0.4rem; + font-size: 0.8125rem; +} + +#fleet-section .legend-swatch { + width: 12px; + height: 12px; + border-radius: 2px; + display: inline-block; +} + +#fleet-section .legend-2023 { + background: #7ED957; +} + +#fleet-section .legend-2024 { + background: #9B6DC6; +} + +#fleet-section .chart-host { + flex: 1; + min-height: 0; +} + +#fleet-section .cost-dashboard .chart-host { + border: 1px solid var(--ig-gray-400); + border-radius: 6px; + padding: 6px; +} + +#fleet-section .utilization-card { + align-items: flex-start; + gap: 0.25rem; + padding: 15px; + border-radius: 6px; + border: 1px solid var(--ig-gray-400); +} + +#fleet-section .utilization-title { + margin: 0; + font-size: 1.75rem; + font-weight: 400; +} + +#fleet-section .utilization-card .chart-host { + width: 100%; +} diff --git a/samples/HRPortal/ExampleJsInterop.cs b/samples/HRPortal/ExampleJsInterop.cs deleted file mode 100644 index e578f43..0000000 --- a/samples/HRPortal/ExampleJsInterop.cs +++ /dev/null @@ -1,32 +0,0 @@ -using Microsoft.JSInterop; - -namespace HRPortal -{ - // This class provides an example of how JavaScript functionality can be wrapped - // in a .NET class for easy consumption. The associated JavaScript module is - // loaded on demand when first needed. - // - // This class can be registered as scoped DI service and then injected into Blazor - // components for use. - - public class ExampleJsInterop(IJSRuntime jsRuntime) : IAsyncDisposable - { - private readonly Lazy> moduleTask = new(() => jsRuntime.InvokeAsync( - "import", "./_content/HRPortal/exampleJsInterop.js").AsTask()); - - public async ValueTask Prompt(string message) - { - var module = await moduleTask.Value; - return await module.InvokeAsync("showPrompt", message); - } - - public async ValueTask DisposeAsync() - { - if (moduleTask.IsValueCreated) - { - var module = await moduleTask.Value; - await module.DisposeAsync(); - } - } - } -} diff --git a/samples/HRPortal/HRPortal.csproj b/samples/HRPortal/HRPortal.csproj index fd2f805..8e22ef3 100644 --- a/samples/HRPortal/HRPortal.csproj +++ b/samples/HRPortal/HRPortal.csproj @@ -12,7 +12,7 @@ - + diff --git a/samples/HRPortal/HRPortalComponent.razor b/samples/HRPortal/HRPortalComponent.razor index 78ae213..d5f4b70 100644 --- a/samples/HRPortal/HRPortalComponent.razor +++ b/samples/HRPortal/HRPortalComponent.razor @@ -8,7 +8,7 @@
-
+
@if (isLoading) {
@@ -31,7 +31,7 @@ ChildDataKey="Employees" AllowFiltering="true" FilterMode="@FilterMode.ExcelStyleFilter" - RowSelection="@GridSelectionMode.Multiple" + RowSelection="@GridSelectionMode.MultipleCascade" Height="calc(100vh - 200px)" SortingExpressionsChange="OnSortingExpressionsChange" @ref="treeGrid"> @@ -41,6 +41,7 @@ @if (isSorted) { + Clear Sort } @@ -51,16 +52,16 @@ - - - - + + - - - + + }
@@ -82,7 +83,8 @@ { "linkedin", "mail", - "tel" + "tel", + "close" }; @@ -92,15 +94,28 @@ isLoading = false; } - protected override void OnAfterRender(bool firstRender) + protected override async Task OnAfterRenderAsync(bool firstRender) { - if (this.IconRef != null && firstRender) + if (firstRender) { - this.IconRef.EnsureReady().ContinueWith(new Action((e) => + // Re-theme this sample to Fluent by full-scoping the stock theme (tokens AND + // component rules) to #fluent-section -- the third arg `true` opts into full scope. + // Tokens-only leaves the toolbar buttons, header weight and checkbox styled by the + // global Material theme; the full Fluent rules give WC parity (black square toolbar + // buttons, bold headers, thin dark checkbox). scopeThemeToElement dedupes on remount. + await JS.InvokeVoidAsync("scopeThemeToElement", + "_content/IgniteUI.Blazor/themes/light/fluent.css", "#fluent-section", true); + await JS.InvokeVoidAsync("scopeThemeToElement", + "_content/IgniteUI.Blazor/themes/grid/light/fluent.css", "#fluent-section", true); + + if (this.IconRef != null) { - this.RegisterCountryIconsAsync(); - this.RegisterContactIconsAsync(); - })); + this.IconRef.EnsureReady().ContinueWith(new Action((e) => + { + this.RegisterCountryIconsAsync(); + this.RegisterContactIconsAsync(); + })); + } } } @@ -139,6 +154,3 @@ } } - - - \ No newline at end of file diff --git a/samples/HRPortal/wwwroot/background.png b/samples/HRPortal/wwwroot/background.png deleted file mode 100644 index e15a3bd..0000000 Binary files a/samples/HRPortal/wwwroot/background.png and /dev/null differ diff --git a/samples/HRPortal/wwwroot/exampleJsInterop.js b/samples/HRPortal/wwwroot/exampleJsInterop.js deleted file mode 100644 index ea8d76a..0000000 --- a/samples/HRPortal/wwwroot/exampleJsInterop.js +++ /dev/null @@ -1,6 +0,0 @@ -// This is a JavaScript module that is loaded on demand. It can export any number of -// functions, and may import other JavaScript modules if required. - -export function showPrompt(message) { - return prompt(message, 'Type anything here'); -} diff --git a/samples/HRPortal/wwwroot/scripts/hr-templates.js b/samples/HRPortal/wwwroot/scripts/hr-templates.js index 54e9824..1e50599 100644 --- a/samples/HRPortal/wwwroot/scripts/hr-templates.js +++ b/samples/HRPortal/wwwroot/scripts/hr-templates.js @@ -1,57 +1,47 @@ -function avatarCellTemplate(ctx) { +(function registerHrTemplates() { + if (!window.igRegisterScript || !window.igTemplating || !window.igTemplating.html) { + setTimeout(registerHrTemplates, 50); + return; + } const html = window.igTemplating.html; - const data = ctx.cell.row.data; - const pictureUrl = data.Picture - ? `_content/HRPortal/public/${data.Picture}` - : ''; - return html` -
- - ${data.Name || ''} -
- `; -} + window.igRegisterScript("AvatarCellTemplate", (ctx) => { + const data = ctx.cell.row.data; + const pictureUrl = data.Picture ? `_content/HRPortal/public/${data.Picture}` : ""; + return html` +
+ + ${data.Name || ""} +
`; + }, false); -function countryFlagTemplate(ctx) { - const html = window.igTemplating.html; - const data = ctx.cell.row.data; - const country = data.Country || ''; - const location = data.Location || ''; - const flagUrl = country - ? `_content/HRPortal/public/images/countries/${country}.svg` - : ''; - - return html` -
- ${flagUrl ? html`` : ''} - ${location}${country ? `, ${country}` : ''} -
- `; -} - - -function contactCellTemplate(ctx) { - const html = window.igTemplating.html; - const data = ctx.cell.row.data; - const email = data.Contacs; - const phone = data.Phone; + window.igRegisterScript("CountryFlagTemplate", (ctx) => { + const data = ctx.cell.row.data; + const country = data.Country || ""; + const location = data.Location || ""; + return html` +
+ ${country ? html`` : ""} + ${location}${country ? `, ${country}` : ""} +
`; + }, false); - return html` - - `; -} + window.igRegisterScript("HrDateTemplate", (ctx) => { + const v = ctx.cell.row.data.HireDate; + if (!v) return html``; + const d = new Date(v); + return html`${isNaN(d.getTime()) ? v : d.toISOString().split("T")[0]}`; + }, false); -igRegisterScript("AvatarCellTemplate", avatarCellTemplate, false); -igRegisterScript("CountryFlagTemplate", countryFlagTemplate, false); -igRegisterScript("ContactCellTemplate", contactCellTemplate, false); \ No newline at end of file + window.igRegisterScript("ContactCellTemplate", (ctx) => { + const data = ctx.cell.row.data; + const email = data.Contacts; + const phone = data.Phone; + return html` +
+ + + +
`; + }, false); +})(); diff --git a/samples/HRPortal/wwwroot/styles/hr-portal.css b/samples/HRPortal/wwwroot/styles/hr-portal.css index d4f617b..4c38492 100644 --- a/samples/HRPortal/wwwroot/styles/hr-portal.css +++ b/samples/HRPortal/wwwroot/styles/hr-portal.css @@ -1,39 +1,73 @@ -#fluent-section { - @import '_content/IgniteUI.Blazor/themes/grid/light/fluent.css'; +#fluent-section .hr-container { + height: calc(100vh - 80px); + width: 100%; } -.employee-cell { - display: flex; - align-items: center; - gap: 8px; +#fluent-section igc-tree-grid { + --ig-size: var(--ig-size-medium); + --row-even-background: #ffffff; } -.employee-cell igc-avatar { - flex-shrink: 0; - --ig-size: var(--ig-size-small); + +#fluent-section .employee-cell { + display: flex; + align-items: center; + gap: 8px; +} + +#fluent-section .employee-cell igc-avatar { + flex-shrink: 0; + --ig-size: var(--ig-size-small); +} + +#fluent-section .employee-cell igc-avatar::part(base) { + --size: 28px; } -.employee-cell span { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; + +#fluent-section .employee-cell span { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } -.location-cell { - display: flex; - align-items: center; - gap: 8px; +#fluent-section .location-cell { + display: flex; + align-items: center; + gap: 8px; } -.location-cell igc-icon { - width: 24px; - height: 18px; - flex-shrink: 0; + +#fluent-section .location-cell igc-icon { + width: 18px; + height: 14px; + flex-shrink: 0; + border-radius: 1px; + box-shadow: var(--ig-elevation-1); + overflow: hidden; } -.location-cell span { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; + +#fluent-section .location-cell span { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } -.igx-grid { - --ig-size: var(--ig-size-medium); - --row-even-background: #ffffff; -} \ No newline at end of file +#fluent-section .center-content { + display: flex; + justify-content: center; + align-items: center; + height: 100%; + gap: 4px; +} + +#fluent-section .center-content.small { + --ig-size: var(--ig-size-small); +} + +#fluent-section .center-content a { + display: inline-flex; + color: var(--ig-primary-500); +} + +#fluent-section .center-content igc-icon-button::part(base), +#fluent-section .center-content igc-icon-button::part(icon) { + color: var(--ig-primary-500); +} diff --git a/samples/SalesGrid/ExampleJsInterop.cs b/samples/SalesGrid/ExampleJsInterop.cs deleted file mode 100644 index 5630056..0000000 --- a/samples/SalesGrid/ExampleJsInterop.cs +++ /dev/null @@ -1,32 +0,0 @@ -using Microsoft.JSInterop; - -namespace SalesGrid -{ - // This class provides an example of how JavaScript functionality can be wrapped - // in a .NET class for easy consumption. The associated JavaScript module is - // loaded on demand when first needed. - // - // This class can be registered as scoped DI service and then injected into Blazor - // components for use. - - public class ExampleJsInterop(IJSRuntime jsRuntime) : IAsyncDisposable - { - private readonly Lazy> moduleTask = new(() => jsRuntime.InvokeAsync( - "import", "./_content/SalesGrid/exampleJsInterop.js").AsTask()); - - public async ValueTask Prompt(string message) - { - var module = await moduleTask.Value; - return await module.InvokeAsync("showPrompt", message); - } - - public async ValueTask DisposeAsync() - { - if (moduleTask.IsValueCreated) - { - var module = await moduleTask.Value; - await module.DisposeAsync(); - } - } - } -} diff --git a/samples/SalesGrid/Models/PivotSalesData.cs b/samples/SalesGrid/Models/PivotSalesData.cs new file mode 100644 index 0000000..db4873e --- /dev/null +++ b/samples/SalesGrid/Models/PivotSalesData.cs @@ -0,0 +1,27 @@ +using System.Text.Json.Serialization; + +namespace SalesGrid.Models; + +public class PivotSalesDataItem +{ + [JsonPropertyName("Country")] + public string Country { get; set; } = ""; + + [JsonPropertyName("Store")] + public string Store { get; set; } = ""; + + [JsonPropertyName("Brand")] + public string Brand { get; set; } = ""; + + [JsonPropertyName("Sale")] + public double Sale { get; set; } + + [JsonPropertyName("Cost")] + public double Cost { get; set; } + + [JsonPropertyName("Date")] + public string Date { get; set; } = ""; + + [JsonIgnore] + public double Profit => Sale - Cost; +} diff --git a/samples/SalesGrid/Models/SalesData.cs b/samples/SalesGrid/Models/SalesData.cs deleted file mode 100644 index f3ea933..0000000 --- a/samples/SalesGrid/Models/SalesData.cs +++ /dev/null @@ -1,63 +0,0 @@ -using System.Globalization; -using System.Text.Json; -using System.Text.Json.Serialization; - -namespace SalesGrid.Models; - -// Matches the source dataset at -// https://www.infragistics.com/grid-examples-data/data/sales/sales.json -public class SalesData -{ - [JsonPropertyName("Store")] - public string? Store { get; set; } - - [JsonPropertyName("Brand")] - public string? Brand { get; set; } - - [JsonPropertyName("Country")] - public string? Country { get; set; } - - [JsonPropertyName("Sale")] - public double Sale { get; set; } - - [JsonPropertyName("Cost")] - public double Cost { get; set; } - - [JsonPropertyName("Date")] - [JsonConverter(typeof(FlexibleDateTimeConverter))] - public DateTime Date { get; set; } - - // Derived locally (not present in the source JSON). - [JsonIgnore] - public double Profit { get; set; } -} - -// The source dates use the non-ISO "M/d/yyyy" form (e.g. "2/9/2018"), which the -// default System.Text.Json DateTime reader rejects. This converter accepts both. -public class FlexibleDateTimeConverter : JsonConverter -{ - private static readonly string[] Formats = - { - "M/d/yyyy", "MM/dd/yyyy", "yyyy-MM-dd", "yyyy-MM-ddTHH:mm:ss.fffZ" - }; - - public override DateTime Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) - { - var s = reader.GetString(); - if (DateTime.TryParse(s, CultureInfo.InvariantCulture, DateTimeStyles.AssumeUniversal | DateTimeStyles.AdjustToUniversal, out var dt)) - { - return dt; - } - foreach (var f in Formats) - { - if (DateTime.TryParseExact(s, f, CultureInfo.InvariantCulture, DateTimeStyles.None, out dt)) - { - return dt; - } - } - return default; - } - - public override void Write(Utf8JsonWriter writer, DateTime value, JsonSerializerOptions options) - => writer.WriteStringValue(value.ToString("yyyy-MM-dd", CultureInfo.InvariantCulture)); -} diff --git a/samples/SalesGrid/SalesGrid.csproj b/samples/SalesGrid/SalesGrid.csproj index fd2f805..8033862 100644 --- a/samples/SalesGrid/SalesGrid.csproj +++ b/samples/SalesGrid/SalesGrid.csproj @@ -4,6 +4,11 @@ net10.0 enable enable + + $(NoWarn);BL0005 @@ -12,7 +17,7 @@ - + diff --git a/samples/SalesGrid/SalesGridComponent.razor b/samples/SalesGrid/SalesGridComponent.razor index 5842399..0111d40 100644 --- a/samples/SalesGrid/SalesGridComponent.razor +++ b/samples/SalesGrid/SalesGridComponent.razor @@ -1,84 +1,207 @@ -@using SalesGrid.Services +@using System.Linq @using SalesGrid.Models +@using SalesGrid.Services @using IgniteUI.Blazor.Controls -@inject SalesService SalesService -@implements IDisposable +@using Microsoft.JSInterop +@inject SalesDataService SalesData +@inject HttpClient Http +@inject IJSRuntime JS -
- @if (isLoading) - { -
-
- Loading... + + +
+
+
+ Sales Dashboard +
+ + + + @CurrentTitle + + + Brands: HM and HM Home + Brands: HM + HM Home + Stores: Bulgaria + + + + + Export to Excel + +
-

Loading sales data...

-
- } - else if (!SalesService.Data.Any()) - { - - } - else - { - - - - - - - - - -
- - Data updates every 3 seconds to simulate live sales data - +
+
+ +
+
+ +
- } +
@code { + private IgbPivotGrid? pivotGrid; + private IgbPivotDataSelector? selector; + private bool selectorBound; private bool isLoading = true; - private System.Timers.Timer? updateTimer; - private IgbGrid? grid; + private string selectedConfig = "brandsSeparate"; + + private List _all = new(); + + // Load every Nth row so the pivot builds faster (SUM totals scale ~1/N). Tunable. + private const int SampleEvery = 3; + + private IgbDropdown? viewDropdown; + private IgbIcon? eyeIcon; + private IgbIcon? caretIcon; + private IgbIcon? downloadIcon; + + private const string EyeSvg = ""; + private const string CaretSvg = ""; + private const string DownloadSvg = ""; protected override async Task OnInitializedAsync() { - SalesService.OnDataChanged += OnDataChanged; - await SalesService.LoadDataAsync(); + _all = await SalesData.LoadAsync(Http, sampleEvery: SampleEvery); isLoading = false; + } - // Start auto-update timer (every 3 seconds) - updateTimer = new System.Timers.Timer(3000); - updateTimer.Elapsed += (sender, args) => - { - SalesService.UpdateAllData(); - }; - updateTimer.Start(); + private List CurrentData => (selectedConfig == "stores" + ? _all.Where(d => d.Country == "Bulgaria") + : _all.Where(d => d.Brand == "HM" || d.Brand == "HM Home")).ToList(); + + private IgbPivotConfiguration CurrentConfig => selectedConfig switch + { + "brandsCombined" => BrandsCombinedConfig, + "stores" => StoresConfig, + _ => BrandsSeparateConfig + }; + + private string CurrentTitle => selectedConfig switch + { + "brandsCombined" => "Brands: HM + HM Home", + "stores" => "Stores: Bulgaria", + _ => "Brands: HM and HM Home" + }; + + private void OnViewSelected(IgbDropdownItemComponentEventArgs e) + { + selectedConfig = e.Detail.Value?.ToString() ?? "brandsSeparate"; + selectorBound = false; } - private void OnDataChanged() + protected override async Task OnAfterRenderAsync(bool firstRender) { - InvokeAsync(() => + if (firstRender) + { + await JS.InvokeVoidAsync("scopeThemeToElement", + "_content/IgniteUI.Blazor/themes/light/indigo.css", "#sales-section", true); + await JS.InvokeVoidAsync("scopeThemeToElement", + "_content/IgniteUI.Blazor/themes/grid/light/indigo.css", "#sales-section", true); + await RegisterIconAsync(eyeIcon, "sales-eye", EyeSvg); + await RegisterIconAsync(caretIcon, "sales-caret", CaretSvg); + await RegisterIconAsync(downloadIcon, "sales-download", DownloadSvg); + await JS.InvokeVoidAsync("shellInterop.shrinkSelectorSearch"); + } + + if (!selectorBound && pivotGrid is not null && selector is not null) { - StateHasChanged(); - if (grid != null) - { - grid.MarkForCheck(); - } - }); + selector.Grid = pivotGrid; + selectorBound = true; + } + } + + private static async Task RegisterIconAsync(IgbIcon? icon, string name, string svg) + { + if (icon is null) return; + await icon.EnsureReady(); + await icon.RegisterIconFromTextAsync(name, svg, "material"); } - public void Dispose() + private void ExportToExcel() { - updateTimer?.Stop(); - updateTimer?.Dispose(); - SalesService.OnDataChanged -= OnDataChanged; } + + private static IgbPivotAggregator Sum() => + new() { Key = "SUM", AggregatorName = PivotAggregationType.SUM, Label = "Sum" }; + + private static IgbPivotValue SaleValue() => new() + { + Member = "Sale", DisplayName = "Sales", Enabled = true, + DataType = GridColumnDataType.Currency, Aggregate = Sum() + }; + + private static IgbPivotValue ProfitValue() => new() + { + Member = "Profit", DisplayName = "Profit", Enabled = true, + DataType = GridColumnDataType.Currency, Aggregate = Sum() + }; + + private static IgbPivotDateDimension DateDimension(bool fullDate) => new() + { + MemberName = "Date", DisplayName = "All Periods", Enabled = true, + BaseDimension = new IgbPivotDimension() { MemberName = "Date", Enabled = true }, + Options = new IgbPivotDateDimensionOptions() { Quarters = true, Months = false, FullDate = fullDate } + }; + + private IgbPivotConfiguration? _brandsSeparate; + private IgbPivotConfiguration BrandsSeparateConfig => _brandsSeparate ??= new() + { + Columns = new IgbPivotDimension[] + { + new() { MemberName = "Country", DisplayName = "Country", Enabled = true }, + new() { MemberName = "Brand", DisplayName = "Brand", Enabled = true }, + new() { MemberName = "Store", DisplayName = "Store", Enabled = false } + }, + Rows = new IgbPivotDimension[] { DateDimension(true) }, + Values = new IgbPivotValue[] { SaleValue(), ProfitValue() }, + Filters = new IgbPivotDimension[] + { + new() { MemberName = "Brand", DisplayName = "Brand", Enabled = true } + } + }; + + private IgbPivotConfiguration? _brandsCombined; + private IgbPivotConfiguration BrandsCombinedConfig => _brandsCombined ??= new() + { + Columns = new IgbPivotDimension[] + { + new() { MemberName = "Country", DisplayName = "Country", Enabled = true }, + new() { MemberName = "Store", DisplayName = "Store", Enabled = false } + }, + Rows = new IgbPivotDimension[] { DateDimension(true) }, + Values = new IgbPivotValue[] { SaleValue(), ProfitValue() }, + Filters = new IgbPivotDimension[] + { + new() { MemberName = "Brand", DisplayName = "Brand", Enabled = true } + } + }; + + private IgbPivotConfiguration? _stores; + private IgbPivotConfiguration StoresConfig => _stores ??= new() + { + Columns = new IgbPivotDimension[] { DateDimension(false) }, + Rows = new IgbPivotDimension[] + { + new() { MemberName = "Store", DisplayName = "Store", Enabled = true, Width = "140px" }, + new() { MemberName = "Brand", DisplayName = "Brand", Enabled = true, Width = "140px" } + }, + Values = new IgbPivotValue[] { SaleValue(), ProfitValue() }, + Filters = new IgbPivotDimension[] + { + new() { MemberName = "Country", DisplayName = "Country", Enabled = true } + } + }; } diff --git a/samples/SalesGrid/SalesGridComponent.razor.css b/samples/SalesGrid/SalesGridComponent.razor.css deleted file mode 100644 index c6afca4..0000000 --- a/samples/SalesGrid/SalesGridComponent.razor.css +++ /dev/null @@ -1,6 +0,0 @@ -.my-component { - border: 2px dashed red; - padding: 1em; - margin: 1em 0; - background-image: url('background.png'); -} diff --git a/samples/SalesGrid/Services/SalesDataService.cs b/samples/SalesGrid/Services/SalesDataService.cs new file mode 100644 index 0000000..1a61e5b --- /dev/null +++ b/samples/SalesGrid/Services/SalesDataService.cs @@ -0,0 +1,29 @@ +using System.Text.Json; +using SalesGrid.Models; + +namespace SalesGrid.Services; + +public class SalesDataService +{ + private const string DataUrl = "_content/SalesGrid/data/sales.json"; + + private static readonly JsonSerializerOptions Options = new() + { + PropertyNameCaseInsensitive = true + }; + + private List? _cache; + + public async Task> LoadAsync(HttpClient http, int sampleEvery = 1) + { + if (_cache is null) + { + var json = await http.GetStringAsync(DataUrl); + _cache = JsonSerializer.Deserialize>(json, Options) ?? new(); + } + + return sampleEvery <= 1 + ? _cache + : _cache.Where((_, index) => index % sampleEvery == 0).ToList(); + } +} diff --git a/samples/SalesGrid/Services/SalesService.cs b/samples/SalesGrid/Services/SalesService.cs deleted file mode 100644 index 84825e0..0000000 --- a/samples/SalesGrid/Services/SalesService.cs +++ /dev/null @@ -1,65 +0,0 @@ -using System.Text.Json; -using SalesGrid.Models; - -namespace SalesGrid.Services; - -public class SalesService -{ - private readonly HttpClient _httpClient; - private const string DataUrl = "https://www.infragistics.com/grid-examples-data/data/sales/sales.json"; - - private static readonly JsonSerializerOptions options = new() - { - PropertyNameCaseInsensitive = true - }; - - public List Data { get; private set; } = new(); - public event Action? OnDataChanged; - - public SalesService(HttpClient httpClient) - { - _httpClient = httpClient; - } - - public async Task LoadDataAsync() - { - try - { - var jsonText = await _httpClient.GetStringAsync(DataUrl); - Data = JsonSerializer.Deserialize>(jsonText, options) ?? new(); - - // Profit is derived: revenue minus cost. - foreach (var record in Data) - { - record.Profit = Math.Round(record.Sale - record.Cost, 2); - } - - OnDataChanged?.Invoke(); - } - catch (Exception) - { - // Failed to load data - Data list remains empty - } - } - - public void UpdateAllData() - { - foreach (var dataRow in Data) - { - // Simulate live sales updates - randomly adjust the sale amount and recalculate profit. - var volatility = 0.05; - var rnd = Math.Round(Random.Shared.NextDouble(), 2); - var changePercent = 2 * volatility * rnd; - if (changePercent > volatility) - { - changePercent -= 2 * volatility; - } - - var changeAmount = dataRow.Sale * changePercent; - dataRow.Sale = Math.Max(1, Math.Round(dataRow.Sale + changeAmount, 2)); - dataRow.Profit = Math.Round(dataRow.Sale - dataRow.Cost, 2); - } - - OnDataChanged?.Invoke(); - } -} diff --git a/samples/SalesGrid/wwwroot/background.png b/samples/SalesGrid/wwwroot/background.png deleted file mode 100644 index e15a3bd..0000000 Binary files a/samples/SalesGrid/wwwroot/background.png and /dev/null differ diff --git a/samples/SalesGrid/wwwroot/data/sales.json b/samples/SalesGrid/wwwroot/data/sales.json new file mode 100644 index 0000000..2abfdb9 --- /dev/null +++ b/samples/SalesGrid/wwwroot/data/sales.json @@ -0,0 +1 @@ +[{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":115,"Cost":102,"Date":"2/9/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":348,"Cost":186,"Date":"6/25/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":885,"Cost":591,"Date":"10/15/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":9,"Cost":8,"Date":"2/4/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":623,"Cost":315,"Date":"8/8/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":245,"Cost":214,"Date":"12/7/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":162,"Cost":152,"Date":"2/22/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":373,"Cost":293,"Date":"6/20/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":344,"Cost":242,"Date":"8/22/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":122,"Cost":64,"Date":"12/26/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":469,"Cost":261,"Date":"5/21/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":131,"Cost":117,"Date":"11/15/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":32,"Cost":27,"Date":"4/28/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":811,"Cost":550,"Date":"6/24/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":125,"Cost":111,"Date":"10/4/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":95,"Cost":84,"Date":"3/17/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":669,"Cost":613,"Date":"6/16/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":824,"Cost":623,"Date":"9/25/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":751,"Cost":500,"Date":"1/14/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":926,"Cost":591,"Date":"5/9/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":645,"Cost":448,"Date":"11/16/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":511,"Cost":482,"Date":"6/2/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":693,"Cost":351,"Date":"9/19/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":734,"Cost":621,"Date":"1/15/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":212,"Cost":183,"Date":"6/26/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":952,"Cost":727,"Date":"11/7/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":387,"Cost":233,"Date":"2/16/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":732,"Cost":624,"Date":"4/19/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":218,"Cost":133,"Date":"8/1/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":298,"Cost":259,"Date":"11/26/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":972,"Cost":592,"Date":"3/1/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":465,"Cost":329,"Date":"9/5/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":807,"Cost":546,"Date":"3/27/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":48,"Cost":34,"Date":"6/7/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":666,"Cost":628,"Date":"9/2/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":126,"Cost":77,"Date":"3/9/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":620,"Cost":490,"Date":"6/2/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":578,"Cost":304,"Date":"9/13/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":158,"Cost":138,"Date":"11/15/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":157,"Cost":80,"Date":"4/5/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":433,"Cost":405,"Date":"10/6/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":709,"Cost":663,"Date":"3/18/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":714,"Cost":571,"Date":"8/4/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":495,"Cost":369,"Date":"11/30/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":129,"Cost":114,"Date":"5/3/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":817,"Cost":623,"Date":"10/12/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":817,"Cost":759,"Date":"12/21/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":862,"Cost":699,"Date":"4/3/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":153,"Cost":99,"Date":"7/9/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":806,"Cost":661,"Date":"9/17/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":669,"Cost":464,"Date":"2/8/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":142,"Cost":125,"Date":"8/21/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":137,"Cost":110,"Date":"1/19/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":392,"Cost":361,"Date":"6/2/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":240,"Cost":134,"Date":"8/14/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":445,"Cost":404,"Date":"2/10/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":98,"Cost":55,"Date":"5/7/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":312,"Cost":272,"Date":"8/29/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":899,"Cost":608,"Date":"10/28/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":79,"Cost":45,"Date":"3/7/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":613,"Cost":322,"Date":"5/31/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":422,"Cost":281,"Date":"2/11/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":193,"Cost":175,"Date":"7/19/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":907,"Cost":746,"Date":"10/30/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":638,"Cost":359,"Date":"3/9/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":836,"Cost":464,"Date":"8/26/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":100,"Cost":63,"Date":"12/18/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":471,"Cost":409,"Date":"2/25/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":416,"Cost":252,"Date":"7/1/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":779,"Cost":696,"Date":"8/31/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":473,"Cost":335,"Date":"12/31/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":858,"Cost":747,"Date":"7/21/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":780,"Cost":713,"Date":"12/8/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":691,"Cost":614,"Date":"5/15/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":103,"Cost":97,"Date":"7/4/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":262,"Cost":195,"Date":"11/1/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":63,"Cost":51,"Date":"3/17/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":962,"Cost":763,"Date":"7/10/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":879,"Cost":696,"Date":"10/4/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":496,"Cost":391,"Date":"1/20/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":896,"Cost":553,"Date":"5/15/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":27,"Cost":17,"Date":"11/18/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":946,"Cost":524,"Date":"6/10/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":424,"Cost":348,"Date":"9/29/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":119,"Cost":78,"Date":"1/24/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":737,"Cost":466,"Date":"7/4/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":576,"Cost":350,"Date":"12/1/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":750,"Cost":578,"Date":"2/16/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":35,"Cost":18,"Date":"5/17/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":214,"Cost":196,"Date":"8/6/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":357,"Cost":283,"Date":"11/27/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":803,"Cost":682,"Date":"3/19/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":417,"Cost":349,"Date":"10/6/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":367,"Cost":284,"Date":"4/20/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":147,"Cost":106,"Date":"6/14/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":112,"Cost":101,"Date":"9/3/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":356,"Cost":247,"Date":"3/9/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":262,"Cost":247,"Date":"6/11/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":278,"Cost":242,"Date":"9/14/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":530,"Cost":350,"Date":"11/25/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":264,"Cost":164,"Date":"4/14/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":996,"Cost":701,"Date":"10/8/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":344,"Cost":245,"Date":"3/20/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":259,"Cost":201,"Date":"9/2/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":897,"Cost":788,"Date":"12/8/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":267,"Cost":155,"Date":"5/4/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":672,"Cost":594,"Date":"11/2/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":972,"Cost":828,"Date":"1/9/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":451,"Cost":235,"Date":"4/9/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":602,"Cost":536,"Date":"7/14/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":90,"Cost":62,"Date":"9/29/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":225,"Cost":161,"Date":"2/27/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":447,"Cost":405,"Date":"8/23/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":659,"Cost":626,"Date":"1/28/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":318,"Cost":242,"Date":"6/3/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":515,"Cost":432,"Date":"8/16/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":865,"Cost":768,"Date":"2/28/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":675,"Cost":415,"Date":"5/10/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":890,"Cost":663,"Date":"8/31/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":286,"Cost":263,"Date":"10/30/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":633,"Cost":360,"Date":"3/14/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":918,"Cost":872,"Date":"7/27/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":209,"Cost":119,"Date":"3/10/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":894,"Cost":480,"Date":"7/21/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":836,"Cost":713,"Date":"11/9/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":860,"Cost":814,"Date":"3/12/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":627,"Cost":400,"Date":"9/2/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":363,"Cost":295,"Date":"12/20/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":197,"Cost":120,"Date":"3/8/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":829,"Cost":719,"Date":"7/4/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":894,"Cost":689,"Date":"9/1/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":509,"Cost":405,"Date":"1/20/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":85,"Cost":47,"Date":"8/5/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":290,"Cost":172,"Date":"1/8/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":701,"Cost":386,"Date":"5/16/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":878,"Cost":519,"Date":"7/9/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":663,"Cost":464,"Date":"11/2/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":955,"Cost":694,"Date":"3/23/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":249,"Cost":138,"Date":"7/11/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":815,"Cost":581,"Date":"10/10/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":258,"Cost":234,"Date":"2/8/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":971,"Cost":740,"Date":"5/25/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":87,"Cost":71,"Date":"12/1/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":241,"Cost":146,"Date":"6/16/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":797,"Cost":470,"Date":"10/2/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":607,"Cost":307,"Date":"2/3/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":656,"Cost":577,"Date":"7/13/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":48,"Cost":25,"Date":"12/4/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":45,"Cost":35,"Date":"2/18/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":776,"Cost":659,"Date":"5/22/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":885,"Cost":770,"Date":"8/7/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":904,"Cost":621,"Date":"12/5/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":802,"Cost":707,"Date":"3/28/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":887,"Cost":709,"Date":"10/19/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":502,"Cost":382,"Date":"4/24/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":729,"Cost":632,"Date":"6/20/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":511,"Cost":357,"Date":"9/16/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":576,"Cost":435,"Date":"3/11/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":327,"Cost":289,"Date":"6/16/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":268,"Cost":235,"Date":"9/19/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":908,"Cost":500,"Date":"1/10/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":22,"Cost":13,"Date":"5/3/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":422,"Cost":398,"Date":"10/26/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":254,"Cost":202,"Date":"3/26/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":755,"Cost":511,"Date":"9/4/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":33,"Cost":25,"Date":"12/11/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":808,"Cost":608,"Date":"6/8/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":4,"Cost":3,"Date":"11/4/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":461,"Cost":384,"Date":"2/5/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":170,"Cost":118,"Date":"4/10/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":177,"Cost":96,"Date":"7/19/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":287,"Cost":162,"Date":"11/7/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":518,"Cost":327,"Date":"3/1/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":157,"Cost":91,"Date":"9/3/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":138,"Cost":102,"Date":"1/31/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":629,"Cost":597,"Date":"6/5/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":261,"Cost":152,"Date":"8/23/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":217,"Cost":192,"Date":"3/4/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":281,"Cost":149,"Date":"5/20/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":321,"Cost":174,"Date":"9/8/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":113,"Cost":65,"Date":"11/1/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":141,"Cost":112,"Date":"3/27/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":504,"Cost":440,"Date":"9/17/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":165,"Cost":101,"Date":"3/16/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":419,"Cost":321,"Date":"7/25/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":784,"Cost":558,"Date":"11/23/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":950,"Cost":797,"Date":"4/19/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":350,"Cost":247,"Date":"9/29/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":324,"Cost":177,"Date":"12/20/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":668,"Cost":632,"Date":"4/2/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":911,"Cost":595,"Date":"7/8/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":239,"Cost":172,"Date":"9/1/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":969,"Cost":825,"Date":"2/2/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":848,"Cost":745,"Date":"8/12/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":716,"Cost":496,"Date":"1/14/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":114,"Cost":99,"Date":"5/18/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":780,"Cost":699,"Date":"7/12/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":920,"Cost":493,"Date":"12/17/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":577,"Cost":336,"Date":"4/1/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":212,"Cost":110,"Date":"8/28/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":285,"Cost":232,"Date":"10/17/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":169,"Cost":130,"Date":"2/25/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":778,"Cost":660,"Date":"5/26/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":676,"Cost":550,"Date":"2/9/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":291,"Cost":229,"Date":"6/25/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":791,"Cost":667,"Date":"10/15/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":396,"Cost":313,"Date":"2/4/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":802,"Cost":512,"Date":"8/8/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":176,"Cost":91,"Date":"12/7/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":971,"Cost":698,"Date":"2/22/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":184,"Cost":172,"Date":"6/20/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":70,"Cost":58,"Date":"8/22/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":759,"Cost":416,"Date":"12/26/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":418,"Cost":270,"Date":"5/21/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":302,"Cost":253,"Date":"11/15/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":853,"Cost":601,"Date":"4/28/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":377,"Cost":271,"Date":"6/24/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":357,"Cost":315,"Date":"10/4/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":980,"Cost":514,"Date":"3/17/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":738,"Cost":538,"Date":"6/16/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":642,"Cost":537,"Date":"9/25/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":177,"Cost":90,"Date":"1/14/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":223,"Cost":183,"Date":"5/9/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":913,"Cost":815,"Date":"11/16/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":892,"Cost":796,"Date":"6/2/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":141,"Cost":129,"Date":"9/19/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":93,"Cost":56,"Date":"1/15/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":683,"Cost":625,"Date":"6/26/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":829,"Cost":706,"Date":"11/7/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":942,"Cost":625,"Date":"2/16/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":651,"Cost":412,"Date":"4/19/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":69,"Cost":55,"Date":"8/1/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":427,"Cost":278,"Date":"11/26/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":899,"Cost":632,"Date":"3/1/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":595,"Cost":475,"Date":"9/5/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":660,"Cost":559,"Date":"3/27/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":900,"Cost":492,"Date":"6/7/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":747,"Cost":620,"Date":"9/2/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":180,"Cost":162,"Date":"3/9/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":770,"Cost":635,"Date":"6/2/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":688,"Cost":639,"Date":"9/13/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":548,"Cost":316,"Date":"11/15/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":778,"Cost":634,"Date":"4/5/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":606,"Cost":380,"Date":"10/6/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":317,"Cost":163,"Date":"3/18/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":507,"Cost":289,"Date":"8/4/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":457,"Cost":316,"Date":"11/30/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":117,"Cost":61,"Date":"5/3/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":819,"Cost":498,"Date":"10/12/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":76,"Cost":55,"Date":"12/21/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":574,"Cost":362,"Date":"4/3/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":550,"Cost":334,"Date":"7/9/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":582,"Cost":423,"Date":"9/17/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":65,"Cost":48,"Date":"2/8/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":727,"Cost":478,"Date":"8/21/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":588,"Cost":543,"Date":"1/19/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":519,"Cost":372,"Date":"6/2/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":259,"Cost":157,"Date":"8/14/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":522,"Cost":355,"Date":"2/10/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":74,"Cost":60,"Date":"5/7/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":578,"Cost":334,"Date":"8/29/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":782,"Cost":537,"Date":"10/28/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":34,"Cost":24,"Date":"3/7/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":34,"Cost":21,"Date":"5/31/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":648,"Cost":590,"Date":"2/11/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":288,"Cost":236,"Date":"7/19/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":749,"Cost":539,"Date":"10/30/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":874,"Cost":570,"Date":"3/9/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":687,"Cost":421,"Date":"8/26/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":50,"Cost":38,"Date":"12/18/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":126,"Cost":77,"Date":"2/25/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":259,"Cost":222,"Date":"7/1/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":955,"Cost":491,"Date":"8/31/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":448,"Cost":377,"Date":"12/31/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":874,"Cost":718,"Date":"7/21/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":877,"Cost":742,"Date":"12/8/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":310,"Cost":272,"Date":"5/15/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":68,"Cost":45,"Date":"7/4/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":394,"Cost":257,"Date":"11/1/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":58,"Cost":30,"Date":"3/17/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":66,"Cost":62,"Date":"7/10/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":275,"Cost":172,"Date":"10/4/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":633,"Cost":349,"Date":"1/20/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":562,"Cost":410,"Date":"5/15/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":292,"Cost":217,"Date":"11/18/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":731,"Cost":649,"Date":"6/10/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":12,"Cost":6,"Date":"9/29/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":874,"Cost":719,"Date":"1/24/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":259,"Cost":179,"Date":"7/4/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":569,"Cost":511,"Date":"12/1/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":315,"Cost":253,"Date":"2/16/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":525,"Cost":318,"Date":"5/17/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":743,"Cost":506,"Date":"8/6/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":175,"Cost":143,"Date":"11/27/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":801,"Cost":521,"Date":"3/19/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":431,"Cost":255,"Date":"10/6/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":270,"Cost":206,"Date":"4/20/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":250,"Cost":162,"Date":"6/14/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":504,"Cost":404,"Date":"9/3/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":171,"Cost":100,"Date":"3/9/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":958,"Cost":854,"Date":"6/11/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":672,"Cost":604,"Date":"9/14/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":388,"Cost":216,"Date":"11/25/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":702,"Cost":502,"Date":"4/14/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":840,"Cost":518,"Date":"10/8/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":188,"Cost":147,"Date":"3/20/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":792,"Cost":564,"Date":"9/2/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":10,"Cost":8,"Date":"12/8/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":71,"Cost":42,"Date":"5/4/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":966,"Cost":792,"Date":"11/2/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":321,"Cost":171,"Date":"1/9/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":869,"Cost":814,"Date":"4/9/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":233,"Cost":162,"Date":"7/14/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":90,"Cost":55,"Date":"9/29/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":222,"Cost":137,"Date":"2/27/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":805,"Cost":435,"Date":"8/23/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":995,"Cost":936,"Date":"1/28/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":459,"Cost":243,"Date":"6/3/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":868,"Cost":752,"Date":"8/16/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":51,"Cost":31,"Date":"2/28/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":285,"Cost":163,"Date":"5/10/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":937,"Cost":796,"Date":"8/31/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":425,"Cost":301,"Date":"10/30/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":559,"Cost":525,"Date":"3/14/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":854,"Cost":653,"Date":"7/27/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":333,"Cost":299,"Date":"3/10/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":824,"Cost":571,"Date":"7/21/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":196,"Cost":159,"Date":"11/9/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":920,"Cost":651,"Date":"3/12/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":468,"Cost":294,"Date":"9/2/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":685,"Cost":573,"Date":"12/20/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":732,"Cost":615,"Date":"3/8/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":927,"Cost":692,"Date":"7/4/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":900,"Cost":819,"Date":"9/1/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":43,"Cost":26,"Date":"1/20/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":162,"Cost":104,"Date":"8/5/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":10,"Cost":9,"Date":"1/8/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":898,"Cost":607,"Date":"5/16/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":334,"Cost":223,"Date":"7/9/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":911,"Cost":506,"Date":"11/2/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":106,"Cost":97,"Date":"3/23/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":371,"Cost":298,"Date":"7/11/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":222,"Cost":155,"Date":"10/10/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":926,"Cost":725,"Date":"2/8/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":536,"Cost":471,"Date":"5/25/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":235,"Cost":218,"Date":"12/1/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":598,"Cost":299,"Date":"6/16/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":951,"Cost":659,"Date":"10/2/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":944,"Cost":851,"Date":"2/3/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":805,"Cost":427,"Date":"7/13/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":326,"Cost":262,"Date":"12/4/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":831,"Cost":618,"Date":"2/18/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":688,"Cost":618,"Date":"5/22/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":673,"Cost":336,"Date":"8/7/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":531,"Cost":425,"Date":"12/5/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":856,"Cost":684,"Date":"3/28/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":943,"Cost":697,"Date":"10/19/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":389,"Cost":328,"Date":"4/24/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":615,"Cost":378,"Date":"6/20/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":516,"Cost":343,"Date":"9/16/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":388,"Cost":284,"Date":"3/11/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":612,"Cost":509,"Date":"6/16/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":961,"Cost":661,"Date":"9/19/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":889,"Cost":457,"Date":"1/10/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":884,"Cost":632,"Date":"5/3/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":846,"Cost":468,"Date":"10/26/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":915,"Cost":604,"Date":"3/26/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":585,"Cost":545,"Date":"9/4/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":462,"Cost":235,"Date":"12/11/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":992,"Cost":685,"Date":"6/8/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":819,"Cost":640,"Date":"11/4/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":480,"Cost":445,"Date":"2/5/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":992,"Cost":669,"Date":"4/10/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":955,"Cost":735,"Date":"7/19/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":691,"Cost":602,"Date":"11/7/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":906,"Cost":673,"Date":"3/1/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":667,"Cost":469,"Date":"9/3/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":6,"Cost":4,"Date":"1/31/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":75,"Cost":49,"Date":"6/5/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":977,"Cost":603,"Date":"8/23/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":395,"Cost":352,"Date":"3/4/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":731,"Cost":429,"Date":"5/20/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":563,"Cost":334,"Date":"9/8/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":739,"Cost":600,"Date":"11/1/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":763,"Cost":454,"Date":"3/27/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":392,"Cost":352,"Date":"9/17/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":191,"Cost":110,"Date":"3/16/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":246,"Cost":211,"Date":"7/25/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":380,"Cost":304,"Date":"11/23/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":269,"Cost":140,"Date":"4/19/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":181,"Cost":92,"Date":"9/29/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":583,"Cost":357,"Date":"12/20/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":633,"Cost":442,"Date":"4/2/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":932,"Cost":809,"Date":"7/8/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":159,"Cost":128,"Date":"9/1/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":101,"Cost":94,"Date":"2/2/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":668,"Cost":340,"Date":"8/12/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":191,"Cost":161,"Date":"1/14/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":593,"Cost":442,"Date":"5/18/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":507,"Cost":271,"Date":"7/12/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":29,"Cost":17,"Date":"12/17/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":452,"Cost":397,"Date":"4/1/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":72,"Cost":62,"Date":"8/28/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":997,"Cost":720,"Date":"10/17/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":428,"Cost":330,"Date":"2/25/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":545,"Cost":464,"Date":"5/26/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":423,"Cost":216,"Date":"2/9/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":574,"Cost":522,"Date":"6/25/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":545,"Cost":340,"Date":"10/15/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":173,"Cost":94,"Date":"2/4/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":964,"Cost":569,"Date":"8/8/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":238,"Cost":150,"Date":"12/7/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":793,"Cost":598,"Date":"2/22/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":12,"Cost":8,"Date":"6/20/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":413,"Cost":323,"Date":"8/22/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":153,"Cost":86,"Date":"12/26/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":655,"Cost":452,"Date":"5/21/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":19,"Cost":15,"Date":"11/15/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":268,"Cost":203,"Date":"4/28/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":520,"Cost":341,"Date":"6/24/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":590,"Cost":440,"Date":"10/4/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":41,"Cost":32,"Date":"3/17/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":40,"Cost":35,"Date":"6/16/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":541,"Cost":341,"Date":"9/25/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":163,"Cost":109,"Date":"1/14/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":373,"Cost":332,"Date":"5/9/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":860,"Cost":609,"Date":"11/16/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":565,"Cost":464,"Date":"6/2/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":672,"Cost":344,"Date":"9/19/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":782,"Cost":609,"Date":"1/15/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":299,"Cost":195,"Date":"6/26/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":78,"Cost":45,"Date":"11/7/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":799,"Cost":473,"Date":"2/16/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":297,"Cost":175,"Date":"4/19/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":751,"Cost":607,"Date":"8/1/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":665,"Cost":621,"Date":"11/26/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":500,"Cost":453,"Date":"3/1/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":643,"Cost":435,"Date":"9/5/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":999,"Cost":887,"Date":"3/27/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":328,"Cost":167,"Date":"6/7/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":514,"Cost":283,"Date":"9/2/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":884,"Cost":545,"Date":"3/9/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":198,"Cost":163,"Date":"6/2/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":435,"Cost":225,"Date":"9/13/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":227,"Cost":175,"Date":"11/15/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":93,"Cost":67,"Date":"4/5/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":899,"Cost":694,"Date":"10/6/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":980,"Cost":848,"Date":"3/18/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":364,"Cost":217,"Date":"8/4/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":282,"Cost":147,"Date":"11/30/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":585,"Cost":366,"Date":"5/3/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":771,"Cost":391,"Date":"10/12/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":547,"Cost":311,"Date":"12/21/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":145,"Cost":122,"Date":"4/3/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":378,"Cost":331,"Date":"7/9/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":993,"Cost":535,"Date":"9/17/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":511,"Cost":448,"Date":"2/8/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":9,"Cost":5,"Date":"8/21/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":378,"Cost":344,"Date":"1/19/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":500,"Cost":343,"Date":"6/2/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":731,"Cost":609,"Date":"8/14/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":57,"Cost":42,"Date":"2/10/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":530,"Cost":410,"Date":"5/7/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":329,"Cost":279,"Date":"8/29/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":340,"Cost":299,"Date":"10/28/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":885,"Cost":578,"Date":"3/7/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":68,"Cost":49,"Date":"5/31/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":84,"Cost":65,"Date":"2/11/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":819,"Cost":709,"Date":"7/19/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":121,"Cost":74,"Date":"10/30/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":659,"Cost":573,"Date":"3/9/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":691,"Cost":605,"Date":"8/26/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":640,"Cost":424,"Date":"12/18/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":860,"Cost":495,"Date":"2/25/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":5,"Cost":3,"Date":"7/1/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":192,"Cost":170,"Date":"8/31/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":936,"Cost":843,"Date":"12/31/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":622,"Cost":565,"Date":"7/21/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":554,"Cost":472,"Date":"12/8/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":108,"Cost":57,"Date":"5/15/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":379,"Cost":313,"Date":"7/4/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":732,"Cost":434,"Date":"11/1/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":315,"Cost":191,"Date":"3/17/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":966,"Cost":781,"Date":"7/10/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":269,"Cost":201,"Date":"10/4/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":498,"Cost":331,"Date":"1/20/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":133,"Cost":70,"Date":"5/15/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":753,"Cost":699,"Date":"11/18/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":954,"Cost":639,"Date":"6/10/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":91,"Cost":53,"Date":"9/29/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":55,"Cost":41,"Date":"1/24/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":346,"Cost":264,"Date":"7/4/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":994,"Cost":538,"Date":"12/1/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":502,"Cost":384,"Date":"2/16/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":142,"Cost":83,"Date":"5/17/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":693,"Cost":602,"Date":"8/6/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":668,"Cost":440,"Date":"11/27/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":304,"Cost":262,"Date":"3/19/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":62,"Cost":33,"Date":"10/6/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":85,"Cost":52,"Date":"4/20/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":76,"Cost":38,"Date":"6/14/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":550,"Cost":495,"Date":"9/3/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":627,"Cost":580,"Date":"3/9/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":408,"Cost":282,"Date":"6/11/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":465,"Cost":358,"Date":"9/14/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":323,"Cost":197,"Date":"11/25/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":322,"Cost":212,"Date":"4/14/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":484,"Cost":432,"Date":"10/8/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":491,"Cost":381,"Date":"3/20/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":795,"Cost":479,"Date":"9/2/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":629,"Cost":497,"Date":"12/8/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":270,"Cost":251,"Date":"5/4/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":542,"Cost":369,"Date":"11/2/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":771,"Cost":481,"Date":"1/9/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":131,"Cost":96,"Date":"4/9/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":279,"Cost":198,"Date":"7/14/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":817,"Cost":638,"Date":"9/29/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":274,"Cost":226,"Date":"2/27/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":929,"Cost":529,"Date":"8/23/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":833,"Cost":496,"Date":"1/28/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":186,"Cost":127,"Date":"6/3/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":360,"Cost":340,"Date":"8/16/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":319,"Cost":278,"Date":"2/28/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":189,"Cost":99,"Date":"5/10/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":355,"Cost":321,"Date":"8/31/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":918,"Cost":587,"Date":"10/30/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":216,"Cost":178,"Date":"3/14/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":840,"Cost":730,"Date":"7/27/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":382,"Cost":239,"Date":"3/10/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":261,"Cost":146,"Date":"7/21/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":419,"Cost":291,"Date":"11/9/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":338,"Cost":278,"Date":"3/12/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":264,"Cost":220,"Date":"9/2/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":292,"Cost":247,"Date":"12/20/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":796,"Cost":469,"Date":"3/8/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":801,"Cost":692,"Date":"7/4/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":621,"Cost":481,"Date":"9/1/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":216,"Cost":194,"Date":"1/20/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":457,"Cost":307,"Date":"8/5/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":75,"Cost":50,"Date":"1/8/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":938,"Cost":593,"Date":"5/16/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":660,"Cost":535,"Date":"7/9/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":431,"Cost":331,"Date":"11/2/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":100,"Cost":76,"Date":"3/23/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":748,"Cost":445,"Date":"7/11/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":122,"Cost":114,"Date":"10/10/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":879,"Cost":751,"Date":"2/8/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":527,"Cost":341,"Date":"5/25/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":607,"Cost":344,"Date":"12/1/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":358,"Cost":303,"Date":"6/16/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":724,"Cost":413,"Date":"10/2/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":475,"Cost":447,"Date":"2/3/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":603,"Cost":319,"Date":"7/13/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":383,"Cost":232,"Date":"12/4/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":445,"Cost":399,"Date":"2/18/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":768,"Cost":427,"Date":"5/22/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":358,"Cost":281,"Date":"8/7/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":182,"Cost":158,"Date":"12/5/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":720,"Cost":560,"Date":"3/28/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":560,"Cost":531,"Date":"10/19/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":256,"Cost":239,"Date":"4/24/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":124,"Cost":90,"Date":"6/20/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":995,"Cost":880,"Date":"9/16/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":209,"Cost":196,"Date":"3/11/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":498,"Cost":341,"Date":"6/16/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":891,"Cost":740,"Date":"9/19/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":871,"Cost":624,"Date":"1/10/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":674,"Cost":490,"Date":"5/3/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":646,"Cost":352,"Date":"10/26/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":800,"Cost":620,"Date":"3/26/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":362,"Cost":250,"Date":"9/4/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":215,"Cost":118,"Date":"12/11/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":650,"Cost":442,"Date":"6/8/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":22,"Cost":18,"Date":"11/4/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":585,"Cost":532,"Date":"2/5/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":350,"Cost":327,"Date":"4/10/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":561,"Cost":401,"Date":"7/19/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":380,"Cost":354,"Date":"11/7/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":385,"Cost":322,"Date":"3/1/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":334,"Cost":261,"Date":"9/3/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":176,"Cost":125,"Date":"1/31/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":301,"Cost":209,"Date":"6/5/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":532,"Cost":425,"Date":"8/23/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":908,"Cost":828,"Date":"3/4/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":49,"Cost":35,"Date":"5/20/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":494,"Cost":308,"Date":"9/8/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":822,"Cost":743,"Date":"11/1/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":295,"Cost":216,"Date":"3/27/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":750,"Cost":701,"Date":"9/17/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":67,"Cost":52,"Date":"3/16/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":240,"Cost":167,"Date":"7/25/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":487,"Cost":303,"Date":"11/23/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":156,"Cost":83,"Date":"4/19/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":576,"Cost":483,"Date":"9/29/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":142,"Cost":73,"Date":"12/20/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":442,"Cost":281,"Date":"4/2/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":363,"Cost":260,"Date":"7/8/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":461,"Cost":250,"Date":"9/1/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":489,"Cost":285,"Date":"2/2/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":346,"Cost":235,"Date":"8/12/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":600,"Cost":379,"Date":"1/14/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":210,"Cost":124,"Date":"5/18/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":44,"Cost":31,"Date":"7/12/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":237,"Cost":165,"Date":"12/17/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":579,"Cost":387,"Date":"4/1/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":219,"Cost":190,"Date":"8/28/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":428,"Cost":332,"Date":"10/17/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":992,"Cost":632,"Date":"2/25/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":468,"Cost":302,"Date":"5/26/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":842,"Cost":433,"Date":"2/9/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":442,"Cost":226,"Date":"6/25/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":951,"Cost":548,"Date":"10/15/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":246,"Cost":229,"Date":"2/4/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":767,"Cost":545,"Date":"8/8/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":682,"Cost":456,"Date":"12/7/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":740,"Cost":548,"Date":"2/22/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":819,"Cost":442,"Date":"6/20/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":54,"Cost":40,"Date":"8/22/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":331,"Cost":231,"Date":"12/26/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":866,"Cost":484,"Date":"5/21/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":574,"Cost":366,"Date":"11/15/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":61,"Cost":42,"Date":"4/28/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":856,"Cost":612,"Date":"6/24/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":472,"Cost":350,"Date":"10/4/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":299,"Cost":243,"Date":"3/17/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":331,"Cost":170,"Date":"6/16/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":171,"Cost":134,"Date":"9/25/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":338,"Cost":206,"Date":"1/14/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":897,"Cost":743,"Date":"5/9/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":255,"Cost":135,"Date":"11/16/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":364,"Cost":236,"Date":"6/2/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":105,"Cost":65,"Date":"9/19/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":672,"Cost":399,"Date":"1/15/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":412,"Cost":386,"Date":"6/26/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":260,"Cost":162,"Date":"11/7/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":955,"Cost":571,"Date":"2/16/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":535,"Cost":343,"Date":"4/19/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":609,"Cost":349,"Date":"8/1/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":817,"Cost":467,"Date":"11/26/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":340,"Cost":269,"Date":"3/1/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":869,"Cost":677,"Date":"9/5/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":60,"Cost":54,"Date":"3/27/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":209,"Cost":170,"Date":"6/7/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":122,"Cost":111,"Date":"9/2/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":368,"Cost":326,"Date":"3/9/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":211,"Cost":111,"Date":"6/2/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":438,"Cost":242,"Date":"9/13/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":711,"Cost":567,"Date":"11/15/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":309,"Cost":251,"Date":"4/5/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":984,"Cost":727,"Date":"10/6/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":352,"Cost":295,"Date":"3/18/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":983,"Cost":853,"Date":"8/4/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":816,"Cost":683,"Date":"11/30/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":263,"Cost":214,"Date":"5/3/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":476,"Cost":330,"Date":"10/12/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":415,"Cost":380,"Date":"12/21/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":866,"Cost":608,"Date":"4/3/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":769,"Cost":652,"Date":"7/9/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":898,"Cost":756,"Date":"9/17/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":292,"Cost":254,"Date":"2/8/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":195,"Cost":132,"Date":"8/21/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":216,"Cost":153,"Date":"1/19/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":140,"Cost":119,"Date":"6/2/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":355,"Cost":313,"Date":"8/14/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":598,"Cost":511,"Date":"2/10/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":748,"Cost":623,"Date":"5/7/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":183,"Cost":128,"Date":"8/29/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":125,"Cost":105,"Date":"10/28/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":519,"Cost":379,"Date":"3/7/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":591,"Cost":489,"Date":"5/31/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":455,"Cost":350,"Date":"2/11/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":143,"Cost":129,"Date":"7/19/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":144,"Cost":95,"Date":"10/30/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":443,"Cost":332,"Date":"3/9/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":413,"Cost":272,"Date":"8/26/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":273,"Cost":255,"Date":"12/18/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":812,"Cost":519,"Date":"2/25/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":485,"Cost":324,"Date":"7/1/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":704,"Cost":412,"Date":"8/31/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":449,"Cost":250,"Date":"12/31/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":44,"Cost":22,"Date":"7/21/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":742,"Cost":673,"Date":"12/8/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":38,"Cost":26,"Date":"5/15/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":274,"Cost":155,"Date":"7/4/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":127,"Cost":78,"Date":"11/1/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":55,"Cost":52,"Date":"3/17/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":541,"Cost":304,"Date":"7/10/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":706,"Cost":405,"Date":"10/4/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":597,"Cost":433,"Date":"1/20/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":630,"Cost":576,"Date":"5/15/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":924,"Cost":675,"Date":"11/18/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":823,"Cost":448,"Date":"6/10/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":542,"Cost":377,"Date":"9/29/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":183,"Cost":117,"Date":"1/24/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":372,"Cost":282,"Date":"7/4/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":518,"Cost":275,"Date":"12/1/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":385,"Cost":254,"Date":"2/16/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":180,"Cost":136,"Date":"5/17/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":708,"Cost":570,"Date":"8/6/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":614,"Cost":388,"Date":"11/27/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":780,"Cost":559,"Date":"3/19/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":250,"Cost":211,"Date":"10/6/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":945,"Cost":571,"Date":"4/20/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":306,"Cost":229,"Date":"6/14/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":390,"Cost":214,"Date":"9/3/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":497,"Cost":350,"Date":"3/9/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":614,"Cost":495,"Date":"6/11/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":368,"Cost":190,"Date":"9/14/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":481,"Cost":254,"Date":"11/25/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":574,"Cost":341,"Date":"4/14/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":239,"Cost":131,"Date":"10/8/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":900,"Cost":799,"Date":"3/20/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":77,"Cost":43,"Date":"9/2/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":909,"Cost":499,"Date":"12/8/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":202,"Cost":130,"Date":"5/4/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":577,"Cost":449,"Date":"11/2/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":253,"Cost":143,"Date":"1/9/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":254,"Cost":170,"Date":"4/9/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":502,"Cost":450,"Date":"7/14/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":931,"Cost":543,"Date":"9/29/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":470,"Cost":305,"Date":"2/27/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":305,"Cost":228,"Date":"8/23/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":529,"Cost":289,"Date":"1/28/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":98,"Cost":91,"Date":"6/3/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":28,"Cost":15,"Date":"8/16/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":799,"Cost":554,"Date":"2/28/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":876,"Cost":481,"Date":"5/10/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":727,"Cost":662,"Date":"8/31/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":600,"Cost":403,"Date":"10/30/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":570,"Cost":414,"Date":"3/14/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":605,"Cost":477,"Date":"7/27/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":609,"Cost":574,"Date":"3/10/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":515,"Cost":271,"Date":"7/21/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":359,"Cost":336,"Date":"11/9/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":923,"Cost":530,"Date":"3/12/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":258,"Cost":218,"Date":"9/2/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":796,"Cost":555,"Date":"12/20/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":370,"Cost":211,"Date":"3/8/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":191,"Cost":161,"Date":"7/4/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":358,"Cost":275,"Date":"9/1/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":896,"Cost":527,"Date":"1/20/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":898,"Cost":456,"Date":"8/5/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":485,"Cost":289,"Date":"1/8/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":268,"Cost":160,"Date":"5/16/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":516,"Cost":449,"Date":"7/9/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":486,"Cost":333,"Date":"11/2/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":915,"Cost":517,"Date":"3/23/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":799,"Cost":747,"Date":"7/11/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":512,"Cost":453,"Date":"10/10/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":994,"Cost":603,"Date":"2/8/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":272,"Cost":218,"Date":"5/25/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":512,"Cost":333,"Date":"12/1/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":563,"Cost":372,"Date":"6/16/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":608,"Cost":444,"Date":"10/2/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":731,"Cost":666,"Date":"2/3/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":147,"Cost":118,"Date":"7/13/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":696,"Cost":634,"Date":"12/4/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":153,"Cost":135,"Date":"2/18/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":305,"Cost":160,"Date":"5/22/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":910,"Cost":703,"Date":"8/7/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":610,"Cost":362,"Date":"12/5/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":897,"Cost":720,"Date":"3/28/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":885,"Cost":727,"Date":"10/19/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":352,"Cost":304,"Date":"4/24/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":399,"Cost":199,"Date":"6/20/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":581,"Cost":321,"Date":"9/16/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":580,"Cost":549,"Date":"3/11/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":682,"Cost":612,"Date":"6/16/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":260,"Cost":207,"Date":"9/19/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":435,"Cost":259,"Date":"1/10/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":149,"Cost":105,"Date":"5/3/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":865,"Cost":461,"Date":"10/26/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":16,"Cost":10,"Date":"3/26/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":709,"Cost":493,"Date":"9/4/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":997,"Cost":591,"Date":"12/11/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":515,"Cost":300,"Date":"6/8/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":395,"Cost":287,"Date":"11/4/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":943,"Cost":531,"Date":"2/5/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":423,"Cost":222,"Date":"4/10/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":835,"Cost":639,"Date":"7/19/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":960,"Cost":612,"Date":"11/7/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":327,"Cost":210,"Date":"3/1/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":321,"Cost":283,"Date":"9/3/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":647,"Cost":332,"Date":"1/31/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":801,"Cost":599,"Date":"6/5/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":353,"Cost":303,"Date":"8/23/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":893,"Cost":659,"Date":"3/4/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":763,"Cost":722,"Date":"5/20/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":713,"Cost":474,"Date":"9/8/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":175,"Cost":106,"Date":"11/1/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":255,"Cost":184,"Date":"3/27/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":196,"Cost":172,"Date":"9/17/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":217,"Cost":151,"Date":"3/16/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":442,"Cost":332,"Date":"7/25/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":386,"Cost":281,"Date":"11/23/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":893,"Cost":590,"Date":"4/19/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":526,"Cost":438,"Date":"9/29/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":5,"Cost":4,"Date":"12/20/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":454,"Cost":303,"Date":"4/2/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":241,"Cost":149,"Date":"7/8/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":924,"Cost":516,"Date":"9/1/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":446,"Cost":407,"Date":"2/2/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":937,"Cost":699,"Date":"8/12/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":220,"Cost":125,"Date":"1/14/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":991,"Cost":664,"Date":"5/18/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":790,"Cost":718,"Date":"7/12/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":466,"Cost":433,"Date":"12/17/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":673,"Cost":383,"Date":"4/1/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":958,"Cost":561,"Date":"8/28/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":181,"Cost":127,"Date":"10/17/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":269,"Cost":173,"Date":"2/25/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":165,"Cost":92,"Date":"5/26/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":648,"Cost":506,"Date":"2/9/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":619,"Cost":467,"Date":"6/25/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":931,"Cost":851,"Date":"10/15/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":416,"Cost":376,"Date":"2/4/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":205,"Cost":119,"Date":"8/8/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":885,"Cost":795,"Date":"12/7/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":769,"Cost":658,"Date":"2/22/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":757,"Cost":461,"Date":"6/20/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":293,"Cost":171,"Date":"8/22/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":531,"Cost":476,"Date":"12/26/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":614,"Cost":394,"Date":"5/21/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":674,"Cost":505,"Date":"11/15/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":843,"Cost":471,"Date":"4/28/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":794,"Cost":410,"Date":"6/24/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":241,"Cost":140,"Date":"10/4/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":630,"Cost":324,"Date":"3/17/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":89,"Cost":54,"Date":"6/16/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":267,"Cost":222,"Date":"9/25/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":269,"Cost":240,"Date":"1/14/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":694,"Cost":520,"Date":"5/9/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":196,"Cost":161,"Date":"11/16/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":368,"Cost":184,"Date":"6/2/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":244,"Cost":212,"Date":"9/19/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":640,"Cost":572,"Date":"1/15/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":718,"Cost":550,"Date":"6/26/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":314,"Cost":290,"Date":"11/7/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":981,"Cost":923,"Date":"2/16/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":460,"Cost":253,"Date":"4/19/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":847,"Cost":481,"Date":"8/1/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":190,"Cost":115,"Date":"11/26/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":483,"Cost":361,"Date":"3/1/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":884,"Cost":706,"Date":"9/5/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":649,"Cost":454,"Date":"3/27/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":602,"Cost":427,"Date":"6/7/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":918,"Cost":857,"Date":"9/2/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":283,"Cost":159,"Date":"3/9/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":938,"Cost":734,"Date":"6/2/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":537,"Cost":394,"Date":"9/13/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":631,"Cost":558,"Date":"11/15/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":821,"Cost":766,"Date":"4/5/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":393,"Cost":299,"Date":"10/6/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":399,"Cost":362,"Date":"3/18/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":744,"Cost":435,"Date":"8/4/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":896,"Cost":500,"Date":"11/30/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":529,"Cost":473,"Date":"5/3/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":138,"Cost":77,"Date":"10/12/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":741,"Cost":661,"Date":"12/21/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":593,"Cost":332,"Date":"4/3/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":885,"Cost":481,"Date":"7/9/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":358,"Cost":260,"Date":"9/17/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":933,"Cost":563,"Date":"2/8/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":766,"Cost":632,"Date":"8/21/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":783,"Cost":717,"Date":"1/19/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":946,"Cost":473,"Date":"6/2/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":843,"Cost":651,"Date":"8/14/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":227,"Cost":196,"Date":"2/10/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":899,"Cost":676,"Date":"5/7/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":102,"Cost":78,"Date":"8/29/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":78,"Cost":41,"Date":"10/28/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":409,"Cost":358,"Date":"3/7/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":754,"Cost":680,"Date":"5/31/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":907,"Cost":551,"Date":"2/11/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":308,"Cost":261,"Date":"7/19/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":220,"Cost":151,"Date":"10/30/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":790,"Cost":626,"Date":"3/9/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":583,"Cost":355,"Date":"8/26/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":283,"Cost":246,"Date":"12/18/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":685,"Cost":611,"Date":"2/25/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":47,"Cost":43,"Date":"7/1/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":536,"Cost":448,"Date":"8/31/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":531,"Cost":363,"Date":"12/31/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":471,"Cost":300,"Date":"7/21/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":509,"Cost":387,"Date":"12/8/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":485,"Cost":389,"Date":"5/15/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":184,"Cost":141,"Date":"7/4/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":369,"Cost":241,"Date":"11/1/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":246,"Cost":134,"Date":"3/17/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":180,"Cost":145,"Date":"7/10/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":684,"Cost":478,"Date":"10/4/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":309,"Cost":241,"Date":"1/20/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":401,"Cost":304,"Date":"5/15/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":548,"Cost":521,"Date":"11/18/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":131,"Cost":92,"Date":"6/10/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":633,"Cost":443,"Date":"9/29/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":320,"Cost":207,"Date":"1/24/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":299,"Cost":196,"Date":"7/4/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":385,"Cost":239,"Date":"12/1/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":854,"Cost":595,"Date":"2/16/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":687,"Cost":587,"Date":"5/17/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":216,"Cost":120,"Date":"8/6/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":783,"Cost":495,"Date":"11/27/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":772,"Cost":550,"Date":"3/19/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":475,"Cost":308,"Date":"10/6/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":241,"Cost":164,"Date":"4/20/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":246,"Cost":156,"Date":"6/14/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":469,"Cost":348,"Date":"9/3/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":1,"Cost":1,"Date":"3/9/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":260,"Cost":157,"Date":"6/11/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":185,"Cost":125,"Date":"9/14/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":730,"Cost":423,"Date":"11/25/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":285,"Cost":258,"Date":"4/14/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":704,"Cost":373,"Date":"10/8/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":513,"Cost":446,"Date":"3/20/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":648,"Cost":422,"Date":"9/2/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":299,"Cost":266,"Date":"12/8/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":336,"Cost":198,"Date":"5/4/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":955,"Cost":598,"Date":"11/2/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":557,"Cost":398,"Date":"1/9/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":122,"Cost":70,"Date":"4/9/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":44,"Cost":31,"Date":"7/14/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":720,"Cost":526,"Date":"9/29/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":716,"Cost":534,"Date":"2/27/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":551,"Cost":398,"Date":"8/23/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":179,"Cost":168,"Date":"1/28/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":780,"Cost":494,"Date":"6/3/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":842,"Cost":523,"Date":"8/16/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":893,"Cost":488,"Date":"2/28/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":899,"Cost":807,"Date":"5/10/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":107,"Cost":98,"Date":"8/31/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":472,"Cost":445,"Date":"10/30/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":987,"Cost":816,"Date":"3/14/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":220,"Cost":174,"Date":"7/27/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":874,"Cost":726,"Date":"3/10/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":144,"Cost":129,"Date":"7/21/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":801,"Cost":749,"Date":"11/9/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":636,"Cost":473,"Date":"3/12/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":832,"Cost":527,"Date":"9/2/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":95,"Cost":72,"Date":"12/20/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":580,"Cost":290,"Date":"3/8/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":897,"Cost":489,"Date":"7/4/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":461,"Cost":282,"Date":"9/1/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":272,"Cost":167,"Date":"1/20/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":673,"Cost":615,"Date":"8/5/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":864,"Cost":494,"Date":"1/8/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":320,"Cost":184,"Date":"5/16/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":54,"Cost":34,"Date":"7/9/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":691,"Cost":478,"Date":"11/2/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":581,"Cost":478,"Date":"3/23/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":631,"Cost":381,"Date":"7/11/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":434,"Cost":281,"Date":"10/10/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":343,"Cost":253,"Date":"2/8/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":784,"Cost":458,"Date":"5/25/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":506,"Cost":366,"Date":"12/1/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":538,"Cost":473,"Date":"6/16/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":979,"Cost":799,"Date":"10/2/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":246,"Cost":160,"Date":"2/3/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":277,"Cost":198,"Date":"7/13/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":292,"Cost":272,"Date":"12/4/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":530,"Cost":502,"Date":"2/18/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":283,"Cost":212,"Date":"5/22/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":405,"Cost":315,"Date":"8/7/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":596,"Cost":342,"Date":"12/5/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":284,"Cost":181,"Date":"3/28/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":620,"Cost":579,"Date":"10/19/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":563,"Cost":389,"Date":"4/24/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":532,"Cost":396,"Date":"6/20/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":347,"Cost":175,"Date":"9/16/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":34,"Cost":20,"Date":"3/11/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":825,"Cost":755,"Date":"6/16/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":176,"Cost":90,"Date":"9/19/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":365,"Cost":288,"Date":"1/10/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":266,"Cost":225,"Date":"5/3/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":731,"Cost":499,"Date":"10/26/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":210,"Cost":197,"Date":"3/26/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":462,"Cost":296,"Date":"9/4/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":169,"Cost":128,"Date":"12/11/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":714,"Cost":556,"Date":"6/8/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":870,"Cost":686,"Date":"11/4/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":731,"Cost":370,"Date":"2/5/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":951,"Cost":650,"Date":"4/10/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":996,"Cost":573,"Date":"7/19/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":881,"Cost":557,"Date":"11/7/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":660,"Cost":561,"Date":"3/1/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":51,"Cost":48,"Date":"9/3/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":128,"Cost":99,"Date":"1/31/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":386,"Cost":206,"Date":"6/5/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":926,"Cost":674,"Date":"8/23/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":780,"Cost":527,"Date":"3/4/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":947,"Cost":607,"Date":"5/20/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":623,"Cost":492,"Date":"9/8/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":822,"Cost":414,"Date":"11/1/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":361,"Cost":219,"Date":"3/27/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":38,"Cost":23,"Date":"9/17/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":894,"Cost":515,"Date":"3/16/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":420,"Cost":268,"Date":"7/25/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":980,"Cost":620,"Date":"11/23/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":15,"Cost":9,"Date":"4/19/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":8,"Cost":5,"Date":"9/29/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":676,"Cost":433,"Date":"12/20/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":221,"Cost":120,"Date":"4/2/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":495,"Cost":306,"Date":"7/8/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":49,"Cost":44,"Date":"9/1/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":754,"Cost":704,"Date":"2/2/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":285,"Cost":243,"Date":"8/12/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":472,"Cost":314,"Date":"1/14/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":43,"Cost":34,"Date":"5/18/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":137,"Cost":75,"Date":"7/12/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":722,"Cost":400,"Date":"12/17/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":95,"Cost":67,"Date":"4/1/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":99,"Cost":57,"Date":"8/28/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":233,"Cost":155,"Date":"10/17/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":689,"Cost":468,"Date":"2/25/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":165,"Cost":131,"Date":"5/26/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":128,"Cost":71,"Date":"2/9/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":503,"Cost":476,"Date":"6/25/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":353,"Cost":247,"Date":"10/15/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":987,"Cost":915,"Date":"2/4/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":483,"Cost":276,"Date":"8/8/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":570,"Cost":301,"Date":"12/7/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":328,"Cost":233,"Date":"2/22/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":362,"Cost":240,"Date":"6/20/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":290,"Cost":229,"Date":"8/22/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":906,"Cost":785,"Date":"12/26/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":664,"Cost":478,"Date":"5/21/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":192,"Cost":141,"Date":"11/15/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":439,"Cost":243,"Date":"4/28/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":231,"Cost":173,"Date":"6/24/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":638,"Cost":535,"Date":"10/4/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":233,"Cost":183,"Date":"3/17/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":499,"Cost":279,"Date":"6/16/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":268,"Cost":187,"Date":"9/25/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":344,"Cost":282,"Date":"1/14/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":492,"Cost":331,"Date":"5/9/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":366,"Cost":267,"Date":"11/16/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":883,"Cost":502,"Date":"6/2/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":357,"Cost":198,"Date":"9/19/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":121,"Cost":99,"Date":"1/15/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":923,"Cost":541,"Date":"6/26/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":910,"Cost":613,"Date":"11/7/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":845,"Cost":728,"Date":"2/16/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":414,"Cost":335,"Date":"4/19/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":759,"Cost":443,"Date":"8/1/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":152,"Cost":109,"Date":"11/26/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":988,"Cost":701,"Date":"3/1/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":831,"Cost":507,"Date":"9/5/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":803,"Cost":418,"Date":"3/27/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":461,"Cost":366,"Date":"6/7/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":202,"Cost":172,"Date":"9/2/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":679,"Cost":383,"Date":"3/9/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":857,"Cost":794,"Date":"6/2/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":572,"Cost":391,"Date":"9/13/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":764,"Cost":479,"Date":"11/15/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":684,"Cost":479,"Date":"4/5/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":578,"Cost":505,"Date":"10/6/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":82,"Cost":58,"Date":"3/18/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":708,"Cost":568,"Date":"8/4/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":840,"Cost":792,"Date":"11/30/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":284,"Cost":151,"Date":"5/3/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":644,"Cost":598,"Date":"10/12/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":187,"Cost":118,"Date":"12/21/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":351,"Cost":212,"Date":"4/3/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":201,"Cost":155,"Date":"7/9/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":793,"Cost":646,"Date":"9/17/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":397,"Cost":210,"Date":"2/8/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":320,"Cost":200,"Date":"8/21/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":190,"Cost":157,"Date":"1/19/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":949,"Cost":867,"Date":"6/2/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":823,"Cost":599,"Date":"8/14/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":399,"Cost":236,"Date":"2/10/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":156,"Cost":148,"Date":"5/7/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":23,"Cost":12,"Date":"8/29/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":805,"Cost":593,"Date":"10/28/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":334,"Cost":172,"Date":"3/7/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":514,"Cost":343,"Date":"5/31/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":244,"Cost":210,"Date":"2/11/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":168,"Cost":152,"Date":"7/19/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":654,"Cost":468,"Date":"10/30/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":265,"Cost":135,"Date":"3/9/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":342,"Cost":171,"Date":"8/26/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":930,"Cost":484,"Date":"12/18/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":317,"Cost":290,"Date":"2/25/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":183,"Cost":108,"Date":"7/1/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":272,"Cost":147,"Date":"8/31/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":964,"Cost":640,"Date":"12/31/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":633,"Cost":495,"Date":"7/21/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":62,"Cost":59,"Date":"12/8/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":508,"Cost":412,"Date":"5/15/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":82,"Cost":50,"Date":"7/4/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":154,"Cost":99,"Date":"11/1/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":73,"Cost":48,"Date":"3/17/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":456,"Cost":264,"Date":"7/10/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":805,"Cost":431,"Date":"10/4/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":948,"Cost":706,"Date":"1/20/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":625,"Cost":445,"Date":"5/15/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":388,"Cost":331,"Date":"11/18/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":94,"Cost":78,"Date":"6/10/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":643,"Cost":347,"Date":"9/29/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":375,"Cost":203,"Date":"1/24/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":899,"Cost":785,"Date":"7/4/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":21,"Cost":17,"Date":"12/1/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":276,"Cost":198,"Date":"2/16/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":882,"Cost":530,"Date":"5/17/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":308,"Cost":266,"Date":"8/6/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":695,"Cost":556,"Date":"11/27/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":559,"Cost":348,"Date":"3/19/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":986,"Cost":574,"Date":"10/6/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":70,"Cost":63,"Date":"4/20/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":593,"Cost":443,"Date":"6/14/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":408,"Cost":348,"Date":"9/3/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":969,"Cost":536,"Date":"3/9/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":596,"Cost":409,"Date":"6/11/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":596,"Cost":299,"Date":"9/14/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":303,"Cost":261,"Date":"11/25/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":349,"Cost":175,"Date":"4/14/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":707,"Cost":441,"Date":"10/8/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":372,"Cost":198,"Date":"3/20/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":782,"Cost":588,"Date":"9/2/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":989,"Cost":881,"Date":"12/8/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":103,"Cost":97,"Date":"5/4/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":916,"Cost":460,"Date":"11/2/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":426,"Cost":257,"Date":"1/9/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":537,"Cost":503,"Date":"4/9/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":833,"Cost":450,"Date":"7/14/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":968,"Cost":680,"Date":"9/29/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":873,"Cost":628,"Date":"2/27/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":272,"Cost":219,"Date":"8/23/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":446,"Cost":258,"Date":"1/28/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":722,"Cost":540,"Date":"6/3/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":806,"Cost":680,"Date":"8/16/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":144,"Cost":86,"Date":"2/28/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":251,"Cost":155,"Date":"5/10/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":434,"Cost":224,"Date":"8/31/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":176,"Cost":117,"Date":"10/30/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":878,"Cost":609,"Date":"3/14/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":385,"Cost":335,"Date":"7/27/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":133,"Cost":88,"Date":"3/10/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":781,"Cost":551,"Date":"7/21/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":987,"Cost":782,"Date":"11/9/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":465,"Cost":242,"Date":"3/12/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":1,"Cost":1,"Date":"9/2/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":936,"Cost":630,"Date":"12/20/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":349,"Cost":268,"Date":"3/8/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":250,"Cost":126,"Date":"7/4/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":7,"Cost":6,"Date":"9/1/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":867,"Cost":792,"Date":"1/20/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":13,"Cost":8,"Date":"8/5/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":540,"Cost":361,"Date":"1/8/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":615,"Cost":571,"Date":"5/16/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":382,"Cost":279,"Date":"7/9/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":92,"Cost":66,"Date":"11/2/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":278,"Cost":204,"Date":"3/23/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":143,"Cost":115,"Date":"7/11/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":434,"Cost":240,"Date":"10/10/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":162,"Cost":146,"Date":"2/8/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":530,"Cost":316,"Date":"5/25/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":56,"Cost":35,"Date":"12/1/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":778,"Cost":639,"Date":"6/16/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":784,"Cost":620,"Date":"10/2/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":521,"Cost":311,"Date":"2/3/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":415,"Cost":333,"Date":"7/13/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":845,"Cost":596,"Date":"12/4/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":600,"Cost":493,"Date":"2/18/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":357,"Cost":298,"Date":"5/22/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":908,"Cost":781,"Date":"8/7/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":861,"Cost":467,"Date":"12/5/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":229,"Cost":160,"Date":"3/28/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":409,"Cost":329,"Date":"10/19/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":30,"Cost":15,"Date":"4/24/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":527,"Cost":323,"Date":"6/20/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":988,"Cost":516,"Date":"9/16/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":25,"Cost":15,"Date":"3/11/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":18,"Cost":10,"Date":"6/16/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":323,"Cost":176,"Date":"9/19/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":991,"Cost":795,"Date":"1/10/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":567,"Cost":415,"Date":"5/3/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":522,"Cost":452,"Date":"10/26/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":967,"Cost":891,"Date":"3/26/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":116,"Cost":92,"Date":"9/4/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":960,"Cost":855,"Date":"12/11/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":71,"Cost":54,"Date":"6/8/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":325,"Cost":203,"Date":"11/4/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":442,"Cost":252,"Date":"2/5/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":690,"Cost":446,"Date":"4/10/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":918,"Cost":587,"Date":"7/19/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":896,"Cost":713,"Date":"11/7/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":649,"Cost":388,"Date":"3/1/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":958,"Cost":866,"Date":"9/3/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":340,"Cost":202,"Date":"1/31/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":651,"Cost":499,"Date":"6/5/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":260,"Cost":157,"Date":"8/23/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":871,"Cost":515,"Date":"3/4/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":155,"Cost":119,"Date":"5/20/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":807,"Cost":436,"Date":"9/8/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":88,"Cost":62,"Date":"11/1/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":196,"Cost":180,"Date":"3/27/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":246,"Cost":199,"Date":"9/17/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":747,"Cost":483,"Date":"3/16/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":912,"Cost":456,"Date":"7/25/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":327,"Cost":220,"Date":"11/23/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":782,"Cost":692,"Date":"4/19/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":235,"Cost":197,"Date":"9/29/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":928,"Cost":658,"Date":"12/20/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":601,"Cost":433,"Date":"4/2/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":971,"Cost":762,"Date":"7/8/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":251,"Cost":180,"Date":"9/1/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":747,"Cost":505,"Date":"2/2/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":635,"Cost":400,"Date":"8/12/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":706,"Cost":602,"Date":"1/14/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":419,"Cost":387,"Date":"5/18/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":382,"Cost":257,"Date":"7/12/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":287,"Cost":164,"Date":"12/17/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":509,"Cost":348,"Date":"4/1/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":734,"Cost":512,"Date":"8/28/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":766,"Cost":536,"Date":"10/17/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":5,"Cost":2,"Date":"2/25/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":861,"Cost":728,"Date":"5/26/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":588,"Cost":374,"Date":"2/9/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":986,"Cost":722,"Date":"6/25/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":853,"Cost":758,"Date":"10/15/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":845,"Cost":525,"Date":"2/4/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":569,"Cost":389,"Date":"8/8/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":568,"Cost":414,"Date":"12/7/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":635,"Cost":489,"Date":"2/22/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":65,"Cost":51,"Date":"6/20/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":553,"Cost":480,"Date":"8/22/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":460,"Cost":296,"Date":"12/26/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":296,"Cost":256,"Date":"5/21/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":305,"Cost":213,"Date":"11/15/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":803,"Cost":657,"Date":"4/28/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":846,"Cost":723,"Date":"6/24/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":514,"Cost":444,"Date":"10/4/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":994,"Cost":649,"Date":"3/17/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":984,"Cost":612,"Date":"6/16/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":525,"Cost":373,"Date":"9/25/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":3,"Cost":3,"Date":"1/14/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":358,"Cost":250,"Date":"5/9/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":371,"Cost":319,"Date":"11/16/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":95,"Cost":68,"Date":"6/2/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":609,"Cost":534,"Date":"9/19/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":680,"Cost":557,"Date":"1/15/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":576,"Cost":345,"Date":"6/26/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":757,"Cost":473,"Date":"11/7/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":880,"Cost":801,"Date":"2/16/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":739,"Cost":529,"Date":"4/19/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":80,"Cost":73,"Date":"8/1/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":757,"Cost":550,"Date":"11/26/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":908,"Cost":770,"Date":"3/1/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":820,"Cost":502,"Date":"9/5/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":734,"Cost":615,"Date":"3/27/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":839,"Cost":549,"Date":"6/7/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":24,"Cost":14,"Date":"9/2/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":826,"Cost":469,"Date":"3/9/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":737,"Cost":374,"Date":"6/2/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":502,"Cost":429,"Date":"9/13/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":758,"Cost":619,"Date":"11/15/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":714,"Cost":623,"Date":"4/5/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":408,"Cost":239,"Date":"10/6/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":32,"Cost":23,"Date":"3/18/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":428,"Cost":219,"Date":"8/4/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":694,"Cost":539,"Date":"11/30/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":717,"Cost":448,"Date":"5/3/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":715,"Cost":455,"Date":"10/12/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":251,"Cost":155,"Date":"12/21/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":193,"Cost":161,"Date":"4/3/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":633,"Cost":583,"Date":"7/9/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":72,"Cost":62,"Date":"9/17/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":222,"Cost":140,"Date":"2/8/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":937,"Cost":756,"Date":"8/21/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":516,"Cost":417,"Date":"1/19/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":424,"Cost":298,"Date":"6/2/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":610,"Cost":444,"Date":"8/14/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":552,"Cost":439,"Date":"2/10/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":938,"Cost":883,"Date":"5/7/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":680,"Cost":343,"Date":"8/29/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":430,"Cost":296,"Date":"10/28/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":69,"Cost":66,"Date":"3/7/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":469,"Cost":359,"Date":"5/31/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":351,"Cost":213,"Date":"2/11/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":19,"Cost":12,"Date":"7/19/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":190,"Cost":156,"Date":"10/30/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":781,"Cost":679,"Date":"3/9/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":574,"Cost":293,"Date":"8/26/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":892,"Cost":709,"Date":"12/18/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":181,"Cost":165,"Date":"2/25/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":778,"Cost":561,"Date":"7/1/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":974,"Cost":803,"Date":"8/31/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":966,"Cost":501,"Date":"12/31/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":55,"Cost":51,"Date":"7/21/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":81,"Cost":53,"Date":"12/8/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":703,"Cost":630,"Date":"5/15/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":170,"Cost":140,"Date":"7/4/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":90,"Cost":46,"Date":"11/1/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":832,"Cost":616,"Date":"3/17/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":585,"Cost":420,"Date":"7/10/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":469,"Cost":290,"Date":"10/4/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":212,"Cost":120,"Date":"1/20/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":646,"Cost":594,"Date":"5/15/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":722,"Cost":613,"Date":"11/18/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":472,"Cost":303,"Date":"6/10/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":257,"Cost":199,"Date":"9/29/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":75,"Cost":42,"Date":"1/24/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":448,"Cost":399,"Date":"7/4/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":881,"Cost":446,"Date":"12/1/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":678,"Cost":590,"Date":"2/16/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":723,"Cost":461,"Date":"5/17/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":389,"Cost":241,"Date":"8/6/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":165,"Cost":149,"Date":"11/27/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":454,"Cost":426,"Date":"3/19/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":866,"Cost":712,"Date":"10/6/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":182,"Cost":162,"Date":"4/20/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":133,"Cost":86,"Date":"6/14/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":99,"Cost":63,"Date":"9/3/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":327,"Cost":218,"Date":"3/9/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":938,"Cost":888,"Date":"6/11/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":201,"Cost":175,"Date":"9/14/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":570,"Cost":432,"Date":"11/25/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":525,"Cost":498,"Date":"4/14/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":650,"Cost":479,"Date":"10/8/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":480,"Cost":346,"Date":"3/20/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":471,"Cost":294,"Date":"9/2/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":843,"Cost":771,"Date":"12/8/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":833,"Cost":498,"Date":"5/4/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":538,"Cost":361,"Date":"11/2/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":693,"Cost":507,"Date":"1/9/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":863,"Cost":616,"Date":"4/9/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":273,"Cost":239,"Date":"7/14/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":597,"Cost":506,"Date":"9/29/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":172,"Cost":121,"Date":"2/27/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":371,"Cost":232,"Date":"8/23/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":438,"Cost":326,"Date":"1/28/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":533,"Cost":389,"Date":"6/3/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":497,"Cost":420,"Date":"8/16/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":97,"Cost":78,"Date":"2/28/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":840,"Cost":442,"Date":"5/10/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":906,"Cost":667,"Date":"8/31/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":423,"Cost":227,"Date":"10/30/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":653,"Cost":524,"Date":"3/14/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":76,"Cost":69,"Date":"7/27/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":39,"Cost":27,"Date":"3/10/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":429,"Cost":296,"Date":"7/21/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":82,"Cost":67,"Date":"11/9/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":726,"Cost":460,"Date":"3/12/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":920,"Cost":644,"Date":"9/2/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":889,"Cost":753,"Date":"12/20/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":784,"Cost":494,"Date":"3/8/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":943,"Cost":822,"Date":"7/4/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":802,"Cost":418,"Date":"9/1/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":604,"Cost":335,"Date":"1/20/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":158,"Cost":89,"Date":"8/5/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":303,"Cost":230,"Date":"1/8/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":813,"Cost":582,"Date":"5/16/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":576,"Cost":499,"Date":"7/9/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":505,"Cost":271,"Date":"11/2/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":514,"Cost":386,"Date":"3/23/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":974,"Cost":704,"Date":"7/11/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":663,"Cost":551,"Date":"10/10/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":436,"Cost":218,"Date":"2/8/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":3,"Cost":2,"Date":"5/25/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":463,"Cost":354,"Date":"12/1/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":323,"Cost":210,"Date":"6/16/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":441,"Cost":299,"Date":"10/2/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":262,"Cost":244,"Date":"2/3/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":735,"Cost":610,"Date":"7/13/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":447,"Cost":301,"Date":"12/4/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":598,"Cost":509,"Date":"2/18/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":461,"Cost":267,"Date":"5/22/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":867,"Cost":523,"Date":"8/7/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":930,"Cost":519,"Date":"12/5/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":919,"Cost":603,"Date":"3/28/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":807,"Cost":429,"Date":"10/19/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":870,"Cost":735,"Date":"4/24/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":936,"Cost":756,"Date":"6/20/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":227,"Cost":125,"Date":"9/16/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":760,"Cost":408,"Date":"3/11/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":286,"Cost":198,"Date":"6/16/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":444,"Cost":415,"Date":"9/19/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":110,"Cost":95,"Date":"1/10/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":226,"Cost":191,"Date":"5/3/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":389,"Cost":220,"Date":"10/26/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":697,"Cost":605,"Date":"3/26/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":4,"Cost":4,"Date":"9/4/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":410,"Cost":250,"Date":"12/11/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":141,"Cost":83,"Date":"6/8/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":294,"Cost":159,"Date":"11/4/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":897,"Cost":781,"Date":"2/5/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":590,"Cost":477,"Date":"4/10/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":720,"Cost":547,"Date":"7/19/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":601,"Cost":409,"Date":"11/7/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":97,"Cost":90,"Date":"3/1/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":257,"Cost":238,"Date":"9/3/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":996,"Cost":756,"Date":"1/31/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":498,"Cost":305,"Date":"6/5/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":962,"Cost":733,"Date":"8/23/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":774,"Cost":480,"Date":"3/4/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":91,"Cost":51,"Date":"5/20/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":202,"Cost":157,"Date":"9/8/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":211,"Cost":177,"Date":"11/1/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":151,"Cost":140,"Date":"3/27/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":607,"Cost":371,"Date":"9/17/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":896,"Cost":471,"Date":"3/16/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":834,"Cost":673,"Date":"7/25/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":919,"Cost":585,"Date":"11/23/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":447,"Cost":387,"Date":"4/19/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":12,"Cost":7,"Date":"9/29/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":694,"Cost":355,"Date":"12/20/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":860,"Cost":523,"Date":"4/2/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":820,"Cost":710,"Date":"7/8/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":831,"Cost":698,"Date":"9/1/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":610,"Cost":516,"Date":"2/2/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":77,"Cost":50,"Date":"8/12/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":499,"Cost":420,"Date":"1/14/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":173,"Cost":149,"Date":"5/18/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":498,"Cost":301,"Date":"7/12/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":921,"Cost":629,"Date":"12/17/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":484,"Cost":433,"Date":"4/1/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":124,"Cost":84,"Date":"8/28/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":839,"Cost":731,"Date":"10/17/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":558,"Cost":363,"Date":"2/25/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":900,"Cost":718,"Date":"5/26/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":718,"Cost":492,"Date":"2/9/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":877,"Cost":756,"Date":"6/25/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":959,"Cost":803,"Date":"10/15/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":822,"Cost":569,"Date":"2/4/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":641,"Cost":392,"Date":"8/8/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":823,"Cost":516,"Date":"12/7/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":924,"Cost":719,"Date":"2/22/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":454,"Cost":319,"Date":"6/20/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":803,"Cost":491,"Date":"8/22/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":390,"Cost":328,"Date":"12/26/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":736,"Cost":453,"Date":"5/21/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":65,"Cost":35,"Date":"11/15/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":618,"Cost":320,"Date":"4/28/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":433,"Cost":284,"Date":"6/24/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":151,"Cost":119,"Date":"10/4/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":576,"Cost":386,"Date":"3/17/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":250,"Cost":137,"Date":"6/16/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":715,"Cost":638,"Date":"9/25/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":378,"Cost":323,"Date":"1/14/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":740,"Cost":422,"Date":"5/9/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":553,"Cost":502,"Date":"11/16/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":921,"Cost":523,"Date":"6/2/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":647,"Cost":452,"Date":"9/19/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":759,"Cost":639,"Date":"1/15/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":750,"Cost":567,"Date":"6/26/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":878,"Cost":697,"Date":"11/7/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":131,"Cost":95,"Date":"2/16/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":614,"Cost":425,"Date":"4/19/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":867,"Cost":525,"Date":"8/1/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":178,"Cost":107,"Date":"11/26/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":954,"Cost":610,"Date":"3/1/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":644,"Cost":420,"Date":"9/5/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":105,"Cost":83,"Date":"3/27/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":291,"Cost":211,"Date":"6/7/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":464,"Cost":317,"Date":"9/2/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":972,"Cost":590,"Date":"3/9/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":545,"Cost":312,"Date":"6/2/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":790,"Cost":745,"Date":"9/13/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":482,"Cost":246,"Date":"11/15/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":188,"Cost":112,"Date":"4/5/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":377,"Cost":260,"Date":"10/6/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":140,"Cost":94,"Date":"3/18/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":547,"Cost":481,"Date":"8/4/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":169,"Cost":125,"Date":"11/30/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":28,"Cost":19,"Date":"5/3/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":773,"Cost":494,"Date":"10/12/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":755,"Cost":552,"Date":"12/21/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":991,"Cost":592,"Date":"4/3/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":684,"Cost":431,"Date":"7/9/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":264,"Cost":215,"Date":"9/17/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":989,"Cost":894,"Date":"2/8/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":313,"Cost":249,"Date":"8/21/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":701,"Cost":397,"Date":"1/19/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":61,"Cost":31,"Date":"6/2/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":262,"Cost":135,"Date":"8/14/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":518,"Cost":424,"Date":"2/10/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":140,"Cost":127,"Date":"5/7/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":506,"Cost":416,"Date":"8/29/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":317,"Cost":201,"Date":"10/28/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":37,"Cost":35,"Date":"3/7/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":740,"Cost":457,"Date":"5/31/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":607,"Cost":394,"Date":"2/11/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":281,"Cost":257,"Date":"7/19/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":364,"Cost":196,"Date":"10/30/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":257,"Cost":130,"Date":"3/9/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":466,"Cost":270,"Date":"8/26/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":841,"Cost":797,"Date":"12/18/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":766,"Cost":386,"Date":"2/25/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":579,"Cost":537,"Date":"7/1/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":47,"Cost":39,"Date":"8/31/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":991,"Cost":820,"Date":"12/31/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":751,"Cost":603,"Date":"7/21/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":444,"Cost":321,"Date":"12/8/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":76,"Cost":58,"Date":"5/15/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":176,"Cost":120,"Date":"7/4/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":38,"Cost":19,"Date":"11/1/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":84,"Cost":45,"Date":"3/17/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":860,"Cost":600,"Date":"7/10/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":684,"Cost":460,"Date":"10/4/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":478,"Cost":442,"Date":"1/20/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":390,"Cost":352,"Date":"5/15/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":612,"Cost":484,"Date":"11/18/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":21,"Cost":13,"Date":"6/10/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":835,"Cost":667,"Date":"9/29/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":818,"Cost":589,"Date":"1/24/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":425,"Cost":251,"Date":"7/4/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":97,"Cost":52,"Date":"12/1/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":879,"Cost":703,"Date":"2/16/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":514,"Cost":405,"Date":"5/17/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":350,"Cost":226,"Date":"8/6/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":689,"Cost":444,"Date":"11/27/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":332,"Cost":265,"Date":"3/19/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":31,"Cost":18,"Date":"10/6/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":893,"Cost":831,"Date":"4/20/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":861,"Cost":597,"Date":"6/14/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":929,"Cost":495,"Date":"9/3/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":614,"Cost":369,"Date":"3/9/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":946,"Cost":866,"Date":"6/11/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":846,"Cost":714,"Date":"9/14/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":574,"Cost":372,"Date":"11/25/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":791,"Cost":449,"Date":"4/14/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":100,"Cost":81,"Date":"10/8/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":715,"Cost":613,"Date":"3/20/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":376,"Cost":231,"Date":"9/2/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":527,"Cost":362,"Date":"12/8/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":744,"Cost":608,"Date":"5/4/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":828,"Cost":778,"Date":"11/2/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":627,"Cost":389,"Date":"1/9/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":102,"Cost":83,"Date":"4/9/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":461,"Cost":348,"Date":"7/14/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":445,"Cost":286,"Date":"9/29/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":311,"Cost":200,"Date":"2/27/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":430,"Cost":302,"Date":"8/23/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":800,"Cost":434,"Date":"1/28/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":666,"Cost":486,"Date":"6/3/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":487,"Cost":420,"Date":"8/16/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":227,"Cost":136,"Date":"2/28/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":501,"Cost":304,"Date":"5/10/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":394,"Cost":241,"Date":"8/31/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":359,"Cost":240,"Date":"10/30/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":599,"Cost":321,"Date":"3/14/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":927,"Cost":498,"Date":"7/27/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":236,"Cost":120,"Date":"3/10/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":290,"Cost":248,"Date":"7/21/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":512,"Cost":321,"Date":"11/9/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":33,"Cost":16,"Date":"3/12/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":56,"Cost":32,"Date":"9/2/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":51,"Cost":47,"Date":"12/20/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":852,"Cost":559,"Date":"3/8/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":973,"Cost":497,"Date":"7/4/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":571,"Cost":531,"Date":"9/1/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":480,"Cost":366,"Date":"1/20/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":506,"Cost":459,"Date":"8/5/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":199,"Cost":159,"Date":"1/8/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":377,"Cost":289,"Date":"5/16/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":718,"Cost":673,"Date":"7/9/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":923,"Cost":583,"Date":"11/2/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":725,"Cost":488,"Date":"3/23/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":64,"Cost":61,"Date":"7/11/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":212,"Cost":166,"Date":"10/10/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":980,"Cost":568,"Date":"2/8/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":903,"Cost":518,"Date":"5/25/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":212,"Cost":151,"Date":"12/1/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":90,"Cost":53,"Date":"6/16/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":722,"Cost":671,"Date":"10/2/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":948,"Cost":696,"Date":"2/3/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":548,"Cost":339,"Date":"7/13/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":355,"Cost":235,"Date":"12/4/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":591,"Cost":543,"Date":"2/18/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":197,"Cost":170,"Date":"5/22/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":802,"Cost":614,"Date":"8/7/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":171,"Cost":90,"Date":"12/5/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":277,"Cost":202,"Date":"3/28/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":179,"Cost":125,"Date":"10/19/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":875,"Cost":782,"Date":"4/24/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":913,"Cost":521,"Date":"6/20/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":253,"Cost":203,"Date":"9/16/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":850,"Cost":490,"Date":"3/11/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":310,"Cost":166,"Date":"6/16/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":297,"Cost":251,"Date":"9/19/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":148,"Cost":83,"Date":"1/10/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":202,"Cost":136,"Date":"5/3/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":782,"Cost":511,"Date":"10/26/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":692,"Cost":414,"Date":"3/26/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":854,"Cost":759,"Date":"9/4/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":805,"Cost":706,"Date":"12/11/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":820,"Cost":604,"Date":"6/8/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":889,"Cost":764,"Date":"11/4/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":786,"Cost":399,"Date":"2/5/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":324,"Cost":193,"Date":"4/10/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":382,"Cost":210,"Date":"7/19/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":841,"Cost":455,"Date":"11/7/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":74,"Cost":41,"Date":"3/1/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":616,"Cost":381,"Date":"9/3/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":348,"Cost":180,"Date":"1/31/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":58,"Cost":35,"Date":"6/5/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":990,"Cost":646,"Date":"8/23/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":168,"Cost":84,"Date":"3/4/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":253,"Cost":149,"Date":"5/20/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":255,"Cost":145,"Date":"9/8/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":746,"Cost":553,"Date":"11/1/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":761,"Cost":543,"Date":"3/27/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":53,"Cost":46,"Date":"9/17/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":557,"Cost":458,"Date":"3/16/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":979,"Cost":856,"Date":"7/25/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":400,"Cost":272,"Date":"11/23/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":789,"Cost":675,"Date":"4/19/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":404,"Cost":336,"Date":"9/29/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":426,"Cost":374,"Date":"12/20/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":109,"Cost":62,"Date":"4/2/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":868,"Cost":466,"Date":"7/8/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":810,"Cost":527,"Date":"9/1/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":588,"Cost":310,"Date":"2/2/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":644,"Cost":322,"Date":"8/12/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":322,"Cost":225,"Date":"1/14/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":905,"Cost":682,"Date":"5/18/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":278,"Cost":263,"Date":"7/12/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":560,"Cost":530,"Date":"12/17/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":940,"Cost":863,"Date":"4/1/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":326,"Cost":182,"Date":"8/28/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":426,"Cost":350,"Date":"10/17/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":922,"Cost":863,"Date":"2/25/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":495,"Cost":297,"Date":"5/26/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":135,"Cost":115,"Date":"2/9/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":904,"Cost":567,"Date":"6/25/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":203,"Cost":167,"Date":"10/15/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":697,"Cost":588,"Date":"2/4/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":259,"Cost":215,"Date":"8/8/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":357,"Cost":269,"Date":"12/7/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":530,"Cost":285,"Date":"2/22/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":817,"Cost":772,"Date":"6/20/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":275,"Cost":173,"Date":"8/22/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":94,"Cost":88,"Date":"12/26/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":693,"Cost":413,"Date":"5/21/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":138,"Cost":93,"Date":"11/15/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":264,"Cost":193,"Date":"4/28/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":860,"Cost":813,"Date":"6/24/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":935,"Cost":729,"Date":"10/4/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":457,"Cost":389,"Date":"3/17/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":694,"Cost":418,"Date":"6/16/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":267,"Cost":140,"Date":"9/25/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":631,"Cost":519,"Date":"1/14/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":646,"Cost":612,"Date":"5/9/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":141,"Cost":83,"Date":"11/16/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":598,"Cost":317,"Date":"6/2/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":120,"Cost":114,"Date":"9/19/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":464,"Cost":255,"Date":"1/15/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":620,"Cost":467,"Date":"6/26/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":397,"Cost":321,"Date":"11/7/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":845,"Cost":763,"Date":"2/16/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":972,"Cost":636,"Date":"4/19/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":997,"Cost":929,"Date":"8/1/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":835,"Cost":668,"Date":"11/26/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":952,"Cost":786,"Date":"3/1/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":657,"Cost":516,"Date":"9/5/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":163,"Cost":106,"Date":"3/27/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":248,"Cost":180,"Date":"6/7/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":977,"Cost":676,"Date":"9/2/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":515,"Cost":332,"Date":"3/9/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":181,"Cost":169,"Date":"6/2/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":958,"Cost":773,"Date":"9/13/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":62,"Cost":38,"Date":"11/15/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":940,"Cost":669,"Date":"4/5/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":591,"Cost":373,"Date":"10/6/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":382,"Cost":343,"Date":"3/18/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":119,"Cost":93,"Date":"8/4/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":1000,"Cost":506,"Date":"11/30/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":346,"Cost":200,"Date":"5/3/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":448,"Cost":243,"Date":"10/12/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":617,"Cost":419,"Date":"12/21/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":10,"Cost":8,"Date":"4/3/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":968,"Cost":739,"Date":"7/9/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":788,"Cost":693,"Date":"9/17/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":363,"Cost":302,"Date":"2/8/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":513,"Cost":397,"Date":"8/21/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":695,"Cost":572,"Date":"1/19/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":288,"Cost":210,"Date":"6/2/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":73,"Cost":42,"Date":"8/14/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":869,"Cost":539,"Date":"2/10/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":715,"Cost":578,"Date":"5/7/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":474,"Cost":307,"Date":"8/29/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":789,"Cost":562,"Date":"10/28/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":153,"Cost":135,"Date":"3/7/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":789,"Cost":613,"Date":"5/31/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":363,"Cost":251,"Date":"2/11/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":600,"Cost":486,"Date":"7/19/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":273,"Cost":138,"Date":"10/30/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":764,"Cost":724,"Date":"3/9/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":4,"Cost":3,"Date":"8/26/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":825,"Cost":619,"Date":"12/18/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":84,"Cost":44,"Date":"2/25/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":145,"Cost":74,"Date":"7/1/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":343,"Cost":247,"Date":"8/31/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":871,"Cost":803,"Date":"12/31/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":235,"Cost":190,"Date":"7/21/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":183,"Cost":146,"Date":"12/8/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":238,"Cost":196,"Date":"5/15/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":989,"Cost":582,"Date":"7/4/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":794,"Cost":647,"Date":"11/1/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":420,"Cost":215,"Date":"3/17/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":708,"Cost":662,"Date":"7/10/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":223,"Cost":212,"Date":"10/4/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":956,"Cost":705,"Date":"1/20/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":882,"Cost":695,"Date":"5/15/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":561,"Cost":533,"Date":"11/18/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":205,"Cost":144,"Date":"6/10/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":346,"Cost":244,"Date":"9/29/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":222,"Cost":160,"Date":"1/24/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":33,"Cost":26,"Date":"7/4/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":966,"Cost":633,"Date":"12/1/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":414,"Cost":348,"Date":"2/16/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":353,"Cost":202,"Date":"5/17/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":844,"Cost":521,"Date":"8/6/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":909,"Cost":482,"Date":"11/27/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":71,"Cost":36,"Date":"3/19/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":617,"Cost":465,"Date":"10/6/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":413,"Cost":281,"Date":"4/20/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":94,"Cost":61,"Date":"6/14/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":303,"Cost":193,"Date":"9/3/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":566,"Cost":434,"Date":"3/9/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":120,"Cost":112,"Date":"6/11/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":189,"Cost":150,"Date":"9/14/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":913,"Cost":478,"Date":"11/25/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":494,"Cost":394,"Date":"4/14/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":689,"Cost":600,"Date":"10/8/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":174,"Cost":146,"Date":"3/20/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":746,"Cost":704,"Date":"9/2/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":733,"Cost":658,"Date":"12/8/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":963,"Cost":903,"Date":"5/4/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":65,"Cost":44,"Date":"11/2/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":98,"Cost":88,"Date":"1/9/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":270,"Cost":184,"Date":"4/9/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":945,"Cost":594,"Date":"7/14/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":397,"Cost":264,"Date":"9/29/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":209,"Cost":112,"Date":"2/27/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":341,"Cost":195,"Date":"8/23/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":45,"Cost":24,"Date":"1/28/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":612,"Cost":464,"Date":"6/3/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":155,"Cost":110,"Date":"8/16/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":561,"Cost":461,"Date":"2/28/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":709,"Cost":609,"Date":"5/10/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":922,"Cost":651,"Date":"8/31/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":659,"Cost":450,"Date":"10/30/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":965,"Cost":899,"Date":"3/14/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":178,"Cost":154,"Date":"7/27/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":962,"Cost":840,"Date":"3/10/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":631,"Cost":409,"Date":"7/21/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":627,"Cost":579,"Date":"11/9/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":852,"Cost":618,"Date":"3/12/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":447,"Cost":290,"Date":"9/2/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":195,"Cost":106,"Date":"12/20/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":396,"Cost":277,"Date":"3/8/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":158,"Cost":118,"Date":"7/4/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":823,"Cost":552,"Date":"9/1/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":241,"Cost":173,"Date":"1/20/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":307,"Cost":163,"Date":"8/5/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":229,"Cost":149,"Date":"1/8/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":92,"Cost":56,"Date":"5/16/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":150,"Cost":104,"Date":"7/9/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":486,"Cost":328,"Date":"11/2/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":307,"Cost":184,"Date":"3/23/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":949,"Cost":537,"Date":"7/11/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":313,"Cost":248,"Date":"10/10/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":401,"Cost":232,"Date":"2/8/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":22,"Cost":21,"Date":"5/25/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":454,"Cost":351,"Date":"12/1/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":412,"Cost":314,"Date":"6/16/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":773,"Cost":579,"Date":"10/2/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":781,"Cost":627,"Date":"2/3/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":942,"Cost":491,"Date":"7/13/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":294,"Cost":227,"Date":"12/4/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":299,"Cost":167,"Date":"2/18/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":703,"Cost":484,"Date":"5/22/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":440,"Cost":280,"Date":"8/7/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":366,"Cost":251,"Date":"12/5/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":677,"Cost":492,"Date":"3/28/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":155,"Cost":132,"Date":"10/19/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":934,"Cost":526,"Date":"4/24/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":387,"Cost":274,"Date":"6/20/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":271,"Cost":232,"Date":"9/16/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":376,"Cost":351,"Date":"3/11/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":681,"Cost":484,"Date":"6/16/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":135,"Cost":118,"Date":"9/19/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":441,"Cost":363,"Date":"1/10/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":357,"Cost":314,"Date":"5/3/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":156,"Cost":105,"Date":"10/26/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":943,"Cost":510,"Date":"3/26/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":98,"Cost":55,"Date":"9/4/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":612,"Cost":446,"Date":"12/11/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":420,"Cost":218,"Date":"6/8/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":626,"Cost":577,"Date":"11/4/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":54,"Cost":50,"Date":"2/5/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":516,"Cost":456,"Date":"4/10/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":144,"Cost":74,"Date":"7/19/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":567,"Cost":485,"Date":"11/7/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":734,"Cost":465,"Date":"3/1/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":498,"Cost":313,"Date":"9/3/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":909,"Cost":693,"Date":"1/31/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":803,"Cost":447,"Date":"6/5/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":402,"Cost":260,"Date":"8/23/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":664,"Cost":379,"Date":"3/4/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":844,"Cost":442,"Date":"5/20/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":481,"Cost":443,"Date":"9/8/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":20,"Cost":16,"Date":"11/1/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":457,"Cost":416,"Date":"3/27/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":419,"Cost":332,"Date":"9/17/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":786,"Cost":543,"Date":"3/16/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":937,"Cost":881,"Date":"7/25/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":248,"Cost":167,"Date":"11/23/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":572,"Cost":314,"Date":"4/19/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":848,"Cost":699,"Date":"9/29/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":33,"Cost":26,"Date":"12/20/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":676,"Cost":568,"Date":"4/2/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":903,"Cost":649,"Date":"7/8/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":904,"Cost":617,"Date":"9/1/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":146,"Cost":139,"Date":"2/2/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":436,"Cost":364,"Date":"8/12/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":67,"Cost":36,"Date":"1/14/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":619,"Cost":328,"Date":"5/18/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":230,"Cost":185,"Date":"7/12/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":500,"Cost":340,"Date":"12/17/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":821,"Cost":566,"Date":"4/1/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":136,"Cost":92,"Date":"8/28/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":462,"Cost":407,"Date":"10/17/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":265,"Cost":248,"Date":"2/25/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":76,"Cost":44,"Date":"5/26/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":755,"Cost":612,"Date":"2/9/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":369,"Cost":186,"Date":"6/25/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":290,"Cost":158,"Date":"10/15/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":797,"Cost":742,"Date":"2/4/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":380,"Cost":351,"Date":"8/8/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":53,"Cost":27,"Date":"12/7/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":125,"Cost":64,"Date":"2/22/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":736,"Cost":649,"Date":"6/20/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":32,"Cost":28,"Date":"8/22/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":727,"Cost":447,"Date":"12/26/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":125,"Cost":116,"Date":"5/21/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":328,"Cost":234,"Date":"11/15/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":171,"Cost":96,"Date":"4/28/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":420,"Cost":269,"Date":"6/24/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":487,"Cost":352,"Date":"10/4/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":820,"Cost":689,"Date":"3/17/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":652,"Cost":485,"Date":"6/16/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":869,"Cost":661,"Date":"9/25/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":339,"Cost":176,"Date":"1/14/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":966,"Cost":751,"Date":"5/9/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":503,"Cost":332,"Date":"11/16/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":930,"Cost":753,"Date":"6/2/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":37,"Cost":30,"Date":"9/19/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":734,"Cost":638,"Date":"1/15/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":800,"Cost":611,"Date":"6/26/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":756,"Cost":523,"Date":"11/7/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":697,"Cost":622,"Date":"2/16/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":840,"Cost":732,"Date":"4/19/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":212,"Cost":169,"Date":"8/1/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":310,"Cost":194,"Date":"11/26/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":379,"Cost":240,"Date":"3/1/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":700,"Cost":501,"Date":"9/5/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":288,"Cost":189,"Date":"3/27/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":103,"Cost":88,"Date":"6/7/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":778,"Cost":523,"Date":"9/2/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":258,"Cost":195,"Date":"3/9/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":811,"Cost":585,"Date":"6/2/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":89,"Cost":46,"Date":"9/13/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":990,"Cost":745,"Date":"11/15/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":372,"Cost":205,"Date":"4/5/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":428,"Cost":266,"Date":"10/6/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":206,"Cost":127,"Date":"3/18/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":730,"Cost":667,"Date":"8/4/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":776,"Cost":394,"Date":"11/30/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":836,"Cost":496,"Date":"5/3/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":24,"Cost":18,"Date":"10/12/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":92,"Cost":62,"Date":"12/21/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":380,"Cost":248,"Date":"4/3/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":86,"Cost":51,"Date":"7/9/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":344,"Cost":174,"Date":"9/17/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":106,"Cost":60,"Date":"2/8/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":331,"Cost":239,"Date":"8/21/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":82,"Cost":76,"Date":"1/19/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":70,"Cost":44,"Date":"6/2/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":481,"Cost":241,"Date":"8/14/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":394,"Cost":317,"Date":"2/10/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":422,"Cost":385,"Date":"5/7/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":433,"Cost":335,"Date":"8/29/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":914,"Cost":641,"Date":"10/28/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":501,"Cost":322,"Date":"3/7/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":150,"Cost":88,"Date":"5/31/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":350,"Cost":202,"Date":"2/11/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":693,"Cost":471,"Date":"7/19/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":141,"Cost":127,"Date":"10/30/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":32,"Cost":18,"Date":"3/9/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":583,"Cost":298,"Date":"8/26/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":431,"Cost":289,"Date":"12/18/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":714,"Cost":558,"Date":"2/25/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":447,"Cost":350,"Date":"7/1/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":572,"Cost":379,"Date":"8/31/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":468,"Cost":241,"Date":"12/31/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":66,"Cost":46,"Date":"7/21/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":303,"Cost":259,"Date":"12/8/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":520,"Cost":447,"Date":"5/15/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":29,"Cost":26,"Date":"7/4/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":310,"Cost":194,"Date":"11/1/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":233,"Cost":221,"Date":"3/17/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":545,"Cost":419,"Date":"7/10/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":993,"Cost":927,"Date":"10/4/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":528,"Cost":415,"Date":"1/20/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":217,"Cost":196,"Date":"5/15/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":958,"Cost":515,"Date":"11/18/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":402,"Cost":263,"Date":"6/10/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":762,"Cost":667,"Date":"9/29/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":620,"Cost":571,"Date":"1/24/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":33,"Cost":20,"Date":"7/4/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":236,"Cost":161,"Date":"12/1/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":409,"Cost":207,"Date":"2/16/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":393,"Cost":223,"Date":"5/17/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":562,"Cost":379,"Date":"8/6/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":703,"Cost":474,"Date":"11/27/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":531,"Cost":419,"Date":"3/19/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":987,"Cost":547,"Date":"10/6/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":26,"Cost":21,"Date":"4/20/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":864,"Cost":525,"Date":"6/14/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":631,"Cost":582,"Date":"9/3/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":577,"Cost":485,"Date":"3/9/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":826,"Cost":559,"Date":"6/11/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":937,"Cost":860,"Date":"9/14/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":409,"Cost":274,"Date":"11/25/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":515,"Cost":277,"Date":"4/14/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":38,"Cost":33,"Date":"10/8/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":574,"Cost":412,"Date":"3/20/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":641,"Cost":425,"Date":"9/2/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":98,"Cost":77,"Date":"12/8/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":549,"Cost":477,"Date":"5/4/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":120,"Cost":113,"Date":"11/2/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":373,"Cost":196,"Date":"1/9/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":127,"Cost":77,"Date":"4/9/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":402,"Cost":369,"Date":"7/14/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":186,"Cost":136,"Date":"9/29/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":196,"Cost":119,"Date":"2/27/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":714,"Cost":384,"Date":"8/23/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":885,"Cost":524,"Date":"1/28/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":205,"Cost":194,"Date":"6/3/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":580,"Cost":430,"Date":"8/16/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":6,"Cost":4,"Date":"2/28/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":558,"Cost":400,"Date":"5/10/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":733,"Cost":578,"Date":"8/31/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":834,"Cost":785,"Date":"10/30/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":737,"Cost":646,"Date":"3/14/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":695,"Cost":540,"Date":"7/27/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":691,"Cost":383,"Date":"3/10/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":598,"Cost":334,"Date":"7/21/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":753,"Cost":715,"Date":"11/9/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":649,"Cost":615,"Date":"3/12/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":683,"Cost":413,"Date":"9/2/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":730,"Cost":654,"Date":"12/20/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":526,"Cost":316,"Date":"3/8/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":193,"Cost":136,"Date":"7/4/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":146,"Cost":78,"Date":"9/1/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":110,"Cost":83,"Date":"1/20/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":637,"Cost":394,"Date":"8/5/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":117,"Cost":85,"Date":"1/8/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":108,"Cost":56,"Date":"5/16/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":356,"Cost":301,"Date":"7/9/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":700,"Cost":430,"Date":"11/2/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":916,"Cost":611,"Date":"3/23/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":831,"Cost":485,"Date":"7/11/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":295,"Cost":156,"Date":"10/10/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":961,"Cost":701,"Date":"2/8/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":635,"Cost":397,"Date":"5/25/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":722,"Cost":570,"Date":"12/1/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":43,"Cost":39,"Date":"6/16/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":615,"Cost":377,"Date":"10/2/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":392,"Cost":348,"Date":"2/3/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":103,"Cost":90,"Date":"7/13/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":680,"Cost":411,"Date":"12/4/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":334,"Cost":274,"Date":"2/18/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":400,"Cost":231,"Date":"5/22/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":668,"Cost":558,"Date":"8/7/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":278,"Cost":186,"Date":"12/5/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":625,"Cost":385,"Date":"3/28/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":133,"Cost":112,"Date":"10/19/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":993,"Cost":502,"Date":"4/24/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":451,"Cost":368,"Date":"6/20/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":170,"Cost":135,"Date":"9/16/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":407,"Cost":212,"Date":"3/11/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":563,"Cost":502,"Date":"6/16/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":751,"Cost":597,"Date":"9/19/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":290,"Cost":185,"Date":"1/10/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":275,"Cost":250,"Date":"5/3/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":203,"Cost":175,"Date":"10/26/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":254,"Cost":196,"Date":"3/26/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":127,"Cost":117,"Date":"9/4/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":951,"Cost":630,"Date":"12/11/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":575,"Cost":339,"Date":"6/8/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":492,"Cost":260,"Date":"11/4/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":292,"Cost":203,"Date":"2/5/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":500,"Cost":365,"Date":"4/10/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":823,"Cost":502,"Date":"7/19/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":674,"Cost":632,"Date":"11/7/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":507,"Cost":408,"Date":"3/1/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":718,"Cost":461,"Date":"9/3/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":221,"Cost":163,"Date":"1/31/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":294,"Cost":164,"Date":"6/5/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":451,"Cost":374,"Date":"8/23/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":415,"Cost":228,"Date":"3/4/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":250,"Cost":149,"Date":"5/20/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":762,"Cost":390,"Date":"9/8/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":433,"Cost":323,"Date":"11/1/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":823,"Cost":434,"Date":"3/27/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":902,"Cost":709,"Date":"9/17/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":427,"Cost":355,"Date":"3/16/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":889,"Cost":556,"Date":"7/25/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":546,"Cost":433,"Date":"11/23/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":942,"Cost":568,"Date":"4/19/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":383,"Cost":329,"Date":"9/29/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":891,"Cost":817,"Date":"12/20/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":899,"Cost":817,"Date":"4/2/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":177,"Cost":164,"Date":"7/8/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":566,"Cost":488,"Date":"9/1/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":760,"Cost":528,"Date":"2/2/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":16,"Cost":10,"Date":"8/12/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":482,"Cost":286,"Date":"1/14/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":809,"Cost":504,"Date":"5/18/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":540,"Cost":385,"Date":"7/12/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":31,"Cost":25,"Date":"12/17/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":219,"Cost":123,"Date":"4/1/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":618,"Cost":473,"Date":"8/28/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":981,"Cost":811,"Date":"10/17/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":728,"Cost":557,"Date":"2/25/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":191,"Cost":145,"Date":"5/26/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":861,"Cost":473,"Date":"2/9/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":291,"Cost":238,"Date":"6/25/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":260,"Cost":212,"Date":"10/15/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":535,"Cost":297,"Date":"2/4/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":965,"Cost":610,"Date":"8/8/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":409,"Cost":259,"Date":"12/7/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":112,"Cost":68,"Date":"2/22/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":29,"Cost":25,"Date":"6/20/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":76,"Cost":61,"Date":"8/22/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":857,"Cost":569,"Date":"12/26/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":915,"Cost":702,"Date":"5/21/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":359,"Cost":212,"Date":"11/15/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":750,"Cost":486,"Date":"4/28/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":220,"Cost":166,"Date":"6/24/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":73,"Cost":53,"Date":"10/4/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":367,"Cost":220,"Date":"3/17/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":340,"Cost":171,"Date":"6/16/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":227,"Cost":214,"Date":"9/25/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":142,"Cost":90,"Date":"1/14/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":934,"Cost":674,"Date":"5/9/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":264,"Cost":180,"Date":"11/16/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":533,"Cost":285,"Date":"6/2/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":603,"Cost":377,"Date":"9/19/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":147,"Cost":139,"Date":"1/15/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":534,"Cost":307,"Date":"6/26/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":444,"Cost":306,"Date":"11/7/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":154,"Cost":140,"Date":"2/16/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":813,"Cost":673,"Date":"4/19/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":908,"Cost":820,"Date":"8/1/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":149,"Cost":84,"Date":"11/26/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":45,"Cost":25,"Date":"3/1/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":700,"Cost":406,"Date":"9/5/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":528,"Cost":419,"Date":"3/27/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":103,"Cost":79,"Date":"6/7/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":573,"Cost":458,"Date":"9/2/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":802,"Cost":728,"Date":"3/9/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":820,"Cost":425,"Date":"6/2/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":89,"Cost":65,"Date":"9/13/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":689,"Cost":545,"Date":"11/15/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":786,"Cost":507,"Date":"4/5/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":714,"Cost":674,"Date":"10/6/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":701,"Cost":655,"Date":"3/18/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":966,"Cost":522,"Date":"8/4/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":847,"Cost":659,"Date":"11/30/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":914,"Cost":670,"Date":"5/3/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":590,"Cost":495,"Date":"10/12/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":215,"Cost":136,"Date":"12/21/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":284,"Cost":149,"Date":"4/3/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":165,"Cost":106,"Date":"7/9/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":640,"Cost":461,"Date":"9/17/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":719,"Cost":536,"Date":"2/8/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":344,"Cost":186,"Date":"8/21/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":150,"Cost":81,"Date":"1/19/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":405,"Cost":326,"Date":"6/2/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":467,"Cost":348,"Date":"8/14/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":789,"Cost":566,"Date":"2/10/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":217,"Cost":144,"Date":"5/7/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":790,"Cost":462,"Date":"8/29/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":205,"Cost":125,"Date":"10/28/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":636,"Cost":408,"Date":"3/7/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":145,"Cost":125,"Date":"5/31/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":552,"Cost":376,"Date":"2/11/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":81,"Cost":65,"Date":"7/19/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":697,"Cost":464,"Date":"10/30/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":718,"Cost":534,"Date":"3/9/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":160,"Cost":96,"Date":"8/26/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":731,"Cost":416,"Date":"12/18/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":744,"Cost":457,"Date":"2/25/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":897,"Cost":787,"Date":"7/1/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":239,"Cost":222,"Date":"8/31/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":526,"Cost":296,"Date":"12/31/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":497,"Cost":368,"Date":"7/21/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":274,"Cost":168,"Date":"12/8/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":747,"Cost":424,"Date":"5/15/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":961,"Cost":851,"Date":"7/4/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":434,"Cost":280,"Date":"11/1/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":984,"Cost":853,"Date":"3/17/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":334,"Cost":217,"Date":"7/10/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":341,"Cost":323,"Date":"10/4/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":331,"Cost":263,"Date":"1/20/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":404,"Cost":326,"Date":"5/15/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":1,"Cost":1,"Date":"11/18/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":754,"Cost":690,"Date":"6/10/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":857,"Cost":778,"Date":"9/29/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":178,"Cost":109,"Date":"1/24/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":990,"Cost":745,"Date":"7/4/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":156,"Cost":91,"Date":"12/1/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":691,"Cost":559,"Date":"2/16/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":131,"Cost":109,"Date":"5/17/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":303,"Cost":265,"Date":"8/6/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":950,"Cost":669,"Date":"11/27/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":453,"Cost":360,"Date":"3/19/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":151,"Cost":79,"Date":"10/6/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":482,"Cost":308,"Date":"4/20/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":961,"Cost":721,"Date":"6/14/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":259,"Cost":219,"Date":"9/3/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":817,"Cost":602,"Date":"3/9/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":304,"Cost":191,"Date":"6/11/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":438,"Cost":251,"Date":"9/14/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":81,"Cost":58,"Date":"11/25/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":129,"Cost":73,"Date":"4/14/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":642,"Cost":333,"Date":"10/8/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":429,"Cost":298,"Date":"3/20/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":29,"Cost":18,"Date":"9/2/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":169,"Cost":129,"Date":"12/8/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":908,"Cost":531,"Date":"5/4/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":769,"Cost":454,"Date":"11/2/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":201,"Cost":115,"Date":"1/9/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":641,"Cost":470,"Date":"4/9/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":906,"Cost":757,"Date":"7/14/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":953,"Cost":700,"Date":"9/29/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":204,"Cost":136,"Date":"2/27/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":701,"Cost":564,"Date":"8/23/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":146,"Cost":110,"Date":"1/28/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":338,"Cost":290,"Date":"6/3/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":321,"Cost":301,"Date":"8/16/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":490,"Cost":340,"Date":"2/28/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":5,"Cost":4,"Date":"5/10/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":435,"Cost":376,"Date":"8/31/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":346,"Cost":222,"Date":"10/30/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":308,"Cost":263,"Date":"3/14/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":538,"Cost":336,"Date":"7/27/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":539,"Cost":365,"Date":"3/10/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":914,"Cost":646,"Date":"7/21/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":632,"Cost":408,"Date":"11/9/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":988,"Cost":754,"Date":"3/12/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":128,"Cost":119,"Date":"9/2/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":533,"Cost":311,"Date":"12/20/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":654,"Cost":518,"Date":"3/8/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":744,"Cost":634,"Date":"7/4/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":59,"Cost":42,"Date":"9/1/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":859,"Cost":562,"Date":"1/20/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":527,"Cost":446,"Date":"8/5/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":829,"Cost":449,"Date":"1/8/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":343,"Cost":221,"Date":"5/16/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":478,"Cost":444,"Date":"7/9/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":768,"Cost":568,"Date":"11/2/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":723,"Cost":446,"Date":"3/23/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":711,"Cost":434,"Date":"7/11/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":646,"Cost":436,"Date":"10/10/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":162,"Cost":117,"Date":"2/8/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":7,"Cost":5,"Date":"5/25/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":553,"Cost":467,"Date":"12/1/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":26,"Cost":13,"Date":"6/16/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":948,"Cost":716,"Date":"10/2/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":376,"Cost":309,"Date":"2/3/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":579,"Cost":407,"Date":"7/13/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":727,"Cost":435,"Date":"12/4/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":833,"Cost":517,"Date":"2/18/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":575,"Cost":341,"Date":"5/22/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":226,"Cost":142,"Date":"8/7/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":546,"Cost":280,"Date":"12/5/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":774,"Cost":552,"Date":"3/28/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":726,"Cost":406,"Date":"10/19/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":258,"Cost":219,"Date":"4/24/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":746,"Cost":380,"Date":"6/20/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":722,"Cost":401,"Date":"9/16/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":6,"Cost":6,"Date":"3/11/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":947,"Cost":677,"Date":"6/16/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":835,"Cost":752,"Date":"9/19/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":782,"Cost":584,"Date":"1/10/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":947,"Cost":678,"Date":"5/3/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":880,"Cost":783,"Date":"10/26/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":758,"Cost":638,"Date":"3/26/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":498,"Cost":289,"Date":"9/4/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":487,"Cost":288,"Date":"12/11/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":652,"Cost":489,"Date":"6/8/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":486,"Cost":437,"Date":"11/4/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":618,"Cost":322,"Date":"2/5/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":779,"Cost":568,"Date":"4/10/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":141,"Cost":85,"Date":"7/19/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":154,"Cost":117,"Date":"11/7/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":52,"Cost":47,"Date":"3/1/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":216,"Cost":205,"Date":"9/3/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":681,"Cost":447,"Date":"1/31/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":654,"Cost":579,"Date":"6/5/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":964,"Cost":586,"Date":"8/23/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":509,"Cost":428,"Date":"3/4/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":323,"Cost":171,"Date":"5/20/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":983,"Cost":605,"Date":"9/8/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":125,"Cost":79,"Date":"11/1/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":473,"Cost":324,"Date":"3/27/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":944,"Cost":619,"Date":"9/17/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":494,"Cost":438,"Date":"3/16/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":262,"Cost":203,"Date":"7/25/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":841,"Cost":705,"Date":"11/23/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":814,"Cost":749,"Date":"4/19/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":905,"Cost":649,"Date":"9/29/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":461,"Cost":325,"Date":"12/20/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":713,"Cost":425,"Date":"4/2/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":530,"Cost":492,"Date":"7/8/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":325,"Cost":188,"Date":"9/1/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":366,"Cost":194,"Date":"2/2/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":983,"Cost":922,"Date":"8/12/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":838,"Cost":493,"Date":"1/14/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":944,"Cost":798,"Date":"5/18/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":73,"Cost":50,"Date":"7/12/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":49,"Cost":41,"Date":"12/17/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":986,"Cost":657,"Date":"4/1/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":188,"Cost":147,"Date":"8/28/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":274,"Cost":227,"Date":"10/17/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":668,"Cost":478,"Date":"2/25/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":22,"Cost":16,"Date":"5/26/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":465,"Cost":381,"Date":"2/9/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":325,"Cost":227,"Date":"6/25/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":476,"Cost":440,"Date":"10/15/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":541,"Cost":388,"Date":"2/4/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":790,"Cost":451,"Date":"8/8/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":186,"Cost":170,"Date":"12/7/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":720,"Cost":559,"Date":"2/22/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":11,"Cost":7,"Date":"6/20/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":148,"Cost":108,"Date":"8/22/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":165,"Cost":136,"Date":"12/26/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":706,"Cost":387,"Date":"5/21/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":620,"Cost":513,"Date":"11/15/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":366,"Cost":286,"Date":"4/28/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":712,"Cost":435,"Date":"6/24/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":358,"Cost":269,"Date":"10/4/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":545,"Cost":509,"Date":"3/17/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":855,"Cost":505,"Date":"6/16/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":871,"Cost":805,"Date":"9/25/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":248,"Cost":171,"Date":"1/14/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":348,"Cost":178,"Date":"5/9/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":825,"Cost":740,"Date":"11/16/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":822,"Cost":434,"Date":"6/2/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":327,"Cost":251,"Date":"9/19/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":769,"Cost":571,"Date":"1/15/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":493,"Cost":391,"Date":"6/26/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":865,"Cost":614,"Date":"11/7/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":506,"Cost":434,"Date":"2/16/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":907,"Cost":562,"Date":"4/19/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":187,"Cost":145,"Date":"8/1/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":760,"Cost":421,"Date":"11/26/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":838,"Cost":754,"Date":"3/1/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":518,"Cost":293,"Date":"9/5/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":367,"Cost":189,"Date":"3/27/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":871,"Cost":800,"Date":"6/7/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":868,"Cost":625,"Date":"9/2/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":820,"Cost":614,"Date":"3/9/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":519,"Cost":413,"Date":"6/2/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":954,"Cost":785,"Date":"9/13/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":78,"Cost":46,"Date":"11/15/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":977,"Cost":616,"Date":"4/5/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":735,"Cost":684,"Date":"10/6/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":403,"Cost":225,"Date":"3/18/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":494,"Cost":441,"Date":"8/4/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":752,"Cost":575,"Date":"11/30/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":159,"Cost":143,"Date":"5/3/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":832,"Cost":431,"Date":"10/12/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":395,"Cost":309,"Date":"12/21/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":492,"Cost":280,"Date":"4/3/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":495,"Cost":286,"Date":"7/9/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":171,"Cost":155,"Date":"9/17/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":961,"Cost":626,"Date":"2/8/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":509,"Cost":482,"Date":"8/21/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":285,"Cost":248,"Date":"1/19/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":975,"Cost":642,"Date":"6/2/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":878,"Cost":602,"Date":"8/14/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":113,"Cost":92,"Date":"2/10/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":772,"Cost":704,"Date":"5/7/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":175,"Cost":141,"Date":"8/29/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":286,"Cost":192,"Date":"10/28/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":924,"Cost":852,"Date":"3/7/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":967,"Cost":694,"Date":"5/31/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":330,"Cost":229,"Date":"2/11/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":976,"Cost":713,"Date":"7/19/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":574,"Cost":332,"Date":"10/30/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":705,"Cost":398,"Date":"3/9/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":417,"Cost":350,"Date":"8/26/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":199,"Cost":109,"Date":"12/18/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":496,"Cost":390,"Date":"2/25/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":253,"Cost":213,"Date":"7/1/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":566,"Cost":483,"Date":"8/31/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":373,"Cost":193,"Date":"12/31/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":624,"Cost":338,"Date":"7/21/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":826,"Cost":598,"Date":"12/8/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":876,"Cost":770,"Date":"5/15/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":920,"Cost":866,"Date":"7/4/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":828,"Cost":519,"Date":"11/1/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":706,"Cost":632,"Date":"3/17/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":68,"Cost":56,"Date":"7/10/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":106,"Cost":91,"Date":"10/4/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":316,"Cost":189,"Date":"1/20/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":870,"Cost":456,"Date":"5/15/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":212,"Cost":145,"Date":"11/18/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":836,"Cost":428,"Date":"6/10/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":335,"Cost":285,"Date":"9/29/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":243,"Cost":196,"Date":"1/24/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":607,"Cost":552,"Date":"7/4/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":676,"Cost":425,"Date":"12/1/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":27,"Cost":25,"Date":"2/16/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":407,"Cost":337,"Date":"5/17/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":625,"Cost":548,"Date":"8/6/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":360,"Cost":322,"Date":"11/27/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":693,"Cost":625,"Date":"3/19/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":305,"Cost":177,"Date":"10/6/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":772,"Cost":495,"Date":"4/20/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":59,"Cost":34,"Date":"6/14/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":208,"Cost":117,"Date":"9/3/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":860,"Cost":610,"Date":"3/9/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":623,"Cost":377,"Date":"6/11/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":462,"Cost":425,"Date":"9/14/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":670,"Cost":572,"Date":"11/25/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":444,"Cost":410,"Date":"4/14/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":27,"Cost":26,"Date":"10/8/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":222,"Cost":146,"Date":"3/20/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":935,"Cost":541,"Date":"9/2/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":195,"Cost":178,"Date":"12/8/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":975,"Cost":489,"Date":"5/4/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":440,"Cost":413,"Date":"11/2/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":78,"Cost":57,"Date":"1/9/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":847,"Cost":637,"Date":"4/9/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":485,"Cost":392,"Date":"7/14/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":935,"Cost":502,"Date":"9/29/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":137,"Cost":127,"Date":"2/27/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":986,"Cost":728,"Date":"8/23/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":631,"Cost":462,"Date":"1/28/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":241,"Cost":186,"Date":"6/3/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":720,"Cost":398,"Date":"8/16/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":417,"Cost":313,"Date":"2/28/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":606,"Cost":355,"Date":"5/10/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":864,"Cost":637,"Date":"8/31/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":232,"Cost":120,"Date":"10/30/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":730,"Cost":467,"Date":"3/14/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":630,"Cost":340,"Date":"7/27/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":856,"Cost":572,"Date":"3/10/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":342,"Cost":246,"Date":"7/21/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":676,"Cost":484,"Date":"11/9/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":928,"Cost":707,"Date":"3/12/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":554,"Cost":462,"Date":"9/2/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":93,"Cost":62,"Date":"12/20/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":675,"Cost":607,"Date":"3/8/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":333,"Cost":297,"Date":"7/4/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":198,"Cost":109,"Date":"9/1/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":788,"Cost":737,"Date":"1/20/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":255,"Cost":197,"Date":"8/5/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":925,"Cost":703,"Date":"1/8/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":637,"Cost":578,"Date":"5/16/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":202,"Cost":169,"Date":"7/9/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":711,"Cost":407,"Date":"11/2/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":196,"Cost":165,"Date":"3/23/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":835,"Cost":770,"Date":"7/11/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":202,"Cost":155,"Date":"10/10/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":455,"Cost":271,"Date":"2/8/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":423,"Cost":286,"Date":"5/25/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":260,"Cost":175,"Date":"12/1/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":859,"Cost":810,"Date":"6/16/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":509,"Cost":424,"Date":"10/2/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":825,"Cost":679,"Date":"2/3/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":381,"Cost":193,"Date":"7/13/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":94,"Cost":54,"Date":"12/4/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":964,"Cost":507,"Date":"2/18/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":435,"Cost":229,"Date":"5/22/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":897,"Cost":764,"Date":"8/7/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":842,"Cost":492,"Date":"12/5/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":65,"Cost":55,"Date":"3/28/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":823,"Cost":631,"Date":"10/19/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":915,"Cost":832,"Date":"4/24/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":747,"Cost":494,"Date":"6/20/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":268,"Cost":247,"Date":"9/16/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":334,"Cost":310,"Date":"3/11/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":532,"Cost":297,"Date":"6/16/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":485,"Cost":381,"Date":"9/19/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":138,"Cost":94,"Date":"1/10/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":840,"Cost":562,"Date":"5/3/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":379,"Cost":302,"Date":"10/26/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":629,"Cost":418,"Date":"3/26/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":679,"Cost":551,"Date":"9/4/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":111,"Cost":60,"Date":"12/11/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":694,"Cost":587,"Date":"6/8/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":783,"Cost":454,"Date":"11/4/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":173,"Cost":161,"Date":"2/5/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":244,"Cost":225,"Date":"4/10/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":415,"Cost":296,"Date":"7/19/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":555,"Cost":330,"Date":"11/7/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":765,"Cost":501,"Date":"3/1/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":629,"Cost":594,"Date":"9/3/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":180,"Cost":101,"Date":"1/31/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":642,"Cost":335,"Date":"6/5/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":909,"Cost":713,"Date":"8/23/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":929,"Cost":546,"Date":"3/4/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":235,"Cost":135,"Date":"5/20/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":47,"Cost":44,"Date":"9/8/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":660,"Cost":478,"Date":"11/1/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":666,"Cost":543,"Date":"3/27/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":34,"Cost":22,"Date":"9/17/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":843,"Cost":506,"Date":"3/16/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":243,"Cost":152,"Date":"7/25/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":745,"Cost":591,"Date":"11/23/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":244,"Cost":199,"Date":"4/19/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":473,"Cost":304,"Date":"9/29/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":87,"Cost":63,"Date":"12/20/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":84,"Cost":45,"Date":"4/2/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":149,"Cost":136,"Date":"7/8/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":707,"Cost":525,"Date":"9/1/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":190,"Cost":157,"Date":"2/2/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":164,"Cost":125,"Date":"8/12/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":238,"Cost":222,"Date":"1/14/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":872,"Cost":460,"Date":"5/18/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":442,"Cost":300,"Date":"7/12/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":236,"Cost":124,"Date":"12/17/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":15,"Cost":11,"Date":"4/1/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":187,"Cost":105,"Date":"8/28/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":198,"Cost":161,"Date":"10/17/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":784,"Cost":736,"Date":"2/25/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":354,"Cost":215,"Date":"5/26/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":224,"Cost":155,"Date":"2/9/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":718,"Cost":408,"Date":"6/25/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":30,"Cost":28,"Date":"10/15/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":104,"Cost":74,"Date":"2/4/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":929,"Cost":882,"Date":"8/8/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":277,"Cost":178,"Date":"12/7/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":363,"Cost":274,"Date":"2/22/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":217,"Cost":162,"Date":"6/20/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":5,"Cost":3,"Date":"8/22/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":398,"Cost":272,"Date":"12/26/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":799,"Cost":517,"Date":"5/21/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":199,"Cost":117,"Date":"11/15/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":227,"Cost":152,"Date":"4/28/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":23,"Cost":17,"Date":"6/24/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":732,"Cost":682,"Date":"10/4/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":659,"Cost":503,"Date":"3/17/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":703,"Cost":631,"Date":"6/16/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":274,"Cost":231,"Date":"9/25/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":802,"Cost":762,"Date":"1/14/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":864,"Cost":632,"Date":"5/9/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":261,"Cost":212,"Date":"11/16/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":896,"Cost":635,"Date":"6/2/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":543,"Cost":299,"Date":"9/19/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":379,"Cost":259,"Date":"1/15/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":507,"Cost":453,"Date":"6/26/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":78,"Cost":61,"Date":"11/7/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":261,"Cost":134,"Date":"2/16/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":625,"Cost":527,"Date":"4/19/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":522,"Cost":455,"Date":"8/1/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":170,"Cost":145,"Date":"11/26/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":914,"Cost":640,"Date":"3/1/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":186,"Cost":154,"Date":"9/5/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":510,"Cost":294,"Date":"3/27/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":130,"Cost":119,"Date":"6/7/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":953,"Cost":876,"Date":"9/2/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":548,"Cost":335,"Date":"3/9/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":998,"Cost":514,"Date":"6/2/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":22,"Cost":15,"Date":"9/13/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":333,"Cost":232,"Date":"11/15/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":59,"Cost":37,"Date":"4/5/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":460,"Cost":266,"Date":"10/6/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":844,"Cost":613,"Date":"3/18/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":956,"Cost":724,"Date":"8/4/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":270,"Cost":232,"Date":"11/30/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":175,"Cost":155,"Date":"5/3/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":522,"Cost":485,"Date":"10/12/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":53,"Cost":48,"Date":"12/21/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":481,"Cost":255,"Date":"4/3/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":27,"Cost":17,"Date":"7/9/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":673,"Cost":390,"Date":"9/17/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":297,"Cost":263,"Date":"2/8/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":841,"Cost":694,"Date":"8/21/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":945,"Cost":557,"Date":"1/19/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":665,"Cost":371,"Date":"6/2/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":138,"Cost":106,"Date":"8/14/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":193,"Cost":181,"Date":"2/10/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":576,"Cost":381,"Date":"5/7/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":784,"Cost":484,"Date":"8/29/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":584,"Cost":526,"Date":"10/28/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":266,"Cost":228,"Date":"3/7/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":420,"Cost":296,"Date":"5/31/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":386,"Cost":245,"Date":"2/11/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":535,"Cost":319,"Date":"7/19/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":460,"Cost":415,"Date":"10/30/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":932,"Cost":796,"Date":"3/9/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":300,"Cost":248,"Date":"8/26/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":398,"Cost":359,"Date":"12/18/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":20,"Cost":14,"Date":"2/25/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":257,"Cost":189,"Date":"7/1/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":890,"Cost":504,"Date":"8/31/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":537,"Cost":493,"Date":"12/31/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":426,"Cost":286,"Date":"7/21/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":594,"Cost":419,"Date":"12/8/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":524,"Cost":495,"Date":"5/15/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":153,"Cost":111,"Date":"7/4/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":175,"Cost":147,"Date":"11/1/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":280,"Cost":254,"Date":"3/17/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":551,"Cost":499,"Date":"7/10/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":245,"Cost":142,"Date":"10/4/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":928,"Cost":777,"Date":"1/20/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":875,"Cost":695,"Date":"5/15/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":227,"Cost":190,"Date":"11/18/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":130,"Cost":93,"Date":"6/10/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":288,"Cost":225,"Date":"9/29/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":494,"Cost":383,"Date":"1/24/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":998,"Cost":828,"Date":"7/4/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":406,"Cost":311,"Date":"12/1/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":375,"Cost":189,"Date":"2/16/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":857,"Cost":448,"Date":"5/17/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":612,"Cost":377,"Date":"8/6/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":703,"Cost":461,"Date":"11/27/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":107,"Cost":93,"Date":"3/19/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":145,"Cost":74,"Date":"10/6/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":64,"Cost":54,"Date":"4/20/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":629,"Cost":373,"Date":"6/14/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":856,"Cost":757,"Date":"9/3/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":341,"Cost":265,"Date":"3/9/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":367,"Cost":247,"Date":"6/11/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":357,"Cost":198,"Date":"9/14/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":381,"Cost":269,"Date":"11/25/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":834,"Cost":674,"Date":"4/14/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":407,"Cost":253,"Date":"10/8/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":146,"Cost":73,"Date":"3/20/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":739,"Cost":646,"Date":"9/2/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":277,"Cost":211,"Date":"12/8/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":911,"Cost":504,"Date":"5/4/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":393,"Cost":350,"Date":"11/2/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":903,"Cost":536,"Date":"1/9/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":906,"Cost":659,"Date":"4/9/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":612,"Cost":390,"Date":"7/14/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":127,"Cost":118,"Date":"9/29/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":6,"Cost":3,"Date":"2/27/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":543,"Cost":464,"Date":"8/23/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":282,"Cost":155,"Date":"1/28/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":358,"Cost":326,"Date":"6/3/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":686,"Cost":545,"Date":"8/16/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":504,"Cost":264,"Date":"2/28/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":748,"Cost":700,"Date":"5/10/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":99,"Cost":70,"Date":"8/31/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":703,"Cost":410,"Date":"10/30/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":13,"Cost":6,"Date":"3/14/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":798,"Cost":449,"Date":"7/27/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":391,"Cost":310,"Date":"3/10/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":50,"Cost":40,"Date":"7/21/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":531,"Cost":282,"Date":"11/9/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":192,"Cost":158,"Date":"3/12/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":540,"Cost":353,"Date":"9/2/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":64,"Cost":47,"Date":"12/20/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":101,"Cost":54,"Date":"3/8/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":302,"Cost":283,"Date":"7/4/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":95,"Cost":82,"Date":"9/1/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":935,"Cost":660,"Date":"1/20/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":700,"Cost":648,"Date":"8/5/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":672,"Cost":524,"Date":"1/8/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":790,"Cost":672,"Date":"5/16/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":629,"Cost":365,"Date":"7/9/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":702,"Cost":442,"Date":"11/2/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":634,"Cost":378,"Date":"3/23/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":889,"Cost":569,"Date":"7/11/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":702,"Cost":420,"Date":"10/10/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":528,"Cost":337,"Date":"2/8/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":129,"Cost":77,"Date":"5/25/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":248,"Cost":134,"Date":"12/1/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":622,"Cost":405,"Date":"6/16/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":570,"Cost":355,"Date":"10/2/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":342,"Cost":268,"Date":"2/3/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":482,"Cost":322,"Date":"7/13/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":341,"Cost":212,"Date":"12/4/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":63,"Cost":37,"Date":"2/18/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":848,"Cost":566,"Date":"5/22/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":152,"Cost":101,"Date":"8/7/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":865,"Cost":462,"Date":"12/5/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":268,"Cost":137,"Date":"3/28/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":965,"Cost":492,"Date":"10/19/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":277,"Cost":156,"Date":"4/24/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":909,"Cost":554,"Date":"6/20/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":965,"Cost":785,"Date":"9/16/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":83,"Cost":75,"Date":"3/11/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":453,"Cost":304,"Date":"6/16/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":809,"Cost":653,"Date":"9/19/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":739,"Cost":483,"Date":"1/10/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":337,"Cost":237,"Date":"5/3/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":848,"Cost":655,"Date":"10/26/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":127,"Cost":98,"Date":"3/26/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":472,"Cost":287,"Date":"9/4/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":452,"Cost":384,"Date":"12/11/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":554,"Cost":279,"Date":"6/8/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":805,"Cost":456,"Date":"11/4/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":581,"Cost":489,"Date":"2/5/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":987,"Cost":773,"Date":"4/10/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":364,"Cost":308,"Date":"7/19/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":99,"Cost":76,"Date":"11/7/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":139,"Cost":92,"Date":"3/1/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":945,"Cost":768,"Date":"9/3/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":865,"Cost":490,"Date":"1/31/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":387,"Cost":223,"Date":"6/5/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":51,"Cost":42,"Date":"8/23/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":579,"Cost":481,"Date":"3/4/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":381,"Cost":348,"Date":"5/20/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":120,"Cost":109,"Date":"9/8/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":550,"Cost":371,"Date":"11/1/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":726,"Cost":475,"Date":"3/27/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":344,"Cost":223,"Date":"9/17/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":53,"Cost":28,"Date":"3/16/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":242,"Cost":228,"Date":"7/25/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":651,"Cost":558,"Date":"11/23/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":931,"Cost":582,"Date":"4/19/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":788,"Cost":430,"Date":"9/29/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":894,"Cost":529,"Date":"12/20/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":265,"Cost":174,"Date":"4/2/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":494,"Cost":358,"Date":"7/8/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":982,"Cost":912,"Date":"9/1/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":81,"Cost":67,"Date":"2/2/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":950,"Cost":712,"Date":"8/12/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":722,"Cost":589,"Date":"1/14/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":251,"Cost":225,"Date":"5/18/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":227,"Cost":114,"Date":"7/12/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":867,"Cost":736,"Date":"12/17/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":290,"Cost":164,"Date":"4/1/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":565,"Cost":316,"Date":"8/28/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":56,"Cost":30,"Date":"10/17/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":767,"Cost":556,"Date":"2/25/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":714,"Cost":483,"Date":"5/26/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":693,"Cost":449,"Date":"2/9/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":704,"Cost":495,"Date":"6/25/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":347,"Cost":244,"Date":"10/15/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":184,"Cost":122,"Date":"2/4/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":448,"Cost":343,"Date":"8/8/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":819,"Cost":713,"Date":"12/7/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":769,"Cost":613,"Date":"2/22/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":250,"Cost":149,"Date":"6/20/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":928,"Cost":677,"Date":"8/22/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":151,"Cost":119,"Date":"12/26/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":565,"Cost":518,"Date":"5/21/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":987,"Cost":936,"Date":"11/15/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":82,"Cost":51,"Date":"4/28/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":441,"Cost":263,"Date":"6/24/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":339,"Cost":211,"Date":"10/4/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":605,"Cost":523,"Date":"3/17/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":635,"Cost":591,"Date":"6/16/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":914,"Cost":548,"Date":"9/25/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":839,"Cost":572,"Date":"1/14/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":202,"Cost":111,"Date":"5/9/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":824,"Cost":457,"Date":"11/16/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":91,"Cost":67,"Date":"6/2/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":384,"Cost":236,"Date":"9/19/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":973,"Cost":818,"Date":"1/15/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":154,"Cost":97,"Date":"6/26/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":404,"Cost":372,"Date":"11/7/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":722,"Cost":496,"Date":"2/16/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":805,"Cost":623,"Date":"4/19/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":637,"Cost":449,"Date":"8/1/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":173,"Cost":117,"Date":"11/26/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":794,"Cost":589,"Date":"3/1/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":525,"Cost":375,"Date":"9/5/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":372,"Cost":222,"Date":"3/27/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":932,"Cost":520,"Date":"6/7/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":898,"Cost":835,"Date":"9/2/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":650,"Cost":486,"Date":"3/9/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":831,"Cost":610,"Date":"6/2/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":921,"Cost":687,"Date":"9/13/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":984,"Cost":514,"Date":"11/15/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":721,"Cost":583,"Date":"4/5/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":20,"Cost":10,"Date":"10/6/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":640,"Cost":552,"Date":"3/18/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":205,"Cost":123,"Date":"8/4/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":167,"Cost":129,"Date":"11/30/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":221,"Cost":127,"Date":"5/3/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":689,"Cost":419,"Date":"10/12/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":415,"Cost":335,"Date":"12/21/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":191,"Cost":121,"Date":"4/3/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":705,"Cost":353,"Date":"7/9/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":422,"Cost":267,"Date":"9/17/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":442,"Cost":331,"Date":"2/8/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":859,"Cost":530,"Date":"8/21/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":658,"Cost":421,"Date":"1/19/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":169,"Cost":116,"Date":"6/2/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":764,"Cost":435,"Date":"8/14/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":931,"Cost":553,"Date":"2/10/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":595,"Cost":535,"Date":"5/7/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":688,"Cost":521,"Date":"8/29/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":327,"Cost":187,"Date":"10/28/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":168,"Cost":128,"Date":"3/7/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":249,"Cost":222,"Date":"5/31/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":682,"Cost":421,"Date":"2/11/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":700,"Cost":554,"Date":"7/19/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":809,"Cost":514,"Date":"10/30/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":24,"Cost":22,"Date":"3/9/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":454,"Cost":368,"Date":"8/26/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":710,"Cost":660,"Date":"12/18/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":354,"Cost":285,"Date":"2/25/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":658,"Cost":423,"Date":"7/1/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":303,"Cost":212,"Date":"8/31/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":936,"Cost":759,"Date":"12/31/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":286,"Cost":148,"Date":"7/21/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":684,"Cost":362,"Date":"12/8/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":79,"Cost":56,"Date":"5/15/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":926,"Cost":861,"Date":"7/4/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":344,"Cost":245,"Date":"11/1/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":484,"Cost":317,"Date":"3/17/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":576,"Cost":435,"Date":"7/10/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":833,"Cost":449,"Date":"10/4/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":207,"Cost":185,"Date":"1/20/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":874,"Cost":555,"Date":"5/15/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":643,"Cost":525,"Date":"11/18/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":762,"Cost":693,"Date":"6/10/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":703,"Cost":436,"Date":"9/29/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":527,"Cost":427,"Date":"1/24/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":27,"Cost":17,"Date":"7/4/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":164,"Cost":146,"Date":"12/1/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":433,"Cost":411,"Date":"2/16/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":700,"Cost":407,"Date":"5/17/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":424,"Cost":346,"Date":"8/6/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":365,"Cost":230,"Date":"11/27/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":751,"Cost":494,"Date":"3/19/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":427,"Cost":273,"Date":"10/6/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":783,"Cost":620,"Date":"4/20/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":37,"Cost":27,"Date":"6/14/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":527,"Cost":422,"Date":"9/3/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":784,"Cost":734,"Date":"3/9/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":949,"Cost":633,"Date":"6/11/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":143,"Cost":114,"Date":"9/14/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":259,"Cost":169,"Date":"11/25/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":537,"Cost":498,"Date":"4/14/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":819,"Cost":651,"Date":"10/8/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":507,"Cost":264,"Date":"3/20/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":185,"Cost":115,"Date":"9/2/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":978,"Cost":762,"Date":"12/8/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":135,"Cost":100,"Date":"5/4/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":69,"Cost":43,"Date":"11/2/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":650,"Cost":409,"Date":"1/9/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":508,"Cost":303,"Date":"4/9/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":181,"Cost":157,"Date":"7/14/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":262,"Cost":166,"Date":"9/29/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":843,"Cost":532,"Date":"2/27/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":534,"Cost":282,"Date":"8/23/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":646,"Cost":563,"Date":"1/28/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":679,"Cost":362,"Date":"6/3/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":782,"Cost":562,"Date":"8/16/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":476,"Cost":430,"Date":"2/28/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":356,"Cost":315,"Date":"5/10/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":316,"Cost":283,"Date":"8/31/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":106,"Cost":64,"Date":"10/30/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":197,"Cost":168,"Date":"3/14/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":670,"Cost":426,"Date":"7/27/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":336,"Cost":294,"Date":"3/10/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":342,"Cost":211,"Date":"7/21/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":497,"Cost":335,"Date":"11/9/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":162,"Cost":105,"Date":"3/12/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":803,"Cost":454,"Date":"9/2/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":473,"Cost":376,"Date":"12/20/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":713,"Cost":376,"Date":"3/8/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":563,"Cost":323,"Date":"7/4/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":144,"Cost":72,"Date":"9/1/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":500,"Cost":434,"Date":"1/20/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":571,"Cost":312,"Date":"8/5/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":485,"Cost":406,"Date":"1/8/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":341,"Cost":254,"Date":"5/16/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":51,"Cost":30,"Date":"7/9/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":306,"Cost":246,"Date":"11/2/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":511,"Cost":427,"Date":"3/23/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":944,"Cost":521,"Date":"7/11/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":725,"Cost":659,"Date":"10/10/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":991,"Cost":920,"Date":"2/8/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":260,"Cost":138,"Date":"5/25/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":64,"Cost":42,"Date":"12/1/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":524,"Cost":461,"Date":"6/16/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":859,"Cost":445,"Date":"10/2/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":675,"Cost":362,"Date":"2/3/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":256,"Cost":149,"Date":"7/13/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":821,"Cost":733,"Date":"12/4/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":884,"Cost":478,"Date":"2/18/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":568,"Cost":320,"Date":"5/22/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":610,"Cost":362,"Date":"8/7/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":136,"Cost":89,"Date":"12/5/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":35,"Cost":31,"Date":"3/28/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":36,"Cost":18,"Date":"10/19/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":273,"Cost":167,"Date":"4/24/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":821,"Cost":622,"Date":"6/20/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":278,"Cost":182,"Date":"9/16/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":222,"Cost":119,"Date":"3/11/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":891,"Cost":550,"Date":"6/16/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":528,"Cost":322,"Date":"9/19/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":669,"Cost":490,"Date":"1/10/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":819,"Cost":709,"Date":"5/3/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":357,"Cost":310,"Date":"10/26/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":507,"Cost":474,"Date":"3/26/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":28,"Cost":22,"Date":"9/4/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":831,"Cost":774,"Date":"12/11/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":617,"Cost":394,"Date":"6/8/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":900,"Cost":654,"Date":"11/4/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":927,"Cost":844,"Date":"2/5/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":994,"Cost":782,"Date":"4/10/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":947,"Cost":500,"Date":"7/19/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":363,"Cost":308,"Date":"11/7/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":917,"Cost":519,"Date":"3/1/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":101,"Cost":93,"Date":"9/3/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":425,"Cost":364,"Date":"1/31/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":48,"Cost":41,"Date":"6/5/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":492,"Cost":375,"Date":"8/23/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":117,"Cost":108,"Date":"3/4/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":926,"Cost":624,"Date":"5/20/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":18,"Cost":17,"Date":"9/8/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":969,"Cost":733,"Date":"11/1/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":40,"Cost":27,"Date":"3/27/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":235,"Cost":149,"Date":"9/17/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":638,"Cost":594,"Date":"3/16/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":539,"Cost":286,"Date":"7/25/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":797,"Cost":675,"Date":"11/23/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":822,"Cost":547,"Date":"4/19/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":129,"Cost":119,"Date":"9/29/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":343,"Cost":232,"Date":"12/20/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":14,"Cost":10,"Date":"4/2/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":159,"Cost":87,"Date":"7/8/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":672,"Cost":616,"Date":"9/1/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":990,"Cost":508,"Date":"2/2/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":447,"Cost":411,"Date":"8/12/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":984,"Cost":753,"Date":"1/14/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":73,"Cost":54,"Date":"5/18/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":142,"Cost":106,"Date":"7/12/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":565,"Cost":474,"Date":"12/17/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":451,"Cost":311,"Date":"4/1/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":319,"Cost":238,"Date":"8/28/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":139,"Cost":116,"Date":"10/17/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":928,"Cost":695,"Date":"2/25/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":918,"Cost":764,"Date":"5/26/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":286,"Cost":271,"Date":"2/9/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":727,"Cost":470,"Date":"6/25/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":447,"Cost":280,"Date":"10/15/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":650,"Cost":409,"Date":"2/4/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":12,"Cost":9,"Date":"8/8/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":861,"Cost":499,"Date":"12/7/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":883,"Cost":485,"Date":"2/22/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":739,"Cost":447,"Date":"6/20/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":650,"Cost":433,"Date":"8/22/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":113,"Cost":104,"Date":"12/26/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":670,"Cost":354,"Date":"5/21/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":414,"Cost":324,"Date":"11/15/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":972,"Cost":545,"Date":"4/28/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":247,"Cost":235,"Date":"6/24/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":654,"Cost":390,"Date":"10/4/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":535,"Cost":422,"Date":"3/17/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":352,"Cost":219,"Date":"6/16/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":803,"Cost":712,"Date":"9/25/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":163,"Cost":154,"Date":"1/14/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":759,"Cost":440,"Date":"5/9/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":985,"Cost":817,"Date":"11/16/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":24,"Cost":13,"Date":"6/2/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":650,"Cost":428,"Date":"9/19/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":945,"Cost":489,"Date":"1/15/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":596,"Cost":497,"Date":"6/26/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":856,"Cost":467,"Date":"11/7/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":134,"Cost":86,"Date":"2/16/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":426,"Cost":315,"Date":"4/19/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":982,"Cost":746,"Date":"8/1/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":611,"Cost":542,"Date":"11/26/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":158,"Cost":84,"Date":"3/1/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":281,"Cost":165,"Date":"9/5/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":419,"Cost":224,"Date":"3/27/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":862,"Cost":656,"Date":"6/7/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":986,"Cost":934,"Date":"9/2/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":942,"Cost":624,"Date":"3/9/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":158,"Cost":130,"Date":"6/2/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":83,"Cost":52,"Date":"9/13/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":952,"Cost":782,"Date":"11/15/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":20,"Cost":16,"Date":"4/5/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":404,"Cost":300,"Date":"10/6/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":120,"Cost":95,"Date":"3/18/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":144,"Cost":124,"Date":"8/4/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":735,"Cost":435,"Date":"11/30/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":800,"Cost":626,"Date":"5/3/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":56,"Cost":50,"Date":"10/12/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":841,"Cost":630,"Date":"12/21/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":590,"Cost":541,"Date":"4/3/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":45,"Cost":36,"Date":"7/9/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":824,"Cost":583,"Date":"9/17/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":506,"Cost":436,"Date":"2/8/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":667,"Cost":527,"Date":"8/21/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":35,"Cost":19,"Date":"1/19/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":105,"Cost":68,"Date":"6/2/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":999,"Cost":600,"Date":"8/14/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":512,"Cost":329,"Date":"2/10/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":495,"Cost":373,"Date":"5/7/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":935,"Cost":793,"Date":"8/29/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":326,"Cost":180,"Date":"10/28/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":783,"Cost":584,"Date":"3/7/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":134,"Cost":88,"Date":"5/31/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":902,"Cost":727,"Date":"2/11/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":492,"Cost":464,"Date":"7/19/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":771,"Cost":540,"Date":"10/30/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":270,"Cost":209,"Date":"3/9/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":104,"Cost":66,"Date":"8/26/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":2,"Cost":2,"Date":"12/18/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":939,"Cost":610,"Date":"2/25/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":9,"Cost":8,"Date":"7/1/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":148,"Cost":139,"Date":"8/31/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":935,"Cost":724,"Date":"12/31/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":785,"Cost":724,"Date":"7/21/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":48,"Cost":29,"Date":"12/8/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":615,"Cost":371,"Date":"5/15/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":399,"Cost":289,"Date":"7/4/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":794,"Cost":431,"Date":"11/1/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":250,"Cost":221,"Date":"3/17/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":336,"Cost":248,"Date":"7/10/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":231,"Cost":142,"Date":"10/4/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":728,"Cost":479,"Date":"1/20/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":258,"Cost":172,"Date":"5/15/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":811,"Cost":582,"Date":"11/18/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":320,"Cost":223,"Date":"6/10/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":768,"Cost":614,"Date":"9/29/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":921,"Cost":493,"Date":"1/24/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":515,"Cost":329,"Date":"7/4/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":120,"Cost":89,"Date":"12/1/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":993,"Cost":908,"Date":"2/16/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":784,"Cost":440,"Date":"5/17/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":612,"Cost":573,"Date":"8/6/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":68,"Cost":49,"Date":"11/27/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":445,"Cost":263,"Date":"3/19/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":210,"Cost":146,"Date":"10/6/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":729,"Cost":513,"Date":"4/20/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":142,"Cost":99,"Date":"6/14/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":133,"Cost":77,"Date":"9/3/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":71,"Cost":54,"Date":"3/9/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":29,"Cost":22,"Date":"6/11/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":705,"Cost":451,"Date":"9/14/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":393,"Cost":223,"Date":"11/25/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":128,"Cost":118,"Date":"4/14/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":382,"Cost":211,"Date":"10/8/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":391,"Cost":324,"Date":"3/20/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":327,"Cost":284,"Date":"9/2/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":938,"Cost":833,"Date":"12/8/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":983,"Cost":927,"Date":"5/4/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":39,"Cost":37,"Date":"11/2/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":68,"Cost":43,"Date":"1/9/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":23,"Cost":19,"Date":"4/9/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":685,"Cost":364,"Date":"7/14/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":392,"Cost":229,"Date":"9/29/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":13,"Cost":11,"Date":"2/27/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":690,"Cost":625,"Date":"8/23/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":787,"Cost":517,"Date":"1/28/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":364,"Cost":294,"Date":"6/3/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":390,"Cost":267,"Date":"8/16/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":388,"Cost":227,"Date":"2/28/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":129,"Cost":79,"Date":"5/10/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":281,"Cost":152,"Date":"8/31/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":330,"Cost":230,"Date":"10/30/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":234,"Cost":170,"Date":"3/14/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":260,"Cost":180,"Date":"7/27/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":696,"Cost":590,"Date":"3/10/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":517,"Cost":378,"Date":"7/21/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":335,"Cost":255,"Date":"11/9/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":404,"Cost":246,"Date":"3/12/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":759,"Cost":646,"Date":"9/2/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":228,"Cost":173,"Date":"12/20/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":382,"Cost":359,"Date":"3/8/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":728,"Cost":637,"Date":"7/4/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":788,"Cost":557,"Date":"9/1/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":44,"Cost":39,"Date":"1/20/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":188,"Cost":113,"Date":"8/5/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":738,"Cost":541,"Date":"1/8/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":615,"Cost":378,"Date":"5/16/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":234,"Cost":124,"Date":"7/9/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":931,"Cost":833,"Date":"11/2/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":926,"Cost":627,"Date":"3/23/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":93,"Cost":74,"Date":"7/11/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":519,"Cost":276,"Date":"10/10/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":691,"Cost":646,"Date":"2/8/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":114,"Cost":108,"Date":"5/25/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":615,"Cost":560,"Date":"12/1/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":788,"Cost":534,"Date":"6/16/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":517,"Cost":304,"Date":"10/2/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":557,"Cost":386,"Date":"2/3/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":936,"Cost":565,"Date":"7/13/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":208,"Cost":177,"Date":"12/4/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":513,"Cost":349,"Date":"2/18/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":493,"Cost":385,"Date":"5/22/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":335,"Cost":214,"Date":"8/7/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":876,"Cost":750,"Date":"12/5/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":664,"Cost":607,"Date":"3/28/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":698,"Cost":358,"Date":"10/19/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":726,"Cost":496,"Date":"4/24/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":330,"Cost":181,"Date":"6/20/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":640,"Cost":503,"Date":"9/16/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":56,"Cost":30,"Date":"3/11/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":932,"Cost":786,"Date":"6/16/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":546,"Cost":329,"Date":"9/19/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":954,"Cost":653,"Date":"1/10/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":854,"Cost":556,"Date":"5/3/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":953,"Cost":798,"Date":"10/26/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":295,"Cost":249,"Date":"3/26/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":632,"Cost":579,"Date":"9/4/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":627,"Cost":416,"Date":"12/11/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":111,"Cost":56,"Date":"6/8/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":621,"Cost":516,"Date":"11/4/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":487,"Cost":406,"Date":"2/5/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":316,"Cost":295,"Date":"4/10/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":448,"Cost":252,"Date":"7/19/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":566,"Cost":419,"Date":"11/7/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":570,"Cost":285,"Date":"3/1/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":356,"Cost":312,"Date":"9/3/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":340,"Cost":323,"Date":"1/31/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":51,"Cost":45,"Date":"6/5/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":212,"Cost":143,"Date":"8/23/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":706,"Cost":354,"Date":"3/4/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":742,"Cost":529,"Date":"5/20/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":254,"Cost":210,"Date":"9/8/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":710,"Cost":396,"Date":"11/1/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":896,"Cost":822,"Date":"3/27/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":597,"Cost":481,"Date":"9/17/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":120,"Cost":106,"Date":"3/16/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":404,"Cost":253,"Date":"7/25/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":907,"Cost":733,"Date":"11/23/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":119,"Cost":72,"Date":"4/19/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":943,"Cost":667,"Date":"9/29/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":298,"Cost":181,"Date":"12/20/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":259,"Cost":241,"Date":"4/2/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":480,"Cost":336,"Date":"7/8/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":314,"Cost":204,"Date":"9/1/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":261,"Cost":218,"Date":"2/2/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":646,"Cost":376,"Date":"8/12/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":386,"Cost":283,"Date":"1/14/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":777,"Cost":723,"Date":"5/18/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":996,"Cost":623,"Date":"7/12/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":890,"Cost":454,"Date":"12/17/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":591,"Cost":532,"Date":"4/1/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":551,"Cost":334,"Date":"8/28/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":737,"Cost":438,"Date":"10/17/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":328,"Cost":268,"Date":"2/25/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":475,"Cost":239,"Date":"5/26/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":273,"Cost":156,"Date":"2/9/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":529,"Cost":282,"Date":"6/25/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":169,"Cost":115,"Date":"10/15/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":840,"Cost":425,"Date":"2/4/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":951,"Cost":876,"Date":"8/8/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":235,"Cost":210,"Date":"12/7/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":498,"Cost":314,"Date":"2/22/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":156,"Cost":144,"Date":"6/20/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":667,"Cost":364,"Date":"8/22/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":799,"Cost":738,"Date":"12/26/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":741,"Cost":445,"Date":"5/21/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":950,"Cost":672,"Date":"11/15/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":182,"Cost":110,"Date":"4/28/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":263,"Cost":145,"Date":"6/24/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":284,"Cost":191,"Date":"10/4/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":454,"Cost":325,"Date":"3/17/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":397,"Cost":315,"Date":"6/16/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":286,"Cost":262,"Date":"9/25/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":895,"Cost":541,"Date":"1/14/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":317,"Cost":220,"Date":"5/9/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":922,"Cost":724,"Date":"11/16/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":165,"Cost":87,"Date":"6/2/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":754,"Cost":594,"Date":"9/19/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":144,"Cost":126,"Date":"1/15/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":331,"Cost":277,"Date":"6/26/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":779,"Cost":563,"Date":"11/7/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":123,"Cost":111,"Date":"2/16/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":568,"Cost":320,"Date":"4/19/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":253,"Cost":207,"Date":"8/1/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":762,"Cost":657,"Date":"11/26/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":734,"Cost":383,"Date":"3/1/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":515,"Cost":422,"Date":"9/5/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":517,"Cost":306,"Date":"3/27/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":502,"Cost":286,"Date":"6/7/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":105,"Cost":74,"Date":"9/2/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":183,"Cost":146,"Date":"3/9/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":102,"Cost":78,"Date":"6/2/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":528,"Cost":292,"Date":"9/13/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":620,"Cost":412,"Date":"11/15/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":147,"Cost":77,"Date":"4/5/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":639,"Cost":435,"Date":"10/6/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":735,"Cost":636,"Date":"3/18/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":771,"Cost":701,"Date":"8/4/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":999,"Cost":576,"Date":"11/30/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":667,"Cost":463,"Date":"5/3/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":465,"Cost":438,"Date":"10/12/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":882,"Cost":688,"Date":"12/21/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":136,"Cost":85,"Date":"4/3/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":814,"Cost":620,"Date":"7/9/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":791,"Cost":704,"Date":"9/17/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":95,"Cost":81,"Date":"2/8/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":876,"Cost":677,"Date":"8/21/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":889,"Cost":464,"Date":"1/19/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":706,"Cost":406,"Date":"6/2/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":43,"Cost":22,"Date":"8/14/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":149,"Cost":121,"Date":"2/10/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":300,"Cost":196,"Date":"5/7/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":690,"Cost":452,"Date":"8/29/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":754,"Cost":528,"Date":"10/28/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":893,"Cost":789,"Date":"3/7/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":959,"Cost":626,"Date":"5/31/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":453,"Cost":274,"Date":"2/11/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":936,"Cost":876,"Date":"7/19/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":596,"Cost":541,"Date":"10/30/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":556,"Cost":308,"Date":"3/9/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":689,"Cost":598,"Date":"8/26/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":155,"Cost":107,"Date":"12/18/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":444,"Cost":396,"Date":"2/25/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":93,"Cost":47,"Date":"7/1/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":975,"Cost":620,"Date":"8/31/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":919,"Cost":756,"Date":"12/31/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":622,"Cost":588,"Date":"7/21/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":863,"Cost":498,"Date":"12/8/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":143,"Cost":119,"Date":"5/15/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":592,"Cost":370,"Date":"7/4/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":321,"Cost":255,"Date":"11/1/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":953,"Cost":483,"Date":"3/17/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":341,"Cost":195,"Date":"7/10/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":67,"Cost":58,"Date":"10/4/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":292,"Cost":235,"Date":"1/20/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":475,"Cost":417,"Date":"5/15/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":183,"Cost":146,"Date":"11/18/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":997,"Cost":896,"Date":"6/10/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":548,"Cost":317,"Date":"9/29/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":84,"Cost":64,"Date":"1/24/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":819,"Cost":528,"Date":"7/4/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":183,"Cost":102,"Date":"12/1/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":625,"Cost":455,"Date":"2/16/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":374,"Cost":276,"Date":"5/17/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":268,"Cost":207,"Date":"8/6/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":855,"Cost":685,"Date":"11/27/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":247,"Cost":196,"Date":"3/19/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":647,"Cost":409,"Date":"10/6/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":746,"Cost":415,"Date":"4/20/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":103,"Cost":52,"Date":"6/14/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":862,"Cost":557,"Date":"9/3/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":680,"Cost":385,"Date":"3/9/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":182,"Cost":96,"Date":"6/11/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":397,"Cost":292,"Date":"9/14/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":760,"Cost":447,"Date":"11/25/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":967,"Cost":523,"Date":"4/14/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":456,"Cost":347,"Date":"10/8/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":335,"Cost":272,"Date":"3/20/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":59,"Cost":51,"Date":"9/2/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":456,"Cost":255,"Date":"12/8/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":44,"Cost":40,"Date":"5/4/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":592,"Cost":381,"Date":"11/2/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":267,"Cost":198,"Date":"1/9/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":710,"Cost":647,"Date":"4/9/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":261,"Cost":207,"Date":"7/14/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":527,"Cost":284,"Date":"9/29/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":944,"Cost":870,"Date":"2/27/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":520,"Cost":413,"Date":"8/23/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":289,"Cost":222,"Date":"1/28/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":251,"Cost":229,"Date":"6/3/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":995,"Cost":548,"Date":"8/16/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":685,"Cost":354,"Date":"2/28/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":310,"Cost":188,"Date":"5/10/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":541,"Cost":438,"Date":"8/31/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":846,"Cost":430,"Date":"10/30/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":30,"Cost":24,"Date":"3/14/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":585,"Cost":338,"Date":"7/27/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":270,"Cost":172,"Date":"3/10/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":958,"Cost":560,"Date":"7/21/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":643,"Cost":527,"Date":"11/9/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":83,"Cost":76,"Date":"3/12/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":497,"Cost":369,"Date":"9/2/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":364,"Cost":200,"Date":"12/20/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":595,"Cost":381,"Date":"3/8/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":530,"Cost":433,"Date":"7/4/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":83,"Cost":51,"Date":"9/1/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":832,"Cost":590,"Date":"1/20/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":348,"Cost":188,"Date":"8/5/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":352,"Cost":296,"Date":"1/8/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":353,"Cost":222,"Date":"5/16/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":787,"Cost":550,"Date":"7/9/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":652,"Cost":603,"Date":"11/2/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":734,"Cost":600,"Date":"3/23/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":160,"Cost":95,"Date":"7/11/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":713,"Cost":625,"Date":"10/10/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":632,"Cost":378,"Date":"2/8/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":318,"Cost":284,"Date":"5/25/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":48,"Cost":24,"Date":"12/1/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":972,"Cost":748,"Date":"6/16/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":275,"Cost":246,"Date":"10/2/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":222,"Cost":149,"Date":"2/3/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":971,"Cost":778,"Date":"7/13/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":653,"Cost":552,"Date":"12/4/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":200,"Cost":133,"Date":"2/18/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":456,"Cost":382,"Date":"5/22/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":810,"Cost":573,"Date":"8/7/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":31,"Cost":18,"Date":"12/5/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":326,"Cost":260,"Date":"3/28/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":290,"Cost":261,"Date":"10/19/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":794,"Cost":476,"Date":"4/24/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":383,"Cost":263,"Date":"6/20/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":649,"Cost":384,"Date":"9/16/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":231,"Cost":155,"Date":"3/11/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":729,"Cost":366,"Date":"6/16/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":123,"Cost":84,"Date":"9/19/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":749,"Cost":526,"Date":"1/10/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":14,"Cost":12,"Date":"5/3/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":342,"Cost":205,"Date":"10/26/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":747,"Cost":387,"Date":"3/26/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":760,"Cost":527,"Date":"9/4/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":497,"Cost":415,"Date":"12/11/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":194,"Cost":165,"Date":"6/8/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":408,"Cost":261,"Date":"11/4/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":585,"Cost":484,"Date":"2/5/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":864,"Cost":641,"Date":"4/10/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":58,"Cost":46,"Date":"7/19/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":117,"Cost":65,"Date":"11/7/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":50,"Cost":41,"Date":"3/1/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":590,"Cost":506,"Date":"9/3/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":552,"Cost":281,"Date":"1/31/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":853,"Cost":624,"Date":"6/5/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":143,"Cost":130,"Date":"8/23/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":242,"Cost":222,"Date":"3/4/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":578,"Cost":432,"Date":"5/20/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":268,"Cost":161,"Date":"9/8/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":867,"Cost":794,"Date":"11/1/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":659,"Cost":370,"Date":"3/27/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":526,"Cost":450,"Date":"9/17/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":955,"Cost":816,"Date":"3/16/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":299,"Cost":170,"Date":"7/25/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":451,"Cost":357,"Date":"11/23/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":269,"Cost":169,"Date":"4/19/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":978,"Cost":511,"Date":"9/29/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":600,"Cost":564,"Date":"12/20/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":938,"Cost":634,"Date":"4/2/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":624,"Cost":426,"Date":"7/8/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":368,"Cost":275,"Date":"9/1/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":624,"Cost":362,"Date":"2/2/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":694,"Cost":588,"Date":"8/12/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":109,"Cost":63,"Date":"1/14/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":190,"Cost":167,"Date":"5/18/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":831,"Cost":690,"Date":"7/12/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":389,"Cost":317,"Date":"12/17/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":299,"Cost":280,"Date":"4/1/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":743,"Cost":413,"Date":"8/28/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":869,"Cost":656,"Date":"10/17/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":289,"Cost":263,"Date":"2/25/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":427,"Cost":256,"Date":"5/26/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":349,"Cost":226,"Date":"2/9/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":544,"Cost":493,"Date":"6/25/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":944,"Cost":727,"Date":"10/15/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":661,"Cost":589,"Date":"2/4/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":832,"Cost":627,"Date":"8/8/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":484,"Cost":382,"Date":"12/7/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":514,"Cost":272,"Date":"2/22/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":144,"Cost":82,"Date":"6/20/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":22,"Cost":12,"Date":"8/22/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":461,"Cost":257,"Date":"12/26/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":191,"Cost":167,"Date":"5/21/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":119,"Cost":102,"Date":"11/15/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":966,"Cost":668,"Date":"4/28/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":959,"Cost":598,"Date":"6/24/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":313,"Cost":258,"Date":"10/4/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":795,"Cost":495,"Date":"3/17/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":219,"Cost":137,"Date":"6/16/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":530,"Cost":361,"Date":"9/25/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":525,"Cost":281,"Date":"1/14/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":177,"Cost":151,"Date":"5/9/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":812,"Cost":713,"Date":"11/16/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":335,"Cost":283,"Date":"6/2/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":337,"Cost":258,"Date":"9/19/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":879,"Cost":469,"Date":"1/15/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":466,"Cost":429,"Date":"6/26/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":1,"Cost":1,"Date":"11/7/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":129,"Cost":79,"Date":"2/16/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":23,"Cost":12,"Date":"4/19/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":626,"Cost":475,"Date":"8/1/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":596,"Cost":342,"Date":"11/26/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":338,"Cost":301,"Date":"3/1/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":830,"Cost":764,"Date":"9/5/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":163,"Cost":95,"Date":"3/27/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":480,"Cost":389,"Date":"6/7/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":694,"Cost":383,"Date":"9/2/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":62,"Cost":38,"Date":"3/9/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":896,"Cost":518,"Date":"6/2/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":477,"Cost":391,"Date":"9/13/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":67,"Cost":63,"Date":"11/15/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":243,"Cost":140,"Date":"4/5/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":18,"Cost":15,"Date":"10/6/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":108,"Cost":80,"Date":"3/18/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":948,"Cost":723,"Date":"8/4/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":412,"Cost":271,"Date":"11/30/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":622,"Cost":571,"Date":"5/3/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":703,"Cost":490,"Date":"10/12/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":839,"Cost":758,"Date":"12/21/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":151,"Cost":107,"Date":"4/3/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":89,"Cost":48,"Date":"7/9/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":47,"Cost":34,"Date":"9/17/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":500,"Cost":329,"Date":"2/8/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":955,"Cost":863,"Date":"8/21/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":163,"Cost":152,"Date":"1/19/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":677,"Cost":634,"Date":"6/2/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":308,"Cost":219,"Date":"8/14/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":521,"Cost":372,"Date":"2/10/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":734,"Cost":436,"Date":"5/7/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":69,"Cost":65,"Date":"8/29/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":845,"Cost":770,"Date":"10/28/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":979,"Cost":823,"Date":"3/7/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":1000,"Cost":680,"Date":"5/31/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":768,"Cost":504,"Date":"2/11/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":558,"Cost":366,"Date":"7/19/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":340,"Cost":249,"Date":"10/30/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":812,"Cost":450,"Date":"3/9/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":183,"Cost":155,"Date":"8/26/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":718,"Cost":631,"Date":"12/18/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":921,"Cost":486,"Date":"2/25/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":968,"Cost":569,"Date":"7/1/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":740,"Cost":696,"Date":"8/31/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":373,"Cost":197,"Date":"12/31/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":64,"Cost":39,"Date":"7/21/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":720,"Cost":404,"Date":"12/8/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":212,"Cost":150,"Date":"5/15/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":548,"Cost":285,"Date":"7/4/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":378,"Cost":231,"Date":"11/1/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":548,"Cost":452,"Date":"3/17/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":247,"Cost":168,"Date":"7/10/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":944,"Cost":713,"Date":"10/4/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":870,"Cost":659,"Date":"1/20/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":792,"Cost":446,"Date":"5/15/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":641,"Cost":509,"Date":"11/18/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":824,"Cost":454,"Date":"6/10/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":914,"Cost":680,"Date":"9/29/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":678,"Cost":450,"Date":"1/24/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":942,"Cost":563,"Date":"7/4/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":862,"Cost":733,"Date":"12/1/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":346,"Cost":274,"Date":"2/16/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":712,"Cost":442,"Date":"5/17/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":46,"Cost":27,"Date":"8/6/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":128,"Cost":104,"Date":"11/27/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":686,"Cost":449,"Date":"3/19/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":541,"Cost":472,"Date":"10/6/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":465,"Cost":305,"Date":"4/20/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":569,"Cost":481,"Date":"6/14/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":119,"Cost":103,"Date":"9/3/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":204,"Cost":109,"Date":"3/9/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":205,"Cost":145,"Date":"6/11/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":616,"Cost":324,"Date":"9/14/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":449,"Cost":381,"Date":"11/25/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":848,"Cost":484,"Date":"4/14/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":363,"Cost":226,"Date":"10/8/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":120,"Cost":92,"Date":"3/20/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":472,"Cost":334,"Date":"9/2/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":322,"Cost":302,"Date":"12/8/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":140,"Cost":132,"Date":"5/4/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":206,"Cost":140,"Date":"11/2/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":79,"Cost":70,"Date":"1/9/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":749,"Cost":435,"Date":"4/9/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":346,"Cost":189,"Date":"7/14/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":205,"Cost":131,"Date":"9/29/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":114,"Cost":79,"Date":"2/27/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":479,"Cost":332,"Date":"8/23/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":571,"Cost":391,"Date":"1/28/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":586,"Cost":516,"Date":"6/3/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":778,"Cost":609,"Date":"8/16/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":884,"Cost":739,"Date":"2/28/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":347,"Cost":300,"Date":"5/10/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":528,"Cost":478,"Date":"8/31/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":514,"Cost":386,"Date":"10/30/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":22,"Cost":19,"Date":"3/14/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":931,"Cost":841,"Date":"7/27/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":16,"Cost":9,"Date":"3/10/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":984,"Cost":886,"Date":"7/21/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":499,"Cost":434,"Date":"11/9/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":652,"Cost":383,"Date":"3/12/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":138,"Cost":130,"Date":"9/2/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":40,"Cost":26,"Date":"12/20/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":885,"Cost":629,"Date":"3/8/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":687,"Cost":560,"Date":"7/4/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":364,"Cost":343,"Date":"9/1/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":150,"Cost":98,"Date":"1/20/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":322,"Cost":199,"Date":"8/5/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":278,"Cost":168,"Date":"1/8/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":657,"Cost":346,"Date":"5/16/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":287,"Cost":245,"Date":"7/9/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":964,"Cost":491,"Date":"11/2/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":348,"Cost":320,"Date":"3/23/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":546,"Cost":312,"Date":"7/11/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":780,"Cost":538,"Date":"10/10/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":210,"Cost":196,"Date":"2/8/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":880,"Cost":506,"Date":"5/25/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":613,"Cost":529,"Date":"12/1/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":950,"Cost":844,"Date":"6/16/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":923,"Cost":657,"Date":"10/2/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":17,"Cost":8,"Date":"2/3/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":645,"Cost":490,"Date":"7/13/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":376,"Cost":354,"Date":"12/4/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":945,"Cost":846,"Date":"2/18/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":939,"Cost":698,"Date":"5/22/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":483,"Cost":243,"Date":"8/7/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":986,"Cost":723,"Date":"12/5/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":831,"Cost":536,"Date":"3/28/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":938,"Cost":492,"Date":"10/19/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":441,"Cost":349,"Date":"4/24/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":816,"Cost":669,"Date":"6/20/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":325,"Cost":261,"Date":"9/16/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":770,"Cost":530,"Date":"3/11/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":679,"Cost":543,"Date":"6/16/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":537,"Cost":340,"Date":"9/19/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":823,"Cost":704,"Date":"1/10/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":179,"Cost":129,"Date":"5/3/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":539,"Cost":295,"Date":"10/26/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":560,"Cost":514,"Date":"3/26/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":617,"Cost":379,"Date":"9/4/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":696,"Cost":505,"Date":"12/11/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":835,"Cost":651,"Date":"6/8/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":642,"Cost":345,"Date":"11/4/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":293,"Cost":275,"Date":"2/5/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":647,"Cost":423,"Date":"4/10/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":898,"Cost":818,"Date":"7/19/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":295,"Cost":148,"Date":"11/7/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":641,"Cost":436,"Date":"3/1/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":793,"Cost":681,"Date":"9/3/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":100,"Cost":78,"Date":"1/31/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":6,"Cost":5,"Date":"6/5/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":959,"Cost":631,"Date":"8/23/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":301,"Cost":207,"Date":"3/4/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":889,"Cost":826,"Date":"5/20/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":191,"Cost":153,"Date":"9/8/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":397,"Cost":314,"Date":"11/1/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":704,"Cost":430,"Date":"3/27/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":301,"Cost":270,"Date":"9/17/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":264,"Cost":195,"Date":"3/16/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":636,"Cost":550,"Date":"7/25/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":617,"Cost":459,"Date":"11/23/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":431,"Cost":305,"Date":"4/19/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":209,"Cost":120,"Date":"9/29/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":981,"Cost":665,"Date":"12/20/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":788,"Cost":440,"Date":"4/2/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":953,"Cost":810,"Date":"7/8/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":673,"Cost":347,"Date":"9/1/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":33,"Cost":29,"Date":"2/2/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":927,"Cost":793,"Date":"8/12/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":805,"Cost":569,"Date":"1/14/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":836,"Cost":470,"Date":"5/18/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":250,"Cost":233,"Date":"7/12/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":158,"Cost":87,"Date":"12/17/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":668,"Cost":538,"Date":"4/1/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":646,"Cost":410,"Date":"8/28/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":840,"Cost":458,"Date":"10/17/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":605,"Cost":417,"Date":"2/25/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":311,"Cost":213,"Date":"5/26/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":218,"Cost":129,"Date":"2/9/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":292,"Cost":210,"Date":"6/25/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":293,"Cost":222,"Date":"10/15/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":605,"Cost":509,"Date":"2/4/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":87,"Cost":63,"Date":"8/8/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":201,"Cost":107,"Date":"12/7/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":855,"Cost":637,"Date":"2/22/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":905,"Cost":622,"Date":"6/20/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":393,"Cost":230,"Date":"8/22/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":793,"Cost":471,"Date":"12/26/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":194,"Cost":101,"Date":"5/21/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":971,"Cost":895,"Date":"11/15/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":319,"Cost":283,"Date":"4/28/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":361,"Cost":219,"Date":"6/24/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":596,"Cost":471,"Date":"10/4/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":778,"Cost":566,"Date":"3/17/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":124,"Cost":85,"Date":"6/16/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":183,"Cost":173,"Date":"9/25/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":816,"Cost":694,"Date":"1/14/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":459,"Cost":295,"Date":"5/9/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":907,"Cost":491,"Date":"11/16/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":382,"Cost":298,"Date":"6/2/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":74,"Cost":60,"Date":"9/19/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":762,"Cost":509,"Date":"1/15/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":35,"Cost":20,"Date":"6/26/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":377,"Cost":292,"Date":"11/7/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":447,"Cost":375,"Date":"2/16/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":112,"Cost":86,"Date":"4/19/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":706,"Cost":377,"Date":"8/1/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":130,"Cost":106,"Date":"11/26/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":934,"Cost":678,"Date":"3/1/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":699,"Cost":617,"Date":"9/5/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":227,"Cost":189,"Date":"3/27/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":644,"Cost":589,"Date":"6/7/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":293,"Cost":249,"Date":"9/2/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":26,"Cost":16,"Date":"3/9/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":46,"Cost":30,"Date":"6/2/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":881,"Cost":819,"Date":"9/13/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":841,"Cost":473,"Date":"11/15/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":414,"Cost":307,"Date":"4/5/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":898,"Cost":518,"Date":"10/6/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":458,"Cost":426,"Date":"3/18/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":783,"Cost":559,"Date":"8/4/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":580,"Cost":524,"Date":"11/30/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":672,"Cost":366,"Date":"5/3/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":199,"Cost":109,"Date":"10/12/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":352,"Cost":269,"Date":"12/21/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":621,"Cost":407,"Date":"4/3/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":337,"Cost":263,"Date":"7/9/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":358,"Cost":275,"Date":"9/17/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":767,"Cost":402,"Date":"2/8/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":916,"Cost":504,"Date":"8/21/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":876,"Cost":640,"Date":"1/19/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":766,"Cost":712,"Date":"6/2/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":202,"Cost":145,"Date":"8/14/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":853,"Cost":773,"Date":"2/10/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":221,"Cost":126,"Date":"5/7/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":891,"Cost":713,"Date":"8/29/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":803,"Cost":583,"Date":"10/28/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":970,"Cost":486,"Date":"3/7/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":837,"Cost":715,"Date":"5/31/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":604,"Cost":361,"Date":"2/11/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":840,"Cost":503,"Date":"7/19/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":105,"Cost":94,"Date":"10/30/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":463,"Cost":411,"Date":"3/9/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":689,"Cost":586,"Date":"8/26/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":62,"Cost":58,"Date":"12/18/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":180,"Cost":123,"Date":"2/25/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":805,"Cost":418,"Date":"7/1/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":944,"Cost":680,"Date":"8/31/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":331,"Cost":314,"Date":"12/31/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":694,"Cost":356,"Date":"7/21/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":61,"Cost":35,"Date":"12/8/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":132,"Cost":82,"Date":"5/15/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":226,"Cost":123,"Date":"7/4/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":240,"Cost":175,"Date":"11/1/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":665,"Cost":556,"Date":"3/17/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":780,"Cost":576,"Date":"7/10/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":481,"Cost":265,"Date":"10/4/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":772,"Cost":523,"Date":"1/20/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":648,"Cost":514,"Date":"5/15/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":975,"Cost":909,"Date":"11/18/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":641,"Cost":367,"Date":"6/10/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":218,"Cost":166,"Date":"9/29/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":672,"Cost":466,"Date":"1/24/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":171,"Cost":129,"Date":"7/4/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":608,"Cost":470,"Date":"12/1/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":249,"Cost":132,"Date":"2/16/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":259,"Cost":146,"Date":"5/17/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":360,"Cost":315,"Date":"8/6/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":81,"Cost":58,"Date":"11/27/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":546,"Cost":492,"Date":"3/19/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":118,"Cost":73,"Date":"10/6/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":571,"Cost":476,"Date":"4/20/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":542,"Cost":429,"Date":"6/14/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":121,"Cost":100,"Date":"9/3/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":521,"Cost":384,"Date":"3/9/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":109,"Cost":63,"Date":"6/11/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":629,"Cost":573,"Date":"9/14/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":424,"Cost":256,"Date":"11/25/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":349,"Cost":285,"Date":"4/14/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":220,"Cost":175,"Date":"10/8/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":14,"Cost":12,"Date":"3/20/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":388,"Cost":227,"Date":"9/2/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":104,"Cost":70,"Date":"12/8/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":320,"Cost":278,"Date":"5/4/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":361,"Cost":207,"Date":"11/2/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":125,"Cost":82,"Date":"1/9/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":515,"Cost":325,"Date":"4/9/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":829,"Cost":499,"Date":"7/14/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":161,"Cost":137,"Date":"9/29/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":687,"Cost":377,"Date":"2/27/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":134,"Cost":108,"Date":"8/23/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":519,"Cost":297,"Date":"1/28/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":333,"Cost":191,"Date":"6/3/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":271,"Cost":181,"Date":"8/16/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":206,"Cost":138,"Date":"2/28/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":340,"Cost":292,"Date":"5/10/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":288,"Cost":272,"Date":"8/31/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":676,"Cost":575,"Date":"10/30/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":264,"Cost":139,"Date":"3/14/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":290,"Cost":204,"Date":"7/27/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":343,"Cost":231,"Date":"3/10/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":465,"Cost":265,"Date":"7/21/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":10,"Cost":8,"Date":"11/9/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":844,"Cost":703,"Date":"3/12/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":306,"Cost":267,"Date":"9/2/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":188,"Cost":153,"Date":"12/20/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":944,"Cost":762,"Date":"3/8/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":166,"Cost":120,"Date":"7/4/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":469,"Cost":317,"Date":"9/1/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":392,"Cost":228,"Date":"1/20/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":591,"Cost":497,"Date":"8/5/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":202,"Cost":123,"Date":"1/8/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":529,"Cost":343,"Date":"5/16/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":400,"Cost":300,"Date":"7/9/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":531,"Cost":284,"Date":"11/2/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":378,"Cost":264,"Date":"3/23/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":104,"Cost":74,"Date":"7/11/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":169,"Cost":145,"Date":"10/10/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":671,"Cost":535,"Date":"2/8/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":633,"Cost":331,"Date":"5/25/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":866,"Cost":567,"Date":"12/1/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":698,"Cost":530,"Date":"6/16/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":664,"Cost":467,"Date":"10/2/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":74,"Cost":69,"Date":"2/3/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":192,"Cost":108,"Date":"7/13/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":782,"Cost":639,"Date":"12/4/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":251,"Cost":142,"Date":"2/18/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":980,"Cost":857,"Date":"5/22/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":136,"Cost":96,"Date":"8/7/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":931,"Cost":600,"Date":"12/5/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":393,"Cost":214,"Date":"3/28/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":178,"Cost":127,"Date":"10/19/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":276,"Cost":166,"Date":"4/24/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":349,"Cost":217,"Date":"6/20/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":216,"Cost":166,"Date":"9/16/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":897,"Cost":502,"Date":"3/11/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":301,"Cost":242,"Date":"6/16/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":556,"Cost":483,"Date":"9/19/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":680,"Cost":456,"Date":"1/10/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":65,"Cost":56,"Date":"5/3/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":988,"Cost":714,"Date":"10/26/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":284,"Cost":249,"Date":"3/26/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":363,"Cost":269,"Date":"9/4/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":367,"Cost":349,"Date":"12/11/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":898,"Cost":698,"Date":"6/8/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":128,"Cost":109,"Date":"11/4/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":18,"Cost":14,"Date":"2/5/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":102,"Cost":95,"Date":"4/10/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":268,"Cost":175,"Date":"7/19/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":368,"Cost":184,"Date":"11/7/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":52,"Cost":30,"Date":"3/1/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":84,"Cost":50,"Date":"9/3/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":403,"Cost":210,"Date":"1/31/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":17,"Cost":10,"Date":"6/5/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":264,"Cost":219,"Date":"8/23/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":394,"Cost":281,"Date":"3/4/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":816,"Cost":413,"Date":"5/20/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":536,"Cost":295,"Date":"9/8/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":676,"Cost":563,"Date":"11/1/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":428,"Cost":333,"Date":"3/27/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":691,"Cost":345,"Date":"9/17/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":497,"Cost":471,"Date":"3/16/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":493,"Cost":311,"Date":"7/25/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":257,"Cost":184,"Date":"11/23/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":587,"Cost":422,"Date":"4/19/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":721,"Cost":544,"Date":"9/29/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":618,"Cost":338,"Date":"12/20/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":943,"Cost":548,"Date":"4/2/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":407,"Cost":337,"Date":"7/8/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":841,"Cost":563,"Date":"9/1/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":931,"Cost":882,"Date":"2/2/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":893,"Cost":738,"Date":"8/12/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":563,"Cost":512,"Date":"1/14/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":218,"Cost":127,"Date":"5/18/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":610,"Cost":416,"Date":"7/12/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":6,"Cost":6,"Date":"12/17/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":665,"Cost":593,"Date":"4/1/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":255,"Cost":131,"Date":"8/28/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":979,"Cost":686,"Date":"10/17/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":671,"Cost":430,"Date":"2/25/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":541,"Cost":417,"Date":"5/26/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":327,"Cost":291,"Date":"2/9/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":521,"Cost":307,"Date":"6/25/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":109,"Cost":101,"Date":"10/15/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":149,"Cost":106,"Date":"2/4/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":609,"Cost":532,"Date":"8/8/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":683,"Cost":380,"Date":"12/7/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":181,"Cost":172,"Date":"2/22/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":994,"Cost":607,"Date":"6/20/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":64,"Cost":41,"Date":"8/22/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":758,"Cost":428,"Date":"12/26/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":239,"Cost":179,"Date":"5/21/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":423,"Cost":250,"Date":"11/15/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":418,"Cost":372,"Date":"4/28/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":979,"Cost":561,"Date":"6/24/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":608,"Cost":511,"Date":"10/4/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":875,"Cost":823,"Date":"3/17/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":99,"Cost":50,"Date":"6/16/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":731,"Cost":695,"Date":"9/25/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":997,"Cost":911,"Date":"1/14/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":527,"Cost":469,"Date":"5/9/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":482,"Cost":358,"Date":"11/16/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":414,"Cost":371,"Date":"6/2/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":80,"Cost":60,"Date":"9/19/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":692,"Cost":398,"Date":"1/15/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":121,"Cost":74,"Date":"6/26/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":639,"Cost":335,"Date":"11/7/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":81,"Cost":42,"Date":"2/16/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":94,"Cost":64,"Date":"4/19/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":616,"Cost":370,"Date":"8/1/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":159,"Cost":89,"Date":"11/26/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":185,"Cost":139,"Date":"3/1/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":29,"Cost":20,"Date":"9/5/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":981,"Cost":683,"Date":"3/27/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":643,"Cost":406,"Date":"6/7/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":395,"Cost":247,"Date":"9/2/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":946,"Cost":761,"Date":"3/9/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":523,"Cost":401,"Date":"6/2/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":28,"Cost":16,"Date":"9/13/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":186,"Cost":175,"Date":"11/15/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":434,"Cost":245,"Date":"4/5/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":862,"Cost":488,"Date":"10/6/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":205,"Cost":143,"Date":"3/18/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":118,"Cost":101,"Date":"8/4/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":423,"Cost":381,"Date":"11/30/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":946,"Cost":672,"Date":"5/3/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":903,"Cost":685,"Date":"10/12/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":597,"Cost":500,"Date":"12/21/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":9,"Cost":7,"Date":"4/3/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":988,"Cost":702,"Date":"7/9/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":539,"Cost":324,"Date":"9/17/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":99,"Cost":77,"Date":"2/8/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":142,"Cost":135,"Date":"8/21/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":40,"Cost":33,"Date":"1/19/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":132,"Cost":77,"Date":"6/2/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":157,"Cost":117,"Date":"8/14/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":334,"Cost":292,"Date":"2/10/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":646,"Cost":482,"Date":"5/7/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":27,"Cost":23,"Date":"8/29/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":163,"Cost":88,"Date":"10/28/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":340,"Cost":263,"Date":"3/7/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":291,"Cost":148,"Date":"5/31/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":982,"Cost":598,"Date":"2/11/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":357,"Cost":212,"Date":"7/19/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":968,"Cost":774,"Date":"10/30/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":973,"Cost":527,"Date":"3/9/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":14,"Cost":10,"Date":"8/26/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":933,"Cost":696,"Date":"12/18/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":583,"Cost":515,"Date":"2/25/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":95,"Cost":75,"Date":"7/1/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":81,"Cost":61,"Date":"8/31/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":327,"Cost":284,"Date":"12/31/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":524,"Cost":293,"Date":"7/21/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":806,"Cost":597,"Date":"12/8/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":44,"Cost":37,"Date":"5/15/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":561,"Cost":283,"Date":"7/4/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":759,"Cost":584,"Date":"11/1/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":341,"Cost":195,"Date":"3/17/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":194,"Cost":173,"Date":"7/10/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":433,"Cost":226,"Date":"10/4/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":50,"Cost":35,"Date":"1/20/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":976,"Cost":788,"Date":"5/15/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":14,"Cost":8,"Date":"11/18/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":662,"Cost":400,"Date":"6/10/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":626,"Cost":433,"Date":"9/29/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":692,"Cost":372,"Date":"1/24/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":895,"Cost":813,"Date":"7/4/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":285,"Cost":191,"Date":"12/1/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":914,"Cost":814,"Date":"2/16/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":889,"Cost":594,"Date":"5/17/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":112,"Cost":69,"Date":"8/6/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":304,"Cost":216,"Date":"11/27/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":479,"Cost":242,"Date":"3/19/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":83,"Cost":47,"Date":"10/6/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":329,"Cost":229,"Date":"4/20/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":254,"Cost":185,"Date":"6/14/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":433,"Cost":360,"Date":"9/3/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":382,"Cost":249,"Date":"3/9/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":150,"Cost":96,"Date":"6/11/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":361,"Cost":219,"Date":"9/14/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":577,"Cost":290,"Date":"11/25/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":46,"Cost":38,"Date":"4/14/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":387,"Cost":223,"Date":"10/8/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":69,"Cost":52,"Date":"3/20/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":140,"Cost":98,"Date":"9/2/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":112,"Cost":56,"Date":"12/8/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":314,"Cost":257,"Date":"5/4/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":76,"Cost":45,"Date":"11/2/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":21,"Cost":20,"Date":"1/9/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":886,"Cost":655,"Date":"4/9/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":849,"Cost":749,"Date":"7/14/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":728,"Cost":528,"Date":"9/29/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":571,"Cost":371,"Date":"2/27/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":583,"Cost":497,"Date":"8/23/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":907,"Cost":770,"Date":"1/28/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":472,"Cost":258,"Date":"6/3/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":840,"Cost":633,"Date":"8/16/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":296,"Cost":169,"Date":"2/28/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":768,"Cost":452,"Date":"5/10/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":608,"Cost":481,"Date":"8/31/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":11,"Cost":8,"Date":"10/30/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":222,"Cost":146,"Date":"3/14/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":386,"Cost":284,"Date":"7/27/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":697,"Cost":456,"Date":"3/10/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":904,"Cost":699,"Date":"7/21/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":115,"Cost":72,"Date":"11/9/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":307,"Cost":211,"Date":"3/12/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":160,"Cost":91,"Date":"9/2/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":65,"Cost":38,"Date":"12/20/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":891,"Cost":450,"Date":"3/8/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":645,"Cost":571,"Date":"7/4/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":186,"Cost":148,"Date":"9/1/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":860,"Cost":753,"Date":"1/20/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":819,"Cost":628,"Date":"8/5/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":565,"Cost":499,"Date":"1/8/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":488,"Cost":284,"Date":"5/16/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":66,"Cost":50,"Date":"7/9/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":530,"Cost":350,"Date":"11/2/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":530,"Cost":478,"Date":"3/23/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":631,"Cost":524,"Date":"7/11/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":916,"Cost":603,"Date":"10/10/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":171,"Cost":125,"Date":"2/8/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":942,"Cost":546,"Date":"5/25/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":216,"Cost":169,"Date":"12/1/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":163,"Cost":109,"Date":"6/16/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":326,"Cost":225,"Date":"10/2/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":408,"Cost":342,"Date":"2/3/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":373,"Cost":311,"Date":"7/13/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":87,"Cost":74,"Date":"12/4/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":889,"Cost":723,"Date":"2/18/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":126,"Cost":80,"Date":"5/22/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":338,"Cost":207,"Date":"8/7/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":197,"Cost":117,"Date":"12/5/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":414,"Cost":383,"Date":"3/28/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":373,"Cost":258,"Date":"10/19/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":65,"Cost":45,"Date":"4/24/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":729,"Cost":487,"Date":"6/20/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":363,"Cost":187,"Date":"9/16/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":352,"Cost":274,"Date":"3/11/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":864,"Cost":717,"Date":"6/16/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":247,"Cost":138,"Date":"9/19/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":296,"Cost":219,"Date":"1/10/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":241,"Cost":191,"Date":"5/3/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":378,"Cost":246,"Date":"10/26/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":480,"Cost":250,"Date":"3/26/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":255,"Cost":166,"Date":"9/4/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":342,"Cost":286,"Date":"12/11/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":892,"Cost":676,"Date":"6/8/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":489,"Cost":289,"Date":"11/4/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":486,"Cost":459,"Date":"2/5/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":41,"Cost":22,"Date":"4/10/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":703,"Cost":499,"Date":"7/19/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":919,"Cost":637,"Date":"11/7/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":248,"Cost":125,"Date":"3/1/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":838,"Cost":749,"Date":"9/3/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":982,"Cost":815,"Date":"1/31/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":677,"Cost":585,"Date":"6/5/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":901,"Cost":470,"Date":"8/23/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":416,"Cost":224,"Date":"3/4/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":703,"Cost":621,"Date":"5/20/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":864,"Cost":528,"Date":"9/8/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":203,"Cost":124,"Date":"11/1/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":444,"Cost":225,"Date":"3/27/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":290,"Cost":162,"Date":"9/17/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":793,"Cost":540,"Date":"3/16/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":800,"Cost":430,"Date":"7/25/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":741,"Cost":685,"Date":"11/23/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":1,"Cost":0,"Date":"4/19/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":621,"Cost":355,"Date":"9/29/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":995,"Cost":811,"Date":"12/20/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":111,"Cost":79,"Date":"4/2/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":997,"Cost":624,"Date":"7/8/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":413,"Cost":387,"Date":"9/1/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":833,"Cost":593,"Date":"2/2/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":380,"Cost":221,"Date":"8/12/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":382,"Cost":249,"Date":"1/14/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":834,"Cost":619,"Date":"5/18/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":7,"Cost":6,"Date":"7/12/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":672,"Cost":382,"Date":"12/17/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":860,"Cost":715,"Date":"4/1/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":714,"Cost":560,"Date":"8/28/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":9,"Cost":6,"Date":"10/17/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":617,"Cost":578,"Date":"2/25/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":962,"Cost":904,"Date":"5/26/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":92,"Cost":53,"Date":"2/9/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":237,"Cost":187,"Date":"6/25/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":389,"Cost":199,"Date":"10/15/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":518,"Cost":479,"Date":"2/4/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":160,"Cost":133,"Date":"8/8/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":940,"Cost":889,"Date":"12/7/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":581,"Cost":322,"Date":"2/22/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":546,"Cost":306,"Date":"6/20/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":936,"Cost":606,"Date":"8/22/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":219,"Cost":127,"Date":"12/26/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":475,"Cost":313,"Date":"5/21/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":819,"Cost":475,"Date":"11/15/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":691,"Cost":506,"Date":"4/28/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":691,"Cost":489,"Date":"6/24/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":113,"Cost":101,"Date":"10/4/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":626,"Cost":527,"Date":"3/17/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":412,"Cost":235,"Date":"6/16/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":454,"Cost":260,"Date":"9/25/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":396,"Cost":306,"Date":"1/14/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":244,"Cost":166,"Date":"5/9/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":389,"Cost":331,"Date":"11/16/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":961,"Cost":634,"Date":"6/2/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":824,"Cost":778,"Date":"9/19/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":84,"Cost":63,"Date":"1/15/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":102,"Cost":54,"Date":"6/26/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":102,"Cost":53,"Date":"11/7/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":279,"Cost":237,"Date":"2/16/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":911,"Cost":728,"Date":"4/19/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":239,"Cost":205,"Date":"8/1/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":64,"Cost":45,"Date":"11/26/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":646,"Cost":519,"Date":"3/1/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":31,"Cost":23,"Date":"9/5/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":974,"Cost":843,"Date":"3/27/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":518,"Cost":442,"Date":"6/7/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":232,"Cost":138,"Date":"9/2/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":529,"Cost":295,"Date":"3/9/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":477,"Cost":320,"Date":"6/2/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":829,"Cost":743,"Date":"9/13/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":681,"Cost":591,"Date":"11/15/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":211,"Cost":172,"Date":"4/5/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":415,"Cost":288,"Date":"10/6/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":743,"Cost":512,"Date":"3/18/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":160,"Cost":110,"Date":"8/4/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":693,"Cost":573,"Date":"11/30/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":317,"Cost":285,"Date":"5/3/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":917,"Cost":691,"Date":"10/12/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":525,"Cost":342,"Date":"12/21/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":723,"Cost":472,"Date":"4/3/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":441,"Cost":406,"Date":"7/9/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":782,"Cost":605,"Date":"9/17/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":124,"Cost":62,"Date":"2/8/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":929,"Cost":574,"Date":"8/21/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":75,"Cost":67,"Date":"1/19/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":329,"Cost":231,"Date":"6/2/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":760,"Cost":553,"Date":"8/14/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":560,"Cost":454,"Date":"2/10/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":217,"Cost":113,"Date":"5/7/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":414,"Cost":346,"Date":"8/29/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":549,"Cost":385,"Date":"10/28/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":382,"Cost":248,"Date":"3/7/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":357,"Cost":180,"Date":"5/31/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":821,"Cost":515,"Date":"2/11/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":478,"Cost":429,"Date":"7/19/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":132,"Cost":74,"Date":"10/30/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":96,"Cost":65,"Date":"3/9/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":115,"Cost":105,"Date":"8/26/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":654,"Cost":437,"Date":"12/18/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":664,"Cost":501,"Date":"2/25/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":231,"Cost":183,"Date":"7/1/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":33,"Cost":19,"Date":"8/31/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":757,"Cost":467,"Date":"12/31/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":960,"Cost":756,"Date":"7/21/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":62,"Cost":43,"Date":"12/8/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":906,"Cost":709,"Date":"5/15/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":788,"Cost":681,"Date":"7/4/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":379,"Cost":310,"Date":"11/1/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":379,"Cost":192,"Date":"3/17/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":838,"Cost":732,"Date":"7/10/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":920,"Cost":827,"Date":"10/4/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":921,"Cost":587,"Date":"1/20/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":419,"Cost":284,"Date":"5/15/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":85,"Cost":50,"Date":"11/18/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":184,"Cost":101,"Date":"6/10/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":735,"Cost":376,"Date":"9/29/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":387,"Cost":205,"Date":"1/24/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":884,"Cost":615,"Date":"7/4/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":459,"Cost":400,"Date":"12/1/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":268,"Cost":208,"Date":"2/16/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":372,"Cost":190,"Date":"5/17/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":207,"Cost":187,"Date":"8/6/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":467,"Cost":393,"Date":"11/27/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":900,"Cost":740,"Date":"3/19/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":770,"Cost":456,"Date":"10/6/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":735,"Cost":636,"Date":"4/20/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":500,"Cost":289,"Date":"6/14/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":320,"Cost":258,"Date":"9/3/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":492,"Cost":468,"Date":"3/9/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":237,"Cost":172,"Date":"6/11/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":340,"Cost":266,"Date":"9/14/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":646,"Cost":549,"Date":"11/25/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":476,"Cost":307,"Date":"4/14/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":258,"Cost":236,"Date":"10/8/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":558,"Cost":319,"Date":"3/20/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":825,"Cost":569,"Date":"9/2/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":551,"Cost":520,"Date":"12/8/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":679,"Cost":445,"Date":"5/4/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":803,"Cost":719,"Date":"11/2/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":143,"Cost":84,"Date":"1/9/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":558,"Cost":311,"Date":"4/9/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":221,"Cost":190,"Date":"7/14/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":270,"Cost":250,"Date":"9/29/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":737,"Cost":664,"Date":"2/27/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":717,"Cost":552,"Date":"8/23/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":760,"Cost":658,"Date":"1/28/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":701,"Cost":382,"Date":"6/3/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":205,"Cost":137,"Date":"8/16/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":75,"Cost":60,"Date":"2/28/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":515,"Cost":482,"Date":"5/10/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":4,"Cost":3,"Date":"8/31/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":120,"Cost":107,"Date":"10/30/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":153,"Cost":126,"Date":"3/14/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":132,"Cost":70,"Date":"7/27/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":792,"Cost":527,"Date":"3/10/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":454,"Cost":423,"Date":"7/21/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":599,"Cost":452,"Date":"11/9/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":261,"Cost":233,"Date":"3/12/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":727,"Cost":442,"Date":"9/2/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":224,"Cost":177,"Date":"12/20/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":729,"Cost":393,"Date":"3/8/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":670,"Cost":631,"Date":"7/4/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":708,"Cost":458,"Date":"9/1/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":396,"Cost":268,"Date":"1/20/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":723,"Cost":448,"Date":"8/5/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":973,"Cost":775,"Date":"1/8/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":864,"Cost":485,"Date":"5/16/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":102,"Cost":66,"Date":"7/9/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":425,"Cost":333,"Date":"11/2/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":331,"Cost":262,"Date":"3/23/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":278,"Cost":194,"Date":"7/11/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":485,"Cost":436,"Date":"10/10/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":494,"Cost":283,"Date":"2/8/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":500,"Cost":436,"Date":"5/25/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":924,"Cost":709,"Date":"12/1/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":28,"Cost":25,"Date":"6/16/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":449,"Cost":335,"Date":"10/2/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":751,"Cost":494,"Date":"2/3/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":936,"Cost":868,"Date":"7/13/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":634,"Cost":420,"Date":"12/4/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":625,"Cost":478,"Date":"2/18/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":771,"Cost":479,"Date":"5/22/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":401,"Cost":277,"Date":"8/7/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":161,"Cost":118,"Date":"12/5/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":47,"Cost":33,"Date":"3/28/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":856,"Cost":812,"Date":"10/19/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":628,"Cost":516,"Date":"4/24/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":4,"Cost":2,"Date":"6/20/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":372,"Cost":192,"Date":"9/16/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":545,"Cost":415,"Date":"3/11/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":647,"Cost":370,"Date":"6/16/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":663,"Cost":354,"Date":"9/19/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":761,"Cost":406,"Date":"1/10/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":533,"Cost":504,"Date":"5/3/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":100,"Cost":94,"Date":"10/26/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":137,"Cost":91,"Date":"3/26/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":728,"Cost":374,"Date":"9/4/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":898,"Cost":796,"Date":"12/11/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":562,"Cost":414,"Date":"6/8/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":447,"Cost":425,"Date":"11/4/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":456,"Cost":305,"Date":"2/5/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":438,"Cost":306,"Date":"4/10/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":224,"Cost":150,"Date":"7/19/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":653,"Cost":603,"Date":"11/7/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":244,"Cost":221,"Date":"3/1/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":106,"Cost":74,"Date":"9/3/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":570,"Cost":287,"Date":"1/31/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":287,"Cost":176,"Date":"6/5/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":603,"Cost":392,"Date":"8/23/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":995,"Cost":906,"Date":"3/4/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":392,"Cost":327,"Date":"5/20/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":217,"Cost":196,"Date":"9/8/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":83,"Cost":74,"Date":"11/1/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":527,"Cost":436,"Date":"3/27/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":966,"Cost":773,"Date":"9/17/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":660,"Cost":507,"Date":"3/16/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":261,"Cost":198,"Date":"7/25/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":378,"Cost":235,"Date":"11/23/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":981,"Cost":708,"Date":"4/19/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":382,"Cost":208,"Date":"9/29/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":790,"Cost":400,"Date":"12/20/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":960,"Cost":548,"Date":"4/2/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":571,"Cost":418,"Date":"7/8/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":47,"Cost":43,"Date":"9/1/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":803,"Cost":414,"Date":"2/2/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":194,"Cost":120,"Date":"8/12/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":183,"Cost":103,"Date":"1/14/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":740,"Cost":606,"Date":"5/18/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":5,"Cost":3,"Date":"7/12/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":252,"Cost":195,"Date":"12/17/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":528,"Cost":338,"Date":"4/1/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":263,"Cost":158,"Date":"8/28/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":835,"Cost":434,"Date":"10/17/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":263,"Cost":243,"Date":"2/25/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":836,"Cost":762,"Date":"5/26/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":445,"Cost":395,"Date":"2/9/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":557,"Cost":384,"Date":"6/25/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":132,"Cost":103,"Date":"10/15/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":134,"Cost":68,"Date":"2/4/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":955,"Cost":766,"Date":"8/8/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":780,"Cost":642,"Date":"12/7/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":77,"Cost":43,"Date":"2/22/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":306,"Cost":287,"Date":"6/20/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":661,"Cost":402,"Date":"8/22/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":836,"Cost":507,"Date":"12/26/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":114,"Cost":100,"Date":"5/21/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":811,"Cost":480,"Date":"11/15/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":964,"Cost":804,"Date":"4/28/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":446,"Cost":407,"Date":"6/24/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":991,"Cost":529,"Date":"10/4/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":599,"Cost":347,"Date":"3/17/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":545,"Cost":357,"Date":"6/16/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":816,"Cost":491,"Date":"9/25/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":907,"Cost":553,"Date":"1/14/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":752,"Cost":409,"Date":"5/9/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":684,"Cost":536,"Date":"11/16/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":730,"Cost":423,"Date":"6/2/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":880,"Cost":589,"Date":"9/19/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":644,"Cost":378,"Date":"1/15/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":354,"Cost":309,"Date":"6/26/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":796,"Cost":426,"Date":"11/7/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":923,"Cost":824,"Date":"2/16/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":797,"Cost":531,"Date":"4/19/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":478,"Cost":282,"Date":"8/1/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":220,"Cost":137,"Date":"11/26/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":478,"Cost":397,"Date":"3/1/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":659,"Cost":392,"Date":"9/5/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":802,"Cost":437,"Date":"3/27/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":211,"Cost":162,"Date":"6/7/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":876,"Cost":821,"Date":"9/2/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":359,"Cost":232,"Date":"3/9/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":591,"Cost":397,"Date":"6/2/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":3,"Cost":2,"Date":"9/13/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":176,"Cost":155,"Date":"11/15/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":566,"Cost":404,"Date":"4/5/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":146,"Cost":137,"Date":"10/6/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":219,"Cost":168,"Date":"3/18/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":73,"Cost":58,"Date":"8/4/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":400,"Cost":247,"Date":"11/30/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":173,"Cost":121,"Date":"5/3/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":483,"Cost":400,"Date":"10/12/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":671,"Cost":475,"Date":"12/21/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":888,"Cost":534,"Date":"4/3/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":92,"Cost":61,"Date":"7/9/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":214,"Cost":141,"Date":"9/17/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":124,"Cost":62,"Date":"2/8/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":380,"Cost":359,"Date":"8/21/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":708,"Cost":454,"Date":"1/19/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":343,"Cost":199,"Date":"6/2/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":664,"Cost":505,"Date":"8/14/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":627,"Cost":416,"Date":"2/10/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":497,"Cost":413,"Date":"5/7/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":673,"Cost":498,"Date":"8/29/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":820,"Cost":497,"Date":"10/28/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":244,"Cost":222,"Date":"3/7/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":908,"Cost":628,"Date":"5/31/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":412,"Cost":339,"Date":"2/11/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":626,"Cost":549,"Date":"7/19/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":955,"Cost":554,"Date":"10/30/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":910,"Cost":817,"Date":"3/9/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":823,"Cost":678,"Date":"8/26/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":429,"Cost":321,"Date":"12/18/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":167,"Cost":84,"Date":"2/25/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":712,"Cost":480,"Date":"7/1/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":775,"Cost":594,"Date":"8/31/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":629,"Cost":527,"Date":"12/31/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":544,"Cost":272,"Date":"7/21/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":926,"Cost":498,"Date":"12/8/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":800,"Cost":645,"Date":"5/15/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":113,"Cost":76,"Date":"7/4/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":786,"Cost":747,"Date":"11/1/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":946,"Cost":669,"Date":"3/17/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":202,"Cost":165,"Date":"7/10/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":618,"Cost":316,"Date":"10/4/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":1,"Cost":1,"Date":"1/20/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":939,"Cost":723,"Date":"5/15/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":59,"Cost":31,"Date":"11/18/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":896,"Cost":781,"Date":"6/10/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":639,"Cost":335,"Date":"9/29/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":221,"Cost":163,"Date":"1/24/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":572,"Cost":538,"Date":"7/4/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":36,"Cost":26,"Date":"12/1/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":804,"Cost":699,"Date":"2/16/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":93,"Cost":54,"Date":"5/17/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":117,"Cost":104,"Date":"8/6/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":728,"Cost":688,"Date":"11/27/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":723,"Cost":435,"Date":"3/19/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":10,"Cost":6,"Date":"10/6/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":768,"Cost":560,"Date":"4/20/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":848,"Cost":657,"Date":"6/14/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":266,"Cost":189,"Date":"9/3/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":339,"Cost":223,"Date":"3/9/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":950,"Cost":843,"Date":"6/11/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":740,"Cost":487,"Date":"9/14/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":673,"Cost":423,"Date":"11/25/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":379,"Cost":302,"Date":"4/14/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":112,"Cost":104,"Date":"10/8/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":394,"Cost":222,"Date":"3/20/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":466,"Cost":389,"Date":"9/2/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":239,"Cost":193,"Date":"12/8/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":240,"Cost":209,"Date":"5/4/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":973,"Cost":670,"Date":"11/2/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":971,"Cost":679,"Date":"1/9/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":432,"Cost":329,"Date":"4/9/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":49,"Cost":34,"Date":"7/14/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":401,"Cost":278,"Date":"9/29/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":525,"Cost":494,"Date":"2/27/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":127,"Cost":64,"Date":"8/23/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":445,"Cost":379,"Date":"1/28/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":331,"Cost":244,"Date":"6/3/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":797,"Cost":658,"Date":"8/16/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":237,"Cost":155,"Date":"2/28/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":597,"Cost":421,"Date":"5/10/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":845,"Cost":683,"Date":"8/31/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":374,"Cost":282,"Date":"10/30/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":512,"Cost":373,"Date":"3/14/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":565,"Cost":385,"Date":"7/27/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":817,"Cost":511,"Date":"3/10/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":384,"Cost":355,"Date":"7/21/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":781,"Cost":506,"Date":"11/9/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":579,"Cost":470,"Date":"3/12/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":876,"Cost":629,"Date":"9/2/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":804,"Cost":486,"Date":"12/20/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":624,"Cost":508,"Date":"3/8/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":452,"Cost":308,"Date":"7/4/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":380,"Cost":259,"Date":"9/1/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":440,"Cost":228,"Date":"1/20/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":854,"Cost":687,"Date":"8/5/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":688,"Cost":401,"Date":"1/8/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":953,"Cost":677,"Date":"5/16/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":848,"Cost":794,"Date":"7/9/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":912,"Cost":565,"Date":"11/2/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":613,"Cost":486,"Date":"3/23/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":828,"Cost":548,"Date":"7/11/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":644,"Cost":424,"Date":"10/10/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":871,"Cost":771,"Date":"2/8/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":775,"Cost":565,"Date":"5/25/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":882,"Cost":654,"Date":"12/1/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":240,"Cost":206,"Date":"6/16/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":521,"Cost":317,"Date":"10/2/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":606,"Cost":502,"Date":"2/3/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":579,"Cost":437,"Date":"7/13/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":159,"Cost":94,"Date":"12/4/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":943,"Cost":875,"Date":"2/18/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":473,"Cost":335,"Date":"5/22/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":508,"Cost":379,"Date":"8/7/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":139,"Cost":80,"Date":"12/5/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":605,"Cost":367,"Date":"3/28/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":775,"Cost":732,"Date":"10/19/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":715,"Cost":660,"Date":"4/24/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":46,"Cost":25,"Date":"6/20/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":505,"Cost":407,"Date":"9/16/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":631,"Cost":587,"Date":"3/11/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":845,"Cost":596,"Date":"6/16/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":247,"Cost":231,"Date":"9/19/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":255,"Cost":184,"Date":"1/10/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":387,"Cost":360,"Date":"5/3/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":462,"Cost":324,"Date":"10/26/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":514,"Cost":276,"Date":"3/26/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":179,"Cost":126,"Date":"9/4/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":521,"Cost":400,"Date":"12/11/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":458,"Cost":374,"Date":"6/8/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":512,"Cost":296,"Date":"11/4/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":488,"Cost":435,"Date":"2/5/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":69,"Cost":52,"Date":"4/10/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":618,"Cost":541,"Date":"7/19/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":746,"Cost":485,"Date":"11/7/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":997,"Cost":633,"Date":"3/1/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":29,"Cost":27,"Date":"9/3/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":313,"Cost":268,"Date":"1/31/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":490,"Cost":263,"Date":"6/5/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":648,"Cost":372,"Date":"8/23/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":79,"Cost":64,"Date":"3/4/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":506,"Cost":341,"Date":"5/20/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":482,"Cost":360,"Date":"9/8/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":183,"Cost":152,"Date":"11/1/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":259,"Cost":180,"Date":"3/27/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":718,"Cost":666,"Date":"9/17/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":582,"Cost":479,"Date":"3/16/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":7,"Cost":6,"Date":"7/25/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":324,"Cost":202,"Date":"11/23/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":45,"Cost":35,"Date":"4/19/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":969,"Cost":733,"Date":"9/29/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":387,"Cost":205,"Date":"12/20/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":106,"Cost":54,"Date":"4/2/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":440,"Cost":313,"Date":"7/8/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":35,"Cost":18,"Date":"9/1/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":618,"Cost":578,"Date":"2/2/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":531,"Cost":340,"Date":"8/12/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":31,"Cost":17,"Date":"1/14/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":714,"Cost":447,"Date":"5/18/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":982,"Cost":907,"Date":"7/12/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":583,"Cost":381,"Date":"12/17/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":195,"Cost":155,"Date":"4/1/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":563,"Cost":371,"Date":"8/28/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":431,"Cost":394,"Date":"10/17/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":398,"Cost":341,"Date":"2/25/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":13,"Cost":10,"Date":"5/26/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":55,"Cost":39,"Date":"2/9/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":922,"Cost":686,"Date":"6/25/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":352,"Cost":306,"Date":"10/15/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":648,"Cost":559,"Date":"2/4/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":990,"Cost":906,"Date":"8/8/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":992,"Cost":614,"Date":"12/7/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":173,"Cost":119,"Date":"2/22/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":607,"Cost":496,"Date":"6/20/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":982,"Cost":917,"Date":"8/22/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":993,"Cost":597,"Date":"12/26/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":151,"Cost":117,"Date":"5/21/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":750,"Cost":431,"Date":"11/15/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":693,"Cost":646,"Date":"4/28/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":935,"Cost":687,"Date":"6/24/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":651,"Cost":384,"Date":"10/4/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":228,"Cost":209,"Date":"3/17/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":974,"Cost":630,"Date":"6/16/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":293,"Cost":223,"Date":"9/25/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":550,"Cost":462,"Date":"1/14/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":757,"Cost":605,"Date":"5/9/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":812,"Cost":574,"Date":"11/16/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":82,"Cost":52,"Date":"6/2/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":302,"Cost":254,"Date":"9/19/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":828,"Cost":532,"Date":"1/15/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":832,"Cost":592,"Date":"6/26/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":976,"Cost":784,"Date":"11/7/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":775,"Cost":712,"Date":"2/16/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":216,"Cost":134,"Date":"4/19/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":956,"Cost":783,"Date":"8/1/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":522,"Cost":445,"Date":"11/26/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":722,"Cost":521,"Date":"3/1/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":796,"Cost":460,"Date":"9/5/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":982,"Cost":828,"Date":"3/27/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":615,"Cost":569,"Date":"6/7/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":170,"Cost":98,"Date":"9/2/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":323,"Cost":281,"Date":"3/9/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":205,"Cost":128,"Date":"6/2/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":273,"Cost":165,"Date":"9/13/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":112,"Cost":100,"Date":"11/15/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":928,"Cost":819,"Date":"4/5/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":453,"Cost":311,"Date":"10/6/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":379,"Cost":256,"Date":"3/18/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":64,"Cost":57,"Date":"8/4/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":313,"Cost":272,"Date":"11/30/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":909,"Cost":839,"Date":"5/3/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":829,"Cost":434,"Date":"10/12/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":382,"Cost":256,"Date":"12/21/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":534,"Cost":366,"Date":"4/3/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":627,"Cost":558,"Date":"7/9/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":474,"Cost":239,"Date":"9/17/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":81,"Cost":65,"Date":"2/8/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":330,"Cost":302,"Date":"8/21/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":255,"Cost":229,"Date":"1/19/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":490,"Cost":324,"Date":"6/2/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":286,"Cost":247,"Date":"8/14/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":1000,"Cost":725,"Date":"2/10/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":897,"Cost":455,"Date":"5/7/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":701,"Cost":605,"Date":"8/29/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":972,"Cost":635,"Date":"10/28/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":423,"Cost":312,"Date":"3/7/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":668,"Cost":600,"Date":"5/31/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":993,"Cost":927,"Date":"2/11/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":482,"Cost":394,"Date":"7/19/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":809,"Cost":634,"Date":"10/30/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":656,"Cost":431,"Date":"3/9/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":418,"Cost":275,"Date":"8/26/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":17,"Cost":10,"Date":"12/18/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":107,"Cost":77,"Date":"2/25/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":395,"Cost":296,"Date":"7/1/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":815,"Cost":484,"Date":"8/31/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":734,"Cost":410,"Date":"12/31/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":423,"Cost":240,"Date":"7/21/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":560,"Cost":440,"Date":"12/8/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":214,"Cost":139,"Date":"5/15/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":684,"Cost":526,"Date":"7/4/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":318,"Cost":268,"Date":"11/1/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":604,"Cost":508,"Date":"3/17/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":937,"Cost":708,"Date":"7/10/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":870,"Cost":804,"Date":"10/4/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":786,"Cost":734,"Date":"1/20/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":212,"Cost":181,"Date":"5/15/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":982,"Cost":851,"Date":"11/18/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":306,"Cost":212,"Date":"6/10/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":918,"Cost":655,"Date":"9/29/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":113,"Cost":92,"Date":"1/24/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":266,"Cost":189,"Date":"7/4/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":155,"Cost":137,"Date":"12/1/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":659,"Cost":613,"Date":"2/16/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":210,"Cost":158,"Date":"5/17/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":79,"Cost":43,"Date":"8/6/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":809,"Cost":686,"Date":"11/27/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":936,"Cost":866,"Date":"3/19/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":198,"Cost":131,"Date":"10/6/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":475,"Cost":419,"Date":"4/20/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":525,"Cost":464,"Date":"6/14/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":994,"Cost":578,"Date":"9/3/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":605,"Cost":346,"Date":"3/9/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":730,"Cost":587,"Date":"6/11/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":159,"Cost":89,"Date":"9/14/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":83,"Cost":76,"Date":"11/25/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":88,"Cost":70,"Date":"4/14/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":745,"Cost":408,"Date":"10/8/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":765,"Cost":547,"Date":"3/20/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":461,"Cost":251,"Date":"9/2/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":322,"Cost":207,"Date":"12/8/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":345,"Cost":290,"Date":"5/4/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":297,"Cost":182,"Date":"11/2/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":661,"Cost":387,"Date":"1/9/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":388,"Cost":266,"Date":"4/9/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":458,"Cost":356,"Date":"7/14/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":721,"Cost":368,"Date":"9/29/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":519,"Cost":434,"Date":"2/27/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":377,"Cost":312,"Date":"8/23/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":459,"Cost":366,"Date":"1/28/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":598,"Cost":503,"Date":"6/3/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":377,"Cost":358,"Date":"8/16/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":550,"Cost":477,"Date":"2/28/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":98,"Cost":62,"Date":"5/10/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":376,"Cost":303,"Date":"8/31/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":666,"Cost":621,"Date":"10/30/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":145,"Cost":115,"Date":"3/14/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":309,"Cost":244,"Date":"7/27/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":513,"Cost":309,"Date":"3/10/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":13,"Cost":8,"Date":"7/21/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":740,"Cost":436,"Date":"11/9/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":926,"Cost":716,"Date":"3/12/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":841,"Cost":452,"Date":"9/2/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":41,"Cost":26,"Date":"12/20/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":799,"Cost":741,"Date":"3/8/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":194,"Cost":114,"Date":"7/4/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":727,"Cost":426,"Date":"9/1/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":743,"Cost":458,"Date":"1/20/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":532,"Cost":438,"Date":"8/5/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":366,"Cost":275,"Date":"1/8/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":71,"Cost":58,"Date":"5/16/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":695,"Cost":395,"Date":"7/9/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":331,"Cost":178,"Date":"11/2/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":78,"Cost":62,"Date":"3/23/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":697,"Cost":532,"Date":"7/11/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":171,"Cost":129,"Date":"10/10/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":738,"Cost":573,"Date":"2/8/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":198,"Cost":120,"Date":"5/25/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":239,"Cost":200,"Date":"12/1/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":219,"Cost":203,"Date":"6/16/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":896,"Cost":479,"Date":"10/2/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":781,"Cost":643,"Date":"2/3/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":387,"Cost":366,"Date":"7/13/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":895,"Cost":516,"Date":"12/4/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":161,"Cost":88,"Date":"2/18/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":704,"Cost":608,"Date":"5/22/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":490,"Cost":455,"Date":"8/7/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":101,"Cost":72,"Date":"12/5/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":488,"Cost":406,"Date":"3/28/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":909,"Cost":589,"Date":"10/19/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":416,"Cost":260,"Date":"4/24/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":138,"Cost":128,"Date":"6/20/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":423,"Cost":230,"Date":"9/16/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":355,"Cost":179,"Date":"3/11/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":810,"Cost":556,"Date":"6/16/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":244,"Cost":150,"Date":"9/19/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":610,"Cost":556,"Date":"1/10/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":890,"Cost":527,"Date":"5/3/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":418,"Cost":275,"Date":"10/26/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":821,"Cost":704,"Date":"3/26/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":656,"Cost":344,"Date":"9/4/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":213,"Cost":122,"Date":"12/11/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":104,"Cost":62,"Date":"6/8/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":532,"Cost":452,"Date":"11/4/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":620,"Cost":505,"Date":"2/5/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":810,"Cost":605,"Date":"4/10/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":594,"Cost":308,"Date":"7/19/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":268,"Cost":154,"Date":"11/7/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":630,"Cost":496,"Date":"3/1/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":26,"Cost":23,"Date":"9/3/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":653,"Cost":365,"Date":"1/31/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":157,"Cost":142,"Date":"6/5/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":13,"Cost":7,"Date":"8/23/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":251,"Cost":173,"Date":"3/4/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":968,"Cost":654,"Date":"5/20/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":539,"Cost":281,"Date":"9/8/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":836,"Cost":646,"Date":"11/1/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":967,"Cost":572,"Date":"3/27/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":726,"Cost":581,"Date":"9/17/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":194,"Cost":126,"Date":"3/16/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":998,"Cost":827,"Date":"7/25/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":355,"Cost":280,"Date":"11/23/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":893,"Cost":820,"Date":"4/19/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":846,"Cost":695,"Date":"9/29/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":147,"Cost":99,"Date":"12/20/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":987,"Cost":870,"Date":"4/2/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":736,"Cost":668,"Date":"7/8/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":711,"Cost":539,"Date":"9/1/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":305,"Cost":243,"Date":"2/2/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":673,"Cost":585,"Date":"8/12/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":213,"Cost":198,"Date":"1/14/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":811,"Cost":760,"Date":"5/18/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":730,"Cost":597,"Date":"7/12/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":407,"Cost":219,"Date":"12/17/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":552,"Cost":386,"Date":"4/1/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":320,"Cost":183,"Date":"8/28/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":158,"Cost":103,"Date":"10/17/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":528,"Cost":369,"Date":"2/25/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":774,"Cost":703,"Date":"5/26/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":357,"Cost":219,"Date":"2/9/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":348,"Cost":305,"Date":"6/25/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":613,"Cost":381,"Date":"10/15/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":283,"Cost":182,"Date":"2/4/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":82,"Cost":76,"Date":"8/8/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":782,"Cost":556,"Date":"12/7/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":90,"Cost":47,"Date":"2/22/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":739,"Cost":421,"Date":"6/20/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":568,"Cost":484,"Date":"8/22/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":818,"Cost":507,"Date":"12/26/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":420,"Cost":346,"Date":"5/21/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":443,"Cost":234,"Date":"11/15/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":256,"Cost":184,"Date":"4/28/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":735,"Cost":624,"Date":"6/24/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":967,"Cost":552,"Date":"10/4/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":790,"Cost":417,"Date":"3/17/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":814,"Cost":685,"Date":"6/16/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":709,"Cost":664,"Date":"9/25/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":819,"Cost":756,"Date":"1/14/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":756,"Cost":474,"Date":"5/9/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":467,"Cost":370,"Date":"11/16/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":852,"Cost":643,"Date":"6/2/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":992,"Cost":873,"Date":"9/19/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":472,"Cost":428,"Date":"1/15/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":429,"Cost":273,"Date":"6/26/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":894,"Cost":612,"Date":"11/7/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":364,"Cost":336,"Date":"2/16/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":943,"Cost":571,"Date":"4/19/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":386,"Cost":233,"Date":"8/1/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":521,"Cost":404,"Date":"11/26/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":272,"Cost":202,"Date":"3/1/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":943,"Cost":503,"Date":"9/5/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":744,"Cost":519,"Date":"3/27/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":59,"Cost":54,"Date":"6/7/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":744,"Cost":512,"Date":"9/2/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":55,"Cost":50,"Date":"3/9/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":911,"Cost":631,"Date":"6/2/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":151,"Cost":109,"Date":"9/13/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":101,"Cost":67,"Date":"11/15/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":575,"Cost":469,"Date":"4/5/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":126,"Cost":115,"Date":"10/6/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":407,"Cost":306,"Date":"3/18/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":892,"Cost":817,"Date":"8/4/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":976,"Cost":552,"Date":"11/30/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":438,"Cost":325,"Date":"5/3/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":237,"Cost":126,"Date":"10/12/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":38,"Cost":27,"Date":"12/21/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":119,"Cost":84,"Date":"4/3/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":689,"Cost":446,"Date":"7/9/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":746,"Cost":392,"Date":"9/17/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":912,"Cost":848,"Date":"2/8/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":763,"Cost":398,"Date":"8/21/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":132,"Cost":98,"Date":"1/19/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":582,"Cost":477,"Date":"6/2/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":959,"Cost":743,"Date":"8/14/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":578,"Cost":379,"Date":"2/10/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":69,"Cost":42,"Date":"5/7/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":730,"Cost":518,"Date":"8/29/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":581,"Cost":407,"Date":"10/28/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":189,"Cost":109,"Date":"3/7/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":430,"Cost":325,"Date":"5/31/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":239,"Cost":177,"Date":"2/11/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":204,"Cost":152,"Date":"7/19/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":280,"Cost":164,"Date":"10/30/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":970,"Cost":617,"Date":"3/9/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":580,"Cost":475,"Date":"8/26/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":40,"Cost":35,"Date":"12/18/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":693,"Cost":384,"Date":"2/25/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":147,"Cost":99,"Date":"7/1/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":597,"Cost":462,"Date":"8/31/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":727,"Cost":638,"Date":"12/31/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":725,"Cost":486,"Date":"7/21/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":830,"Cost":773,"Date":"12/8/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":926,"Cost":764,"Date":"5/15/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":129,"Cost":67,"Date":"7/4/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":256,"Cost":170,"Date":"11/1/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":134,"Cost":109,"Date":"3/17/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":56,"Cost":36,"Date":"7/10/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":376,"Cost":354,"Date":"10/4/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":264,"Cost":212,"Date":"1/20/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":291,"Cost":156,"Date":"5/15/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":311,"Cost":199,"Date":"11/18/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":297,"Cost":261,"Date":"6/10/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":88,"Cost":71,"Date":"9/29/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":365,"Cost":220,"Date":"1/24/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":457,"Cost":328,"Date":"7/4/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":864,"Cost":514,"Date":"12/1/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":502,"Cost":327,"Date":"2/16/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":718,"Cost":643,"Date":"5/17/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":969,"Cost":911,"Date":"8/6/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":367,"Cost":259,"Date":"11/27/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":843,"Cost":458,"Date":"3/19/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":448,"Cost":340,"Date":"10/6/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":313,"Cost":200,"Date":"4/20/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":425,"Cost":361,"Date":"6/14/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":18,"Cost":14,"Date":"9/3/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":631,"Cost":357,"Date":"3/9/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":179,"Cost":102,"Date":"6/11/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":92,"Cost":78,"Date":"9/14/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":95,"Cost":47,"Date":"11/25/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":626,"Cost":423,"Date":"4/14/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":21,"Cost":14,"Date":"10/8/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":704,"Cost":479,"Date":"3/20/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":125,"Cost":118,"Date":"9/2/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":399,"Cost":314,"Date":"12/8/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":463,"Cost":427,"Date":"5/4/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":618,"Cost":456,"Date":"11/2/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":822,"Cost":514,"Date":"1/9/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":499,"Cost":252,"Date":"4/9/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":632,"Cost":598,"Date":"7/14/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":974,"Cost":657,"Date":"9/29/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":737,"Cost":696,"Date":"2/27/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":678,"Cost":599,"Date":"8/23/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":242,"Cost":138,"Date":"1/28/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":565,"Cost":419,"Date":"6/3/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":168,"Cost":105,"Date":"8/16/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":982,"Cost":892,"Date":"2/28/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":480,"Cost":257,"Date":"5/10/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":237,"Cost":142,"Date":"8/31/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":418,"Cost":386,"Date":"10/30/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":815,"Cost":448,"Date":"3/14/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":18,"Cost":16,"Date":"7/27/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":775,"Cost":579,"Date":"3/10/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":836,"Cost":439,"Date":"7/21/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":340,"Cost":178,"Date":"11/9/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":955,"Cost":902,"Date":"3/12/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":681,"Cost":473,"Date":"9/2/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":772,"Cost":398,"Date":"12/20/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":942,"Cost":868,"Date":"3/8/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":268,"Cost":246,"Date":"7/4/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":118,"Cost":86,"Date":"9/1/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":15,"Cost":10,"Date":"1/20/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":275,"Cost":169,"Date":"8/5/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":452,"Cost":226,"Date":"1/8/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":551,"Cost":430,"Date":"5/16/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":496,"Cost":440,"Date":"7/9/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":547,"Cost":292,"Date":"11/2/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":850,"Cost":465,"Date":"3/23/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":282,"Cost":261,"Date":"7/11/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":312,"Cost":240,"Date":"10/10/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":709,"Cost":622,"Date":"2/8/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":286,"Cost":266,"Date":"5/25/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":751,"Cost":645,"Date":"12/1/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":229,"Cost":190,"Date":"6/16/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":46,"Cost":35,"Date":"10/2/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":943,"Cost":486,"Date":"2/3/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":715,"Cost":413,"Date":"7/13/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":464,"Cost":260,"Date":"12/4/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":636,"Cost":470,"Date":"2/18/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":712,"Cost":435,"Date":"5/22/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":794,"Cost":601,"Date":"8/7/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":125,"Cost":107,"Date":"12/5/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":305,"Cost":218,"Date":"3/28/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":494,"Cost":444,"Date":"10/19/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":310,"Cost":219,"Date":"4/24/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":502,"Cost":446,"Date":"6/20/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":207,"Cost":191,"Date":"9/16/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":592,"Cost":468,"Date":"3/11/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":260,"Cost":144,"Date":"6/16/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":681,"Cost":525,"Date":"9/19/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":946,"Cost":877,"Date":"1/10/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":436,"Cost":250,"Date":"5/3/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":982,"Cost":762,"Date":"10/26/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":212,"Cost":177,"Date":"3/26/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":771,"Cost":581,"Date":"9/4/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":736,"Cost":668,"Date":"12/11/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":231,"Cost":186,"Date":"6/8/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":792,"Cost":680,"Date":"11/4/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":16,"Cost":15,"Date":"2/5/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":583,"Cost":299,"Date":"4/10/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":83,"Cost":48,"Date":"7/19/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":944,"Cost":612,"Date":"11/7/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":413,"Cost":350,"Date":"3/1/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":87,"Cost":74,"Date":"9/3/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":589,"Cost":386,"Date":"1/31/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":891,"Cost":632,"Date":"6/5/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":145,"Cost":83,"Date":"8/23/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":177,"Cost":146,"Date":"3/4/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":396,"Cost":217,"Date":"5/20/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":992,"Cost":725,"Date":"9/8/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":951,"Cost":675,"Date":"11/1/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":624,"Cost":433,"Date":"3/27/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":627,"Cost":379,"Date":"9/17/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":532,"Cost":408,"Date":"3/16/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":955,"Cost":631,"Date":"7/25/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":770,"Cost":540,"Date":"11/23/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":794,"Cost":415,"Date":"4/19/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":580,"Cost":490,"Date":"9/29/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":746,"Cost":530,"Date":"12/20/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":985,"Cost":922,"Date":"4/2/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":919,"Cost":522,"Date":"7/8/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":253,"Cost":143,"Date":"9/1/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":324,"Cost":199,"Date":"2/2/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":511,"Cost":408,"Date":"8/12/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":209,"Cost":146,"Date":"1/14/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":154,"Cost":83,"Date":"5/18/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":773,"Cost":563,"Date":"7/12/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":836,"Cost":738,"Date":"12/17/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":707,"Cost":469,"Date":"4/1/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":787,"Cost":731,"Date":"8/28/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":67,"Cost":34,"Date":"10/17/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":817,"Cost":593,"Date":"2/25/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":886,"Cost":471,"Date":"5/26/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":821,"Cost":629,"Date":"2/9/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":455,"Cost":313,"Date":"6/25/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":966,"Cost":659,"Date":"10/15/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":60,"Cost":40,"Date":"2/4/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":208,"Cost":117,"Date":"8/8/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":782,"Cost":622,"Date":"12/7/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":801,"Cost":468,"Date":"2/22/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":510,"Cost":466,"Date":"6/20/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":452,"Cost":385,"Date":"8/22/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":582,"Cost":388,"Date":"12/26/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":102,"Cost":66,"Date":"5/21/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":578,"Cost":511,"Date":"11/15/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":62,"Cost":43,"Date":"4/28/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":641,"Cost":603,"Date":"6/24/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":985,"Cost":917,"Date":"10/4/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":831,"Cost":628,"Date":"3/17/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":225,"Cost":170,"Date":"6/16/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":248,"Cost":211,"Date":"9/25/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":393,"Cost":343,"Date":"1/14/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":686,"Cost":379,"Date":"5/9/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":189,"Cost":152,"Date":"11/16/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":376,"Cost":273,"Date":"6/2/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":778,"Cost":670,"Date":"9/19/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":761,"Cost":681,"Date":"1/15/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":574,"Cost":518,"Date":"6/26/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":276,"Cost":176,"Date":"11/7/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":783,"Cost":507,"Date":"2/16/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":196,"Cost":176,"Date":"4/19/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":703,"Cost":586,"Date":"8/1/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":970,"Cost":644,"Date":"11/26/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":286,"Cost":164,"Date":"3/1/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":693,"Cost":471,"Date":"9/5/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":44,"Cost":28,"Date":"3/27/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":450,"Cost":242,"Date":"6/7/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":646,"Cost":353,"Date":"9/2/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":913,"Cost":479,"Date":"3/9/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":194,"Cost":98,"Date":"6/2/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":851,"Cost":568,"Date":"9/13/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":890,"Cost":625,"Date":"11/15/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":91,"Cost":74,"Date":"4/5/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":652,"Cost":481,"Date":"10/6/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":510,"Cost":426,"Date":"3/18/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":194,"Cost":184,"Date":"8/4/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":573,"Cost":413,"Date":"11/30/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":63,"Cost":50,"Date":"5/3/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":182,"Cost":138,"Date":"10/12/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":382,"Cost":266,"Date":"12/21/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":558,"Cost":368,"Date":"4/3/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":88,"Cost":82,"Date":"7/9/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":204,"Cost":112,"Date":"9/17/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":120,"Cost":93,"Date":"2/8/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":22,"Cost":14,"Date":"8/21/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":4,"Cost":2,"Date":"1/19/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":625,"Cost":365,"Date":"6/2/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":746,"Cost":659,"Date":"8/14/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":517,"Cost":347,"Date":"2/10/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":25,"Cost":18,"Date":"5/7/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":968,"Cost":626,"Date":"8/29/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":696,"Cost":590,"Date":"10/28/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":580,"Cost":323,"Date":"3/7/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":322,"Cost":223,"Date":"5/31/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":973,"Cost":856,"Date":"2/11/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":719,"Cost":454,"Date":"7/19/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":480,"Cost":426,"Date":"10/30/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":799,"Cost":426,"Date":"3/9/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":737,"Cost":492,"Date":"8/26/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":423,"Cost":309,"Date":"12/18/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":667,"Cost":442,"Date":"2/25/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":523,"Cost":262,"Date":"7/1/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":206,"Cost":173,"Date":"8/31/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":104,"Cost":94,"Date":"12/31/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":577,"Cost":411,"Date":"7/21/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":876,"Cost":677,"Date":"12/8/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":53,"Cost":27,"Date":"5/15/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":542,"Cost":291,"Date":"7/4/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":952,"Cost":548,"Date":"11/1/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":763,"Cost":712,"Date":"3/17/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":478,"Cost":440,"Date":"7/10/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":212,"Cost":177,"Date":"10/4/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":669,"Cost":406,"Date":"1/20/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":877,"Cost":622,"Date":"5/15/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":243,"Cost":137,"Date":"11/18/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":540,"Cost":392,"Date":"6/10/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":308,"Cost":213,"Date":"9/29/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":450,"Cost":364,"Date":"1/24/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":91,"Cost":59,"Date":"7/4/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":730,"Cost":617,"Date":"12/1/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":813,"Cost":411,"Date":"2/16/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":700,"Cost":562,"Date":"5/17/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":371,"Cost":189,"Date":"8/6/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":904,"Cost":627,"Date":"11/27/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":689,"Cost":549,"Date":"3/19/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":575,"Cost":351,"Date":"10/6/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":481,"Cost":269,"Date":"4/20/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":649,"Cost":411,"Date":"6/14/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":617,"Cost":551,"Date":"9/3/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":224,"Cost":192,"Date":"3/9/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":795,"Cost":456,"Date":"6/11/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":529,"Cost":275,"Date":"9/14/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":323,"Cost":307,"Date":"11/25/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":537,"Cost":344,"Date":"4/14/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":469,"Cost":403,"Date":"10/8/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":205,"Cost":110,"Date":"3/20/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":748,"Cost":386,"Date":"9/2/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":875,"Cost":459,"Date":"12/8/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":103,"Cost":67,"Date":"5/4/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":954,"Cost":886,"Date":"11/2/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":662,"Cost":418,"Date":"1/9/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":692,"Cost":393,"Date":"4/9/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":307,"Cost":289,"Date":"7/14/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":681,"Cost":583,"Date":"9/29/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":223,"Cost":195,"Date":"2/27/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":877,"Cost":515,"Date":"8/23/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":4,"Cost":4,"Date":"1/28/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":386,"Cost":329,"Date":"6/3/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":360,"Cost":294,"Date":"8/16/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":749,"Cost":492,"Date":"2/28/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":102,"Cost":74,"Date":"5/10/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":603,"Cost":455,"Date":"8/31/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":698,"Cost":487,"Date":"10/30/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":505,"Cost":351,"Date":"3/14/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":342,"Cost":318,"Date":"7/27/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":567,"Cost":387,"Date":"3/10/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":285,"Cost":179,"Date":"7/21/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":652,"Cost":417,"Date":"11/9/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":257,"Cost":224,"Date":"3/12/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":432,"Cost":309,"Date":"9/2/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":647,"Cost":358,"Date":"12/20/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":26,"Cost":24,"Date":"3/8/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":434,"Cost":316,"Date":"7/4/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":982,"Cost":695,"Date":"9/1/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":749,"Cost":376,"Date":"1/20/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":787,"Cost":659,"Date":"8/5/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":29,"Cost":18,"Date":"1/8/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":80,"Cost":43,"Date":"5/16/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":659,"Cost":528,"Date":"7/9/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":529,"Cost":489,"Date":"11/2/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":884,"Cost":809,"Date":"3/23/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":386,"Cost":210,"Date":"7/11/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":800,"Cost":759,"Date":"10/10/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":497,"Cost":369,"Date":"2/8/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":679,"Cost":424,"Date":"5/25/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":862,"Cost":718,"Date":"12/1/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":902,"Cost":766,"Date":"6/16/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":506,"Cost":359,"Date":"10/2/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":573,"Cost":469,"Date":"2/3/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":787,"Cost":676,"Date":"7/13/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":664,"Cost":554,"Date":"12/4/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":797,"Cost":692,"Date":"2/18/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":747,"Cost":464,"Date":"5/22/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":203,"Cost":189,"Date":"8/7/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":873,"Cost":436,"Date":"12/5/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":484,"Cost":404,"Date":"3/28/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":418,"Cost":368,"Date":"10/19/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":691,"Cost":456,"Date":"4/24/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":799,"Cost":421,"Date":"6/20/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":269,"Cost":163,"Date":"9/16/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":264,"Cost":238,"Date":"3/11/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":840,"Cost":572,"Date":"6/16/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":990,"Cost":896,"Date":"9/19/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":808,"Cost":519,"Date":"1/10/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":589,"Cost":391,"Date":"5/3/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":715,"Cost":485,"Date":"10/26/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":864,"Cost":647,"Date":"3/26/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":40,"Cost":25,"Date":"9/4/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":741,"Cost":502,"Date":"12/11/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":347,"Cost":329,"Date":"6/8/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":228,"Cost":123,"Date":"11/4/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":812,"Cost":728,"Date":"2/5/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":200,"Cost":131,"Date":"4/10/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":470,"Cost":356,"Date":"7/19/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":463,"Cost":249,"Date":"11/7/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":799,"Cost":581,"Date":"3/1/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":71,"Cost":67,"Date":"9/3/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":996,"Cost":787,"Date":"1/31/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":479,"Cost":445,"Date":"6/5/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":360,"Cost":215,"Date":"8/23/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":662,"Cost":579,"Date":"3/4/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":37,"Cost":29,"Date":"5/20/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":654,"Cost":471,"Date":"9/8/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":817,"Cost":736,"Date":"11/1/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":131,"Cost":120,"Date":"3/27/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":323,"Cost":300,"Date":"9/17/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":876,"Cost":522,"Date":"3/16/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":620,"Cost":488,"Date":"7/25/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":612,"Cost":489,"Date":"11/23/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":327,"Cost":256,"Date":"4/19/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":104,"Cost":68,"Date":"9/29/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":267,"Cost":237,"Date":"12/20/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":533,"Cost":436,"Date":"4/2/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":237,"Cost":139,"Date":"7/8/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":546,"Cost":461,"Date":"9/1/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":611,"Cost":530,"Date":"2/2/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":613,"Cost":395,"Date":"8/12/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":981,"Cost":835,"Date":"1/14/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":17,"Cost":13,"Date":"5/18/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":747,"Cost":512,"Date":"7/12/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":978,"Cost":808,"Date":"12/17/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":357,"Cost":248,"Date":"4/1/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":617,"Cost":451,"Date":"8/28/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":825,"Cost":674,"Date":"10/17/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":624,"Cost":532,"Date":"2/25/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":866,"Cost":515,"Date":"5/26/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":764,"Cost":699,"Date":"2/9/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":852,"Cost":752,"Date":"6/25/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":114,"Cost":98,"Date":"10/15/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":924,"Cost":538,"Date":"2/4/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":360,"Cost":260,"Date":"8/8/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":30,"Cost":23,"Date":"12/7/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":222,"Cost":135,"Date":"2/22/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":167,"Cost":90,"Date":"6/20/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":121,"Cost":112,"Date":"8/22/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":875,"Cost":724,"Date":"12/26/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":168,"Cost":85,"Date":"5/21/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":265,"Cost":197,"Date":"11/15/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":281,"Cost":179,"Date":"4/28/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":176,"Cost":132,"Date":"6/24/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":633,"Cost":464,"Date":"10/4/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":718,"Cost":457,"Date":"3/17/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":711,"Cost":578,"Date":"6/16/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":927,"Cost":661,"Date":"9/25/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":70,"Cost":55,"Date":"1/14/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":900,"Cost":727,"Date":"5/9/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":443,"Cost":238,"Date":"11/16/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":703,"Cost":567,"Date":"6/2/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":604,"Cost":316,"Date":"9/19/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":512,"Cost":416,"Date":"1/15/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":571,"Cost":386,"Date":"6/26/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":948,"Cost":707,"Date":"11/7/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":958,"Cost":766,"Date":"2/16/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":719,"Cost":366,"Date":"4/19/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":369,"Cost":221,"Date":"8/1/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":857,"Cost":724,"Date":"11/26/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":620,"Cost":389,"Date":"3/1/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":384,"Cost":290,"Date":"9/5/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":873,"Cost":578,"Date":"3/27/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":620,"Cost":397,"Date":"6/7/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":234,"Cost":143,"Date":"9/2/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":288,"Cost":198,"Date":"3/9/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":399,"Cost":244,"Date":"6/2/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":865,"Cost":683,"Date":"9/13/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":967,"Cost":591,"Date":"11/15/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":999,"Cost":852,"Date":"4/5/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":590,"Cost":319,"Date":"10/6/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":850,"Cost":554,"Date":"3/18/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":707,"Cost":398,"Date":"8/4/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":773,"Cost":653,"Date":"11/30/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":591,"Cost":445,"Date":"5/3/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":938,"Cost":782,"Date":"10/12/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":141,"Cost":107,"Date":"12/21/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":935,"Cost":858,"Date":"4/3/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":572,"Cost":312,"Date":"7/9/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":464,"Cost":326,"Date":"9/17/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":137,"Cost":78,"Date":"2/8/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":219,"Cost":187,"Date":"8/21/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":838,"Cost":680,"Date":"1/19/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":452,"Cost":241,"Date":"6/2/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":61,"Cost":44,"Date":"8/14/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":754,"Cost":614,"Date":"2/10/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":940,"Cost":730,"Date":"5/7/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":610,"Cost":388,"Date":"8/29/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":681,"Cost":616,"Date":"10/28/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":265,"Cost":220,"Date":"3/7/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":133,"Cost":126,"Date":"5/31/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":405,"Cost":215,"Date":"2/11/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":92,"Cost":70,"Date":"7/19/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":371,"Cost":248,"Date":"10/30/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":492,"Cost":339,"Date":"3/9/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":276,"Cost":168,"Date":"8/26/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":230,"Cost":180,"Date":"12/18/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":261,"Cost":136,"Date":"2/25/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":24,"Cost":12,"Date":"7/1/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":769,"Cost":704,"Date":"8/31/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":976,"Cost":506,"Date":"12/31/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":551,"Cost":360,"Date":"7/21/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":59,"Cost":34,"Date":"12/8/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":49,"Cost":32,"Date":"5/15/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":375,"Cost":324,"Date":"7/4/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":88,"Cost":51,"Date":"11/1/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":558,"Cost":458,"Date":"3/17/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":691,"Cost":532,"Date":"7/10/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":809,"Cost":541,"Date":"10/4/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":574,"Cost":407,"Date":"1/20/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":945,"Cost":756,"Date":"5/15/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":412,"Cost":209,"Date":"11/18/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":286,"Cost":190,"Date":"6/10/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":572,"Cost":483,"Date":"9/29/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":280,"Cost":246,"Date":"1/24/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":305,"Cost":263,"Date":"7/4/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":331,"Cost":310,"Date":"12/1/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":361,"Cost":340,"Date":"2/16/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":508,"Cost":385,"Date":"5/17/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":541,"Cost":512,"Date":"8/6/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":816,"Cost":764,"Date":"11/27/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":88,"Cost":63,"Date":"3/19/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":791,"Cost":677,"Date":"10/6/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":752,"Cost":700,"Date":"4/20/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":122,"Cost":90,"Date":"6/14/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":478,"Cost":397,"Date":"9/3/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":589,"Cost":395,"Date":"3/9/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":828,"Cost":641,"Date":"6/11/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":332,"Cost":242,"Date":"9/14/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":787,"Cost":555,"Date":"11/25/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":253,"Cost":198,"Date":"4/14/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":205,"Cost":147,"Date":"10/8/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":818,"Cost":467,"Date":"3/20/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":882,"Cost":626,"Date":"9/2/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":447,"Cost":386,"Date":"12/8/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":393,"Cost":279,"Date":"5/4/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":581,"Cost":441,"Date":"11/2/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":977,"Cost":647,"Date":"1/9/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":700,"Cost":594,"Date":"4/9/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":704,"Cost":535,"Date":"7/14/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":631,"Cost":525,"Date":"9/29/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":225,"Cost":140,"Date":"2/27/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":903,"Cost":725,"Date":"8/23/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":650,"Cost":546,"Date":"1/28/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":314,"Cost":277,"Date":"6/3/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":176,"Cost":166,"Date":"8/16/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":352,"Cost":300,"Date":"2/28/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":193,"Cost":113,"Date":"5/10/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":30,"Cost":20,"Date":"8/31/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":624,"Cost":422,"Date":"10/30/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":582,"Cost":361,"Date":"3/14/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":847,"Cost":504,"Date":"7/27/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":648,"Cost":343,"Date":"3/10/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":672,"Cost":533,"Date":"7/21/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":143,"Cost":131,"Date":"11/9/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":57,"Cost":49,"Date":"3/12/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":215,"Cost":134,"Date":"9/2/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":99,"Cost":63,"Date":"12/20/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":871,"Cost":761,"Date":"3/8/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":150,"Cost":126,"Date":"7/4/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":462,"Cost":381,"Date":"9/1/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":415,"Cost":368,"Date":"1/20/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":332,"Cost":290,"Date":"8/5/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":711,"Cost":606,"Date":"1/8/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":184,"Cost":167,"Date":"5/16/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":860,"Cost":500,"Date":"7/9/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":486,"Cost":427,"Date":"11/2/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":253,"Cost":189,"Date":"3/23/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":102,"Cost":86,"Date":"7/11/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":233,"Cost":209,"Date":"10/10/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":279,"Cost":199,"Date":"2/8/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":315,"Cost":253,"Date":"5/25/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":865,"Cost":474,"Date":"12/1/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":437,"Cost":262,"Date":"6/16/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":929,"Cost":617,"Date":"10/2/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":973,"Cost":680,"Date":"2/3/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":340,"Cost":323,"Date":"7/13/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":826,"Cost":517,"Date":"12/4/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":67,"Cost":48,"Date":"2/18/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":985,"Cost":536,"Date":"5/22/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":190,"Cost":164,"Date":"8/7/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":731,"Cost":554,"Date":"12/5/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":254,"Cost":226,"Date":"3/28/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":678,"Cost":410,"Date":"10/19/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":40,"Cost":30,"Date":"4/24/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":729,"Cost":617,"Date":"6/20/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":705,"Cost":649,"Date":"9/16/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":581,"Cost":408,"Date":"3/11/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":376,"Cost":215,"Date":"6/16/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":481,"Cost":388,"Date":"9/19/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":967,"Cost":586,"Date":"1/10/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":271,"Cost":214,"Date":"5/3/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":426,"Cost":327,"Date":"10/26/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":957,"Cost":661,"Date":"3/26/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":76,"Cost":45,"Date":"9/4/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":690,"Cost":607,"Date":"12/11/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":275,"Cost":244,"Date":"6/8/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":743,"Cost":585,"Date":"11/4/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":684,"Cost":483,"Date":"2/5/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":15,"Cost":11,"Date":"4/10/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":488,"Cost":336,"Date":"7/19/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":457,"Cost":291,"Date":"11/7/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":395,"Cost":356,"Date":"3/1/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":787,"Cost":659,"Date":"9/3/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":573,"Cost":474,"Date":"1/31/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":352,"Cost":322,"Date":"6/5/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":900,"Cost":687,"Date":"8/23/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":188,"Cost":155,"Date":"3/4/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":907,"Cost":500,"Date":"5/20/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":613,"Cost":563,"Date":"9/8/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":287,"Cost":165,"Date":"11/1/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":819,"Cost":595,"Date":"3/27/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":797,"Cost":587,"Date":"9/17/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":500,"Cost":396,"Date":"3/16/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":571,"Cost":310,"Date":"7/25/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":853,"Cost":496,"Date":"11/23/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":173,"Cost":151,"Date":"4/19/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":373,"Cost":192,"Date":"9/29/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":140,"Cost":105,"Date":"12/20/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":599,"Cost":404,"Date":"4/2/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":934,"Cost":472,"Date":"7/8/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":451,"Cost":409,"Date":"9/1/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":431,"Cost":285,"Date":"2/2/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":477,"Cost":431,"Date":"8/12/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":550,"Cost":293,"Date":"1/14/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":383,"Cost":359,"Date":"5/18/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":561,"Cost":346,"Date":"7/12/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":142,"Cost":107,"Date":"12/17/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":194,"Cost":133,"Date":"4/1/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":594,"Cost":522,"Date":"8/28/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":921,"Cost":547,"Date":"10/17/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":311,"Cost":158,"Date":"2/25/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":908,"Cost":628,"Date":"5/26/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":723,"Cost":600,"Date":"2/9/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":948,"Cost":768,"Date":"6/25/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":827,"Cost":770,"Date":"10/15/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":633,"Cost":487,"Date":"2/4/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":806,"Cost":561,"Date":"8/8/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":770,"Cost":451,"Date":"12/7/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":796,"Cost":721,"Date":"2/22/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":35,"Cost":18,"Date":"6/20/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":911,"Cost":488,"Date":"8/22/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":851,"Cost":541,"Date":"12/26/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":898,"Cost":602,"Date":"5/21/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":161,"Cost":89,"Date":"11/15/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":127,"Cost":106,"Date":"4/28/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":225,"Cost":196,"Date":"6/24/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":254,"Cost":188,"Date":"10/4/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":402,"Cost":212,"Date":"3/17/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":723,"Cost":632,"Date":"6/16/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":807,"Cost":673,"Date":"9/25/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":572,"Cost":515,"Date":"1/14/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":501,"Cost":304,"Date":"5/9/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":565,"Cost":350,"Date":"11/16/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":730,"Cost":503,"Date":"6/2/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":589,"Cost":451,"Date":"9/19/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":180,"Cost":148,"Date":"1/15/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":140,"Cost":106,"Date":"6/26/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":617,"Cost":358,"Date":"11/7/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":366,"Cost":189,"Date":"2/16/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":513,"Cost":381,"Date":"4/19/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":275,"Cost":195,"Date":"8/1/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":966,"Cost":679,"Date":"11/26/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":826,"Cost":563,"Date":"3/1/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":319,"Cost":190,"Date":"9/5/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":663,"Cost":521,"Date":"3/27/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":138,"Cost":104,"Date":"6/7/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":656,"Cost":522,"Date":"9/2/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":78,"Cost":66,"Date":"3/9/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":871,"Cost":765,"Date":"6/2/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":803,"Cost":754,"Date":"9/13/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":142,"Cost":109,"Date":"11/15/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":910,"Cost":590,"Date":"4/5/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":935,"Cost":562,"Date":"10/6/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":395,"Cost":331,"Date":"3/18/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":465,"Cost":433,"Date":"8/4/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":143,"Cost":83,"Date":"11/30/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":756,"Cost":618,"Date":"5/3/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":136,"Cost":107,"Date":"10/12/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":973,"Cost":521,"Date":"12/21/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":381,"Cost":351,"Date":"4/3/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":487,"Cost":256,"Date":"7/9/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":834,"Cost":555,"Date":"9/17/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":606,"Cost":434,"Date":"2/8/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":929,"Cost":706,"Date":"8/21/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":241,"Cost":229,"Date":"1/19/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":298,"Cost":190,"Date":"6/2/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":664,"Cost":403,"Date":"8/14/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":943,"Cost":473,"Date":"2/10/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":848,"Cost":611,"Date":"5/7/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":683,"Cost":497,"Date":"8/29/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":160,"Cost":96,"Date":"10/28/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":254,"Cost":155,"Date":"3/7/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":656,"Cost":576,"Date":"5/31/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":627,"Cost":459,"Date":"2/11/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":502,"Cost":296,"Date":"7/19/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":874,"Cost":636,"Date":"10/30/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":372,"Cost":344,"Date":"3/9/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":62,"Cost":44,"Date":"8/26/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":95,"Cost":66,"Date":"12/18/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":772,"Cost":427,"Date":"2/25/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":18,"Cost":14,"Date":"7/1/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":24,"Cost":23,"Date":"8/31/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":48,"Cost":33,"Date":"12/31/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":233,"Cost":206,"Date":"7/21/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":822,"Cost":600,"Date":"12/8/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":761,"Cost":545,"Date":"5/15/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":575,"Cost":538,"Date":"7/4/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":945,"Cost":753,"Date":"11/1/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":638,"Cost":453,"Date":"3/17/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":275,"Cost":170,"Date":"7/10/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":875,"Cost":620,"Date":"10/4/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":128,"Cost":69,"Date":"1/20/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":576,"Cost":434,"Date":"5/15/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":88,"Cost":84,"Date":"11/18/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":668,"Cost":516,"Date":"6/10/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":511,"Cost":441,"Date":"9/29/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":255,"Cost":182,"Date":"1/24/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":914,"Cost":550,"Date":"7/4/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":148,"Cost":94,"Date":"12/1/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":995,"Cost":850,"Date":"2/16/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":682,"Cost":379,"Date":"5/17/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":62,"Cost":47,"Date":"8/6/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":806,"Cost":442,"Date":"11/27/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":763,"Cost":563,"Date":"3/19/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":498,"Cost":416,"Date":"10/6/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":504,"Cost":387,"Date":"4/20/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":148,"Cost":134,"Date":"6/14/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":247,"Cost":209,"Date":"9/3/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":785,"Cost":588,"Date":"3/9/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":474,"Cost":417,"Date":"6/11/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":453,"Cost":429,"Date":"9/14/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":646,"Cost":440,"Date":"11/25/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":985,"Cost":686,"Date":"4/14/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":594,"Cost":388,"Date":"10/8/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":866,"Cost":473,"Date":"3/20/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":402,"Cost":279,"Date":"9/2/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":291,"Cost":243,"Date":"12/8/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":783,"Cost":644,"Date":"5/4/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":593,"Cost":494,"Date":"11/2/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":914,"Cost":847,"Date":"1/9/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":682,"Cost":367,"Date":"4/9/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":589,"Cost":518,"Date":"7/14/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":876,"Cost":573,"Date":"9/29/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":400,"Cost":203,"Date":"2/27/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":788,"Cost":721,"Date":"8/23/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":657,"Cost":443,"Date":"1/28/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":101,"Cost":73,"Date":"6/3/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":324,"Cost":297,"Date":"8/16/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":453,"Cost":274,"Date":"2/28/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":567,"Cost":408,"Date":"5/10/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":185,"Cost":166,"Date":"8/31/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":73,"Cost":65,"Date":"10/30/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":298,"Cost":193,"Date":"3/14/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":3,"Cost":3,"Date":"7/27/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":258,"Cost":183,"Date":"3/10/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":218,"Cost":184,"Date":"7/21/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":968,"Cost":808,"Date":"11/9/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":999,"Cost":741,"Date":"3/12/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":460,"Cost":360,"Date":"9/2/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":645,"Cost":613,"Date":"12/20/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":655,"Cost":342,"Date":"3/8/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":386,"Cost":210,"Date":"7/4/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":273,"Cost":186,"Date":"9/1/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":407,"Cost":346,"Date":"1/20/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":780,"Cost":573,"Date":"8/5/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":474,"Cost":348,"Date":"1/8/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":998,"Cost":924,"Date":"5/16/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":39,"Cost":31,"Date":"7/9/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":448,"Cost":364,"Date":"11/2/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":155,"Cost":110,"Date":"3/23/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":430,"Cost":385,"Date":"7/11/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":242,"Cost":133,"Date":"10/10/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":272,"Cost":219,"Date":"2/8/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":493,"Cost":258,"Date":"5/25/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":51,"Cost":32,"Date":"12/1/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":501,"Cost":353,"Date":"6/16/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":825,"Cost":702,"Date":"10/2/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":745,"Cost":388,"Date":"2/3/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":245,"Cost":207,"Date":"7/13/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":507,"Cost":403,"Date":"12/4/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":82,"Cost":43,"Date":"2/18/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":170,"Cost":88,"Date":"5/22/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":900,"Cost":773,"Date":"8/7/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":436,"Cost":384,"Date":"12/5/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":293,"Cost":155,"Date":"3/28/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":888,"Cost":487,"Date":"10/19/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":47,"Cost":23,"Date":"4/24/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":557,"Cost":501,"Date":"6/20/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":998,"Cost":792,"Date":"9/16/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":19,"Cost":17,"Date":"3/11/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":198,"Cost":170,"Date":"6/16/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":740,"Cost":511,"Date":"9/19/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":668,"Cost":622,"Date":"1/10/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":469,"Cost":415,"Date":"5/3/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":556,"Cost":428,"Date":"10/26/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":229,"Cost":183,"Date":"3/26/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":550,"Cost":520,"Date":"9/4/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":433,"Cost":382,"Date":"12/11/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":437,"Cost":334,"Date":"6/8/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":589,"Cost":347,"Date":"11/4/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":208,"Cost":183,"Date":"2/5/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":45,"Cost":29,"Date":"4/10/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":870,"Cost":582,"Date":"7/19/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":164,"Cost":93,"Date":"11/7/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":53,"Cost":46,"Date":"3/1/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":143,"Cost":86,"Date":"9/3/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":374,"Cost":272,"Date":"1/31/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":166,"Cost":118,"Date":"6/5/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":629,"Cost":518,"Date":"8/23/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":480,"Cost":436,"Date":"3/4/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":916,"Cost":793,"Date":"5/20/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":384,"Cost":288,"Date":"9/8/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":935,"Cost":510,"Date":"11/1/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":273,"Cost":159,"Date":"3/27/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":688,"Cost":452,"Date":"9/17/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":491,"Cost":385,"Date":"3/16/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":164,"Cost":143,"Date":"7/25/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":334,"Cost":310,"Date":"11/23/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":4,"Cost":3,"Date":"4/19/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":796,"Cost":633,"Date":"9/29/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":73,"Cost":66,"Date":"12/20/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":825,"Cost":769,"Date":"4/2/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":611,"Cost":440,"Date":"7/8/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":423,"Cost":287,"Date":"9/1/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":483,"Cost":411,"Date":"2/2/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":675,"Cost":441,"Date":"8/12/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":273,"Cost":218,"Date":"1/14/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":916,"Cost":478,"Date":"5/18/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":739,"Cost":515,"Date":"7/12/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":75,"Cost":48,"Date":"12/17/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":331,"Cost":198,"Date":"4/1/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":38,"Cost":34,"Date":"8/28/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":910,"Cost":826,"Date":"10/17/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":559,"Cost":297,"Date":"2/25/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":913,"Cost":731,"Date":"5/26/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":380,"Cost":348,"Date":"2/9/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":222,"Cost":149,"Date":"6/25/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":254,"Cost":216,"Date":"10/15/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":332,"Cost":268,"Date":"2/4/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":451,"Cost":290,"Date":"8/8/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":250,"Cost":237,"Date":"12/7/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":51,"Cost":39,"Date":"2/22/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":184,"Cost":100,"Date":"6/20/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":363,"Cost":281,"Date":"8/22/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":285,"Cost":217,"Date":"12/26/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":257,"Cost":210,"Date":"5/21/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":66,"Cost":55,"Date":"11/15/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":135,"Cost":104,"Date":"4/28/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":34,"Cost":23,"Date":"6/24/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":44,"Cost":38,"Date":"10/4/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":603,"Cost":357,"Date":"3/17/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":842,"Cost":690,"Date":"6/16/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":502,"Cost":355,"Date":"9/25/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":377,"Cost":301,"Date":"1/14/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":490,"Cost":266,"Date":"5/9/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":249,"Cost":140,"Date":"11/16/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":646,"Cost":518,"Date":"6/2/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":708,"Cost":401,"Date":"9/19/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":313,"Cost":249,"Date":"1/15/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":368,"Cost":228,"Date":"6/26/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":447,"Cost":423,"Date":"11/7/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":723,"Cost":667,"Date":"2/16/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":537,"Cost":468,"Date":"4/19/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":854,"Cost":736,"Date":"8/1/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":292,"Cost":260,"Date":"11/26/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":460,"Cost":388,"Date":"3/1/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":864,"Cost":438,"Date":"9/5/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":505,"Cost":471,"Date":"3/27/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":972,"Cost":906,"Date":"6/7/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":943,"Cost":492,"Date":"9/2/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":327,"Cost":211,"Date":"3/9/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":788,"Cost":745,"Date":"6/2/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":206,"Cost":107,"Date":"9/13/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":900,"Cost":555,"Date":"11/15/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":44,"Cost":42,"Date":"4/5/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":794,"Cost":506,"Date":"10/6/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":128,"Cost":115,"Date":"3/18/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":925,"Cost":703,"Date":"8/4/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":841,"Cost":512,"Date":"11/30/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":831,"Cost":711,"Date":"5/3/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":834,"Cost":448,"Date":"10/12/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":382,"Cost":304,"Date":"12/21/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":628,"Cost":339,"Date":"4/3/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":764,"Cost":675,"Date":"7/9/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":147,"Cost":119,"Date":"9/17/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":617,"Cost":568,"Date":"2/8/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":975,"Cost":530,"Date":"8/21/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":959,"Cost":584,"Date":"1/19/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":737,"Cost":688,"Date":"6/2/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":667,"Cost":532,"Date":"8/14/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":636,"Cost":531,"Date":"2/10/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":755,"Cost":481,"Date":"5/7/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":661,"Cost":625,"Date":"8/29/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":488,"Cost":280,"Date":"10/28/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":480,"Cost":380,"Date":"3/7/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":9,"Cost":4,"Date":"5/31/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":399,"Cost":200,"Date":"2/11/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":706,"Cost":636,"Date":"7/19/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":416,"Cost":324,"Date":"10/30/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":781,"Cost":424,"Date":"3/9/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":601,"Cost":495,"Date":"8/26/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":617,"Cost":331,"Date":"12/18/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":856,"Cost":681,"Date":"2/25/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":447,"Cost":396,"Date":"7/1/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":295,"Cost":148,"Date":"8/31/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":971,"Cost":528,"Date":"12/31/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":884,"Cost":490,"Date":"7/21/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":548,"Cost":330,"Date":"12/8/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":507,"Cost":370,"Date":"5/15/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":579,"Cost":318,"Date":"7/4/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":143,"Cost":96,"Date":"11/1/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":467,"Cost":294,"Date":"3/17/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":702,"Cost":576,"Date":"7/10/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":715,"Cost":534,"Date":"10/4/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":504,"Cost":295,"Date":"1/20/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":796,"Cost":555,"Date":"5/15/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":131,"Cost":73,"Date":"11/18/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":293,"Cost":276,"Date":"6/10/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":86,"Cost":77,"Date":"9/29/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":430,"Cost":252,"Date":"1/24/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":458,"Cost":313,"Date":"7/4/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":909,"Cost":556,"Date":"12/1/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":267,"Cost":223,"Date":"2/16/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":987,"Cost":691,"Date":"5/17/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":131,"Cost":111,"Date":"8/6/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":441,"Cost":269,"Date":"11/27/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":113,"Cost":69,"Date":"3/19/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":610,"Cost":373,"Date":"10/6/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":572,"Cost":432,"Date":"4/20/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":793,"Cost":427,"Date":"6/14/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":919,"Cost":672,"Date":"9/3/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":379,"Cost":317,"Date":"3/9/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":630,"Cost":505,"Date":"6/11/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":856,"Cost":740,"Date":"9/14/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":456,"Cost":300,"Date":"11/25/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":556,"Cost":339,"Date":"4/14/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":79,"Cost":50,"Date":"10/8/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":177,"Cost":152,"Date":"3/20/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":875,"Cost":520,"Date":"9/2/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":420,"Cost":231,"Date":"12/8/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":916,"Cost":811,"Date":"5/4/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":657,"Cost":391,"Date":"11/2/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":846,"Cost":458,"Date":"1/9/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":55,"Cost":50,"Date":"4/9/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":982,"Cost":780,"Date":"7/14/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":341,"Cost":216,"Date":"9/29/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":497,"Cost":262,"Date":"2/27/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":848,"Cost":766,"Date":"8/23/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":793,"Cost":625,"Date":"1/28/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":635,"Cost":386,"Date":"6/3/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":477,"Cost":398,"Date":"8/16/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":88,"Cost":58,"Date":"2/28/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":595,"Cost":485,"Date":"5/10/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":160,"Cost":116,"Date":"8/31/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":325,"Cost":198,"Date":"10/30/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":487,"Cost":332,"Date":"3/14/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":923,"Cost":627,"Date":"7/27/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":699,"Cost":411,"Date":"3/10/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":826,"Cost":588,"Date":"7/21/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":863,"Cost":478,"Date":"11/9/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":559,"Cost":362,"Date":"3/12/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":760,"Cost":459,"Date":"9/2/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":185,"Cost":125,"Date":"12/20/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":282,"Cost":224,"Date":"3/8/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":549,"Cost":367,"Date":"7/4/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":792,"Cost":491,"Date":"9/1/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":253,"Cost":205,"Date":"1/20/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":451,"Cost":251,"Date":"8/5/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":975,"Cost":531,"Date":"1/8/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":775,"Cost":656,"Date":"5/16/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":878,"Cost":728,"Date":"7/9/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":443,"Cost":419,"Date":"11/2/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":551,"Cost":510,"Date":"3/23/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":448,"Cost":289,"Date":"7/11/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":442,"Cost":413,"Date":"10/10/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":504,"Cost":410,"Date":"2/8/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":799,"Cost":700,"Date":"5/25/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":337,"Cost":208,"Date":"12/1/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":464,"Cost":394,"Date":"6/16/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":56,"Cost":30,"Date":"10/2/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":261,"Cost":150,"Date":"2/3/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":147,"Cost":90,"Date":"7/13/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":780,"Cost":558,"Date":"12/4/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":398,"Cost":256,"Date":"2/18/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":518,"Cost":314,"Date":"5/22/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":48,"Cost":46,"Date":"8/7/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":831,"Cost":747,"Date":"12/5/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":878,"Cost":826,"Date":"3/28/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":287,"Cost":184,"Date":"10/19/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":548,"Cost":310,"Date":"4/24/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":401,"Cost":311,"Date":"6/20/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":34,"Cost":32,"Date":"9/16/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":143,"Cost":110,"Date":"3/11/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":711,"Cost":431,"Date":"6/16/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":399,"Cost":314,"Date":"9/19/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":973,"Cost":540,"Date":"1/10/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":905,"Cost":468,"Date":"5/3/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":644,"Cost":530,"Date":"10/26/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":292,"Cost":254,"Date":"3/26/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":359,"Cost":184,"Date":"9/4/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":125,"Cost":69,"Date":"12/11/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":592,"Cost":375,"Date":"6/8/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":752,"Cost":519,"Date":"11/4/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":597,"Cost":489,"Date":"2/5/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":168,"Cost":126,"Date":"4/10/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":496,"Cost":343,"Date":"7/19/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":277,"Cost":215,"Date":"11/7/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":885,"Cost":561,"Date":"3/1/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":660,"Cost":504,"Date":"9/3/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":603,"Cost":310,"Date":"1/31/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":38,"Cost":22,"Date":"6/5/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":605,"Cost":428,"Date":"8/23/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":834,"Cost":609,"Date":"3/4/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":173,"Cost":117,"Date":"5/20/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":140,"Cost":120,"Date":"9/8/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":447,"Cost":247,"Date":"11/1/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":853,"Cost":475,"Date":"3/27/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":728,"Cost":593,"Date":"9/17/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":224,"Cost":130,"Date":"3/16/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":956,"Cost":567,"Date":"7/25/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":711,"Cost":466,"Date":"11/23/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":771,"Cost":574,"Date":"4/19/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":837,"Cost":421,"Date":"9/29/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":487,"Cost":337,"Date":"12/20/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":294,"Cost":176,"Date":"4/2/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":101,"Cost":87,"Date":"7/8/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":670,"Cost":416,"Date":"9/1/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":479,"Cost":283,"Date":"2/2/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":679,"Cost":538,"Date":"8/12/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":629,"Cost":399,"Date":"1/14/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":56,"Cost":31,"Date":"5/18/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":486,"Cost":423,"Date":"7/12/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":499,"Cost":329,"Date":"12/17/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":65,"Cost":32,"Date":"4/1/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":124,"Cost":65,"Date":"8/28/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":856,"Cost":626,"Date":"10/17/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":47,"Cost":35,"Date":"2/25/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":189,"Cost":165,"Date":"5/26/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":827,"Cost":513,"Date":"2/9/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":326,"Cost":211,"Date":"6/25/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":606,"Cost":427,"Date":"10/15/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":722,"Cost":573,"Date":"2/4/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":586,"Cost":390,"Date":"8/8/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":192,"Cost":170,"Date":"12/7/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":445,"Cost":362,"Date":"2/22/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":292,"Cost":216,"Date":"6/20/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":439,"Cost":371,"Date":"8/22/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":643,"Cost":405,"Date":"12/26/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":244,"Cost":150,"Date":"5/21/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":666,"Cost":606,"Date":"11/15/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":36,"Cost":29,"Date":"4/28/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":986,"Cost":497,"Date":"6/24/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":340,"Cost":283,"Date":"10/4/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":53,"Cost":49,"Date":"3/17/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":128,"Cost":91,"Date":"6/16/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":257,"Cost":208,"Date":"9/25/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":311,"Cost":176,"Date":"1/14/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":627,"Cost":589,"Date":"5/9/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":823,"Cost":606,"Date":"11/16/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":261,"Cost":142,"Date":"6/2/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":10,"Cost":6,"Date":"9/19/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":186,"Cost":162,"Date":"1/15/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":504,"Cost":394,"Date":"6/26/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":839,"Cost":733,"Date":"11/7/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":273,"Cost":145,"Date":"2/16/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":947,"Cost":484,"Date":"4/19/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":55,"Cost":49,"Date":"8/1/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":894,"Cost":598,"Date":"11/26/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":573,"Cost":358,"Date":"3/1/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":385,"Cost":280,"Date":"9/5/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":727,"Cost":393,"Date":"3/27/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":735,"Cost":570,"Date":"6/7/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":734,"Cost":619,"Date":"9/2/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":263,"Cost":245,"Date":"3/9/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":408,"Cost":274,"Date":"6/2/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":538,"Cost":294,"Date":"9/13/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":291,"Cost":237,"Date":"11/15/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":707,"Cost":616,"Date":"4/5/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":22,"Cost":21,"Date":"10/6/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":99,"Cost":84,"Date":"3/18/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":530,"Cost":490,"Date":"8/4/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":505,"Cost":312,"Date":"11/30/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":96,"Cost":51,"Date":"5/3/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":284,"Cost":188,"Date":"10/12/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":231,"Cost":136,"Date":"12/21/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":269,"Cost":187,"Date":"4/3/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":720,"Cost":636,"Date":"7/9/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":440,"Cost":275,"Date":"9/17/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":304,"Cost":252,"Date":"2/8/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":148,"Cost":121,"Date":"8/21/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":187,"Cost":118,"Date":"1/19/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":679,"Cost":603,"Date":"6/2/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":863,"Cost":714,"Date":"8/14/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":566,"Cost":308,"Date":"2/10/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":507,"Cost":433,"Date":"5/7/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":185,"Cost":108,"Date":"8/29/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":493,"Cost":409,"Date":"10/28/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":547,"Cost":309,"Date":"3/7/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":582,"Cost":385,"Date":"5/31/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":771,"Cost":416,"Date":"2/11/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":712,"Cost":418,"Date":"7/19/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":635,"Cost":457,"Date":"10/30/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":99,"Cost":74,"Date":"3/9/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":433,"Cost":227,"Date":"8/26/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":61,"Cost":52,"Date":"12/18/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":73,"Cost":40,"Date":"2/25/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":115,"Cost":92,"Date":"7/1/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":567,"Cost":325,"Date":"8/31/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":816,"Cost":769,"Date":"12/31/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":937,"Cost":523,"Date":"7/21/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":549,"Cost":392,"Date":"12/8/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":363,"Cost":188,"Date":"5/15/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":505,"Cost":364,"Date":"7/4/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":926,"Cost":528,"Date":"11/1/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":380,"Cost":299,"Date":"3/17/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":191,"Cost":167,"Date":"7/10/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":436,"Cost":269,"Date":"10/4/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":596,"Cost":341,"Date":"1/20/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":363,"Cost":320,"Date":"5/15/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":470,"Cost":379,"Date":"11/18/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":493,"Cost":349,"Date":"6/10/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":964,"Cost":669,"Date":"9/29/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":628,"Cost":551,"Date":"1/24/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":195,"Cost":126,"Date":"7/4/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":990,"Cost":716,"Date":"12/1/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":279,"Cost":223,"Date":"2/16/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":243,"Cost":132,"Date":"5/17/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":740,"Cost":427,"Date":"8/6/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":166,"Cost":155,"Date":"11/27/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":459,"Cost":435,"Date":"3/19/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":354,"Cost":282,"Date":"10/6/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":911,"Cost":864,"Date":"4/20/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":506,"Cost":400,"Date":"6/14/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":480,"Cost":305,"Date":"9/3/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":114,"Cost":107,"Date":"3/9/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":990,"Cost":569,"Date":"6/11/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":960,"Cost":594,"Date":"9/14/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":609,"Cost":404,"Date":"11/25/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":345,"Cost":244,"Date":"4/14/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":724,"Cost":498,"Date":"10/8/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":76,"Cost":64,"Date":"3/20/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":633,"Cost":423,"Date":"9/2/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":999,"Cost":811,"Date":"12/8/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":533,"Cost":348,"Date":"5/4/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":404,"Cost":284,"Date":"11/2/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":795,"Cost":725,"Date":"1/9/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":137,"Cost":108,"Date":"4/9/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":982,"Cost":555,"Date":"7/14/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":574,"Cost":450,"Date":"9/29/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":977,"Cost":692,"Date":"2/27/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":127,"Cost":96,"Date":"8/23/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":433,"Cost":247,"Date":"1/28/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":234,"Cost":142,"Date":"6/3/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":817,"Cost":544,"Date":"8/16/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":473,"Cost":273,"Date":"2/28/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":188,"Cost":157,"Date":"5/10/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":181,"Cost":101,"Date":"8/31/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":198,"Cost":169,"Date":"10/30/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":711,"Cost":402,"Date":"3/14/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":222,"Cost":204,"Date":"7/27/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":878,"Cost":537,"Date":"3/10/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":556,"Cost":523,"Date":"7/21/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":875,"Cost":819,"Date":"11/9/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":759,"Cost":437,"Date":"3/12/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":430,"Cost":233,"Date":"9/2/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":758,"Cost":587,"Date":"12/20/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":493,"Cost":320,"Date":"3/8/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":330,"Cost":178,"Date":"7/4/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":364,"Cost":210,"Date":"9/1/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":239,"Cost":138,"Date":"1/20/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":159,"Cost":112,"Date":"8/5/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":18,"Cost":11,"Date":"1/8/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":144,"Cost":76,"Date":"5/16/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":665,"Cost":617,"Date":"7/9/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":631,"Cost":577,"Date":"11/2/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":132,"Cost":97,"Date":"3/23/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":117,"Cost":59,"Date":"7/11/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":369,"Cost":283,"Date":"10/10/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":707,"Cost":571,"Date":"2/8/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":558,"Cost":441,"Date":"5/25/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":342,"Cost":184,"Date":"12/1/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":432,"Cost":249,"Date":"6/16/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":696,"Cost":377,"Date":"10/2/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":863,"Cost":744,"Date":"2/3/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":280,"Cost":179,"Date":"7/13/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":447,"Cost":333,"Date":"12/4/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":465,"Cost":400,"Date":"2/18/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":275,"Cost":213,"Date":"5/22/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":492,"Cost":407,"Date":"8/7/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":37,"Cost":21,"Date":"12/5/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":220,"Cost":181,"Date":"3/28/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":143,"Cost":81,"Date":"10/19/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":539,"Cost":359,"Date":"4/24/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":904,"Cost":523,"Date":"6/20/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":834,"Cost":701,"Date":"9/16/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":962,"Cost":541,"Date":"3/11/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":618,"Cost":580,"Date":"6/16/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":974,"Cost":898,"Date":"9/19/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":228,"Cost":157,"Date":"1/10/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":456,"Cost":402,"Date":"5/3/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":992,"Cost":541,"Date":"10/26/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":417,"Cost":328,"Date":"3/26/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":211,"Cost":192,"Date":"9/4/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":254,"Cost":181,"Date":"12/11/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":651,"Cost":463,"Date":"6/8/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":110,"Cost":92,"Date":"11/4/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":137,"Cost":70,"Date":"2/5/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":458,"Cost":357,"Date":"4/10/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":551,"Cost":349,"Date":"7/19/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":528,"Cost":489,"Date":"11/7/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":828,"Cost":500,"Date":"3/1/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":743,"Cost":700,"Date":"9/3/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":811,"Cost":518,"Date":"1/31/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":702,"Cost":367,"Date":"6/5/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":251,"Cost":231,"Date":"8/23/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":324,"Cost":202,"Date":"3/4/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":1000,"Cost":821,"Date":"5/20/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":689,"Cost":562,"Date":"9/8/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":703,"Cost":477,"Date":"11/1/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":179,"Cost":153,"Date":"3/27/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":661,"Cost":452,"Date":"9/17/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":186,"Cost":160,"Date":"3/16/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":57,"Cost":54,"Date":"7/25/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":188,"Cost":135,"Date":"11/23/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":564,"Cost":530,"Date":"4/19/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":529,"Cost":473,"Date":"9/29/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":840,"Cost":640,"Date":"12/20/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":85,"Cost":65,"Date":"4/2/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":329,"Cost":301,"Date":"7/8/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":704,"Cost":569,"Date":"9/1/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":335,"Cost":180,"Date":"2/2/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":849,"Cost":485,"Date":"8/12/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":646,"Cost":485,"Date":"1/14/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":381,"Cost":199,"Date":"5/18/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":192,"Cost":147,"Date":"7/12/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":99,"Cost":75,"Date":"12/17/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":667,"Cost":565,"Date":"4/1/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":860,"Cost":580,"Date":"8/28/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":782,"Cost":441,"Date":"10/17/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":509,"Cost":350,"Date":"2/25/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":747,"Cost":509,"Date":"5/26/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":303,"Cost":197,"Date":"2/9/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":521,"Cost":418,"Date":"6/25/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":479,"Cost":389,"Date":"10/15/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":220,"Cost":118,"Date":"2/4/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":162,"Cost":144,"Date":"8/8/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":335,"Cost":218,"Date":"12/7/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":796,"Cost":450,"Date":"2/22/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":556,"Cost":318,"Date":"6/20/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":701,"Cost":364,"Date":"8/22/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":905,"Cost":835,"Date":"12/26/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":238,"Cost":138,"Date":"5/21/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":409,"Cost":302,"Date":"11/15/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":998,"Cost":692,"Date":"4/28/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":377,"Cost":345,"Date":"6/24/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":407,"Cost":312,"Date":"10/4/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":390,"Cost":258,"Date":"3/17/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":709,"Cost":490,"Date":"6/16/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":301,"Cost":151,"Date":"9/25/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":542,"Cost":459,"Date":"1/14/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":642,"Cost":451,"Date":"5/9/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":316,"Cost":198,"Date":"11/16/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":683,"Cost":359,"Date":"6/2/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":87,"Cost":80,"Date":"9/19/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":506,"Cost":422,"Date":"1/15/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":137,"Cost":107,"Date":"6/26/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":426,"Cost":222,"Date":"11/7/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":575,"Cost":520,"Date":"2/16/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":946,"Cost":767,"Date":"4/19/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":670,"Cost":557,"Date":"8/1/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":551,"Cost":498,"Date":"11/26/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":783,"Cost":600,"Date":"3/1/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":350,"Cost":260,"Date":"9/5/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":482,"Cost":245,"Date":"3/27/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":547,"Cost":426,"Date":"6/7/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":502,"Cost":381,"Date":"9/2/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":714,"Cost":579,"Date":"3/9/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":320,"Cost":297,"Date":"6/2/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":453,"Cost":392,"Date":"9/13/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":377,"Cost":197,"Date":"11/15/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":366,"Cost":224,"Date":"4/5/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":330,"Cost":237,"Date":"10/6/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":619,"Cost":570,"Date":"3/18/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":639,"Cost":459,"Date":"8/4/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":777,"Cost":605,"Date":"11/30/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":395,"Cost":279,"Date":"5/3/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":948,"Cost":562,"Date":"10/12/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":68,"Cost":46,"Date":"12/21/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":742,"Cost":593,"Date":"4/3/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":707,"Cost":600,"Date":"7/9/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":319,"Cost":301,"Date":"9/17/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":219,"Cost":134,"Date":"2/8/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":592,"Cost":448,"Date":"8/21/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":879,"Cost":799,"Date":"1/19/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":978,"Cost":757,"Date":"6/2/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":782,"Cost":674,"Date":"8/14/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":61,"Cost":46,"Date":"2/10/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":401,"Cost":304,"Date":"5/7/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":312,"Cost":195,"Date":"8/29/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":319,"Cost":215,"Date":"10/28/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":975,"Cost":626,"Date":"3/7/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":820,"Cost":557,"Date":"5/31/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":653,"Cost":547,"Date":"2/11/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":554,"Cost":423,"Date":"7/19/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":166,"Cost":147,"Date":"10/30/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":904,"Cost":453,"Date":"3/9/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":486,"Cost":449,"Date":"8/26/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":897,"Cost":554,"Date":"12/18/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":804,"Cost":417,"Date":"2/25/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":534,"Cost":461,"Date":"7/1/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":584,"Cost":391,"Date":"8/31/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":568,"Cost":314,"Date":"12/31/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":116,"Cost":101,"Date":"7/21/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":426,"Cost":345,"Date":"12/8/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":426,"Cost":399,"Date":"5/15/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":177,"Cost":149,"Date":"7/4/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":822,"Cost":770,"Date":"11/1/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":845,"Cost":646,"Date":"3/17/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":131,"Cost":121,"Date":"7/10/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":370,"Cost":335,"Date":"10/4/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":128,"Cost":101,"Date":"1/20/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":594,"Cost":542,"Date":"5/15/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":460,"Cost":261,"Date":"11/18/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":668,"Cost":579,"Date":"6/10/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":620,"Cost":512,"Date":"9/29/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":920,"Cost":586,"Date":"1/24/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":515,"Cost":473,"Date":"7/4/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":369,"Cost":343,"Date":"12/1/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":469,"Cost":367,"Date":"2/16/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":634,"Cost":368,"Date":"5/17/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":397,"Cost":342,"Date":"8/6/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":868,"Cost":632,"Date":"11/27/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":671,"Cost":630,"Date":"3/19/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":575,"Cost":437,"Date":"10/6/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":752,"Cost":704,"Date":"4/20/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":972,"Cost":830,"Date":"6/14/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":865,"Cost":758,"Date":"9/3/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":19,"Cost":18,"Date":"3/9/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":834,"Cost":669,"Date":"6/11/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":447,"Cost":243,"Date":"9/14/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":351,"Cost":194,"Date":"11/25/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":454,"Cost":352,"Date":"4/14/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":899,"Cost":634,"Date":"10/8/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":66,"Cost":49,"Date":"3/20/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":827,"Cost":650,"Date":"9/2/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":778,"Cost":590,"Date":"12/8/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":737,"Cost":376,"Date":"5/4/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":769,"Cost":712,"Date":"11/2/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":570,"Cost":495,"Date":"1/9/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":851,"Cost":691,"Date":"4/9/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":75,"Cost":44,"Date":"7/14/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":669,"Cost":609,"Date":"9/29/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":569,"Cost":447,"Date":"2/27/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":184,"Cost":154,"Date":"8/23/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":474,"Cost":322,"Date":"1/28/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":762,"Cost":669,"Date":"6/3/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":218,"Cost":184,"Date":"8/16/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":899,"Cost":668,"Date":"2/28/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":530,"Cost":473,"Date":"5/10/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":655,"Cost":614,"Date":"8/31/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":271,"Cost":175,"Date":"10/30/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":268,"Cost":208,"Date":"3/14/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":943,"Cost":587,"Date":"7/27/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":423,"Cost":375,"Date":"3/10/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":521,"Cost":349,"Date":"7/21/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":21,"Cost":16,"Date":"11/9/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":657,"Cost":424,"Date":"3/12/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":707,"Cost":481,"Date":"9/2/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":650,"Cost":613,"Date":"12/20/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":83,"Cost":49,"Date":"3/8/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":351,"Cost":291,"Date":"7/4/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":191,"Cost":171,"Date":"9/1/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":185,"Cost":125,"Date":"1/20/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":882,"Cost":838,"Date":"8/5/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":474,"Cost":292,"Date":"1/8/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":222,"Cost":188,"Date":"5/16/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":322,"Cost":221,"Date":"7/9/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":241,"Cost":215,"Date":"11/2/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":510,"Cost":332,"Date":"3/23/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":508,"Cost":257,"Date":"7/11/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":681,"Cost":587,"Date":"10/10/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":207,"Cost":137,"Date":"2/8/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":285,"Cost":204,"Date":"5/25/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":869,"Cost":511,"Date":"12/1/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":468,"Cost":269,"Date":"6/16/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":509,"Cost":325,"Date":"10/2/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":879,"Cost":775,"Date":"2/3/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":667,"Cost":343,"Date":"7/13/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":685,"Cost":468,"Date":"12/4/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":975,"Cost":510,"Date":"2/18/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":382,"Cost":318,"Date":"5/22/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":823,"Cost":529,"Date":"8/7/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":702,"Cost":555,"Date":"12/5/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":438,"Cost":376,"Date":"3/28/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":912,"Cost":659,"Date":"10/19/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":212,"Cost":147,"Date":"4/24/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":467,"Cost":360,"Date":"6/20/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":559,"Cost":280,"Date":"9/16/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":633,"Cost":511,"Date":"3/11/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":569,"Cost":288,"Date":"6/16/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":304,"Cost":226,"Date":"9/19/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":351,"Cost":187,"Date":"1/10/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":48,"Cost":42,"Date":"5/3/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":797,"Cost":642,"Date":"10/26/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":252,"Cost":183,"Date":"3/26/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":868,"Cost":672,"Date":"9/4/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":659,"Cost":470,"Date":"12/11/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":21,"Cost":15,"Date":"6/8/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":785,"Cost":407,"Date":"11/4/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":908,"Cost":718,"Date":"2/5/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":23,"Cost":18,"Date":"4/10/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":678,"Cost":568,"Date":"7/19/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":867,"Cost":649,"Date":"11/7/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":652,"Cost":521,"Date":"3/1/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":13,"Cost":10,"Date":"9/3/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":786,"Cost":714,"Date":"1/31/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":180,"Cost":135,"Date":"6/5/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":116,"Cost":106,"Date":"8/23/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":910,"Cost":652,"Date":"3/4/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":619,"Cost":498,"Date":"5/20/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":581,"Cost":373,"Date":"9/8/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":430,"Cost":288,"Date":"11/1/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":269,"Cost":254,"Date":"3/27/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":290,"Cost":198,"Date":"9/17/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":584,"Cost":448,"Date":"3/16/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":577,"Cost":438,"Date":"7/25/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":533,"Cost":328,"Date":"11/23/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":373,"Cost":254,"Date":"4/19/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":256,"Cost":230,"Date":"9/29/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":347,"Cost":177,"Date":"12/20/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":65,"Cost":39,"Date":"4/2/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":111,"Cost":84,"Date":"7/8/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":119,"Cost":97,"Date":"9/1/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":615,"Cost":495,"Date":"2/2/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":486,"Cost":285,"Date":"8/12/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":966,"Cost":636,"Date":"1/14/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":491,"Cost":394,"Date":"5/18/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":47,"Cost":33,"Date":"7/12/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":720,"Cost":620,"Date":"12/17/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":56,"Cost":51,"Date":"4/1/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":514,"Cost":328,"Date":"8/28/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":924,"Cost":544,"Date":"10/17/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":863,"Cost":720,"Date":"2/25/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":389,"Cost":203,"Date":"5/26/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":655,"Cost":561,"Date":"2/9/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":272,"Cost":196,"Date":"6/25/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":904,"Cost":807,"Date":"10/15/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":307,"Cost":270,"Date":"2/4/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":725,"Cost":581,"Date":"8/8/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":493,"Cost":305,"Date":"12/7/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":50,"Cost":46,"Date":"2/22/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":739,"Cost":684,"Date":"6/20/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":816,"Cost":429,"Date":"8/22/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":992,"Cost":774,"Date":"12/26/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":872,"Cost":769,"Date":"5/21/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":843,"Cost":542,"Date":"11/15/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":535,"Cost":420,"Date":"4/28/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":761,"Cost":647,"Date":"6/24/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":662,"Cost":459,"Date":"10/4/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":683,"Cost":447,"Date":"3/17/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":234,"Cost":173,"Date":"6/16/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":196,"Cost":174,"Date":"9/25/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":610,"Cost":565,"Date":"1/14/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":432,"Cost":342,"Date":"5/9/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":789,"Cost":594,"Date":"11/16/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":824,"Cost":535,"Date":"6/2/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":204,"Cost":144,"Date":"9/19/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":189,"Cost":164,"Date":"1/15/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":424,"Cost":338,"Date":"6/26/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":321,"Cost":253,"Date":"11/7/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":142,"Cost":104,"Date":"2/16/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":257,"Cost":211,"Date":"4/19/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":370,"Cost":336,"Date":"8/1/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":770,"Cost":629,"Date":"11/26/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":757,"Cost":455,"Date":"3/1/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":473,"Cost":366,"Date":"9/5/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":614,"Cost":400,"Date":"3/27/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":474,"Cost":332,"Date":"6/7/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":498,"Cost":305,"Date":"9/2/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":901,"Cost":815,"Date":"3/9/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":231,"Cost":133,"Date":"6/2/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":473,"Cost":436,"Date":"9/13/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":718,"Cost":629,"Date":"11/15/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":832,"Cost":444,"Date":"4/5/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":562,"Cost":312,"Date":"10/6/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":743,"Cost":588,"Date":"3/18/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":831,"Cost":554,"Date":"8/4/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":243,"Cost":163,"Date":"11/30/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":78,"Cost":48,"Date":"5/3/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":579,"Cost":400,"Date":"10/12/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":11,"Cost":8,"Date":"12/21/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":593,"Cost":375,"Date":"4/3/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":461,"Cost":358,"Date":"7/9/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":923,"Cost":739,"Date":"9/17/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":65,"Cost":47,"Date":"2/8/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":66,"Cost":57,"Date":"8/21/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":487,"Cost":424,"Date":"1/19/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":385,"Cost":198,"Date":"6/2/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":228,"Cost":132,"Date":"8/14/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":989,"Cost":738,"Date":"2/10/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":863,"Cost":761,"Date":"5/7/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":298,"Cost":225,"Date":"8/29/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":686,"Cost":426,"Date":"10/28/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":21,"Cost":15,"Date":"3/7/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":332,"Cost":299,"Date":"5/31/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":506,"Cost":338,"Date":"2/11/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":532,"Cost":502,"Date":"7/19/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":579,"Cost":531,"Date":"10/30/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":794,"Cost":476,"Date":"3/9/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":595,"Cost":487,"Date":"8/26/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":953,"Cost":527,"Date":"12/18/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":351,"Cost":224,"Date":"2/25/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":253,"Cost":179,"Date":"7/1/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":370,"Cost":314,"Date":"8/31/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":167,"Cost":91,"Date":"12/31/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":658,"Cost":365,"Date":"7/21/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":936,"Cost":804,"Date":"12/8/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":390,"Cost":227,"Date":"5/15/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":367,"Cost":296,"Date":"7/4/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":35,"Cost":31,"Date":"11/1/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":147,"Cost":127,"Date":"3/17/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":459,"Cost":391,"Date":"7/10/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":920,"Cost":715,"Date":"10/4/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":651,"Cost":491,"Date":"1/20/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":692,"Cost":583,"Date":"5/15/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":138,"Cost":106,"Date":"11/18/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":89,"Cost":74,"Date":"6/10/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":329,"Cost":246,"Date":"9/29/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":267,"Cost":232,"Date":"1/24/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":1,"Cost":1,"Date":"7/4/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":56,"Cost":52,"Date":"12/1/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":14,"Cost":7,"Date":"2/16/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":476,"Cost":426,"Date":"5/17/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":949,"Cost":837,"Date":"8/6/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":525,"Cost":419,"Date":"11/27/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":774,"Cost":417,"Date":"3/19/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":867,"Cost":693,"Date":"10/6/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":99,"Cost":74,"Date":"4/20/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":761,"Cost":458,"Date":"6/14/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":365,"Cost":318,"Date":"9/3/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":840,"Cost":432,"Date":"3/9/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":699,"Cost":558,"Date":"6/11/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":738,"Cost":417,"Date":"9/14/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":31,"Cost":23,"Date":"11/25/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":557,"Cost":404,"Date":"4/14/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":851,"Cost":543,"Date":"10/8/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":725,"Cost":391,"Date":"3/20/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":683,"Cost":536,"Date":"9/2/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":412,"Cost":231,"Date":"12/8/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":866,"Cost":499,"Date":"5/4/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":202,"Cost":112,"Date":"11/2/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":212,"Cost":160,"Date":"1/9/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":499,"Cost":408,"Date":"4/9/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":164,"Cost":120,"Date":"7/14/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":355,"Cost":302,"Date":"9/29/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":275,"Cost":152,"Date":"2/27/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":362,"Cost":251,"Date":"8/23/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":999,"Cost":715,"Date":"1/28/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":731,"Cost":616,"Date":"6/3/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":142,"Cost":89,"Date":"8/16/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":632,"Cost":394,"Date":"2/28/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":929,"Cost":504,"Date":"5/10/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":718,"Cost":445,"Date":"8/31/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":484,"Cost":255,"Date":"10/30/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":902,"Cost":829,"Date":"3/14/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":787,"Cost":732,"Date":"7/27/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":893,"Cost":826,"Date":"3/10/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":621,"Cost":494,"Date":"7/21/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":103,"Cost":93,"Date":"11/9/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":272,"Cost":236,"Date":"3/12/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":207,"Cost":187,"Date":"9/2/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":198,"Cost":114,"Date":"12/20/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":35,"Cost":23,"Date":"3/8/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":590,"Cost":494,"Date":"7/4/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":4,"Cost":4,"Date":"9/1/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":981,"Cost":717,"Date":"1/20/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":662,"Cost":549,"Date":"8/5/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":277,"Cost":233,"Date":"1/8/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":768,"Cost":433,"Date":"5/16/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":865,"Cost":750,"Date":"7/9/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":350,"Cost":230,"Date":"11/2/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":403,"Cost":342,"Date":"3/23/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":932,"Cost":630,"Date":"7/11/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":530,"Cost":371,"Date":"10/10/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":182,"Cost":154,"Date":"2/8/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":846,"Cost":626,"Date":"5/25/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":300,"Cost":160,"Date":"12/1/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":89,"Cost":57,"Date":"6/16/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":61,"Cost":52,"Date":"10/2/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":339,"Cost":199,"Date":"2/3/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":121,"Cost":104,"Date":"7/13/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":24,"Cost":21,"Date":"12/4/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":804,"Cost":506,"Date":"2/18/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":952,"Cost":636,"Date":"5/22/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":222,"Cost":148,"Date":"8/7/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":838,"Cost":608,"Date":"12/5/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":879,"Cost":457,"Date":"3/28/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":275,"Cost":148,"Date":"10/19/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":279,"Cost":175,"Date":"4/24/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":911,"Cost":602,"Date":"6/20/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":842,"Cost":672,"Date":"9/16/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":402,"Cost":339,"Date":"3/11/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":193,"Cost":163,"Date":"6/16/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":541,"Cost":296,"Date":"9/19/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":46,"Cost":42,"Date":"1/10/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":751,"Cost":680,"Date":"5/3/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":567,"Cost":437,"Date":"10/26/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":66,"Cost":49,"Date":"3/26/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":872,"Cost":458,"Date":"9/4/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":127,"Cost":90,"Date":"12/11/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":537,"Cost":424,"Date":"6/8/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":224,"Cost":187,"Date":"11/4/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":954,"Cost":586,"Date":"2/5/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":385,"Cost":248,"Date":"4/10/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":440,"Cost":384,"Date":"7/19/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":603,"Cost":547,"Date":"11/7/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":654,"Cost":417,"Date":"3/1/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":989,"Cost":518,"Date":"9/3/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":460,"Cost":315,"Date":"1/31/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":605,"Cost":439,"Date":"6/5/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":23,"Cost":12,"Date":"8/23/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":624,"Cost":369,"Date":"3/4/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":881,"Cost":650,"Date":"5/20/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":848,"Cost":454,"Date":"9/8/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":944,"Cost":498,"Date":"11/1/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":877,"Cost":578,"Date":"3/27/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":888,"Cost":581,"Date":"9/17/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":37,"Cost":24,"Date":"3/16/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":309,"Cost":290,"Date":"7/25/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":330,"Cost":169,"Date":"11/23/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":681,"Cost":407,"Date":"4/19/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":524,"Cost":482,"Date":"9/29/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":183,"Cost":131,"Date":"12/20/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":555,"Cost":301,"Date":"4/2/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":796,"Cost":557,"Date":"7/8/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":766,"Cost":722,"Date":"9/1/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":778,"Cost":634,"Date":"2/2/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":619,"Cost":405,"Date":"8/12/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":127,"Cost":106,"Date":"1/14/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":222,"Cost":113,"Date":"5/18/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":608,"Cost":525,"Date":"7/12/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":890,"Cost":557,"Date":"12/17/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":336,"Cost":283,"Date":"4/1/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":951,"Cost":855,"Date":"8/28/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":515,"Cost":463,"Date":"10/17/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":90,"Cost":61,"Date":"2/25/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":475,"Cost":396,"Date":"5/26/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":832,"Cost":545,"Date":"2/9/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":396,"Cost":245,"Date":"6/25/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":144,"Cost":108,"Date":"10/15/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":827,"Cost":582,"Date":"2/4/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":283,"Cost":174,"Date":"8/8/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":532,"Cost":303,"Date":"12/7/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":657,"Cost":475,"Date":"2/22/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":564,"Cost":416,"Date":"6/20/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":435,"Cost":228,"Date":"8/22/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":780,"Cost":616,"Date":"12/26/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":639,"Cost":411,"Date":"5/21/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":393,"Cost":328,"Date":"11/15/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":759,"Cost":389,"Date":"4/28/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":612,"Cost":322,"Date":"6/24/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":307,"Cost":229,"Date":"10/4/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":61,"Cost":47,"Date":"3/17/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":818,"Cost":555,"Date":"6/16/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":665,"Cost":377,"Date":"9/25/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":918,"Cost":860,"Date":"1/14/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":881,"Cost":827,"Date":"5/9/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":407,"Cost":347,"Date":"11/16/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":337,"Cost":185,"Date":"6/2/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":315,"Cost":186,"Date":"9/19/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":461,"Cost":385,"Date":"1/15/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":679,"Cost":354,"Date":"6/26/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":448,"Cost":373,"Date":"11/7/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":683,"Cost":457,"Date":"2/16/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":894,"Cost":717,"Date":"4/19/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":773,"Cost":574,"Date":"8/1/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":60,"Cost":30,"Date":"11/26/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":243,"Cost":137,"Date":"3/1/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":703,"Cost":641,"Date":"9/5/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":525,"Cost":355,"Date":"3/27/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":597,"Cost":504,"Date":"6/7/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":850,"Cost":656,"Date":"9/2/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":360,"Cost":277,"Date":"3/9/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":99,"Cost":68,"Date":"6/2/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":685,"Cost":555,"Date":"9/13/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":551,"Cost":521,"Date":"11/15/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":442,"Cost":293,"Date":"4/5/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":292,"Cost":247,"Date":"10/6/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":52,"Cost":48,"Date":"3/18/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":280,"Cost":174,"Date":"8/4/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":765,"Cost":634,"Date":"11/30/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":409,"Cost":294,"Date":"5/3/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":475,"Cost":251,"Date":"10/12/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":125,"Cost":99,"Date":"12/21/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":100,"Cost":75,"Date":"4/3/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":628,"Cost":315,"Date":"7/9/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":340,"Cost":318,"Date":"9/17/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":743,"Cost":617,"Date":"2/8/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":47,"Cost":34,"Date":"8/21/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":757,"Cost":522,"Date":"1/19/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":508,"Cost":459,"Date":"6/2/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":840,"Cost":490,"Date":"8/14/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":402,"Cost":318,"Date":"2/10/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":619,"Cost":470,"Date":"5/7/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":337,"Cost":197,"Date":"8/29/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":847,"Cost":658,"Date":"10/28/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":878,"Cost":765,"Date":"3/7/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":126,"Cost":118,"Date":"5/31/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":654,"Cost":575,"Date":"2/11/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":716,"Cost":433,"Date":"7/19/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":742,"Cost":429,"Date":"10/30/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":135,"Cost":122,"Date":"3/9/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":789,"Cost":468,"Date":"8/26/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":562,"Cost":395,"Date":"12/18/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":694,"Cost":459,"Date":"2/25/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":462,"Cost":243,"Date":"7/1/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":492,"Cost":386,"Date":"8/31/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":8,"Cost":4,"Date":"12/31/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":475,"Cost":281,"Date":"7/21/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":191,"Cost":161,"Date":"12/8/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":700,"Cost":460,"Date":"5/15/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":323,"Cost":252,"Date":"7/4/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":171,"Cost":138,"Date":"11/1/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":539,"Cost":296,"Date":"3/17/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":508,"Cost":321,"Date":"7/10/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":80,"Cost":55,"Date":"10/4/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":366,"Cost":346,"Date":"1/20/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":407,"Cost":309,"Date":"5/15/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":916,"Cost":866,"Date":"11/18/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":828,"Cost":566,"Date":"6/10/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":317,"Cost":232,"Date":"9/29/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":336,"Cost":179,"Date":"1/24/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":265,"Cost":190,"Date":"7/4/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":519,"Cost":413,"Date":"12/1/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":975,"Cost":808,"Date":"2/16/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":516,"Cost":397,"Date":"5/17/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":993,"Cost":564,"Date":"8/6/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":202,"Cost":132,"Date":"11/27/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":24,"Cost":20,"Date":"3/19/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":870,"Cost":466,"Date":"10/6/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":225,"Cost":153,"Date":"4/20/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":70,"Cost":45,"Date":"6/14/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":853,"Cost":500,"Date":"9/3/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":197,"Cost":136,"Date":"3/9/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":280,"Cost":220,"Date":"6/11/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":894,"Cost":798,"Date":"9/14/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":564,"Cost":497,"Date":"11/25/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":64,"Cost":53,"Date":"4/14/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":299,"Cost":173,"Date":"10/8/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":74,"Cost":41,"Date":"3/20/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":788,"Cost":573,"Date":"9/2/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":789,"Cost":516,"Date":"12/8/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":978,"Cost":512,"Date":"5/4/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":839,"Cost":511,"Date":"11/2/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":874,"Cost":788,"Date":"1/9/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":703,"Cost":648,"Date":"4/9/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":163,"Cost":146,"Date":"7/14/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":500,"Cost":455,"Date":"9/29/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":989,"Cost":900,"Date":"2/27/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":772,"Cost":574,"Date":"8/23/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":745,"Cost":686,"Date":"1/28/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":291,"Cost":247,"Date":"6/3/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":418,"Cost":302,"Date":"8/16/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":830,"Cost":533,"Date":"2/28/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":423,"Cost":270,"Date":"5/10/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":253,"Cost":140,"Date":"8/31/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":136,"Cost":117,"Date":"10/30/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":937,"Cost":612,"Date":"3/14/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":67,"Cost":45,"Date":"7/27/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":495,"Cost":426,"Date":"3/10/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":560,"Cost":302,"Date":"7/21/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":173,"Cost":103,"Date":"11/9/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":401,"Cost":345,"Date":"3/12/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":857,"Cost":684,"Date":"9/2/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":67,"Cost":35,"Date":"12/20/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":366,"Cost":298,"Date":"3/8/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":653,"Cost":540,"Date":"7/4/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":118,"Cost":76,"Date":"9/1/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":727,"Cost":461,"Date":"1/20/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":310,"Cost":197,"Date":"8/5/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":879,"Cost":479,"Date":"1/8/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":824,"Cost":484,"Date":"5/16/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":841,"Cost":583,"Date":"7/9/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":611,"Cost":344,"Date":"11/2/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":319,"Cost":297,"Date":"3/23/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":413,"Cost":377,"Date":"7/11/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":670,"Cost":375,"Date":"10/10/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":989,"Cost":586,"Date":"2/8/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":697,"Cost":646,"Date":"5/25/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":932,"Cost":710,"Date":"12/1/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":626,"Cost":504,"Date":"6/16/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":804,"Cost":605,"Date":"10/2/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":219,"Cost":130,"Date":"2/3/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":94,"Cost":56,"Date":"7/13/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":46,"Cost":33,"Date":"12/4/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":395,"Cost":234,"Date":"2/18/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":523,"Cost":353,"Date":"5/22/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":731,"Cost":369,"Date":"8/7/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":538,"Cost":359,"Date":"12/5/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":231,"Cost":150,"Date":"3/28/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":936,"Cost":774,"Date":"10/19/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":675,"Cost":464,"Date":"4/24/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":446,"Cost":358,"Date":"6/20/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":37,"Cost":20,"Date":"9/16/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":374,"Cost":204,"Date":"3/11/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":810,"Cost":600,"Date":"6/16/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":148,"Cost":100,"Date":"9/19/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":41,"Cost":37,"Date":"1/10/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":470,"Cost":288,"Date":"5/3/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":277,"Cost":256,"Date":"10/26/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":169,"Cost":149,"Date":"3/26/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":273,"Cost":186,"Date":"9/4/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":169,"Cost":124,"Date":"12/11/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":719,"Cost":360,"Date":"6/8/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":808,"Cost":519,"Date":"11/4/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":254,"Cost":222,"Date":"2/5/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":60,"Cost":45,"Date":"4/10/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":60,"Cost":39,"Date":"7/19/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":844,"Cost":729,"Date":"11/7/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":553,"Cost":487,"Date":"3/1/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":144,"Cost":110,"Date":"9/3/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":263,"Cost":173,"Date":"1/31/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":717,"Cost":495,"Date":"6/5/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":28,"Cost":16,"Date":"8/23/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":698,"Cost":496,"Date":"3/4/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":580,"Cost":376,"Date":"5/20/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":954,"Cost":491,"Date":"9/8/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":132,"Cost":92,"Date":"11/1/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":418,"Cost":345,"Date":"3/27/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":286,"Cost":244,"Date":"9/17/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":729,"Cost":543,"Date":"3/16/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":208,"Cost":136,"Date":"7/25/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":393,"Cost":226,"Date":"11/23/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":939,"Cost":809,"Date":"4/19/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":176,"Cost":138,"Date":"9/29/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":398,"Cost":322,"Date":"12/20/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":577,"Cost":504,"Date":"4/2/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":551,"Cost":513,"Date":"7/8/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":383,"Cost":353,"Date":"9/1/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":286,"Cost":222,"Date":"2/2/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":597,"Cost":392,"Date":"8/12/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":416,"Cost":365,"Date":"1/14/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":133,"Cost":79,"Date":"5/18/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":440,"Cost":393,"Date":"7/12/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":586,"Cost":425,"Date":"12/17/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":615,"Cost":341,"Date":"4/1/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":521,"Cost":481,"Date":"8/28/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":282,"Cost":243,"Date":"10/17/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":439,"Cost":297,"Date":"2/25/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":293,"Cost":183,"Date":"5/26/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":63,"Cost":46,"Date":"2/9/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":68,"Cost":49,"Date":"6/25/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":446,"Cost":283,"Date":"10/15/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":348,"Cost":252,"Date":"2/4/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":628,"Cost":531,"Date":"8/8/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":543,"Cost":361,"Date":"12/7/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":187,"Cost":175,"Date":"2/22/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":718,"Cost":517,"Date":"6/20/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":342,"Cost":180,"Date":"8/22/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":26,"Cost":20,"Date":"12/26/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":674,"Cost":430,"Date":"5/21/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":813,"Cost":566,"Date":"11/15/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":713,"Cost":388,"Date":"4/28/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":608,"Cost":386,"Date":"6/24/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":362,"Cost":301,"Date":"10/4/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":347,"Cost":268,"Date":"3/17/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":989,"Cost":593,"Date":"6/16/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":487,"Cost":390,"Date":"9/25/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":529,"Cost":284,"Date":"1/14/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":586,"Cost":536,"Date":"5/9/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":24,"Cost":18,"Date":"11/16/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":968,"Cost":578,"Date":"6/2/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":283,"Cost":212,"Date":"9/19/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":414,"Cost":278,"Date":"1/15/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":717,"Cost":508,"Date":"6/26/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":554,"Cost":291,"Date":"11/7/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":614,"Cost":356,"Date":"2/16/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":425,"Cost":250,"Date":"4/19/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":643,"Cost":489,"Date":"8/1/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":803,"Cost":637,"Date":"11/26/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":379,"Cost":227,"Date":"3/1/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":817,"Cost":435,"Date":"9/5/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":701,"Cost":446,"Date":"3/27/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":755,"Cost":549,"Date":"6/7/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":647,"Cost":610,"Date":"9/2/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":878,"Cost":686,"Date":"3/9/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":939,"Cost":792,"Date":"6/2/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":337,"Cost":185,"Date":"9/13/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":101,"Cost":96,"Date":"11/15/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":132,"Cost":114,"Date":"4/5/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":414,"Cost":338,"Date":"10/6/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":155,"Cost":112,"Date":"3/18/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":524,"Cost":419,"Date":"8/4/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":967,"Cost":901,"Date":"11/30/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":962,"Cost":782,"Date":"5/3/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":257,"Cost":233,"Date":"10/12/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":664,"Cost":583,"Date":"12/21/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":652,"Cost":373,"Date":"4/3/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":633,"Cost":465,"Date":"7/9/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":911,"Cost":859,"Date":"9/17/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":288,"Cost":146,"Date":"2/8/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":569,"Cost":502,"Date":"8/21/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":522,"Cost":282,"Date":"1/19/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":736,"Cost":627,"Date":"6/2/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":922,"Cost":657,"Date":"8/14/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":921,"Cost":779,"Date":"2/10/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":556,"Cost":364,"Date":"5/7/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":703,"Cost":548,"Date":"8/29/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":899,"Cost":473,"Date":"10/28/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":900,"Cost":466,"Date":"3/7/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":928,"Cost":716,"Date":"5/31/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":752,"Cost":499,"Date":"2/11/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":933,"Cost":539,"Date":"7/19/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":731,"Cost":667,"Date":"10/30/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":763,"Cost":609,"Date":"3/9/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":475,"Cost":416,"Date":"8/26/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":582,"Cost":314,"Date":"12/18/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":804,"Cost":527,"Date":"2/25/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":435,"Cost":301,"Date":"7/1/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":266,"Cost":171,"Date":"8/31/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":670,"Cost":381,"Date":"12/31/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":689,"Cost":423,"Date":"7/21/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":547,"Cost":370,"Date":"12/8/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":928,"Cost":824,"Date":"5/15/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":474,"Cost":315,"Date":"7/4/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":256,"Cost":225,"Date":"11/1/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":204,"Cost":137,"Date":"3/17/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":965,"Cost":852,"Date":"7/10/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":914,"Cost":466,"Date":"10/4/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":177,"Cost":114,"Date":"1/20/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":80,"Cost":43,"Date":"5/15/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":701,"Cost":528,"Date":"11/18/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":576,"Cost":394,"Date":"6/10/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":50,"Cost":40,"Date":"9/29/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":733,"Cost":463,"Date":"1/24/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":632,"Cost":439,"Date":"7/4/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":946,"Cost":866,"Date":"12/1/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":719,"Cost":648,"Date":"2/16/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":238,"Cost":132,"Date":"5/17/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":336,"Cost":209,"Date":"8/6/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":252,"Cost":156,"Date":"11/27/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":461,"Cost":315,"Date":"3/19/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":191,"Cost":165,"Date":"10/6/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":321,"Cost":215,"Date":"4/20/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":729,"Cost":669,"Date":"6/14/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":847,"Cost":671,"Date":"9/3/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":812,"Cost":646,"Date":"3/9/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":328,"Cost":179,"Date":"6/11/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":59,"Cost":47,"Date":"9/14/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":606,"Cost":461,"Date":"11/25/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":410,"Cost":272,"Date":"4/14/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":555,"Cost":513,"Date":"10/8/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":430,"Cost":216,"Date":"3/20/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":940,"Cost":893,"Date":"9/2/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":387,"Cost":348,"Date":"12/8/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":307,"Cost":193,"Date":"5/4/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":38,"Cost":30,"Date":"11/2/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":896,"Cost":713,"Date":"1/9/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":109,"Cost":77,"Date":"4/9/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":244,"Cost":172,"Date":"7/14/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":264,"Cost":250,"Date":"9/29/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":976,"Cost":831,"Date":"2/27/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":916,"Cost":739,"Date":"8/23/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":234,"Cost":175,"Date":"1/28/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":967,"Cost":810,"Date":"6/3/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":926,"Cost":561,"Date":"8/16/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":343,"Cost":216,"Date":"2/28/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":845,"Cost":570,"Date":"5/10/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":845,"Cost":774,"Date":"8/31/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":861,"Cost":515,"Date":"10/30/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":516,"Cost":462,"Date":"3/14/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":565,"Cost":301,"Date":"7/27/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":146,"Cost":132,"Date":"3/10/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":984,"Cost":729,"Date":"7/21/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":987,"Cost":671,"Date":"11/9/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":191,"Cost":166,"Date":"3/12/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":909,"Cost":812,"Date":"9/2/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":86,"Cost":77,"Date":"12/20/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":960,"Cost":782,"Date":"3/8/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":750,"Cost":551,"Date":"7/4/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":592,"Cost":378,"Date":"9/1/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":683,"Cost":507,"Date":"1/20/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":612,"Cost":426,"Date":"8/5/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":836,"Cost":492,"Date":"1/8/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":345,"Cost":292,"Date":"5/16/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":323,"Cost":263,"Date":"7/9/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":465,"Cost":288,"Date":"11/2/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":152,"Cost":87,"Date":"3/23/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":527,"Cost":346,"Date":"7/11/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":160,"Cost":118,"Date":"10/10/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":71,"Cost":42,"Date":"2/8/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":318,"Cost":276,"Date":"5/25/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":991,"Cost":666,"Date":"12/1/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":463,"Cost":308,"Date":"6/16/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":51,"Cost":46,"Date":"10/2/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":374,"Cost":277,"Date":"2/3/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":943,"Cost":876,"Date":"7/13/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":267,"Cost":165,"Date":"12/4/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":277,"Cost":179,"Date":"2/18/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":295,"Cost":229,"Date":"5/22/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":183,"Cost":142,"Date":"8/7/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":97,"Cost":76,"Date":"12/5/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":682,"Cost":426,"Date":"3/28/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":771,"Cost":593,"Date":"10/19/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":423,"Cost":266,"Date":"4/24/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":695,"Cost":623,"Date":"6/20/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":69,"Cost":47,"Date":"9/16/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":656,"Cost":407,"Date":"3/11/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":906,"Cost":759,"Date":"6/16/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":979,"Cost":832,"Date":"9/19/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":475,"Cost":374,"Date":"1/10/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":546,"Cost":487,"Date":"5/3/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":220,"Cost":147,"Date":"10/26/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":191,"Cost":146,"Date":"3/26/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":754,"Cost":382,"Date":"9/4/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":850,"Cost":591,"Date":"12/11/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":204,"Cost":128,"Date":"6/8/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":487,"Cost":371,"Date":"11/4/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":776,"Cost":615,"Date":"2/5/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":478,"Cost":295,"Date":"4/10/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":894,"Cost":607,"Date":"7/19/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":932,"Cost":476,"Date":"11/7/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":176,"Cost":96,"Date":"3/1/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":554,"Cost":310,"Date":"9/3/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":160,"Cost":136,"Date":"1/31/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":879,"Cost":781,"Date":"6/5/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":905,"Cost":733,"Date":"8/23/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":105,"Cost":68,"Date":"3/4/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":567,"Cost":490,"Date":"5/20/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":917,"Cost":719,"Date":"9/8/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":971,"Cost":525,"Date":"11/1/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":85,"Cost":70,"Date":"3/27/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":994,"Cost":710,"Date":"9/17/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":373,"Cost":225,"Date":"3/16/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":811,"Cost":679,"Date":"7/25/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":974,"Cost":860,"Date":"11/23/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":141,"Cost":114,"Date":"4/19/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":928,"Cost":484,"Date":"9/29/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":733,"Cost":535,"Date":"12/20/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":32,"Cost":25,"Date":"4/2/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":572,"Cost":405,"Date":"7/8/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":442,"Cost":337,"Date":"9/1/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":513,"Cost":261,"Date":"2/2/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":496,"Cost":354,"Date":"8/12/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":127,"Cost":109,"Date":"1/14/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":605,"Cost":312,"Date":"5/18/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":892,"Cost":847,"Date":"7/12/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":188,"Cost":172,"Date":"12/17/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":849,"Cost":673,"Date":"4/1/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":353,"Cost":335,"Date":"8/28/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":757,"Cost":538,"Date":"10/17/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":577,"Cost":465,"Date":"2/25/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":731,"Cost":498,"Date":"5/26/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":272,"Cost":211,"Date":"2/9/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":258,"Cost":184,"Date":"6/25/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":531,"Cost":354,"Date":"10/15/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":166,"Cost":90,"Date":"2/4/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":410,"Cost":338,"Date":"8/8/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":381,"Cost":361,"Date":"12/7/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":724,"Cost":416,"Date":"2/22/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":784,"Cost":731,"Date":"6/20/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":367,"Cost":329,"Date":"8/22/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":574,"Cost":373,"Date":"12/26/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":800,"Cost":710,"Date":"5/21/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":561,"Cost":339,"Date":"11/15/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":113,"Cost":73,"Date":"4/28/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":424,"Cost":304,"Date":"6/24/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":803,"Cost":712,"Date":"10/4/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":723,"Cost":675,"Date":"3/17/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":525,"Cost":374,"Date":"6/16/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":142,"Cost":128,"Date":"9/25/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":27,"Cost":16,"Date":"1/14/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":701,"Cost":509,"Date":"5/9/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":51,"Cost":35,"Date":"11/16/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":218,"Cost":139,"Date":"6/2/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":351,"Cost":276,"Date":"9/19/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":873,"Cost":817,"Date":"1/15/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":540,"Cost":307,"Date":"6/26/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":782,"Cost":578,"Date":"11/7/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":131,"Cost":94,"Date":"2/16/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":443,"Cost":244,"Date":"4/19/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":825,"Cost":610,"Date":"8/1/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":828,"Cost":725,"Date":"11/26/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":895,"Cost":758,"Date":"3/1/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":557,"Cost":327,"Date":"9/5/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":904,"Cost":758,"Date":"3/27/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":305,"Cost":228,"Date":"6/7/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":709,"Cost":521,"Date":"9/2/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":686,"Cost":597,"Date":"3/9/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":420,"Cost":382,"Date":"6/2/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":963,"Cost":507,"Date":"9/13/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":207,"Cost":130,"Date":"11/15/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":192,"Cost":112,"Date":"4/5/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":832,"Cost":726,"Date":"10/6/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":855,"Cost":731,"Date":"3/18/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":401,"Cost":307,"Date":"8/4/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":707,"Cost":457,"Date":"11/30/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":854,"Cost":543,"Date":"5/3/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":298,"Cost":251,"Date":"10/12/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":510,"Cost":443,"Date":"12/21/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":772,"Cost":717,"Date":"4/3/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":556,"Cost":340,"Date":"7/9/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":442,"Cost":260,"Date":"9/17/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":375,"Cost":211,"Date":"2/8/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":250,"Cost":203,"Date":"8/21/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":928,"Cost":475,"Date":"1/19/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":696,"Cost":510,"Date":"6/2/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":5,"Cost":2,"Date":"8/14/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":586,"Cost":358,"Date":"2/10/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":640,"Cost":514,"Date":"5/7/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":440,"Cost":333,"Date":"8/29/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":906,"Cost":504,"Date":"10/28/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":550,"Cost":393,"Date":"3/7/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":102,"Cost":94,"Date":"5/31/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":774,"Cost":678,"Date":"2/11/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":37,"Cost":25,"Date":"7/19/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":582,"Cost":375,"Date":"10/30/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":641,"Cost":567,"Date":"3/9/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":590,"Cost":428,"Date":"8/26/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":603,"Cost":333,"Date":"12/18/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":205,"Cost":111,"Date":"2/25/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":293,"Cost":270,"Date":"7/1/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":873,"Cost":790,"Date":"8/31/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":62,"Cost":53,"Date":"12/31/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":358,"Cost":260,"Date":"7/21/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":538,"Cost":442,"Date":"12/8/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":886,"Cost":503,"Date":"5/15/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":470,"Cost":326,"Date":"7/4/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":283,"Cost":250,"Date":"11/1/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":221,"Cost":194,"Date":"3/17/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":23,"Cost":16,"Date":"7/10/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":407,"Cost":213,"Date":"10/4/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":955,"Cost":889,"Date":"1/20/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":78,"Cost":57,"Date":"5/15/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":919,"Cost":466,"Date":"11/18/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":253,"Cost":214,"Date":"6/10/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":824,"Cost":714,"Date":"9/29/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":976,"Cost":754,"Date":"1/24/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":360,"Cost":290,"Date":"7/4/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":235,"Cost":149,"Date":"12/1/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":326,"Cost":188,"Date":"2/16/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":769,"Cost":720,"Date":"5/17/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":701,"Cost":503,"Date":"8/6/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":746,"Cost":402,"Date":"11/27/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":59,"Cost":44,"Date":"3/19/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":732,"Cost":408,"Date":"10/6/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":752,"Cost":613,"Date":"4/20/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":720,"Cost":404,"Date":"6/14/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":18,"Cost":13,"Date":"9/3/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":720,"Cost":515,"Date":"3/9/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":906,"Cost":820,"Date":"6/11/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":669,"Cost":512,"Date":"9/14/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":834,"Cost":603,"Date":"11/25/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":601,"Cost":483,"Date":"4/14/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":547,"Cost":411,"Date":"10/8/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":86,"Cost":52,"Date":"3/20/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":32,"Cost":16,"Date":"9/2/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":106,"Cost":86,"Date":"12/8/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":309,"Cost":241,"Date":"5/4/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":999,"Cost":891,"Date":"11/2/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":113,"Cost":81,"Date":"1/9/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":694,"Cost":583,"Date":"4/9/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":52,"Cost":29,"Date":"7/14/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":575,"Cost":453,"Date":"9/29/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":205,"Cost":136,"Date":"2/27/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":924,"Cost":829,"Date":"8/23/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":791,"Cost":632,"Date":"1/28/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":526,"Cost":450,"Date":"6/3/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":767,"Cost":456,"Date":"8/16/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":998,"Cost":512,"Date":"2/28/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":371,"Cost":206,"Date":"5/10/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":176,"Cost":160,"Date":"8/31/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":374,"Cost":351,"Date":"10/30/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":541,"Cost":472,"Date":"3/14/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":385,"Cost":262,"Date":"7/27/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":141,"Cost":89,"Date":"3/10/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":60,"Cost":47,"Date":"7/21/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":732,"Cost":418,"Date":"11/9/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":89,"Cost":77,"Date":"3/12/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":602,"Cost":523,"Date":"9/2/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":581,"Cost":529,"Date":"12/20/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":22,"Cost":19,"Date":"3/8/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":601,"Cost":362,"Date":"7/4/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":166,"Cost":140,"Date":"9/1/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":888,"Cost":566,"Date":"1/20/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":936,"Cost":749,"Date":"8/5/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":526,"Cost":355,"Date":"1/8/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":6,"Cost":5,"Date":"5/16/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":659,"Cost":446,"Date":"7/9/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":179,"Cost":111,"Date":"11/2/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":830,"Cost":499,"Date":"3/23/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":470,"Cost":313,"Date":"7/11/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":284,"Cost":256,"Date":"10/10/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":496,"Cost":328,"Date":"2/8/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":389,"Cost":331,"Date":"5/25/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":749,"Cost":690,"Date":"12/1/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":683,"Cost":433,"Date":"6/16/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":35,"Cost":30,"Date":"10/2/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":674,"Cost":462,"Date":"2/3/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":143,"Cost":99,"Date":"7/13/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":309,"Cost":207,"Date":"12/4/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":607,"Cost":307,"Date":"2/18/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":718,"Cost":485,"Date":"5/22/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":520,"Cost":396,"Date":"8/7/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":644,"Cost":603,"Date":"12/5/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":55,"Cost":37,"Date":"3/28/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":986,"Cost":877,"Date":"10/19/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":409,"Cost":232,"Date":"4/24/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":642,"Cost":423,"Date":"6/20/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":896,"Cost":500,"Date":"9/16/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":754,"Cost":503,"Date":"3/11/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":9,"Cost":9,"Date":"6/16/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":36,"Cost":21,"Date":"9/19/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":89,"Cost":56,"Date":"1/10/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":385,"Cost":197,"Date":"5/3/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":636,"Cost":333,"Date":"10/26/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":589,"Cost":360,"Date":"3/26/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":475,"Cost":299,"Date":"9/4/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":927,"Cost":577,"Date":"12/11/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":346,"Cost":295,"Date":"6/8/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":361,"Cost":339,"Date":"11/4/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":391,"Cost":308,"Date":"2/5/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":312,"Cost":260,"Date":"4/10/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":805,"Cost":463,"Date":"7/19/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":446,"Cost":228,"Date":"11/7/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":225,"Cost":136,"Date":"3/1/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":158,"Cost":123,"Date":"9/3/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":140,"Cost":83,"Date":"1/31/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":834,"Cost":641,"Date":"6/5/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":676,"Cost":423,"Date":"8/23/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":889,"Cost":578,"Date":"3/4/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":833,"Cost":428,"Date":"5/20/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":579,"Cost":540,"Date":"9/8/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":31,"Cost":25,"Date":"11/1/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":486,"Cost":287,"Date":"3/27/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":901,"Cost":607,"Date":"9/17/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":585,"Cost":509,"Date":"3/16/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":883,"Cost":606,"Date":"7/25/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":795,"Cost":546,"Date":"11/23/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":658,"Cost":444,"Date":"4/19/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":294,"Cost":157,"Date":"9/29/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":836,"Cost":506,"Date":"12/20/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":895,"Cost":624,"Date":"4/2/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":179,"Cost":144,"Date":"7/8/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":222,"Cost":124,"Date":"9/1/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":966,"Cost":714,"Date":"2/2/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":370,"Cost":205,"Date":"8/12/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":640,"Cost":378,"Date":"1/14/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":48,"Cost":30,"Date":"5/18/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":638,"Cost":510,"Date":"7/12/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":379,"Cost":272,"Date":"12/17/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":450,"Cost":340,"Date":"4/1/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":133,"Cost":93,"Date":"8/28/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":466,"Cost":369,"Date":"10/17/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":720,"Cost":522,"Date":"2/25/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":103,"Cost":64,"Date":"5/26/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":540,"Cost":329,"Date":"2/9/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":843,"Cost":573,"Date":"6/25/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":986,"Cost":875,"Date":"10/15/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":824,"Cost":436,"Date":"2/4/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":832,"Cost":502,"Date":"8/8/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":45,"Cost":36,"Date":"12/7/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":835,"Cost":746,"Date":"2/22/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":332,"Cost":169,"Date":"6/20/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":489,"Cost":247,"Date":"8/22/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":687,"Cost":415,"Date":"12/26/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":480,"Cost":350,"Date":"5/21/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":969,"Cost":565,"Date":"11/15/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":368,"Cost":300,"Date":"4/28/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":897,"Cost":803,"Date":"6/24/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":396,"Cost":346,"Date":"10/4/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":75,"Cost":59,"Date":"3/17/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":116,"Cost":79,"Date":"6/16/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":333,"Cost":168,"Date":"9/25/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":236,"Cost":128,"Date":"1/14/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":61,"Cost":38,"Date":"5/9/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":935,"Cost":680,"Date":"11/16/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":431,"Cost":389,"Date":"6/2/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":756,"Cost":473,"Date":"9/19/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":216,"Cost":152,"Date":"1/15/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":621,"Cost":528,"Date":"6/26/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":480,"Cost":367,"Date":"11/7/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":411,"Cost":209,"Date":"2/16/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":551,"Cost":357,"Date":"4/19/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":491,"Cost":251,"Date":"8/1/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":369,"Cost":284,"Date":"11/26/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":67,"Cost":37,"Date":"3/1/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":753,"Cost":537,"Date":"9/5/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":106,"Cost":77,"Date":"3/27/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":459,"Cost":315,"Date":"6/7/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":841,"Cost":636,"Date":"9/2/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":998,"Cost":525,"Date":"3/9/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":528,"Cost":429,"Date":"6/2/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":230,"Cost":173,"Date":"9/13/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":719,"Cost":408,"Date":"11/15/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":915,"Cost":809,"Date":"4/5/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":871,"Cost":523,"Date":"10/6/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":674,"Cost":536,"Date":"3/18/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":870,"Cost":719,"Date":"8/4/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":292,"Cost":153,"Date":"11/30/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":103,"Cost":90,"Date":"5/3/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":981,"Cost":610,"Date":"10/12/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":520,"Cost":262,"Date":"12/21/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":27,"Cost":14,"Date":"4/3/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":449,"Cost":307,"Date":"7/9/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":961,"Cost":836,"Date":"9/17/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":834,"Cost":580,"Date":"2/8/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":209,"Cost":176,"Date":"8/21/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":941,"Cost":575,"Date":"1/19/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":78,"Cost":58,"Date":"6/2/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":544,"Cost":309,"Date":"8/14/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":472,"Cost":300,"Date":"2/10/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":523,"Cost":344,"Date":"5/7/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":625,"Cost":424,"Date":"8/29/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":68,"Cost":55,"Date":"10/28/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":920,"Cost":494,"Date":"3/7/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":543,"Cost":398,"Date":"5/31/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":410,"Cost":318,"Date":"2/11/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":18,"Cost":17,"Date":"7/19/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":298,"Cost":256,"Date":"10/30/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":61,"Cost":32,"Date":"3/9/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":712,"Cost":664,"Date":"8/26/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":39,"Cost":35,"Date":"12/18/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":819,"Cost":729,"Date":"2/25/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":183,"Cost":148,"Date":"7/1/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":259,"Cost":153,"Date":"8/31/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":460,"Cost":350,"Date":"12/31/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":850,"Cost":639,"Date":"7/21/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":663,"Cost":488,"Date":"12/8/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":33,"Cost":28,"Date":"5/15/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":838,"Cost":617,"Date":"7/4/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":541,"Cost":271,"Date":"11/1/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":760,"Cost":720,"Date":"3/17/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":775,"Cost":633,"Date":"7/10/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":299,"Cost":255,"Date":"10/4/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":641,"Cost":321,"Date":"1/20/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":445,"Cost":377,"Date":"5/15/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":157,"Cost":125,"Date":"11/18/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":745,"Cost":567,"Date":"6/10/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":531,"Cost":404,"Date":"9/29/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":120,"Cost":70,"Date":"1/24/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":425,"Cost":348,"Date":"7/4/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":89,"Cost":80,"Date":"12/1/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":965,"Cost":811,"Date":"2/16/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":802,"Cost":448,"Date":"5/17/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":687,"Cost":519,"Date":"8/6/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":764,"Cost":538,"Date":"11/27/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":325,"Cost":258,"Date":"3/19/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":386,"Cost":296,"Date":"10/6/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":300,"Cost":189,"Date":"4/20/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":284,"Cost":255,"Date":"6/14/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":184,"Cost":110,"Date":"9/3/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":231,"Cost":154,"Date":"3/9/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":1000,"Cost":565,"Date":"6/11/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":369,"Cost":344,"Date":"9/14/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":166,"Cost":148,"Date":"11/25/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":487,"Cost":381,"Date":"4/14/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":227,"Cost":151,"Date":"10/8/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":282,"Cost":166,"Date":"3/20/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":756,"Cost":685,"Date":"9/2/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":70,"Cost":62,"Date":"12/8/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":270,"Cost":205,"Date":"5/4/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":653,"Cost":416,"Date":"11/2/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":49,"Cost":47,"Date":"1/9/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":527,"Cost":483,"Date":"4/9/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":59,"Cost":29,"Date":"7/14/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":919,"Cost":750,"Date":"9/29/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":801,"Cost":671,"Date":"2/27/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":781,"Cost":649,"Date":"8/23/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":401,"Cost":286,"Date":"1/28/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":801,"Cost":630,"Date":"6/3/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":173,"Cost":111,"Date":"8/16/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":27,"Cost":18,"Date":"2/28/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":163,"Cost":103,"Date":"5/10/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":281,"Cost":220,"Date":"8/31/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":145,"Cost":95,"Date":"10/30/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":311,"Cost":220,"Date":"3/14/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":179,"Cost":152,"Date":"7/27/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":619,"Cost":313,"Date":"3/10/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":45,"Cost":25,"Date":"7/21/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":918,"Cost":845,"Date":"11/9/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":133,"Cost":105,"Date":"3/12/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":636,"Cost":578,"Date":"9/2/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":201,"Cost":115,"Date":"12/20/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":636,"Cost":454,"Date":"3/8/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":356,"Cost":223,"Date":"7/4/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":222,"Cost":204,"Date":"9/1/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":792,"Cost":550,"Date":"1/20/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":618,"Cost":338,"Date":"8/5/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":600,"Cost":443,"Date":"1/8/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":933,"Cost":663,"Date":"5/16/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":345,"Cost":324,"Date":"7/9/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":42,"Cost":37,"Date":"11/2/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":136,"Cost":111,"Date":"3/23/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":993,"Cost":921,"Date":"7/11/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":664,"Cost":545,"Date":"10/10/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":221,"Cost":204,"Date":"2/8/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":313,"Cost":269,"Date":"5/25/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":119,"Cost":92,"Date":"12/1/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":534,"Cost":279,"Date":"6/16/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":729,"Cost":684,"Date":"10/2/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":607,"Cost":540,"Date":"2/3/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":785,"Cost":530,"Date":"7/13/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":989,"Cost":921,"Date":"12/4/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":645,"Cost":538,"Date":"2/18/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":815,"Cost":446,"Date":"5/22/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":663,"Cost":623,"Date":"8/7/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":303,"Cost":277,"Date":"12/5/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":831,"Cost":604,"Date":"3/28/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":612,"Cost":498,"Date":"10/19/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":873,"Cost":550,"Date":"4/24/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":215,"Cost":162,"Date":"6/20/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":990,"Cost":831,"Date":"9/16/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":851,"Cost":671,"Date":"3/11/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":111,"Cost":60,"Date":"6/16/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":265,"Cost":216,"Date":"9/19/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":322,"Cost":299,"Date":"1/10/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":886,"Cost":732,"Date":"5/3/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":367,"Cost":240,"Date":"10/26/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":588,"Cost":459,"Date":"3/26/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":536,"Cost":335,"Date":"9/4/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":576,"Cost":348,"Date":"12/11/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":543,"Cost":365,"Date":"6/8/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":754,"Cost":590,"Date":"11/4/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":116,"Cost":98,"Date":"2/5/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":720,"Cost":593,"Date":"4/10/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":789,"Cost":522,"Date":"7/19/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":735,"Cost":568,"Date":"11/7/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":838,"Cost":697,"Date":"3/1/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":435,"Cost":391,"Date":"9/3/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":80,"Cost":59,"Date":"1/31/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":143,"Cost":106,"Date":"6/5/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":896,"Cost":496,"Date":"8/23/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":4,"Cost":2,"Date":"3/4/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":272,"Cost":243,"Date":"5/20/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":525,"Cost":266,"Date":"9/8/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":801,"Cost":449,"Date":"11/1/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":320,"Cost":247,"Date":"3/27/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":317,"Cost":267,"Date":"9/17/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":525,"Cost":284,"Date":"3/16/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":257,"Cost":239,"Date":"7/25/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":124,"Cost":76,"Date":"11/23/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":722,"Cost":458,"Date":"4/19/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":493,"Cost":386,"Date":"9/29/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":274,"Cost":161,"Date":"12/20/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":766,"Cost":533,"Date":"4/2/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":740,"Cost":395,"Date":"7/8/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":488,"Cost":451,"Date":"9/1/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":386,"Cost":242,"Date":"2/2/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":213,"Cost":167,"Date":"8/12/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":742,"Cost":694,"Date":"1/14/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":568,"Cost":501,"Date":"5/18/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":223,"Cost":179,"Date":"7/12/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":171,"Cost":88,"Date":"12/17/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":915,"Cost":780,"Date":"4/1/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":186,"Cost":141,"Date":"8/28/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":650,"Cost":426,"Date":"10/17/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":688,"Cost":535,"Date":"2/25/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":139,"Cost":75,"Date":"5/26/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":255,"Cost":130,"Date":"2/9/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":154,"Cost":112,"Date":"6/25/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":625,"Cost":397,"Date":"10/15/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":429,"Cost":280,"Date":"2/4/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":877,"Cost":729,"Date":"8/8/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":150,"Cost":97,"Date":"12/7/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":138,"Cost":120,"Date":"2/22/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":219,"Cost":197,"Date":"6/20/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":968,"Cost":609,"Date":"8/22/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":907,"Cost":862,"Date":"12/26/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":478,"Cost":425,"Date":"5/21/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":730,"Cost":491,"Date":"11/15/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":944,"Cost":477,"Date":"4/28/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":246,"Cost":133,"Date":"6/24/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":285,"Cost":256,"Date":"10/4/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":36,"Cost":31,"Date":"3/17/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":289,"Cost":192,"Date":"6/16/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":690,"Cost":593,"Date":"9/25/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":742,"Cost":380,"Date":"1/14/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":559,"Cost":390,"Date":"5/9/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":315,"Cost":222,"Date":"11/16/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":663,"Cost":622,"Date":"6/2/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":537,"Cost":469,"Date":"9/19/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":648,"Cost":501,"Date":"1/15/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":311,"Cost":267,"Date":"6/26/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":496,"Cost":257,"Date":"11/7/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":310,"Cost":265,"Date":"2/16/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":963,"Cost":895,"Date":"4/19/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":673,"Cost":454,"Date":"8/1/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":806,"Cost":744,"Date":"11/26/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":614,"Cost":417,"Date":"3/1/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":824,"Cost":674,"Date":"9/5/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":877,"Cost":827,"Date":"3/27/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":368,"Cost":311,"Date":"6/7/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":723,"Cost":561,"Date":"9/2/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":655,"Cost":425,"Date":"3/9/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":423,"Cost":396,"Date":"6/2/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":285,"Cost":204,"Date":"9/13/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":293,"Cost":232,"Date":"11/15/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":785,"Cost":535,"Date":"4/5/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":736,"Cost":424,"Date":"10/6/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":229,"Cost":180,"Date":"3/18/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":637,"Cost":577,"Date":"8/4/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":372,"Cost":274,"Date":"11/30/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":62,"Cost":43,"Date":"5/3/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":704,"Cost":445,"Date":"10/12/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":709,"Cost":612,"Date":"12/21/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":553,"Cost":480,"Date":"4/3/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":356,"Cost":196,"Date":"7/9/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":834,"Cost":670,"Date":"9/17/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":404,"Cost":270,"Date":"2/8/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":90,"Cost":52,"Date":"8/21/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":165,"Cost":102,"Date":"1/19/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":616,"Cost":511,"Date":"6/2/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":858,"Cost":574,"Date":"8/14/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":276,"Cost":258,"Date":"2/10/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":589,"Cost":499,"Date":"5/7/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":182,"Cost":159,"Date":"8/29/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":152,"Cost":113,"Date":"10/28/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":569,"Cost":478,"Date":"3/7/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":530,"Cost":303,"Date":"5/31/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":613,"Cost":315,"Date":"2/11/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":791,"Cost":596,"Date":"7/19/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":995,"Cost":602,"Date":"10/30/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":267,"Cost":217,"Date":"3/9/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":829,"Cost":748,"Date":"8/26/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":906,"Cost":644,"Date":"12/18/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":935,"Cost":537,"Date":"2/25/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":904,"Cost":846,"Date":"7/1/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":131,"Cost":93,"Date":"8/31/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":92,"Cost":85,"Date":"12/31/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":830,"Cost":542,"Date":"7/21/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":919,"Cost":486,"Date":"12/8/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":530,"Cost":388,"Date":"5/15/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":499,"Cost":302,"Date":"7/4/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":792,"Cost":447,"Date":"11/1/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":600,"Cost":554,"Date":"3/17/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":498,"Cost":316,"Date":"7/10/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":273,"Cost":181,"Date":"10/4/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":736,"Cost":669,"Date":"1/20/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":441,"Cost":263,"Date":"5/15/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":359,"Cost":179,"Date":"11/18/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":408,"Cost":339,"Date":"6/10/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":302,"Cost":230,"Date":"9/29/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":75,"Cost":64,"Date":"1/24/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":784,"Cost":398,"Date":"7/4/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":36,"Cost":33,"Date":"12/1/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":685,"Cost":354,"Date":"2/16/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":119,"Cost":107,"Date":"5/17/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":431,"Cost":301,"Date":"8/6/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":316,"Cost":235,"Date":"11/27/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":307,"Cost":292,"Date":"3/19/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":742,"Cost":559,"Date":"10/6/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":635,"Cost":490,"Date":"4/20/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":346,"Cost":255,"Date":"6/14/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":615,"Cost":350,"Date":"9/3/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":514,"Cost":263,"Date":"3/9/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":157,"Cost":148,"Date":"6/11/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":546,"Cost":329,"Date":"9/14/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":907,"Cost":628,"Date":"11/25/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":582,"Cost":361,"Date":"4/14/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":681,"Cost":436,"Date":"10/8/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":464,"Cost":292,"Date":"3/20/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":601,"Cost":493,"Date":"9/2/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":575,"Cost":348,"Date":"12/8/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":730,"Cost":479,"Date":"5/4/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":852,"Cost":664,"Date":"11/2/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":303,"Cost":156,"Date":"1/9/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":934,"Cost":561,"Date":"4/9/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":805,"Cost":454,"Date":"7/14/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":859,"Cost":499,"Date":"9/29/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":107,"Cost":71,"Date":"2/27/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":679,"Cost":462,"Date":"8/23/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":555,"Cost":322,"Date":"1/28/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":682,"Cost":360,"Date":"6/3/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":221,"Cost":178,"Date":"8/16/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":841,"Cost":787,"Date":"2/28/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":677,"Cost":441,"Date":"5/10/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":519,"Cost":476,"Date":"8/31/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":965,"Cost":754,"Date":"10/30/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":345,"Cost":319,"Date":"3/14/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":249,"Cost":158,"Date":"7/27/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":938,"Cost":628,"Date":"3/10/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":775,"Cost":735,"Date":"7/21/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":140,"Cost":89,"Date":"11/9/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":446,"Cost":374,"Date":"3/12/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":329,"Cost":166,"Date":"9/2/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":677,"Cost":416,"Date":"12/20/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":171,"Cost":87,"Date":"3/8/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":7,"Cost":4,"Date":"7/4/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":281,"Cost":184,"Date":"9/1/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":881,"Cost":707,"Date":"1/20/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":63,"Cost":43,"Date":"8/5/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":224,"Cost":155,"Date":"1/8/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":103,"Cost":76,"Date":"5/16/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":650,"Cost":485,"Date":"7/9/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":440,"Cost":261,"Date":"11/2/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":450,"Cost":226,"Date":"3/23/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":359,"Cost":204,"Date":"7/11/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":544,"Cost":329,"Date":"10/10/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":127,"Cost":106,"Date":"2/8/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":892,"Cost":721,"Date":"5/25/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":688,"Cost":512,"Date":"12/1/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":416,"Cost":358,"Date":"6/16/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":162,"Cost":103,"Date":"10/2/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":406,"Cost":227,"Date":"2/3/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":331,"Cost":229,"Date":"7/13/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":732,"Cost":625,"Date":"12/4/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":963,"Cost":828,"Date":"2/18/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":72,"Cost":54,"Date":"5/22/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":124,"Cost":83,"Date":"8/7/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":129,"Cost":74,"Date":"12/5/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":932,"Cost":512,"Date":"3/28/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":805,"Cost":748,"Date":"10/19/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":979,"Cost":662,"Date":"4/24/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":101,"Cost":77,"Date":"6/20/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":14,"Cost":11,"Date":"9/16/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":158,"Cost":88,"Date":"3/11/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":283,"Cost":196,"Date":"6/16/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":904,"Cost":487,"Date":"9/19/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":812,"Cost":571,"Date":"1/10/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":238,"Cost":183,"Date":"5/3/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":269,"Cost":249,"Date":"10/26/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":503,"Cost":376,"Date":"3/26/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":566,"Cost":316,"Date":"9/4/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":712,"Cost":552,"Date":"12/11/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":970,"Cost":904,"Date":"6/8/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":747,"Cost":689,"Date":"11/4/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":923,"Cost":838,"Date":"2/5/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":110,"Cost":62,"Date":"4/10/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":95,"Cost":58,"Date":"7/19/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":905,"Cost":804,"Date":"11/7/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":828,"Cost":597,"Date":"3/1/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":96,"Cost":82,"Date":"9/3/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":789,"Cost":692,"Date":"1/31/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":615,"Cost":394,"Date":"6/5/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":910,"Cost":860,"Date":"8/23/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":393,"Cost":205,"Date":"3/4/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":980,"Cost":786,"Date":"5/20/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":697,"Cost":466,"Date":"9/8/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":27,"Cost":18,"Date":"11/1/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":729,"Cost":412,"Date":"3/27/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":734,"Cost":368,"Date":"9/17/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":637,"Cost":572,"Date":"3/16/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":829,"Cost":646,"Date":"7/25/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":980,"Cost":923,"Date":"11/23/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":744,"Cost":627,"Date":"4/19/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":894,"Cost":820,"Date":"9/29/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":265,"Cost":147,"Date":"12/20/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":485,"Cost":344,"Date":"4/2/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":435,"Cost":283,"Date":"7/8/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":634,"Cost":379,"Date":"9/1/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":129,"Cost":118,"Date":"2/2/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":432,"Cost":383,"Date":"8/12/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":986,"Cost":626,"Date":"1/14/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":32,"Cost":22,"Date":"5/18/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":624,"Cost":471,"Date":"7/12/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":618,"Cost":339,"Date":"12/17/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":704,"Cost":603,"Date":"4/1/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":288,"Cost":272,"Date":"8/28/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":693,"Cost":584,"Date":"10/17/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":136,"Cost":100,"Date":"2/25/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":698,"Cost":383,"Date":"5/26/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":61,"Cost":35,"Date":"2/9/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":237,"Cost":167,"Date":"6/25/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":820,"Cost":749,"Date":"10/15/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":330,"Cost":241,"Date":"2/4/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":466,"Cost":402,"Date":"8/8/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":688,"Cost":521,"Date":"12/7/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":119,"Cost":63,"Date":"2/22/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":767,"Cost":606,"Date":"6/20/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":978,"Cost":793,"Date":"8/22/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":807,"Cost":661,"Date":"12/26/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":991,"Cost":901,"Date":"5/21/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":857,"Cost":679,"Date":"11/15/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":939,"Cost":563,"Date":"4/28/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":549,"Cost":472,"Date":"6/24/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":541,"Cost":315,"Date":"10/4/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":400,"Cost":234,"Date":"3/17/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":676,"Cost":630,"Date":"6/16/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":989,"Cost":649,"Date":"9/25/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":671,"Cost":531,"Date":"1/14/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":656,"Cost":539,"Date":"5/9/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":553,"Cost":402,"Date":"11/16/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":21,"Cost":12,"Date":"6/2/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":501,"Cost":471,"Date":"9/19/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":94,"Cost":55,"Date":"1/15/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":733,"Cost":374,"Date":"6/26/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":293,"Cost":200,"Date":"11/7/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":243,"Cost":217,"Date":"2/16/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":634,"Cost":330,"Date":"4/19/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":897,"Cost":470,"Date":"8/1/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":805,"Cost":532,"Date":"11/26/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":858,"Cost":617,"Date":"3/1/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":679,"Cost":583,"Date":"9/5/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":83,"Cost":67,"Date":"3/27/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":224,"Cost":134,"Date":"6/7/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":238,"Cost":218,"Date":"9/2/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":80,"Cost":51,"Date":"3/9/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":166,"Cost":101,"Date":"6/2/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":283,"Cost":261,"Date":"9/13/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":264,"Cost":202,"Date":"11/15/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":155,"Cost":99,"Date":"4/5/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":601,"Cost":310,"Date":"10/6/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":617,"Cost":325,"Date":"3/18/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":551,"Cost":489,"Date":"8/4/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":996,"Cost":662,"Date":"11/30/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":262,"Cost":237,"Date":"5/3/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":219,"Cost":153,"Date":"10/12/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":897,"Cost":805,"Date":"12/21/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":681,"Cost":366,"Date":"4/3/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":211,"Cost":134,"Date":"7/9/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":980,"Cost":764,"Date":"9/17/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":42,"Cost":23,"Date":"2/8/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":151,"Cost":102,"Date":"8/21/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":438,"Cost":342,"Date":"1/19/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":720,"Cost":581,"Date":"6/2/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":517,"Cost":300,"Date":"8/14/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":402,"Cost":229,"Date":"2/10/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":228,"Cost":169,"Date":"5/7/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":125,"Cost":114,"Date":"8/29/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":895,"Cost":636,"Date":"10/28/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":728,"Cost":637,"Date":"3/7/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":100,"Cost":50,"Date":"5/31/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":512,"Cost":457,"Date":"2/11/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":425,"Cost":288,"Date":"7/19/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":437,"Cost":311,"Date":"10/30/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":897,"Cost":835,"Date":"3/9/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":133,"Cost":117,"Date":"8/26/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":152,"Cost":132,"Date":"12/18/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":316,"Cost":266,"Date":"2/25/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":43,"Cost":27,"Date":"7/1/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":880,"Cost":642,"Date":"8/31/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":890,"Cost":580,"Date":"12/31/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":112,"Cost":100,"Date":"7/21/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":607,"Cost":310,"Date":"12/8/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":363,"Cost":281,"Date":"5/15/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":882,"Cost":445,"Date":"7/4/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":44,"Cost":39,"Date":"11/1/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":721,"Cost":382,"Date":"3/17/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":757,"Cost":645,"Date":"7/10/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":590,"Cost":356,"Date":"10/4/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":704,"Cost":655,"Date":"1/20/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":998,"Cost":868,"Date":"5/15/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":993,"Cost":716,"Date":"11/18/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":59,"Cost":43,"Date":"6/10/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":654,"Cost":577,"Date":"9/29/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":621,"Cost":487,"Date":"1/24/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":154,"Cost":142,"Date":"7/4/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":780,"Cost":547,"Date":"12/1/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":149,"Cost":97,"Date":"2/16/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":593,"Cost":361,"Date":"5/17/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":31,"Cost":22,"Date":"8/6/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":106,"Cost":97,"Date":"11/27/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":943,"Cost":485,"Date":"3/19/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":291,"Cost":264,"Date":"10/6/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":25,"Cost":13,"Date":"4/20/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":565,"Cost":360,"Date":"6/14/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":540,"Cost":312,"Date":"9/3/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":83,"Cost":50,"Date":"3/9/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":881,"Cost":834,"Date":"6/11/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":239,"Cost":170,"Date":"9/14/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":668,"Cost":615,"Date":"11/25/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":612,"Cost":391,"Date":"4/14/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":90,"Cost":47,"Date":"10/8/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":215,"Cost":108,"Date":"3/20/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":403,"Cost":273,"Date":"9/2/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":683,"Cost":396,"Date":"12/8/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":914,"Cost":773,"Date":"5/4/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":228,"Cost":191,"Date":"11/2/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":496,"Cost":372,"Date":"1/9/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":569,"Cost":535,"Date":"4/9/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":138,"Cost":128,"Date":"7/14/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":249,"Cost":149,"Date":"9/29/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":961,"Cost":745,"Date":"2/27/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":506,"Cost":423,"Date":"8/23/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":356,"Cost":229,"Date":"1/28/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":192,"Cost":114,"Date":"6/3/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":230,"Cost":192,"Date":"8/16/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":654,"Cost":401,"Date":"2/28/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":951,"Cost":627,"Date":"5/10/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":31,"Cost":19,"Date":"8/31/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":652,"Cost":585,"Date":"10/30/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":512,"Cost":459,"Date":"3/14/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":858,"Cost":552,"Date":"7/27/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":181,"Cost":121,"Date":"3/10/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":70,"Cost":55,"Date":"7/21/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":658,"Cost":499,"Date":"11/9/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":930,"Cost":577,"Date":"3/12/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":645,"Cost":523,"Date":"9/2/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":229,"Cost":185,"Date":"12/20/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":347,"Cost":304,"Date":"3/8/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":134,"Cost":81,"Date":"7/4/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":48,"Cost":32,"Date":"9/1/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":171,"Cost":127,"Date":"1/20/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":859,"Cost":794,"Date":"8/5/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":262,"Cost":171,"Date":"1/8/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":416,"Cost":372,"Date":"5/16/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":884,"Cost":651,"Date":"7/9/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":355,"Cost":334,"Date":"11/2/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":719,"Cost":426,"Date":"3/23/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":340,"Cost":295,"Date":"7/11/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":135,"Cost":119,"Date":"10/10/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":799,"Cost":655,"Date":"2/8/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":450,"Cost":351,"Date":"5/25/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":242,"Cost":176,"Date":"12/1/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":239,"Cost":211,"Date":"6/16/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":426,"Cost":214,"Date":"10/2/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":220,"Cost":139,"Date":"2/3/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":812,"Cost":743,"Date":"7/13/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":808,"Cost":529,"Date":"12/4/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":775,"Cost":671,"Date":"2/18/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":921,"Cost":846,"Date":"5/22/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":871,"Cost":500,"Date":"8/7/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":101,"Cost":91,"Date":"12/5/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":409,"Cost":383,"Date":"3/28/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":204,"Cost":185,"Date":"10/19/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":613,"Cost":506,"Date":"4/24/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":420,"Cost":270,"Date":"6/20/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":167,"Cost":96,"Date":"9/16/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":500,"Cost":347,"Date":"3/11/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":3,"Cost":2,"Date":"6/16/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":135,"Cost":72,"Date":"9/19/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":159,"Cost":104,"Date":"1/10/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":139,"Cost":91,"Date":"5/3/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":204,"Cost":156,"Date":"10/26/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":284,"Cost":208,"Date":"3/26/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":1000,"Cost":690,"Date":"9/4/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":453,"Cost":269,"Date":"12/11/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":548,"Cost":505,"Date":"6/8/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":826,"Cost":776,"Date":"11/4/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":859,"Cost":682,"Date":"2/5/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":301,"Cost":249,"Date":"4/10/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":244,"Cost":136,"Date":"7/19/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":561,"Cost":280,"Date":"11/7/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":786,"Cost":486,"Date":"3/1/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":610,"Cost":475,"Date":"9/3/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":971,"Cost":897,"Date":"1/31/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":156,"Cost":104,"Date":"6/5/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":747,"Cost":515,"Date":"8/23/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":212,"Cost":169,"Date":"3/4/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":104,"Cost":96,"Date":"5/20/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":258,"Cost":233,"Date":"9/8/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":370,"Cost":247,"Date":"11/1/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":533,"Cost":454,"Date":"3/27/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":609,"Cost":566,"Date":"9/17/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":219,"Cost":192,"Date":"3/16/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":971,"Cost":907,"Date":"7/25/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":517,"Cost":411,"Date":"11/23/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":387,"Cost":273,"Date":"4/19/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":114,"Cost":99,"Date":"9/29/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":140,"Cost":123,"Date":"12/20/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":465,"Cost":399,"Date":"4/2/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":601,"Cost":418,"Date":"7/8/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":605,"Cost":555,"Date":"9/1/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":503,"Cost":263,"Date":"2/2/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":9,"Cost":9,"Date":"8/12/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":721,"Cost":680,"Date":"1/14/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":881,"Cost":825,"Date":"5/18/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":393,"Cost":290,"Date":"7/12/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":184,"Cost":135,"Date":"12/17/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":278,"Cost":214,"Date":"4/1/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":646,"Cost":476,"Date":"8/28/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":112,"Cost":60,"Date":"10/17/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":754,"Cost":540,"Date":"2/25/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":50,"Cost":31,"Date":"5/26/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":197,"Cost":175,"Date":"2/9/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":316,"Cost":292,"Date":"6/25/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":865,"Cost":596,"Date":"10/15/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":122,"Cost":79,"Date":"2/4/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":394,"Cost":361,"Date":"8/8/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":632,"Cost":353,"Date":"12/7/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":971,"Cost":735,"Date":"2/22/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":824,"Cost":446,"Date":"6/20/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":650,"Cost":386,"Date":"8/22/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":903,"Cost":795,"Date":"12/26/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":335,"Cost":306,"Date":"5/21/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":634,"Cost":534,"Date":"11/15/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":958,"Cost":551,"Date":"4/28/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":361,"Cost":260,"Date":"6/24/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":347,"Cost":195,"Date":"10/4/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":698,"Cost":597,"Date":"3/17/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":657,"Cost":423,"Date":"6/16/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":537,"Cost":470,"Date":"9/25/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":887,"Cost":493,"Date":"1/14/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":122,"Cost":96,"Date":"5/9/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":665,"Cost":619,"Date":"11/16/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":742,"Cost":403,"Date":"6/2/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":941,"Cost":513,"Date":"9/19/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":928,"Cost":566,"Date":"1/15/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":517,"Cost":438,"Date":"6/26/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":719,"Cost":377,"Date":"11/7/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":881,"Cost":658,"Date":"2/16/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":358,"Cost":212,"Date":"4/19/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":976,"Cost":762,"Date":"8/1/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":247,"Cost":206,"Date":"11/26/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":239,"Cost":167,"Date":"3/1/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":432,"Cost":263,"Date":"9/5/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":243,"Cost":215,"Date":"3/27/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":804,"Cost":638,"Date":"6/7/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":736,"Cost":615,"Date":"9/2/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":137,"Cost":107,"Date":"3/9/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":561,"Cost":428,"Date":"6/2/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":589,"Cost":316,"Date":"9/13/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":301,"Cost":221,"Date":"11/15/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":832,"Cost":492,"Date":"4/5/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":143,"Cost":96,"Date":"10/6/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":514,"Cost":277,"Date":"3/18/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":123,"Cost":90,"Date":"8/4/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":485,"Cost":244,"Date":"11/30/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":994,"Cost":635,"Date":"5/3/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":811,"Cost":504,"Date":"10/12/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":514,"Cost":257,"Date":"12/21/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":701,"Cost":625,"Date":"4/3/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":987,"Cost":559,"Date":"7/9/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":259,"Cost":156,"Date":"9/17/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":760,"Cost":428,"Date":"2/8/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":943,"Cost":527,"Date":"8/21/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":793,"Cost":405,"Date":"1/19/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":535,"Cost":445,"Date":"6/2/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":522,"Cost":385,"Date":"8/14/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":511,"Cost":327,"Date":"2/10/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":273,"Cost":167,"Date":"5/7/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":841,"Cost":566,"Date":"8/29/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":699,"Cost":386,"Date":"10/28/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":792,"Cost":654,"Date":"3/7/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":838,"Cost":745,"Date":"5/31/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":586,"Cost":412,"Date":"2/11/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":351,"Cost":260,"Date":"7/19/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":983,"Cost":532,"Date":"10/30/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":89,"Cost":49,"Date":"3/9/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":43,"Cost":31,"Date":"8/26/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":641,"Cost":411,"Date":"12/18/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":143,"Cost":115,"Date":"2/25/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":571,"Cost":489,"Date":"7/1/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":764,"Cost":641,"Date":"8/31/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":722,"Cost":376,"Date":"12/31/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":494,"Cost":376,"Date":"7/21/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":670,"Cost":616,"Date":"12/8/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":284,"Cost":223,"Date":"5/15/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":953,"Cost":861,"Date":"7/4/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":6,"Cost":4,"Date":"11/1/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":414,"Cost":237,"Date":"3/17/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":799,"Cost":436,"Date":"7/10/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":895,"Cost":449,"Date":"10/4/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":784,"Cost":704,"Date":"1/20/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":23,"Cost":12,"Date":"5/15/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":56,"Cost":41,"Date":"11/18/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":584,"Cost":403,"Date":"6/10/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":776,"Cost":730,"Date":"9/29/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":709,"Cost":520,"Date":"1/24/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":371,"Cost":196,"Date":"7/4/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":409,"Cost":236,"Date":"12/1/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":463,"Cost":422,"Date":"2/16/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":255,"Cost":229,"Date":"5/17/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":266,"Cost":242,"Date":"8/6/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":44,"Cost":34,"Date":"11/27/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":20,"Cost":14,"Date":"3/19/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":259,"Cost":147,"Date":"10/6/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":326,"Cost":255,"Date":"4/20/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":386,"Cost":335,"Date":"6/14/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":993,"Cost":935,"Date":"9/3/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":156,"Cost":82,"Date":"3/9/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":165,"Cost":134,"Date":"6/11/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":986,"Cost":822,"Date":"9/14/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":763,"Cost":532,"Date":"11/25/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":50,"Cost":48,"Date":"4/14/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":864,"Cost":757,"Date":"10/8/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":137,"Cost":101,"Date":"3/20/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":230,"Cost":144,"Date":"9/2/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":276,"Cost":208,"Date":"12/8/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":951,"Cost":759,"Date":"5/4/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":479,"Cost":314,"Date":"11/2/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":404,"Cost":242,"Date":"1/9/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":353,"Cost":274,"Date":"4/9/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":184,"Cost":110,"Date":"7/14/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":823,"Cost":543,"Date":"9/29/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":262,"Cost":188,"Date":"2/27/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":421,"Cost":380,"Date":"8/23/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":484,"Cost":342,"Date":"1/28/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":844,"Cost":667,"Date":"6/3/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":667,"Cost":592,"Date":"8/16/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":892,"Cost":703,"Date":"2/28/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":580,"Cost":409,"Date":"5/10/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":256,"Cost":169,"Date":"8/31/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":880,"Cost":498,"Date":"10/30/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":844,"Cost":575,"Date":"3/14/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":648,"Cost":419,"Date":"7/27/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":713,"Cost":433,"Date":"3/10/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":578,"Cost":352,"Date":"7/21/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":685,"Cost":494,"Date":"11/9/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":201,"Cost":102,"Date":"3/12/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":285,"Cost":235,"Date":"9/2/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":168,"Cost":152,"Date":"12/20/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":618,"Cost":396,"Date":"3/8/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":90,"Cost":66,"Date":"7/4/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":948,"Cost":510,"Date":"9/1/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":524,"Cost":309,"Date":"1/20/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":199,"Cost":110,"Date":"8/5/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":886,"Cost":693,"Date":"1/8/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":11,"Cost":10,"Date":"5/16/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":509,"Cost":372,"Date":"7/9/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":911,"Cost":704,"Date":"11/2/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":262,"Cost":186,"Date":"3/23/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":166,"Cost":102,"Date":"7/11/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":450,"Cost":332,"Date":"10/10/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":139,"Cost":130,"Date":"2/8/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":484,"Cost":318,"Date":"5/25/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":774,"Cost":545,"Date":"12/1/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":584,"Cost":437,"Date":"6/16/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":632,"Cost":477,"Date":"10/2/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":899,"Cost":793,"Date":"2/3/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":172,"Cost":108,"Date":"7/13/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":136,"Cost":93,"Date":"12/4/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":943,"Cost":482,"Date":"2/18/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":408,"Cost":215,"Date":"5/22/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":537,"Cost":398,"Date":"8/7/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":2,"Cost":1,"Date":"12/5/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":350,"Cost":227,"Date":"3/28/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":553,"Cost":442,"Date":"10/19/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":944,"Cost":598,"Date":"4/24/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":532,"Cost":302,"Date":"6/20/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":726,"Cost":662,"Date":"9/16/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":746,"Cost":472,"Date":"3/11/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":988,"Cost":802,"Date":"6/16/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":143,"Cost":125,"Date":"9/19/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":610,"Cost":460,"Date":"1/10/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":948,"Cost":774,"Date":"5/3/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":62,"Cost":35,"Date":"10/26/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":120,"Cost":63,"Date":"3/26/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":920,"Cost":776,"Date":"9/4/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":95,"Cost":87,"Date":"12/11/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":674,"Cost":423,"Date":"6/8/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":561,"Cost":468,"Date":"11/4/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":56,"Cost":37,"Date":"2/5/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":259,"Cost":149,"Date":"4/10/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":837,"Cost":778,"Date":"7/19/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":650,"Cost":449,"Date":"11/7/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":810,"Cost":527,"Date":"3/1/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":426,"Cost":393,"Date":"9/3/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":541,"Cost":430,"Date":"1/31/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":321,"Cost":248,"Date":"6/5/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":628,"Cost":565,"Date":"8/23/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":838,"Cost":700,"Date":"3/4/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":616,"Cost":473,"Date":"5/20/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":496,"Cost":305,"Date":"9/8/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":440,"Cost":222,"Date":"11/1/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":615,"Cost":403,"Date":"3/27/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":375,"Cost":339,"Date":"9/17/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":906,"Cost":592,"Date":"3/16/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":903,"Cost":595,"Date":"7/25/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":867,"Cost":716,"Date":"11/23/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":221,"Cost":115,"Date":"4/19/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":454,"Cost":373,"Date":"9/29/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":272,"Cost":164,"Date":"12/20/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":129,"Cost":117,"Date":"4/2/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":938,"Cost":709,"Date":"7/8/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":481,"Cost":431,"Date":"9/1/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":575,"Cost":451,"Date":"2/2/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":455,"Cost":229,"Date":"8/12/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":90,"Cost":47,"Date":"1/14/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":748,"Cost":593,"Date":"5/18/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":943,"Cost":777,"Date":"7/12/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":44,"Cost":22,"Date":"12/17/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":969,"Cost":629,"Date":"4/1/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":184,"Cost":138,"Date":"8/28/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":738,"Cost":388,"Date":"10/17/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":883,"Cost":506,"Date":"2/25/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":914,"Cost":631,"Date":"5/26/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":8,"Cost":7,"Date":"2/9/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":621,"Cost":350,"Date":"6/25/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":657,"Cost":505,"Date":"10/15/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":910,"Cost":488,"Date":"2/4/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":390,"Cost":333,"Date":"8/8/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":886,"Cost":725,"Date":"12/7/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":43,"Cost":39,"Date":"2/22/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":794,"Cost":744,"Date":"6/20/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":550,"Cost":338,"Date":"8/22/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":796,"Cost":703,"Date":"12/26/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":659,"Cost":414,"Date":"5/21/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":446,"Cost":292,"Date":"11/15/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":657,"Cost":581,"Date":"4/28/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":530,"Cost":323,"Date":"6/24/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":487,"Cost":277,"Date":"10/4/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":418,"Cost":210,"Date":"3/17/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":395,"Cost":211,"Date":"6/16/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":56,"Cost":42,"Date":"9/25/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":339,"Cost":283,"Date":"1/14/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":186,"Cost":137,"Date":"5/9/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":118,"Cost":79,"Date":"11/16/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":961,"Cost":843,"Date":"6/2/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":289,"Cost":233,"Date":"9/19/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":803,"Cost":466,"Date":"1/15/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":314,"Cost":288,"Date":"6/26/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":875,"Cost":826,"Date":"11/7/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":843,"Cost":701,"Date":"2/16/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":993,"Cost":943,"Date":"4/19/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":70,"Cost":66,"Date":"8/1/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":511,"Cost":377,"Date":"11/26/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":72,"Cost":37,"Date":"3/1/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":144,"Cost":102,"Date":"9/5/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":603,"Cost":305,"Date":"3/27/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":181,"Cost":169,"Date":"6/7/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":207,"Cost":134,"Date":"9/2/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":943,"Cost":656,"Date":"3/9/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":168,"Cost":140,"Date":"6/2/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":910,"Cost":654,"Date":"9/13/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":290,"Cost":217,"Date":"11/15/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":522,"Cost":384,"Date":"4/5/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":893,"Cost":499,"Date":"10/6/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":157,"Cost":137,"Date":"3/18/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":252,"Cost":141,"Date":"8/4/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":17,"Cost":10,"Date":"11/30/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":529,"Cost":401,"Date":"5/3/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":697,"Cost":423,"Date":"10/12/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":476,"Cost":448,"Date":"12/21/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":574,"Cost":523,"Date":"4/3/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":902,"Cost":719,"Date":"7/9/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":658,"Cost":405,"Date":"9/17/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":325,"Cost":248,"Date":"2/8/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":172,"Cost":137,"Date":"8/21/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":471,"Cost":409,"Date":"1/19/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":912,"Cost":629,"Date":"6/2/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":217,"Cost":194,"Date":"8/14/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":364,"Cost":289,"Date":"2/10/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":598,"Cost":567,"Date":"5/7/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":707,"Cost":661,"Date":"8/29/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":891,"Cost":588,"Date":"10/28/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":244,"Cost":159,"Date":"3/7/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":188,"Cost":111,"Date":"5/31/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":506,"Cost":471,"Date":"2/11/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":165,"Cost":132,"Date":"7/19/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":616,"Cost":523,"Date":"10/30/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":336,"Cost":232,"Date":"3/9/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":655,"Cost":527,"Date":"8/26/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":585,"Cost":343,"Date":"12/18/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":895,"Cost":656,"Date":"2/25/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":945,"Cost":744,"Date":"7/1/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":487,"Cost":373,"Date":"8/31/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":679,"Cost":455,"Date":"12/31/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":727,"Cost":590,"Date":"7/21/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":407,"Cost":375,"Date":"12/8/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":882,"Cost":517,"Date":"5/15/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":81,"Cost":52,"Date":"7/4/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":962,"Cost":489,"Date":"11/1/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":65,"Cost":55,"Date":"3/17/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":188,"Cost":133,"Date":"7/10/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":977,"Cost":712,"Date":"10/4/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":400,"Cost":319,"Date":"1/20/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":106,"Cost":76,"Date":"5/15/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":329,"Cost":289,"Date":"11/18/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":31,"Cost":16,"Date":"6/10/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":752,"Cost":642,"Date":"9/29/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":305,"Cost":236,"Date":"1/24/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":515,"Cost":288,"Date":"7/4/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":90,"Cost":70,"Date":"12/1/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":978,"Cost":492,"Date":"2/16/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":534,"Cost":330,"Date":"5/17/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":461,"Cost":417,"Date":"8/6/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":756,"Cost":689,"Date":"11/27/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":789,"Cost":618,"Date":"3/19/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":958,"Cost":505,"Date":"10/6/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":964,"Cost":785,"Date":"4/20/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":919,"Cost":631,"Date":"6/14/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":508,"Cost":425,"Date":"9/3/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":7,"Cost":5,"Date":"3/9/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":32,"Cost":24,"Date":"6/11/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":167,"Cost":139,"Date":"9/14/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":673,"Cost":400,"Date":"11/25/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":812,"Cost":566,"Date":"4/14/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":273,"Cost":205,"Date":"10/8/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":301,"Cost":213,"Date":"3/20/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":507,"Cost":455,"Date":"9/2/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":163,"Cost":103,"Date":"12/8/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":56,"Cost":32,"Date":"5/4/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":475,"Cost":274,"Date":"11/2/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":631,"Cost":487,"Date":"1/9/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":893,"Cost":541,"Date":"4/9/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":289,"Cost":220,"Date":"7/14/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":13,"Cost":8,"Date":"9/29/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":302,"Cost":257,"Date":"2/27/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":520,"Cost":306,"Date":"8/23/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":713,"Cost":421,"Date":"1/28/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":952,"Cost":899,"Date":"6/3/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":691,"Cost":569,"Date":"8/16/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":952,"Cost":762,"Date":"2/28/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":680,"Cost":512,"Date":"5/10/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":2,"Cost":1,"Date":"8/31/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":459,"Cost":409,"Date":"10/30/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":182,"Cost":129,"Date":"3/14/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":628,"Cost":449,"Date":"7/27/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":286,"Cost":169,"Date":"3/10/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":473,"Cost":388,"Date":"7/21/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":722,"Cost":646,"Date":"11/9/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":477,"Cost":363,"Date":"3/12/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":669,"Cost":499,"Date":"9/2/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":670,"Cost":619,"Date":"12/20/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":810,"Cost":584,"Date":"3/8/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":725,"Cost":378,"Date":"7/4/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":148,"Cost":90,"Date":"9/1/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":274,"Cost":245,"Date":"1/20/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":649,"Cost":413,"Date":"8/5/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":253,"Cost":217,"Date":"1/8/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":404,"Cost":264,"Date":"5/16/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":973,"Cost":527,"Date":"7/9/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":586,"Cost":506,"Date":"11/2/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":196,"Cost":107,"Date":"3/23/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":651,"Cost":458,"Date":"7/11/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":659,"Cost":343,"Date":"10/10/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":434,"Cost":227,"Date":"2/8/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":54,"Cost":42,"Date":"5/25/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":580,"Cost":332,"Date":"12/1/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":411,"Cost":267,"Date":"6/16/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":732,"Cost":371,"Date":"10/2/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":152,"Cost":136,"Date":"2/3/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":653,"Cost":541,"Date":"7/13/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":712,"Cost":649,"Date":"12/4/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":270,"Cost":211,"Date":"2/18/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":865,"Cost":579,"Date":"5/22/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":142,"Cost":80,"Date":"8/7/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":418,"Cost":379,"Date":"12/5/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":423,"Cost":267,"Date":"3/28/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":118,"Cost":102,"Date":"10/19/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":669,"Cost":440,"Date":"4/24/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":171,"Cost":106,"Date":"6/20/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":786,"Cost":599,"Date":"9/16/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":677,"Cost":495,"Date":"3/11/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":982,"Cost":841,"Date":"6/16/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":286,"Cost":155,"Date":"9/19/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":144,"Cost":123,"Date":"1/10/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":861,"Cost":683,"Date":"5/3/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":982,"Cost":542,"Date":"10/26/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":426,"Cost":379,"Date":"3/26/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":798,"Cost":471,"Date":"9/4/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":901,"Cost":518,"Date":"12/11/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":878,"Cost":704,"Date":"6/8/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":52,"Cost":39,"Date":"11/4/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":931,"Cost":710,"Date":"2/5/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":151,"Cost":144,"Date":"4/10/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":196,"Cost":164,"Date":"7/19/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":603,"Cost":572,"Date":"11/7/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":459,"Cost":249,"Date":"3/1/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":849,"Cost":716,"Date":"9/3/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":896,"Cost":461,"Date":"1/31/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":515,"Cost":266,"Date":"6/5/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":827,"Cost":730,"Date":"8/23/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":504,"Cost":255,"Date":"3/4/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":758,"Cost":658,"Date":"5/20/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":57,"Cost":32,"Date":"9/8/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":658,"Cost":590,"Date":"11/1/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":949,"Cost":855,"Date":"3/27/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":333,"Cost":224,"Date":"9/17/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":314,"Cost":295,"Date":"3/16/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":16,"Cost":11,"Date":"7/25/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":395,"Cost":373,"Date":"11/23/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":424,"Cost":220,"Date":"4/19/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":312,"Cost":215,"Date":"9/29/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":248,"Cost":149,"Date":"12/20/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":145,"Cost":113,"Date":"4/2/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":523,"Cost":418,"Date":"7/8/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":718,"Cost":546,"Date":"9/1/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":379,"Cost":213,"Date":"2/2/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":484,"Cost":318,"Date":"8/12/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":282,"Cost":268,"Date":"1/14/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":497,"Cost":249,"Date":"5/18/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":247,"Cost":223,"Date":"7/12/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":393,"Cost":329,"Date":"12/17/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":189,"Cost":133,"Date":"4/1/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":500,"Cost":301,"Date":"8/28/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":469,"Cost":440,"Date":"10/17/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":847,"Cost":616,"Date":"2/25/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":229,"Cost":142,"Date":"5/26/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":691,"Cost":373,"Date":"2/9/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":978,"Cost":647,"Date":"6/25/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":279,"Cost":261,"Date":"10/15/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":1000,"Cost":756,"Date":"2/4/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":402,"Cost":201,"Date":"8/8/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":190,"Cost":121,"Date":"12/7/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":393,"Cost":245,"Date":"2/22/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":456,"Cost":423,"Date":"6/20/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":962,"Cost":838,"Date":"8/22/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":326,"Cost":290,"Date":"12/26/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":681,"Cost":350,"Date":"5/21/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":366,"Cost":309,"Date":"11/15/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":253,"Cost":129,"Date":"4/28/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":13,"Cost":8,"Date":"6/24/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":810,"Cost":522,"Date":"10/4/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":917,"Cost":716,"Date":"3/17/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":860,"Cost":527,"Date":"6/16/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":301,"Cost":262,"Date":"9/25/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":326,"Cost":210,"Date":"1/14/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":20,"Cost":11,"Date":"5/9/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":975,"Cost":826,"Date":"11/16/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":586,"Cost":423,"Date":"6/2/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":309,"Cost":287,"Date":"9/19/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":551,"Cost":277,"Date":"1/15/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":729,"Cost":541,"Date":"6/26/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":702,"Cost":394,"Date":"11/7/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":754,"Cost":695,"Date":"2/16/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":568,"Cost":347,"Date":"4/19/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":265,"Cost":213,"Date":"8/1/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":330,"Cost":284,"Date":"11/26/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":987,"Cost":513,"Date":"3/1/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":863,"Cost":637,"Date":"9/5/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":905,"Cost":704,"Date":"3/27/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":818,"Cost":558,"Date":"6/7/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":160,"Cost":142,"Date":"9/2/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":411,"Cost":315,"Date":"3/9/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":130,"Cost":81,"Date":"6/2/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":254,"Cost":179,"Date":"9/13/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":51,"Cost":41,"Date":"11/15/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":496,"Cost":400,"Date":"4/5/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":947,"Cost":873,"Date":"10/6/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":799,"Cost":579,"Date":"3/18/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":873,"Cost":761,"Date":"8/4/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":800,"Cost":529,"Date":"11/30/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":642,"Cost":610,"Date":"5/3/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":578,"Cost":363,"Date":"10/12/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":312,"Cost":244,"Date":"12/21/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":786,"Cost":731,"Date":"4/3/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":590,"Cost":477,"Date":"7/9/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":181,"Cost":132,"Date":"9/17/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":975,"Cost":724,"Date":"2/8/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":419,"Cost":381,"Date":"8/21/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":347,"Cost":271,"Date":"1/19/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":937,"Cost":557,"Date":"6/2/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":978,"Cost":794,"Date":"8/14/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":484,"Cost":387,"Date":"2/10/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":526,"Cost":413,"Date":"5/7/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":189,"Cost":110,"Date":"8/29/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":792,"Cost":411,"Date":"10/28/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":342,"Cost":297,"Date":"3/7/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":509,"Cost":392,"Date":"5/31/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":309,"Cost":188,"Date":"2/11/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":108,"Cost":94,"Date":"7/19/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":764,"Cost":475,"Date":"10/30/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":650,"Cost":590,"Date":"3/9/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":433,"Cost":390,"Date":"8/26/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":534,"Cost":367,"Date":"12/18/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":85,"Cost":48,"Date":"2/25/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":193,"Cost":167,"Date":"7/1/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":845,"Cost":634,"Date":"8/31/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":873,"Cost":709,"Date":"12/31/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":514,"Cost":326,"Date":"7/21/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":541,"Cost":369,"Date":"12/8/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":158,"Cost":91,"Date":"5/15/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":835,"Cost":432,"Date":"7/4/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":741,"Cost":599,"Date":"11/1/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":83,"Cost":75,"Date":"3/17/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":108,"Cost":85,"Date":"7/10/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":405,"Cost":273,"Date":"10/4/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":667,"Cost":456,"Date":"1/20/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":673,"Cost":584,"Date":"5/15/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":593,"Cost":469,"Date":"11/18/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":29,"Cost":24,"Date":"6/10/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":498,"Cost":346,"Date":"9/29/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":189,"Cost":165,"Date":"1/24/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":871,"Cost":718,"Date":"7/4/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":577,"Cost":528,"Date":"12/1/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":374,"Cost":263,"Date":"2/16/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":399,"Cost":243,"Date":"5/17/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":915,"Cost":495,"Date":"8/6/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":617,"Cost":502,"Date":"11/27/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":791,"Cost":444,"Date":"3/19/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":562,"Cost":500,"Date":"10/6/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":341,"Cost":305,"Date":"4/20/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":133,"Cost":67,"Date":"6/14/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":841,"Cost":646,"Date":"9/3/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":888,"Cost":517,"Date":"3/9/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":105,"Cost":72,"Date":"6/11/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":315,"Cost":214,"Date":"9/14/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":985,"Cost":623,"Date":"11/25/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":140,"Cost":94,"Date":"4/14/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":617,"Cost":317,"Date":"10/8/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":91,"Cost":78,"Date":"3/20/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":91,"Cost":47,"Date":"9/2/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":853,"Cost":475,"Date":"12/8/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":871,"Cost":798,"Date":"5/4/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":220,"Cost":204,"Date":"11/2/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":76,"Cost":51,"Date":"1/9/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":885,"Cost":613,"Date":"4/9/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":261,"Cost":166,"Date":"7/14/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":595,"Cost":366,"Date":"9/29/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":60,"Cost":49,"Date":"2/27/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":891,"Cost":719,"Date":"8/23/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":588,"Cost":414,"Date":"1/28/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":2,"Cost":1,"Date":"6/3/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":981,"Cost":706,"Date":"8/16/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":435,"Cost":219,"Date":"2/28/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":496,"Cost":322,"Date":"5/10/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":194,"Cost":130,"Date":"8/31/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":308,"Cost":230,"Date":"10/30/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":46,"Cost":36,"Date":"3/14/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":400,"Cost":286,"Date":"7/27/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":284,"Cost":260,"Date":"3/10/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":145,"Cost":107,"Date":"7/21/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":595,"Cost":454,"Date":"11/9/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":398,"Cost":306,"Date":"3/12/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":922,"Cost":800,"Date":"9/2/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":200,"Cost":111,"Date":"12/20/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":390,"Cost":235,"Date":"3/8/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":66,"Cost":52,"Date":"7/4/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":309,"Cost":274,"Date":"9/1/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":101,"Cost":73,"Date":"1/20/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":729,"Cost":654,"Date":"8/5/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":160,"Cost":144,"Date":"1/8/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":954,"Cost":525,"Date":"5/16/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":782,"Cost":452,"Date":"7/9/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":89,"Cost":79,"Date":"11/2/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":203,"Cost":175,"Date":"3/23/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":191,"Cost":148,"Date":"7/11/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":300,"Cost":192,"Date":"10/10/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":417,"Cost":396,"Date":"2/8/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":179,"Cost":166,"Date":"5/25/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":571,"Cost":521,"Date":"12/1/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":238,"Cost":120,"Date":"6/16/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":604,"Cost":461,"Date":"10/2/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":114,"Cost":66,"Date":"2/3/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":10,"Cost":8,"Date":"7/13/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":538,"Cost":487,"Date":"12/4/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":315,"Cost":245,"Date":"2/18/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":822,"Cost":654,"Date":"5/22/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":477,"Cost":324,"Date":"8/7/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":106,"Cost":82,"Date":"12/5/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":407,"Cost":376,"Date":"3/28/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":972,"Cost":619,"Date":"10/19/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":811,"Cost":622,"Date":"4/24/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":392,"Cost":241,"Date":"6/20/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":846,"Cost":662,"Date":"9/16/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":558,"Cost":498,"Date":"3/11/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":380,"Cost":244,"Date":"6/16/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":768,"Cost":641,"Date":"9/19/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":338,"Cost":310,"Date":"1/10/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":82,"Cost":51,"Date":"5/3/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":993,"Cost":507,"Date":"10/26/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":574,"Cost":304,"Date":"3/26/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":546,"Cost":381,"Date":"9/4/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":200,"Cost":105,"Date":"12/11/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":255,"Cost":195,"Date":"6/8/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":201,"Cost":117,"Date":"11/4/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":601,"Cost":484,"Date":"2/5/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":545,"Cost":398,"Date":"4/10/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":661,"Cost":352,"Date":"7/19/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":273,"Cost":164,"Date":"11/7/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":289,"Cost":251,"Date":"3/1/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":101,"Cost":95,"Date":"9/3/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":857,"Cost":539,"Date":"1/31/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":130,"Cost":118,"Date":"6/5/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":895,"Cost":653,"Date":"8/23/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":298,"Cost":240,"Date":"3/4/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":187,"Cost":171,"Date":"5/20/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":22,"Cost":21,"Date":"9/8/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":833,"Cost":444,"Date":"11/1/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":901,"Cost":831,"Date":"3/27/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":720,"Cost":634,"Date":"9/17/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":125,"Cost":103,"Date":"3/16/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":497,"Cost":311,"Date":"7/25/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":657,"Cost":369,"Date":"11/23/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":706,"Cost":609,"Date":"4/19/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":669,"Cost":343,"Date":"9/29/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":105,"Cost":96,"Date":"12/20/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":339,"Cost":243,"Date":"4/2/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":308,"Cost":270,"Date":"7/8/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":506,"Cost":299,"Date":"9/1/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":597,"Cost":522,"Date":"2/2/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":485,"Cost":396,"Date":"8/12/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":959,"Cost":859,"Date":"1/14/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":895,"Cost":763,"Date":"5/18/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":916,"Cost":491,"Date":"7/12/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":621,"Cost":412,"Date":"12/17/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":852,"Cost":760,"Date":"4/1/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":816,"Cost":480,"Date":"8/28/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":604,"Cost":570,"Date":"10/17/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":580,"Cost":418,"Date":"2/25/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":968,"Cost":646,"Date":"5/26/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":141,"Cost":78,"Date":"2/9/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":993,"Cost":600,"Date":"6/25/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":945,"Cost":747,"Date":"10/15/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":373,"Cost":353,"Date":"2/4/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":449,"Cost":382,"Date":"8/8/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":515,"Cost":370,"Date":"12/7/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":790,"Cost":595,"Date":"2/22/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":475,"Cost":325,"Date":"6/20/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":903,"Cost":676,"Date":"8/22/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":487,"Cost":447,"Date":"12/26/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":454,"Cost":365,"Date":"5/21/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":503,"Cost":364,"Date":"11/15/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":100,"Cost":95,"Date":"4/28/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":634,"Cost":560,"Date":"6/24/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":714,"Cost":364,"Date":"10/4/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":910,"Cost":607,"Date":"3/17/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":120,"Cost":103,"Date":"6/16/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":337,"Cost":319,"Date":"9/25/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":441,"Cost":400,"Date":"1/14/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":110,"Cost":94,"Date":"5/9/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":712,"Cost":357,"Date":"11/16/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":246,"Cost":146,"Date":"6/2/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":666,"Cost":592,"Date":"9/19/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":540,"Cost":346,"Date":"1/15/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":517,"Cost":383,"Date":"6/26/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":184,"Cost":149,"Date":"11/7/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":232,"Cost":203,"Date":"2/16/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":300,"Cost":238,"Date":"4/19/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":591,"Cost":379,"Date":"8/1/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":722,"Cost":601,"Date":"11/26/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":665,"Cost":521,"Date":"3/1/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":147,"Cost":87,"Date":"9/5/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":996,"Cost":670,"Date":"3/27/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":47,"Cost":33,"Date":"6/7/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":858,"Cost":806,"Date":"9/2/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":201,"Cost":104,"Date":"3/9/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":811,"Cost":556,"Date":"6/2/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":325,"Cost":230,"Date":"9/13/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":862,"Cost":613,"Date":"11/15/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":658,"Cost":397,"Date":"4/5/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":807,"Cost":437,"Date":"10/6/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":246,"Cost":138,"Date":"3/18/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":197,"Cost":123,"Date":"8/4/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":311,"Cost":235,"Date":"11/30/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":539,"Cost":361,"Date":"5/3/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":298,"Cost":168,"Date":"10/12/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":702,"Cost":446,"Date":"12/21/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":585,"Cost":433,"Date":"4/3/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":71,"Cost":55,"Date":"7/9/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":914,"Cost":692,"Date":"9/17/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":987,"Cost":739,"Date":"2/8/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":616,"Cost":485,"Date":"8/21/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":27,"Cost":24,"Date":"1/19/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":141,"Cost":107,"Date":"6/2/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":976,"Cost":782,"Date":"8/14/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":817,"Cost":643,"Date":"2/10/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":873,"Cost":821,"Date":"5/7/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":630,"Cost":548,"Date":"8/29/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":801,"Cost":675,"Date":"10/28/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":976,"Cost":914,"Date":"3/7/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":339,"Cost":246,"Date":"5/31/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":6,"Cost":3,"Date":"2/11/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":255,"Cost":193,"Date":"7/19/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":872,"Cost":667,"Date":"10/30/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":816,"Cost":606,"Date":"3/9/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":453,"Cost":372,"Date":"8/26/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":84,"Cost":57,"Date":"12/18/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":486,"Cost":423,"Date":"2/25/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":252,"Cost":166,"Date":"7/1/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":648,"Cost":490,"Date":"8/31/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":325,"Cost":208,"Date":"12/31/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":924,"Cost":831,"Date":"7/21/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":877,"Cost":808,"Date":"12/8/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":38,"Cost":26,"Date":"5/15/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":129,"Cost":117,"Date":"7/4/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":331,"Cost":250,"Date":"11/1/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":82,"Cost":54,"Date":"3/17/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":566,"Cost":377,"Date":"7/10/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":503,"Cost":325,"Date":"10/4/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":447,"Cost":385,"Date":"1/20/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":565,"Cost":493,"Date":"5/15/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":933,"Cost":566,"Date":"11/18/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":843,"Cost":733,"Date":"6/10/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":350,"Cost":246,"Date":"9/29/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":501,"Cost":252,"Date":"1/24/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":532,"Cost":297,"Date":"7/4/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":304,"Cost":178,"Date":"12/1/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":270,"Cost":200,"Date":"2/16/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":153,"Cost":76,"Date":"5/17/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":558,"Cost":371,"Date":"8/6/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":221,"Cost":126,"Date":"11/27/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":815,"Cost":428,"Date":"3/19/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":793,"Cost":522,"Date":"10/6/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":16,"Cost":11,"Date":"4/20/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":197,"Cost":146,"Date":"6/14/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":717,"Cost":409,"Date":"9/3/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":881,"Cost":501,"Date":"3/9/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":143,"Cost":77,"Date":"6/11/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":823,"Cost":657,"Date":"9/14/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":853,"Cost":491,"Date":"11/25/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":528,"Cost":466,"Date":"4/14/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":759,"Cost":588,"Date":"10/8/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":119,"Cost":60,"Date":"3/20/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":300,"Cost":204,"Date":"9/2/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":979,"Cost":672,"Date":"12/8/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":582,"Cost":347,"Date":"5/4/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":402,"Cost":288,"Date":"11/2/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":619,"Cost":537,"Date":"1/9/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":906,"Cost":850,"Date":"4/9/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":909,"Cost":857,"Date":"7/14/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":795,"Cost":607,"Date":"9/29/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":203,"Cost":107,"Date":"2/27/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":383,"Cost":285,"Date":"8/23/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":168,"Cost":109,"Date":"1/28/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":766,"Cost":599,"Date":"6/3/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":770,"Cost":399,"Date":"8/16/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":679,"Cost":435,"Date":"2/28/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":703,"Cost":452,"Date":"5/10/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":807,"Cost":528,"Date":"8/31/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":94,"Cost":83,"Date":"10/30/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":332,"Cost":228,"Date":"3/14/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":478,"Cost":252,"Date":"7/27/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":125,"Cost":103,"Date":"3/10/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":471,"Cost":313,"Date":"7/21/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":538,"Cost":360,"Date":"11/9/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":688,"Cost":554,"Date":"3/12/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":826,"Cost":529,"Date":"9/2/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":780,"Cost":396,"Date":"12/20/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":351,"Cost":216,"Date":"3/8/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":828,"Cost":638,"Date":"7/4/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":778,"Cost":663,"Date":"9/1/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":903,"Cost":736,"Date":"1/20/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":284,"Cost":260,"Date":"8/5/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":11,"Cost":7,"Date":"1/8/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":458,"Cost":256,"Date":"5/16/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":592,"Cost":343,"Date":"7/9/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":825,"Cost":587,"Date":"11/2/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":297,"Cost":217,"Date":"3/23/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":228,"Cost":193,"Date":"7/11/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":428,"Cost":220,"Date":"10/10/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":270,"Cost":178,"Date":"2/8/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":478,"Cost":303,"Date":"5/25/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":599,"Cost":440,"Date":"12/1/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":43,"Cost":27,"Date":"6/16/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":774,"Cost":681,"Date":"10/2/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":871,"Cost":442,"Date":"2/3/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":748,"Cost":460,"Date":"7/13/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":468,"Cost":384,"Date":"12/4/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":822,"Cost":722,"Date":"2/18/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":325,"Cost":266,"Date":"5/22/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":654,"Cost":544,"Date":"8/7/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":526,"Cost":439,"Date":"12/5/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":194,"Cost":138,"Date":"3/28/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":597,"Cost":567,"Date":"10/19/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":918,"Cost":629,"Date":"4/24/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":884,"Cost":746,"Date":"6/20/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":454,"Cost":339,"Date":"9/16/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":516,"Cost":370,"Date":"3/11/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":380,"Cost":356,"Date":"6/16/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":685,"Cost":480,"Date":"9/19/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":930,"Cost":654,"Date":"1/10/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":999,"Cost":606,"Date":"5/3/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":114,"Cost":94,"Date":"10/26/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":340,"Cost":204,"Date":"3/26/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":511,"Cost":277,"Date":"9/4/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":383,"Cost":216,"Date":"12/11/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":192,"Cost":153,"Date":"6/8/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":569,"Cost":454,"Date":"11/4/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":112,"Cost":94,"Date":"2/5/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":626,"Cost":449,"Date":"4/10/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":624,"Cost":468,"Date":"7/19/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":342,"Cost":179,"Date":"11/7/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":902,"Cost":586,"Date":"3/1/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":716,"Cost":679,"Date":"9/3/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":190,"Cost":178,"Date":"1/31/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":823,"Cost":476,"Date":"6/5/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":429,"Cost":222,"Date":"8/23/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":607,"Cost":416,"Date":"3/4/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":866,"Cost":646,"Date":"5/20/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":359,"Cost":192,"Date":"9/8/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":859,"Cost":532,"Date":"11/1/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":929,"Cost":536,"Date":"3/27/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":451,"Cost":356,"Date":"9/17/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":974,"Cost":822,"Date":"3/16/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":50,"Cost":31,"Date":"7/25/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":344,"Cost":326,"Date":"11/23/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":470,"Cost":359,"Date":"4/19/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":980,"Cost":658,"Date":"9/29/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":697,"Cost":562,"Date":"12/20/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":573,"Cost":428,"Date":"4/2/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":181,"Cost":165,"Date":"7/8/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":251,"Cost":128,"Date":"9/1/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":430,"Cost":381,"Date":"2/2/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":854,"Cost":707,"Date":"8/12/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":429,"Cost":312,"Date":"1/14/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":424,"Cost":365,"Date":"5/18/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":218,"Cost":176,"Date":"7/12/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":746,"Cost":646,"Date":"12/17/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":838,"Cost":496,"Date":"4/1/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":331,"Cost":263,"Date":"8/28/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":641,"Cost":414,"Date":"10/17/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":876,"Cost":658,"Date":"2/25/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":799,"Cost":727,"Date":"5/26/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":466,"Cost":423,"Date":"2/9/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":345,"Cost":292,"Date":"6/25/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":180,"Cost":119,"Date":"10/15/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":665,"Cost":369,"Date":"2/4/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":694,"Cost":613,"Date":"8/8/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":321,"Cost":167,"Date":"12/7/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":306,"Cost":185,"Date":"2/22/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":307,"Cost":212,"Date":"6/20/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":829,"Cost":557,"Date":"8/22/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":454,"Cost":230,"Date":"12/26/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":35,"Cost":31,"Date":"5/21/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":410,"Cost":302,"Date":"11/15/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":394,"Cost":371,"Date":"4/28/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":955,"Cost":539,"Date":"6/24/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":899,"Cost":485,"Date":"10/4/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":151,"Cost":86,"Date":"3/17/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":779,"Cost":638,"Date":"6/16/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":121,"Cost":68,"Date":"9/25/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":995,"Cost":777,"Date":"1/14/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":667,"Cost":558,"Date":"5/9/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":242,"Cost":137,"Date":"11/16/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":7,"Cost":5,"Date":"6/2/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":833,"Cost":546,"Date":"9/19/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":491,"Cost":267,"Date":"1/15/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":776,"Cost":450,"Date":"6/26/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":973,"Cost":530,"Date":"11/7/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":178,"Cost":93,"Date":"2/16/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":79,"Cost":62,"Date":"4/19/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":399,"Cost":272,"Date":"8/1/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":338,"Cost":192,"Date":"11/26/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":625,"Cost":433,"Date":"3/1/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":678,"Cost":444,"Date":"9/5/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":198,"Cost":159,"Date":"3/27/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":768,"Cost":494,"Date":"6/7/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":647,"Cost":472,"Date":"9/2/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":405,"Cost":278,"Date":"3/9/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":425,"Cost":377,"Date":"6/2/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":888,"Cost":545,"Date":"9/13/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":242,"Cost":219,"Date":"11/15/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":765,"Cost":537,"Date":"4/5/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":305,"Cost":211,"Date":"10/6/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":276,"Cost":178,"Date":"3/18/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":818,"Cost":624,"Date":"8/4/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":367,"Cost":327,"Date":"11/30/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":558,"Cost":433,"Date":"5/3/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":263,"Cost":243,"Date":"10/12/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":602,"Cost":316,"Date":"12/21/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":408,"Cost":230,"Date":"4/3/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":63,"Cost":40,"Date":"7/9/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":178,"Cost":143,"Date":"9/17/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":441,"Cost":323,"Date":"2/8/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":566,"Cost":479,"Date":"8/21/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":842,"Cost":746,"Date":"1/19/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":230,"Cost":140,"Date":"6/2/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":951,"Cost":563,"Date":"8/14/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":481,"Cost":355,"Date":"2/10/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":190,"Cost":139,"Date":"5/7/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":535,"Cost":470,"Date":"8/29/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":470,"Cost":392,"Date":"10/28/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":870,"Cost":562,"Date":"3/7/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":428,"Cost":351,"Date":"5/31/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":317,"Cost":293,"Date":"2/11/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":814,"Cost":529,"Date":"7/19/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":273,"Cost":186,"Date":"10/30/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":883,"Cost":529,"Date":"3/9/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":827,"Cost":455,"Date":"8/26/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":571,"Cost":299,"Date":"12/18/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":237,"Cost":185,"Date":"2/25/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":347,"Cost":221,"Date":"7/1/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":973,"Cost":798,"Date":"8/31/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":366,"Cost":198,"Date":"12/31/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":773,"Cost":547,"Date":"7/21/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":679,"Cost":555,"Date":"12/8/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":203,"Cost":193,"Date":"5/15/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":459,"Cost":370,"Date":"7/4/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":552,"Cost":344,"Date":"11/1/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":776,"Cost":497,"Date":"3/17/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":615,"Cost":361,"Date":"7/10/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":80,"Cost":60,"Date":"10/4/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":883,"Cost":510,"Date":"1/20/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":221,"Cost":147,"Date":"5/15/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":830,"Cost":446,"Date":"11/18/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":48,"Cost":37,"Date":"6/10/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":904,"Cost":618,"Date":"9/29/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":574,"Cost":373,"Date":"1/24/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":933,"Cost":774,"Date":"7/4/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":74,"Cost":63,"Date":"12/1/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":498,"Cost":250,"Date":"2/16/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":318,"Cost":209,"Date":"5/17/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":519,"Cost":476,"Date":"8/6/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":318,"Cost":295,"Date":"11/27/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":548,"Cost":352,"Date":"3/19/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":843,"Cost":462,"Date":"10/6/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":670,"Cost":606,"Date":"4/20/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":421,"Cost":384,"Date":"6/14/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":480,"Cost":262,"Date":"9/3/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":351,"Cost":232,"Date":"3/9/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":730,"Cost":528,"Date":"6/11/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":166,"Cost":84,"Date":"9/14/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":225,"Cost":192,"Date":"11/25/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":965,"Cost":803,"Date":"4/14/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":687,"Cost":423,"Date":"10/8/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":123,"Cost":69,"Date":"3/20/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":235,"Cost":192,"Date":"9/2/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":861,"Cost":752,"Date":"12/8/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":948,"Cost":560,"Date":"5/4/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":486,"Cost":360,"Date":"11/2/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":402,"Cost":263,"Date":"1/9/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":222,"Cost":188,"Date":"4/9/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":473,"Cost":285,"Date":"7/14/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":517,"Cost":353,"Date":"9/29/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":646,"Cost":542,"Date":"2/27/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":90,"Cost":78,"Date":"8/23/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":324,"Cost":189,"Date":"1/28/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":331,"Cost":242,"Date":"6/3/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":33,"Cost":29,"Date":"8/16/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":357,"Cost":251,"Date":"2/28/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":650,"Cost":502,"Date":"5/10/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":638,"Cost":352,"Date":"8/31/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":532,"Cost":471,"Date":"10/30/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":613,"Cost":384,"Date":"3/14/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":310,"Cost":224,"Date":"7/27/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":957,"Cost":646,"Date":"3/10/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":436,"Cost":248,"Date":"7/21/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":186,"Cost":132,"Date":"11/9/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":678,"Cost":473,"Date":"3/12/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":199,"Cost":125,"Date":"9/2/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":777,"Cost":438,"Date":"12/20/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":445,"Cost":270,"Date":"3/8/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":994,"Cost":536,"Date":"7/4/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":76,"Cost":71,"Date":"9/1/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":597,"Cost":536,"Date":"1/20/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":209,"Cost":184,"Date":"8/5/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":675,"Cost":402,"Date":"1/8/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":109,"Cost":71,"Date":"5/16/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":383,"Cost":280,"Date":"7/9/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":691,"Cost":351,"Date":"11/2/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":296,"Cost":251,"Date":"3/23/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":968,"Cost":820,"Date":"7/11/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":306,"Cost":156,"Date":"10/10/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":805,"Cost":725,"Date":"2/8/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":791,"Cost":445,"Date":"5/25/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":149,"Cost":141,"Date":"12/1/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":390,"Cost":316,"Date":"6/16/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":329,"Cost":198,"Date":"10/2/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":688,"Cost":621,"Date":"2/3/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":111,"Cost":85,"Date":"7/13/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":736,"Cost":508,"Date":"12/4/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":320,"Cost":222,"Date":"2/18/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":537,"Cost":330,"Date":"5/22/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":659,"Cost":500,"Date":"8/7/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":611,"Cost":444,"Date":"12/5/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":863,"Cost":451,"Date":"3/28/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":359,"Cost":316,"Date":"10/19/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":827,"Cost":710,"Date":"4/24/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":556,"Cost":474,"Date":"6/20/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":775,"Cost":545,"Date":"9/16/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":101,"Cost":84,"Date":"3/11/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":55,"Cost":38,"Date":"6/16/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":515,"Cost":474,"Date":"9/19/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":203,"Cost":140,"Date":"1/10/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":805,"Cost":448,"Date":"5/3/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":458,"Cost":397,"Date":"10/26/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":868,"Cost":732,"Date":"3/26/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":720,"Cost":468,"Date":"9/4/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":5,"Cost":3,"Date":"12/11/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":404,"Cost":383,"Date":"6/8/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":742,"Cost":472,"Date":"11/4/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":268,"Cost":172,"Date":"2/5/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":974,"Cost":785,"Date":"4/10/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":645,"Cost":533,"Date":"7/19/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":556,"Cost":292,"Date":"11/7/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":427,"Cost":342,"Date":"3/1/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":1000,"Cost":898,"Date":"9/3/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":119,"Cost":71,"Date":"1/31/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":959,"Cost":586,"Date":"6/5/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":483,"Cost":383,"Date":"8/23/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":689,"Cost":389,"Date":"3/4/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":551,"Cost":495,"Date":"5/20/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":14,"Cost":9,"Date":"9/8/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":123,"Cost":76,"Date":"11/1/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":851,"Cost":432,"Date":"3/27/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":491,"Cost":410,"Date":"9/17/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":70,"Cost":63,"Date":"3/16/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":807,"Cost":480,"Date":"7/25/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":776,"Cost":536,"Date":"11/23/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":954,"Cost":518,"Date":"4/19/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":779,"Cost":570,"Date":"9/29/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":443,"Cost":300,"Date":"12/20/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":93,"Cost":70,"Date":"4/2/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":564,"Cost":440,"Date":"7/8/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":316,"Cost":186,"Date":"9/1/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":274,"Cost":160,"Date":"2/2/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":10,"Cost":8,"Date":"8/12/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":708,"Cost":528,"Date":"1/14/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":357,"Cost":320,"Date":"5/18/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":923,"Cost":579,"Date":"7/12/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":878,"Cost":811,"Date":"12/17/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":563,"Cost":522,"Date":"4/1/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":246,"Cost":215,"Date":"8/28/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":618,"Cost":509,"Date":"10/17/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":688,"Cost":561,"Date":"2/25/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":92,"Cost":82,"Date":"5/26/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":472,"Cost":250,"Date":"2/9/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":588,"Cost":537,"Date":"6/25/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":344,"Cost":251,"Date":"10/15/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":688,"Cost":567,"Date":"2/4/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":177,"Cost":144,"Date":"8/8/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":305,"Cost":210,"Date":"12/7/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":338,"Cost":239,"Date":"2/22/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":549,"Cost":378,"Date":"6/20/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":537,"Cost":469,"Date":"8/22/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":439,"Cost":233,"Date":"12/26/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":70,"Cost":47,"Date":"5/21/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":46,"Cost":34,"Date":"11/15/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":196,"Cost":126,"Date":"4/28/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":589,"Cost":390,"Date":"6/24/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":184,"Cost":168,"Date":"10/4/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":842,"Cost":550,"Date":"3/17/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":75,"Cost":57,"Date":"6/16/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":64,"Cost":51,"Date":"9/25/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":24,"Cost":17,"Date":"1/14/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":952,"Cost":560,"Date":"5/9/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":741,"Cost":387,"Date":"11/16/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":109,"Cost":82,"Date":"6/2/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":945,"Cost":535,"Date":"9/19/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":181,"Cost":137,"Date":"1/15/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":433,"Cost":221,"Date":"6/26/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":927,"Cost":519,"Date":"11/7/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":800,"Cost":458,"Date":"2/16/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":680,"Cost":515,"Date":"4/19/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":963,"Cost":591,"Date":"8/1/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":129,"Cost":77,"Date":"11/26/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":113,"Cost":107,"Date":"3/1/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":419,"Cost":356,"Date":"9/5/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":664,"Cost":374,"Date":"3/27/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":137,"Cost":130,"Date":"6/7/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":301,"Cost":220,"Date":"9/2/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":27,"Cost":26,"Date":"3/9/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":195,"Cost":173,"Date":"6/2/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":666,"Cost":501,"Date":"9/13/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":109,"Cost":56,"Date":"11/15/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":569,"Cost":325,"Date":"4/5/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":679,"Cost":633,"Date":"10/6/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":862,"Cost":688,"Date":"3/18/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":469,"Cost":426,"Date":"8/4/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":897,"Cost":752,"Date":"11/30/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":195,"Cost":149,"Date":"5/3/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":88,"Cost":76,"Date":"10/12/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":334,"Cost":289,"Date":"12/21/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":292,"Cost":235,"Date":"4/3/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":697,"Cost":373,"Date":"7/9/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":776,"Cost":565,"Date":"9/17/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":491,"Cost":430,"Date":"2/8/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":957,"Cost":745,"Date":"8/21/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":622,"Cost":312,"Date":"1/19/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":850,"Cost":635,"Date":"6/2/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":942,"Cost":514,"Date":"8/14/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":794,"Cost":595,"Date":"2/10/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":366,"Cost":253,"Date":"5/7/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":811,"Cost":711,"Date":"8/29/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":453,"Cost":392,"Date":"10/28/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":961,"Cost":593,"Date":"3/7/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":260,"Cost":195,"Date":"5/31/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":800,"Cost":740,"Date":"2/11/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":310,"Cost":241,"Date":"7/19/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":484,"Cost":456,"Date":"10/30/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":644,"Cost":584,"Date":"3/9/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":995,"Cost":806,"Date":"8/26/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":128,"Cost":105,"Date":"12/18/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":763,"Cost":684,"Date":"2/25/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":338,"Cost":305,"Date":"7/1/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":733,"Cost":659,"Date":"8/31/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":544,"Cost":403,"Date":"12/31/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":841,"Cost":459,"Date":"7/21/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":349,"Cost":292,"Date":"12/8/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":153,"Cost":119,"Date":"5/15/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":245,"Cost":192,"Date":"7/4/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":982,"Cost":852,"Date":"11/1/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":461,"Cost":299,"Date":"3/17/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":588,"Cost":351,"Date":"7/10/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":218,"Cost":115,"Date":"10/4/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":619,"Cost":325,"Date":"1/20/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":485,"Cost":418,"Date":"5/15/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":293,"Cost":243,"Date":"11/18/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":197,"Cost":182,"Date":"6/10/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":289,"Cost":244,"Date":"9/29/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":260,"Cost":211,"Date":"1/24/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":651,"Cost":329,"Date":"7/4/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":608,"Cost":415,"Date":"12/1/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":408,"Cost":275,"Date":"2/16/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":452,"Cost":418,"Date":"5/17/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":357,"Cost":213,"Date":"8/6/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":260,"Cost":239,"Date":"11/27/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":527,"Cost":381,"Date":"3/19/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":818,"Cost":433,"Date":"10/6/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":90,"Cost":79,"Date":"4/20/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":614,"Cost":532,"Date":"6/14/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":189,"Cost":95,"Date":"9/3/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":35,"Cost":22,"Date":"3/9/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":339,"Cost":304,"Date":"6/11/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":745,"Cost":503,"Date":"9/14/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":46,"Cost":28,"Date":"11/25/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":431,"Cost":246,"Date":"4/14/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":831,"Cost":435,"Date":"10/8/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":7,"Cost":4,"Date":"3/20/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":670,"Cost":543,"Date":"9/2/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":437,"Cost":219,"Date":"12/8/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":331,"Cost":211,"Date":"5/4/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":757,"Cost":395,"Date":"11/2/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":677,"Cost":508,"Date":"1/9/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":802,"Cost":464,"Date":"4/9/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":521,"Cost":402,"Date":"7/14/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":52,"Cost":38,"Date":"9/29/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":231,"Cost":147,"Date":"2/27/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":379,"Cost":197,"Date":"8/23/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":160,"Cost":145,"Date":"1/28/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":122,"Cost":78,"Date":"6/3/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":303,"Cost":259,"Date":"8/16/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":640,"Cost":326,"Date":"2/28/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":126,"Cost":70,"Date":"5/10/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":578,"Cost":341,"Date":"8/31/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":52,"Cost":30,"Date":"10/30/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":974,"Cost":885,"Date":"3/14/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":128,"Cost":77,"Date":"7/27/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":702,"Cost":568,"Date":"3/10/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":392,"Cost":236,"Date":"7/21/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":730,"Cost":664,"Date":"11/9/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":41,"Cost":21,"Date":"3/12/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":976,"Cost":927,"Date":"9/2/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":983,"Cost":744,"Date":"12/20/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":4,"Cost":3,"Date":"3/8/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":559,"Cost":498,"Date":"7/4/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":586,"Cost":408,"Date":"9/1/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":925,"Cost":841,"Date":"1/20/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":685,"Cost":465,"Date":"8/5/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":756,"Cost":640,"Date":"1/8/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":602,"Cost":504,"Date":"5/16/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":546,"Cost":385,"Date":"7/9/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":268,"Cost":247,"Date":"11/2/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":578,"Cost":430,"Date":"3/23/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":835,"Cost":679,"Date":"7/11/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":775,"Cost":581,"Date":"10/10/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":215,"Cost":117,"Date":"2/8/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":674,"Cost":349,"Date":"5/25/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":751,"Cost":426,"Date":"12/1/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":913,"Cost":480,"Date":"6/16/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":404,"Cost":252,"Date":"10/2/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":231,"Cost":167,"Date":"2/3/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":493,"Cost":454,"Date":"7/13/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":435,"Cost":223,"Date":"12/4/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":844,"Cost":464,"Date":"2/18/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":718,"Cost":651,"Date":"5/22/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":821,"Cost":686,"Date":"8/7/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":667,"Cost":349,"Date":"12/5/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":795,"Cost":704,"Date":"3/28/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":520,"Cost":428,"Date":"10/19/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":971,"Cost":798,"Date":"4/24/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":149,"Cost":89,"Date":"6/20/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":587,"Cost":488,"Date":"9/16/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":803,"Cost":737,"Date":"3/11/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":943,"Cost":739,"Date":"6/16/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":637,"Cost":570,"Date":"9/19/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":252,"Cost":180,"Date":"1/10/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":437,"Cost":292,"Date":"5/3/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":501,"Cost":407,"Date":"10/26/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":527,"Cost":419,"Date":"3/26/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":535,"Cost":492,"Date":"9/4/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":65,"Cost":60,"Date":"12/11/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":495,"Cost":329,"Date":"6/8/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":781,"Cost":703,"Date":"11/4/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":734,"Cost":568,"Date":"2/5/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":609,"Cost":312,"Date":"4/10/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":863,"Cost":701,"Date":"7/19/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":201,"Cost":101,"Date":"11/7/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":7,"Cost":4,"Date":"3/1/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":696,"Cost":427,"Date":"9/3/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":392,"Cost":230,"Date":"1/31/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":106,"Cost":73,"Date":"6/5/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":557,"Cost":423,"Date":"8/23/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":26,"Cost":14,"Date":"3/4/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":871,"Cost":818,"Date":"5/20/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":801,"Cost":502,"Date":"9/8/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":453,"Cost":395,"Date":"11/1/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":977,"Cost":584,"Date":"3/27/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":297,"Cost":245,"Date":"9/17/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":749,"Cost":646,"Date":"3/16/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":714,"Cost":439,"Date":"7/25/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":583,"Cost":368,"Date":"11/23/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":469,"Cost":360,"Date":"4/19/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":932,"Cost":516,"Date":"9/29/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":812,"Cost":531,"Date":"12/20/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":922,"Cost":475,"Date":"4/2/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":431,"Cost":381,"Date":"7/8/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":61,"Cost":31,"Date":"9/1/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":728,"Cost":496,"Date":"2/2/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":977,"Cost":527,"Date":"8/12/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":563,"Cost":481,"Date":"1/14/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":775,"Cost":537,"Date":"5/18/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":852,"Cost":769,"Date":"7/12/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":436,"Cost":271,"Date":"12/17/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":560,"Cost":448,"Date":"4/1/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":628,"Cost":528,"Date":"8/28/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":56,"Cost":50,"Date":"10/17/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":365,"Cost":184,"Date":"2/25/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":765,"Cost":426,"Date":"5/26/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":483,"Cost":399,"Date":"2/9/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":765,"Cost":696,"Date":"6/25/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":688,"Cost":482,"Date":"10/15/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":324,"Cost":240,"Date":"2/4/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":970,"Cost":765,"Date":"8/8/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":376,"Cost":260,"Date":"12/7/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":828,"Cost":541,"Date":"2/22/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":959,"Cost":880,"Date":"6/20/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":996,"Cost":756,"Date":"8/22/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":567,"Cost":500,"Date":"12/26/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":347,"Cost":268,"Date":"5/21/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":660,"Cost":620,"Date":"11/15/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":574,"Cost":355,"Date":"4/28/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":323,"Cost":279,"Date":"6/24/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":416,"Cost":311,"Date":"10/4/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":792,"Cost":682,"Date":"3/17/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":621,"Cost":466,"Date":"6/16/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":228,"Cost":177,"Date":"9/25/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":614,"Cost":514,"Date":"1/14/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":723,"Cost":632,"Date":"5/9/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":756,"Cost":628,"Date":"11/16/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":460,"Cost":383,"Date":"6/2/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":411,"Cost":270,"Date":"9/19/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":421,"Cost":296,"Date":"1/15/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":285,"Cost":171,"Date":"6/26/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":386,"Cost":198,"Date":"11/7/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":265,"Cost":191,"Date":"2/16/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":484,"Cost":445,"Date":"4/19/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":396,"Cost":264,"Date":"8/1/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":974,"Cost":641,"Date":"11/26/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":3,"Cost":2,"Date":"3/1/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":426,"Cost":359,"Date":"9/5/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":492,"Cost":302,"Date":"3/27/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":724,"Cost":478,"Date":"6/7/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":499,"Cost":398,"Date":"9/2/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":296,"Cost":186,"Date":"3/9/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":4,"Cost":2,"Date":"6/2/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":471,"Cost":249,"Date":"9/13/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":118,"Cost":80,"Date":"11/15/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":654,"Cost":460,"Date":"4/5/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":692,"Cost":534,"Date":"10/6/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":938,"Cost":493,"Date":"3/18/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":109,"Cost":62,"Date":"8/4/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":283,"Cost":269,"Date":"11/30/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":446,"Cost":244,"Date":"5/3/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":305,"Cost":207,"Date":"10/12/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":317,"Cost":275,"Date":"12/21/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":182,"Cost":170,"Date":"4/3/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":375,"Cost":189,"Date":"7/9/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":236,"Cost":147,"Date":"9/17/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":757,"Cost":653,"Date":"2/8/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":322,"Cost":282,"Date":"8/21/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":903,"Cost":763,"Date":"1/19/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":218,"Cost":203,"Date":"6/2/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":537,"Cost":486,"Date":"8/14/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":558,"Cost":417,"Date":"2/10/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":760,"Cost":597,"Date":"5/7/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":182,"Cost":91,"Date":"8/29/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":829,"Cost":696,"Date":"10/28/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":921,"Cost":566,"Date":"3/7/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":691,"Cost":486,"Date":"5/31/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":763,"Cost":608,"Date":"2/11/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":595,"Cost":522,"Date":"7/19/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":757,"Cost":671,"Date":"10/30/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":674,"Cost":353,"Date":"3/9/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":123,"Cost":83,"Date":"8/26/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":502,"Cost":304,"Date":"12/18/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":872,"Cost":810,"Date":"2/25/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":873,"Cost":462,"Date":"7/1/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":686,"Cost":439,"Date":"8/31/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":880,"Cost":454,"Date":"12/31/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":398,"Cost":260,"Date":"7/21/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":350,"Cost":304,"Date":"12/8/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":945,"Cost":633,"Date":"5/15/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":803,"Cost":466,"Date":"7/4/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":696,"Cost":511,"Date":"11/1/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":930,"Cost":718,"Date":"3/17/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":658,"Cost":440,"Date":"7/10/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":928,"Cost":569,"Date":"10/4/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":891,"Cost":566,"Date":"1/20/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":168,"Cost":148,"Date":"5/15/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":363,"Cost":196,"Date":"11/18/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":786,"Cost":483,"Date":"6/10/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":556,"Cost":466,"Date":"9/29/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":161,"Cost":95,"Date":"1/24/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":27,"Cost":19,"Date":"7/4/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":608,"Cost":381,"Date":"12/1/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":185,"Cost":130,"Date":"2/16/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":870,"Cost":506,"Date":"5/17/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":477,"Cost":244,"Date":"8/6/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":698,"Cost":415,"Date":"11/27/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":404,"Cost":246,"Date":"3/19/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":526,"Cost":408,"Date":"10/6/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":939,"Cost":637,"Date":"4/20/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":457,"Cost":272,"Date":"6/14/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":505,"Cost":365,"Date":"9/3/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":691,"Cost":657,"Date":"3/9/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":580,"Cost":337,"Date":"6/11/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":51,"Cost":46,"Date":"9/14/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":751,"Cost":490,"Date":"11/25/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":224,"Cost":182,"Date":"4/14/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":954,"Cost":734,"Date":"10/8/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":274,"Cost":249,"Date":"3/20/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":703,"Cost":383,"Date":"9/2/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":388,"Cost":315,"Date":"12/8/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":220,"Cost":159,"Date":"5/4/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":784,"Cost":596,"Date":"11/2/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":727,"Cost":417,"Date":"1/9/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":604,"Cost":462,"Date":"4/9/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":47,"Cost":36,"Date":"7/14/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":992,"Cost":527,"Date":"9/29/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":830,"Cost":504,"Date":"2/27/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":671,"Cost":567,"Date":"8/23/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":197,"Cost":115,"Date":"1/28/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":766,"Cost":611,"Date":"6/3/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":237,"Cost":194,"Date":"8/16/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":430,"Cost":349,"Date":"2/28/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":174,"Cost":105,"Date":"5/10/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":390,"Cost":316,"Date":"8/31/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":963,"Cost":878,"Date":"10/30/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":922,"Cost":770,"Date":"3/14/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":832,"Cost":779,"Date":"7/27/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":650,"Cost":584,"Date":"3/10/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":166,"Cost":147,"Date":"7/21/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":872,"Cost":485,"Date":"11/9/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":759,"Cost":702,"Date":"3/12/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":448,"Cost":401,"Date":"9/2/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":380,"Cost":196,"Date":"12/20/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":687,"Cost":413,"Date":"3/8/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":913,"Cost":691,"Date":"7/4/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":624,"Cost":441,"Date":"9/1/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":119,"Cost":80,"Date":"1/20/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":626,"Cost":393,"Date":"8/5/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":822,"Cost":444,"Date":"1/8/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":356,"Cost":326,"Date":"5/16/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":168,"Cost":126,"Date":"7/9/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":590,"Cost":559,"Date":"11/2/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":720,"Cost":412,"Date":"3/23/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":347,"Cost":263,"Date":"7/11/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":392,"Cost":335,"Date":"10/10/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":200,"Cost":140,"Date":"2/8/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":516,"Cost":286,"Date":"5/25/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":723,"Cost":542,"Date":"12/1/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":455,"Cost":356,"Date":"6/16/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":453,"Cost":403,"Date":"10/2/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":757,"Cost":447,"Date":"2/3/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":61,"Cost":44,"Date":"7/13/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":378,"Cost":289,"Date":"12/4/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":176,"Cost":158,"Date":"2/18/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":733,"Cost":548,"Date":"5/22/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":509,"Cost":372,"Date":"8/7/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":83,"Cost":67,"Date":"12/5/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":923,"Cost":627,"Date":"3/28/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":893,"Cost":547,"Date":"10/19/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":987,"Cost":640,"Date":"4/24/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":649,"Cost":391,"Date":"6/20/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":166,"Cost":116,"Date":"9/16/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":858,"Cost":525,"Date":"3/11/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":227,"Cost":118,"Date":"6/16/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":548,"Cost":512,"Date":"9/19/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":824,"Cost":477,"Date":"1/10/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":544,"Cost":315,"Date":"5/3/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":150,"Cost":77,"Date":"10/26/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":940,"Cost":518,"Date":"3/26/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":982,"Cost":928,"Date":"9/4/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":494,"Cost":409,"Date":"12/11/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":611,"Cost":581,"Date":"6/8/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":687,"Cost":483,"Date":"11/4/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":353,"Cost":216,"Date":"2/5/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":783,"Cost":423,"Date":"4/10/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":309,"Cost":225,"Date":"7/19/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":72,"Cost":62,"Date":"11/7/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":298,"Cost":190,"Date":"3/1/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":67,"Cost":48,"Date":"9/3/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":319,"Cost":239,"Date":"1/31/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":184,"Cost":112,"Date":"6/5/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":343,"Cost":203,"Date":"8/23/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":702,"Cost":384,"Date":"3/4/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":883,"Cost":719,"Date":"5/20/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":46,"Cost":23,"Date":"9/8/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":960,"Cost":699,"Date":"11/1/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":796,"Cost":498,"Date":"3/27/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":307,"Cost":286,"Date":"9/17/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":289,"Cost":156,"Date":"3/16/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":835,"Cost":791,"Date":"7/25/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":685,"Cost":514,"Date":"11/23/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":184,"Cost":94,"Date":"4/19/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":961,"Cost":827,"Date":"9/29/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":827,"Cost":532,"Date":"12/20/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":306,"Cost":174,"Date":"4/2/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":642,"Cost":520,"Date":"7/8/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":712,"Cost":493,"Date":"9/1/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":612,"Cost":564,"Date":"2/2/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":64,"Cost":58,"Date":"8/12/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":321,"Cost":291,"Date":"1/14/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":746,"Cost":581,"Date":"5/18/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":733,"Cost":375,"Date":"7/12/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":143,"Cost":99,"Date":"12/17/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":61,"Cost":42,"Date":"4/1/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":744,"Cost":449,"Date":"8/28/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":152,"Cost":91,"Date":"10/17/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":953,"Cost":645,"Date":"2/25/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":756,"Cost":572,"Date":"5/26/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":32,"Cost":27,"Date":"2/9/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":406,"Cost":330,"Date":"6/25/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":856,"Cost":508,"Date":"10/15/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":152,"Cost":107,"Date":"2/4/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":276,"Cost":231,"Date":"8/8/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":329,"Cost":206,"Date":"12/7/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":752,"Cost":554,"Date":"2/22/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":485,"Cost":373,"Date":"6/20/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":854,"Cost":693,"Date":"8/22/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":176,"Cost":162,"Date":"12/26/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":160,"Cost":128,"Date":"5/21/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":631,"Cost":550,"Date":"11/15/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":749,"Cost":417,"Date":"4/28/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":220,"Cost":168,"Date":"6/24/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":286,"Cost":272,"Date":"10/4/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":463,"Cost":411,"Date":"3/17/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":872,"Cost":787,"Date":"6/16/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":379,"Cost":349,"Date":"9/25/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":646,"Cost":541,"Date":"1/14/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":198,"Cost":187,"Date":"5/9/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":151,"Cost":125,"Date":"11/16/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":516,"Cost":269,"Date":"6/2/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":363,"Cost":201,"Date":"9/19/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":294,"Cost":251,"Date":"1/15/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":465,"Cost":331,"Date":"6/26/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":869,"Cost":740,"Date":"11/7/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":290,"Cost":245,"Date":"2/16/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":565,"Cost":410,"Date":"4/19/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":112,"Cost":64,"Date":"8/1/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":535,"Cost":289,"Date":"11/26/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":877,"Cost":582,"Date":"3/1/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":660,"Cost":511,"Date":"9/5/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":949,"Cost":551,"Date":"3/27/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":960,"Cost":677,"Date":"6/7/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":735,"Cost":679,"Date":"9/2/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":800,"Cost":467,"Date":"3/9/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":127,"Cost":120,"Date":"6/2/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":777,"Cost":447,"Date":"9/13/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":314,"Cost":281,"Date":"11/15/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":142,"Cost":115,"Date":"4/5/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":42,"Cost":34,"Date":"10/6/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":272,"Cost":233,"Date":"3/18/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":883,"Cost":501,"Date":"8/4/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":809,"Cost":507,"Date":"11/30/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":477,"Cost":421,"Date":"5/3/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":712,"Cost":489,"Date":"10/12/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":726,"Cost":368,"Date":"12/21/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":195,"Cost":129,"Date":"4/3/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":952,"Cost":634,"Date":"7/9/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":478,"Cost":377,"Date":"9/17/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":462,"Cost":257,"Date":"2/8/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":786,"Cost":609,"Date":"8/21/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":454,"Cost":306,"Date":"1/19/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":217,"Cost":158,"Date":"6/2/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":809,"Cost":445,"Date":"8/14/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":553,"Cost":303,"Date":"2/10/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":290,"Cost":257,"Date":"5/7/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":166,"Cost":139,"Date":"8/29/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":469,"Cost":254,"Date":"10/28/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":899,"Cost":674,"Date":"3/7/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":612,"Cost":423,"Date":"5/31/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":124,"Cost":67,"Date":"2/11/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":873,"Cost":645,"Date":"7/19/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":926,"Cost":490,"Date":"10/30/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":707,"Cost":664,"Date":"3/9/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":441,"Cost":229,"Date":"8/26/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":64,"Cost":32,"Date":"12/18/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":372,"Cost":236,"Date":"2/25/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":101,"Cost":75,"Date":"7/1/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":485,"Cost":300,"Date":"8/31/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":811,"Cost":500,"Date":"12/31/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":678,"Cost":571,"Date":"7/21/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":249,"Cost":148,"Date":"12/8/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":655,"Cost":605,"Date":"5/15/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":574,"Cost":511,"Date":"7/4/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":658,"Cost":389,"Date":"11/1/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":170,"Cost":86,"Date":"3/17/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":798,"Cost":647,"Date":"7/10/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":761,"Cost":574,"Date":"10/4/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":367,"Cost":198,"Date":"1/20/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":216,"Cost":128,"Date":"5/15/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":743,"Cost":567,"Date":"11/18/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":805,"Cost":559,"Date":"6/10/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":77,"Cost":70,"Date":"9/29/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":508,"Cost":453,"Date":"1/24/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":489,"Cost":322,"Date":"7/4/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":20,"Cost":18,"Date":"12/1/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":413,"Cost":368,"Date":"2/16/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":568,"Cost":327,"Date":"5/17/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":919,"Cost":725,"Date":"8/6/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":712,"Cost":536,"Date":"11/27/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":45,"Cost":25,"Date":"3/19/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":388,"Cost":210,"Date":"10/6/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":560,"Cost":349,"Date":"4/20/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":647,"Cost":545,"Date":"6/14/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":986,"Cost":856,"Date":"9/3/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":536,"Cost":496,"Date":"3/9/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":163,"Cost":86,"Date":"6/11/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":448,"Cost":317,"Date":"9/14/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":524,"Cost":359,"Date":"11/25/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":70,"Cost":48,"Date":"4/14/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":740,"Cost":694,"Date":"10/8/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":660,"Cost":399,"Date":"3/20/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":519,"Cost":407,"Date":"9/2/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":537,"Cost":461,"Date":"12/8/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":115,"Cost":94,"Date":"5/4/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":402,"Cost":339,"Date":"11/2/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":905,"Cost":471,"Date":"1/9/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":402,"Cost":313,"Date":"4/9/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":142,"Cost":128,"Date":"7/14/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":912,"Cost":488,"Date":"9/29/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":888,"Cost":649,"Date":"2/27/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":313,"Cost":209,"Date":"8/23/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":829,"Cost":431,"Date":"1/28/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":781,"Cost":740,"Date":"6/3/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":331,"Cost":265,"Date":"8/16/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":608,"Cost":429,"Date":"2/28/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":201,"Cost":118,"Date":"5/10/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":276,"Cost":141,"Date":"8/31/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":624,"Cost":373,"Date":"10/30/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":590,"Cost":405,"Date":"3/14/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":860,"Cost":780,"Date":"7/27/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":505,"Cost":297,"Date":"3/10/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":548,"Cost":396,"Date":"7/21/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":991,"Cost":536,"Date":"11/9/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":793,"Cost":468,"Date":"3/12/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":515,"Cost":370,"Date":"9/2/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":43,"Cost":25,"Date":"12/20/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":706,"Cost":430,"Date":"3/8/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":346,"Cost":245,"Date":"7/4/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":26,"Cost":20,"Date":"9/1/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":15,"Cost":13,"Date":"1/20/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":159,"Cost":122,"Date":"8/5/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":733,"Cost":541,"Date":"1/8/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":228,"Cost":139,"Date":"5/16/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":337,"Cost":238,"Date":"7/9/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":618,"Cost":444,"Date":"11/2/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":331,"Cost":167,"Date":"3/23/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":478,"Cost":394,"Date":"7/11/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":818,"Cost":689,"Date":"10/10/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":821,"Cost":768,"Date":"2/8/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":930,"Cost":638,"Date":"5/25/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":258,"Cost":215,"Date":"12/1/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":985,"Cost":681,"Date":"6/16/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":159,"Cost":103,"Date":"10/2/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":506,"Cost":361,"Date":"2/3/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":238,"Cost":128,"Date":"7/13/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":165,"Cost":102,"Date":"12/4/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":639,"Cost":372,"Date":"2/18/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":736,"Cost":487,"Date":"5/22/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":516,"Cost":288,"Date":"8/7/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":774,"Cost":496,"Date":"12/5/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":940,"Cost":776,"Date":"3/28/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":835,"Cost":628,"Date":"10/19/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":587,"Cost":515,"Date":"4/24/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":573,"Cost":435,"Date":"6/20/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":747,"Cost":435,"Date":"9/16/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":147,"Cost":116,"Date":"3/11/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":127,"Cost":79,"Date":"6/16/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":770,"Cost":507,"Date":"9/19/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":256,"Cost":159,"Date":"1/10/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":192,"Cost":165,"Date":"5/3/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":194,"Cost":135,"Date":"10/26/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":638,"Cost":443,"Date":"3/26/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":68,"Cost":45,"Date":"9/4/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":275,"Cost":202,"Date":"12/11/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":363,"Cost":226,"Date":"6/8/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":199,"Cost":144,"Date":"11/4/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":33,"Cost":20,"Date":"2/5/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":883,"Cost":780,"Date":"4/10/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":600,"Cost":549,"Date":"7/19/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":950,"Cost":561,"Date":"11/7/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":311,"Cost":205,"Date":"3/1/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":917,"Cost":526,"Date":"9/3/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":253,"Cost":224,"Date":"1/31/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":255,"Cost":220,"Date":"6/5/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":549,"Cost":492,"Date":"8/23/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":404,"Cost":337,"Date":"3/4/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":755,"Cost":567,"Date":"5/20/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":884,"Cost":557,"Date":"9/8/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":97,"Cost":51,"Date":"11/1/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":321,"Cost":215,"Date":"3/27/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":592,"Cost":556,"Date":"9/17/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":401,"Cost":301,"Date":"3/16/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":465,"Cost":428,"Date":"7/25/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":810,"Cost":659,"Date":"11/23/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":742,"Cost":639,"Date":"4/19/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":535,"Cost":420,"Date":"9/29/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":684,"Cost":640,"Date":"12/20/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":202,"Cost":137,"Date":"4/2/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":508,"Cost":332,"Date":"7/8/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":503,"Cost":468,"Date":"9/1/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":748,"Cost":394,"Date":"2/2/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":4,"Cost":3,"Date":"8/12/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":845,"Cost":673,"Date":"1/14/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":563,"Cost":392,"Date":"5/18/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":214,"Cost":173,"Date":"7/12/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":391,"Cost":244,"Date":"12/17/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":896,"Cost":545,"Date":"4/1/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":334,"Cost":239,"Date":"8/28/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":23,"Cost":13,"Date":"10/17/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":407,"Cost":364,"Date":"2/25/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":765,"Cost":628,"Date":"5/26/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":398,"Cost":215,"Date":"2/9/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":883,"Cost":760,"Date":"6/25/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":550,"Cost":311,"Date":"10/15/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":290,"Cost":152,"Date":"2/4/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":836,"Cost":496,"Date":"8/8/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":582,"Cost":443,"Date":"12/7/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":369,"Cost":264,"Date":"2/22/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":929,"Cost":601,"Date":"6/20/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":654,"Cost":402,"Date":"8/22/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":869,"Cost":484,"Date":"12/26/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":940,"Cost":846,"Date":"5/21/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":451,"Cost":266,"Date":"11/15/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":70,"Cost":58,"Date":"4/28/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":265,"Cost":232,"Date":"6/24/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":370,"Cost":338,"Date":"10/4/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":852,"Cost":547,"Date":"3/17/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":325,"Cost":284,"Date":"6/16/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":305,"Cost":219,"Date":"9/25/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":761,"Cost":641,"Date":"1/14/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":703,"Cost":614,"Date":"5/9/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":306,"Cost":190,"Date":"11/16/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":37,"Cost":20,"Date":"6/2/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":426,"Cost":330,"Date":"9/19/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":831,"Cost":627,"Date":"1/15/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":19,"Cost":12,"Date":"6/26/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":92,"Cost":72,"Date":"11/7/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":316,"Cost":182,"Date":"2/16/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":469,"Cost":416,"Date":"4/19/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":916,"Cost":527,"Date":"8/1/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":300,"Cost":164,"Date":"11/26/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":72,"Cost":41,"Date":"3/1/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":999,"Cost":523,"Date":"9/5/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":849,"Cost":548,"Date":"3/27/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":969,"Cost":522,"Date":"6/7/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":123,"Cost":111,"Date":"9/2/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":237,"Cost":122,"Date":"3/9/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":833,"Cost":746,"Date":"6/2/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":11,"Cost":6,"Date":"9/13/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":527,"Cost":380,"Date":"11/15/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":142,"Cost":122,"Date":"4/5/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":797,"Cost":671,"Date":"10/6/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":218,"Cost":159,"Date":"3/18/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":391,"Cost":279,"Date":"8/4/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":909,"Cost":810,"Date":"11/30/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":273,"Cost":238,"Date":"5/3/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":419,"Cost":355,"Date":"10/12/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":705,"Cost":487,"Date":"12/21/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":72,"Cost":65,"Date":"4/3/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":241,"Cost":207,"Date":"7/9/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":80,"Cost":75,"Date":"9/17/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":740,"Cost":603,"Date":"2/8/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":960,"Cost":698,"Date":"8/21/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":329,"Cost":233,"Date":"1/19/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":921,"Cost":731,"Date":"6/2/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":755,"Cost":523,"Date":"8/14/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":804,"Cost":522,"Date":"2/10/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":634,"Cost":345,"Date":"5/7/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":203,"Cost":175,"Date":"8/29/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":256,"Cost":155,"Date":"10/28/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":560,"Cost":417,"Date":"3/7/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":195,"Cost":173,"Date":"5/31/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":553,"Cost":389,"Date":"2/11/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":502,"Cost":389,"Date":"7/19/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":299,"Cost":151,"Date":"10/30/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":12,"Cost":6,"Date":"3/9/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":862,"Cost":710,"Date":"8/26/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":801,"Cost":718,"Date":"12/18/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":143,"Cost":112,"Date":"2/25/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":435,"Cost":331,"Date":"7/1/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":173,"Cost":129,"Date":"8/31/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":730,"Cost":407,"Date":"12/31/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":257,"Cost":218,"Date":"7/21/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":995,"Cost":941,"Date":"12/8/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":929,"Cost":675,"Date":"5/15/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":854,"Cost":805,"Date":"7/4/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":759,"Cost":707,"Date":"11/1/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":270,"Cost":247,"Date":"3/17/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":902,"Cost":771,"Date":"7/10/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":338,"Cost":276,"Date":"10/4/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":105,"Cost":69,"Date":"1/20/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":406,"Cost":276,"Date":"5/15/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":65,"Cost":56,"Date":"11/18/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":666,"Cost":358,"Date":"6/10/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":618,"Cost":482,"Date":"9/29/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":75,"Cost":48,"Date":"1/24/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":675,"Cost":589,"Date":"7/4/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":20,"Cost":15,"Date":"12/1/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":872,"Cost":760,"Date":"2/16/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":965,"Cost":714,"Date":"5/17/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":916,"Cost":489,"Date":"8/6/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":112,"Cost":92,"Date":"11/27/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":108,"Cost":93,"Date":"3/19/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":180,"Cost":109,"Date":"10/6/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":645,"Cost":413,"Date":"4/20/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":178,"Cost":141,"Date":"6/14/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":422,"Cost":235,"Date":"9/3/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":251,"Cost":184,"Date":"3/9/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":9,"Cost":8,"Date":"6/11/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":784,"Cost":659,"Date":"9/14/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":652,"Cost":495,"Date":"11/25/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":768,"Cost":549,"Date":"4/14/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":662,"Cost":448,"Date":"10/8/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":410,"Cost":332,"Date":"3/20/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":144,"Cost":74,"Date":"9/2/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":260,"Cost":209,"Date":"12/8/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":899,"Cost":664,"Date":"5/4/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":484,"Cost":419,"Date":"11/2/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":112,"Cost":69,"Date":"1/9/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":473,"Cost":263,"Date":"4/9/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":780,"Cost":414,"Date":"7/14/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":999,"Cost":859,"Date":"9/29/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":494,"Cost":400,"Date":"2/27/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":99,"Cost":67,"Date":"8/23/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":783,"Cost":567,"Date":"1/28/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":163,"Cost":121,"Date":"6/3/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":889,"Cost":834,"Date":"8/16/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":185,"Cost":136,"Date":"2/28/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":204,"Cost":152,"Date":"5/10/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":349,"Cost":222,"Date":"8/31/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":539,"Cost":471,"Date":"10/30/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":256,"Cost":180,"Date":"3/14/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":557,"Cost":411,"Date":"7/27/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":220,"Cost":133,"Date":"3/10/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":437,"Cost":237,"Date":"7/21/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":488,"Cost":461,"Date":"11/9/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":270,"Cost":176,"Date":"3/12/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":170,"Cost":123,"Date":"9/2/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":520,"Cost":312,"Date":"12/20/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":392,"Cost":234,"Date":"3/8/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":695,"Cost":584,"Date":"7/4/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":938,"Cost":719,"Date":"9/1/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":202,"Cost":122,"Date":"1/20/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":413,"Cost":379,"Date":"8/5/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":480,"Cost":336,"Date":"1/8/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":827,"Cost":714,"Date":"5/16/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":146,"Cost":92,"Date":"7/9/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":659,"Cost":338,"Date":"11/2/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":395,"Cost":289,"Date":"3/23/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":756,"Cost":535,"Date":"7/11/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":423,"Cost":289,"Date":"10/10/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":486,"Cost":324,"Date":"2/8/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":718,"Cost":561,"Date":"5/25/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":875,"Cost":631,"Date":"12/1/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":277,"Cost":245,"Date":"6/16/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":552,"Cost":335,"Date":"10/2/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":419,"Cost":225,"Date":"2/3/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":923,"Cost":720,"Date":"7/13/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":987,"Cost":789,"Date":"12/4/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":135,"Cost":105,"Date":"2/18/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":949,"Cost":484,"Date":"5/22/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":407,"Cost":252,"Date":"8/7/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":395,"Cost":248,"Date":"12/5/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":42,"Cost":27,"Date":"3/28/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":22,"Cost":14,"Date":"10/19/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":318,"Cost":202,"Date":"4/24/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":472,"Cost":289,"Date":"6/20/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":48,"Cost":36,"Date":"9/16/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":61,"Cost":41,"Date":"3/11/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":488,"Cost":434,"Date":"6/16/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":938,"Cost":524,"Date":"9/19/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":654,"Cost":579,"Date":"1/10/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":660,"Cost":338,"Date":"5/3/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":230,"Cost":178,"Date":"10/26/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":888,"Cost":595,"Date":"3/26/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":116,"Cost":63,"Date":"9/4/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":147,"Cost":100,"Date":"12/11/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":626,"Cost":488,"Date":"6/8/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":638,"Cost":572,"Date":"11/4/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":961,"Cost":638,"Date":"2/5/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":243,"Cost":140,"Date":"4/10/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":840,"Cost":488,"Date":"7/19/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":385,"Cost":304,"Date":"11/7/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":861,"Cost":613,"Date":"3/1/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":756,"Cost":505,"Date":"9/3/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":286,"Cost":203,"Date":"1/31/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":859,"Cost":551,"Date":"6/5/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":96,"Cost":60,"Date":"8/23/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":608,"Cost":338,"Date":"3/4/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":422,"Cost":394,"Date":"5/20/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":632,"Cost":561,"Date":"9/8/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":21,"Cost":11,"Date":"11/1/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":301,"Cost":238,"Date":"3/27/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":89,"Cost":71,"Date":"9/17/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":774,"Cost":675,"Date":"3/16/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":35,"Cost":22,"Date":"7/25/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":322,"Cost":238,"Date":"11/23/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":938,"Cost":528,"Date":"4/19/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":472,"Cost":299,"Date":"9/29/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":825,"Cost":634,"Date":"12/20/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":373,"Cost":270,"Date":"4/2/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":690,"Cost":534,"Date":"7/8/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":230,"Cost":190,"Date":"9/1/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":271,"Cost":217,"Date":"2/2/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":378,"Cost":253,"Date":"8/12/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":353,"Cost":226,"Date":"1/14/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":816,"Cost":743,"Date":"5/18/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":665,"Cost":468,"Date":"7/12/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":203,"Cost":114,"Date":"12/17/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":993,"Cost":606,"Date":"4/1/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":374,"Cost":271,"Date":"8/28/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":882,"Cost":650,"Date":"10/17/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":586,"Cost":415,"Date":"2/25/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":486,"Cost":453,"Date":"5/26/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":900,"Cost":768,"Date":"2/9/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":680,"Cost":517,"Date":"6/25/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":20,"Cost":18,"Date":"10/15/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":131,"Cost":110,"Date":"2/4/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":31,"Cost":17,"Date":"8/8/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":62,"Cost":50,"Date":"12/7/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":751,"Cost":657,"Date":"2/22/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":191,"Cost":182,"Date":"6/20/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":682,"Cost":508,"Date":"8/22/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":260,"Cost":153,"Date":"12/26/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":129,"Cost":105,"Date":"5/21/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":587,"Cost":419,"Date":"11/15/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":562,"Cost":450,"Date":"4/28/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":782,"Cost":696,"Date":"6/24/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":216,"Cost":199,"Date":"10/4/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":509,"Cost":325,"Date":"3/17/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":737,"Cost":594,"Date":"6/16/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":995,"Cost":752,"Date":"9/25/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":984,"Cost":920,"Date":"1/14/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":719,"Cost":421,"Date":"5/9/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":746,"Cost":625,"Date":"11/16/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":99,"Cost":67,"Date":"6/2/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":560,"Cost":377,"Date":"9/19/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":906,"Cost":492,"Date":"1/15/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":277,"Cost":146,"Date":"6/26/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":307,"Cost":231,"Date":"11/7/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":206,"Cost":103,"Date":"2/16/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":188,"Cost":167,"Date":"4/19/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":491,"Cost":442,"Date":"8/1/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":918,"Cost":611,"Date":"11/26/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":438,"Cost":387,"Date":"3/1/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":861,"Cost":810,"Date":"9/5/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":823,"Cost":735,"Date":"3/27/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":22,"Cost":17,"Date":"6/7/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":188,"Cost":171,"Date":"9/2/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":238,"Cost":148,"Date":"3/9/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":253,"Cost":230,"Date":"6/2/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":841,"Cost":595,"Date":"9/13/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":553,"Cost":436,"Date":"11/15/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":404,"Cost":263,"Date":"4/5/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":853,"Cost":534,"Date":"10/6/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":986,"Cost":883,"Date":"3/18/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":523,"Cost":398,"Date":"8/4/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":166,"Cost":105,"Date":"11/30/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":253,"Cost":164,"Date":"5/3/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":106,"Cost":85,"Date":"10/12/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":571,"Cost":392,"Date":"12/21/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":153,"Cost":100,"Date":"4/3/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":496,"Cost":304,"Date":"7/9/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":327,"Cost":296,"Date":"9/17/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":683,"Cost":501,"Date":"2/8/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":925,"Cost":492,"Date":"8/21/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":416,"Cost":335,"Date":"1/19/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":845,"Cost":771,"Date":"6/2/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":224,"Cost":191,"Date":"8/14/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":437,"Cost":240,"Date":"2/10/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":37,"Cost":26,"Date":"5/7/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":526,"Cost":499,"Date":"8/29/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":444,"Cost":347,"Date":"10/28/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":958,"Cost":531,"Date":"3/7/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":232,"Cost":157,"Date":"5/31/2024"}] \ No newline at end of file diff --git a/samples/SalesGrid/wwwroot/exampleJsInterop.js b/samples/SalesGrid/wwwroot/exampleJsInterop.js deleted file mode 100644 index ea8d76a..0000000 --- a/samples/SalesGrid/wwwroot/exampleJsInterop.js +++ /dev/null @@ -1,6 +0,0 @@ -// This is a JavaScript module that is loaded on demand. It can export any number of -// functions, and may import other JavaScript modules if required. - -export function showPrompt(message) { - return prompt(message, 'Type anything here'); -} diff --git a/samples/SalesGrid/wwwroot/styles/sales.css b/samples/SalesGrid/wwwroot/styles/sales.css new file mode 100644 index 0000000..6d027d3 --- /dev/null +++ b/samples/SalesGrid/wwwroot/styles/sales.css @@ -0,0 +1,83 @@ +#sales-section { + height: 100%; + --ig-size: var(--ig-size-small); +} + +/* Fill the host (which fills the router area) instead of a viewport magic number, so the + dashboard never overflows the viewport -- the pivot grid scrolls internally. */ +#sales-section .sales-container { + display: flex; + flex-direction: column; + height: 100%; + width: 100%; +} + +#sales-section .sales-toolbar { + display: flex; + justify-content: space-between; + align-items: center; + min-height: 48px; + padding: 4px 12px; + border: 1px solid var(--ig-gray-400); + background: var(--ig-grid-header-background, var(--ig-surface-500)); +} + + +#sales-section .toolbar-actions { + display: flex; + align-items: center; + gap: 10px; + flex-shrink: 0; +} + +/* Match the WC sample's flat pill buttons exactly: a contained Indigo button with white text, + and a neutral grey outlined button -- both fully rounded with no elevation. (The scoped + theme alone leaves them square, elevated, and with the wrong foregrounds.) */ +#sales-section .view-btn, +#sales-section .view-btn::part(base), +#sales-section .view-btn igc-icon { + color: #fff; +} + +#sales-section .view-btn::part(base) { + border-radius: 40px; + box-shadow: none; +} + +#sales-section .export-button::part(base) { + color: var(--ig-gray-700); + border: 2px solid var(--ig-gray-500); + border-radius: 40px; +} + +#sales-section .export-button igc-icon { + color: var(--ig-gray-700); +} + +#sales-section .sales-pivot-row { + display: flex; + flex-direction: row; + flex: 1; + min-height: 0; +} + +#sales-section .sales-pivot-container { + flex: 1; + min-width: 0; + overflow: auto; + border: 1px solid var(--ig-gray-400); + border-top: none; + border-right: none; +} + +#sales-section .sales-selector-container { + width: 200px; + min-width: 200px; + overflow-y: auto; +} + +#sales-section igc-pivot-data-selector { + border: 1px solid var(--ig-gray-400); + border-top: none; + height: 100%; +}