From 6e7a9f028393e0ef89c4fb2c077a3592ed2eb18b Mon Sep 17 00:00:00 2001 From: Build Automaion Date: Sat, 10 Aug 2024 00:54:21 +0530 Subject: [PATCH] Integrated latest changes at 08-09-2024 10:30:10 PM --- ej2-angular-toc.html | 1 + .../pivot-grid/save-and-load/angular.json | 70 + .../pivot-grid/save-and-load/index.html | 164 + .../pivot-grid/save-and-load/package.json | 51 + .../save-and-load/src/app.component.css | 88 + .../save-and-load/src/app.component.ts | 91 + .../save-and-load/src/ca-gregorian.json | 500 +++ .../save-and-load/src/currencies.json | 1901 +++++++++ .../save-and-load/src/currencyData.json | 3509 +++++++++++++++++ .../save-and-load/src/datasource.ts | 2392 +++++++++++ .../pivot-grid/save-and-load/src/main.ts | 4 + .../save-and-load/src/numberingSystems.json | 319 ++ .../pivot-grid/save-and-load/src/numbers.json | 154 + .../pivot-grid/save-and-load/src/styles.css | 12 + .../save-and-load/src/timeZoneNames.json | 2391 +++++++++++ .../pivot-grid/save-and-load/tsconfig.json | 32 + ej2-angular/pivotview/getting-started.md | 12 + .../pivotview/images/Initial-setup.png | Bin 0 -> 61123 bytes ej2-angular/pivotview/pdf-export.md | 2 + ej2-angular/pivotview/save-and-load.md | 47 + 20 files changed, 11740 insertions(+) create mode 100644 ej2-angular/code-snippet/pivot-grid/save-and-load/angular.json create mode 100644 ej2-angular/code-snippet/pivot-grid/save-and-load/index.html create mode 100644 ej2-angular/code-snippet/pivot-grid/save-and-load/package.json create mode 100644 ej2-angular/code-snippet/pivot-grid/save-and-load/src/app.component.css create mode 100644 ej2-angular/code-snippet/pivot-grid/save-and-load/src/app.component.ts create mode 100644 ej2-angular/code-snippet/pivot-grid/save-and-load/src/ca-gregorian.json create mode 100644 ej2-angular/code-snippet/pivot-grid/save-and-load/src/currencies.json create mode 100644 ej2-angular/code-snippet/pivot-grid/save-and-load/src/currencyData.json create mode 100644 ej2-angular/code-snippet/pivot-grid/save-and-load/src/datasource.ts create mode 100644 ej2-angular/code-snippet/pivot-grid/save-and-load/src/main.ts create mode 100644 ej2-angular/code-snippet/pivot-grid/save-and-load/src/numberingSystems.json create mode 100644 ej2-angular/code-snippet/pivot-grid/save-and-load/src/numbers.json create mode 100644 ej2-angular/code-snippet/pivot-grid/save-and-load/src/styles.css create mode 100644 ej2-angular/code-snippet/pivot-grid/save-and-load/src/timeZoneNames.json create mode 100644 ej2-angular/code-snippet/pivot-grid/save-and-load/tsconfig.json create mode 100644 ej2-angular/pivotview/images/Initial-setup.png create mode 100644 ej2-angular/pivotview/save-and-load.md diff --git a/ej2-angular-toc.html b/ej2-angular-toc.html index 4933d86f6d..7ccb233254 100644 --- a/ej2-angular-toc.html +++ b/ej2-angular-toc.html @@ -1918,6 +1918,7 @@
  • Grouping Bar
  • Field List
  • Defer Layout Update
  • +
  • Export and import reports as JSON through custom toolbar options
  • Performance diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/angular.json b/ej2-angular/code-snippet/pivot-grid/save-and-load/angular.json new file mode 100644 index 0000000000..98b735ee4b --- /dev/null +++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/angular.json @@ -0,0 +1,70 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "syncfusion-component": { + "projectType": "application", + "schematics": {}, + "root": "", + "sourceRoot": "src", + "prefix": "app", + "architect": { + "build": { + "builder": "@angular-devkit/build-angular:browser", + "options": { + "outputPath": "dist", + "index": "index.html", + "main": "src/main.ts", + "tsConfig": "tsconfig.json", + "styles": [ + "src/styles.css" + ], + "assets": [] + }, + "configurations": { + "production": { + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "10mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "2kb", + "maximumError": "4kb" + } + ], + "outputHashing": "all" + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true + } + }, + "defaultConfiguration": "production" + }, + "serve": { + "builder": "@angular-devkit/build-angular:dev-server", + "configurations": { + "production": { + "buildTarget": "syncfusion-component:build:production" + }, + "development": { + "buildTarget": "syncfusion-component:build:development" + } + }, + "defaultConfiguration": "development" + } + } + } + }, + "cli": { + "analytics": false + } +} \ No newline at end of file diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/index.html b/ej2-angular/code-snippet/pivot-grid/save-and-load/index.html new file mode 100644 index 0000000000..e5fd1cbf70 --- /dev/null +++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/index.html @@ -0,0 +1,164 @@ + + + + + Syncfusion Angular Pivot Grid + + + + + + + + + + + +
    Loading....
    +
    + + + \ No newline at end of file diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/package.json b/ej2-angular/code-snippet/pivot-grid/save-and-load/package.json new file mode 100644 index 0000000000..9ab3ea2090 --- /dev/null +++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/package.json @@ -0,0 +1,51 @@ +{ + "name": "syncfusion-component", + "version": "0.0.0", + "scripts": { + "ng": "ng", + "start": "ng serve", + "build": "ng build", + "watch": "ng build --watch --configuration development", + "test": "ng test" + }, + "private": true, + "dependencies": { + "@angular/core": "17.1.2", + "@angular/platform-browser": "17.1.2", + "@angular/platform-browser-dynamic": "17.1.2", + "@syncfusion/ej2-angular-pivotview": "*", + "@syncfusion/ej2-base": "*", + "@syncfusion/ej2-buttons": "*", + "@syncfusion/ej2-dropdowns": "*", + "@syncfusion/ej2-grids": "*", + "@syncfusion/ej2-inputs": "*", + "@syncfusion/ej2-lists": "*", + "@syncfusion/ej2-navigations": "*", + "@syncfusion/ej2-popups": "*", + "@syncfusion/ej2-splitbuttons": "*", + "@syncfusion/ej2-angular-base": "*", + "@angular/animations": "17.1.2", + "@angular/common": "17.1.2", + "@angular/compiler": "17.1.2", + "@angular/forms": "17.1.2", + "@angular/router": "17.1.2", + "moment": "2.29.4", + "rxjs": "7.8.0", + "tslib": "2.3.0", + "zone.js": "0.14.3", + "@syncfusion/ej2-pivotview": "*" + }, + "devDependencies": { + "@angular-devkit/build-angular": "17.1.2", + "@angular/cli": "17.1.2", + "@angular/compiler-cli": "17.1.2", + "@types/jasmine": "4.3.0", + "jasmine-core": "4.5.0", + "karma": "6.4.0", + "karma-chrome-launcher": "3.1.0", + "karma-coverage": "2.2.0", + "karma-jasmine": "5.1.0", + "karma-jasmine-html-reporter": "2.0.0", + "typescript": "5.3.3" + } +} \ No newline at end of file diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/app.component.css b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/app.component.css new file mode 100644 index 0000000000..5b5c7c645f --- /dev/null +++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/app.component.css @@ -0,0 +1,88 @@ +/* csslint ignore:start */ +#PivotViewFieldList { + float: left; + width: 58% !important; + height: 100%; +} + +#PivotFieldList { + float: right; + width: 42%; + height: 100%; +} + +#PivotFieldList .e-static { + width: 100% !important; +} +/* csslint ignore:end */ + + +.e-pivotview .e-columnsheader .tempwrap { + display: none; +} +.e-pivotview .e-rowsheader .tempwrap { + display: none; +} + +/* csslint ignore:start */ +@font-face { + font-family: 'e-pivot'; + src: + url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAAKAIAAAwAgT1MvMjhUSmAAAAEoAAAAVmNtYXCs3q0zAAABkAAAAEpnbHlmdaItOwAAAegAAAE0aGVhZBRYEz0AAADQAAAANmhoZWEHmQNtAAAArAAAACRobXR4D7gAAAAAAYAAAAAQbG9jYQDAAHIAAAHcAAAACm1heHABDwBBAAABCAAAACBuYW1lc0cOBgAAAxwAAAIlcG9zdK9TctUAAAVEAAAARwABAAADUv9qAFoEAAAA//4D6gABAAAAAAAAAAAAAAAAAAAABAABAAAAAQAAT8kba18PPPUACwPoAAAAANin5zgAAAAA2KfnOAAAAAAD6gPoAAAACAACAAAAAAAAAAEAAAAEADUAAQAAAAAAAgAAAAoACgAAAP8AAAAAAAAAAQPuAZAABQAAAnoCvAAAAIwCegK8AAAB4AAxAQIAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA4jToTQNS/2oAWgPoAJYAAAABAAAAAAAABAAAAAPoAAAD6AAAA+gAAAAAAAIAAAADAAAAFAADAAEAAAAUAAQANgAAAAgACAACAADiNOI56E3//wAA4jTiOehN//8AAAAAAAAAAQAIAAgACAAAAAEAAwACAAAAAAAAACYAcgCaAAAAAQAAAAADTAPoABUAAAkBBhY7AREUFjsBMjY1ETMyNicBJiIB3f7KCw4SxxAMqgwQxhIPC/7FCBgD3/6tDyH9wAwQEAwCQCEPAVMJAAEAAAAAA+oDTAA0AAABMx8BAR8DDwMBDwMjLwwhLwE1NzUnPwEhPwQ1PwQCXgIFCQFxBAIEAgEDBAf+ogYKBQUEAwQDAwICAQIBAQYJCf3mAgEDAgEBAh4KCAQCAQICAgIDA0wBBf7VAwQJCQkJCQf+4QQGAgEBAQIDBAQFC50DBAQDAQICCuANAgECBQIDAqcMBQQDAQAAAQAAAAADTAPoABYAAAEGFREjIgYXARYyNwE2JisBETQmKwEiAYsIxhIPDAE5CRgJATUMDhPGEAyqDAPgCAz9wCEP/q0JCQFTDyECQAwQAAAAABIA3gABAAAAAAAAAAEAAAABAAAAAAABAAcAAQABAAAAAAACAAcACAABAAAAAAADAAcADwABAAAAAAAEAAcAFgABAAAAAAAFAAsAHQABAAAAAAAGAAcAKAABAAAAAAAKACwALwABAAAAAAALABIAWwADAAEECQAAAAIAbQADAAEECQABAA4AbwADAAEECQACAA4AfQADAAEECQADAA4AiwADAAEECQAEAA4AmQADAAEECQAFABYApwADAAEECQAGAA4AvQADAAEECQAKAFgAywADAAEECQALACQBIyBlLWljb25zUmVndWxhcmUtaWNvbnNlLWljb25zVmVyc2lvbiAxLjBlLWljb25zRm9udCBnZW5lcmF0ZWQgdXNpbmcgU3luY2Z1c2lvbiBNZXRybyBTdHVkaW93d3cuc3luY2Z1c2lvbi5jb20AIABlAC0AaQBjAG8AbgBzAFIAZQBnAHUAbABhAHIAZQAtAGkAYwBvAG4AcwBlAC0AaQBjAG8AbgBzAFYAZQByAHMAaQBvAG4AIAAxAC4AMABlAC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAHUAcwBpAG4AZwAgAFMAeQBuAGMAZgB1AHMAaQBvAG4AIABNAGUAdAByAG8AIABTAHQAdQBkAGkAbwB3AHcAdwAuAHMAeQBuAGMAZgB1AHMAaQBvAG4ALgBjAG8AbQAAAAACAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQBAgEDAQQBBQADVXAxC2Fycm93LXJpZ2h0CURvd25fU29ydAAAAA==) format('truetype'); + font-weight: normal; + font-style: normal; +} + +.pv-icons { + font-family: 'e-pivot'; + font-style: normal; + font-variant: normal; + font-weight: normal; + text-transform: none; + line-height: 1; +} + +.sb-icon-profit::before { + content: '\e234'; + padding-left: 30px; + margin: auto !important; + color: #219122; + size: 20px; +} + +.sb-icon-neutral::before { + content: '\e84d'; + padding-left: 30px; + margin: auto !important; + color: #82b5e9; +} + +.sb-icon-loss::before { + content: '\e239'; + padding-left: 30px; + margin: auto !important; + color: #ff2222; +} + +.e-pivotview .e-tool-expand::before { + content: '\e702'; +} + +.fileUpload { + position: relative; + overflow: hidden; + margin: 10px; +} + +.fileUpload input.upload { + position: absolute; + top: 0; + right: 0; + margin: 0; + padding: 0; + font-size: 20px; + cursor: pointer; + opacity: 0; + filter: alpha(opacity=0); +} +/* csslint ignore:end */ \ No newline at end of file diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/app.component.ts b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/app.component.ts new file mode 100644 index 0000000000..2839139435 --- /dev/null +++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/app.component.ts @@ -0,0 +1,91 @@ +import { NgModule } from '@angular/core'; +import { BrowserModule } from '@angular/platform-browser'; +import { PivotViewAllModule, PivotFieldListAllModule } from '@syncfusion/ej2-angular-pivotview'; +import { Component, ViewChild, OnInit } from '@angular/core'; +import { IDataOptions, PivotView, ToolbarService, IDataSet } from '@syncfusion/ej2-angular-pivotview'; +import { GridSettings } from '@syncfusion/ej2-pivotview/src/pivotview/model/gridsettings'; +import { enableRipple } from '@syncfusion/ej2-base'; +import { Pivot_Data } from './datasource'; +enableRipple(false); + +@Component({ + selector: 'app-container', + template: ` +
    + +
    +
    + + + Save + +
    + `, + providers: [ToolbarService], + standalone: true, + imports: [ + PivotViewAllModule, + PivotFieldListAllModule + ] +}) +export class AppComponent implements OnInit { + public dataSourceSettings?: IDataOptions; + public gridSettings?: GridSettings; + public toolbarOptions?: any; + + @ViewChild('pivotview') + public pivotObj?: PivotView; + + ngOnInit(): void { + this.gridSettings = { + columnWidth: 140 + } as GridSettings; + + this.toolbarOptions = `#template`; + + this.dataSourceSettings = { + enableSorting: true, + columns: [{ name: 'Year' }, { name: 'Order_Source', caption: 'Order Source' }], + rows: [{ name: 'Country' }, { name: 'Products' }], + formatSettings: [{ name: 'Amount', format: 'C0' }], + dataSource: Pivot_Data as IDataSet[], + expandAll: false, + values: [{ name: 'Sold', caption: 'Units Sold' }, { name: 'Amount', caption: 'Sold Amount' }], + filters: [{ name: 'Product_Categories', caption: 'Product Categories' }] + }; + } + + saveData(): void { + if(this.pivotObj) + { + const dataSource = JSON.parse(this.pivotObj?.getPersistData()).dataSourceSettings; + const a: HTMLAnchorElement = document.createElement('a'); + const mime_type = 'application/octet-stream'; + a.setAttribute('download', 'pivot.JSON'); + a.href = 'data:' + mime_type + ';base64,' + btoa(JSON.stringify(dataSource) || ''); + document.body.appendChild(a); + a.click(); + document.body.removeChild(a); + } + } + + // Read and load data from JSON file + readBlob(event: Event): void { + const input = event.target as HTMLInputElement; + const file = input.files?.[0]; + if (file) { + const reader = new FileReader(); + reader.onloadend = (evt: ProgressEvent) => { + if (evt.target?.readyState === FileReader.DONE) { + const result = evt.target.result as string; + this.pivotObj!.dataSourceSettings = JSON.parse(result); + } + }; + reader.readAsText(file); + } + input.value = ''; + } +} diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/ca-gregorian.json b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/ca-gregorian.json new file mode 100644 index 0000000000..025abf4a93 --- /dev/null +++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/ca-gregorian.json @@ -0,0 +1,500 @@ +{ + "main": { + "de": { + "identity": { + "version": { + "_number": "$Revision: 12879 $", + "_cldrVersion": "30.0.3" + }, + "language": "de" + }, + "dates": { + "calendars": { + "gregorian": { + "months": { + "format": { + "abbreviated": { + "1": "Jan.", + "2": "Feb.", + "3": "März", + "4": "Apr.", + "5": "Mai", + "6": "Juni", + "7": "Juli", + "8": "Aug.", + "9": "Sep.", + "10": "Okt.", + "11": "Nov.", + "12": "Dez." + }, + "narrow": { + "1": "J", + "2": "F", + "3": "M", + "4": "A", + "5": "M", + "6": "J", + "7": "J", + "8": "A", + "9": "S", + "10": "O", + "11": "N", + "12": "D" + }, + "wide": { + "1": "Januar", + "2": "Februar", + "3": "März", + "4": "April", + "5": "Mai", + "6": "Juni", + "7": "Juli", + "8": "August", + "9": "September", + "10": "Oktober", + "11": "November", + "12": "Dezember" + } + }, + "stand-alone": { + "abbreviated": { + "1": "Jan", + "2": "Feb", + "3": "Mär", + "4": "Apr", + "5": "Mai", + "6": "Jun", + "7": "Jul", + "8": "Aug", + "9": "Sep", + "10": "Okt", + "11": "Nov", + "12": "Dez" + }, + "narrow": { + "1": "J", + "2": "F", + "3": "M", + "4": "A", + "5": "M", + "6": "J", + "7": "J", + "8": "A", + "9": "S", + "10": "O", + "11": "N", + "12": "D" + }, + "wide": { + "1": "Januar", + "2": "Februar", + "3": "März", + "4": "April", + "5": "Mai", + "6": "Juni", + "7": "Juli", + "8": "August", + "9": "September", + "10": "Oktober", + "11": "November", + "12": "Dezember" + } + } + }, + "days": { + "format": { + "abbreviated": { + "sun": "So.", + "mon": "Mo.", + "tue": "Di.", + "wed": "Mi.", + "thu": "Do.", + "fri": "Fr.", + "sat": "Sa." + }, + "narrow": { + "sun": "S", + "mon": "M", + "tue": "D", + "wed": "M", + "thu": "D", + "fri": "F", + "sat": "S" + }, + "short": { + "sun": "So.", + "mon": "Mo.", + "tue": "Di.", + "wed": "Mi.", + "thu": "Do.", + "fri": "Fr.", + "sat": "Sa." + }, + "wide": { + "sun": "Sonntag", + "mon": "Montag", + "tue": "Dienstag", + "wed": "Mittwoch", + "thu": "Donnerstag", + "fri": "Freitag", + "sat": "Samstag" + } + }, + "stand-alone": { + "abbreviated": { + "sun": "So", + "mon": "Mo", + "tue": "Di", + "wed": "Mi", + "thu": "Do", + "fri": "Fr", + "sat": "Sa" + }, + "narrow": { + "sun": "S", + "mon": "M", + "tue": "D", + "wed": "M", + "thu": "D", + "fri": "F", + "sat": "S" + }, + "short": { + "sun": "So.", + "mon": "Mo.", + "tue": "Di.", + "wed": "Mi.", + "thu": "Do.", + "fri": "Fr.", + "sat": "Sa." + }, + "wide": { + "sun": "Sonntag", + "mon": "Montag", + "tue": "Dienstag", + "wed": "Mittwoch", + "thu": "Donnerstag", + "fri": "Freitag", + "sat": "Samstag" + } + } + }, + "quarters": { + "format": { + "abbreviated": { + "1": "Q1", + "2": "Q2", + "3": "Q3", + "4": "Q4" + }, + "narrow": { + "1": "1", + "2": "2", + "3": "3", + "4": "4" + }, + "wide": { + "1": "1. Quartal", + "2": "2. Quartal", + "3": "3. Quartal", + "4": "4. Quartal" + } + }, + "stand-alone": { + "abbreviated": { + "1": "Q1", + "2": "Q2", + "3": "Q3", + "4": "Q4" + }, + "narrow": { + "1": "1", + "2": "2", + "3": "3", + "4": "4" + }, + "wide": { + "1": "1. Quartal", + "2": "2. Quartal", + "3": "3. Quartal", + "4": "4. Quartal" + } + } + }, + "dayPeriods": { + "format": { + "abbreviated": { + "midnight": "Mitternacht", + "am": "vorm.", + "pm": "nachm.", + "morning1": "morgens", + "morning2": "vormittags", + "afternoon1": "mittags", + "afternoon2": "nachmittags", + "evening1": "abends", + "night1": "nachts" + }, + "narrow": { + "midnight": "Mitternacht", + "am": "vm.", + "pm": "nm.", + "morning1": "morgens", + "morning2": "vormittags", + "afternoon1": "mittags", + "afternoon2": "nachmittags", + "evening1": "abends", + "night1": "nachts" + }, + "wide": { + "midnight": "Mitternacht", + "am": "vorm.", + "pm": "nachm.", + "morning1": "morgens", + "morning2": "vormittags", + "afternoon1": "mittags", + "afternoon2": "nachmittags", + "evening1": "abends", + "night1": "nachts" + } + }, + "stand-alone": { + "abbreviated": { + "midnight": "Mitternacht", + "am": "vorm.", + "pm": "nachm.", + "morning1": "Morgen", + "morning2": "Vormittag", + "afternoon1": "Mittag", + "afternoon2": "Nachmittag", + "evening1": "Abend", + "night1": "Nacht" + }, + "narrow": { + "midnight": "Mitternacht", + "am": "vorm.", + "pm": "nachm.", + "morning1": "Morgen", + "morning2": "Vormittag", + "afternoon1": "Mittag", + "afternoon2": "Nachmittag", + "evening1": "Abend", + "night1": "Nacht" + }, + "wide": { + "midnight": "Mitternacht", + "am": "vorm.", + "pm": "nachm.", + "morning1": "Morgen", + "morning2": "Vormittag", + "afternoon1": "Mittag", + "afternoon2": "Nachmittag", + "evening1": "Abend", + "night1": "Nacht" + } + } + }, + "eras": { + "eraNames": { + "0": "v. Chr.", + "0-alt-variant": "vor unserer Zeitrechnung", + "1": "n. Chr.", + "1-alt-variant": "unserer Zeitrechnung" + }, + "eraAbbr": { + "0": "v. Chr.", + "0-alt-variant": "v. u. Z.", + "1": "n. Chr.", + "1-alt-variant": "u. Z." + }, + "eraNarrow": { + "0": "v. Chr.", + "0-alt-variant": "v. u. Z.", + "1": "n. Chr.", + "1-alt-variant": "u. Z." + } + }, + "dateFormats": { + "full": "EEEE, d. MMMM y", + "long": "d. MMMM y", + "medium": "dd.MM.y", + "short": "dd.MM.yy" + }, + "timeFormats": { + "full": "HH:mm:ss zzzz", + "long": "HH:mm:ss z", + "medium": "HH:mm:ss", + "short": "HH:mm" + }, + "dateTimeFormats": { + "full": "{1} 'um' {0}", + "long": "{1} 'um' {0}", + "medium": "{1}, {0}", + "short": "{1}, {0}", + "availableFormats": { + "d": "d", + "E": "ccc", + "Ed": "E, d.", + "Ehm": "E h:mm a", + "EHm": "E, HH:mm", + "Ehms": "E, h:mm:ss a", + "EHms": "E, HH:mm:ss", + "Gy": "y G", + "GyMMM": "MMM y G", + "GyMMMd": "d. MMM y G", + "GyMMMEd": "E, d. MMM y G", + "h": "h 'Uhr' a", + "H": "HH 'Uhr'", + "hm": "h:mm a", + "Hm": "HH:mm", + "hms": "h:mm:ss a", + "Hms": "HH:mm:ss", + "hmsv": "h:mm:ss a v", + "Hmsv": "HH:mm:ss v", + "hmv": "h:mm a v", + "Hmv": "HH:mm v", + "M": "L", + "Md": "d.M.", + "MEd": "E, d.M.", + "MMd": "d.MM.", + "MMdd": "dd.MM.", + "MMM": "LLL", + "MMMd": "d. MMM", + "MMMEd": "E, d. MMM", + "MMMMd": "d. MMMM", + "MMMMEd": "E, d. MMMM", + "MMMMW": "'Woche' W 'im' MMM", + "MMMMW": "'Woche' W 'im' MMM", + "ms": "mm:ss", + "y": "y", + "yM": "M.y", + "yMd": "d.M.y", + "yMEd": "E, d.M.y", + "yMM": "MM.y", + "yMMdd": "dd.MM.y", + "yMMM": "MMM y", + "yMMMd": "d. MMM y", + "yMMMEd": "E, d. MMM y", + "yMMMM": "MMMM y", + "yQQQ": "QQQ y", + "yQQQQ": "QQQQ y", + "yw": "'Woche' w 'des' 'Jahres' y", + "yw": "'Woche' w 'des' 'Jahres' y" + }, + "appendItems": { + "Day": "{0} ({2}: {1})", + "Day-Of-Week": "{0} {1}", + "Era": "{1} {0}", + "Hour": "{0} ({2}: {1})", + "Minute": "{0} ({2}: {1})", + "Month": "{0} ({2}: {1})", + "Quarter": "{0} ({2}: {1})", + "Second": "{0} ({2}: {1})", + "Timezone": "{0} {1}", + "Week": "{0} ({2}: {1})", + "Year": "{1} {0}" + }, + "intervalFormats": { + "intervalFormatFallback": "{0} – {1}", + "d": { + "d": "d.–d." + }, + "h": { + "a": "h 'Uhr' a – h 'Uhr' a", + "h": "h – h 'Uhr' a" + }, + "H": { + "H": "HH–HH 'Uhr'" + }, + "hm": { + "a": "h:mm a – h:mm a", + "h": "h:mm–h:mm a", + "m": "h:mm–h:mm a" + }, + "Hm": { + "H": "HH:mm–HH:mm 'Uhr'", + "m": "HH:mm–HH:mm 'Uhr'" + }, + "hmv": { + "a": "h:mm a – h:mm a v", + "h": "h:mm–h:mm a v", + "m": "h:mm–h:mm a v" + }, + "Hmv": { + "H": "HH:mm–HH:mm 'Uhr' v", + "m": "HH:mm–HH:mm 'Uhr' v" + }, + "hv": { + "a": "h a – h a v", + "h": "h–h a v" + }, + "Hv": { + "H": "HH–HH 'Uhr' v" + }, + "M": { + "M": "M.–M." + }, + "Md": { + "d": "dd.MM. – dd.MM.", + "M": "dd.MM. – dd.MM." + }, + "MEd": { + "d": "E, dd.MM. – E, dd.MM.", + "M": "E, dd.MM. – E, dd.MM." + }, + "MMM": { + "M": "MMM–MMM" + }, + "MMMd": { + "d": "d.–d. MMM", + "M": "d. MMM – d. MMM" + }, + "MMMEd": { + "d": "E, d. – E, d. MMM", + "M": "E, d. MMM – E, d. MMM" + }, + "MMMM": { + "M": "LLLL–LLLL" + }, + "y": { + "y": "y–y" + }, + "yM": { + "M": "MM.y – MM.y", + "y": "MM.y – MM.y" + }, + "yMd": { + "d": "dd.MM.y – dd.MM.y", + "M": "dd.MM.y – dd.MM.y", + "y": "dd.MM.y – dd.MM.y" + }, + "yMEd": { + "d": "E, dd.MM.y – E, dd.MM.y", + "M": "E, dd.MM.y – E, dd.MM.y", + "y": "E, dd.MM.y – E, dd.MM.y" + }, + "yMMM": { + "M": "MMM–MMM y", + "y": "MMM y – MMM y" + }, + "yMMMd": { + "d": "d.–d. MMM y", + "M": "d. MMM – d. MMM y", + "y": "d. MMM y – d. MMM y" + }, + "yMMMEd": { + "d": "E, d. – E, d. MMM y", + "M": "E, d. MMM – E, d. MMM y", + "y": "E, d. MMM y – E, d. MMM y" + }, + "yMMMM": { + "M": "MMMM–MMMM y", + "y": "MMMM y – MMMM y" + } + } + } + } + } + } + } + } +} diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/currencies.json b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/currencies.json new file mode 100644 index 0000000000..7f5935168e --- /dev/null +++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/currencies.json @@ -0,0 +1,1901 @@ +{ + "main": { + "de": { + "identity": { + "version": { + "_number": "$Revision: 13259 $", + "_cldrVersion": "31" + }, + "language": "de" + }, + "numbers": { + "currencies": { + "ADP": { + "displayName": "Andorranische Pesete", + "displayName-count-one": "Andorranische Pesete", + "displayName-count-other": "Andorranische Peseten", + "symbol": "ADP" + }, + "AED": { + "displayName": "VAE-Dirham", + "displayName-count-one": "VAE-Dirham", + "displayName-count-other": "VAE-Dirham", + "symbol": "AED" + }, + "AFA": { + "displayName": "Afghanische Afghani (1927–2002)", + "displayName-count-one": "Afghanische Afghani (1927–2002)", + "displayName-count-other": "Afghanische Afghani (1927–2002)", + "symbol": "AFA" + }, + "AFN": { + "displayName": "Afghanischer Afghani", + "displayName-count-one": "Afghanischer Afghani", + "displayName-count-other": "Afghanische Afghani", + "symbol": "AFN" + }, + "ALK": { + "displayName": "Albanischer Lek (1946–1965)", + "displayName-count-one": "Albanischer Lek (1946–1965)", + "displayName-count-other": "Albanische Lek (1946–1965)" + }, + "ALL": { + "displayName": "Albanischer Lek", + "displayName-count-one": "Albanischer Lek", + "displayName-count-other": "Albanische Lek", + "symbol": "ALL" + }, + "AMD": { + "displayName": "Armenischer Dram", + "displayName-count-one": "Armenischer Dram", + "displayName-count-other": "Armenische Dram", + "symbol": "AMD" + }, + "ANG": { + "displayName": "Niederländische-Antillen-Gulden", + "displayName-count-one": "Niederländische-Antillen-Gulden", + "displayName-count-other": "Niederländische-Antillen-Gulden", + "symbol": "ANG" + }, + "AOA": { + "displayName": "Angolanischer Kwanza", + "displayName-count-one": "Angolanischer Kwanza", + "displayName-count-other": "Angolanische Kwanza", + "symbol": "AOA", + "symbol-alt-narrow": "Kz" + }, + "AOK": { + "displayName": "Angolanischer Kwanza (1977–1990)", + "displayName-count-one": "Angolanischer Kwanza (1977–1990)", + "displayName-count-other": "Angolanische Kwanza (1977–1990)", + "symbol": "AOK" + }, + "AON": { + "displayName": "Angolanischer Neuer Kwanza (1990–2000)", + "displayName-count-one": "Angolanischer Neuer Kwanza (1990–2000)", + "displayName-count-other": "Angolanische Neue Kwanza (1990–2000)", + "symbol": "AON" + }, + "AOR": { + "displayName": "Angolanischer Kwanza Reajustado (1995–1999)", + "displayName-count-one": "Angolanischer Kwanza Reajustado (1995–1999)", + "displayName-count-other": "Angolanische Kwanza Reajustado (1995–1999)", + "symbol": "AOR" + }, + "ARA": { + "displayName": "Argentinischer Austral", + "displayName-count-one": "Argentinischer Austral", + "displayName-count-other": "Argentinische Austral", + "symbol": "ARA" + }, + "ARL": { + "displayName": "Argentinischer Peso Ley (1970–1983)", + "displayName-count-one": "Argentinischer Peso Ley (1970–1983)", + "displayName-count-other": "Argentinische Pesos Ley (1970–1983)", + "symbol": "ARL" + }, + "ARM": { + "displayName": "Argentinischer Peso (1881–1970)", + "displayName-count-one": "Argentinischer Peso (1881–1970)", + "displayName-count-other": "Argentinische Pesos (1881–1970)", + "symbol": "ARM" + }, + "ARP": { + "displayName": "Argentinischer Peso (1983–1985)", + "displayName-count-one": "Argentinischer Peso (1983–1985)", + "displayName-count-other": "Argentinische Peso (1983–1985)", + "symbol": "ARP" + }, + "ARS": { + "displayName": "Argentinischer Peso", + "displayName-count-one": "Argentinischer Peso", + "displayName-count-other": "Argentinische Pesos", + "symbol": "ARS", + "symbol-alt-narrow": "$" + }, + "ATS": { + "displayName": "Österreichischer Schilling", + "displayName-count-one": "Österreichischer Schilling", + "displayName-count-other": "Österreichische Schilling", + "symbol": "öS" + }, + "AUD": { + "displayName": "Australischer Dollar", + "displayName-count-one": "Australischer Dollar", + "displayName-count-other": "Australische Dollar", + "symbol": "AU$", + "symbol-alt-narrow": "$" + }, + "AWG": { + "displayName": "Aruba-Florin", + "displayName-count-one": "Aruba-Florin", + "displayName-count-other": "Aruba-Florin", + "symbol": "AWG" + }, + "AZM": { + "displayName": "Aserbaidschan-Manat (1993–2006)", + "displayName-count-one": "Aserbaidschan-Manat (1993–2006)", + "displayName-count-other": "Aserbaidschan-Manat (1993–2006)", + "symbol": "AZM" + }, + "AZN": { + "displayName": "Aserbaidschan-Manat", + "displayName-count-one": "Aserbaidschan-Manat", + "displayName-count-other": "Aserbaidschan-Manat", + "symbol": "AZN" + }, + "BAD": { + "displayName": "Bosnien und Herzegowina Dinar (1992–1994)", + "displayName-count-one": "Bosnien und Herzegowina Dinar (1992–1994)", + "displayName-count-other": "Bosnien und Herzegowina Dinar (1992–1994)", + "symbol": "BAD" + }, + "BAM": { + "displayName": "Bosnien und Herzegowina Konvertierbare Mark", + "displayName-count-one": "Bosnien und Herzegowina Konvertierbare Mark", + "displayName-count-other": "Bosnien und Herzegowina Konvertierbare Mark", + "symbol": "BAM", + "symbol-alt-narrow": "KM" + }, + "BAN": { + "displayName": "Bosnien und Herzegowina Neuer Dinar (1994–1997)", + "displayName-count-one": "Bosnien und Herzegowina Neuer Dinar (1994–1997)", + "displayName-count-other": "Bosnien und Herzegowina Neue Dinar (1994–1997)", + "symbol": "BAN" + }, + "BBD": { + "displayName": "Barbados-Dollar", + "displayName-count-one": "Barbados-Dollar", + "displayName-count-other": "Barbados-Dollar", + "symbol": "BBD", + "symbol-alt-narrow": "$" + }, + "BDT": { + "displayName": "Bangladesch-Taka", + "displayName-count-one": "Bangladesch-Taka", + "displayName-count-other": "Bangladesch-Taka", + "symbol": "BDT", + "symbol-alt-narrow": "৳" + }, + "BEC": { + "displayName": "Belgischer Franc (konvertibel)", + "displayName-count-one": "Belgischer Franc (konvertibel)", + "displayName-count-other": "Belgische Franc (konvertibel)", + "symbol": "BEC" + }, + "BEF": { + "displayName": "Belgischer Franc", + "displayName-count-one": "Belgischer Franc", + "displayName-count-other": "Belgische Franc", + "symbol": "BEF" + }, + "BEL": { + "displayName": "Belgischer Finanz-Franc", + "displayName-count-one": "Belgischer Finanz-Franc", + "displayName-count-other": "Belgische Finanz-Franc", + "symbol": "BEL" + }, + "BGL": { + "displayName": "Bulgarische Lew (1962–1999)", + "displayName-count-one": "Bulgarische Lew (1962–1999)", + "displayName-count-other": "Bulgarische Lew (1962–1999)", + "symbol": "BGL" + }, + "BGM": { + "displayName": "Bulgarischer Lew (1952–1962)", + "displayName-count-one": "Bulgarischer Lew (1952–1962)", + "displayName-count-other": "Bulgarische Lew (1952–1962)", + "symbol": "BGK" + }, + "BGN": { + "displayName": "Bulgarischer Lew", + "displayName-count-one": "Bulgarischer Lew", + "displayName-count-other": "Bulgarische Lew", + "symbol": "BGN" + }, + "BGO": { + "displayName": "Bulgarischer Lew (1879–1952)", + "displayName-count-one": "Bulgarischer Lew (1879–1952)", + "displayName-count-other": "Bulgarische Lew (1879–1952)", + "symbol": "BGJ" + }, + "BHD": { + "displayName": "Bahrain-Dinar", + "displayName-count-one": "Bahrain-Dinar", + "displayName-count-other": "Bahrain-Dinar", + "symbol": "BHD" + }, + "BIF": { + "displayName": "Burundi-Franc", + "displayName-count-one": "Burundi-Franc", + "displayName-count-other": "Burundi-Francs", + "symbol": "BIF" + }, + "BMD": { + "displayName": "Bermuda-Dollar", + "displayName-count-one": "Bermuda-Dollar", + "displayName-count-other": "Bermuda-Dollar", + "symbol": "BMD", + "symbol-alt-narrow": "$" + }, + "BND": { + "displayName": "Brunei-Dollar", + "displayName-count-one": "Brunei-Dollar", + "displayName-count-other": "Brunei-Dollar", + "symbol": "BND", + "symbol-alt-narrow": "$" + }, + "BOB": { + "displayName": "Bolivanischer Boliviano", + "displayName-count-one": "Bolivanischer Boliviano", + "displayName-count-other": "Bolivianische Bolivianos", + "symbol": "BOB", + "symbol-alt-narrow": "Bs" + }, + "BOL": { + "displayName": "Bolivianischer Boliviano (1863–1963)", + "displayName-count-one": "Bolivianischer Boliviano (1863–1963)", + "displayName-count-other": "Bolivianische Bolivianos (1863–1963)", + "symbol": "BOL" + }, + "BOP": { + "displayName": "Bolivianischer Peso", + "displayName-count-one": "Bolivianischer Peso", + "displayName-count-other": "Bolivianische Peso", + "symbol": "BOP" + }, + "BOV": { + "displayName": "Boliviansiche Mvdol", + "displayName-count-one": "Boliviansiche Mvdol", + "displayName-count-other": "Bolivianische Mvdol", + "symbol": "BOV" + }, + "BRB": { + "displayName": "Brasilianischer Cruzeiro Novo (1967–1986)", + "displayName-count-one": "Brasilianischer Cruzeiro Novo (1967–1986)", + "displayName-count-other": "Brasilianische Cruzeiro Novo (1967–1986)", + "symbol": "BRB" + }, + "BRC": { + "displayName": "Brasilianischer Cruzado (1986–1989)", + "displayName-count-one": "Brasilianischer Cruzado (1986–1989)", + "displayName-count-other": "Brasilianische Cruzado (1986–1989)", + "symbol": "BRC" + }, + "BRE": { + "displayName": "Brasilianischer Cruzeiro (1990–1993)", + "displayName-count-one": "Brasilianischer Cruzeiro (1990–1993)", + "displayName-count-other": "Brasilianische Cruzeiro (1990–1993)", + "symbol": "BRE" + }, + "BRL": { + "displayName": "Brasilianischer Real", + "displayName-count-one": "Brasilianischer Real", + "displayName-count-other": "Brasilianische Real", + "symbol": "R$", + "symbol-alt-narrow": "R$" + }, + "BRN": { + "displayName": "Brasilianischer Cruzado Novo (1989–1990)", + "displayName-count-one": "Brasilianischer Cruzado Novo (1989–1990)", + "displayName-count-other": "Brasilianische Cruzado Novo (1989–1990)", + "symbol": "BRN" + }, + "BRR": { + "displayName": "Brasilianischer Cruzeiro (1993–1994)", + "displayName-count-one": "Brasilianischer Cruzeiro (1993–1994)", + "displayName-count-other": "Brasilianische Cruzeiro (1993–1994)", + "symbol": "BRR" + }, + "BRZ": { + "displayName": "Brasilianischer Cruzeiro (1942–1967)", + "displayName-count-one": "Brasilianischer Cruzeiro (1942–1967)", + "displayName-count-other": "Brasilianischer Cruzeiro (1942–1967)", + "symbol": "BRZ" + }, + "BSD": { + "displayName": "Bahamas-Dollar", + "displayName-count-one": "Bahamas-Dollar", + "displayName-count-other": "Bahamas-Dollar", + "symbol": "BSD", + "symbol-alt-narrow": "$" + }, + "BTN": { + "displayName": "Bhutan-Ngultrum", + "displayName-count-one": "Bhutan-Ngultrum", + "displayName-count-other": "Bhutan-Ngultrum", + "symbol": "BTN" + }, + "BUK": { + "displayName": "Birmanischer Kyat", + "displayName-count-one": "Birmanischer Kyat", + "displayName-count-other": "Birmanische Kyat", + "symbol": "BUK" + }, + "BWP": { + "displayName": "Botswanischer Pula", + "displayName-count-one": "Botswanischer Pula", + "displayName-count-other": "Botswanische Pula", + "symbol": "BWP", + "symbol-alt-narrow": "P" + }, + "BYB": { + "displayName": "Belarus-Rubel (1994–1999)", + "displayName-count-one": "Belarus-Rubel (1994–1999)", + "displayName-count-other": "Belarus-Rubel (1994–1999)", + "symbol": "BYB" + }, + "BYN": { + "displayName": "Weißrussischer Rubel", + "displayName-count-one": "Weißrussischer Rubel", + "displayName-count-other": "Weißrussische Rubel", + "symbol": "BYN", + "symbol-alt-narrow": "р." + }, + "BYR": { + "displayName": "Weißrussischer Rubel (2000–2016)", + "displayName-count-one": "Weißrussischer Rubel (2000–2016)", + "displayName-count-other": "Weißrussische Rubel (2000–2016)", + "symbol": "BYR" + }, + "BZD": { + "displayName": "Belize-Dollar", + "displayName-count-one": "Belize-Dollar", + "displayName-count-other": "Belize-Dollar", + "symbol": "BZD", + "symbol-alt-narrow": "$" + }, + "CAD": { + "displayName": "Kanadischer Dollar", + "displayName-count-one": "Kanadischer Dollar", + "displayName-count-other": "Kanadische Dollar", + "symbol": "CA$", + "symbol-alt-narrow": "$" + }, + "CDF": { + "displayName": "Kongo-Franc", + "displayName-count-one": "Kongo-Franc", + "displayName-count-other": "Kongo-Francs", + "symbol": "CDF" + }, + "CHE": { + "displayName": "WIR-Euro", + "displayName-count-one": "WIR-Euro", + "displayName-count-other": "WIR-Euro", + "symbol": "CHE" + }, + "CHF": { + "displayName": "Schweizer Franken", + "displayName-count-one": "Schweizer Franken", + "displayName-count-other": "Schweizer Franken", + "symbol": "CHF" + }, + "CHW": { + "displayName": "WIR Franken", + "displayName-count-one": "WIR Franken", + "displayName-count-other": "WIR Franken", + "symbol": "CHW" + }, + "CLE": { + "displayName": "Chilenischer Escudo", + "displayName-count-one": "Chilenischer Escudo", + "displayName-count-other": "Chilenische Escudo", + "symbol": "CLE" + }, + "CLF": { + "displayName": "Chilenische Unidades de Fomento", + "displayName-count-one": "Chilenische Unidades de Fomento", + "displayName-count-other": "Chilenische Unidades de Fomento", + "symbol": "CLF" + }, + "CLP": { + "displayName": "Chilenischer Peso", + "displayName-count-one": "Chilenischer Peso", + "displayName-count-other": "Chilenische Pesos", + "symbol": "CLP", + "symbol-alt-narrow": "$" + }, + "CNX": { + "displayName": "Dollar der Chinesischen Volksbank", + "displayName-count-one": "Dollar der Chinesischen Volksbank", + "displayName-count-other": "Dollar der Chinesischen Volksbank", + "symbol": "CNX" + }, + "CNY": { + "displayName": "Renminbi Yuan", + "displayName-count-one": "Chinesischer Yuan", + "displayName-count-other": "Renminbi Yuan", + "symbol": "CN¥", + "symbol-alt-narrow": "¥" + }, + "COP": { + "displayName": "Kolumbianischer Peso", + "displayName-count-one": "Kolumbianischer Peso", + "displayName-count-other": "Kolumbianische Pesos", + "symbol": "COP", + "symbol-alt-narrow": "$" + }, + "COU": { + "displayName": "Kolumbianische Unidades de valor real", + "displayName-count-one": "Kolumbianische Unidad de valor real", + "displayName-count-other": "Kolumbianische Unidades de valor real", + "symbol": "COU" + }, + "CRC": { + "displayName": "Costa-Rica-Colón", + "displayName-count-one": "Costa-Rica-Colón", + "displayName-count-other": "Costa-Rica-Colón", + "symbol": "CRC", + "symbol-alt-narrow": "₡" + }, + "CSD": { + "displayName": "Serbischer Dinar (2002–2006)", + "displayName-count-one": "Serbischer Dinar (2002–2006)", + "displayName-count-other": "Serbische Dinar (2002–2006)", + "symbol": "CSD" + }, + "CSK": { + "displayName": "Tschechoslowakische Krone", + "displayName-count-one": "Tschechoslowakische Kronen", + "displayName-count-other": "Tschechoslowakische Kronen", + "symbol": "CSK" + }, + "CUC": { + "displayName": "Kubanischer Peso (konvertibel)", + "displayName-count-one": "Kubanischer Peso (konvertibel)", + "displayName-count-other": "Kubanische Pesos (konvertibel)", + "symbol": "CUC", + "symbol-alt-narrow": "Cub$" + }, + "CUP": { + "displayName": "Kubanischer Peso", + "displayName-count-one": "Kubanischer Peso", + "displayName-count-other": "Kubanische Pesos", + "symbol": "CUP", + "symbol-alt-narrow": "$" + }, + "CVE": { + "displayName": "Cabo-Verde-Escudo", + "displayName-count-one": "Cabo-Verde-Escudo", + "displayName-count-other": "Cabo-Verde-Escudos", + "symbol": "CVE" + }, + "CYP": { + "displayName": "Zypern-Pfund", + "displayName-count-one": "Zypern Pfund", + "displayName-count-other": "Zypern Pfund", + "symbol": "CYP" + }, + "CZK": { + "displayName": "Tschechische Krone", + "displayName-count-one": "Tschechische Krone", + "displayName-count-other": "Tschechische Kronen", + "symbol": "CZK", + "symbol-alt-narrow": "Kč" + }, + "DDM": { + "displayName": "Mark der DDR", + "displayName-count-one": "Mark der DDR", + "displayName-count-other": "Mark der DDR", + "symbol": "DDM" + }, + "DEM": { + "displayName": "Deutsche Mark", + "displayName-count-one": "Deutsche Mark", + "displayName-count-other": "Deutsche Mark", + "symbol": "DM" + }, + "DJF": { + "displayName": "Dschibuti-Franc", + "displayName-count-one": "Dschibuti-Franc", + "displayName-count-other": "Dschibuti-Franc", + "symbol": "DJF" + }, + "DKK": { + "displayName": "Dänische Krone", + "displayName-count-one": "Dänische Krone", + "displayName-count-other": "Dänische Kronen", + "symbol": "DKK", + "symbol-alt-narrow": "kr" + }, + "DOP": { + "displayName": "Dominikanischer Peso", + "displayName-count-one": "Dominikanischer Peso", + "displayName-count-other": "Dominikanische Pesos", + "symbol": "DOP", + "symbol-alt-narrow": "$" + }, + "DZD": { + "displayName": "Algerischer Dinar", + "displayName-count-one": "Algerischer Dinar", + "displayName-count-other": "Algerische Dinar", + "symbol": "DZD" + }, + "ECS": { + "displayName": "Ecuadorianischer Sucre", + "displayName-count-one": "Ecuadorianischer Sucre", + "displayName-count-other": "Ecuadorianische Sucre", + "symbol": "ECS" + }, + "ECV": { + "displayName": "Verrechnungseinheit für Ecuador", + "displayName-count-one": "Verrechnungseinheiten für Ecuador", + "displayName-count-other": "Verrechnungseinheiten für Ecuador", + "symbol": "ECV" + }, + "EEK": { + "displayName": "Estnische Krone", + "displayName-count-one": "Estnische Krone", + "displayName-count-other": "Estnische Kronen", + "symbol": "EEK" + }, + "EGP": { + "displayName": "Ägyptisches Pfund", + "displayName-count-one": "Ägyptisches Pfund", + "displayName-count-other": "Ägyptische Pfund", + "symbol": "EGP", + "symbol-alt-narrow": "E£" + }, + "ERN": { + "displayName": "Eritreischer Nakfa", + "displayName-count-one": "Eritreischer Nakfa", + "displayName-count-other": "Eritreische Nakfa", + "symbol": "ERN" + }, + "ESA": { + "displayName": "Spanische Peseta (A–Konten)", + "displayName-count-one": "Spanische Peseta (A–Konten)", + "displayName-count-other": "Spanische Peseten (A–Konten)", + "symbol": "ESA" + }, + "ESB": { + "displayName": "Spanische Peseta (konvertibel)", + "displayName-count-one": "Spanische Peseta (konvertibel)", + "displayName-count-other": "Spanische Peseten (konvertibel)", + "symbol": "ESB" + }, + "ESP": { + "displayName": "Spanische Peseta", + "displayName-count-one": "Spanische Peseta", + "displayName-count-other": "Spanische Peseten", + "symbol": "ESP", + "symbol-alt-narrow": "₧" + }, + "ETB": { + "displayName": "Äthiopischer Birr", + "displayName-count-one": "Äthiopischer Birr", + "displayName-count-other": "Äthiopische Birr", + "symbol": "ETB" + }, + "EUR": { + "displayName": "Euro", + "displayName-count-one": "Euro", + "displayName-count-other": "Euro", + "symbol": "€", + "symbol-alt-narrow": "€" + }, + "FIM": { + "displayName": "Finnische Mark", + "displayName-count-one": "Finnische Mark", + "displayName-count-other": "Finnische Mark", + "symbol": "FIM" + }, + "FJD": { + "displayName": "Fidschi-Dollar", + "displayName-count-one": "Fidschi-Dollar", + "displayName-count-other": "Fidschi-Dollar", + "symbol": "FJD", + "symbol-alt-narrow": "$" + }, + "FKP": { + "displayName": "Falkland-Pfund", + "displayName-count-one": "Falkland-Pfund", + "displayName-count-other": "Falkland-Pfund", + "symbol": "FKP", + "symbol-alt-narrow": "Fl£" + }, + "FRF": { + "displayName": "Französischer Franc", + "displayName-count-one": "Französischer Franc", + "displayName-count-other": "Französische Franc", + "symbol": "FRF" + }, + "GBP": { + "displayName": "Britisches Pfund", + "displayName-count-one": "Britisches Pfund", + "displayName-count-other": "Britische Pfund", + "symbol": "£", + "symbol-alt-narrow": "£" + }, + "GEK": { + "displayName": "Georgischer Kupon Larit", + "displayName-count-one": "Georgischer Kupon Larit", + "displayName-count-other": "Georgische Kupon Larit", + "symbol": "GEK" + }, + "GEL": { + "displayName": "Georgischer Lari", + "displayName-count-one": "Georgischer Lari", + "displayName-count-other": "Georgische Lari", + "symbol": "GEL", + "symbol-alt-narrow": "₾", + "symbol-alt-variant": "₾" + }, + "GHC": { + "displayName": "Ghanaischer Cedi (1979–2007)", + "displayName-count-one": "Ghanaischer Cedi (1979–2007)", + "displayName-count-other": "Ghanaische Cedi (1979–2007)", + "symbol": "GHC" + }, + "GHS": { + "displayName": "Ghanaischer Cedi", + "displayName-count-one": "Ghanaischer Cedi", + "displayName-count-other": "Ghanaische Cedi", + "symbol": "GHS" + }, + "GIP": { + "displayName": "Gibraltar-Pfund", + "displayName-count-one": "Gibraltar-Pfund", + "displayName-count-other": "Gibraltar Pfund", + "symbol": "GIP", + "symbol-alt-narrow": "£" + }, + "GMD": { + "displayName": "Gambia-Dalasi", + "displayName-count-one": "Gambia-Dalasi", + "displayName-count-other": "Gambia-Dalasi", + "symbol": "GMD" + }, + "GNF": { + "displayName": "Guinea-Franc", + "displayName-count-one": "Guinea-Franc", + "displayName-count-other": "Guinea-Franc", + "symbol": "GNF", + "symbol-alt-narrow": "F.G." + }, + "GNS": { + "displayName": "Guineischer Syli", + "displayName-count-one": "Guineischer Syli", + "displayName-count-other": "Guineische Syli", + "symbol": "GNS" + }, + "GQE": { + "displayName": "Äquatorialguinea-Ekwele", + "displayName-count-one": "Äquatorialguinea-Ekwele", + "displayName-count-other": "Äquatorialguinea-Ekwele", + "symbol": "GQE" + }, + "GRD": { + "displayName": "Griechische Drachme", + "displayName-count-one": "Griechische Drachme", + "displayName-count-other": "Griechische Drachmen", + "symbol": "GRD" + }, + "GTQ": { + "displayName": "Guatemaltekischer Quetzal", + "displayName-count-one": "Guatemaltekischer Quetzal", + "displayName-count-other": "Guatemaltekische Quetzales", + "symbol": "GTQ", + "symbol-alt-narrow": "Q" + }, + "GWE": { + "displayName": "Portugiesisch Guinea Escudo", + "displayName-count-one": "Portugiesisch Guinea Escudo", + "displayName-count-other": "Portugiesisch Guinea Escudo", + "symbol": "GWE" + }, + "GWP": { + "displayName": "Guinea-Bissau Peso", + "displayName-count-one": "Guinea-Bissau Peso", + "displayName-count-other": "Guinea-Bissau Pesos", + "symbol": "GWP" + }, + "GYD": { + "displayName": "Guyana-Dollar", + "displayName-count-one": "Guyana-Dollar", + "displayName-count-other": "Guyana-Dollar", + "symbol": "GYD", + "symbol-alt-narrow": "$" + }, + "HKD": { + "displayName": "Hongkong-Dollar", + "displayName-count-one": "Hongkong-Dollar", + "displayName-count-other": "Hongkong-Dollar", + "symbol": "HK$", + "symbol-alt-narrow": "$" + }, + "HNL": { + "displayName": "Honduras-Lempira", + "displayName-count-one": "Honduras-Lempira", + "displayName-count-other": "Honduras-Lempira", + "symbol": "HNL", + "symbol-alt-narrow": "L" + }, + "HRD": { + "displayName": "Kroatischer Dinar", + "displayName-count-one": "Kroatischer Dinar", + "displayName-count-other": "Kroatische Dinar", + "symbol": "HRD" + }, + "HRK": { + "displayName": "Kroatischer Kuna", + "displayName-count-one": "Kroatischer Kuna", + "displayName-count-other": "Kroatische Kuna", + "symbol": "HRK", + "symbol-alt-narrow": "kn" + }, + "HTG": { + "displayName": "Haitianische Gourde", + "displayName-count-one": "Haitianische Gourde", + "displayName-count-other": "Haitianische Gourdes", + "symbol": "HTG" + }, + "HUF": { + "displayName": "Ungarischer Forint", + "displayName-count-one": "Ungarischer Forint", + "displayName-count-other": "Ungarische Forint", + "symbol": "HUF", + "symbol-alt-narrow": "Ft" + }, + "IDR": { + "displayName": "Indonesische Rupiah", + "displayName-count-one": "Indonesische Rupiah", + "displayName-count-other": "Indonesische Rupiah", + "symbol": "IDR", + "symbol-alt-narrow": "Rp" + }, + "IEP": { + "displayName": "Irisches Pfund", + "displayName-count-one": "Irisches Pfund", + "displayName-count-other": "Irische Pfund", + "symbol": "IEP" + }, + "ILP": { + "displayName": "Israelisches Pfund", + "displayName-count-one": "Israelisches Pfund", + "displayName-count-other": "Israelische Pfund", + "symbol": "ILP" + }, + "ILR": { + "displayName": "Israelischer Schekel (1980–1985)", + "displayName-count-one": "Israelischer Schekel (1980–1985)", + "displayName-count-other": "Israelische Schekel (1980–1985)" + }, + "ILS": { + "displayName": "Israelischer Neuer Schekel", + "displayName-count-one": "Israelischer Neuer Schekel", + "displayName-count-other": "Israelische Neue Schekel", + "symbol": "₪", + "symbol-alt-narrow": "₪" + }, + "INR": { + "displayName": "Indische Rupie", + "displayName-count-one": "Indische Rupie", + "displayName-count-other": "Indische Rupien", + "symbol": "₹", + "symbol-alt-narrow": "₹" + }, + "IQD": { + "displayName": "Irakischer Dinar", + "displayName-count-one": "Irakischer Dinar", + "displayName-count-other": "Irakische Dinar", + "symbol": "IQD" + }, + "IRR": { + "displayName": "Iranischer Rial", + "displayName-count-one": "Iranischer Rial", + "displayName-count-other": "Iranische Rial", + "symbol": "IRR" + }, + "ISJ": { + "displayName": "Isländische Krone (1918–1981)", + "displayName-count-one": "Isländische Krone (1918–1981)", + "displayName-count-other": "Isländische Kronen (1918–1981)" + }, + "ISK": { + "displayName": "Isländische Krone", + "displayName-count-one": "Isländische Krone", + "displayName-count-other": "Isländische Kronen", + "symbol": "ISK", + "symbol-alt-narrow": "kr" + }, + "ITL": { + "displayName": "Italienische Lira", + "displayName-count-one": "Italienische Lira", + "displayName-count-other": "Italienische Lire", + "symbol": "ITL" + }, + "JMD": { + "displayName": "Jamaika-Dollar", + "displayName-count-one": "Jamaika-Dollar", + "displayName-count-other": "Jamaika-Dollar", + "symbol": "JMD", + "symbol-alt-narrow": "$" + }, + "JOD": { + "displayName": "Jordanischer Dinar", + "displayName-count-one": "Jordanischer Dinar", + "displayName-count-other": "Jordanische Dinar", + "symbol": "JOD" + }, + "JPY": { + "displayName": "Japanischer Yen", + "displayName-count-one": "Japanischer Yen", + "displayName-count-other": "Japanische Yen", + "symbol": "¥", + "symbol-alt-narrow": "¥" + }, + "KES": { + "displayName": "Kenia-Schilling", + "displayName-count-one": "Kenia-Schilling", + "displayName-count-other": "Kenia-Schilling", + "symbol": "KES" + }, + "KGS": { + "displayName": "Kirgisischer Som", + "displayName-count-one": "Kirgisischer Som", + "displayName-count-other": "Kirgisische Som", + "symbol": "KGS" + }, + "KHR": { + "displayName": "Kambodschanischer Riel", + "displayName-count-one": "Kambodschanischer Riel", + "displayName-count-other": "Kambodschanische Riel", + "symbol": "KHR", + "symbol-alt-narrow": "៛" + }, + "KMF": { + "displayName": "Komoren-Franc", + "displayName-count-one": "Komoren-Franc", + "displayName-count-other": "Komoren-Francs", + "symbol": "KMF", + "symbol-alt-narrow": "FC" + }, + "KPW": { + "displayName": "Nordkoreanischer Won", + "displayName-count-one": "Nordkoreanischer Won", + "displayName-count-other": "Nordkoreanische Won", + "symbol": "KPW", + "symbol-alt-narrow": "₩" + }, + "KRH": { + "displayName": "Südkoreanischer Hwan (1953–1962)", + "displayName-count-one": "Südkoreanischer Hwan (1953–1962)", + "displayName-count-other": "Südkoreanischer Hwan (1953–1962)", + "symbol": "KRH" + }, + "KRO": { + "displayName": "Südkoreanischer Won (1945–1953)", + "displayName-count-one": "Südkoreanischer Won (1945–1953)", + "displayName-count-other": "Südkoreanischer Won (1945–1953)", + "symbol": "KRO" + }, + "KRW": { + "displayName": "Südkoreanischer Won", + "displayName-count-one": "Südkoreanischer Won", + "displayName-count-other": "Südkoreanische Won", + "symbol": "₩", + "symbol-alt-narrow": "₩" + }, + "KWD": { + "displayName": "Kuwait-Dinar", + "displayName-count-one": "Kuwait-Dinar", + "displayName-count-other": "Kuwait-Dinar", + "symbol": "KWD" + }, + "KYD": { + "displayName": "Kaiman-Dollar", + "displayName-count-one": "Kaiman-Dollar", + "displayName-count-other": "Kaiman-Dollar", + "symbol": "KYD", + "symbol-alt-narrow": "$" + }, + "KZT": { + "displayName": "Kasachischer Tenge", + "displayName-count-one": "Kasachischer Tenge", + "displayName-count-other": "Kasachische Tenge", + "symbol": "KZT", + "symbol-alt-narrow": "₸" + }, + "LAK": { + "displayName": "Laotischer Kip", + "displayName-count-one": "Laotischer Kip", + "displayName-count-other": "Laotische Kip", + "symbol": "LAK", + "symbol-alt-narrow": "₭" + }, + "LBP": { + "displayName": "Libanesisches Pfund", + "displayName-count-one": "Libanesisches Pfund", + "displayName-count-other": "Libanesische Pfund", + "symbol": "LBP", + "symbol-alt-narrow": "L£" + }, + "LKR": { + "displayName": "Sri-Lanka-Rupie", + "displayName-count-one": "Sri-Lanka-Rupie", + "displayName-count-other": "Sri-Lanka-Rupien", + "symbol": "LKR", + "symbol-alt-narrow": "Rs" + }, + "LRD": { + "displayName": "Liberianischer Dollar", + "displayName-count-one": "Liberianischer Dollar", + "displayName-count-other": "Liberianische Dollar", + "symbol": "LRD", + "symbol-alt-narrow": "$" + }, + "LSL": { + "displayName": "Loti", + "displayName-count-one": "Loti", + "displayName-count-other": "Loti", + "symbol": "LSL" + }, + "LTL": { + "displayName": "Litauischer Litas", + "displayName-count-one": "Litauischer Litas", + "displayName-count-other": "Litauische Litas", + "symbol": "LTL", + "symbol-alt-narrow": "Lt" + }, + "LTT": { + "displayName": "Litauischer Talonas", + "displayName-count-one": "Litauische Talonas", + "displayName-count-other": "Litauische Talonas", + "symbol": "LTT" + }, + "LUC": { + "displayName": "Luxemburgischer Franc (konvertibel)", + "displayName-count-one": "Luxemburgische Franc (konvertibel)", + "displayName-count-other": "Luxemburgische Franc (konvertibel)", + "symbol": "LUC" + }, + "LUF": { + "displayName": "Luxemburgischer Franc", + "displayName-count-one": "Luxemburgische Franc", + "displayName-count-other": "Luxemburgische Franc", + "symbol": "LUF" + }, + "LUL": { + "displayName": "Luxemburgischer Finanz-Franc", + "displayName-count-one": "Luxemburgische Finanz-Franc", + "displayName-count-other": "Luxemburgische Finanz-Franc", + "symbol": "LUL" + }, + "LVL": { + "displayName": "Lettischer Lats", + "displayName-count-one": "Lettischer Lats", + "displayName-count-other": "Lettische Lats", + "symbol": "LVL", + "symbol-alt-narrow": "Ls" + }, + "LVR": { + "displayName": "Lettischer Rubel", + "displayName-count-one": "Lettische Rubel", + "displayName-count-other": "Lettische Rubel", + "symbol": "LVR" + }, + "LYD": { + "displayName": "Libyscher Dinar", + "displayName-count-one": "Libyscher Dinar", + "displayName-count-other": "Libysche Dinar", + "symbol": "LYD" + }, + "MAD": { + "displayName": "Marokkanischer Dirham", + "displayName-count-one": "Marokkanischer Dirham", + "displayName-count-other": "Marokkanische Dirham", + "symbol": "MAD" + }, + "MAF": { + "displayName": "Marokkanischer Franc", + "displayName-count-one": "Marokkanische Franc", + "displayName-count-other": "Marokkanische Franc", + "symbol": "MAF" + }, + "MCF": { + "displayName": "Monegassischer Franc", + "displayName-count-one": "Monegassischer Franc", + "displayName-count-other": "Monegassische Franc", + "symbol": "MCF" + }, + "MDC": { + "displayName": "Moldau-Cupon", + "displayName-count-one": "Moldau-Cupon", + "displayName-count-other": "Moldau-Cupon", + "symbol": "MDC" + }, + "MDL": { + "displayName": "Moldau-Leu", + "displayName-count-one": "Moldau-Leu", + "displayName-count-other": "Moldau-Leu", + "symbol": "MDL" + }, + "MGA": { + "displayName": "Madagaskar-Ariary", + "displayName-count-one": "Madagaskar-Ariary", + "displayName-count-other": "Madagaskar-Ariary", + "symbol": "MGA", + "symbol-alt-narrow": "Ar" + }, + "MGF": { + "displayName": "Madagaskar-Franc", + "displayName-count-one": "Madagaskar-Franc", + "displayName-count-other": "Madagaskar-Franc", + "symbol": "MGF" + }, + "MKD": { + "displayName": "Mazedonischer Denar", + "displayName-count-one": "Mazedonischer Denar", + "displayName-count-other": "Mazedonische Denari", + "symbol": "MKD" + }, + "MKN": { + "displayName": "Mazedonischer Denar (1992–1993)", + "displayName-count-one": "Mazedonischer Denar (1992–1993)", + "displayName-count-other": "Mazedonische Denar (1992–1993)", + "symbol": "MKN" + }, + "MLF": { + "displayName": "Malischer Franc", + "displayName-count-one": "Malische Franc", + "displayName-count-other": "Malische Franc", + "symbol": "MLF" + }, + "MMK": { + "displayName": "Myanmarischer Kyat", + "displayName-count-one": "Myanmarischer Kyat", + "displayName-count-other": "Myanmarische Kyat", + "symbol": "MMK", + "symbol-alt-narrow": "K" + }, + "MNT": { + "displayName": "Mongolischer Tögrög", + "displayName-count-one": "Mongolischer Tögrög", + "displayName-count-other": "Mongolische Tögrög", + "symbol": "MNT", + "symbol-alt-narrow": "₮" + }, + "MOP": { + "displayName": "Macao-Pataca", + "displayName-count-one": "Macao-Pataca", + "displayName-count-other": "Macao-Pataca", + "symbol": "MOP" + }, + "MRO": { + "displayName": "Mauretanischer Ouguiya", + "displayName-count-one": "Mauretanischer Ouguiya", + "displayName-count-other": "Mauretanische Ouguiya", + "symbol": "MRO" + }, + "MTL": { + "displayName": "Maltesische Lira", + "displayName-count-one": "Maltesische Lira", + "displayName-count-other": "Maltesische Lira", + "symbol": "MTL" + }, + "MTP": { + "displayName": "Maltesisches Pfund", + "displayName-count-one": "Maltesische Pfund", + "displayName-count-other": "Maltesische Pfund", + "symbol": "MTP" + }, + "MUR": { + "displayName": "Mauritius-Rupie", + "displayName-count-one": "Mauritius-Rupie", + "displayName-count-other": "Mauritius-Rupien", + "symbol": "MUR", + "symbol-alt-narrow": "Rs" + }, + "MVP": { + "displayName": "Malediven-Rupie (alt)", + "displayName-count-one": "Malediven-Rupie (alt)", + "displayName-count-other": "Malediven-Rupien (alt)" + }, + "MVR": { + "displayName": "Malediven-Rufiyaa", + "displayName-count-one": "Malediven-Rufiyaa", + "displayName-count-other": "Malediven-Rupien", + "symbol": "MVR" + }, + "MWK": { + "displayName": "Malawi-Kwacha", + "displayName-count-one": "Malawi-Kwacha", + "displayName-count-other": "Malawi-Kwacha", + "symbol": "MWK" + }, + "MXN": { + "displayName": "Mexikanischer Peso", + "displayName-count-one": "Mexikanischer Peso", + "displayName-count-other": "Mexikanische Pesos", + "symbol": "MX$", + "symbol-alt-narrow": "$" + }, + "MXP": { + "displayName": "Mexikanischer Silber-Peso (1861–1992)", + "displayName-count-one": "Mexikanische Silber-Peso (1861–1992)", + "displayName-count-other": "Mexikanische Silber-Pesos (1861–1992)", + "symbol": "MXP" + }, + "MXV": { + "displayName": "Mexicanischer Unidad de Inversion (UDI)", + "displayName-count-one": "Mexicanischer Unidad de Inversion (UDI)", + "displayName-count-other": "Mexikanische Unidad de Inversion (UDI)", + "symbol": "MXV" + }, + "MYR": { + "displayName": "Malaysischer Ringgit", + "displayName-count-one": "Malaysischer Ringgit", + "displayName-count-other": "Malaysische Ringgit", + "symbol": "MYR", + "symbol-alt-narrow": "RM" + }, + "MZE": { + "displayName": "Mosambikanischer Escudo", + "displayName-count-one": "Mozambikanische Escudo", + "displayName-count-other": "Mozambikanische Escudo", + "symbol": "MZE" + }, + "MZM": { + "displayName": "Mosambikanischer Metical (1980–2006)", + "displayName-count-one": "Mosambikanischer Metical (1980–2006)", + "displayName-count-other": "Mosambikanische Meticais (1980–2006)", + "symbol": "MZM" + }, + "MZN": { + "displayName": "Mosambikanischer Metical", + "displayName-count-one": "Mosambikanischer Metical", + "displayName-count-other": "Mosambikanische Meticais", + "symbol": "MZN" + }, + "NAD": { + "displayName": "Namibia-Dollar", + "displayName-count-one": "Namibia-Dollar", + "displayName-count-other": "Namibia-Dollar", + "symbol": "NAD", + "symbol-alt-narrow": "$" + }, + "NGN": { + "displayName": "Nigerianischer Naira", + "displayName-count-one": "Nigerianischer Naira", + "displayName-count-other": "Nigerianische Naira", + "symbol": "NGN", + "symbol-alt-narrow": "₦" + }, + "NIC": { + "displayName": "Nicaraguanischer Córdoba (1988–1991)", + "displayName-count-one": "Nicaraguanischer Córdoba (1988–1991)", + "displayName-count-other": "Nicaraguanische Córdoba (1988–1991)", + "symbol": "NIC" + }, + "NIO": { + "displayName": "Nicaragua-Córdoba", + "displayName-count-one": "Nicaragua-Córdoba", + "displayName-count-other": "Nicaragua-Córdobas", + "symbol": "NIO", + "symbol-alt-narrow": "C$" + }, + "NLG": { + "displayName": "Niederländischer Gulden", + "displayName-count-one": "Niederländischer Gulden", + "displayName-count-other": "Niederländische Gulden", + "symbol": "NLG" + }, + "NOK": { + "displayName": "Norwegische Krone", + "displayName-count-one": "Norwegische Krone", + "displayName-count-other": "Norwegische Kronen", + "symbol": "NOK", + "symbol-alt-narrow": "kr" + }, + "NPR": { + "displayName": "Nepalesische Rupie", + "displayName-count-one": "Nepalesische Rupie", + "displayName-count-other": "Nepalesische Rupien", + "symbol": "NPR", + "symbol-alt-narrow": "Rs" + }, + "NZD": { + "displayName": "Neuseeland-Dollar", + "displayName-count-one": "Neuseeland-Dollar", + "displayName-count-other": "Neuseeland-Dollar", + "symbol": "NZ$", + "symbol-alt-narrow": "$" + }, + "OMR": { + "displayName": "Omanischer Rial", + "displayName-count-one": "Omanischer Rial", + "displayName-count-other": "Omanische Rials", + "symbol": "OMR" + }, + "PAB": { + "displayName": "Panamaischer Balboa", + "displayName-count-one": "Panamaischer Balboa", + "displayName-count-other": "Panamaische Balboas", + "symbol": "PAB" + }, + "PEI": { + "displayName": "Peruanischer Inti", + "displayName-count-one": "Peruanische Inti", + "displayName-count-other": "Peruanische Inti", + "symbol": "PEI" + }, + "PEN": { + "displayName": "Peruanischer Sol", + "displayName-count-one": "Peruanischer Sol", + "displayName-count-other": "Peruanische Sol", + "symbol": "PEN" + }, + "PES": { + "displayName": "Peruanischer Sol (1863–1965)", + "displayName-count-one": "Peruanischer Sol (1863–1965)", + "displayName-count-other": "Peruanische Sol (1863–1965)", + "symbol": "PES" + }, + "PGK": { + "displayName": "Papua-Neuguineischer Kina", + "displayName-count-one": "Papua-Neuguineischer Kina", + "displayName-count-other": "Papua-Neuguineische Kina", + "symbol": "PGK" + }, + "PHP": { + "displayName": "Philippinischer Peso", + "displayName-count-one": "Philippinischer Peso", + "displayName-count-other": "Philippinische Pesos", + "symbol": "PHP", + "symbol-alt-narrow": "₱" + }, + "PKR": { + "displayName": "Pakistanische Rupie", + "displayName-count-one": "Pakistanische Rupie", + "displayName-count-other": "Pakistanische Rupien", + "symbol": "PKR", + "symbol-alt-narrow": "Rs" + }, + "PLN": { + "displayName": "Polnischer Złoty", + "displayName-count-one": "Polnischer Złoty", + "displayName-count-other": "Polnische Złoty", + "symbol": "PLN", + "symbol-alt-narrow": "zł" + }, + "PLZ": { + "displayName": "Polnischer Zloty (1950–1995)", + "displayName-count-one": "Polnischer Zloty (1950–1995)", + "displayName-count-other": "Polnische Zloty (1950–1995)", + "symbol": "PLZ" + }, + "PTE": { + "displayName": "Portugiesischer Escudo", + "displayName-count-one": "Portugiesische Escudo", + "displayName-count-other": "Portugiesische Escudo", + "symbol": "PTE" + }, + "PYG": { + "displayName": "Paraguayischer Guaraní", + "displayName-count-one": "Paraguayischer Guaraní", + "displayName-count-other": "Paraguayische Guaraníes", + "symbol": "PYG", + "symbol-alt-narrow": "₲" + }, + "QAR": { + "displayName": "Katar-Riyal", + "displayName-count-one": "Katar-Riyal", + "displayName-count-other": "Katar-Riyal", + "symbol": "QAR" + }, + "RHD": { + "displayName": "Rhodesischer Dollar", + "displayName-count-one": "Rhodesische Dollar", + "displayName-count-other": "Rhodesische Dollar", + "symbol": "RHD" + }, + "ROL": { + "displayName": "Rumänischer Leu (1952–2006)", + "displayName-count-one": "Rumänischer Leu (1952–2006)", + "displayName-count-other": "Rumänische Leu (1952–2006)", + "symbol": "ROL" + }, + "RON": { + "displayName": "Rumänischer Leu", + "displayName-count-one": "Rumänischer Leu", + "displayName-count-other": "Rumänische Leu", + "symbol": "RON", + "symbol-alt-narrow": "L" + }, + "RSD": { + "displayName": "Serbischer Dinar", + "displayName-count-one": "Serbischer Dinar", + "displayName-count-other": "Serbische Dinaren", + "symbol": "RSD" + }, + "RUB": { + "displayName": "Russischer Rubel", + "displayName-count-one": "Russischer Rubel", + "displayName-count-other": "Russische Rubel", + "symbol": "RUB", + "symbol-alt-narrow": "₽" + }, + "RUR": { + "displayName": "Russischer Rubel (1991–1998)", + "displayName-count-one": "Russischer Rubel (1991–1998)", + "displayName-count-other": "Russische Rubel (1991–1998)", + "symbol": "RUR", + "symbol-alt-narrow": "р." + }, + "RWF": { + "displayName": "Ruanda-Franc", + "displayName-count-one": "Ruanda-Franc", + "displayName-count-other": "Ruanda-Francs", + "symbol": "RWF", + "symbol-alt-narrow": "F.Rw" + }, + "SAR": { + "displayName": "Saudi-Rial", + "displayName-count-one": "Saudi-Rial", + "displayName-count-other": "Saudi-Rial", + "symbol": "SAR" + }, + "SBD": { + "displayName": "Salomonen-Dollar", + "displayName-count-one": "Salomonen-Dollar", + "displayName-count-other": "Salomonen-Dollar", + "symbol": "SBD", + "symbol-alt-narrow": "$" + }, + "SCR": { + "displayName": "Seychellen-Rupie", + "displayName-count-one": "Seychellen-Rupie", + "displayName-count-other": "Seychellen-Rupien", + "symbol": "SCR" + }, + "SDD": { + "displayName": "Sudanesischer Dinar (1992–2007)", + "displayName-count-one": "Sudanesischer Dinar (1992–2007)", + "displayName-count-other": "Sudanesische Dinar (1992–2007)", + "symbol": "SDD" + }, + "SDG": { + "displayName": "Sudanesisches Pfund", + "displayName-count-one": "Sudanesisches Pfund", + "displayName-count-other": "Sudanesische Pfund", + "symbol": "SDG" + }, + "SDP": { + "displayName": "Sudanesisches Pfund (1957–1998)", + "displayName-count-one": "Sudanesisches Pfund (1957–1998)", + "displayName-count-other": "Sudanesische Pfund (1957–1998)", + "symbol": "SDP" + }, + "SEK": { + "displayName": "Schwedische Krone", + "displayName-count-one": "Schwedische Krone", + "displayName-count-other": "Schwedische Kronen", + "symbol": "SEK", + "symbol-alt-narrow": "kr" + }, + "SGD": { + "displayName": "Singapur-Dollar", + "displayName-count-one": "Singapur-Dollar", + "displayName-count-other": "Singapur-Dollar", + "symbol": "SGD", + "symbol-alt-narrow": "$" + }, + "SHP": { + "displayName": "St. Helena-Pfund", + "displayName-count-one": "St. Helena-Pfund", + "displayName-count-other": "St. Helena-Pfund", + "symbol": "SHP", + "symbol-alt-narrow": "£" + }, + "SIT": { + "displayName": "Slowenischer Tolar", + "displayName-count-one": "Slowenischer Tolar", + "displayName-count-other": "Slowenische Tolar", + "symbol": "SIT" + }, + "SKK": { + "displayName": "Slowakische Krone", + "displayName-count-one": "Slowakische Kronen", + "displayName-count-other": "Slowakische Kronen", + "symbol": "SKK" + }, + "SLL": { + "displayName": "Sierra-leonischer Leone", + "displayName-count-one": "Sierra-leonischer Leone", + "displayName-count-other": "Sierra-leonische Leones", + "symbol": "SLL" + }, + "SOS": { + "displayName": "Somalia-Schilling", + "displayName-count-one": "Somalia-Schilling", + "displayName-count-other": "Somalia-Schilling", + "symbol": "SOS" + }, + "SRD": { + "displayName": "Suriname-Dollar", + "displayName-count-one": "Suriname-Dollar", + "displayName-count-other": "Suriname-Dollar", + "symbol": "SRD", + "symbol-alt-narrow": "$" + }, + "SRG": { + "displayName": "Suriname Gulden", + "displayName-count-one": "Suriname-Gulden", + "displayName-count-other": "Suriname-Gulden", + "symbol": "SRG" + }, + "SSP": { + "displayName": "Südsudanesisches Pfund", + "displayName-count-one": "Südsudanesisches Pfund", + "displayName-count-other": "Südsudanesische Pfund", + "symbol": "SSP", + "symbol-alt-narrow": "£" + }, + "STD": { + "displayName": "São-toméischer Dobra", + "displayName-count-one": "São-toméischer Dobra", + "displayName-count-other": "São-toméische Dobra", + "symbol": "STD", + "symbol-alt-narrow": "Db" + }, + "SUR": { + "displayName": "Sowjetischer Rubel", + "displayName-count-one": "Sowjetische Rubel", + "displayName-count-other": "Sowjetische Rubel", + "symbol": "SUR" + }, + "SVC": { + "displayName": "El Salvador Colon", + "displayName-count-one": "El Salvador-Colon", + "displayName-count-other": "El Salvador-Colon", + "symbol": "SVC" + }, + "SYP": { + "displayName": "Syrisches Pfund", + "displayName-count-one": "Syrisches Pfund", + "displayName-count-other": "Syrische Pfund", + "symbol": "SYP", + "symbol-alt-narrow": "SYP" + }, + "SZL": { + "displayName": "Swasiländischer Lilangeni", + "displayName-count-one": "Swasiländischer Lilangeni", + "displayName-count-other": "Swasiländische Emalangeni", + "symbol": "SZL" + }, + "THB": { + "displayName": "Thailändischer Baht", + "displayName-count-one": "Thailändischer Baht", + "displayName-count-other": "Thailändische Baht", + "symbol": "฿", + "symbol-alt-narrow": "฿" + }, + "TJR": { + "displayName": "Tadschikistan Rubel", + "displayName-count-one": "Tadschikistan-Rubel", + "displayName-count-other": "Tadschikistan-Rubel", + "symbol": "TJR" + }, + "TJS": { + "displayName": "Tadschikistan-Somoni", + "displayName-count-one": "Tadschikistan-Somoni", + "displayName-count-other": "Tadschikistan-Somoni", + "symbol": "TJS" + }, + "TMM": { + "displayName": "Turkmenistan-Manat (1993–2009)", + "displayName-count-one": "Turkmenistan-Manat (1993–2009)", + "displayName-count-other": "Turkmenistan-Manat (1993–2009)", + "symbol": "TMM" + }, + "TMT": { + "displayName": "Turkmenistan-Manat", + "displayName-count-one": "Turkmenistan-Manat", + "displayName-count-other": "Turkmenistan-Manat", + "symbol": "TMT" + }, + "TND": { + "displayName": "Tunesischer Dinar", + "displayName-count-one": "Tunesischer Dinar", + "displayName-count-other": "Tunesische Dinar", + "symbol": "TND" + }, + "TOP": { + "displayName": "Tongaischer Paʻanga", + "displayName-count-one": "Tongaischer Paʻanga", + "displayName-count-other": "Tongaische Paʻanga", + "symbol": "TOP", + "symbol-alt-narrow": "T$" + }, + "TPE": { + "displayName": "Timor-Escudo", + "displayName-count-one": "Timor-Escudo", + "displayName-count-other": "Timor-Escudo", + "symbol": "TPE" + }, + "TRL": { + "displayName": "Türkische Lira (1922–2005)", + "displayName-count-one": "Türkische Lira (1922–2005)", + "displayName-count-other": "Türkische Lira (1922–2005)", + "symbol": "TRL" + }, + "TRY": { + "displayName": "Türkische Lira", + "displayName-count-one": "Türkische Lira", + "displayName-count-other": "Türkische Lira", + "symbol": "TRY", + "symbol-alt-narrow": "₺", + "symbol-alt-variant": "TL" + }, + "TTD": { + "displayName": "Trinidad und Tobago-Dollar", + "displayName-count-one": "Trinidad und Tobago-Dollar", + "displayName-count-other": "Trinidad und Tobago-Dollar", + "symbol": "TTD", + "symbol-alt-narrow": "$" + }, + "TWD": { + "displayName": "Neuer Taiwan-Dollar", + "displayName-count-one": "Neuer Taiwan-Dollar", + "displayName-count-other": "Neue Taiwan-Dollar", + "symbol": "NT$", + "symbol-alt-narrow": "NT$" + }, + "TZS": { + "displayName": "Tansania-Schilling", + "displayName-count-one": "Tansania-Schilling", + "displayName-count-other": "Tansania-Schilling", + "symbol": "TZS" + }, + "UAH": { + "displayName": "Ukrainische Hrywnja", + "displayName-count-one": "Ukrainische Hrywnja", + "displayName-count-other": "Ukrainische Hrywen", + "symbol": "UAH", + "symbol-alt-narrow": "₴" + }, + "UAK": { + "displayName": "Ukrainischer Karbovanetz", + "displayName-count-one": "Ukrainische Karbovanetz", + "displayName-count-other": "Ukrainische Karbovanetz", + "symbol": "UAK" + }, + "UGS": { + "displayName": "Uganda-Schilling (1966–1987)", + "displayName-count-one": "Uganda-Schilling (1966–1987)", + "displayName-count-other": "Uganda-Schilling (1966–1987)", + "symbol": "UGS" + }, + "UGX": { + "displayName": "Uganda-Schilling", + "displayName-count-one": "Uganda-Schilling", + "displayName-count-other": "Uganda-Schilling", + "symbol": "UGX" + }, + "USD": { + "displayName": "US-Dollar", + "displayName-count-one": "US-Dollar", + "displayName-count-other": "US-Dollar", + "symbol": "$", + "symbol-alt-narrow": "$" + }, + "USN": { + "displayName": "US Dollar (Nächster Tag)", + "displayName-count-one": "US-Dollar (Nächster Tag)", + "displayName-count-other": "US-Dollar (Nächster Tag)", + "symbol": "USN" + }, + "USS": { + "displayName": "US Dollar (Gleicher Tag)", + "displayName-count-one": "US-Dollar (Gleicher Tag)", + "displayName-count-other": "US-Dollar (Gleicher Tag)", + "symbol": "USS" + }, + "UYI": { + "displayName": "Uruguayischer Peso (Indexierte Rechnungseinheiten)", + "displayName-count-one": "Uruguayischer Peso (Indexierte Rechnungseinheiten)", + "displayName-count-other": "Uruguayische Pesos (Indexierte Rechnungseinheiten)", + "symbol": "UYI" + }, + "UYP": { + "displayName": "Uruguayischer Peso (1975–1993)", + "displayName-count-one": "Uruguayischer Peso (1975–1993)", + "displayName-count-other": "Uruguayische Pesos (1975–1993)", + "symbol": "UYP" + }, + "UYU": { + "displayName": "Uruguayischer Peso", + "displayName-count-one": "Uruguayischer Peso", + "displayName-count-other": "Uruguayische Pesos", + "symbol": "UYU", + "symbol-alt-narrow": "$" + }, + "UZS": { + "displayName": "Usbekistan-Sum", + "displayName-count-one": "Usbekistan-Sum", + "displayName-count-other": "Usbekistan-Sum", + "symbol": "UZS" + }, + "VEB": { + "displayName": "Venezolanischer Bolívar (1871–2008)", + "displayName-count-one": "Venezolanischer Bolívar (1871–2008)", + "displayName-count-other": "Venezolanische Bolívares (1871–2008)", + "symbol": "VEB" + }, + "VEF": { + "displayName": "Venezolanischer Bolívar", + "displayName-count-one": "Venezolanischer Bolívar", + "displayName-count-other": "Venezolanische Bolívares", + "symbol": "VEF", + "symbol-alt-narrow": "Bs" + }, + "VND": { + "displayName": "Vietnamesischer Dong", + "displayName-count-one": "Vietnamesischer Dong", + "displayName-count-other": "Vietnamesische Dong", + "symbol": "₫", + "symbol-alt-narrow": "₫" + }, + "VNN": { + "displayName": "Vietnamesischer Dong(1978–1985)", + "displayName-count-one": "Vietnamesischer Dong(1978–1985)", + "displayName-count-other": "Vietnamesische Dong(1978–1985)", + "symbol": "VNN" + }, + "VUV": { + "displayName": "Vanuatu-Vatu", + "displayName-count-one": "Vanuatu-Vatu", + "displayName-count-other": "Vanuatu-Vatu", + "symbol": "VUV" + }, + "WST": { + "displayName": "Samoanischer Tala", + "displayName-count-one": "Samoanischer Tala", + "displayName-count-other": "Samoanische Tala", + "symbol": "WST" + }, + "XAF": { + "displayName": "CFA-Franc (BEAC)", + "displayName-count-one": "CFA-Franc (BEAC)", + "displayName-count-other": "CFA-Franc (BEAC)", + "symbol": "FCFA" + }, + "XAG": { + "displayName": "Unze Silber", + "displayName-count-one": "Unze Silber", + "displayName-count-other": "Unzen Silber", + "symbol": "XAG" + }, + "XAU": { + "displayName": "Unze Gold", + "displayName-count-one": "Unze Gold", + "displayName-count-other": "Unzen Gold", + "symbol": "XAU" + }, + "XBA": { + "displayName": "Europäische Rechnungseinheit", + "displayName-count-one": "Europäische Rechnungseinheiten", + "displayName-count-other": "Europäische Rechnungseinheiten", + "symbol": "XBA" + }, + "XBB": { + "displayName": "Europäische Währungseinheit (XBB)", + "displayName-count-one": "Europäische Währungseinheiten (XBB)", + "displayName-count-other": "Europäische Währungseinheiten (XBB)", + "symbol": "XBB" + }, + "XBC": { + "displayName": "Europäische Rechnungseinheit (XBC)", + "displayName-count-one": "Europäische Rechnungseinheiten (XBC)", + "displayName-count-other": "Europäische Rechnungseinheiten (XBC)", + "symbol": "XBC" + }, + "XBD": { + "displayName": "Europäische Rechnungseinheit (XBD)", + "displayName-count-one": "Europäische Rechnungseinheiten (XBD)", + "displayName-count-other": "Europäische Rechnungseinheiten (XBD)", + "symbol": "XBD" + }, + "XCD": { + "displayName": "Ostkaribischer Dollar", + "displayName-count-one": "Ostkaribischer Dollar", + "displayName-count-other": "Ostkaribische Dollar", + "symbol": "EC$", + "symbol-alt-narrow": "$" + }, + "XDR": { + "displayName": "Sonderziehungsrechte", + "displayName-count-one": "Sonderziehungsrechte", + "displayName-count-other": "Sonderziehungsrechte", + "symbol": "XDR" + }, + "XEU": { + "displayName": "Europäische Währungseinheit (XEU)", + "displayName-count-one": "Europäische Währungseinheiten (XEU)", + "displayName-count-other": "Europäische Währungseinheiten (XEU)", + "symbol": "XEU" + }, + "XFO": { + "displayName": "Französischer Gold-Franc", + "displayName-count-one": "Französische Gold-Franc", + "displayName-count-other": "Französische Gold-Franc", + "symbol": "XFO" + }, + "XFU": { + "displayName": "Französischer UIC-Franc", + "displayName-count-one": "Französische UIC-Franc", + "displayName-count-other": "Französische UIC-Franc", + "symbol": "XFU" + }, + "XOF": { + "displayName": "CFA-Franc (BCEAO)", + "displayName-count-one": "CFA-Franc (BCEAO)", + "displayName-count-other": "CFA-Francs (BCEAO)", + "symbol": "CFA" + }, + "XPD": { + "displayName": "Unze Palladium", + "displayName-count-one": "Unze Palladium", + "displayName-count-other": "Unzen Palladium", + "symbol": "XPD" + }, + "XPF": { + "displayName": "CFP-Franc", + "displayName-count-one": "CFP-Franc", + "displayName-count-other": "CFP-Franc", + "symbol": "CFPF" + }, + "XPT": { + "displayName": "Unze Platin", + "displayName-count-one": "Unze Platin", + "displayName-count-other": "Unzen Platin", + "symbol": "XPT" + }, + "XRE": { + "displayName": "RINET Funds", + "displayName-count-one": "RINET Funds", + "displayName-count-other": "RINET Funds", + "symbol": "XRE" + }, + "XSU": { + "displayName": "SUCRE", + "displayName-count-one": "SUCRE", + "displayName-count-other": "SUCRE", + "symbol": "XSU" + }, + "XTS": { + "displayName": "Testwährung", + "displayName-count-one": "Testwährung", + "displayName-count-other": "Testwährung", + "symbol": "XTS" + }, + "XUA": { + "displayName": "Rechnungseinheit der AfEB", + "displayName-count-one": "Rechnungseinheit der AfEB", + "displayName-count-other": "Rechnungseinheiten der AfEB", + "symbol": "XUA" + }, + "XXX": { + "displayName": "Unbekannte Währung", + "displayName-count-one": "(unbekannte Währung)", + "displayName-count-other": "(unbekannte Währung)", + "symbol": "XXX" + }, + "YDD": { + "displayName": "Jemen-Dinar", + "displayName-count-one": "Jemen-Dinar", + "displayName-count-other": "Jemen-Dinar", + "symbol": "YDD" + }, + "YER": { + "displayName": "Jemen-Rial", + "displayName-count-one": "Jemen-Rial", + "displayName-count-other": "Jemen-Rial", + "symbol": "YER" + }, + "YUD": { + "displayName": "Jugoslawischer Dinar (1966–1990)", + "displayName-count-one": "Jugoslawischer Dinar (1966–1990)", + "displayName-count-other": "Jugoslawische Dinar (1966–1990)", + "symbol": "YUD" + }, + "YUM": { + "displayName": "Jugoslawischer Neuer Dinar (1994–2002)", + "displayName-count-one": "Jugoslawischer Neuer Dinar (1994–2002)", + "displayName-count-other": "Jugoslawische Neue Dinar (1994–2002)", + "symbol": "YUM" + }, + "YUN": { + "displayName": "Jugoslawischer Dinar (konvertibel)", + "displayName-count-one": "Jugoslawische Dinar (konvertibel)", + "displayName-count-other": "Jugoslawische Dinar (konvertibel)", + "symbol": "YUN" + }, + "YUR": { + "displayName": "Jugoslawischer reformierter Dinar (1992–1993)", + "displayName-count-one": "Jugoslawischer reformierter Dinar (1992–1993)", + "displayName-count-other": "Jugoslawische reformierte Dinar (1992–1993)", + "symbol": "YUR" + }, + "ZAL": { + "displayName": "Südafrikanischer Rand (Finanz)", + "displayName-count-one": "Südafrikanischer Rand (Finanz)", + "displayName-count-other": "Südafrikanischer Rand (Finanz)", + "symbol": "ZAL" + }, + "ZAR": { + "displayName": "Südafrikanischer Rand", + "displayName-count-one": "Südafrikanischer Rand", + "displayName-count-other": "Südafrikanische Rand", + "symbol": "ZAR", + "symbol-alt-narrow": "R" + }, + "ZMK": { + "displayName": "Kwacha (1968–2012)", + "displayName-count-one": "Kwacha (1968–2012)", + "displayName-count-other": "Kwacha (1968–2012)", + "symbol": "ZMK" + }, + "ZMW": { + "displayName": "Kwacha", + "displayName-count-one": "Kwacha", + "displayName-count-other": "Kwacha", + "symbol": "ZMW", + "symbol-alt-narrow": "K" + }, + "ZRN": { + "displayName": "Zaire-Neuer Zaïre (1993–1998)", + "displayName-count-one": "Zaire-Neuer Zaïre (1993–1998)", + "displayName-count-other": "Zaire-Neue Zaïre (1993–1998)", + "symbol": "ZRN" + }, + "ZRZ": { + "displayName": "Zaire-Zaïre (1971–1993)", + "displayName-count-one": "Zaire-Zaïre (1971–1993)", + "displayName-count-other": "Zaire-Zaïre (1971–1993)", + "symbol": "ZRZ" + }, + "ZWD": { + "displayName": "Simbabwe-Dollar (1980–2008)", + "displayName-count-one": "Simbabwe-Dollar (1980–2008)", + "displayName-count-other": "Simbabwe-Dollar (1980–2008)", + "symbol": "ZWD" + }, + "ZWL": { + "displayName": "Simbabwe-Dollar (2009)", + "displayName-count-one": "Simbabwe-Dollar (2009)", + "displayName-count-other": "Simbabwe-Dollar (2009)", + "symbol": "ZWL" + }, + "ZWR": { + "displayName": "Simbabwe-Dollar (2008)", + "displayName-count-one": "Simbabwe-Dollar (2008)", + "displayName-count-other": "Simbabwe-Dollar (2008)", + "symbol": "ZWR" + } + } + } + } + } +} diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/currencyData.json b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/currencyData.json new file mode 100644 index 0000000000..a7b54fa802 --- /dev/null +++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/currencyData.json @@ -0,0 +1,3509 @@ +{ + "supplemental": { + "version": { + "_number": "$Revision: 13254 $", + "_unicodeVersion": "9.0.0", + "_cldrVersion": "31" + }, + "currencyData": { + "fractions": { + "ADP": { + "_rounding": "0", + "_digits": "0" + }, + "AFN": { + "_rounding": "0", + "_digits": "0" + }, + "ALL": { + "_rounding": "0", + "_digits": "0" + }, + "AMD": { + "_rounding": "0", + "_digits": "0" + }, + "BHD": { + "_rounding": "0", + "_digits": "3" + }, + "BIF": { + "_rounding": "0", + "_digits": "0" + }, + "BYN": { + "_rounding": "0", + "_digits": "2" + }, + "BYR": { + "_rounding": "0", + "_digits": "0" + }, + "CAD": { + "_rounding": "0", + "_digits": "2", + "_cashRounding": "5" + }, + "CHF": { + "_rounding": "0", + "_digits": "2", + "_cashRounding": "5" + }, + "CLF": { + "_rounding": "0", + "_digits": "4" + }, + "CLP": { + "_rounding": "0", + "_digits": "0" + }, + "COP": { + "_rounding": "0", + "_digits": "0" + }, + "CRC": { + "_rounding": "0", + "_digits": "2", + "_cashRounding": "0", + "_cashDigits": "0" + }, + "CZK": { + "_rounding": "0", + "_digits": "2", + "_cashRounding": "0", + "_cashDigits": "0" + }, + "DEFAULT": { + "_rounding": "0", + "_digits": "2" + }, + "DJF": { + "_rounding": "0", + "_digits": "0" + }, + "ESP": { + "_rounding": "0", + "_digits": "0" + }, + "GNF": { + "_rounding": "0", + "_digits": "0" + }, + "GYD": { + "_rounding": "0", + "_digits": "0" + }, + "HUF": { + "_rounding": "0", + "_digits": "2", + "_cashRounding": "0", + "_cashDigits": "0" + }, + "IDR": { + "_rounding": "0", + "_digits": "0" + }, + "IQD": { + "_rounding": "0", + "_digits": "0" + }, + "IRR": { + "_rounding": "0", + "_digits": "0" + }, + "ISK": { + "_rounding": "0", + "_digits": "0" + }, + "ITL": { + "_rounding": "0", + "_digits": "0" + }, + "JOD": { + "_rounding": "0", + "_digits": "3" + }, + "JPY": { + "_rounding": "0", + "_digits": "0" + }, + "KMF": { + "_rounding": "0", + "_digits": "0" + }, + "KPW": { + "_rounding": "0", + "_digits": "0" + }, + "KRW": { + "_rounding": "0", + "_digits": "0" + }, + "KWD": { + "_rounding": "0", + "_digits": "3" + }, + "LAK": { + "_rounding": "0", + "_digits": "0" + }, + "LBP": { + "_rounding": "0", + "_digits": "0" + }, + "LUF": { + "_rounding": "0", + "_digits": "0" + }, + "LYD": { + "_rounding": "0", + "_digits": "3" + }, + "MGA": { + "_rounding": "0", + "_digits": "0" + }, + "MGF": { + "_rounding": "0", + "_digits": "0" + }, + "MMK": { + "_rounding": "0", + "_digits": "0" + }, + "MNT": { + "_rounding": "0", + "_digits": "0" + }, + "MRO": { + "_rounding": "0", + "_digits": "0" + }, + "MUR": { + "_rounding": "0", + "_digits": "0" + }, + "OMR": { + "_rounding": "0", + "_digits": "3" + }, + "PKR": { + "_rounding": "0", + "_digits": "0" + }, + "PYG": { + "_rounding": "0", + "_digits": "0" + }, + "RSD": { + "_rounding": "0", + "_digits": "0" + }, + "RWF": { + "_rounding": "0", + "_digits": "0" + }, + "SLL": { + "_rounding": "0", + "_digits": "0" + }, + "SOS": { + "_rounding": "0", + "_digits": "0" + }, + "STD": { + "_rounding": "0", + "_digits": "0" + }, + "SYP": { + "_rounding": "0", + "_digits": "0" + }, + "TMM": { + "_rounding": "0", + "_digits": "0" + }, + "TND": { + "_rounding": "0", + "_digits": "3" + }, + "TRL": { + "_rounding": "0", + "_digits": "0" + }, + "TWD": { + "_rounding": "0", + "_digits": "2", + "_cashRounding": "0", + "_cashDigits": "0" + }, + "TZS": { + "_rounding": "0", + "_digits": "0" + }, + "UGX": { + "_rounding": "0", + "_digits": "0" + }, + "UYI": { + "_rounding": "0", + "_digits": "0" + }, + "UZS": { + "_rounding": "0", + "_digits": "0" + }, + "VND": { + "_rounding": "0", + "_digits": "0" + }, + "VUV": { + "_rounding": "0", + "_digits": "0" + }, + "XAF": { + "_rounding": "0", + "_digits": "0" + }, + "XOF": { + "_rounding": "0", + "_digits": "0" + }, + "XPF": { + "_rounding": "0", + "_digits": "0" + }, + "YER": { + "_rounding": "0", + "_digits": "0" + }, + "ZMK": { + "_rounding": "0", + "_digits": "0" + }, + "ZWD": { + "_rounding": "0", + "_digits": "0" + } + }, + "region": { + "AC": [ + { + "SHP": { + "_from": "1976-01-01" + } + } + ], + "AD": [ + { + "ESP": { + "_from": "1873-01-01", + "_to": "2002-02-28" + } + }, + { + "ADP": { + "_from": "1936-01-01", + "_to": "2001-12-31" + } + }, + { + "FRF": { + "_from": "1960-01-01", + "_to": "2002-02-17" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "AE": [ + { + "AED": { + "_from": "1973-05-19" + } + } + ], + "AF": [ + { + "AFA": { + "_from": "1927-03-14", + "_to": "2002-12-31" + } + }, + { + "AFN": { + "_from": "2002-10-07" + } + } + ], + "AG": [ + { + "XCD": { + "_from": "1965-10-06" + } + } + ], + "AI": [ + { + "XCD": { + "_from": "1965-10-06" + } + } + ], + "AL": [ + { + "ALK": { + "_from": "1946-11-01", + "_to": "1965-08-16" + } + }, + { + "ALL": { + "_from": "1965-08-16" + } + } + ], + "AM": [ + { + "SUR": { + "_from": "1961-01-01", + "_to": "1991-12-25" + } + }, + { + "RUR": { + "_from": "1991-12-25", + "_to": "1993-11-22" + } + }, + { + "AMD": { + "_from": "1993-11-22" + } + } + ], + "AO": [ + { + "AOK": { + "_from": "1977-01-08", + "_to": "1991-03-01" + } + }, + { + "AON": { + "_from": "1990-09-25", + "_to": "2000-02-01" + } + }, + { + "AOR": { + "_from": "1995-07-01", + "_to": "2000-02-01" + } + }, + { + "AOA": { + "_from": "1999-12-13" + } + } + ], + "AQ": [ + { + "XXX": { + "_tender": "false" + } + } + ], + "AR": [ + { + "ARM": { + "_from": "1881-11-05", + "_to": "1970-01-01" + } + }, + { + "ARL": { + "_from": "1970-01-01", + "_to": "1983-06-01" + } + }, + { + "ARP": { + "_from": "1983-06-01", + "_to": "1985-06-14" + } + }, + { + "ARA": { + "_from": "1985-06-14", + "_to": "1992-01-01" + } + }, + { + "ARS": { + "_from": "1992-01-01" + } + } + ], + "AS": [ + { + "USD": { + "_from": "1904-07-16" + } + } + ], + "AT": [ + { + "ATS": { + "_from": "1947-12-04", + "_to": "2002-02-28" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "AU": [ + { + "AUD": { + "_from": "1966-02-14" + } + } + ], + "AW": [ + { + "ANG": { + "_from": "1940-05-10", + "_to": "1986-01-01" + } + }, + { + "AWG": { + "_from": "1986-01-01" + } + } + ], + "AX": [ + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "AZ": [ + { + "SUR": { + "_from": "1961-01-01", + "_to": "1991-12-25" + } + }, + { + "RUR": { + "_from": "1991-12-25", + "_to": "1994-01-01" + } + }, + { + "AZM": { + "_from": "1993-11-22", + "_to": "2006-12-31" + } + }, + { + "AZN": { + "_from": "2006-01-01" + } + } + ], + "BA": [ + { + "YUD": { + "_from": "1966-01-01", + "_to": "1990-01-01" + } + }, + { + "YUN": { + "_from": "1990-01-01", + "_to": "1992-07-01" + } + }, + { + "YUR": { + "_from": "1992-07-01", + "_to": "1993-10-01" + } + }, + { + "BAD": { + "_from": "1992-07-01", + "_to": "1994-08-15" + } + }, + { + "BAN": { + "_from": "1994-08-15", + "_to": "1997-07-01" + } + }, + { + "BAM": { + "_from": "1995-01-01" + } + } + ], + "BB": [ + { + "XCD": { + "_from": "1965-10-06", + "_to": "1973-12-03" + } + }, + { + "BBD": { + "_from": "1973-12-03" + } + } + ], + "BD": [ + { + "INR": { + "_from": "1835-08-17", + "_to": "1948-04-01" + } + }, + { + "PKR": { + "_from": "1948-04-01", + "_to": "1972-01-01" + } + }, + { + "BDT": { + "_from": "1972-01-01" + } + } + ], + "BE": [ + { + "NLG": { + "_from": "1816-12-15", + "_to": "1831-02-07" + } + }, + { + "BEF": { + "_from": "1831-02-07", + "_to": "2002-02-28" + } + }, + { + "BEC": { + "_tender": "false", + "_from": "1970-01-01", + "_to": "1990-03-05" + } + }, + { + "BEL": { + "_tender": "false", + "_from": "1970-01-01", + "_to": "1990-03-05" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "BF": [ + { + "XOF": { + "_from": "1984-08-04" + } + } + ], + "BG": [ + { + "BGO": { + "_from": "1879-07-08", + "_to": "1952-05-12" + } + }, + { + "BGM": { + "_from": "1952-05-12", + "_to": "1962-01-01" + } + }, + { + "BGL": { + "_from": "1962-01-01", + "_to": "1999-07-05" + } + }, + { + "BGN": { + "_from": "1999-07-05" + } + } + ], + "BH": [ + { + "BHD": { + "_from": "1965-10-16" + } + } + ], + "BI": [ + { + "BIF": { + "_from": "1964-05-19" + } + } + ], + "BJ": [ + { + "XOF": { + "_from": "1975-11-30" + } + } + ], + "BL": [ + { + "FRF": { + "_from": "1960-01-01", + "_to": "2002-02-17" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "BM": [ + { + "BMD": { + "_from": "1970-02-06" + } + } + ], + "BN": [ + { + "MYR": { + "_from": "1963-09-16", + "_to": "1967-06-12" + } + }, + { + "BND": { + "_from": "1967-06-12" + } + } + ], + "BO": [ + { + "BOV": { + "_tender": "false" + } + }, + { + "BOL": { + "_from": "1863-06-23", + "_to": "1963-01-01" + } + }, + { + "BOP": { + "_from": "1963-01-01", + "_to": "1986-12-31" + } + }, + { + "BOB": { + "_from": "1987-01-01" + } + } + ], + "BQ": [ + { + "ANG": { + "_from": "2010-10-10", + "_to": "2011-01-01" + } + }, + { + "USD": { + "_from": "2011-01-01" + } + } + ], + "BR": [ + { + "BRZ": { + "_from": "1942-11-01", + "_to": "1967-02-13" + } + }, + { + "BRB": { + "_from": "1967-02-13", + "_to": "1986-02-28" + } + }, + { + "BRC": { + "_from": "1986-02-28", + "_to": "1989-01-15" + } + }, + { + "BRN": { + "_from": "1989-01-15", + "_to": "1990-03-16" + } + }, + { + "BRE": { + "_from": "1990-03-16", + "_to": "1993-08-01" + } + }, + { + "BRR": { + "_from": "1993-08-01", + "_to": "1994-07-01" + } + }, + { + "BRL": { + "_from": "1994-07-01" + } + } + ], + "BS": [ + { + "BSD": { + "_from": "1966-05-25" + } + } + ], + "BT": [ + { + "INR": { + "_from": "1907-01-01" + } + }, + { + "BTN": { + "_from": "1974-04-16" + } + } + ], + "BU": [ + { + "BUK": { + "_from": "1952-07-01", + "_to": "1989-06-18" + } + } + ], + "BV": [ + { + "NOK": { + "_from": "1905-06-07" + } + } + ], + "BW": [ + { + "ZAR": { + "_from": "1961-02-14", + "_to": "1976-08-23" + } + }, + { + "BWP": { + "_from": "1976-08-23" + } + } + ], + "BY": [ + { + "SUR": { + "_from": "1961-01-01", + "_to": "1991-12-25" + } + }, + { + "RUR": { + "_from": "1991-12-25", + "_to": "1994-11-08" + } + }, + { + "BYB": { + "_from": "1994-08-01", + "_to": "2000-12-31" + } + }, + { + "BYR": { + "_from": "2000-01-01", + "_to": "2017-01-01" + } + }, + { + "BYN": { + "_from": "2016-07-01" + } + } + ], + "BZ": [ + { + "BZD": { + "_from": "1974-01-01" + } + } + ], + "CA": [ + { + "CAD": { + "_from": "1858-01-01" + } + } + ], + "CC": [ + { + "AUD": { + "_from": "1966-02-14" + } + } + ], + "CD": [ + { + "ZRZ": { + "_from": "1971-10-27", + "_to": "1993-11-01" + } + }, + { + "ZRN": { + "_from": "1993-11-01", + "_to": "1998-07-01" + } + }, + { + "CDF": { + "_from": "1998-07-01" + } + } + ], + "CF": [ + { + "XAF": { + "_from": "1993-01-01" + } + } + ], + "CG": [ + { + "XAF": { + "_from": "1993-01-01" + } + } + ], + "CH": [ + { + "CHE": { + "_tender": "false" + } + }, + { + "CHW": { + "_tender": "false" + } + }, + { + "CHF": { + "_from": "1799-03-17" + } + } + ], + "CI": [ + { + "XOF": { + "_from": "1958-12-04" + } + } + ], + "CK": [ + { + "NZD": { + "_from": "1967-07-10" + } + } + ], + "CL": [ + { + "CLF": { + "_tender": "false" + } + }, + { + "CLE": { + "_from": "1960-01-01", + "_to": "1975-09-29" + } + }, + { + "CLP": { + "_from": "1975-09-29" + } + } + ], + "CM": [ + { + "XAF": { + "_from": "1973-04-01" + } + } + ], + "CN": [ + { + "CNY": { + "_from": "1953-03-01" + } + }, + { + "CNX": { + "_tender": "false", + "_from": "1979-01-01", + "_to": "1998-12-31" + } + } + ], + "CO": [ + { + "COU": { + "_tender": "false" + } + }, + { + "COP": { + "_from": "1905-01-01" + } + } + ], + "CP": [ + { + "XXX": { + "_tender": "false" + } + } + ], + "CR": [ + { + "CRC": { + "_from": "1896-10-26" + } + } + ], + "CS": [ + { + "YUM": { + "_from": "1994-01-24", + "_to": "2002-05-15" + } + }, + { + "CSD": { + "_from": "2002-05-15", + "_to": "2006-06-03" + } + }, + { + "EUR": { + "_from": "2003-02-04", + "_to": "2006-06-03" + } + } + ], + "CU": [ + { + "CUP": { + "_from": "1859-01-01" + } + }, + { + "USD": { + "_from": "1899-01-01", + "_to": "1959-01-01" + } + }, + { + "CUC": { + "_from": "1994-01-01" + } + } + ], + "CV": [ + { + "PTE": { + "_from": "1911-05-22", + "_to": "1975-07-05" + } + }, + { + "CVE": { + "_from": "1914-01-01" + } + } + ], + "CW": [ + { + "ANG": { + "_from": "2010-10-10" + } + } + ], + "CX": [ + { + "AUD": { + "_from": "1966-02-14" + } + } + ], + "CY": [ + { + "CYP": { + "_from": "1914-09-10", + "_to": "2008-01-31" + } + }, + { + "EUR": { + "_from": "2008-01-01" + } + } + ], + "CZ": [ + { + "CSK": { + "_from": "1953-06-01", + "_to": "1993-03-01" + } + }, + { + "CZK": { + "_from": "1993-01-01" + } + } + ], + "DD": [ + { + "DDM": { + "_from": "1948-07-20", + "_to": "1990-10-02" + } + } + ], + "DE": [ + { + "DEM": { + "_from": "1948-06-20", + "_to": "2002-02-28" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "DG": [ + { + "USD": { + "_from": "1965-11-08" + } + } + ], + "DJ": [ + { + "DJF": { + "_from": "1977-06-27" + } + } + ], + "DK": [ + { + "DKK": { + "_from": "1873-05-27" + } + } + ], + "DM": [ + { + "XCD": { + "_from": "1965-10-06" + } + } + ], + "DO": [ + { + "USD": { + "_from": "1905-06-21", + "_to": "1947-10-01" + } + }, + { + "DOP": { + "_from": "1947-10-01" + } + } + ], + "DZ": [ + { + "DZD": { + "_from": "1964-04-01" + } + } + ], + "EA": [ + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "EC": [ + { + "ECS": { + "_from": "1884-04-01", + "_to": "2000-10-02" + } + }, + { + "ECV": { + "_tender": "false", + "_from": "1993-05-23", + "_to": "2000-01-09" + } + }, + { + "USD": { + "_from": "2000-10-02" + } + } + ], + "EE": [ + { + "SUR": { + "_from": "1961-01-01", + "_to": "1992-06-20" + } + }, + { + "EEK": { + "_from": "1992-06-21", + "_to": "2010-12-31" + } + }, + { + "EUR": { + "_from": "2011-01-01" + } + } + ], + "EG": [ + { + "EGP": { + "_from": "1885-11-14" + } + } + ], + "EH": [ + { + "MAD": { + "_from": "1976-02-26" + } + } + ], + "ER": [ + { + "ETB": { + "_from": "1993-05-24", + "_to": "1997-11-08" + } + }, + { + "ERN": { + "_from": "1997-11-08" + } + } + ], + "ES": [ + { + "ESP": { + "_from": "1868-10-19", + "_to": "2002-02-28" + } + }, + { + "ESB": { + "_tender": "false", + "_from": "1975-01-01", + "_to": "1994-12-31" + } + }, + { + "ESA": { + "_tender": "false", + "_from": "1978-01-01", + "_to": "1981-12-31" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "ET": [ + { + "ETB": { + "_from": "1976-09-15" + } + } + ], + "EU": [ + { + "XEU": { + "_tender": "false", + "_from": "1979-01-01", + "_to": "1998-12-31" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "FI": [ + { + "FIM": { + "_from": "1963-01-01", + "_to": "2002-02-28" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "FJ": [ + { + "FJD": { + "_from": "1969-01-13" + } + } + ], + "FK": [ + { + "FKP": { + "_from": "1901-01-01" + } + } + ], + "FM": [ + { + "JPY": { + "_from": "1914-10-03", + "_to": "1944-01-01" + } + }, + { + "USD": { + "_from": "1944-01-01" + } + } + ], + "FO": [ + { + "DKK": { + "_from": "1948-01-01" + } + } + ], + "FR": [ + { + "FRF": { + "_from": "1960-01-01", + "_to": "2002-02-17" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "GA": [ + { + "XAF": { + "_from": "1993-01-01" + } + } + ], + "GB": [ + { + "GBP": { + "_from": "1694-07-27" + } + } + ], + "GD": [ + { + "XCD": { + "_from": "1967-02-27" + } + } + ], + "GE": [ + { + "SUR": { + "_from": "1961-01-01", + "_to": "1991-12-25" + } + }, + { + "RUR": { + "_from": "1991-12-25", + "_to": "1993-06-11" + } + }, + { + "GEK": { + "_from": "1993-04-05", + "_to": "1995-09-25" + } + }, + { + "GEL": { + "_from": "1995-09-23" + } + } + ], + "GF": [ + { + "FRF": { + "_from": "1960-01-01", + "_to": "2002-02-17" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "GG": [ + { + "GBP": { + "_from": "1830-01-01" + } + } + ], + "GH": [ + { + "GHC": { + "_from": "1979-03-09", + "_to": "2007-12-31" + } + }, + { + "GHS": { + "_from": "2007-07-03" + } + } + ], + "GI": [ + { + "GIP": { + "_from": "1713-01-01" + } + } + ], + "GL": [ + { + "DKK": { + "_from": "1873-05-27" + } + } + ], + "GM": [ + { + "GMD": { + "_from": "1971-07-01" + } + } + ], + "GN": [ + { + "GNS": { + "_from": "1972-10-02", + "_to": "1986-01-06" + } + }, + { + "GNF": { + "_from": "1986-01-06" + } + } + ], + "GP": [ + { + "FRF": { + "_from": "1960-01-01", + "_to": "2002-02-17" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "GQ": [ + { + "GQE": { + "_from": "1975-07-07", + "_to": "1986-06-01" + } + }, + { + "XAF": { + "_from": "1993-01-01" + } + } + ], + "GR": [ + { + "GRD": { + "_from": "1954-05-01", + "_to": "2002-02-28" + } + }, + { + "EUR": { + "_from": "2001-01-01" + } + } + ], + "GS": [ + { + "GBP": { + "_from": "1908-01-01" + } + } + ], + "GT": [ + { + "GTQ": { + "_from": "1925-05-27" + } + } + ], + "GU": [ + { + "USD": { + "_from": "1944-08-21" + } + } + ], + "GW": [ + { + "GWE": { + "_from": "1914-01-01", + "_to": "1976-02-28" + } + }, + { + "GWP": { + "_from": "1976-02-28", + "_to": "1997-03-31" + } + }, + { + "XOF": { + "_from": "1997-03-31" + } + } + ], + "GY": [ + { + "GYD": { + "_from": "1966-05-26" + } + } + ], + "HK": [ + { + "HKD": { + "_from": "1895-02-02" + } + } + ], + "HM": [ + { + "AUD": { + "_from": "1967-02-16" + } + } + ], + "HN": [ + { + "HNL": { + "_from": "1926-04-03" + } + } + ], + "HR": [ + { + "YUD": { + "_from": "1966-01-01", + "_to": "1990-01-01" + } + }, + { + "YUN": { + "_from": "1990-01-01", + "_to": "1991-12-23" + } + }, + { + "HRD": { + "_from": "1991-12-23", + "_to": "1995-01-01" + } + }, + { + "HRK": { + "_from": "1994-05-30" + } + } + ], + "HT": [ + { + "HTG": { + "_from": "1872-08-26" + } + }, + { + "USD": { + "_from": "1915-01-01" + } + } + ], + "HU": [ + { + "HUF": { + "_from": "1946-07-23" + } + } + ], + "IC": [ + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "ID": [ + { + "IDR": { + "_from": "1965-12-13" + } + } + ], + "IE": [ + { + "GBP": { + "_from": "1800-01-01", + "_to": "1922-01-01" + } + }, + { + "IEP": { + "_from": "1922-01-01", + "_to": "2002-02-09" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "IL": [ + { + "ILP": { + "_from": "1948-08-16", + "_to": "1980-02-22" + } + }, + { + "ILR": { + "_from": "1980-02-22", + "_to": "1985-09-04" + } + }, + { + "ILS": { + "_from": "1985-09-04" + } + } + ], + "IM": [ + { + "GBP": { + "_from": "1840-01-03" + } + } + ], + "IN": [ + { + "INR": { + "_from": "1835-08-17" + } + } + ], + "IO": [ + { + "USD": { + "_from": "1965-11-08" + } + } + ], + "IQ": [ + { + "EGP": { + "_from": "1920-11-11", + "_to": "1931-04-19" + } + }, + { + "INR": { + "_from": "1920-11-11", + "_to": "1931-04-19" + } + }, + { + "IQD": { + "_from": "1931-04-19" + } + } + ], + "IR": [ + { + "IRR": { + "_from": "1932-05-13" + } + } + ], + "IS": [ + { + "DKK": { + "_from": "1873-05-27", + "_to": "1918-12-01" + } + }, + { + "ISJ": { + "_from": "1918-12-01", + "_to": "1981-01-01" + } + }, + { + "ISK": { + "_from": "1981-01-01" + } + } + ], + "IT": [ + { + "ITL": { + "_from": "1862-08-24", + "_to": "2002-02-28" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "JE": [ + { + "GBP": { + "_from": "1837-01-01" + } + } + ], + "JM": [ + { + "JMD": { + "_from": "1969-09-08" + } + } + ], + "JO": [ + { + "JOD": { + "_from": "1950-07-01" + } + } + ], + "JP": [ + { + "JPY": { + "_from": "1871-06-01" + } + } + ], + "KE": [ + { + "KES": { + "_from": "1966-09-14" + } + } + ], + "KG": [ + { + "SUR": { + "_from": "1961-01-01", + "_to": "1991-12-25" + } + }, + { + "RUR": { + "_from": "1991-12-25", + "_to": "1993-05-10" + } + }, + { + "KGS": { + "_from": "1993-05-10" + } + } + ], + "KH": [ + { + "KHR": { + "_from": "1980-03-20" + } + } + ], + "KI": [ + { + "AUD": { + "_from": "1966-02-14" + } + } + ], + "KM": [ + { + "KMF": { + "_from": "1975-07-06" + } + } + ], + "KN": [ + { + "XCD": { + "_from": "1965-10-06" + } + } + ], + "KP": [ + { + "KPW": { + "_from": "1959-04-17" + } + } + ], + "KR": [ + { + "KRO": { + "_from": "1945-08-15", + "_to": "1953-02-15" + } + }, + { + "KRH": { + "_from": "1953-02-15", + "_to": "1962-06-10" + } + }, + { + "KRW": { + "_from": "1962-06-10" + } + } + ], + "KW": [ + { + "KWD": { + "_from": "1961-04-01" + } + } + ], + "KY": [ + { + "JMD": { + "_from": "1969-09-08", + "_to": "1971-01-01" + } + }, + { + "KYD": { + "_from": "1971-01-01" + } + } + ], + "KZ": [ + { + "KZT": { + "_from": "1993-11-05" + } + } + ], + "LA": [ + { + "LAK": { + "_from": "1979-12-10" + } + } + ], + "LB": [ + { + "LBP": { + "_from": "1948-02-02" + } + } + ], + "LC": [ + { + "XCD": { + "_from": "1965-10-06" + } + } + ], + "LI": [ + { + "CHF": { + "_from": "1921-02-01" + } + } + ], + "LK": [ + { + "LKR": { + "_from": "1978-05-22" + } + } + ], + "LR": [ + { + "LRD": { + "_from": "1944-01-01" + } + } + ], + "LS": [ + { + "ZAR": { + "_from": "1961-02-14" + } + }, + { + "LSL": { + "_from": "1980-01-22" + } + } + ], + "LT": [ + { + "SUR": { + "_from": "1961-01-01", + "_to": "1992-10-01" + } + }, + { + "LTT": { + "_from": "1992-10-01", + "_to": "1993-06-25" + } + }, + { + "LTL": { + "_from": "1993-06-25", + "_to": "2014-12-31" + } + }, + { + "EUR": { + "_from": "2015-01-01" + } + } + ], + "LU": [ + { + "LUF": { + "_from": "1944-09-04", + "_to": "2002-02-28" + } + }, + { + "LUC": { + "_tender": "false", + "_from": "1970-01-01", + "_to": "1990-03-05" + } + }, + { + "LUL": { + "_tender": "false", + "_from": "1970-01-01", + "_to": "1990-03-05" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "LV": [ + { + "SUR": { + "_from": "1961-01-01", + "_to": "1992-07-20" + } + }, + { + "LVR": { + "_from": "1992-05-07", + "_to": "1993-10-17" + } + }, + { + "LVL": { + "_from": "1993-06-28", + "_to": "2013-12-31" + } + }, + { + "EUR": { + "_from": "2014-01-01" + } + } + ], + "LY": [ + { + "LYD": { + "_from": "1971-09-01" + } + } + ], + "MA": [ + { + "MAF": { + "_from": "1881-01-01", + "_to": "1959-10-17" + } + }, + { + "MAD": { + "_from": "1959-10-17" + } + } + ], + "MC": [ + { + "FRF": { + "_from": "1960-01-01", + "_to": "2002-02-17" + } + }, + { + "MCF": { + "_from": "1960-01-01", + "_to": "2002-02-17" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "MD": [ + { + "MDC": { + "_from": "1992-06-01", + "_to": "1993-11-29" + } + }, + { + "MDL": { + "_from": "1993-11-29" + } + } + ], + "ME": [ + { + "YUM": { + "_from": "1994-01-24", + "_to": "2002-05-15" + } + }, + { + "DEM": { + "_from": "1999-10-02", + "_to": "2002-05-15" + } + }, + { + "EUR": { + "_from": "2002-01-01" + } + } + ], + "MF": [ + { + "FRF": { + "_from": "1960-01-01", + "_to": "2002-02-17" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "MG": [ + { + "MGF": { + "_from": "1963-07-01", + "_to": "2004-12-31" + } + }, + { + "MGA": { + "_from": "1983-11-01" + } + } + ], + "MH": [ + { + "USD": { + "_from": "1944-01-01" + } + } + ], + "MK": [ + { + "MKN": { + "_from": "1992-04-26", + "_to": "1993-05-20" + } + }, + { + "MKD": { + "_from": "1993-05-20" + } + } + ], + "ML": [ + { + "XOF": { + "_from": "1958-11-24", + "_to": "1962-07-02" + } + }, + { + "MLF": { + "_from": "1962-07-02", + "_to": "1984-08-31" + } + }, + { + "XOF": { + "_from": "1984-06-01" + } + } + ], + "MM": [ + { + "BUK": { + "_from": "1952-07-01", + "_to": "1989-06-18" + } + }, + { + "MMK": { + "_from": "1989-06-18" + } + } + ], + "MN": [ + { + "MNT": { + "_from": "1915-03-01" + } + } + ], + "MO": [ + { + "MOP": { + "_from": "1901-01-01" + } + } + ], + "MP": [ + { + "USD": { + "_from": "1944-01-01" + } + } + ], + "MQ": [ + { + "FRF": { + "_from": "1960-01-01", + "_to": "2002-02-17" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "MR": [ + { + "XOF": { + "_from": "1958-11-28", + "_to": "1973-06-29" + } + }, + { + "MRO": { + "_from": "1973-06-29" + } + } + ], + "MS": [ + { + "XCD": { + "_from": "1967-02-27" + } + } + ], + "MT": [ + { + "MTP": { + "_from": "1914-08-13", + "_to": "1968-06-07" + } + }, + { + "MTL": { + "_from": "1968-06-07", + "_to": "2008-01-31" + } + }, + { + "EUR": { + "_from": "2008-01-01" + } + } + ], + "MU": [ + { + "MUR": { + "_from": "1934-04-01" + } + } + ], + "MV": [ + { + "MVR": { + "_from": "1981-07-01" + } + } + ], + "MW": [ + { + "MWK": { + "_from": "1971-02-15" + } + } + ], + "MX": [ + { + "MXV": { + "_tender": "false" + } + }, + { + "MXP": { + "_from": "1822-01-01", + "_to": "1992-12-31" + } + }, + { + "MXN": { + "_from": "1993-01-01" + } + } + ], + "MY": [ + { + "MYR": { + "_from": "1963-09-16" + } + } + ], + "MZ": [ + { + "MZE": { + "_from": "1975-06-25", + "_to": "1980-06-16" + } + }, + { + "MZM": { + "_from": "1980-06-16", + "_to": "2006-12-31" + } + }, + { + "MZN": { + "_from": "2006-07-01" + } + } + ], + "NA": [ + { + "ZAR": { + "_from": "1961-02-14" + } + }, + { + "NAD": { + "_from": "1993-01-01" + } + } + ], + "NC": [ + { + "XPF": { + "_from": "1985-01-01" + } + } + ], + "NE": [ + { + "XOF": { + "_from": "1958-12-19" + } + } + ], + "NF": [ + { + "AUD": { + "_from": "1966-02-14" + } + } + ], + "NG": [ + { + "NGN": { + "_from": "1973-01-01" + } + } + ], + "NI": [ + { + "NIC": { + "_from": "1988-02-15", + "_to": "1991-04-30" + } + }, + { + "NIO": { + "_from": "1991-04-30" + } + } + ], + "NL": [ + { + "NLG": { + "_from": "1813-01-01", + "_to": "2002-02-28" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "NO": [ + { + "SEK": { + "_from": "1873-05-27", + "_to": "1905-06-07" + } + }, + { + "NOK": { + "_from": "1905-06-07" + } + } + ], + "NP": [ + { + "INR": { + "_from": "1870-01-01", + "_to": "1966-10-17" + } + }, + { + "NPR": { + "_from": "1933-01-01" + } + } + ], + "NR": [ + { + "AUD": { + "_from": "1966-02-14" + } + } + ], + "NU": [ + { + "NZD": { + "_from": "1967-07-10" + } + } + ], + "NZ": [ + { + "NZD": { + "_from": "1967-07-10" + } + } + ], + "OM": [ + { + "OMR": { + "_from": "1972-11-11" + } + } + ], + "PA": [ + { + "PAB": { + "_from": "1903-11-04" + } + }, + { + "USD": { + "_from": "1903-11-18" + } + } + ], + "PE": [ + { + "PES": { + "_from": "1863-02-14", + "_to": "1985-02-01" + } + }, + { + "PEI": { + "_from": "1985-02-01", + "_to": "1991-07-01" + } + }, + { + "PEN": { + "_from": "1991-07-01" + } + } + ], + "PF": [ + { + "XPF": { + "_from": "1945-12-26" + } + } + ], + "PG": [ + { + "AUD": { + "_from": "1966-02-14", + "_to": "1975-09-16" + } + }, + { + "PGK": { + "_from": "1975-09-16" + } + } + ], + "PH": [ + { + "PHP": { + "_from": "1946-07-04" + } + } + ], + "PK": [ + { + "INR": { + "_from": "1835-08-17", + "_to": "1947-08-15" + } + }, + { + "PKR": { + "_from": "1948-04-01" + } + } + ], + "PL": [ + { + "PLZ": { + "_from": "1950-10-28", + "_to": "1994-12-31" + } + }, + { + "PLN": { + "_from": "1995-01-01" + } + } + ], + "PM": [ + { + "FRF": { + "_from": "1972-12-21", + "_to": "2002-02-17" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "PN": [ + { + "NZD": { + "_from": "1969-01-13" + } + } + ], + "PR": [ + { + "ESP": { + "_from": "1800-01-01", + "_to": "1898-12-10" + } + }, + { + "USD": { + "_from": "1898-12-10" + } + } + ], + "PS": [ + { + "JOD": { + "_from": "1950-07-01", + "_to": "1967-06-01" + } + }, + { + "ILP": { + "_from": "1967-06-01", + "_to": "1980-02-22" + } + }, + { + "ILS": { + "_from": "1985-09-04" + } + }, + { + "JOD": { + "_from": "1996-02-12" + } + } + ], + "PT": [ + { + "PTE": { + "_from": "1911-05-22", + "_to": "2002-02-28" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "PW": [ + { + "USD": { + "_from": "1944-01-01" + } + } + ], + "PY": [ + { + "PYG": { + "_from": "1943-11-01" + } + } + ], + "QA": [ + { + "QAR": { + "_from": "1973-05-19" + } + } + ], + "RE": [ + { + "FRF": { + "_from": "1975-01-01", + "_to": "2002-02-17" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "RO": [ + { + "ROL": { + "_from": "1952-01-28", + "_to": "2006-12-31" + } + }, + { + "RON": { + "_from": "2005-07-01" + } + } + ], + "RS": [ + { + "YUM": { + "_from": "1994-01-24", + "_to": "2002-05-15" + } + }, + { + "CSD": { + "_from": "2002-05-15", + "_to": "2006-10-25" + } + }, + { + "RSD": { + "_from": "2006-10-25" + } + } + ], + "RU": [ + { + "RUR": { + "_from": "1991-12-25", + "_to": "1998-12-31" + } + }, + { + "RUB": { + "_from": "1999-01-01" + } + } + ], + "RW": [ + { + "RWF": { + "_from": "1964-05-19" + } + } + ], + "SA": [ + { + "SAR": { + "_from": "1952-10-22" + } + } + ], + "SB": [ + { + "AUD": { + "_from": "1966-02-14", + "_to": "1978-06-30" + } + }, + { + "SBD": { + "_from": "1977-10-24" + } + } + ], + "SC": [ + { + "SCR": { + "_from": "1903-11-01" + } + } + ], + "SD": [ + { + "EGP": { + "_from": "1889-01-19", + "_to": "1958-01-01" + } + }, + { + "GBP": { + "_from": "1889-01-19", + "_to": "1958-01-01" + } + }, + { + "SDP": { + "_from": "1957-04-08", + "_to": "1998-06-01" + } + }, + { + "SDD": { + "_from": "1992-06-08", + "_to": "2007-06-30" + } + }, + { + "SDG": { + "_from": "2007-01-10" + } + } + ], + "SE": [ + { + "SEK": { + "_from": "1873-05-27" + } + } + ], + "SG": [ + { + "MYR": { + "_from": "1963-09-16", + "_to": "1967-06-12" + } + }, + { + "SGD": { + "_from": "1967-06-12" + } + } + ], + "SH": [ + { + "SHP": { + "_from": "1917-02-15" + } + } + ], + "SI": [ + { + "SIT": { + "_from": "1992-10-07", + "_to": "2007-01-14" + } + }, + { + "EUR": { + "_from": "2007-01-01" + } + } + ], + "SJ": [ + { + "NOK": { + "_from": "1905-06-07" + } + } + ], + "SK": [ + { + "CSK": { + "_from": "1953-06-01", + "_to": "1992-12-31" + } + }, + { + "SKK": { + "_from": "1992-12-31", + "_to": "2009-01-01" + } + }, + { + "EUR": { + "_from": "2009-01-01" + } + } + ], + "SL": [ + { + "GBP": { + "_from": "1808-11-30", + "_to": "1966-02-04" + } + }, + { + "SLL": { + "_from": "1964-08-04" + } + } + ], + "SM": [ + { + "ITL": { + "_from": "1865-12-23", + "_to": "2001-02-28" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "SN": [ + { + "XOF": { + "_from": "1959-04-04" + } + } + ], + "SO": [ + { + "SOS": { + "_from": "1960-07-01" + } + } + ], + "SR": [ + { + "NLG": { + "_from": "1815-11-20", + "_to": "1940-05-10" + } + }, + { + "SRG": { + "_from": "1940-05-10", + "_to": "2003-12-31" + } + }, + { + "SRD": { + "_from": "2004-01-01" + } + } + ], + "SS": [ + { + "SDG": { + "_from": "2007-01-10", + "_to": "2011-09-01" + } + }, + { + "SSP": { + "_from": "2011-07-18" + } + } + ], + "ST": [ + { + "STD": { + "_from": "1977-09-08" + } + } + ], + "SU": [ + { + "SUR": { + "_from": "1961-01-01", + "_to": "1991-12-25" + } + } + ], + "SV": [ + { + "SVC": { + "_from": "1919-11-11", + "_to": "2001-01-01" + } + }, + { + "USD": { + "_from": "2001-01-01" + } + } + ], + "SX": [ + { + "ANG": { + "_from": "2010-10-10" + } + } + ], + "SY": [ + { + "SYP": { + "_from": "1948-01-01" + } + } + ], + "SZ": [ + { + "SZL": { + "_from": "1974-09-06" + } + } + ], + "TA": [ + { + "GBP": { + "_from": "1938-01-12" + } + } + ], + "TC": [ + { + "USD": { + "_from": "1969-09-08" + } + } + ], + "TD": [ + { + "XAF": { + "_from": "1993-01-01" + } + } + ], + "TF": [ + { + "FRF": { + "_from": "1959-01-01", + "_to": "2002-02-17" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "TG": [ + { + "XOF": { + "_from": "1958-11-28" + } + } + ], + "TH": [ + { + "THB": { + "_from": "1928-04-15" + } + } + ], + "TJ": [ + { + "RUR": { + "_from": "1991-12-25", + "_to": "1995-05-10" + } + }, + { + "TJR": { + "_from": "1995-05-10", + "_to": "2000-10-25" + } + }, + { + "TJS": { + "_from": "2000-10-26" + } + } + ], + "TK": [ + { + "NZD": { + "_from": "1967-07-10" + } + } + ], + "TL": [ + { + "TPE": { + "_from": "1959-01-02", + "_to": "2002-05-20" + } + }, + { + "IDR": { + "_from": "1975-12-07", + "_to": "2002-05-20" + } + }, + { + "USD": { + "_from": "1999-10-20" + } + } + ], + "TM": [ + { + "SUR": { + "_from": "1961-01-01", + "_to": "1991-12-25" + } + }, + { + "RUR": { + "_from": "1991-12-25", + "_to": "1993-11-01" + } + }, + { + "TMM": { + "_from": "1993-11-01", + "_to": "2009-01-01" + } + }, + { + "TMT": { + "_from": "2009-01-01" + } + } + ], + "TN": [ + { + "TND": { + "_from": "1958-11-01" + } + } + ], + "TO": [ + { + "TOP": { + "_from": "1966-02-14" + } + } + ], + "TP": [ + { + "TPE": { + "_from": "1959-01-02", + "_to": "2002-05-20" + } + }, + { + "IDR": { + "_from": "1975-12-07", + "_to": "2002-05-20" + } + } + ], + "TR": [ + { + "TRL": { + "_from": "1922-11-01", + "_to": "2005-12-31" + } + }, + { + "TRY": { + "_from": "2005-01-01" + } + } + ], + "TT": [ + { + "TTD": { + "_from": "1964-01-01" + } + } + ], + "TV": [ + { + "AUD": { + "_from": "1966-02-14" + } + } + ], + "TW": [ + { + "TWD": { + "_from": "1949-06-15" + } + } + ], + "TZ": [ + { + "TZS": { + "_from": "1966-06-14" + } + } + ], + "UA": [ + { + "SUR": { + "_from": "1961-01-01", + "_to": "1991-12-25" + } + }, + { + "RUR": { + "_from": "1991-12-25", + "_to": "1992-11-13" + } + }, + { + "UAK": { + "_from": "1992-11-13", + "_to": "1993-10-17" + } + }, + { + "UAH": { + "_from": "1996-09-02" + } + } + ], + "UG": [ + { + "UGS": { + "_from": "1966-08-15", + "_to": "1987-05-15" + } + }, + { + "UGX": { + "_from": "1987-05-15" + } + } + ], + "UM": [ + { + "USD": { + "_from": "1944-01-01" + } + } + ], + "US": [ + { + "USN": { + "_tender": "false" + } + }, + { + "USS": { + "_tender": "false", + "_to": "2014-03-01" + } + }, + { + "USD": { + "_from": "1792-01-01" + } + } + ], + "UY": [ + { + "UYI": { + "_tender": "false" + } + }, + { + "UYP": { + "_from": "1975-07-01", + "_to": "1993-03-01" + } + }, + { + "UYU": { + "_from": "1993-03-01" + } + } + ], + "UZ": [ + { + "UZS": { + "_from": "1994-07-01" + } + } + ], + "VA": [ + { + "ITL": { + "_from": "1870-10-19", + "_to": "2002-02-28" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "VC": [ + { + "XCD": { + "_from": "1965-10-06" + } + } + ], + "VE": [ + { + "VEB": { + "_from": "1871-05-11", + "_to": "2008-06-30" + } + }, + { + "VEF": { + "_from": "2008-01-01" + } + } + ], + "VG": [ + { + "USD": { + "_from": "1833-01-01" + } + }, + { + "GBP": { + "_from": "1833-01-01", + "_to": "1959-01-01" + } + } + ], + "VI": [ + { + "USD": { + "_from": "1837-01-01" + } + } + ], + "VN": [ + { + "VNN": { + "_from": "1978-05-03", + "_to": "1985-09-14" + } + }, + { + "VND": { + "_from": "1985-09-14" + } + } + ], + "VU": [ + { + "VUV": { + "_from": "1981-01-01" + } + } + ], + "WF": [ + { + "XPF": { + "_from": "1961-07-30" + } + } + ], + "WS": [ + { + "WST": { + "_from": "1967-07-10" + } + } + ], + "XK": [ + { + "YUM": { + "_from": "1994-01-24", + "_to": "1999-09-30" + } + }, + { + "DEM": { + "_from": "1999-09-01", + "_to": "2002-03-09" + } + }, + { + "EUR": { + "_from": "2002-01-01" + } + } + ], + "YD": [ + { + "YDD": { + "_from": "1965-04-01", + "_to": "1996-01-01" + } + } + ], + "YE": [ + { + "YER": { + "_from": "1990-05-22" + } + } + ], + "YT": [ + { + "KMF": { + "_from": "1975-01-01", + "_to": "1976-02-23" + } + }, + { + "FRF": { + "_from": "1976-02-23", + "_to": "2002-02-17" + } + }, + { + "EUR": { + "_from": "1999-01-01" + } + } + ], + "YU": [ + { + "YUD": { + "_from": "1966-01-01", + "_to": "1990-01-01" + } + }, + { + "YUN": { + "_from": "1990-01-01", + "_to": "1992-07-24" + } + }, + { + "YUM": { + "_from": "1994-01-24", + "_to": "2002-05-15" + } + } + ], + "ZA": [ + { + "ZAR": { + "_from": "1961-02-14" + } + }, + { + "ZAL": { + "_tender": "false", + "_from": "1985-09-01", + "_to": "1995-03-13" + } + } + ], + "ZM": [ + { + "ZMK": { + "_from": "1968-01-16", + "_to": "2013-01-01" + } + }, + { + "ZMW": { + "_from": "2013-01-01" + } + } + ], + "ZR": [ + { + "ZRZ": { + "_from": "1971-10-27", + "_to": "1993-11-01" + } + }, + { + "ZRN": { + "_from": "1993-11-01", + "_to": "1998-07-31" + } + } + ], + "ZW": [ + { + "RHD": { + "_from": "1970-02-17", + "_to": "1980-04-18" + } + }, + { + "ZWD": { + "_from": "1980-04-18", + "_to": "2008-08-01" + } + }, + { + "ZWR": { + "_from": "2008-08-01", + "_to": "2009-02-02" + } + }, + { + "ZWL": { + "_from": "2009-02-02", + "_to": "2009-04-12" + } + }, + { + "USD": { + "_from": "2009-04-12" + } + } + ], + "ZZ": [ + { + "XAG": { + "_tender": "false" + } + }, + { + "XAU": { + "_tender": "false" + } + }, + { + "XBA": { + "_tender": "false" + } + }, + { + "XBB": { + "_tender": "false" + } + }, + { + "XBC": { + "_tender": "false" + } + }, + { + "XBD": { + "_tender": "false" + } + }, + { + "XDR": { + "_tender": "false" + } + }, + { + "XPD": { + "_tender": "false" + } + }, + { + "XPT": { + "_tender": "false" + } + }, + { + "XSU": { + "_tender": "false" + } + }, + { + "XTS": { + "_tender": "false" + } + }, + { + "XUA": { + "_tender": "false" + } + }, + { + "XXX": { + "_tender": "false" + } + }, + { + "XRE": { + "_tender": "false", + "_to": "1999-11-30" + } + }, + { + "XFU": { + "_tender": "false", + "_to": "2013-11-30" + } + }, + { + "XFO": { + "_tender": "false", + "_from": "1930-01-01", + "_to": "2003-04-01" + } + } + ] + } + } + } +} diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/datasource.ts b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/datasource.ts new file mode 100644 index 0000000000..b95bcee4a9 --- /dev/null +++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/datasource.ts @@ -0,0 +1,2392 @@ +export let Pivot_Data: Object[] = + [{ 'In_Stock': 34, 'Sold': 51, 'Amount': 383, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 4, 'Sold': 423, 'Amount': 3595.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 38, 'Sold': 234, 'Amount': 1813.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 42, 'Sold': 127, 'Amount': 952.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 36, 'Sold': 89, 'Amount': 668, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 17, 'Sold': 340, 'Amount': 2890, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 22, 'Sold': 379, 'Amount': 2937.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 12, 'Sold': 269, 'Amount': 2017.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 28, 'Sold': 15, 'Amount': 113, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 46, 'Sold': 369, 'Amount': 3136.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 16, 'Sold': 410, 'Amount': 3177.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 18, 'Sold': 99, 'Amount': 742.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 50, 'Sold': 50, 'Amount': 375.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 31, 'Sold': 129, 'Amount': 1096.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 23, 'Sold': 404, 'Amount': 3131, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 42, 'Sold': 132, 'Amount': 990, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 42, 'Sold': 56, 'Amount': 420.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 45, 'Sold': 481, 'Amount': 4088.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 3, 'Sold': 71, 'Amount': 550.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 35, 'Sold': 455, 'Amount': 3412.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 44, 'Sold': 25, 'Amount': 188, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 6, 'Sold': 466, 'Amount': 3961, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 47, 'Sold': 198, 'Amount': 1534.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 15, 'Sold': 421, 'Amount': 3157.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 18, 'Sold': 10, 'Amount': 75.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 6, 'Sold': 348, 'Amount': 2958, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 46, 'Sold': 118, 'Amount': 914.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 37, 'Sold': 207, 'Amount': 1552.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 17, 'Sold': 45, 'Amount': 338, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 39, 'Sold': 97, 'Amount': 824.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 3, 'Sold': 271, 'Amount': 2100.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 23, 'Sold': 501, 'Amount': 3757.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 42, 'Sold': 63, 'Amount': 473, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 36, 'Sold': 456, 'Amount': 3876, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 44, 'Sold': 155, 'Amount': 1201.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 12, 'Sold': 140, 'Amount': 1050, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 9, 'Sold': 31, 'Amount': 233, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 49, 'Sold': 402, 'Amount': 3417, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 30, 'Sold': 254, 'Amount': 1968.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 28, 'Sold': 314, 'Amount': 2355, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 43, 'Sold': 91, 'Amount': 683, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 44, 'Sold': 202, 'Amount': 1717, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 11, 'Sold': 298, 'Amount': 2309.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 39, 'Sold': 166, 'Amount': 1245, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 7, 'Sold': 11, 'Amount': 83, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 33, 'Sold': 416, 'Amount': 3536, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 39, 'Sold': 55, 'Amount': 426.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 16, 'Sold': 510, 'Amount': 3825, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 4, 'Sold': 199, 'Amount': 1691.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 4, 'Sold': 103, 'Amount': 798.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 42, 'Sold': 227, 'Amount': 1702.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 36, 'Sold': 16, 'Amount': 72, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 18, 'Sold': 250, 'Amount': 1250, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 19, 'Sold': 386, 'Amount': 1640.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 40, 'Sold': 165, 'Amount': 660, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 45, 'Sold': 83, 'Amount': 373.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 11, 'Sold': 221, 'Amount': 1105, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 17, 'Sold': 249, 'Amount': 1058.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 50, 'Sold': 418, 'Amount': 1672, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 34, 'Sold': 55, 'Amount': 247.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 3, 'Sold': 415, 'Amount': 2075, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 42, 'Sold': 57, 'Amount': 242.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 5, 'Sold': 252, 'Amount': 1008, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 11, 'Sold': 19, 'Amount': 85.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 10, 'Sold': 64, 'Amount': 320, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 42, 'Sold': 66, 'Amount': 280.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 33, 'Sold': 263, 'Amount': 1052, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 41, 'Sold': 61, 'Amount': 274.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 33, 'Sold': 257, 'Amount': 1285, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 16, 'Sold': 386, 'Amount': 1640.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 10, 'Sold': 503, 'Amount': 2012, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 7, 'Sold': 43, 'Amount': 193.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 30, 'Sold': 322, 'Amount': 1610, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 40, 'Sold': 305, 'Amount': 1296.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 46, 'Sold': 171, 'Amount': 684, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 8, 'Sold': 22, 'Amount': 99, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 18, 'Sold': 254, 'Amount': 1270, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 19, 'Sold': 72, 'Amount': 306, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 37, 'Sold': 286, 'Amount': 1144, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 15, 'Sold': 95, 'Amount': 427.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 48, 'Sold': 271, 'Amount': 1355, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 7, 'Sold': 67, 'Amount': 284.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 16, 'Sold': 92, 'Amount': 368, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 18, 'Sold': 86, 'Amount': 387, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 15, 'Sold': 320, 'Amount': 1600, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 5, 'Sold': 244, 'Amount': 1037, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 45, 'Sold': 403, 'Amount': 1612, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 3, 'Sold': 45, 'Amount': 202.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 41, 'Sold': 323, 'Amount': 1615, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 11, 'Sold': 256, 'Amount': 1088, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 24, 'Sold': 361, 'Amount': 1444, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 47, 'Sold': 57, 'Amount': 256.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 2, 'Sold': 269, 'Amount': 1345, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 45, 'Sold': 448, 'Amount': 1904, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 10, 'Sold': 376, 'Amount': 1504, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 41, 'Sold': 15, 'Amount': 67.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 12, 'Sold': 157, 'Amount': 785, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 35, 'Sold': 170, 'Amount': 722.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 32, 'Sold': 542, 'Amount': 2168, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 13, 'Sold': 96, 'Amount': 432, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 212, 'Amount': 1060, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 5, 'Sold': 342, 'Amount': 1453.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 40, 'Sold': 84, 'Amount': 336, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 20, 'Sold': 42, 'Amount': 483, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 15, 'Sold': 287, 'Amount': 3444, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 14, 'Sold': 371, 'Amount': 4173.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 48, 'Sold': 414, 'Amount': 4554, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 43, 'Sold': 14, 'Amount': 161, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 20, 'Sold': 81, 'Amount': 972, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 48, 'Sold': 438, 'Amount': 4927.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 32, 'Sold': 507, 'Amount': 5577, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 45, 'Sold': 65, 'Amount': 747.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 41, 'Sold': 382, 'Amount': 4584, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 31, 'Sold': 322, 'Amount': 3622.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 6, 'Sold': 313, 'Amount': 3443, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 20, 'Sold': 48, 'Amount': 552, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 29, 'Sold': 345, 'Amount': 4140, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 15, 'Sold': 77, 'Amount': 866.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 32, 'Sold': 339, 'Amount': 3729, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 1, 'Sold': 21, 'Amount': 241.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 29, 'Sold': 355, 'Amount': 4260, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 48, 'Sold': 76, 'Amount': 855, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 16, 'Sold': 180, 'Amount': 1980, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 15, 'Sold': 44, 'Amount': 506, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 36, 'Sold': 453, 'Amount': 5436, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 33, 'Sold': 410, 'Amount': 4612.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 3, 'Sold': 163, 'Amount': 1793, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 36, 'Sold': 77, 'Amount': 885.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 9, 'Sold': 489, 'Amount': 5868, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 4, 'Sold': 265, 'Amount': 2981.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 33, 'Sold': 360, 'Amount': 3960, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 16, 'Sold': 47, 'Amount': 540.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 24, 'Sold': 201, 'Amount': 2412, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 41, 'Sold': 383, 'Amount': 4308.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 33, 'Sold': 83, 'Amount': 913, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 14, 'Sold': 24, 'Amount': 276, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 141, 'Amount': 1692, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 30, 'Sold': 332, 'Amount': 3735, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 50, 'Sold': 253, 'Amount': 2783, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 34, 'Sold': 31, 'Amount': 356.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 37, 'Sold': 352, 'Amount': 4224, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 31, 'Sold': 443, 'Amount': 4983.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 50, 'Sold': 185, 'Amount': 2035, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 20, 'Sold': 17, 'Amount': 195.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 49, 'Sold': 165, 'Amount': 1980, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 27, 'Sold': 466, 'Amount': 5242.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 17, 'Sold': 512, 'Amount': 5632, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 29, 'Sold': 42, 'Amount': 483, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 29, 'Sold': 102, 'Amount': 1224, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 14, 'Sold': 133, 'Amount': 1496.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 36, 'Sold': 391, 'Amount': 4301, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 29, 'Sold': 20, 'Amount': 230, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 42, 'Sold': 145, 'Amount': 1740, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 16, 'Sold': 398, 'Amount': 4477.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 472, 'Amount': 5192, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 24, 'Sold': 32, 'Amount': 504.96, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 40, 'Sold': 258, 'Amount': 4200.24, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 26, 'Sold': 442, 'Amount': 6864.26, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 3, 'Sold': 317, 'Amount': 4843.76, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 32, 'Amount': 504.96, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 16, 'Sold': 133, 'Amount': 2165.24, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 40, 'Sold': 117, 'Amount': 1817.01, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 37, 'Sold': 129, 'Amount': 1971.12, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 45, 'Sold': 80, 'Amount': 1262.4, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 36, 'Sold': 139, 'Amount': 2262.92, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 18, 'Sold': 234, 'Amount': 3634.02, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 38, 'Sold': 444, 'Amount': 6784.32, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 36, 'Sold': 60, 'Amount': 946.8, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 15, 'Sold': 470, 'Amount': 7651.6, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 27, 'Sold': 448, 'Amount': 6957.44, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 17, 'Sold': 118, 'Amount': 1803.04, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 7, 'Sold': 15, 'Amount': 236.7, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 45, 'Sold': 95, 'Amount': 1546.6, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 35, 'Sold': 191, 'Amount': 2966.23, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 16, 'Sold': 426, 'Amount': 6509.28, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 35, 'Sold': 78, 'Amount': 1230.84, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 3, 'Sold': 69, 'Amount': 1123.32, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 31, 'Sold': 221, 'Amount': 3432.13, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 13, 'Sold': 285, 'Amount': 4354.8, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 26, 'Sold': 56, 'Amount': 883.68, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 17, 'Sold': 303, 'Amount': 4932.84, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 34, 'Sold': 419, 'Amount': 6507.07, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 26, 'Sold': 397, 'Amount': 6066.16, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 14, 'Sold': 90, 'Amount': 1420.2, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 7, 'Sold': 337, 'Amount': 5486.36, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 47, 'Sold': 74, 'Amount': 1149.22, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 26, 'Sold': 203, 'Amount': 3101.84, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 10, 'Sold': 83, 'Amount': 1309.74, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 29, 'Sold': 152, 'Amount': 2474.56, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 30, 'Sold': 144, 'Amount': 2236.32, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 231, 'Amount': 3529.68, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 31, 'Sold': 47, 'Amount': 741.66, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 29, 'Sold': 464, 'Amount': 7553.92, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 3, 'Sold': 460, 'Amount': 7143.8, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 27, 'Sold': 343, 'Amount': 5241.04, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 6, 'Sold': 22, 'Amount': 347.16, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 20, 'Sold': 161, 'Amount': 2621.08, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 4, 'Sold': 188, 'Amount': 2919.64, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 26, 'Sold': 233, 'Amount': 3560.24, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 26, 'Sold': 17, 'Amount': 268.26, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 39, 'Sold': 121, 'Amount': 1969.88, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 49, 'Sold': 469, 'Amount': 7283.57, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 31, 'Sold': 297, 'Amount': 4538.16, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 4, 'Sold': 30, 'Amount': 473.4, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 11, 'Sold': 288, 'Amount': 4688.64, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 8, 'Sold': 155, 'Amount': 2407.15, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 7, 'Sold': 121, 'Amount': 1848.88, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 16, 'Sold': 46, 'Amount': 1414.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 3, 'Sold': 328, 'Amount': 10250, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 32, 'Sold': 393, 'Amount': 11986.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 49, 'Sold': 415, 'Amount': 12553.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 63, 'Amount': 1937.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 6, 'Sold': 411, 'Amount': 12843.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 19, 'Sold': 106, 'Amount': 3233, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 10, 'Sold': 222, 'Amount': 6715.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 43, 'Sold': 98, 'Amount': 3013.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 27, 'Sold': 59, 'Amount': 1843.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 18, 'Sold': 355, 'Amount': 10827.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 12, 'Sold': 76, 'Amount': 2299, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 16, 'Sold': 38, 'Amount': 1168.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 47, 'Sold': 189, 'Amount': 5906.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 16, 'Sold': 458, 'Amount': 13969, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 19, 'Sold': 436, 'Amount': 13189, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 38, 'Sold': 19, 'Amount': 584.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 444, 'Amount': 13875, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 33, 'Sold': 186, 'Amount': 5673, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 3, 'Sold': 225, 'Amount': 6806.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 26, 'Sold': 11, 'Amount': 338.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 16, 'Sold': 61, 'Amount': 1906.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 24, 'Sold': 272, 'Amount': 8296, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 44, 'Sold': 150, 'Amount': 4537.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 11, 'Sold': 51, 'Amount': 1568.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 32, 'Sold': 490, 'Amount': 15312.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 41, 'Sold': 487, 'Amount': 14853.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 36, 'Sold': 184, 'Amount': 5566, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 9, 'Sold': 24, 'Amount': 738, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 50, 'Sold': 101, 'Amount': 3156.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 39, 'Sold': 301, 'Amount': 9180.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 25, 'Sold': 506, 'Amount': 15306.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 1, 'Sold': 89, 'Amount': 2736.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 1, 'Sold': 80, 'Amount': 2500, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 196, 'Amount': 5978, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 36, 'Sold': 103, 'Amount': 3115.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 20, 'Sold': 35, 'Amount': 1076.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 47, 'Sold': 159, 'Amount': 4968.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 45, 'Sold': 392, 'Amount': 11956, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 30, 'Sold': 438, 'Amount': 13249.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 31, 'Sold': 75, 'Amount': 2306.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 40, 'Sold': 383, 'Amount': 11968.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 43, 'Sold': 160, 'Amount': 4880, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 29, 'Sold': 378, 'Amount': 11434.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 50, 'Sold': 18, 'Amount': 553.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 17, 'Sold': 140, 'Amount': 4375, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 18, 'Sold': 258, 'Amount': 7869, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 19, 'Sold': 508, 'Amount': 15367, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 11, 'Sold': 59, 'Amount': 1814.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 29, 'Sold': 83, 'Amount': 2593.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 414, 'Amount': 12627, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 49, 'Sold': 341, 'Amount': 10315.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 48, 'Amount': 936, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 12, 'Sold': 174, 'Amount': 3480, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 14, 'Sold': 202, 'Amount': 3888.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 9, 'Sold': 469, 'Amount': 8911, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 11, 'Sold': 53, 'Amount': 1033.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 19, 'Sold': 74, 'Amount': 1480, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 5, 'Sold': 467, 'Amount': 8989.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 40, 'Sold': 322, 'Amount': 6118, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 8, 'Sold': 53, 'Amount': 1033.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 22, 'Sold': 468, 'Amount': 9360, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 12, 'Sold': 277, 'Amount': 5332.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 31, 'Sold': 236, 'Amount': 4484, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 7, 'Sold': 49, 'Amount': 955.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 24, 'Sold': 191, 'Amount': 3820, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 32, 'Sold': 165, 'Amount': 3176.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 28, 'Sold': 185, 'Amount': 3515, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 5, 'Sold': 92, 'Amount': 1794, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 44, 'Sold': 128, 'Amount': 2560, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 33, 'Sold': 258, 'Amount': 4966.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 24, 'Sold': 274, 'Amount': 5206, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 58, 'Amount': 1131, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 7, 'Sold': 322, 'Amount': 6440, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 44, 'Sold': 168, 'Amount': 3234, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 7, 'Sold': 120, 'Amount': 2280, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 8, 'Sold': 18, 'Amount': 351, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 23, 'Sold': 142, 'Amount': 2840, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 4, 'Sold': 133, 'Amount': 2560.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 10, 'Sold': 377, 'Amount': 7163, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 1, 'Sold': 56, 'Amount': 1092, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 22, 'Sold': 318, 'Amount': 6360, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 8, 'Sold': 456, 'Amount': 8778, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 21, 'Sold': 408, 'Amount': 7752, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 33, 'Sold': 34, 'Amount': 663, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 226, 'Amount': 4520, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 4, 'Sold': 355, 'Amount': 6833.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 45, 'Sold': 237, 'Amount': 4503, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 34, 'Sold': 94, 'Amount': 1833, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 41, 'Sold': 273, 'Amount': 5460, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 2, 'Sold': 280, 'Amount': 5390, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 31, 'Sold': 146, 'Amount': 2774, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 17, 'Sold': 37, 'Amount': 721.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 40, 'Sold': 219, 'Amount': 4380, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 29, 'Sold': 497, 'Amount': 9567.25, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 31, 'Sold': 378, 'Amount': 7182, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 15, 'Sold': 83, 'Amount': 1618.5, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 24, 'Sold': 211, 'Amount': 4220, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 42, 'Sold': 372, 'Amount': 7161, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 8, 'Sold': 537, 'Amount': 10203, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 8, 'Sold': 58, 'Amount': 1131, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 155, 'Amount': 3100, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 17, 'Sold': 211, 'Amount': 4061.75, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 1, 'Sold': 134, 'Amount': 2546, 'Country': 'France', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 18, 'Sold': 58, 'Amount': 98832, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 8, 'Sold': 474, 'Amount': 810066, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 43, 'Sold': 447, 'Amount': 762582, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 12, 'Sold': 289, 'Amount': 491011, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 43, 'Sold': 60, 'Amount': 102240, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 29, 'Sold': 93, 'Amount': 158937, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 11, 'Sold': 96, 'Amount': 163776, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 29, 'Sold': 401, 'Amount': 681299, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 42, 'Sold': 83, 'Amount': 141432, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 21, 'Sold': 427, 'Amount': 729743, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 33, 'Sold': 396, 'Amount': 675576, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 11, 'Sold': 98, 'Amount': 166502, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 29, 'Sold': 48, 'Amount': 81792, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 31, 'Sold': 288, 'Amount': 492192, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 40, 'Sold': 352, 'Amount': 600512, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 12, 'Sold': 426, 'Amount': 723774, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 19, 'Sold': 85, 'Amount': 144840, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 18, 'Sold': 432, 'Amount': 738288, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 14, 'Sold': 267, 'Amount': 455502, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 33, 'Sold': 434, 'Amount': 737366, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 24, 'Sold': 39, 'Amount': 66456, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 39, 'Sold': 171, 'Amount': 292239, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 20, 'Sold': 304, 'Amount': 518624, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 13, 'Sold': 441, 'Amount': 749259, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 16, 'Sold': 68, 'Amount': 115872, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 2, 'Sold': 406, 'Amount': 693854, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 10, 'Sold': 50, 'Amount': 85300, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 40, 'Sold': 231, 'Amount': 392469, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 31, 'Sold': 31, 'Amount': 52824, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 34, 'Sold': 254, 'Amount': 434086, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 38, 'Sold': 455, 'Amount': 776230, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 39, 'Sold': 304, 'Amount': 516496, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 50, 'Sold': 40, 'Amount': 68160, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 23, 'Sold': 204, 'Amount': 348636, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 26, 'Sold': 231, 'Amount': 394086, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 30, 'Sold': 531, 'Amount': 902169, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 35, 'Sold': 45, 'Amount': 76680, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 8, 'Sold': 275, 'Amount': 469975, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 42, 'Sold': 292, 'Amount': 498152, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 25, 'Sold': 197, 'Amount': 334703, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 8, 'Sold': 35, 'Amount': 59640, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 31, 'Sold': 234, 'Amount': 399906, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 34, 'Sold': 127, 'Amount': 216662, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 44, 'Sold': 377, 'Amount': 640523, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 31, 'Sold': 40, 'Amount': 68160, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 33, 'Sold': 474, 'Amount': 810066, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 49, 'Sold': 168, 'Amount': 286608, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 43, 'Sold': 521, 'Amount': 885179, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 32, 'Sold': 55, 'Amount': 93720, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 39, 'Sold': 309, 'Amount': 528081, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 8, 'Sold': 466, 'Amount': 794996, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 34, 'Sold': 296, 'Amount': 502904, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 14, 'Sold': 76, 'Amount': 113929, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 16, 'Sold': 202, 'Amount': 304818, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 19, 'Sold': 285, 'Amount': 429210, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 1, 'Sold': 345, 'Amount': 571119, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 16, 'Sold': 61, 'Amount': 91444, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 1, 'Sold': 94, 'Amount': 141846, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 27, 'Sold': 241, 'Amount': 362946, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 17, 'Sold': 186, 'Amount': 795969, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 4, 'Sold': 79, 'Amount': 118426, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 16, 'Sold': 341, 'Amount': 514569, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 27, 'Sold': 401, 'Amount': 603906, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 24, 'Sold': 204, 'Amount': 517155, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 37, 'Sold': 71, 'Amount': 106434, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 32, 'Sold': 368, 'Amount': 555312, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 14, 'Sold': 500, 'Amount': 753000, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 44, 'Sold': 275, 'Amount': 278814, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 32, 'Sold': 41, 'Amount': 61464, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 49, 'Sold': 172, 'Amount': 259548, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 8, 'Sold': 432, 'Amount': 650592, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 241, 'Amount': 305796, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 40, 'Sold': 40, 'Amount': 59965, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 50, 'Sold': 350, 'Amount': 528150, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 30, 'Sold': 468, 'Amount': 704808, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 6, 'Sold': 250, 'Amount': 412225, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 30, 'Sold': 98, 'Amount': 146907, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 17, 'Sold': 228, 'Amount': 344052, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 42, 'Sold': 407, 'Amount': 612942, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 18, 'Sold': 217, 'Amount': 361259, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 30, 'Sold': 63, 'Amount': 94442, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 3, 'Sold': 303, 'Amount': 457227, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 23, 'Sold': 364, 'Amount': 548184, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 29, 'Sold': 191, 'Amount': 374750, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 27, 'Sold': 47, 'Amount': 70458, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 325, 'Amount': 490425, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 469, 'Amount': 706314, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 6, 'Sold': 183, 'Amount': 325283, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 84, 'Amount': 125921, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 7, 'Sold': 374, 'Amount': 564366, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 5, 'Sold': 314, 'Amount': 472884, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 24, 'Sold': 427, 'Amount': 286309, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 6, 'Sold': 81, 'Amount': 121424, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 4, 'Sold': 80, 'Amount': 120720, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 24, 'Sold': 314, 'Amount': 472884, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 1, 'Sold': 495, 'Amount': 274317, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 16, 'Sold': 83, 'Amount': 124422, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 48, 'Sold': 380, 'Amount': 573420, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 1, 'Sold': 157, 'Amount': 236442, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 44, 'Sold': 450, 'Amount': 640073, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 14, 'Sold': 10, 'Amount': 14995, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 330, 'Amount': 497970, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 27, 'Sold': 324, 'Amount': 487944, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 346, 'Amount': 742005, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 10, 'Sold': 83, 'Amount': 132426.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 45, 'Sold': 51, 'Amount': 81396, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 1, 'Sold': 483, 'Amount': 770505.75, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 17, 'Sold': 233, 'Amount': 371635, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 42, 'Sold': 46, 'Amount': 73393, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 5, 'Sold': 306, 'Amount': 488376, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 22, 'Sold': 124, 'Amount': 197811, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 45, 'Sold': 409, 'Amount': 652355, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 27, 'Sold': 66, 'Amount': 105303, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 27, 'Sold': 172, 'Amount': 274512, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 16, 'Sold': 193, 'Amount': 307883.25, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 11, 'Sold': 510, 'Amount': 813450, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 42, 'Sold': 56, 'Amount': 89348, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 10, 'Sold': 61, 'Amount': 97356, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 16, 'Sold': 51, 'Amount': 81357.75, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 44, 'Sold': 360, 'Amount': 574200, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 38, 'Sold': 51, 'Amount': 81370.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 176, 'Amount': 280896, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 16, 'Sold': 372, 'Amount': 593433, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 32, 'Sold': 473, 'Amount': 754435, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 27, 'Sold': 85, 'Amount': 135617.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 18, 'Sold': 457, 'Amount': 729372, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 15, 'Sold': 305, 'Amount': 486551.25, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 29, 'Sold': 513, 'Amount': 818235, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 49, 'Sold': 89, 'Amount': 141999.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 12, 'Sold': 87, 'Amount': 138852, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 24, 'Sold': 378, 'Amount': 603004.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 10, 'Sold': 65, 'Amount': 103675, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 35, 'Sold': 84, 'Amount': 134022, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 41, 'Sold': 118, 'Amount': 188328, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 29, 'Sold': 242, 'Amount': 386050.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 5, 'Sold': 396, 'Amount': 631620, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 6, 'Sold': 85, 'Amount': 135617.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 14, 'Sold': 98, 'Amount': 156408, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 50, 'Sold': 251, 'Amount': 400407.75, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 16, 'Sold': 144, 'Amount': 229680, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 7, 'Sold': 85, 'Amount': 135617.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 14, 'Sold': 465, 'Amount': 742140, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 23, 'Sold': 421, 'Amount': 671600.25, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 3, 'Sold': 355, 'Amount': 566225, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 47, 'Sold': 17, 'Amount': 27123.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 48, 'Sold': 125, 'Amount': 199500, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 41, 'Sold': 256, 'Amount': 408384, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 48, 'Sold': 126, 'Amount': 200970, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 30, 'Sold': 77, 'Amount': 122853.5, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 35, 'Sold': 139, 'Amount': 221844, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 4, 'Sold': 371, 'Amount': 591837.75, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 19, 'Sold': 353, 'Amount': 563035, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 43, 'Sold': 80, 'Amount': 127640, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 36, 'Sold': 168, 'Amount': 268128, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 27, 'Sold': 492, 'Amount': 784863, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 11, 'Sold': 320, 'Amount': 510400, 'Country': 'France', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 54, 'Amount': 324.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 22, 'Sold': 107, 'Amount': 856, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 43, 'Sold': 86, 'Amount': 537.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 26, 'Sold': 332, 'Amount': 1992, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 9, 'Sold': 75, 'Amount': 450.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 19, 'Sold': 155, 'Amount': 1240, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 34, 'Sold': 479, 'Amount': 2993.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 18, 'Sold': 227, 'Amount': 1362, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 20, 'Sold': 52, 'Amount': 312.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 24, 'Sold': 107, 'Amount': 856, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 16, 'Sold': 457, 'Amount': 2856.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 38, 'Sold': 122, 'Amount': 732, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 38, 'Sold': 28, 'Amount': 168.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 36, 'Sold': 490, 'Amount': 3920, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 15, 'Sold': 464, 'Amount': 2900, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 18, 'Sold': 329, 'Amount': 1974, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 38, 'Sold': 81, 'Amount': 486.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 19, 'Sold': 94, 'Amount': 752, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 43, 'Sold': 230, 'Amount': 1437.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 404, 'Amount': 2424, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 45, 'Sold': 27, 'Amount': 162.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 42, 'Sold': 106, 'Amount': 848, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 9, 'Sold': 358, 'Amount': 2237.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 25, 'Sold': 140, 'Amount': 840, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 28, 'Sold': 48, 'Amount': 288.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 11, 'Sold': 155, 'Amount': 1240, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 39, 'Sold': 176, 'Amount': 1100, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 22, 'Sold': 501, 'Amount': 3006, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 28, 'Sold': 14, 'Amount': 84.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 45, 'Sold': 98, 'Amount': 784, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 6, 'Sold': 280, 'Amount': 1750, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 36, 'Sold': 285, 'Amount': 1710, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 5, 'Sold': 67, 'Amount': 402.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 1, 'Sold': 103, 'Amount': 824, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 20, 'Sold': 247, 'Amount': 1543.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 3, 'Sold': 153, 'Amount': 918, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 40, 'Sold': 49, 'Amount': 294.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 39, 'Sold': 348, 'Amount': 2784, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 28, 'Sold': 461, 'Amount': 2881.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 23, 'Sold': 536, 'Amount': 3216, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 3, 'Sold': 83, 'Amount': 498.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 4, 'Sold': 68, 'Amount': 544, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 11, 'Sold': 390, 'Amount': 2437.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 49, 'Sold': 154, 'Amount': 924, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 47, 'Sold': 38, 'Amount': 228.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 37, 'Sold': 413, 'Amount': 3304, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 38, 'Sold': 380, 'Amount': 2375, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 46, 'Sold': 226, 'Amount': 1356, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 41, 'Sold': 65, 'Amount': 390.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 29, 'Sold': 176, 'Amount': 1408, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 39, 'Sold': 217, 'Amount': 1356.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 32, 'Sold': 318, 'Amount': 1908, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 21, 'Amount': 598.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 44, 'Sold': 68, 'Amount': 1972, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 38, 'Sold': 277, 'Amount': 7825.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 5, 'Sold': 191, 'Amount': 5348, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 8, 'Sold': 63, 'Amount': 1795.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 31, 'Sold': 84, 'Amount': 2436, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 5, 'Sold': 226, 'Amount': 6384.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 47, 'Sold': 143, 'Amount': 4004, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 35, 'Sold': 78, 'Amount': 2223, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 39, 'Sold': 391, 'Amount': 11339, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 47, 'Sold': 216, 'Amount': 6102, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 14, 'Sold': 269, 'Amount': 7532, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 9, 'Sold': 27, 'Amount': 769.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 17, 'Sold': 495, 'Amount': 14355, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 9, 'Sold': 499, 'Amount': 14096.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 48, 'Sold': 135, 'Amount': 3780, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 20, 'Sold': 32, 'Amount': 912, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 31, 'Sold': 328, 'Amount': 9512, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 43, 'Sold': 230, 'Amount': 6497.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 101, 'Amount': 2828, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 32, 'Sold': 78, 'Amount': 2223, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 31, 'Sold': 76, 'Amount': 2204, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 12, 'Sold': 264, 'Amount': 7458, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 48, 'Sold': 508, 'Amount': 14224, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 24, 'Sold': 29, 'Amount': 826.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 47, 'Sold': 274, 'Amount': 7946, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 40, 'Sold': 357, 'Amount': 10085.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 8, 'Sold': 268, 'Amount': 7504, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 39, 'Sold': 87, 'Amount': 2479.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 43, 'Sold': 288, 'Amount': 8352, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 5, 'Sold': 109, 'Amount': 3079.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 1, 'Sold': 434, 'Amount': 12152, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 6, 'Sold': 13, 'Amount': 370.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 292, 'Amount': 8468, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 9, 'Sold': 439, 'Amount': 12401.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 449, 'Amount': 12572, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 68, 'Amount': 1938, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 4, 'Sold': 274, 'Amount': 7946, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 40, 'Sold': 394, 'Amount': 11130.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 32, 'Sold': 382, 'Amount': 10696, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 7, 'Sold': 36, 'Amount': 1026, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 5, 'Sold': 120, 'Amount': 3480, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 4, 'Sold': 277, 'Amount': 7825.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 34, 'Sold': 439, 'Amount': 12292, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 39, 'Sold': 50, 'Amount': 1425, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 44, 'Sold': 258, 'Amount': 7482, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 2, 'Sold': 269, 'Amount': 7599.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 35, 'Sold': 427, 'Amount': 11956, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 10, 'Sold': 61, 'Amount': 1738.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 46, 'Sold': 192, 'Amount': 5568, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 11, 'Sold': 431, 'Amount': 12175.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 10, 'Sold': 506, 'Amount': 14168, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 19, 'Sold': 79, 'Amount': 1698.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 20, 'Sold': 476, 'Amount': 8092, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 5, 'Sold': 483, 'Amount': 7848.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 39, 'Sold': 541, 'Amount': 8656, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 18, 'Sold': 21, 'Amount': 451.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 17, 'Sold': 251, 'Amount': 4267, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 12, 'Sold': 484, 'Amount': 7865, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 25, 'Sold': 467, 'Amount': 7472, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 15, 'Sold': 75, 'Amount': 1612.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 33, 'Sold': 121, 'Amount': 2057, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 20, 'Sold': 456, 'Amount': 7410, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 40, 'Sold': 193, 'Amount': 3088, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 21, 'Sold': 34, 'Amount': 731, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 44, 'Sold': 416, 'Amount': 7072, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 2, 'Sold': 280, 'Amount': 4550, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 12, 'Sold': 363, 'Amount': 5808, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 18, 'Sold': 92, 'Amount': 1978, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 28, 'Sold': 187, 'Amount': 3179, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 44, 'Sold': 226, 'Amount': 3672.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 40, 'Sold': 243, 'Amount': 3888, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 27, 'Sold': 75, 'Amount': 1612.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 26, 'Sold': 117, 'Amount': 1989, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 2, 'Sold': 326, 'Amount': 5297.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 1, 'Sold': 440, 'Amount': 7040, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 14, 'Sold': 93, 'Amount': 1999.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 10, 'Sold': 123, 'Amount': 2091, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 41, 'Sold': 52, 'Amount': 845, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 24, 'Sold': 91, 'Amount': 1456, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 12, 'Sold': 14, 'Amount': 301, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 49, 'Sold': 458, 'Amount': 7786, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 8, 'Sold': 120, 'Amount': 1950, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 13, 'Sold': 295, 'Amount': 4720, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 27, 'Sold': 60, 'Amount': 1290, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 30, 'Sold': 101, 'Amount': 1717, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 36, 'Sold': 380, 'Amount': 6175, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 266, 'Amount': 4256, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 13, 'Sold': 21, 'Amount': 451.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 50, 'Sold': 296, 'Amount': 5032, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 17, 'Sold': 355, 'Amount': 5768.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 19, 'Sold': 286, 'Amount': 4576, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 41, 'Sold': 58, 'Amount': 1247, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 28, 'Sold': 343, 'Amount': 5831, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 12, 'Sold': 229, 'Amount': 3721.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 46, 'Sold': 146, 'Amount': 2336, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 8, 'Sold': 19, 'Amount': 408.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 8, 'Sold': 395, 'Amount': 6715, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 1, 'Sold': 224, 'Amount': 3640, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 11, 'Sold': 298, 'Amount': 4768, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 15, 'Sold': 100, 'Amount': 2150, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 34, 'Sold': 362, 'Amount': 6154, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 4, 'Sold': 84, 'Amount': 1365, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 13, 'Sold': 244, 'Amount': 3904, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 47, 'Amount': 5217.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 40, 'Sold': 416, 'Amount': 46592, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 23, 'Sold': 459, 'Amount': 51063.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 49, 'Sold': 206, 'Amount': 6660, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 35, 'Sold': 58, 'Amount': 6438.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 1, 'Sold': 317, 'Amount': 35504, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 5, 'Sold': 103, 'Amount': 11458.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 46, 'Sold': 151, 'Amount': 4440, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 30, 'Sold': 69, 'Amount': 7659.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 11, 'Sold': 326, 'Amount': 36512, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 32, 'Sold': 391, 'Amount': 43498.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 17, 'Sold': 104, 'Amount': 5217, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 19, 'Sold': 36, 'Amount': 3996.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 7, 'Sold': 479, 'Amount': 53648, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 37, 'Sold': 77, 'Amount': 8566.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 48, 'Sold': 121, 'Amount': 6438, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 19, 'Sold': 33, 'Amount': 3663.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 6, 'Sold': 407, 'Amount': 45584, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 6, 'Sold': 155, 'Amount': 17243.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 171, 'Amount': 7659, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 23, 'Sold': 13, 'Amount': 1443.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 18, 'Sold': 62, 'Amount': 6944, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 48, 'Sold': 319, 'Amount': 35488.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 40, 'Sold': 141, 'Amount': 3996, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 38, 'Sold': 44, 'Amount': 4884.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 16, 'Sold': 94, 'Amount': 10528, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 31, 'Sold': 304, 'Amount': 33820, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 17, 'Sold': 368, 'Amount': 3663, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 46, 'Sold': 21, 'Amount': 2331.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 30, 'Sold': 120, 'Amount': 13440, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 28, 'Sold': 67, 'Amount': 7453.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 22, 'Sold': 371, 'Amount': 1443, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 36, 'Sold': 49, 'Amount': 5439.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 6, 'Sold': 153, 'Amount': 17136, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 127, 'Amount': 14128.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 99, 'Amount': 4884, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 44, 'Sold': 14, 'Amount': 1554.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 45, 'Sold': 411, 'Amount': 46032, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 35, 'Sold': 434, 'Amount': 48282.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 35, 'Sold': 251, 'Amount': 2331, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 49, 'Sold': 42, 'Amount': 4662.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 35, 'Sold': 495, 'Amount': 55440, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 22, 'Sold': 77, 'Amount': 8566.25, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 34, 'Sold': 208, 'Amount': 5439, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 43, 'Sold': 22, 'Amount': 2442.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 41, 'Sold': 410, 'Amount': 45920, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 24, 'Sold': 242, 'Amount': 26922.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 46, 'Sold': 323, 'Amount': 1554, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 38, 'Sold': 42, 'Amount': 4662.5, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 35, 'Sold': 483, 'Amount': 54096, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 40, 'Sold': 159, 'Amount': 17688.75, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 12, 'Sold': 533, 'Amount': 4662, 'Country': 'France', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 42, 'Sold': 80, 'Amount': 2460, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 19, 'Sold': 16, 'Amount': 184, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 36, 'Sold': 25, 'Amount': 188, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 6, 'Sold': 51, 'Amount': 229.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 3, 'Sold': 83, 'Amount': 1309.74, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 19, 'Sold': 29, 'Amount': 565.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 84, 'Amount': 125921, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 7, 'Sold': 26, 'Amount': 41483, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 48, 'Sold': 54, 'Amount': 92016, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 22, 'Sold': 76, 'Amount': 456.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 10, 'Sold': 34, 'Amount': 969, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 3, 'Sold': 72, 'Amount': 1548, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 10, 'Sold': 44, 'Amount': 4884.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 30, 'Sold': 76, 'Amount': 2375, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 24, 'Sold': 300, 'Amount': 3600, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 28, 'Sold': 148, 'Amount': 1258, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 32, 'Sold': 392, 'Amount': 1960, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 48, 'Sold': 76, 'Amount': 1237.28, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 32, 'Sold': 141, 'Amount': 2820, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 16, 'Sold': 371, 'Amount': 559839, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 220, 'Amount': 351120, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 26, 'Sold': 317, 'Amount': 541753, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 34, 'Sold': 416, 'Amount': 3328, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 43, 'Sold': 346, 'Amount': 10034, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 172, 'Amount': 2924, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 27, 'Sold': 205, 'Amount': 22960, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 10, 'Sold': 291, 'Amount': 8875.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 32, 'Sold': 374, 'Amount': 4207.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 30, 'Sold': 63, 'Amount': 488.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 23, 'Sold': 314, 'Amount': 1334.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 23, 'Sold': 69, 'Amount': 1071.57, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 32, 'Sold': 487, 'Amount': 9374.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 21, 'Sold': 89, 'Amount': 134034, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 39, 'Sold': 69, 'Amount': 110072.25, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 49, 'Sold': 212, 'Amount': 361672, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 19, 'Sold': 239, 'Amount': 1493.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 3, 'Sold': 72, 'Amount': 2034, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 14, 'Sold': 149, 'Amount': 2421.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 50, 'Sold': 180, 'Amount': 20025, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 39, 'Sold': 397, 'Amount': 12009.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 285, 'Amount': 3135, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 11, 'Sold': 481, 'Amount': 3607.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 347, 'Amount': 1388, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 263, 'Amount': 4018.64, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 40, 'Sold': 514, 'Amount': 9766, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 49, 'Sold': 370, 'Amount': 223351, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 11, 'Sold': 251, 'Amount': 400345, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 30, 'Sold': 311, 'Amount': 528389, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 42, 'Sold': 179, 'Amount': 1074, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 48, 'Sold': 452, 'Amount': 12656, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 35, 'Sold': 400, 'Amount': 6400, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 33, 'Sold': 456, 'Amount': 31635, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 5, 'Sold': 60, 'Amount': 1845, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 50, 'Sold': 38, 'Amount': 437, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 35, 'Sold': 78, 'Amount': 585.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 33, 'Sold': 24, 'Amount': 108, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 9, 'Sold': 82, 'Amount': 1293.96, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 3, 'Sold': 16, 'Amount': 312, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 16, 'Sold': 98, 'Amount': 146907, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 29, 'Sold': 61, 'Amount': 97325.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 3, 'Sold': 38, 'Amount': 64752, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 8, 'Sold': 59, 'Amount': 354.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 18, 'Sold': 16, 'Amount': 456, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 30, 'Sold': 67, 'Amount': 1440.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 4, 'Sold': 28, 'Amount': 3108.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 20, 'Sold': 468, 'Amount': 14625, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 44, 'Sold': 132, 'Amount': 1584, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 9, 'Sold': 353, 'Amount': 3000.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 32, 'Sold': 269, 'Amount': 1345, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 39, 'Sold': 232, 'Amount': 3776.96, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 21, 'Sold': 252, 'Amount': 5040, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 35, 'Sold': 249, 'Amount': 375741, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 23, 'Sold': 298, 'Amount': 475608, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 14, 'Sold': 216, 'Amount': 369144, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 50, 'Amount': 400, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 28, 'Sold': 433, 'Amount': 12557, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 35, 'Sold': 53, 'Amount': 901, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 46, 'Sold': 320, 'Amount': 35840, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 14, 'Sold': 479, 'Amount': 14609.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 32, 'Sold': 286, 'Amount': 3217.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 33, 'Sold': 398, 'Amount': 3084.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 30, 'Sold': 328, 'Amount': 1394, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 50, 'Sold': 379, 'Amount': 5885.87, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 20, 'Sold': 460, 'Amount': 8855, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 28, 'Sold': 148, 'Amount': 222888, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 62, 'Amount': 98905.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 36, 'Sold': 87, 'Amount': 148422, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 48, 'Sold': 400, 'Amount': 2500, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 6, 'Sold': 277, 'Amount': 7825.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 137, 'Amount': 2226.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 12, 'Sold': 221, 'Amount': 24586.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 22, 'Sold': 302, 'Amount': 9135.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 39, 'Sold': 77, 'Amount': 847, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 7, 'Sold': 131, 'Amount': 982.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 21, 'Sold': 425, 'Amount': 1700, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 99, 'Amount': 1512.72, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 31, 'Sold': 73, 'Amount': 1387, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 19, 'Sold': 279, 'Amount': 205363, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 12, 'Sold': 337, 'Amount': 537515, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 43, 'Sold': 399, 'Amount': 677901, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 11, 'Sold': 381, 'Amount': 2286, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 460, 'Amount': 12880, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 17, 'Sold': 119, 'Amount': 1904, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 20, 'Sold': 234, 'Amount': 8547, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 50, 'Sold': 87, 'Amount': 2675.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 5, 'Sold': 85, 'Amount': 977.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 24, 'Sold': 83, 'Amount': 623, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 3, 'Sold': 24, 'Amount': 108, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 7, 'Sold': 27, 'Amount': 426.06, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 46, 'Sold': 52, 'Amount': 1014, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 60, 'Amount': 89945, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 32, 'Amount': 51056, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 12, 'Amount': 20448, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 34, 'Sold': 52, 'Amount': 312.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 15, 'Sold': 96, 'Amount': 2736, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 74, 'Amount': 1591, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 5, 'Sold': 61, 'Amount': 6771.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 44, 'Sold': 487, 'Amount': 15218.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 307, 'Amount': 3684, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 5, 'Sold': 202, 'Amount': 1717, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 29, 'Sold': 212, 'Amount': 1060, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 264, 'Amount': 4297.92, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 35, 'Sold': 451, 'Amount': 9020, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 48, 'Sold': 293, 'Amount': 442137, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 38, 'Sold': 422, 'Amount': 673512, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 50, 'Sold': 205, 'Amount': 350345, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 38, 'Sold': 122, 'Amount': 976, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 39, 'Sold': 121, 'Amount': 3509, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 34, 'Sold': 103, 'Amount': 1751, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 332, 'Amount': 37184, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 1, 'Sold': 464, 'Amount': 14152, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 82, 'Amount': 922.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 15, 'Sold': 188, 'Amount': 1457, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 26, 'Sold': 182, 'Amount': 773.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 31, 'Sold': 398, 'Amount': 6180.94, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 23, 'Sold': 173, 'Amount': 3330.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 28, 'Sold': 118, 'Amount': 177708, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 28, 'Sold': 122, 'Amount': 194620.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 49, 'Sold': 458, 'Amount': 781348, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 5, 'Sold': 139, 'Amount': 868.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 415, 'Amount': 11723.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 297, 'Amount': 4826.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 29, 'Sold': 298, 'Amount': 33152.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 43, 'Sold': 183, 'Amount': 5535.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 174, 'Amount': 1914, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 48, 'Sold': 217, 'Amount': 1627.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 32, 'Sold': 175, 'Amount': 700, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 19, 'Sold': 496, 'Amount': 7578.88, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 31, 'Sold': 236, 'Amount': 4484, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 211, 'Amount': 445203, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 4, 'Sold': 351, 'Amount': 559845, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 34, 'Sold': 115, 'Amount': 195385, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 18, 'Sold': 70, 'Amount': 420, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 50, 'Sold': 539, 'Amount': 15092, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 5, 'Sold': 262, 'Amount': 4192, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 19, 'Sold': 472, 'Amount': 19314, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 39, 'Sold': 59, 'Amount': 443, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 29, 'Sold': 371, 'Amount': 3153.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 20, 'Sold': 277, 'Amount': 2146.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 22, 'Sold': 503, 'Amount': 3772.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 27, 'Amount': 203, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 29, 'Sold': 455, 'Amount': 3867.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 38, 'Sold': 195, 'Amount': 1511.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 42, 'Sold': 216, 'Amount': 1620, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 35, 'Sold': 17, 'Amount': 128, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 21, 'Sold': 201, 'Amount': 1708.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 13, 'Sold': 73, 'Amount': 565.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 22, 'Sold': 183, 'Amount': 1372.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 6, 'Sold': 23, 'Amount': 173, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 26, 'Sold': 143, 'Amount': 1215.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 31, 'Sold': 380, 'Amount': 2945, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 2, 'Sold': 289, 'Amount': 2167.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 18, 'Sold': 88, 'Amount': 660.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 16, 'Sold': 365, 'Amount': 3102.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 46, 'Sold': 307, 'Amount': 2379.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 43, 'Sold': 109, 'Amount': 817.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 47, 'Sold': 83, 'Amount': 623, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 48, 'Sold': 70, 'Amount': 595, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 44, 'Sold': 471, 'Amount': 3650.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 31, 'Sold': 493, 'Amount': 3697.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 6, 'Sold': 66, 'Amount': 495.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 17, 'Sold': 54, 'Amount': 459, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 29, 'Sold': 493, 'Amount': 3820.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 8, 'Sold': 519, 'Amount': 3892.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 1, 'Sold': 90, 'Amount': 675.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 23, 'Sold': 121, 'Amount': 1028.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 7, 'Sold': 175, 'Amount': 1356.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 26, 'Sold': 116, 'Amount': 870, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 10, 'Sold': 55, 'Amount': 413, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 5, 'Sold': 369, 'Amount': 3136.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 18, 'Sold': 500, 'Amount': 3875, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 45, 'Sold': 85, 'Amount': 637.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 32, 'Sold': 67, 'Amount': 503, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 46, 'Sold': 66, 'Amount': 561, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 17, 'Sold': 444, 'Amount': 3441, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 23, 'Sold': 429, 'Amount': 3217.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 18, 'Sold': 58, 'Amount': 261, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 4, 'Sold': 134, 'Amount': 670, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 20, 'Sold': 312, 'Amount': 1326, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 30, 'Sold': 428, 'Amount': 1712, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 46, 'Sold': 12, 'Amount': 54, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 10, 'Sold': 372, 'Amount': 1860, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 33, 'Sold': 265, 'Amount': 1126.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 41, 'Sold': 343, 'Amount': 1372, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 25, 'Sold': 59, 'Amount': 265.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 11, 'Sold': 474, 'Amount': 2370, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 3, 'Sold': 400, 'Amount': 1700, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 13, 'Sold': 394, 'Amount': 1576, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 15, 'Sold': 80, 'Amount': 360, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 26, 'Sold': 152, 'Amount': 760, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 30, 'Sold': 185, 'Amount': 786.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 38, 'Sold': 105, 'Amount': 420, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 28, 'Sold': 80, 'Amount': 360, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 33, 'Sold': 171, 'Amount': 855, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 48, 'Sold': 326, 'Amount': 1385.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 42, 'Sold': 429, 'Amount': 1716, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 22, 'Sold': 96, 'Amount': 432, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 35, 'Sold': 78, 'Amount': 390, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 40, 'Sold': 211, 'Amount': 896.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 41, 'Sold': 530, 'Amount': 2120, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 39, 'Sold': 21, 'Amount': 94.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 4, 'Sold': 334, 'Amount': 1670, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 6, 'Sold': 229, 'Amount': 973.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 34, 'Sold': 228, 'Amount': 912, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 50, 'Sold': 13, 'Amount': 58.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 43, 'Sold': 225, 'Amount': 1125, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 24, 'Sold': 246, 'Amount': 1045.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 31, 'Sold': 292, 'Amount': 1168, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 11, 'Sold': 62, 'Amount': 279, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 17, 'Sold': 141, 'Amount': 705, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 9, 'Sold': 389, 'Amount': 1653.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 25, 'Sold': 438, 'Amount': 1752, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 33, 'Sold': 37, 'Amount': 166.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 45, 'Sold': 431, 'Amount': 2155, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 3, 'Sold': 116, 'Amount': 493, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 3, 'Sold': 512, 'Amount': 2048, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 42, 'Sold': 74, 'Amount': 851, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 10, 'Sold': 338, 'Amount': 4056, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 492, 'Amount': 5535, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 18, 'Sold': 332, 'Amount': 3652, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 50, 'Sold': 68, 'Amount': 782, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 43, 'Sold': 96, 'Amount': 1152, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 40, 'Sold': 302, 'Amount': 3397.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 22, 'Sold': 93, 'Amount': 1023, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 17, 'Sold': 98, 'Amount': 1127, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 49, 'Sold': 295, 'Amount': 3540, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 29, 'Sold': 94, 'Amount': 1057.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 23, 'Sold': 201, 'Amount': 2211, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 19, 'Sold': 97, 'Amount': 1115.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 39, 'Sold': 117, 'Amount': 1404, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 26, 'Sold': 145, 'Amount': 1631.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 29, 'Sold': 525, 'Amount': 5775, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 44, 'Sold': 34, 'Amount': 391, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 49, 'Sold': 248, 'Amount': 2976, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 47, 'Sold': 72, 'Amount': 810, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 32, 'Sold': 452, 'Amount': 4972, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 17, 'Sold': 82, 'Amount': 943, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 7, 'Sold': 297, 'Amount': 3564, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 17, 'Sold': 140, 'Amount': 1575, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 43, 'Sold': 447, 'Amount': 4917, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 4, 'Sold': 56, 'Amount': 644, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 30, 'Sold': 218, 'Amount': 2616, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 9, 'Sold': 304, 'Amount': 3420, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 10, 'Sold': 132, 'Amount': 1452, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 47, 'Sold': 29, 'Amount': 333.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 15, 'Sold': 236, 'Amount': 2832, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 35, 'Sold': 102, 'Amount': 1147.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 22, 'Sold': 357, 'Amount': 3927, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 48, 'Sold': 20, 'Amount': 230, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 27, 'Sold': 299, 'Amount': 3588, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 36, 'Sold': 372, 'Amount': 4185, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 17, 'Sold': 190, 'Amount': 2090, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 11, 'Sold': 93, 'Amount': 1069.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 23, 'Sold': 394, 'Amount': 4728, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 27, 'Sold': 452, 'Amount': 5085, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 34, 'Sold': 347, 'Amount': 3817, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 15, 'Sold': 50, 'Amount': 789, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 46, 'Sold': 140, 'Amount': 2279.2, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 49, 'Sold': 338, 'Amount': 5249.14, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 205, 'Amount': 3132.4, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 43, 'Sold': 77, 'Amount': 1215.06, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 9, 'Sold': 377, 'Amount': 6137.56, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 49, 'Sold': 442, 'Amount': 6864.26, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 10, 'Sold': 246, 'Amount': 3758.88, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 15, 'Sold': 59, 'Amount': 931.02, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 27, 'Sold': 430, 'Amount': 7000.4, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 20, 'Sold': 420, 'Amount': 6522.6, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 16, 'Sold': 232, 'Amount': 3544.96, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 8, 'Sold': 17, 'Amount': 268.26, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 3, 'Sold': 323, 'Amount': 5258.44, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 10, 'Sold': 329, 'Amount': 5109.37, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 32, 'Sold': 528, 'Amount': 8067.84, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 25, 'Sold': 61, 'Amount': 962.58, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 28, 'Sold': 413, 'Amount': 6723.64, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 23, 'Sold': 494, 'Amount': 7671.82, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 17, 'Sold': 456, 'Amount': 6967.68, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 5, 'Sold': 39, 'Amount': 615.42, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 48, 'Sold': 255, 'Amount': 4151.4, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 9, 'Sold': 349, 'Amount': 5419.97, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 4, 'Sold': 175, 'Amount': 2674, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 36, 'Sold': 56, 'Amount': 883.68, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 43, 'Sold': 188, 'Amount': 3060.64, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 29, 'Sold': 179, 'Amount': 2779.87, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 47, 'Sold': 247, 'Amount': 3774.16, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 2, 'Sold': 81, 'Amount': 1278.18, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 38, 'Sold': 126, 'Amount': 2051.28, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 8, 'Sold': 500, 'Amount': 7765, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 29, 'Sold': 495, 'Amount': 7563.6, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 45, 'Sold': 67, 'Amount': 1057.26, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 41, 'Sold': 116, 'Amount': 1888.48, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 48, 'Sold': 127, 'Amount': 1972.31, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 4, 'Sold': 416, 'Amount': 6356.48, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 28, 'Sold': 85, 'Amount': 1341.3, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 3, 'Sold': 301, 'Amount': 4900.28, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 33, 'Sold': 360, 'Amount': 5590.8, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 30, 'Sold': 298, 'Amount': 4553.44, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 32, 'Sold': 77, 'Amount': 2367.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 44, 'Sold': 89, 'Amount': 2781.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 21, 'Sold': 179, 'Amount': 5459.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 43, 'Sold': 344, 'Amount': 10406, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 21, 'Sold': 94, 'Amount': 2890.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 2, 'Sold': 481, 'Amount': 15031.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 6, 'Sold': 57, 'Amount': 1738.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 32, 'Sold': 463, 'Amount': 14005.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 36, 'Sold': 17, 'Amount': 522.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 42, 'Sold': 404, 'Amount': 12625, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 42, 'Sold': 402, 'Amount': 12261, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 23, 'Sold': 531, 'Amount': 16062.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 13, 'Sold': 74, 'Amount': 2275.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 45, 'Sold': 210, 'Amount': 6562.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 29, 'Sold': 450, 'Amount': 13725, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 16, 'Sold': 432, 'Amount': 13068, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 10, 'Sold': 29, 'Amount': 891.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 48, 'Sold': 224, 'Amount': 7000, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 8, 'Sold': 63, 'Amount': 1921.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 10, 'Sold': 258, 'Amount': 7804.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 2, 'Sold': 22, 'Amount': 676.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 7, 'Sold': 61, 'Amount': 1906.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 14, 'Sold': 227, 'Amount': 6923.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 39, 'Sold': 263, 'Amount': 7955.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 17, 'Sold': 47, 'Amount': 1445.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 36, 'Sold': 341, 'Amount': 10656.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 10, 'Sold': 144, 'Amount': 4392, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 40, 'Sold': 374, 'Amount': 11313.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 42, 'Sold': 73, 'Amount': 2244.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 37, 'Sold': 496, 'Amount': 15500, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 21, 'Sold': 416, 'Amount': 12688, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 39, 'Sold': 415, 'Amount': 12553.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 17, 'Sold': 48, 'Amount': 1476, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 17, 'Sold': 500, 'Amount': 15625, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 34, 'Sold': 364, 'Amount': 11102, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 34, 'Sold': 310, 'Amount': 9377.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 7, 'Sold': 37, 'Amount': 1137.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 41, 'Sold': 426, 'Amount': 13312.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 44, 'Sold': 258, 'Amount': 7869, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 29, 'Sold': 344, 'Amount': 10406, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 25, 'Sold': 86, 'Amount': 1677, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 26, 'Sold': 318, 'Amount': 6360, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 14, 'Sold': 97, 'Amount': 1867.25, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 1, 'Sold': 264, 'Amount': 5016, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 12, 'Amount': 234, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 50, 'Sold': 479, 'Amount': 9580, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 44, 'Sold': 478, 'Amount': 9201.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 33, 'Sold': 382, 'Amount': 7258, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 30, 'Sold': 29, 'Amount': 565.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 43, 'Sold': 85, 'Amount': 1700, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 28, 'Sold': 480, 'Amount': 9240, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 25, 'Sold': 142, 'Amount': 2698, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 13, 'Sold': 98, 'Amount': 1911, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 36, 'Sold': 155, 'Amount': 3100, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 21, 'Sold': 432, 'Amount': 8316, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 45, 'Sold': 482, 'Amount': 9158, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 30, 'Sold': 14, 'Amount': 273, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 37, 'Sold': 442, 'Amount': 8840, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 4, 'Sold': 95, 'Amount': 1828.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 21, 'Sold': 191, 'Amount': 3629, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 46, 'Sold': 51, 'Amount': 994.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 1, 'Sold': 403, 'Amount': 8060, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 26, 'Sold': 152, 'Amount': 2926, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 1, 'Sold': 399, 'Amount': 7581, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 45, 'Sold': 14, 'Amount': 273, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 39, 'Sold': 183, 'Amount': 3660, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 45, 'Sold': 124, 'Amount': 2387, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 44, 'Sold': 125, 'Amount': 2375, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 39, 'Sold': 77, 'Amount': 1501.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 6, 'Sold': 313, 'Amount': 6260, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 19, 'Sold': 115, 'Amount': 2213.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 2, 'Sold': 254, 'Amount': 4826, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 46, 'Sold': 100, 'Amount': 1950, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 22, 'Sold': 387, 'Amount': 7740, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 22, 'Sold': 455, 'Amount': 8758.75, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 19, 'Sold': 377, 'Amount': 7163, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 37, 'Sold': 21, 'Amount': 409.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 33, 'Sold': 292, 'Amount': 5840, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 23, 'Sold': 142, 'Amount': 2733.5, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 16, 'Sold': 326, 'Amount': 6194, 'Country': 'Germany', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 22, 'Sold': 60, 'Amount': 102240, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 30, 'Sold': 127, 'Amount': 217043, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 24, 'Sold': 419, 'Amount': 714814, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 31, 'Sold': 264, 'Amount': 448536, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 10, 'Sold': 28, 'Amount': 47712, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 44, 'Sold': 179, 'Amount': 305911, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 19, 'Sold': 407, 'Amount': 694342, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 7, 'Sold': 298, 'Amount': 506302, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 27, 'Sold': 86, 'Amount': 146544, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 41, 'Sold': 318, 'Amount': 543462, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 40, 'Sold': 134, 'Amount': 228604, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 6, 'Sold': 322, 'Amount': 547078, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 11, 'Sold': 76, 'Amount': 129504, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 39, 'Sold': 177, 'Amount': 302493, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 10, 'Sold': 216, 'Amount': 368496, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 45, 'Sold': 172, 'Amount': 292228, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 50, 'Sold': 16, 'Amount': 27264, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 48, 'Sold': 471, 'Amount': 804939, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 35, 'Sold': 468, 'Amount': 798408, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 6, 'Sold': 516, 'Amount': 876684, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 33, 'Sold': 70, 'Amount': 119280, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 9, 'Sold': 383, 'Amount': 654547, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 9, 'Sold': 152, 'Amount': 259312, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 35, 'Sold': 381, 'Amount': 647319, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 45, 'Sold': 46, 'Amount': 78384, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 10, 'Sold': 76, 'Amount': 129884, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 17, 'Sold': 190, 'Amount': 324140, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 22, 'Sold': 481, 'Amount': 817219, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 21, 'Sold': 41, 'Amount': 69864, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 41, 'Sold': 361, 'Amount': 616949, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 26, 'Sold': 60, 'Amount': 102360, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 44, 'Sold': 171, 'Amount': 290529, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 27, 'Sold': 23, 'Amount': 39192, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 18, 'Sold': 305, 'Amount': 521245, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 14, 'Sold': 475, 'Amount': 810350, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 44, 'Sold': 519, 'Amount': 881781, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 45, 'Sold': 70, 'Amount': 119280, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 38, 'Sold': 346, 'Amount': 591314, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 21, 'Sold': 252, 'Amount': 429912, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 9, 'Sold': 524, 'Amount': 890276, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 42, 'Sold': 56, 'Amount': 83949, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 24, 'Sold': 165, 'Amount': 248985, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 48, 'Sold': 409, 'Amount': 615954, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 28, 'Sold': 456, 'Amount': 777981, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 4, 'Sold': 36, 'Amount': 53969, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 34, 'Sold': 329, 'Amount': 496461, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 20, 'Sold': 108, 'Amount': 162648, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 5, 'Sold': 434, 'Amount': 683544, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 34, 'Sold': 41, 'Amount': 61464, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 42, 'Sold': 148, 'Amount': 223332, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 46, 'Sold': 54, 'Amount': 81324, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 15, 'Sold': 313, 'Amount': 739007, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 12, 'Sold': 24, 'Amount': 35981, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 36, 'Sold': 304, 'Amount': 458736, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 19, 'Sold': 346, 'Amount': 521076, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 25, 'Sold': 503, 'Amount': 650566, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 36, 'Sold': 63, 'Amount': 94442, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 38, 'Sold': 136, 'Amount': 205224, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 28, 'Sold': 300, 'Amount': 451800, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 5, 'Sold': 504, 'Amount': 753997, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 10, 'Sold': 92, 'Amount': 137913, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 29, 'Sold': 448, 'Amount': 676032, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 22, 'Sold': 367, 'Amount': 552702, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 26, 'Sold': 288, 'Amount': 469187, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 34, 'Sold': 28, 'Amount': 41977, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 45, 'Sold': 409, 'Amount': 617181, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 9, 'Sold': 204, 'Amount': 307224, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 7, 'Sold': 475, 'Amount': 755496, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 40, 'Sold': 53, 'Amount': 79452, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 4, 'Sold': 365, 'Amount': 550785, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 37, 'Sold': 100, 'Amount': 150600, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 14, 'Sold': 97, 'Amount': 712025, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 35, 'Sold': 57, 'Amount': 85448, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 42, 'Sold': 267, 'Amount': 402903, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 7, 'Sold': 248, 'Amount': 373488, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 36, 'Sold': 454, 'Amount': 496169, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 37, 'Sold': 42, 'Amount': 62963, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 12, 'Sold': 64, 'Amount': 96576, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 45, 'Sold': 302, 'Amount': 454812, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 12, 'Sold': 133, 'Amount': 145403, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 11, 'Sold': 36, 'Amount': 57438, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 16, 'Sold': 240, 'Amount': 383040, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 44, 'Sold': 314, 'Amount': 500908.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 1, 'Sold': 442, 'Amount': 704990, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 18, 'Sold': 14, 'Amount': 22337, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 38, 'Sold': 204, 'Amount': 325584, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 26, 'Sold': 179, 'Amount': 285549.75, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 33, 'Sold': 179, 'Amount': 285505, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 41, 'Sold': 76, 'Amount': 121258, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 20, 'Sold': 269, 'Amount': 429324, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 44, 'Sold': 340, 'Amount': 542385, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 47, 'Sold': 435, 'Amount': 693825, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 24, 'Sold': 15, 'Amount': 23932.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 26, 'Sold': 98, 'Amount': 156408, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 1, 'Sold': 355, 'Amount': 566313.75, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 23, 'Sold': 439, 'Amount': 700205, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 23, 'Sold': 42, 'Amount': 67011, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 32, 'Sold': 228, 'Amount': 363888, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 20, 'Sold': 123, 'Amount': 196215.75, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 35, 'Sold': 75, 'Amount': 119625, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 39, 'Sold': 11, 'Amount': 17550.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 48, 'Sold': 154, 'Amount': 245784, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 3, 'Sold': 145, 'Amount': 231311.25, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 22, 'Sold': 461, 'Amount': 735295, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 30, 'Sold': 35, 'Amount': 55842.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 48, 'Sold': 285, 'Amount': 454860, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 26, 'Sold': 493, 'Amount': 786458.25, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 42, 'Sold': 444, 'Amount': 708180, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 13, 'Sold': 10, 'Amount': 15955, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 46, 'Sold': 376, 'Amount': 600096, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 45, 'Sold': 278, 'Amount': 443479.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 40, 'Sold': 245, 'Amount': 390775, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 40, 'Sold': 64, 'Amount': 102112, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 34, 'Sold': 301, 'Amount': 480396, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 2, 'Sold': 61, 'Amount': 97310.25, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 7, 'Sold': 294, 'Amount': 468930, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 30, 'Sold': 69, 'Amount': 110089.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 9, 'Sold': 216, 'Amount': 344736, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 33, 'Sold': 326, 'Amount': 520051.5, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 17, 'Sold': 368, 'Amount': 586960, 'Country': 'Germany', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 42, 'Sold': 42, 'Amount': 252.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 298, 'Amount': 2384, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 12, 'Sold': 203, 'Amount': 1268.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 31, 'Sold': 358, 'Amount': 2148, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 24, 'Sold': 89, 'Amount': 534.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 12, 'Sold': 110, 'Amount': 880, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 32, 'Sold': 467, 'Amount': 2918.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 30, 'Sold': 259, 'Amount': 1554, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 49, 'Sold': 21, 'Amount': 126.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 3, 'Sold': 368, 'Amount': 2944, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 38, 'Sold': 56, 'Amount': 350, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 13, 'Sold': 400, 'Amount': 2400, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 26, 'Sold': 82, 'Amount': 492.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 10, 'Sold': 347, 'Amount': 2776, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 31, 'Sold': 278, 'Amount': 1737.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 1, 'Sold': 196, 'Amount': 1176, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 25, 'Sold': 15, 'Amount': 90.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 10, 'Sold': 460, 'Amount': 3680, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 35, 'Sold': 92, 'Amount': 575, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 33, 'Sold': 261, 'Amount': 1566, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 15, 'Sold': 25, 'Amount': 150.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 22, 'Sold': 465, 'Amount': 3720, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 1, 'Sold': 166, 'Amount': 1037.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 41, 'Sold': 340, 'Amount': 2040, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 43, 'Sold': 53, 'Amount': 318.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 19, 'Sold': 365, 'Amount': 2920, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 37, 'Sold': 192, 'Amount': 1200, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 37, 'Sold': 125, 'Amount': 750, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 11, 'Sold': 43, 'Amount': 258.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 50, 'Sold': 196, 'Amount': 1568, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 19, 'Sold': 221, 'Amount': 1381.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 13, 'Sold': 177, 'Amount': 1062, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 42, 'Sold': 11, 'Amount': 66.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 20, 'Sold': 324, 'Amount': 2592, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 18, 'Sold': 269, 'Amount': 1681.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 46, 'Sold': 88, 'Amount': 528, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 22, 'Sold': 93, 'Amount': 558.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 1, 'Sold': 275, 'Amount': 2200, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 20, 'Sold': 84, 'Amount': 525, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 7, 'Sold': 361, 'Amount': 2166, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 37, 'Sold': 10, 'Amount': 285, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 13, 'Sold': 255, 'Amount': 7395, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 87, 'Amount': 2457.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 11, 'Sold': 118, 'Amount': 3304, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 16, 'Sold': 59, 'Amount': 1681.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 5, 'Sold': 433, 'Amount': 12557, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 1, 'Sold': 93, 'Amount': 2627.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 23, 'Sold': 182, 'Amount': 5096, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 8, 'Sold': 75, 'Amount': 2137.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 36, 'Sold': 477, 'Amount': 13833, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 44, 'Sold': 449, 'Amount': 12684.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 45, 'Sold': 125, 'Amount': 3500, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 50, 'Sold': 87, 'Amount': 2479.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 23, 'Sold': 376, 'Amount': 10904, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 12, 'Sold': 382, 'Amount': 10791.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 4, 'Sold': 110, 'Amount': 3080, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 10, 'Sold': 25, 'Amount': 712.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 8, 'Sold': 50, 'Amount': 1450, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 30, 'Sold': 277, 'Amount': 7825.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 30, 'Sold': 143, 'Amount': 4004, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 21, 'Sold': 54, 'Amount': 1539, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 30, 'Sold': 325, 'Amount': 9425, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 18, 'Sold': 379, 'Amount': 10706.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 21, 'Sold': 222, 'Amount': 6216, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 24, 'Sold': 33, 'Amount': 940.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 32, 'Sold': 114, 'Amount': 3306, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 35, 'Sold': 438, 'Amount': 12373.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 20, 'Sold': 460, 'Amount': 12880, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 42, 'Sold': 22, 'Amount': 627, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 34, 'Sold': 137, 'Amount': 3973, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 13, 'Sold': 268, 'Amount': 7571, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 12, 'Sold': 203, 'Amount': 5684, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 7, 'Sold': 27, 'Amount': 769.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 49, 'Sold': 176, 'Amount': 5104, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 21, 'Sold': 233, 'Amount': 6582.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 45, 'Sold': 474, 'Amount': 13272, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 9, 'Sold': 48, 'Amount': 1368, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 32, 'Sold': 358, 'Amount': 10382, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 39, 'Sold': 364, 'Amount': 10283, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 37, 'Sold': 312, 'Amount': 8736, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 36, 'Sold': 82, 'Amount': 1763, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 35, 'Sold': 251, 'Amount': 4267, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 32, 'Sold': 130, 'Amount': 2112.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 15, 'Sold': 248, 'Amount': 3968, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 31, 'Sold': 74, 'Amount': 1591, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 13, 'Sold': 64, 'Amount': 1088, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 12, 'Sold': 53, 'Amount': 861.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 43, 'Sold': 81, 'Amount': 1296, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 45, 'Sold': 20, 'Amount': 430, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 16, 'Sold': 62, 'Amount': 1054, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 15, 'Sold': 437, 'Amount': 7101.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 47, 'Sold': 410, 'Amount': 6560, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 46, 'Sold': 79, 'Amount': 1698.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 45, 'Sold': 362, 'Amount': 6154, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 20, 'Sold': 51, 'Amount': 828.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 41, 'Sold': 527, 'Amount': 8432, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 25, 'Sold': 50, 'Amount': 1075, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 26, 'Sold': 121, 'Amount': 2057, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 1, 'Sold': 308, 'Amount': 5005, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 25, 'Sold': 225, 'Amount': 3600, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 49, 'Sold': 79, 'Amount': 1698.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 8, 'Sold': 119, 'Amount': 2023, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 5, 'Sold': 207, 'Amount': 3363.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 27, 'Sold': 321, 'Amount': 5136, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 17, 'Sold': 16, 'Amount': 344, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 8, 'Sold': 414, 'Amount': 7038, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 48, 'Sold': 237, 'Amount': 3851.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 26, 'Sold': 457, 'Amount': 7312, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 35, 'Sold': 40, 'Amount': 860, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 18, 'Sold': 75, 'Amount': 1275, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 33, 'Sold': 423, 'Amount': 6873.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 17, 'Sold': 73, 'Amount': 1168, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 15, 'Sold': 17, 'Amount': 365.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 25, 'Sold': 226, 'Amount': 3842, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 47, 'Sold': 114, 'Amount': 1852.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 47, 'Sold': 487, 'Amount': 7792, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 24, 'Sold': 73, 'Amount': 1569.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 9, 'Sold': 397, 'Amount': 6749, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 1, 'Sold': 261, 'Amount': 4241.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 16, 'Sold': 288, 'Amount': 4608, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 22, 'Sold': 17, 'Amount': 1887.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 40, 'Sold': 439, 'Amount': 49168, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 43, 'Sold': 247, 'Amount': 27478.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 7, 'Sold': 81, 'Amount': 1887, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 5, 'Sold': 26, 'Amount': 2886.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 10, 'Sold': 453, 'Amount': 50736, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 18, 'Sold': 177, 'Amount': 19691.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 17, 'Sold': 294, 'Amount': 1887, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 49, 'Sold': 28, 'Amount': 3108.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 43, 'Sold': 53, 'Amount': 5936, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 26, 'Sold': 468, 'Amount': 52065, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 48, 'Sold': 407, 'Amount': 2886, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 37, 'Sold': 81, 'Amount': 8991.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 2, 'Sold': 414, 'Amount': 46368, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 7, 'Sold': 235, 'Amount': 26143.75, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 42, 'Sold': 144, 'Amount': 2886, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 31, 'Sold': 99, 'Amount': 10989.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 37, 'Sold': 489, 'Amount': 54768, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 48, 'Sold': 225, 'Amount': 25031.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 47, 'Sold': 363, 'Amount': 8991, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 32, 'Sold': 19, 'Amount': 2109.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 36, 'Sold': 142, 'Amount': 15904, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 15, 'Sold': 166, 'Amount': 18467.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 48, 'Sold': 81, 'Amount': 1221, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 9, 'Sold': 24, 'Amount': 2664.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 46, 'Sold': 385, 'Amount': 43120, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 15, 'Sold': 277, 'Amount': 30816.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 43, 'Sold': 223, 'Amount': 10989, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 33, 'Sold': 10, 'Amount': 1110.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 3, 'Sold': 91, 'Amount': 10192, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 32, 'Sold': 278, 'Amount': 30927.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 41, 'Sold': 364, 'Amount': 2664, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 24, 'Sold': 28, 'Amount': 3108.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 28, 'Sold': 315, 'Amount': 35280, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 38, 'Sold': 298, 'Amount': 33152.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 30, 'Sold': 514, 'Amount': 9879, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 3, 'Sold': 55, 'Amount': 6105.5, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 41, 'Sold': 90, 'Amount': 10080, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 17, 'Sold': 281, 'Amount': 31261.25, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 47, 'Sold': 337, 'Amount': 1110, 'Country': 'Germany', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 38, 'Sold': 15, 'Amount': 1665.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 39, 'Sold': 332, 'Amount': 37184, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 17, 'Sold': 121, 'Amount': 13461.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 45, 'Sold': 531, 'Amount': 5883, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 39, 'Sold': 24, 'Amount': 2664.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 33, 'Sold': 67, 'Amount': 7504, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 26, 'Sold': 163, 'Amount': 18133.75, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 17, 'Sold': 77, 'Amount': 9768, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 50, 'Sold': 73, 'Amount': 8103.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 49, 'Sold': 169, 'Amount': 18928, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 20, 'Sold': 450, 'Amount': 50062.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 26, 'Sold': 355, 'Amount': 1665, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 39, 'Sold': 13, 'Amount': 1443.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 7, 'Sold': 421, 'Amount': 47152, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 28, 'Sold': 400, 'Amount': 44500, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 38, 'Sold': 80, 'Amount': 2664, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 48, 'Sold': 47, 'Amount': 5217.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 31, 'Sold': 355, 'Amount': 39760, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 35, 'Sold': 152, 'Amount': 16910, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 21, 'Sold': 175, 'Amount': 8103, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 1, 'Sold': 64, 'Amount': 7104.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 19, 'Sold': 56, 'Amount': 6272, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 25, 'Sold': 146, 'Amount': 16242.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 20, 'Sold': 329, 'Amount': 1443, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 37, 'Sold': 18, 'Amount': 1998.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 40, 'Sold': 257, 'Amount': 28784, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 34, 'Sold': 476, 'Amount': 52955, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 14, 'Sold': 167, 'Amount': 5217, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 23, 'Sold': 64, 'Amount': 7104.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 36, 'Sold': 444, 'Amount': 49728, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 35, 'Sold': 272, 'Amount': 30260, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 31, 'Sold': 519, 'Amount': 7104, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 42, 'Sold': 43, 'Amount': 4773.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 1, 'Sold': 317, 'Amount': 35504, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 27, 'Sold': 485, 'Amount': 53956.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 10, 'Sold': 142, 'Amount': 1998, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 21, 'Sold': 81, 'Amount': 8991.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 22, 'Sold': 335, 'Amount': 37520, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 31, 'Sold': 277, 'Amount': 30816.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 31, 'Sold': 411, 'Amount': 7104, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 11, 'Sold': 100, 'Amount': 11100.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 17, 'Sold': 324, 'Amount': 36288, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 36, 'Sold': 265, 'Amount': 29481.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 24, 'Sold': 281, 'Amount': 4773, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 49, 'Sold': 78, 'Amount': 8658.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 11, 'Sold': 295, 'Amount': 33040, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 49, 'Sold': 288, 'Amount': 32040, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 31, 'Sold': 83, 'Amount': 8991, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 23, 'Sold': 58, 'Amount': 6438.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 311, 'Amount': 34832, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 24, 'Sold': 317, 'Amount': 35266.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 43, 'Sold': 192, 'Amount': 11100, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 40, 'Sold': 38, 'Amount': 817, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 27, 'Sold': 488, 'Amount': 8296, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 44, 'Sold': 199, 'Amount': 3233.75, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 44, 'Sold': 404, 'Amount': 6464, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 60, 'Amount': 1290, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 4, 'Sold': 394, 'Amount': 6698, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 49, 'Sold': 249, 'Amount': 4046.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 22, 'Sold': 308, 'Amount': 4928, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 31, 'Sold': 78, 'Amount': 1677, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 46, 'Sold': 393, 'Amount': 6681, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 19, 'Sold': 373, 'Amount': 6061.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 8, 'Sold': 120, 'Amount': 1920, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 20, 'Sold': 92, 'Amount': 1978, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 3, 'Sold': 229, 'Amount': 3893, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 7, 'Sold': 460, 'Amount': 7475, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 26, 'Sold': 299, 'Amount': 4784, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 46, 'Sold': 12, 'Amount': 258, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 7, 'Sold': 199, 'Amount': 3383, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 35, 'Sold': 61, 'Amount': 991.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 34, 'Sold': 271, 'Amount': 4336, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 23, 'Sold': 55, 'Amount': 1182.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 37, 'Sold': 270, 'Amount': 4590, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 36, 'Sold': 62, 'Amount': 1007.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 24, 'Sold': 529, 'Amount': 8464, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 24, 'Sold': 23, 'Amount': 494.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 18, 'Sold': 487, 'Amount': 8279, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 37, 'Sold': 385, 'Amount': 6256.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 20, 'Sold': 191, 'Amount': 3056, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 7, 'Sold': 51, 'Amount': 1096.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 1, 'Sold': 286, 'Amount': 4862, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 45, 'Sold': 350, 'Amount': 5687.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 43, 'Sold': 453, 'Amount': 7248, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 7, 'Sold': 73, 'Amount': 1569.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 14, 'Sold': 251, 'Amount': 4267, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 33, 'Sold': 405, 'Amount': 6581.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 15, 'Sold': 152, 'Amount': 2432, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 100, 'Amount': 2150, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 26, 'Sold': 236, 'Amount': 4012, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 31, 'Sold': 238, 'Amount': 3867.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 29, 'Sold': 170, 'Amount': 2720, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 7, 'Sold': 52, 'Amount': 1118, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 28, 'Sold': 327, 'Amount': 5559, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 4, 'Sold': 220, 'Amount': 3575, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 44, 'Sold': 211, 'Amount': 3376, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 35, 'Sold': 14, 'Amount': 301, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 27, 'Sold': 300, 'Amount': 5100, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 17, 'Sold': 455, 'Amount': 7393.75, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 49, 'Sold': 167, 'Amount': 2672, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 18, 'Sold': 36, 'Amount': 774, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 29, 'Sold': 378, 'Amount': 6426, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 250, 'Amount': 4062.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 34, 'Sold': 322, 'Amount': 5152, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 59, 'Amount': 1681.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 132, 'Amount': 3828, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 128, 'Amount': 3616, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 28, 'Sold': 138, 'Amount': 3864, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 26, 'Sold': 53, 'Amount': 1510.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 7, 'Sold': 490, 'Amount': 14210, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 13, 'Sold': 93, 'Amount': 2627.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 12, 'Sold': 121, 'Amount': 3388, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 31, 'Sold': 20, 'Amount': 570, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 29, 'Sold': 227, 'Amount': 6583, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 49, 'Sold': 414, 'Amount': 11695.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 25, 'Sold': 440, 'Amount': 12320, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 3, 'Sold': 80, 'Amount': 2280, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 39, 'Sold': 221, 'Amount': 6409, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 27, 'Sold': 492, 'Amount': 13899, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 11, 'Sold': 246, 'Amount': 6888, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 28, 'Sold': 37, 'Amount': 1054.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 48, 'Sold': 361, 'Amount': 10469, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 20, 'Sold': 464, 'Amount': 13108, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 20, 'Sold': 387, 'Amount': 10836, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 12, 'Sold': 34, 'Amount': 969, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 30, 'Sold': 152, 'Amount': 4408, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 3, 'Sold': 222, 'Amount': 6271.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 46, 'Sold': 76, 'Amount': 2128, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 11, 'Sold': 76, 'Amount': 2166, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 22, 'Sold': 431, 'Amount': 12499, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 7, 'Sold': 156, 'Amount': 4407, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 22, 'Sold': 345, 'Amount': 9660, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 23, 'Sold': 51, 'Amount': 1453.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 29, 'Sold': 477, 'Amount': 13833, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 22, 'Sold': 485, 'Amount': 13701.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 47, 'Sold': 453, 'Amount': 12684, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 20, 'Sold': 80, 'Amount': 2280, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 45, 'Sold': 366, 'Amount': 10614, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 18, 'Sold': 179, 'Amount': 5056.75, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 10, 'Sold': 96, 'Amount': 2688, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 46, 'Sold': 51, 'Amount': 1453.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 7, 'Sold': 451, 'Amount': 13079, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 18, 'Sold': 458, 'Amount': 12938.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 21, 'Sold': 214, 'Amount': 5992, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 7, 'Sold': 68, 'Amount': 1938, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 7, 'Sold': 442, 'Amount': 12818, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 5, 'Sold': 166, 'Amount': 4689.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 8, 'Sold': 79, 'Amount': 2212, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 49, 'Sold': 27, 'Amount': 769.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 44, 'Sold': 156, 'Amount': 4524, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 22, 'Sold': 447, 'Amount': 12627.75, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 23, 'Sold': 226, 'Amount': 6328, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 23, 'Sold': 61, 'Amount': 1738.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 16, 'Sold': 158, 'Amount': 4582, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 33, 'Sold': 60, 'Amount': 1695, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 36, 'Sold': 166, 'Amount': 4648, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 4, 'Sold': 74, 'Amount': 444.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 4, 'Sold': 296, 'Amount': 2368, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 19, 'Sold': 500, 'Amount': 3125, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 19, 'Sold': 321, 'Amount': 1926, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 10, 'Sold': 58, 'Amount': 348.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 27, 'Sold': 312, 'Amount': 2496, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 12, 'Sold': 236, 'Amount': 1475, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 47, 'Sold': 542, 'Amount': 3252, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 13, 'Sold': 79, 'Amount': 474.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 38, 'Sold': 165, 'Amount': 1320, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 4, 'Sold': 117, 'Amount': 731.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 50, 'Sold': 195, 'Amount': 1170, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 15, 'Sold': 55, 'Amount': 330.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 44, 'Sold': 79, 'Amount': 632, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 11, 'Sold': 171, 'Amount': 1068.75, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 29, 'Sold': 237, 'Amount': 1422, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 33, 'Sold': 17, 'Amount': 102.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 340, 'Amount': 2720, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 15, 'Sold': 62, 'Amount': 387.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 3, 'Sold': 226, 'Amount': 1356, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 38, 'Sold': 85, 'Amount': 510.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 6, 'Sold': 100, 'Amount': 800, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 48, 'Sold': 385, 'Amount': 2406.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 23, 'Sold': 287, 'Amount': 1722, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 21, 'Sold': 91, 'Amount': 546.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 10, 'Sold': 114, 'Amount': 912, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 24, 'Sold': 494, 'Amount': 3087.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 36, 'Sold': 170, 'Amount': 1020, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 50, 'Sold': 45, 'Amount': 270.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 48, 'Sold': 375, 'Amount': 3000, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 39, 'Sold': 113, 'Amount': 706.25, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 3, 'Sold': 112, 'Amount': 672, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 39, 'Sold': 53, 'Amount': 318.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 21, 'Sold': 336, 'Amount': 2688, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 17, 'Sold': 399, 'Amount': 2493.75, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 11, 'Sold': 281, 'Amount': 1686, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 70, 'Amount': 420.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 19, 'Sold': 445, 'Amount': 3560, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 4, 'Sold': 400, 'Amount': 2500, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 37, 'Sold': 399, 'Amount': 2394, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 47, 'Sold': 78, 'Amount': 468.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 43, 'Sold': 362, 'Amount': 2896, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 2, 'Sold': 228, 'Amount': 1425, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 38, 'Sold': 353, 'Amount': 2118, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 34, 'Sold': 52, 'Amount': 312.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 47, 'Sold': 308, 'Amount': 2464, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 48, 'Sold': 316, 'Amount': 1975, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 11, 'Sold': 465, 'Amount': 2790, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 22, 'Sold': 60, 'Amount': 360.5, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 22, 'Sold': 371, 'Amount': 2968, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 48, 'Sold': 263, 'Amount': 1643.75, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 22, 'Sold': 293, 'Amount': 1758, 'Country': 'United Kingdom', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 48, 'Sold': 81, 'Amount': 138024, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 3, 'Sold': 211, 'Amount': 360599, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 28, 'Sold': 170, 'Amount': 290020, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 244, 'Amount': 414556, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 20, 'Sold': 13, 'Amount': 22152, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 22, 'Sold': 78, 'Amount': 133302, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 29, 'Sold': 219, 'Amount': 373614, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 7, 'Sold': 521, 'Amount': 885179, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 5, 'Sold': 21, 'Amount': 35784, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 28, 'Sold': 162, 'Amount': 276858, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 11, 'Sold': 411, 'Amount': 701166, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 20, 'Sold': 331, 'Amount': 562369, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 27, 'Sold': 14, 'Amount': 23856, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 3, 'Sold': 332, 'Amount': 567388, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 18, 'Sold': 166, 'Amount': 283196, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 28, 'Sold': 77, 'Amount': 130823, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 45, 'Sold': 32, 'Amount': 54528, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 34, 'Sold': 257, 'Amount': 439213, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 38, 'Sold': 54, 'Amount': 92124, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 28, 'Sold': 64, 'Amount': 108736, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 35, 'Sold': 17, 'Amount': 28968, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 47, 'Sold': 147, 'Amount': 251223, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 33, 'Sold': 223, 'Amount': 380438, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 24, 'Sold': 93, 'Amount': 158007, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 49, 'Sold': 55, 'Amount': 93720, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 22, 'Sold': 426, 'Amount': 728034, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 36, 'Sold': 317, 'Amount': 540802, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 16, 'Sold': 212, 'Amount': 360188, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 24, 'Sold': 29, 'Amount': 49416, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 29, 'Sold': 148, 'Amount': 252932, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 33, 'Sold': 63, 'Amount': 107478, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 31, 'Sold': 353, 'Amount': 599747, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 21, 'Sold': 10, 'Amount': 17040, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 42, 'Sold': 354, 'Amount': 604986, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 18, 'Sold': 370, 'Amount': 631220, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 28, 'Sold': 242, 'Amount': 411158, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 23, 'Sold': 61, 'Amount': 103944, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 24, 'Sold': 92, 'Amount': 157228, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 38, 'Sold': 302, 'Amount': 515212, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 43, 'Sold': 501, 'Amount': 851199, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 11, 'Sold': 91, 'Amount': 155064, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 44, 'Sold': 280, 'Amount': 478520, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 47, 'Sold': 303, 'Amount': 516918, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 42, 'Sold': 272, 'Amount': 462128, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 26, 'Sold': 34, 'Amount': 57936, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 33, 'Sold': 377, 'Amount': 644293, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 38, 'Sold': 87, 'Amount': 148422, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 7, 'Sold': 232, 'Amount': 394168, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 50, 'Sold': 13, 'Amount': 22152, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 34, 'Sold': 251, 'Amount': 428959, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 23, 'Sold': 273, 'Amount': 465738, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 10, 'Sold': 510, 'Amount': 866490, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 12, 'Sold': 30, 'Amount': 44975, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 14, 'Sold': 184, 'Amount': 277656, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 39, 'Sold': 486, 'Amount': 731916, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 536, 'Amount': 416722, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 14, 'Sold': 86, 'Amount': 128919, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 18, 'Sold': 131, 'Amount': 197679, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 4, 'Sold': 451, 'Amount': 679206, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 27, 'Sold': 380, 'Amount': 337275, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 53, 'Amount': 79452, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 22, 'Sold': 190, 'Amount': 286710, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 29, 'Sold': 280, 'Amount': 421680, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 34, 'Sold': 396, 'Amount': 803464, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 50, 'Sold': 49, 'Amount': 73456, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 44, 'Sold': 172, 'Amount': 259548, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 4, 'Sold': 275, 'Amount': 414150, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 4, 'Sold': 154, 'Amount': 569620, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 14, 'Sold': 99, 'Amount': 148406, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 47, 'Sold': 401, 'Amount': 605109, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 26, 'Sold': 387, 'Amount': 582822, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 38, 'Sold': 397, 'Amount': 593604, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 49, 'Sold': 10, 'Amount': 14995, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 48, 'Sold': 143, 'Amount': 215787, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 27, 'Sold': 178, 'Amount': 268068, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 20, 'Sold': 151, 'Amount': 230846, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 24, 'Sold': 98, 'Amount': 146907, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 40, 'Sold': 376, 'Amount': 567384, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 16, 'Sold': 269, 'Amount': 405114, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 25, 'Sold': 302, 'Amount': 595103, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 16, 'Sold': 20, 'Amount': 29985, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 45, 'Sold': 150, 'Amount': 226350, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 26, 'Sold': 239, 'Amount': 359934, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 49, 'Sold': 141, 'Amount': 226349, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 3, 'Sold': 27, 'Amount': 40478, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 28, 'Sold': 169, 'Amount': 255021, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 13, 'Sold': 448, 'Amount': 674688, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 34, 'Sold': 313, 'Amount': 452698, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 31, 'Sold': 87, 'Amount': 130418, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 27, 'Sold': 76, 'Amount': 114684, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 175, 'Amount': 263550, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 6, 'Sold': 515, 'Amount': 211359, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 24, 'Sold': 18, 'Amount': 26987, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 4, 'Sold': 361, 'Amount': 544749, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 9, 'Sold': 237, 'Amount': 356922, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 48, 'Sold': 206, 'Amount': 469187, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 22, 'Sold': 38, 'Amount': 56967, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 43, 'Sold': 139, 'Amount': 209751, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 49, 'Sold': 50, 'Amount': 75300, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 19, 'Sold': 152, 'Amount': 771985, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 37, 'Sold': 46, 'Amount': 68959, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 50, 'Sold': 229, 'Amount': 345561, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 30, 'Sold': 233, 'Amount': 350898, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 1, 'Sold': 241, 'Amount': 308794, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 7, 'Sold': 58, 'Amount': 86947, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 31, 'Sold': 385, 'Amount': 580965, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 7, 'Sold': 328, 'Amount': 493968, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 29, 'Sold': 470, 'Amount': 227848, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 28, 'Sold': 63, 'Amount': 94442, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 6, 'Sold': 288, 'Amount': 434592, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 5, 'Sold': 304, 'Amount': 457824, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 20, 'Sold': 407, 'Amount': 361259, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 36, 'Sold': 91, 'Amount': 136414, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 50, 'Sold': 154, 'Amount': 232386, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 7, 'Sold': 222, 'Amount': 334332, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 27, 'Sold': 488, 'Amount': 704530, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 34, 'Sold': 24, 'Amount': 35981, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 39, 'Sold': 122, 'Amount': 184098, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 16, 'Sold': 300, 'Amount': 451800, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 26, 'Sold': 62, 'Amount': 610093, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 15, 'Sold': 94, 'Amount': 140911, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 7, 'Sold': 65, 'Amount': 98085, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 19, 'Sold': 286, 'Amount': 430716, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 48, 'Sold': 340, 'Amount': 731512, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 39, 'Sold': 53, 'Amount': 79452, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 38, 'Sold': 322, 'Amount': 485898, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 12, 'Sold': 471, 'Amount': 709326, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 9, 'Sold': 340, 'Amount': 92938, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 39, 'Sold': 88, 'Amount': 131917, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 28, 'Sold': 469, 'Amount': 707721, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 2, 'Sold': 260, 'Amount': 391560, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 6, 'Sold': 83, 'Amount': 509660, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 31, 'Sold': 94, 'Amount': 140911, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 41, 'Sold': 206, 'Amount': 310854, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 36, 'Sold': 98, 'Amount': 147588, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 4, 'Sold': 221, 'Amount': 509660, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 49, 'Sold': 13, 'Amount': 19492, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 8, 'Sold': 115, 'Amount': 173535, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 36, 'Sold': 330, 'Amount': 496980, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 5, 'Sold': 432, 'Amount': 124417, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 28, 'Sold': 59, 'Amount': 88446, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 2, 'Sold': 487, 'Amount': 734883, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 24, 'Sold': 373, 'Amount': 561738, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 16, 'Sold': 269, 'Amount': 331279, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 8, 'Sold': 83, 'Amount': 124422, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 1, 'Sold': 413, 'Amount': 623217, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 21, 'Sold': 422, 'Amount': 635532, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 45, 'Sold': 126, 'Amount': 647568, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 29, 'Sold': 92, 'Amount': 137913, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 43, 'Sold': 449, 'Amount': 677541, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 15, 'Sold': 459, 'Amount': 691254, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 18, 'Sold': 142, 'Amount': 403231, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 31, 'Sold': 43, 'Amount': 64462, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 46, 'Sold': 129, 'Amount': 194661, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 31, 'Sold': 401, 'Amount': 603906, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 4, 'Sold': 397, 'Amount': 188874, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Road Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 13, 'Sold': 40, 'Amount': 68160, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 23, 'Sold': 286, 'Amount': 488774, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 36, 'Sold': 429, 'Amount': 731874, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 117, 'Amount': 198783, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 24, 'Sold': 28, 'Amount': 47712, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 8, 'Sold': 408, 'Amount': 697272, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 23, 'Sold': 88, 'Amount': 150128, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 13, 'Sold': 527, 'Amount': 895373, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 8, 'Sold': 11, 'Amount': 18744, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 47, 'Sold': 359, 'Amount': 613531, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 25, 'Sold': 105, 'Amount': 179130, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 36, 'Sold': 377, 'Amount': 640523, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 27, 'Sold': 17, 'Amount': 28968, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 48, 'Sold': 274, 'Amount': 468266, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 8, 'Sold': 314, 'Amount': 535684, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 24, 'Sold': 188, 'Amount': 319412, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 43, 'Sold': 69, 'Amount': 117576, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 142, 'Amount': 242678, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 28, 'Sold': 199, 'Amount': 339494, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 3, 'Sold': 353, 'Amount': 599747, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 54, 'Amount': 92016, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 24, 'Sold': 396, 'Amount': 676764, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 40, 'Sold': 178, 'Amount': 303668, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 26, 'Sold': 509, 'Amount': 864791, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 15, 'Sold': 66, 'Amount': 112464, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 22, 'Sold': 145, 'Amount': 247805, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 33, 'Sold': 352, 'Amount': 600512, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 36, 'Sold': 207, 'Amount': 351693, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 19, 'Sold': 30, 'Amount': 51120, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 11, 'Sold': 417, 'Amount': 712653, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 36, 'Sold': 172, 'Amount': 293432, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 24, 'Sold': 217, 'Amount': 368683, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 2, 'Sold': 83, 'Amount': 141432, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 10, 'Sold': 499, 'Amount': 852791, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 1, 'Sold': 163, 'Amount': 278078, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 44, 'Sold': 402, 'Amount': 682998, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 51, 'Amount': 86904, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 45, 'Sold': 452, 'Amount': 772468, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 40, 'Sold': 55, 'Amount': 93830, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 11, 'Sold': 164, 'Amount': 278636, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 14, 'Sold': 39, 'Amount': 66456, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 21, 'Sold': 390, 'Amount': 666510, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 3, 'Sold': 363, 'Amount': 619278, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 44, 'Sold': 367, 'Amount': 623533, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 28, 'Sold': 33, 'Amount': 56232, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 33, 'Sold': 483, 'Amount': 825447, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 17, 'Sold': 469, 'Amount': 800114, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 39, 'Sold': 252, 'Amount': 428148, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 41, 'Sold': 70, 'Amount': 119280, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 13, 'Sold': 199, 'Amount': 340091, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 13, 'Sold': 351, 'Amount': 598806, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 8, 'Sold': 173, 'Amount': 293927, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Mountain Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 28, 'Sold': 75, 'Amount': 119662.5, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 420, 'Amount': 670320, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 28, 'Sold': 226, 'Amount': 360526.5, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 46, 'Sold': 229, 'Amount': 365255, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 50, 'Sold': 59, 'Amount': 94134.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 42, 'Sold': 109, 'Amount': 173964, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 38, 'Sold': 264, 'Amount': 421146, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 24, 'Sold': 219, 'Amount': 349305, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 29, 'Sold': 52, 'Amount': 82966, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 38, 'Sold': 144, 'Amount': 229824, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 31, 'Sold': 197, 'Amount': 314264.25, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 4, 'Sold': 141, 'Amount': 224895, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 42, 'Sold': 63, 'Amount': 100516.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 30, 'Sold': 492, 'Amount': 785232, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 9, 'Sold': 121, 'Amount': 193025.25, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 41, 'Sold': 268, 'Amount': 427460, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 39, 'Sold': 18, 'Amount': 28719, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 30, 'Sold': 411, 'Amount': 655956, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 1, 'Sold': 56, 'Amount': 89334, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 17, 'Sold': 443, 'Amount': 706585, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 31, 'Sold': 32, 'Amount': 51056, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 41, 'Sold': 88, 'Amount': 140448, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 48, 'Sold': 136, 'Amount': 216954, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 35, 'Sold': 89, 'Amount': 141955, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 8, 'Sold': 41, 'Amount': 65415.5, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 40, 'Sold': 468, 'Amount': 746928, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 7, 'Sold': 316, 'Amount': 504099, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 31, 'Sold': 419, 'Amount': 668305, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 24, 'Sold': 38, 'Amount': 60629, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 29, 'Sold': 485, 'Amount': 774060, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 7, 'Sold': 106, 'Amount': 169096.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 7, 'Sold': 544, 'Amount': 867680, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 22, 'Sold': 42, 'Amount': 67011, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 43, 'Sold': 118, 'Amount': 188328, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 46, 'Sold': 166, 'Amount': 264811.5, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 38, 'Sold': 439, 'Amount': 700205, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 14, 'Sold': 75, 'Amount': 119662.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 16, 'Sold': 284, 'Amount': 453264, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 395, 'Amount': 630123.75, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 5, 'Sold': 286, 'Amount': 456170, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 16, 'Sold': 85, 'Amount': 135617.5, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 7, 'Sold': 330, 'Amount': 526680, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 33, 'Sold': 61, 'Amount': 97310.25, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 18, 'Sold': 370, 'Amount': 590150, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 50, 'Sold': 99, 'Amount': 157954.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 8, 'Sold': 259, 'Amount': 413364, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 30, 'Sold': 295, 'Amount': 470598.75, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 21, 'Sold': 288, 'Amount': 459360, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 22, 'Sold': 34, 'Amount': 54247, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 41, 'Sold': 118, 'Amount': 188328, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 45, 'Sold': 257, 'Amount': 409979.25, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 21, 'Sold': 337, 'Amount': 537515, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 29, 'Sold': 30, 'Amount': 47865, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 14, 'Sold': 293, 'Amount': 467628, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 45, 'Sold': 179, 'Amount': 285549.75, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 14, 'Sold': 463, 'Amount': 738485, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 15, 'Sold': 90, 'Amount': 143595, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 19, 'Sold': 365, 'Amount': 582540, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 17, 'Sold': 313, 'Amount': 499313.25, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 13, 'Sold': 290, 'Amount': 462550, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 39, 'Sold': 95, 'Amount': 151572.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 4, 'Sold': 370, 'Amount': 590520, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 32, 'Sold': 301, 'Amount': 480170.25, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 42, 'Sold': 297, 'Amount': 473715, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 13, 'Sold': 66, 'Amount': 105303, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 42, 'Sold': 153, 'Amount': 244188, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 38, 'Sold': 178, 'Amount': 283954.5, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 7, 'Sold': 414, 'Amount': 660330, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 14, 'Sold': 28, 'Amount': 44674, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 4, 'Sold': 244, 'Amount': 389424, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 9, 'Sold': 90, 'Amount': 143572.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 13, 'Sold': 477, 'Amount': 760815, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 17, 'Sold': 73, 'Amount': 116471.5, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 24, 'Sold': 390, 'Amount': 622440, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 49, 'Sold': 392, 'Amount': 625338, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 5, 'Sold': 412, 'Amount': 657140, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 13, 'Sold': 33, 'Amount': 52651.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 3, 'Sold': 423, 'Amount': 675108, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 14, 'Sold': 188, 'Amount': 299907, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 21, 'Sold': 465, 'Amount': 741675, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 17, 'Sold': 26, 'Amount': 41483, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 14, 'Sold': 50, 'Amount': 79800, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 39, 'Sold': 313, 'Amount': 499313.25, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 38, 'Sold': 287, 'Amount': 457765, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 29, 'Sold': 92, 'Amount': 146786, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 32, 'Sold': 356, 'Amount': 568176, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 19, 'Sold': 445, 'Amount': 709886.25, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 34, 'Sold': 204, 'Amount': 325380, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 31, 'Sold': 83, 'Amount': 132426.5, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 20, 'Sold': 88, 'Amount': 140448, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 20, 'Sold': 313, 'Amount': 499313.25, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 49, 'Sold': 262, 'Amount': 417890, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 32, 'Sold': 59, 'Amount': 94134.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 3, 'Sold': 109, 'Amount': 173964, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 48, 'Sold': 394, 'Amount': 628528.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 12, 'Sold': 199, 'Amount': 317405, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 46, 'Sold': 94, 'Amount': 149977, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 48, 'Sold': 202, 'Amount': 322392, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 12, 'Sold': 342, 'Amount': 545575.5, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 252, 'Amount': 401940, 'Country': 'United Kingdom', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 7, 'Sold': 79, 'Amount': 126044.5, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 32, 'Sold': 219, 'Amount': 349524, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 17, 'Sold': 412, 'Amount': 657243, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 15, 'Sold': 359, 'Amount': 572605, 'Country': 'United States', 'Product_Categories': 'Bikes', 'Products': 'Touring Bikes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 59, 'Amount': 354.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 33, 'Sold': 24, 'Amount': 684, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 45, 'Sold': 64, 'Amount': 1376, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 34, 'Amount': 3774.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 10, 'Sold': 345, 'Amount': 2760, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 9, 'Sold': 128, 'Amount': 3712, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 4, 'Sold': 294, 'Amount': 4998, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 288, 'Amount': 32256, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 8, 'Sold': 362, 'Amount': 2262.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 5, 'Sold': 250, 'Amount': 7062.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 15, 'Sold': 386, 'Amount': 6272.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 42, 'Sold': 83, 'Amount': 9233.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 447, 'Amount': 2682, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 10, 'Sold': 174, 'Amount': 4872, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 11, 'Sold': 375, 'Amount': 6000, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 434, 'Amount': 38295, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 24, 'Sold': 42, 'Amount': 252.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 13, 'Sold': 72, 'Amount': 2052, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 45, 'Sold': 84, 'Amount': 1806, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 3, 'Sold': 64, 'Amount': 7104.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 6, 'Sold': 181, 'Amount': 1448, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 18, 'Sold': 364, 'Amount': 10556, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 18, 'Sold': 72, 'Amount': 1224, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 43, 'Sold': 407, 'Amount': 45584, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 49, 'Sold': 342, 'Amount': 2137.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 43, 'Sold': 291, 'Amount': 8220.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 20, 'Sold': 242, 'Amount': 3932.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 18, 'Sold': 398, 'Amount': 44277.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 10, 'Sold': 321, 'Amount': 1926, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 25, 'Sold': 356, 'Amount': 9968, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 11, 'Sold': 61, 'Amount': 976, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 39, 'Sold': 520, 'Amount': 20091, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 30, 'Sold': 62, 'Amount': 372.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 37, 'Sold': 46, 'Amount': 1311, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 26, 'Sold': 21, 'Amount': 451.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 40, 'Sold': 15, 'Amount': 1665.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 6, 'Sold': 232, 'Amount': 1856, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 14, 'Sold': 141, 'Amount': 4089, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 25, 'Sold': 407, 'Amount': 6919, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 5, 'Sold': 381, 'Amount': 42672, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 35, 'Sold': 204, 'Amount': 1275, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 5, 'Sold': 194, 'Amount': 5480.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 23, 'Sold': 344, 'Amount': 5590, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 15, 'Sold': 479, 'Amount': 53288.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 12, 'Sold': 139, 'Amount': 834, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 14, 'Sold': 407, 'Amount': 11396, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 18, 'Sold': 370, 'Amount': 5920, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 22, 'Sold': 336, 'Amount': 25752, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 23, 'Sold': 37, 'Amount': 222.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 33, 'Sold': 37, 'Amount': 1054.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 14, 'Sold': 14, 'Amount': 301, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 2, 'Sold': 10, 'Amount': 1110.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 13, 'Sold': 342, 'Amount': 2736, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 46, 'Sold': 456, 'Amount': 13224, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 48, 'Sold': 455, 'Amount': 7735, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 45, 'Sold': 257, 'Amount': 28784, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 5, 'Sold': 333, 'Amount': 2081.25, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 6, 'Sold': 261, 'Amount': 7373.25, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 31, 'Sold': 212, 'Amount': 3445, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 39, 'Sold': 236, 'Amount': 26255, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 29, 'Sold': 311, 'Amount': 1866, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 23, 'Sold': 348, 'Amount': 9744, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 49, 'Sold': 161, 'Amount': 2576, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 9, 'Sold': 517, 'Amount': 37962, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 35, 'Sold': 50, 'Amount': 300.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 36, 'Amount': 1026, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 13, 'Sold': 71, 'Amount': 1526.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 76, 'Amount': 8436.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 11, 'Sold': 314, 'Amount': 2512, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 30, 'Sold': 493, 'Amount': 14297, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 29, 'Sold': 105, 'Amount': 1785, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 112, 'Amount': 12544, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 29, 'Sold': 382, 'Amount': 2387.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 48, 'Sold': 164, 'Amount': 4633, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 22, 'Sold': 195, 'Amount': 3168.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 42, 'Sold': 146, 'Amount': 16242.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 340, 'Amount': 2040, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 50, 'Sold': 201, 'Amount': 5628, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 20, 'Sold': 509, 'Amount': 8144, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 14, 'Sold': 151, 'Amount': 34854, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 50, 'Sold': 11, 'Amount': 66.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 48, 'Sold': 18, 'Amount': 513, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 4, 'Sold': 55, 'Amount': 1182.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 42, 'Sold': 22, 'Amount': 2442.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 15, 'Sold': 281, 'Amount': 2248, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 23, 'Sold': 344, 'Amount': 9976, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 38, 'Sold': 213, 'Amount': 3621, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 21, 'Sold': 423, 'Amount': 47376, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 15, 'Sold': 255, 'Amount': 1593.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 44, 'Sold': 267, 'Amount': 7542.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 30, 'Sold': 159, 'Amount': 2583.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 11, 'Sold': 325, 'Amount': 36156.25, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 21, 'Sold': 489, 'Amount': 2934, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 44, 'Sold': 423, 'Amount': 11844, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 1, 'Sold': 181, 'Amount': 2896, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 48, 'Sold': 437, 'Amount': 31191, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 43, 'Sold': 81, 'Amount': 486.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 22, 'Sold': 86, 'Amount': 2451, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 1, 'Sold': 90, 'Amount': 1935, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 12, 'Sold': 66, 'Amount': 7326.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 30, 'Sold': 253, 'Amount': 2024, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 32, 'Sold': 471, 'Amount': 13659, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 45, 'Sold': 441, 'Amount': 7497, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 24, 'Sold': 255, 'Amount': 28560, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 23, 'Sold': 66, 'Amount': 412.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 12, 'Sold': 187, 'Amount': 5282.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 11, 'Sold': 324, 'Amount': 5265, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 41, 'Sold': 348, 'Amount': 38715, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 39, 'Sold': 208, 'Amount': 1248, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 17, 'Sold': 293, 'Amount': 8204, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 30, 'Sold': 80, 'Amount': 1280, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 35, 'Sold': 447, 'Amount': 28083, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 6, 'Sold': 10, 'Amount': 60.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 2, 'Sold': 45, 'Amount': 1282.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 48, 'Sold': 86, 'Amount': 1849, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 31, 'Sold': 14, 'Amount': 1554.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 16, 'Sold': 373, 'Amount': 2984, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 3, 'Sold': 151, 'Amount': 4379, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 15, 'Sold': 107, 'Amount': 1819, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 8, 'Sold': 227, 'Amount': 25424, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 43, 'Sold': 382, 'Amount': 2387.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 32, 'Sold': 233, 'Amount': 6582.25, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 23, 'Sold': 139, 'Amount': 2258.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 12, 'Sold': 410, 'Amount': 45612.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 21, 'Sold': 540, 'Amount': 3240, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 41, 'Sold': 265, 'Amount': 7420, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 8, 'Sold': 206, 'Amount': 3296, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 47, 'Sold': 392, 'Amount': 41403, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 9, 'Sold': 21, 'Amount': 126.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 9, 'Sold': 35, 'Amount': 997.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 23, 'Sold': 79, 'Amount': 1698.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 33, 'Sold': 31, 'Amount': 3441.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 16, 'Sold': 106, 'Amount': 848, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 32, 'Sold': 148, 'Amount': 4292, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 24, 'Sold': 437, 'Amount': 7429, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 31, 'Sold': 355, 'Amount': 39760, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 21, 'Sold': 280, 'Amount': 1750, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 13, 'Sold': 308, 'Amount': 8701, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 1, 'Sold': 252, 'Amount': 4095, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 24, 'Sold': 239, 'Amount': 26588.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 439, 'Amount': 2634, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 34, 'Sold': 260, 'Amount': 7280, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 22, 'Sold': 294, 'Amount': 4704, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 27, 'Sold': 340, 'Amount': 11766, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 24, 'Sold': 62, 'Amount': 372.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 23, 'Sold': 30, 'Amount': 855, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 37, 'Sold': 54, 'Amount': 1161, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 5, 'Sold': 17, 'Amount': 1887.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 26, 'Sold': 80, 'Amount': 640, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 12, 'Sold': 86, 'Amount': 2494, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 1, 'Sold': 63, 'Amount': 1071, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 37, 'Sold': 75, 'Amount': 8400, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 29, 'Sold': 123, 'Amount': 768.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 35, 'Sold': 219, 'Amount': 6186.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 7, 'Sold': 274, 'Amount': 4452.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 47, 'Sold': 57, 'Amount': 6341.25, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 31, 'Sold': 259, 'Amount': 1554, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 2, 'Sold': 266, 'Amount': 7448, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 20, 'Sold': 246, 'Amount': 3936, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 7, 'Sold': 70, 'Amount': 8880, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 26, 'Sold': 34, 'Amount': 204.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 29, 'Sold': 40, 'Amount': 1140, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 44, 'Sold': 47, 'Amount': 1010.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 13, 'Sold': 49, 'Amount': 5439.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 22, 'Sold': 206, 'Amount': 1648, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 1, 'Sold': 169, 'Amount': 4901, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 19, 'Sold': 385, 'Amount': 6545, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 38, 'Sold': 358, 'Amount': 40096, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 36, 'Sold': 148, 'Amount': 925, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 24, 'Sold': 128, 'Amount': 3616, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 17, 'Sold': 376, 'Amount': 6110, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 5, 'Sold': 64, 'Amount': 7120, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 3, 'Sold': 399, 'Amount': 2394, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 6, 'Sold': 145, 'Amount': 4060, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 21, 'Sold': 199, 'Amount': 3184, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 2, 'Sold': 366, 'Amount': 22866, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 37, 'Sold': 13, 'Amount': 78.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 39, 'Sold': 82, 'Amount': 2337, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 25, 'Sold': 15, 'Amount': 322.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 4, 'Sold': 50, 'Amount': 5550.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 27, 'Sold': 462, 'Amount': 3696, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 35, 'Sold': 165, 'Amount': 4785, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 14, 'Sold': 228, 'Amount': 3876, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 46, 'Sold': 89, 'Amount': 9968, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 10, 'Sold': 157, 'Amount': 981.25, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 4, 'Sold': 115, 'Amount': 3248.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 15, 'Sold': 420, 'Amount': 6825, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 20, 'Sold': 490, 'Amount': 54512.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 44, 'Sold': 459, 'Amount': 2754, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 23, 'Sold': 332, 'Amount': 9296, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 6, 'Sold': 93, 'Amount': 1488, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 16, 'Sold': 61, 'Amount': 51282, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 9, 'Sold': 81, 'Amount': 486.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 19, 'Sold': 81, 'Amount': 2308.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 29, 'Sold': 73, 'Amount': 1569.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 3, 'Sold': 62, 'Amount': 6882.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 38, 'Sold': 125, 'Amount': 1000, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 14, 'Sold': 274, 'Amount': 7946, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 26, 'Sold': 348, 'Amount': 5916, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 22, 'Sold': 489, 'Amount': 54768, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 5, 'Sold': 144, 'Amount': 900, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 42, 'Sold': 155, 'Amount': 4378.75, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 6, 'Sold': 134, 'Amount': 2177.5, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 31, 'Sold': 393, 'Amount': 43721.25, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 44, 'Sold': 423, 'Amount': 2538, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Gloves', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 11, 'Sold': 178, 'Amount': 4984, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Jerseys', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 26, 'Sold': 439, 'Amount': 7024, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Shorts', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 23, 'Sold': 220, 'Amount': 13875, 'Country': 'United States', 'Product_Categories': 'Clothing', 'Products': 'Vests', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 53, 'Amount': 1033.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 33, 'Sold': 70, 'Amount': 525.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 45, 'Sold': 61, 'Amount': 1875.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 46, 'Sold': 61, 'Amount': 458, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 81, 'Amount': 1278.18, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 1, 'Sold': 94, 'Amount': 1081, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 12, 'Sold': 395, 'Amount': 7900, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 29, 'Sold': 400, 'Amount': 3400, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 306, 'Amount': 9562.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 49, 'Sold': 200, 'Amount': 1000, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 477, 'Amount': 7765.56, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 31, 'Sold': 339, 'Amount': 4068, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 46, 'Sold': 111, 'Amount': 2136.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 1, 'Sold': 384, 'Amount': 2976, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 23, 'Sold': 384, 'Amount': 11712, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 32, 'Sold': 228, 'Amount': 969, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 50, 'Sold': 355, 'Amount': 5513.15, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 11, 'Sold': 150, 'Amount': 1687.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 459, 'Amount': 8721, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 44, 'Sold': 481, 'Amount': 3607.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 17, 'Sold': 243, 'Amount': 7350.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 26, 'Sold': 520, 'Amount': 2080, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 9, 'Sold': 250, 'Amount': 3820, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 141, 'Amount': 1551, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q1' }, + { 'In_Stock': 23, 'Sold': 85, 'Amount': 1657.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 2, 'Sold': 14, 'Amount': 105.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 11, 'Sold': 96, 'Amount': 2952, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 11, 'Sold': 76, 'Amount': 342, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 6, 'Sold': 93, 'Amount': 1467.54, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 13, 'Sold': 75, 'Amount': 862.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 18, 'Sold': 181, 'Amount': 3620, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 34, 'Sold': 63, 'Amount': 535.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 31, 'Sold': 94, 'Amount': 2937.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 290, 'Amount': 1450, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 28, 'Sold': 495, 'Amount': 8058.6, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 34, 'Sold': 455, 'Amount': 5460, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 39, 'Sold': 487, 'Amount': 9374.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 45, 'Sold': 446, 'Amount': 3456.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 298, 'Amount': 9089, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 45, 'Sold': 291, 'Amount': 1236.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 6, 'Sold': 291, 'Amount': 4519.23, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 49, 'Sold': 128, 'Amount': 1440, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 6, 'Sold': 321, 'Amount': 6099, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 45, 'Sold': 515, 'Amount': 3862.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 35, 'Sold': 534, 'Amount': 16153.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 7, 'Sold': 467, 'Amount': 1868, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 36, 'Sold': 322, 'Amount': 4920.16, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 22, 'Sold': 258, 'Amount': 2838, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q1' }, + { 'In_Stock': 20, 'Sold': 59, 'Amount': 1150.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 22, 'Sold': 57, 'Amount': 428, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 27, 'Sold': 27, 'Amount': 830.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 76, 'Amount': 342, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 11, 'Sold': 16, 'Amount': 252.48, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 14, 'Sold': 87, 'Amount': 1000.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 31, 'Sold': 388, 'Amount': 7760, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 48, 'Sold': 327, 'Amount': 2779.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 15, 'Sold': 149, 'Amount': 4656.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 34, 'Sold': 386, 'Amount': 1930, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 19, 'Sold': 325, 'Amount': 5291, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 273, 'Amount': 3276, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 31, 'Sold': 52, 'Amount': 1001, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 398, 'Amount': 3084.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 47, 'Sold': 242, 'Amount': 7381, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 32, 'Sold': 319, 'Amount': 1355.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 28, 'Sold': 300, 'Amount': 4659, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 318, 'Amount': 3577.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 42, 'Sold': 217, 'Amount': 4123, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 9, 'Sold': 277, 'Amount': 2077.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 9, 'Sold': 450, 'Amount': 13612.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 15, 'Sold': 267, 'Amount': 1068, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 17, 'Sold': 498, 'Amount': 7609.44, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 42, 'Sold': 246, 'Amount': 2706, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q1' }, + { 'In_Stock': 8, 'Sold': 70, 'Amount': 1365, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 31, 'Sold': 62, 'Amount': 465.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 38, 'Sold': 75, 'Amount': 2306.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 22, 'Sold': 39, 'Amount': 175.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 36, 'Sold': 52, 'Amount': 820.56, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 9, 'Sold': 96, 'Amount': 1104, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 46, 'Sold': 351, 'Amount': 7020, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 50, 'Sold': 437, 'Amount': 3714.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 17, 'Sold': 260, 'Amount': 8125, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 1, 'Sold': 321, 'Amount': 1605, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 13, 'Sold': 66, 'Amount': 1074.48, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 6, 'Sold': 125, 'Amount': 1500, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 11, 'Sold': 237, 'Amount': 4562.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 34, 'Sold': 208, 'Amount': 1612, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 37, 'Sold': 471, 'Amount': 14365.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 10, 'Sold': 453, 'Amount': 1925.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 44, 'Sold': 234, 'Amount': 3634.02, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 5, 'Sold': 199, 'Amount': 2238.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 41, 'Sold': 542, 'Amount': 10298, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 25, 'Sold': 109, 'Amount': 817.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 46, 'Sold': 191, 'Amount': 5777.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 5, 'Sold': 124, 'Amount': 496, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 49, 'Sold': 343, 'Amount': 5241.04, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 9, 'Sold': 199, 'Amount': 2189, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2018', 'Quarter': 'Q1' }, + { 'In_Stock': 6, 'Sold': 65, 'Amount': 1267.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 38, 'Sold': 75, 'Amount': 563, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 45, 'Sold': 75, 'Amount': 2306.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 22, 'Sold': 66, 'Amount': 297, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 37, 'Sold': 29, 'Amount': 457.62, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 22, 'Sold': 43, 'Amount': 494.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 13, 'Sold': 314, 'Amount': 6280, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 29, 'Sold': 498, 'Amount': 4233, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 15, 'Sold': 494, 'Amount': 15437.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 16, 'Sold': 164, 'Amount': 820, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 38, 'Sold': 447, 'Amount': 7277.16, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 11, 'Sold': 154, 'Amount': 1848, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 4, 'Sold': 388, 'Amount': 7469, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 20, 'Sold': 498, 'Amount': 3859.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 7, 'Sold': 400, 'Amount': 12200, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 21, 'Sold': 500, 'Amount': 2125, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 49, 'Sold': 457, 'Amount': 7097.21, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 18, 'Sold': 216, 'Amount': 2430, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 3, 'Sold': 90, 'Amount': 1710, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 7, 'Sold': 344, 'Amount': 2580, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 49, 'Sold': 188, 'Amount': 5687, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 49, 'Sold': 488, 'Amount': 1952, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 35, 'Sold': 468, 'Amount': 7151.04, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 20, 'Sold': 454, 'Amount': 4994, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q2' }, + { 'In_Stock': 12, 'Sold': 42, 'Amount': 819, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 45, 'Sold': 89, 'Amount': 668, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 16, 'Sold': 84, 'Amount': 2583, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 5, 'Sold': 41, 'Amount': 184.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 10, 'Sold': 77, 'Amount': 1215.06, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 25, 'Sold': 97, 'Amount': 1115.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 27, 'Sold': 169, 'Amount': 3380, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 17, 'Sold': 494, 'Amount': 4199, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 1, 'Sold': 127, 'Amount': 3968.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 34, 'Sold': 459, 'Amount': 2295, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 9, 'Sold': 466, 'Amount': 7586.48, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 31, 'Sold': 64, 'Amount': 768, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 18, 'Sold': 417, 'Amount': 8027.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 24, 'Sold': 73, 'Amount': 565.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 42, 'Sold': 482, 'Amount': 14701, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 30, 'Sold': 367, 'Amount': 1559.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 8, 'Sold': 303, 'Amount': 4705.59, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 25, 'Sold': 176, 'Amount': 1980, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 34, 'Sold': 436, 'Amount': 8284, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 36, 'Sold': 203, 'Amount': 1522.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 39, 'Sold': 95, 'Amount': 2873.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 10, 'Sold': 381, 'Amount': 1524, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 16, 'Sold': 85, 'Amount': 1298.8, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 4, 'Sold': 74, 'Amount': 814, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q2' }, + { 'In_Stock': 9, 'Sold': 13, 'Amount': 253.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 1, 'Sold': 15, 'Amount': 113, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 13, 'Sold': 46, 'Amount': 1414.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 18, 'Sold': 69, 'Amount': 310.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 47, 'Sold': 34, 'Amount': 536.52, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 41, 'Sold': 38, 'Amount': 437, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 45, 'Sold': 480, 'Amount': 9600, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 32, 'Sold': 434, 'Amount': 3689, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 27, 'Sold': 181, 'Amount': 5656.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 25, 'Sold': 500, 'Amount': 2500, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 46, 'Sold': 63, 'Amount': 1025.64, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 28, 'Sold': 238, 'Amount': 2856, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 38, 'Sold': 257, 'Amount': 4947.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 13, 'Sold': 178, 'Amount': 1379.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 41, 'Sold': 264, 'Amount': 8052, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 16, 'Sold': 441, 'Amount': 1874.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 48, 'Sold': 243, 'Amount': 3773.79, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 30, 'Sold': 131, 'Amount': 1473.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 47, 'Sold': 402, 'Amount': 7638, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 14, 'Sold': 488, 'Amount': 3660, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 31, 'Sold': 237, 'Amount': 7169.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 36, 'Sold': 251, 'Amount': 1004, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 9, 'Sold': 151, 'Amount': 2307.28, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 44, 'Sold': 387, 'Amount': 4257, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q2' }, + { 'In_Stock': 13, 'Sold': 10, 'Amount': 195, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 49, 'Sold': 77, 'Amount': 578, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 13, 'Sold': 70, 'Amount': 2152.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 23, 'Sold': 90, 'Amount': 405, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 37, 'Sold': 58, 'Amount': 915.24, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 31, 'Sold': 91, 'Amount': 1046.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 42, 'Sold': 497, 'Amount': 9940, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 31, 'Sold': 411, 'Amount': 3493.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 34, 'Sold': 285, 'Amount': 8906.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 38, 'Sold': 62, 'Amount': 310, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 18, 'Sold': 109, 'Amount': 1774.52, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 10, 'Sold': 172, 'Amount': 2064, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 23, 'Sold': 408, 'Amount': 7854, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 34, 'Sold': 78, 'Amount': 604.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 41, 'Sold': 149, 'Amount': 4544.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 28, 'Sold': 387, 'Amount': 1644.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 6, 'Sold': 269, 'Amount': 4177.57, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 34, 'Sold': 291, 'Amount': 3273.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 3, 'Sold': 292, 'Amount': 5548, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 8, 'Sold': 124, 'Amount': 930, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 5, 'Sold': 265, 'Amount': 8016.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 31, 'Sold': 175, 'Amount': 700, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 45, 'Sold': 144, 'Amount': 2200.32, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 17, 'Sold': 411, 'Amount': 4521, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q3' }, + { 'In_Stock': 34, 'Sold': 75, 'Amount': 1462.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 29, 'Sold': 30, 'Amount': 225.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 31, 'Sold': 15, 'Amount': 461.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 19, 'Sold': 30, 'Amount': 135, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 4, 'Sold': 63, 'Amount': 994.14, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 47, 'Sold': 55, 'Amount': 632.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 37, 'Sold': 58, 'Amount': 1160, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 35, 'Sold': 308, 'Amount': 2618, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 29, 'Sold': 331, 'Amount': 10343.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 39, 'Sold': 312, 'Amount': 1560, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 50, 'Sold': 186, 'Amount': 3028.08, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 4, 'Sold': 261, 'Amount': 3132, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 43, 'Sold': 87, 'Amount': 1674.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 42, 'Sold': 197, 'Amount': 1526.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 27, 'Sold': 124, 'Amount': 3782, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 44, 'Sold': 178, 'Amount': 756.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 5, 'Sold': 274, 'Amount': 4255.22, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 18, 'Sold': 388, 'Amount': 4365, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 39, 'Sold': 528, 'Amount': 10032, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 33, 'Sold': 285, 'Amount': 2137.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 37, 'Sold': 306, 'Amount': 9256.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 43, 'Sold': 548, 'Amount': 2192, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 35, 'Sold': 265, 'Amount': 4049.2, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 48, 'Sold': 261, 'Amount': 2871, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q3' }, + { 'In_Stock': 4, 'Sold': 57, 'Amount': 1111.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 14, 'Sold': 12, 'Amount': 90.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 2, 'Sold': 48, 'Amount': 1476, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 1, 'Sold': 68, 'Amount': 306, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 26, 'Sold': 42, 'Amount': 662.76, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 41, 'Sold': 82, 'Amount': 943, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 50, 'Sold': 312, 'Amount': 6240, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 9, 'Sold': 206, 'Amount': 1751, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 9, 'Sold': 393, 'Amount': 12281.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 48, 'Sold': 354, 'Amount': 1770, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 45, 'Sold': 160, 'Amount': 2604.8, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 36, 'Sold': 243, 'Amount': 2916, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 9, 'Sold': 430, 'Amount': 8277.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 12, 'Sold': 56, 'Amount': 434, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 37, 'Sold': 101, 'Amount': 3080.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 1, 'Sold': 202, 'Amount': 858.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 30, 'Sold': 472, 'Amount': 7330.16, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 28, 'Sold': 385, 'Amount': 4331.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 5, 'Sold': 287, 'Amount': 5453, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 24, 'Sold': 129, 'Amount': 967.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 49, 'Sold': 547, 'Amount': 16546.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 47, 'Sold': 276, 'Amount': 1104, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 8, 'Sold': 518, 'Amount': 7915.04, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 35, 'Sold': 158, 'Amount': 1738, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q3' }, + { 'In_Stock': 2, 'Sold': 46, 'Amount': 897, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 44, 'Sold': 47, 'Amount': 353, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 19, 'Sold': 17, 'Amount': 522.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 22, 'Sold': 31, 'Amount': 139.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 40, 'Sold': 77, 'Amount': 1215.06, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 7, 'Sold': 100, 'Amount': 1150, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 3, 'Sold': 356, 'Amount': 7120, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 41, 'Sold': 418, 'Amount': 3553, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 16, 'Sold': 261, 'Amount': 8156.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 6, 'Sold': 306, 'Amount': 1530, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 6, 'Sold': 361, 'Amount': 5877.08, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 29, 'Sold': 193, 'Amount': 2316, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 13, 'Sold': 420, 'Amount': 8085, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 40, 'Sold': 197, 'Amount': 1526.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 32, 'Sold': 247, 'Amount': 7533.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 18, 'Sold': 175, 'Amount': 743.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 31, 'Sold': 436, 'Amount': 6771.08, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 5, 'Sold': 91, 'Amount': 1023.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 17, 'Sold': 135, 'Amount': 2565, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 17, 'Sold': 102, 'Amount': 765, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 3, 'Sold': 88, 'Amount': 2662, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 39, 'Sold': 406, 'Amount': 1624, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 44, 'Sold': 275, 'Amount': 4202, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 21, 'Sold': 116, 'Amount': 1276, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2015', 'Quarter': 'Q4' }, + { 'In_Stock': 14, 'Sold': 66, 'Amount': 1287, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 3, 'Sold': 86, 'Amount': 645.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 50, 'Sold': 68, 'Amount': 2091, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 40, 'Sold': 96, 'Amount': 432, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 22, 'Sold': 79, 'Amount': 1246.62, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 21, 'Sold': 69, 'Amount': 793.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 35, 'Sold': 269, 'Amount': 5380, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 38, 'Sold': 152, 'Amount': 1292, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 19, 'Sold': 213, 'Amount': 6656.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 2, 'Sold': 212, 'Amount': 1060, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 19, 'Sold': 454, 'Amount': 7391.12, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 38, 'Sold': 197, 'Amount': 2364, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 7, 'Sold': 76, 'Amount': 1463, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 32, 'Sold': 242, 'Amount': 1875.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 37, 'Sold': 211, 'Amount': 6435.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 12, 'Sold': 149, 'Amount': 633.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 4, 'Sold': 104, 'Amount': 1615.12, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 36, 'Sold': 371, 'Amount': 4173.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 10, 'Sold': 545, 'Amount': 10355, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 39, 'Sold': 547, 'Amount': 4102.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 2, 'Sold': 386, 'Amount': 11676.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 34, 'Sold': 199, 'Amount': 796, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 38, 'Sold': 454, 'Amount': 6937.12, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 19, 'Sold': 138, 'Amount': 1518, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2016', 'Quarter': 'Q4' }, + { 'In_Stock': 6, 'Sold': 32, 'Amount': 624, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 19, 'Sold': 80, 'Amount': 600.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 25, 'Sold': 33, 'Amount': 1014.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 38, 'Sold': 48, 'Amount': 216, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 8, 'Sold': 36, 'Amount': 568.08, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 4, 'Sold': 18, 'Amount': 207, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Retail Outlets', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 32, 'Sold': 125, 'Amount': 2500, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 28, 'Sold': 481, 'Amount': 4088.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 22, 'Sold': 287, 'Amount': 8968.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 10, 'Sold': 302, 'Amount': 1510, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 20, 'Sold': 264, 'Amount': 4297.92, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 23, 'Sold': 107, 'Amount': 1284, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Sales Person', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 17, 'Sold': 219, 'Amount': 4215.75, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 20, 'Sold': 384, 'Amount': 2976, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 27, 'Sold': 231, 'Amount': 7045.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 24, 'Sold': 409, 'Amount': 1738.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 24, 'Sold': 204, 'Amount': 3168.12, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 22, 'Sold': 301, 'Amount': 3386.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'Teleshopping', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 14, 'Sold': 535, 'Amount': 10165, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Tires and Tubes', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 47, 'Sold': 405, 'Amount': 3037.5, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Bottles and Cages', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 14, 'Sold': 385, 'Amount': 11646.25, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Hydration Packs', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 11, 'Sold': 426, 'Amount': 1704, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Cleaners', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 13, 'Sold': 392, 'Amount': 5989.76, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Helmets', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }, + { 'In_Stock': 9, 'Sold': 426, 'Amount': 4686, 'Country': 'United States', 'Product_Categories': 'Accessories', 'Products': 'Fenders', 'Order_Source': 'App Store', 'Year': 'FY 2017', 'Quarter': 'Q4' }]; diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/main.ts b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/main.ts new file mode 100644 index 0000000000..3607237bd6 --- /dev/null +++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/main.ts @@ -0,0 +1,4 @@ +import { bootstrapApplication } from '@angular/platform-browser'; +import { AppComponent } from './app.component'; +import 'zone.js'; +bootstrapApplication(AppComponent).catch((err) => console.error(err)); \ No newline at end of file diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/numberingSystems.json b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/numberingSystems.json new file mode 100644 index 0000000000..3425a257f6 --- /dev/null +++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/numberingSystems.json @@ -0,0 +1,319 @@ +{ + "supplemental": { + "version": { + "_number": "$Revision: 12732 $", + "_unicodeVersion": "9.0.0", + "_cldrVersion": "31" + }, + "numberingSystems": { + "adlm": { + "_digits": "𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙", + "_type": "numeric" + }, + "ahom": { + "_digits": "𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹", + "_type": "numeric" + }, + "arab": { + "_digits": "٠١٢٣٤٥٦٧٨٩", + "_type": "numeric" + }, + "arabext": { + "_digits": "۰۱۲۳۴۵۶۷۸۹", + "_type": "numeric" + }, + "armn": { + "_rules": "armenian-upper", + "_type": "algorithmic" + }, + "armnlow": { + "_rules": "armenian-lower", + "_type": "algorithmic" + }, + "bali": { + "_digits": "᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙", + "_type": "numeric" + }, + "beng": { + "_digits": "০১২৩৪৫৬৭৮৯", + "_type": "numeric" + }, + "bhks": { + "_digits": "𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙", + "_type": "numeric" + }, + "brah": { + "_digits": "𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯", + "_type": "numeric" + }, + "cakm": { + "_digits": "𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿", + "_type": "numeric" + }, + "cham": { + "_digits": "꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙", + "_type": "numeric" + }, + "cyrl": { + "_rules": "cyrillic-lower", + "_type": "algorithmic" + }, + "deva": { + "_digits": "०१२३४५६७८९", + "_type": "numeric" + }, + "ethi": { + "_rules": "ethiopic", + "_type": "algorithmic" + }, + "fullwide": { + "_digits": "0123456789", + "_type": "numeric" + }, + "geor": { + "_rules": "georgian", + "_type": "algorithmic" + }, + "grek": { + "_rules": "greek-upper", + "_type": "algorithmic" + }, + "greklow": { + "_rules": "greek-lower", + "_type": "algorithmic" + }, + "gujr": { + "_digits": "૦૧૨૩૪૫૬૭૮૯", + "_type": "numeric" + }, + "guru": { + "_digits": "੦੧੨੩੪੫੬੭੮੯", + "_type": "numeric" + }, + "hanidays": { + "_rules": "zh/SpelloutRules/spellout-numbering-days", + "_type": "algorithmic" + }, + "hanidec": { + "_digits": "〇一二三四五六七八九", + "_type": "numeric" + }, + "hans": { + "_rules": "zh/SpelloutRules/spellout-cardinal", + "_type": "algorithmic" + }, + "hansfin": { + "_rules": "zh/SpelloutRules/spellout-cardinal-financial", + "_type": "algorithmic" + }, + "hant": { + "_rules": "zh_Hant/SpelloutRules/spellout-cardinal", + "_type": "algorithmic" + }, + "hantfin": { + "_rules": "zh_Hant/SpelloutRules/spellout-cardinal-financial", + "_type": "algorithmic" + }, + "hebr": { + "_rules": "hebrew", + "_type": "algorithmic" + }, + "hmng": { + "_digits": "𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙", + "_type": "numeric" + }, + "java": { + "_digits": "꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙", + "_type": "numeric" + }, + "jpan": { + "_rules": "ja/SpelloutRules/spellout-cardinal", + "_type": "algorithmic" + }, + "jpanfin": { + "_rules": "ja/SpelloutRules/spellout-cardinal-financial", + "_type": "algorithmic" + }, + "kali": { + "_digits": "꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉", + "_type": "numeric" + }, + "khmr": { + "_digits": "០១២៣៤៥៦៧៨៩", + "_type": "numeric" + }, + "knda": { + "_digits": "೦೧೨೩೪೫೬೭೮೯", + "_type": "numeric" + }, + "lana": { + "_digits": "᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉", + "_type": "numeric" + }, + "lanatham": { + "_digits": "᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙", + "_type": "numeric" + }, + "laoo": { + "_digits": "໐໑໒໓໔໕໖໗໘໙", + "_type": "numeric" + }, + "latn": { + "_digits": "0123456789", + "_type": "numeric" + }, + "lepc": { + "_digits": "᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉", + "_type": "numeric" + }, + "limb": { + "_digits": "᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏", + "_type": "numeric" + }, + "mathbold": { + "_digits": "𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗", + "_type": "numeric" + }, + "mathdbl": { + "_digits": "𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡", + "_type": "numeric" + }, + "mathmono": { + "_digits": "𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿", + "_type": "numeric" + }, + "mathsanb": { + "_digits": "𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵", + "_type": "numeric" + }, + "mathsans": { + "_digits": "𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫", + "_type": "numeric" + }, + "mlym": { + "_digits": "൦൧൨൩൪൫൬൭൮൯", + "_type": "numeric" + }, + "modi": { + "_digits": "𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙", + "_type": "numeric" + }, + "mong": { + "_digits": "᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙", + "_type": "numeric" + }, + "mroo": { + "_digits": "𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩", + "_type": "numeric" + }, + "mtei": { + "_digits": "꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹", + "_type": "numeric" + }, + "mymr": { + "_digits": "၀၁၂၃၄၅၆၇၈၉", + "_type": "numeric" + }, + "mymrshan": { + "_digits": "႐႑႒႓႔႕႖႗႘႙", + "_type": "numeric" + }, + "mymrtlng": { + "_digits": "꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹", + "_type": "numeric" + }, + "newa": { + "_digits": "𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙", + "_type": "numeric" + }, + "nkoo": { + "_digits": "߀߁߂߃߄߅߆߇߈߉", + "_type": "numeric" + }, + "olck": { + "_digits": "᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙", + "_type": "numeric" + }, + "orya": { + "_digits": "୦୧୨୩୪୫୬୭୮୯", + "_type": "numeric" + }, + "osma": { + "_digits": "𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩", + "_type": "numeric" + }, + "roman": { + "_rules": "roman-upper", + "_type": "algorithmic" + }, + "romanlow": { + "_rules": "roman-lower", + "_type": "algorithmic" + }, + "saur": { + "_digits": "꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙", + "_type": "numeric" + }, + "shrd": { + "_digits": "𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙", + "_type": "numeric" + }, + "sind": { + "_digits": "𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹", + "_type": "numeric" + }, + "sinh": { + "_digits": "෦෧෨෩෪෫෬෭෮෯", + "_type": "numeric" + }, + "sora": { + "_digits": "𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹", + "_type": "numeric" + }, + "sund": { + "_digits": "᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹", + "_type": "numeric" + }, + "takr": { + "_digits": "𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉", + "_type": "numeric" + }, + "talu": { + "_digits": "᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙", + "_type": "numeric" + }, + "taml": { + "_rules": "tamil", + "_type": "algorithmic" + }, + "tamldec": { + "_digits": "௦௧௨௩௪௫௬௭௮௯", + "_type": "numeric" + }, + "telu": { + "_digits": "౦౧౨౩౪౫౬౭౮౯", + "_type": "numeric" + }, + "thai": { + "_digits": "๐๑๒๓๔๕๖๗๘๙", + "_type": "numeric" + }, + "tibt": { + "_digits": "༠༡༢༣༤༥༦༧༨༩", + "_type": "numeric" + }, + "tirh": { + "_digits": "𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙", + "_type": "numeric" + }, + "vaii": { + "_digits": "꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩", + "_type": "numeric" + }, + "wara": { + "_digits": "𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩", + "_type": "numeric" + } + } + } +} diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/numbers.json b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/numbers.json new file mode 100644 index 0000000000..cb6b997d5f --- /dev/null +++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/numbers.json @@ -0,0 +1,154 @@ +{ + "main": { + "de": { + "identity": { + "version": { + "_number": "$Revision: 13259 $", + "_cldrVersion": "31" + }, + "language": "de" + }, + "numbers": { + "defaultNumberingSystem": "latn", + "otherNumberingSystems": { + "native": "latn" + }, + "minimumGroupingDigits": "1", + "symbols-numberSystem-latn": { + "decimal": ",", + "group": ".", + "list": ";", + "percentSign": "%", + "plusSign": "+", + "minusSign": "-", + "exponential": "E", + "superscriptingExponent": "·", + "perMille": "‰", + "infinity": "∞", + "nan": "NaN", + "timeSeparator": ":" + }, + "decimalFormats-numberSystem-latn": { + "standard": "#,##0.###", + "long": { + "decimalFormat": { + "1000-count-one": "0 Tausend", + "1000-count-other": "0 Tausend", + "10000-count-one": "00 Tausend", + "10000-count-other": "00 Tausend", + "100000-count-one": "000 Tausend", + "100000-count-other": "000 Tausend", + "1000000-count-one": "0 Million", + "1000000-count-other": "0 Millionen", + "10000000-count-one": "00 Millionen", + "10000000-count-other": "00 Millionen", + "100000000-count-one": "000 Millionen", + "100000000-count-other": "000 Millionen", + "1000000000-count-one": "0 Milliarde", + "1000000000-count-other": "0 Milliarden", + "10000000000-count-one": "00 Milliarden", + "10000000000-count-other": "00 Milliarden", + "100000000000-count-one": "000 Milliarden", + "100000000000-count-other": "000 Milliarden", + "1000000000000-count-one": "0 Billion", + "1000000000000-count-other": "0 Billionen", + "10000000000000-count-one": "00 Billionen", + "10000000000000-count-other": "00 Billionen", + "100000000000000-count-one": "000 Billionen", + "100000000000000-count-other": "000 Billionen" + } + }, + "short": { + "decimalFormat": { + "1000-count-one": "0", + "1000-count-other": "0", + "10000-count-one": "0", + "10000-count-other": "0", + "100000-count-one": "0", + "100000-count-other": "0", + "1000000-count-one": "0 Mio'.'", + "1000000-count-other": "0 Mio'.'", + "10000000-count-one": "00 Mio'.'", + "10000000-count-other": "00 Mio'.'", + "100000000-count-one": "000 Mio'.'", + "100000000-count-other": "000 Mio'.'", + "1000000000-count-one": "0 Mrd'.'", + "1000000000-count-other": "0 Mrd'.'", + "10000000000-count-one": "00 Mrd'.'", + "10000000000-count-other": "00 Mrd'.'", + "100000000000-count-one": "000 Mrd'.'", + "100000000000-count-other": "000 Mrd'.'", + "1000000000000-count-one": "0 Bio'.'", + "1000000000000-count-other": "0 Bio'.'", + "10000000000000-count-one": "00 Bio'.'", + "10000000000000-count-other": "00 Bio'.'", + "100000000000000-count-one": "000 Bio'.'", + "100000000000000-count-other": "000 Bio'.'" + } + } + }, + "scientificFormats-numberSystem-latn": { + "standard": "#E0" + }, + "percentFormats-numberSystem-latn": { + "standard": "#,##0 %" + }, + "currencyFormats-numberSystem-latn": { + "currencySpacing": { + "beforeCurrency": { + "currencyMatch": "[:^S:]", + "surroundingMatch": "[:digit:]", + "insertBetween": " " + }, + "afterCurrency": { + "currencyMatch": "[:^S:]", + "surroundingMatch": "[:digit:]", + "insertBetween": " " + } + }, + "standard": "#,##0.00 ¤", + "accounting": "#,##0.00 ¤", + "short": { + "standard": { + "1000-count-one": "0 Tsd'.' ¤", + "1000-count-other": "0 Tsd'.' ¤", + "10000-count-one": "00 Tsd'.' ¤", + "10000-count-other": "00 Tsd'.' ¤", + "100000-count-one": "000 Tsd'.' ¤", + "100000-count-other": "000 Tsd'.' ¤", + "1000000-count-one": "0 Mio'.' ¤", + "1000000-count-other": "0 Mio'.' ¤", + "10000000-count-one": "00 Mio'.' ¤", + "10000000-count-other": "00 Mio'.' ¤", + "100000000-count-one": "000 Mio'.' ¤", + "100000000-count-other": "000 Mio'.' ¤", + "1000000000-count-one": "0 Mrd'.' ¤", + "1000000000-count-other": "0 Mrd'.' ¤", + "10000000000-count-one": "00 Mrd'.' ¤", + "10000000000-count-other": "00 Mrd'.' ¤", + "100000000000-count-one": "000 Mrd'.' ¤", + "100000000000-count-other": "000 Mrd'.' ¤", + "1000000000000-count-one": "0 Bio'.' ¤", + "1000000000000-count-other": "0 Bio'.' ¤", + "10000000000000-count-one": "00 Bio'.' ¤", + "10000000000000-count-other": "00 Bio'.' ¤", + "100000000000000-count-one": "000 Bio'.' ¤", + "100000000000000-count-other": "000 Bio'.' ¤" + } + }, + "unitPattern-count-one": "{0} {1}", + "unitPattern-count-other": "{0} {1}" + }, + "miscPatterns-numberSystem-latn": { + "atLeast": "{0}+", + "range": "{0}–{1}" + }, + "minimalPairs": { + "pluralMinimalPairs": "{0} Tag", + "pluralMinimalPairs": "{0} Tage", + "other": "{0}. Abzweigung nach rechts nehmen" + } + } + } + } +} diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/styles.css b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/styles.css new file mode 100644 index 0000000000..a6fdf5d873 --- /dev/null +++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/styles.css @@ -0,0 +1,12 @@ + +@import 'node_modules/@syncfusion/ej2-base/styles/material.css'; +@import 'node_modules/@syncfusion/ej2-buttons/styles/material.css'; +@import 'node_modules/@syncfusion/ej2-dropdowns/styles/material.css'; +@import 'node_modules/@syncfusion/ej2-grids/styles/material.css'; +@import 'node_modules/@syncfusion/ej2-inputs/styles/material.css'; +@import 'node_modules/@syncfusion/ej2-lists/styles/material.css'; +@import 'node_modules/@syncfusion/ej2-navigations/styles/material.css'; +@import 'node_modules/@syncfusion/ej2-popups/styles/material.css'; +@import 'node_modules/@syncfusion/ej2-splitbuttons/styles/material.css'; +@import 'node_modules/@syncfusion/ej2-angular-pivotview/styles/material.css'; +@import 'node_modules/@syncfusion/ej2-angular-base/styles/material.css'; diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/src/timeZoneNames.json b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/timeZoneNames.json new file mode 100644 index 0000000000..05fec091c1 --- /dev/null +++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/src/timeZoneNames.json @@ -0,0 +1,2391 @@ +{ + "main": { + "de": { + "identity": { + "version": { + "_number": "$Revision: 12879 $", + "_cldrVersion": "30.0.3" + }, + "language": "de" + }, + "dates": { + "timeZoneNames": { + "hourFormat": "+HH:mm;-HH:mm", + "gmtFormat": "GMT{0}", + "gmtZeroFormat": "GMT", + "regionFormat": "{0} Zeit", + "regionFormat-type-daylight": "{0} Sommerzeit", + "regionFormat-type-standard": "{0} Normalzeit", + "fallbackFormat": "{1} ({0})", + "zone": { + "America": { + "Adak": { + "exemplarCity": "Adak" + }, + "Anchorage": { + "exemplarCity": "Anchorage" + }, + "Anguilla": { + "exemplarCity": "Anguilla" + }, + "Antigua": { + "exemplarCity": "Antigua" + }, + "Araguaina": { + "exemplarCity": "Araguaina" + }, + "Argentina": { + "Rio_Gallegos": { + "exemplarCity": "Rio Gallegos" + }, + "San_Juan": { + "exemplarCity": "San Juan" + }, + "Ushuaia": { + "exemplarCity": "Ushuaia" + }, + "La_Rioja": { + "exemplarCity": "La Rioja" + }, + "San_Luis": { + "exemplarCity": "San Luis" + }, + "Salta": { + "exemplarCity": "Salta" + }, + "Tucuman": { + "exemplarCity": "Tucuman" + } + }, + "Aruba": { + "exemplarCity": "Aruba" + }, + "Asuncion": { + "exemplarCity": "Asunción" + }, + "Bahia": { + "exemplarCity": "Bahia" + }, + "Bahia_Banderas": { + "exemplarCity": "Bahia Banderas" + }, + "Barbados": { + "exemplarCity": "Barbados" + }, + "Belem": { + "exemplarCity": "Belem" + }, + "Belize": { + "exemplarCity": "Belize" + }, + "Blanc-Sablon": { + "exemplarCity": "Blanc-Sablon" + }, + "Boa_Vista": { + "exemplarCity": "Boa Vista" + }, + "Bogota": { + "exemplarCity": "Bogotá" + }, + "Boise": { + "exemplarCity": "Boise" + }, + "Buenos_Aires": { + "exemplarCity": "Buenos Aires" + }, + "Cambridge_Bay": { + "exemplarCity": "Cambridge Bay" + }, + "Campo_Grande": { + "exemplarCity": "Campo Grande" + }, + "Cancun": { + "exemplarCity": "Cancún" + }, + "Caracas": { + "exemplarCity": "Caracas" + }, + "Catamarca": { + "exemplarCity": "Catamarca" + }, + "Cayenne": { + "exemplarCity": "Cayenne" + }, + "Cayman": { + "exemplarCity": "Kaimaninseln" + }, + "Chicago": { + "exemplarCity": "Chicago" + }, + "Chihuahua": { + "exemplarCity": "Chihuahua" + }, + "Coral_Harbour": { + "exemplarCity": "Atikokan" + }, + "Cordoba": { + "exemplarCity": "Córdoba" + }, + "Costa_Rica": { + "exemplarCity": "Costa Rica" + }, + "Creston": { + "exemplarCity": "Creston" + }, + "Cuiaba": { + "exemplarCity": "Cuiaba" + }, + "Curacao": { + "exemplarCity": "Curaçao" + }, + "Danmarkshavn": { + "exemplarCity": "Danmarkshavn" + }, + "Dawson": { + "exemplarCity": "Dawson" + }, + "Dawson_Creek": { + "exemplarCity": "Dawson Creek" + }, + "Denver": { + "exemplarCity": "Denver" + }, + "Detroit": { + "exemplarCity": "Detroit" + }, + "Dominica": { + "exemplarCity": "Dominica" + }, + "Edmonton": { + "exemplarCity": "Edmonton" + }, + "Eirunepe": { + "exemplarCity": "Eirunepe" + }, + "El_Salvador": { + "exemplarCity": "El Salvador" + }, + "Fort_Nelson": { + "exemplarCity": "Fort Nelson" + }, + "Fortaleza": { + "exemplarCity": "Fortaleza" + }, + "Glace_Bay": { + "exemplarCity": "Glace Bay" + }, + "Godthab": { + "exemplarCity": "Nuuk" + }, + "Goose_Bay": { + "exemplarCity": "Goose Bay" + }, + "Grand_Turk": { + "exemplarCity": "Grand Turk" + }, + "Grenada": { + "exemplarCity": "Grenada" + }, + "Guadeloupe": { + "exemplarCity": "Guadeloupe" + }, + "Guatemala": { + "exemplarCity": "Guatemala" + }, + "Guayaquil": { + "exemplarCity": "Guayaquil" + }, + "Guyana": { + "exemplarCity": "Guyana" + }, + "Halifax": { + "exemplarCity": "Halifax" + }, + "Havana": { + "exemplarCity": "Havanna" + }, + "Hermosillo": { + "exemplarCity": "Hermosillo" + }, + "Indiana": { + "Vincennes": { + "exemplarCity": "Vincennes, Indiana" + }, + "Petersburg": { + "exemplarCity": "Petersburg, Indiana" + }, + "Tell_City": { + "exemplarCity": "Tell City, Indiana" + }, + "Knox": { + "exemplarCity": "Knox, Indiana" + }, + "Winamac": { + "exemplarCity": "Winamac, Indiana" + }, + "Marengo": { + "exemplarCity": "Marengo, Indiana" + }, + "Vevay": { + "exemplarCity": "Vevay, Indiana" + } + }, + "Indianapolis": { + "exemplarCity": "Indianapolis" + }, + "Inuvik": { + "exemplarCity": "Inuvik" + }, + "Iqaluit": { + "exemplarCity": "Iqaluit" + }, + "Jamaica": { + "exemplarCity": "Jamaika" + }, + "Jujuy": { + "exemplarCity": "Jujuy" + }, + "Juneau": { + "exemplarCity": "Juneau" + }, + "Kentucky": { + "Monticello": { + "exemplarCity": "Monticello, Kentucky" + } + }, + "Kralendijk": { + "exemplarCity": "Kralendijk" + }, + "La_Paz": { + "exemplarCity": "La Paz" + }, + "Lima": { + "exemplarCity": "Lima" + }, + "Los_Angeles": { + "exemplarCity": "Los Angeles" + }, + "Louisville": { + "exemplarCity": "Louisville" + }, + "Lower_Princes": { + "exemplarCity": "Lower Prince’s Quarter" + }, + "Maceio": { + "exemplarCity": "Maceio" + }, + "Managua": { + "exemplarCity": "Managua" + }, + "Manaus": { + "exemplarCity": "Manaus" + }, + "Marigot": { + "exemplarCity": "Marigot" + }, + "Martinique": { + "exemplarCity": "Martinique" + }, + "Matamoros": { + "exemplarCity": "Matamoros" + }, + "Mazatlan": { + "exemplarCity": "Mazatlan" + }, + "Mendoza": { + "exemplarCity": "Mendoza" + }, + "Menominee": { + "exemplarCity": "Menominee" + }, + "Merida": { + "exemplarCity": "Merida" + }, + "Metlakatla": { + "exemplarCity": "Metlakatla" + }, + "Mexico_City": { + "exemplarCity": "Mexiko-Stadt" + }, + "Miquelon": { + "exemplarCity": "Miquelon" + }, + "Moncton": { + "exemplarCity": "Moncton" + }, + "Monterrey": { + "exemplarCity": "Monterrey" + }, + "Montevideo": { + "exemplarCity": "Montevideo" + }, + "Montserrat": { + "exemplarCity": "Montserrat" + }, + "Nassau": { + "exemplarCity": "Nassau" + }, + "New_York": { + "exemplarCity": "New York" + }, + "Nipigon": { + "exemplarCity": "Nipigon" + }, + "Nome": { + "exemplarCity": "Nome" + }, + "Noronha": { + "exemplarCity": "Noronha" + }, + "North_Dakota": { + "Beulah": { + "exemplarCity": "Beulah, North Dakota" + }, + "New_Salem": { + "exemplarCity": "New Salem, North Dakota" + }, + "Center": { + "exemplarCity": "Center, North Dakota" + } + }, + "Ojinaga": { + "exemplarCity": "Ojinaga" + }, + "Panama": { + "exemplarCity": "Panama" + }, + "Pangnirtung": { + "exemplarCity": "Pangnirtung" + }, + "Paramaribo": { + "exemplarCity": "Paramaribo" + }, + "Phoenix": { + "exemplarCity": "Phoenix" + }, + "Port-au-Prince": { + "exemplarCity": "Port-au-Prince" + }, + "Port_of_Spain": { + "exemplarCity": "Port of Spain" + }, + "Porto_Velho": { + "exemplarCity": "Porto Velho" + }, + "Puerto_Rico": { + "exemplarCity": "Puerto Rico" + }, + "Rainy_River": { + "exemplarCity": "Rainy River" + }, + "Rankin_Inlet": { + "exemplarCity": "Rankin Inlet" + }, + "Recife": { + "exemplarCity": "Recife" + }, + "Regina": { + "exemplarCity": "Regina" + }, + "Resolute": { + "exemplarCity": "Resolute" + }, + "Rio_Branco": { + "exemplarCity": "Rio Branco" + }, + "Santa_Isabel": { + "exemplarCity": "Santa Isabel" + }, + "Santarem": { + "exemplarCity": "Santarem" + }, + "Santiago": { + "exemplarCity": "Santiago" + }, + "Santo_Domingo": { + "exemplarCity": "Santo Domingo" + }, + "Sao_Paulo": { + "exemplarCity": "São Paulo" + }, + "Scoresbysund": { + "exemplarCity": "Ittoqqortoormiit" + }, + "Sitka": { + "exemplarCity": "Sitka" + }, + "St_Barthelemy": { + "exemplarCity": "Saint-Barthélemy" + }, + "St_Johns": { + "exemplarCity": "St. John’s" + }, + "St_Kitts": { + "exemplarCity": "St. Kitts" + }, + "St_Lucia": { + "exemplarCity": "St. Lucia" + }, + "St_Thomas": { + "exemplarCity": "St. Thomas" + }, + "St_Vincent": { + "exemplarCity": "St. Vincent" + }, + "Swift_Current": { + "exemplarCity": "Swift Current" + }, + "Tegucigalpa": { + "exemplarCity": "Tegucigalpa" + }, + "Thule": { + "exemplarCity": "Thule" + }, + "Thunder_Bay": { + "exemplarCity": "Thunder Bay" + }, + "Tijuana": { + "exemplarCity": "Tijuana" + }, + "Toronto": { + "exemplarCity": "Toronto" + }, + "Tortola": { + "exemplarCity": "Tortola" + }, + "Vancouver": { + "exemplarCity": "Vancouver" + }, + "Whitehorse": { + "exemplarCity": "Whitehorse" + }, + "Winnipeg": { + "exemplarCity": "Winnipeg" + }, + "Yakutat": { + "exemplarCity": "Yakutat" + }, + "Yellowknife": { + "exemplarCity": "Yellowknife" + } + }, + "Atlantic": { + "Azores": { + "exemplarCity": "Azoren" + }, + "Bermuda": { + "exemplarCity": "Bermudas" + }, + "Canary": { + "exemplarCity": "Kanaren" + }, + "Cape_Verde": { + "exemplarCity": "Cabo Verde" + }, + "Faeroe": { + "exemplarCity": "Färöer" + }, + "Madeira": { + "exemplarCity": "Madeira" + }, + "Reykjavik": { + "exemplarCity": "Reyk­ja­vík" + }, + "South_Georgia": { + "exemplarCity": "Südgeorgien" + }, + "St_Helena": { + "exemplarCity": "St. Helena" + }, + "Stanley": { + "exemplarCity": "Stanley" + } + }, + "Europe": { + "Amsterdam": { + "exemplarCity": "Amsterdam" + }, + "Andorra": { + "exemplarCity": "Andorra" + }, + "Astrakhan": { + "exemplarCity": "Astrachan" + }, + "Athens": { + "exemplarCity": "Athen" + }, + "Belgrade": { + "exemplarCity": "Belgrad" + }, + "Berlin": { + "exemplarCity": "Berlin" + }, + "Bratislava": { + "exemplarCity": "Bratislava" + }, + "Brussels": { + "exemplarCity": "Brüssel" + }, + "Bucharest": { + "exemplarCity": "Bukarest" + }, + "Budapest": { + "exemplarCity": "Budapest" + }, + "Busingen": { + "exemplarCity": "Büsingen" + }, + "Chisinau": { + "exemplarCity": "Kischinau" + }, + "Copenhagen": { + "exemplarCity": "Kopenhagen" + }, + "Dublin": { + "long": { + "daylight": "Irische Sommerzeit" + }, + "exemplarCity": "Dublin" + }, + "Gibraltar": { + "exemplarCity": "Gibraltar" + }, + "Guernsey": { + "exemplarCity": "Guernsey" + }, + "Helsinki": { + "exemplarCity": "Helsinki" + }, + "Isle_of_Man": { + "exemplarCity": "Isle of Man" + }, + "Istanbul": { + "exemplarCity": "Istanbul" + }, + "Jersey": { + "exemplarCity": "Jersey" + }, + "Kaliningrad": { + "exemplarCity": "Kaliningrad" + }, + "Kiev": { + "exemplarCity": "Kiew" + }, + "Kirov": { + "exemplarCity": "Kirow" + }, + "Lisbon": { + "exemplarCity": "Lissabon" + }, + "Ljubljana": { + "exemplarCity": "Ljubljana" + }, + "London": { + "long": { + "daylight": "Britische Sommerzeit" + }, + "exemplarCity": "London" + }, + "Luxembourg": { + "exemplarCity": "Luxemburg" + }, + "Madrid": { + "exemplarCity": "Madrid" + }, + "Malta": { + "exemplarCity": "Malta" + }, + "Mariehamn": { + "exemplarCity": "Mariehamn" + }, + "Minsk": { + "exemplarCity": "Minsk" + }, + "Monaco": { + "exemplarCity": "Monaco" + }, + "Moscow": { + "exemplarCity": "Moskau" + }, + "Oslo": { + "exemplarCity": "Oslo" + }, + "Paris": { + "exemplarCity": "Paris" + }, + "Podgorica": { + "exemplarCity": "Podgorica" + }, + "Prague": { + "exemplarCity": "Prag" + }, + "Riga": { + "exemplarCity": "Riga" + }, + "Rome": { + "exemplarCity": "Rom" + }, + "Samara": { + "exemplarCity": "Samara" + }, + "San_Marino": { + "exemplarCity": "San Marino" + }, + "Sarajevo": { + "exemplarCity": "Sarajevo" + }, + "Simferopol": { + "exemplarCity": "Simferopol" + }, + "Skopje": { + "exemplarCity": "Skopje" + }, + "Sofia": { + "exemplarCity": "Sofia" + }, + "Stockholm": { + "exemplarCity": "Stockholm" + }, + "Tallinn": { + "exemplarCity": "Tallinn" + }, + "Tirane": { + "exemplarCity": "Tirana" + }, + "Ulyanovsk": { + "exemplarCity": "Uljanowsk" + }, + "Uzhgorod": { + "exemplarCity": "Uschgorod" + }, + "Vaduz": { + "exemplarCity": "Vaduz" + }, + "Vatican": { + "exemplarCity": "Vatikan" + }, + "Vienna": { + "exemplarCity": "Wien" + }, + "Vilnius": { + "exemplarCity": "Vilnius" + }, + "Volgograd": { + "exemplarCity": "Wolgograd" + }, + "Warsaw": { + "exemplarCity": "Warschau" + }, + "Zagreb": { + "exemplarCity": "Zagreb" + }, + "Zaporozhye": { + "exemplarCity": "Saporischja" + }, + "Zurich": { + "exemplarCity": "Zürich" + } + }, + "Africa": { + "Abidjan": { + "exemplarCity": "Abidjan" + }, + "Accra": { + "exemplarCity": "Accra" + }, + "Addis_Ababa": { + "exemplarCity": "Addis Abeba" + }, + "Algiers": { + "exemplarCity": "Algier" + }, + "Asmera": { + "exemplarCity": "Asmara" + }, + "Bamako": { + "exemplarCity": "Bamako" + }, + "Bangui": { + "exemplarCity": "Bangui" + }, + "Banjul": { + "exemplarCity": "Banjul" + }, + "Bissau": { + "exemplarCity": "Bissau" + }, + "Blantyre": { + "exemplarCity": "Blantyre" + }, + "Brazzaville": { + "exemplarCity": "Brazzaville" + }, + "Bujumbura": { + "exemplarCity": "Bujumbura" + }, + "Cairo": { + "exemplarCity": "Kairo" + }, + "Casablanca": { + "exemplarCity": "Casablanca" + }, + "Ceuta": { + "exemplarCity": "Ceuta" + }, + "Conakry": { + "exemplarCity": "Conakry" + }, + "Dakar": { + "exemplarCity": "Dakar" + }, + "Dar_es_Salaam": { + "exemplarCity": "Daressalam" + }, + "Djibouti": { + "exemplarCity": "Dschibuti" + }, + "Douala": { + "exemplarCity": "Douala" + }, + "El_Aaiun": { + "exemplarCity": "El Aaiún" + }, + "Freetown": { + "exemplarCity": "Freetown" + }, + "Gaborone": { + "exemplarCity": "Gaborone" + }, + "Harare": { + "exemplarCity": "Harare" + }, + "Johannesburg": { + "exemplarCity": "Johannesburg" + }, + "Juba": { + "exemplarCity": "Juba" + }, + "Kampala": { + "exemplarCity": "Kampala" + }, + "Khartoum": { + "exemplarCity": "Khartum" + }, + "Kigali": { + "exemplarCity": "Kigali" + }, + "Kinshasa": { + "exemplarCity": "Kinshasa" + }, + "Lagos": { + "exemplarCity": "Lagos" + }, + "Libreville": { + "exemplarCity": "Libreville" + }, + "Lome": { + "exemplarCity": "Lomé" + }, + "Luanda": { + "exemplarCity": "Luanda" + }, + "Lubumbashi": { + "exemplarCity": "Lubumbashi" + }, + "Lusaka": { + "exemplarCity": "Lusaka" + }, + "Malabo": { + "exemplarCity": "Malabo" + }, + "Maputo": { + "exemplarCity": "Maputo" + }, + "Maseru": { + "exemplarCity": "Maseru" + }, + "Mbabane": { + "exemplarCity": "Mbabane" + }, + "Mogadishu": { + "exemplarCity": "Mogadischu" + }, + "Monrovia": { + "exemplarCity": "Monrovia" + }, + "Nairobi": { + "exemplarCity": "Nairobi" + }, + "Ndjamena": { + "exemplarCity": "N’Djamena" + }, + "Niamey": { + "exemplarCity": "Niamey" + }, + "Nouakchott": { + "exemplarCity": "Nouakchott" + }, + "Ouagadougou": { + "exemplarCity": "Ouagadougou" + }, + "Porto-Novo": { + "exemplarCity": "Porto Novo" + }, + "Sao_Tome": { + "exemplarCity": "São Tomé" + }, + "Tripoli": { + "exemplarCity": "Tripolis" + }, + "Tunis": { + "exemplarCity": "Tunis" + }, + "Windhoek": { + "exemplarCity": "Windhoek" + } + }, + "Asia": { + "Aden": { + "exemplarCity": "Aden" + }, + "Almaty": { + "exemplarCity": "Almaty" + }, + "Amman": { + "exemplarCity": "Amman" + }, + "Anadyr": { + "exemplarCity": "Anadyr" + }, + "Aqtau": { + "exemplarCity": "Aqtau" + }, + "Aqtobe": { + "exemplarCity": "Aktobe" + }, + "Ashgabat": { + "exemplarCity": "Aşgabat" + }, + "Baghdad": { + "exemplarCity": "Bagdad" + }, + "Bahrain": { + "exemplarCity": "Bahrain" + }, + "Baku": { + "exemplarCity": "Baku" + }, + "Bangkok": { + "exemplarCity": "Bangkok" + }, + "Barnaul": { + "exemplarCity": "Barnaul" + }, + "Beirut": { + "exemplarCity": "Beirut" + }, + "Bishkek": { + "exemplarCity": "Bischkek" + }, + "Brunei": { + "exemplarCity": "Brunei" + }, + "Calcutta": { + "exemplarCity": "Kalkutta" + }, + "Chita": { + "exemplarCity": "Tschita" + }, + "Choibalsan": { + "exemplarCity": "Tschoibalsan" + }, + "Colombo": { + "exemplarCity": "Colombo" + }, + "Damascus": { + "exemplarCity": "Damaskus" + }, + "Dhaka": { + "exemplarCity": "Dhaka" + }, + "Dili": { + "exemplarCity": "Dili" + }, + "Dubai": { + "exemplarCity": "Dubai" + }, + "Dushanbe": { + "exemplarCity": "Duschanbe" + }, + "Gaza": { + "exemplarCity": "Gaza" + }, + "Hebron": { + "exemplarCity": "Hebron" + }, + "Hong_Kong": { + "exemplarCity": "Hongkong" + }, + "Hovd": { + "exemplarCity": "Chowd" + }, + "Irkutsk": { + "exemplarCity": "Irkutsk" + }, + "Jakarta": { + "exemplarCity": "Jakarta" + }, + "Jayapura": { + "exemplarCity": "Jayapura" + }, + "Jerusalem": { + "exemplarCity": "Jerusalem" + }, + "Kabul": { + "exemplarCity": "Kabul" + }, + "Kamchatka": { + "exemplarCity": "Kamtschatka" + }, + "Karachi": { + "exemplarCity": "Karatschi" + }, + "Katmandu": { + "exemplarCity": "Kathmandu" + }, + "Khandyga": { + "exemplarCity": "Chandyga" + }, + "Krasnoyarsk": { + "exemplarCity": "Krasnojarsk" + }, + "Kuala_Lumpur": { + "exemplarCity": "Kuala Lumpur" + }, + "Kuching": { + "exemplarCity": "Kuching" + }, + "Kuwait": { + "exemplarCity": "Kuwait" + }, + "Macau": { + "exemplarCity": "Macao" + }, + "Magadan": { + "exemplarCity": "Magadan" + }, + "Makassar": { + "exemplarCity": "Makassar" + }, + "Manila": { + "exemplarCity": "Manila" + }, + "Muscat": { + "exemplarCity": "Maskat" + }, + "Nicosia": { + "exemplarCity": "Nikosia" + }, + "Novokuznetsk": { + "exemplarCity": "Nowokuznetsk" + }, + "Novosibirsk": { + "exemplarCity": "Nowosibirsk" + }, + "Omsk": { + "exemplarCity": "Omsk" + }, + "Oral": { + "exemplarCity": "Oral" + }, + "Phnom_Penh": { + "exemplarCity": "Phnom Penh" + }, + "Pontianak": { + "exemplarCity": "Pontianak" + }, + "Pyongyang": { + "exemplarCity": "Pjöngjang" + }, + "Qatar": { + "exemplarCity": "Katar" + }, + "Qyzylorda": { + "exemplarCity": "Qysylorda" + }, + "Rangoon": { + "exemplarCity": "Rangun" + }, + "Riyadh": { + "exemplarCity": "Riad" + }, + "Saigon": { + "exemplarCity": "Ho-Chi-Minh-Stadt" + }, + "Sakhalin": { + "exemplarCity": "Sachalin" + }, + "Samarkand": { + "exemplarCity": "Samarkand" + }, + "Seoul": { + "exemplarCity": "Seoul" + }, + "Shanghai": { + "exemplarCity": "Shanghai" + }, + "Singapore": { + "exemplarCity": "Singapur" + }, + "Srednekolymsk": { + "exemplarCity": "Srednekolymsk" + }, + "Taipei": { + "exemplarCity": "Taipeh" + }, + "Tashkent": { + "exemplarCity": "Taschkent" + }, + "Tbilisi": { + "exemplarCity": "Tiflis" + }, + "Tehran": { + "exemplarCity": "Teheran" + }, + "Thimphu": { + "exemplarCity": "Thimphu" + }, + "Tokyo": { + "exemplarCity": "Tokio" + }, + "Tomsk": { + "exemplarCity": "Tomsk" + }, + "Ulaanbaatar": { + "exemplarCity": "Ulaanbaatar" + }, + "Urumqi": { + "exemplarCity": "Ürümqi" + }, + "Ust-Nera": { + "exemplarCity": "Ust-Nera" + }, + "Vientiane": { + "exemplarCity": "Vientiane" + }, + "Vladivostok": { + "exemplarCity": "Wladiwostok" + }, + "Yakutsk": { + "exemplarCity": "Jakutsk" + }, + "Yekaterinburg": { + "exemplarCity": "Jekaterinburg" + }, + "Yerevan": { + "exemplarCity": "Eriwan" + } + }, + "Indian": { + "Antananarivo": { + "exemplarCity": "Antananarivo" + }, + "Chagos": { + "exemplarCity": "Chagos" + }, + "Christmas": { + "exemplarCity": "Weihnachtsinsel" + }, + "Cocos": { + "exemplarCity": "Cocos" + }, + "Comoro": { + "exemplarCity": "Komoren" + }, + "Kerguelen": { + "exemplarCity": "Kerguelen" + }, + "Mahe": { + "exemplarCity": "Mahe" + }, + "Maldives": { + "exemplarCity": "Malediven" + }, + "Mauritius": { + "exemplarCity": "Mauritius" + }, + "Mayotte": { + "exemplarCity": "Mayotte" + }, + "Reunion": { + "exemplarCity": "Réunion" + } + }, + "Australia": { + "Adelaide": { + "exemplarCity": "Adelaide" + }, + "Brisbane": { + "exemplarCity": "Brisbane" + }, + "Broken_Hill": { + "exemplarCity": "Broken Hill" + }, + "Currie": { + "exemplarCity": "Currie" + }, + "Darwin": { + "exemplarCity": "Darwin" + }, + "Eucla": { + "exemplarCity": "Eucla" + }, + "Hobart": { + "exemplarCity": "Hobart" + }, + "Lindeman": { + "exemplarCity": "Lindeman" + }, + "Lord_Howe": { + "exemplarCity": "Lord Howe" + }, + "Melbourne": { + "exemplarCity": "Melbourne" + }, + "Perth": { + "exemplarCity": "Perth" + }, + "Sydney": { + "exemplarCity": "Sydney" + } + }, + "Pacific": { + "Apia": { + "exemplarCity": "Apia" + }, + "Auckland": { + "exemplarCity": "Auckland" + }, + "Bougainville": { + "exemplarCity": "Bougainville" + }, + "Chatham": { + "exemplarCity": "Chatham" + }, + "Easter": { + "exemplarCity": "Osterinsel" + }, + "Efate": { + "exemplarCity": "Efate" + }, + "Enderbury": { + "exemplarCity": "Enderbury" + }, + "Fakaofo": { + "exemplarCity": "Fakaofo" + }, + "Fiji": { + "exemplarCity": "Fidschi" + }, + "Funafuti": { + "exemplarCity": "Funafuti" + }, + "Galapagos": { + "exemplarCity": "Galapagos" + }, + "Gambier": { + "exemplarCity": "Gambier" + }, + "Guadalcanal": { + "exemplarCity": "Guadalcanal" + }, + "Guam": { + "exemplarCity": "Guam" + }, + "Honolulu": { + "exemplarCity": "Honolulu" + }, + "Johnston": { + "exemplarCity": "Johnston" + }, + "Kiritimati": { + "exemplarCity": "Kiritimati" + }, + "Kosrae": { + "exemplarCity": "Kosrae" + }, + "Kwajalein": { + "exemplarCity": "Kwajalein" + }, + "Majuro": { + "exemplarCity": "Majuro" + }, + "Marquesas": { + "exemplarCity": "Marquesas" + }, + "Midway": { + "exemplarCity": "Midway" + }, + "Nauru": { + "exemplarCity": "Nauru" + }, + "Niue": { + "exemplarCity": "Niue" + }, + "Norfolk": { + "exemplarCity": "Norfolk" + }, + "Noumea": { + "exemplarCity": "Noumea" + }, + "Pago_Pago": { + "exemplarCity": "Pago Pago" + }, + "Palau": { + "exemplarCity": "Palau" + }, + "Pitcairn": { + "exemplarCity": "Pitcairn" + }, + "Ponape": { + "exemplarCity": "Pohnpei" + }, + "Port_Moresby": { + "exemplarCity": "Port Moresby" + }, + "Rarotonga": { + "exemplarCity": "Rarotonga" + }, + "Saipan": { + "exemplarCity": "Saipan" + }, + "Tahiti": { + "exemplarCity": "Tahiti" + }, + "Tarawa": { + "exemplarCity": "Tarawa" + }, + "Tongatapu": { + "exemplarCity": "Tongatapu" + }, + "Truk": { + "exemplarCity": "Chuuk" + }, + "Wake": { + "exemplarCity": "Wake" + }, + "Wallis": { + "exemplarCity": "Wallis" + } + }, + "Arctic": { + "Longyearbyen": { + "exemplarCity": "Longyearbyen" + } + }, + "Antarctica": { + "Casey": { + "exemplarCity": "Casey" + }, + "Davis": { + "exemplarCity": "Davis" + }, + "DumontDUrville": { + "exemplarCity": "Dumont d’Urville" + }, + "Macquarie": { + "exemplarCity": "Macquarie" + }, + "Mawson": { + "exemplarCity": "Mawson" + }, + "McMurdo": { + "exemplarCity": "McMurdo" + }, + "Palmer": { + "exemplarCity": "Palmer" + }, + "Rothera": { + "exemplarCity": "Rothera" + }, + "Syowa": { + "exemplarCity": "Syowa" + }, + "Troll": { + "exemplarCity": "Troll" + }, + "Vostok": { + "exemplarCity": "Wostok" + } + }, + "Etc": { + "GMT": { + "exemplarCity": "GMT" + }, + "GMT1": { + "exemplarCity": "GMT+1" + }, + "GMT10": { + "exemplarCity": "GMT+10" + }, + "GMT11": { + "exemplarCity": "GMT+11" + }, + "GMT12": { + "exemplarCity": "GMT+12" + }, + "GMT2": { + "exemplarCity": "GMT+2" + }, + "GMT3": { + "exemplarCity": "GMT+3" + }, + "GMT4": { + "exemplarCity": "GMT+4" + }, + "GMT5": { + "exemplarCity": "GMT+5" + }, + "GMT6": { + "exemplarCity": "GMT+6" + }, + "GMT7": { + "exemplarCity": "GMT+7" + }, + "GMT8": { + "exemplarCity": "GMT+8" + }, + "GMT9": { + "exemplarCity": "GMT+9" + }, + "GMT-1": { + "exemplarCity": "GMT-1" + }, + "GMT-10": { + "exemplarCity": "GMT-10" + }, + "GMT-11": { + "exemplarCity": "GMT-11" + }, + "GMT-12": { + "exemplarCity": "GMT-12" + }, + "GMT-13": { + "exemplarCity": "GMT-13" + }, + "GMT-14": { + "exemplarCity": "GMT-14" + }, + "GMT-2": { + "exemplarCity": "GMT-2" + }, + "GMT-3": { + "exemplarCity": "GMT-3" + }, + "GMT-4": { + "exemplarCity": "GMT-4" + }, + "GMT-5": { + "exemplarCity": "GMT-5" + }, + "GMT-6": { + "exemplarCity": "GMT-6" + }, + "GMT-7": { + "exemplarCity": "GMT-7" + }, + "GMT-8": { + "exemplarCity": "GMT-8" + }, + "GMT-9": { + "exemplarCity": "GMT-9" + }, + "Unknown": { + "exemplarCity": "Unbekannt" + } + } + }, + "metazone": { + "Acre": { + "long": { + "generic": "Acre-Zeit", + "standard": "Acre-Normalzeit", + "daylight": "Acre-Sommerzeit" + } + }, + "Afghanistan": { + "long": { + "standard": "Afghanistan-Zeit" + } + }, + "Africa_Central": { + "long": { + "standard": "Zentralafrikanische Zeit" + } + }, + "Africa_Eastern": { + "long": { + "standard": "Ostafrikanische Zeit" + } + }, + "Africa_Southern": { + "long": { + "standard": "Südafrikanische Zeit" + } + }, + "Africa_Western": { + "long": { + "generic": "Westafrikanische Zeit", + "standard": "Westafrikanische Normalzeit", + "daylight": "Westafrikanische Sommerzeit" + } + }, + "Alaska": { + "long": { + "generic": "Alaska-Zeit", + "standard": "Alaska-Normalzeit", + "daylight": "Alaska-Sommerzeit" + } + }, + "Almaty": { + "long": { + "generic": "Almaty-Zeit", + "standard": "Almaty-Normalzeit", + "daylight": "Almaty-Sommerzeit" + } + }, + "Amazon": { + "long": { + "generic": "Amazonas-Zeit", + "standard": "Amazonas-Normalzeit", + "daylight": "Amazonas-Sommerzeit" + } + }, + "America_Central": { + "long": { + "generic": "Nordamerikanische Inlandzeit", + "standard": "Nordamerikanische Inland-Normalzeit", + "daylight": "Nordamerikanische Inland-Sommerzeit" + } + }, + "America_Eastern": { + "long": { + "generic": "Nordamerikanische Ostküstenzeit", + "standard": "Nordamerikanische Ostküsten-Normalzeit", + "daylight": "Nordamerikanische Ostküsten-Sommerzeit" + } + }, + "America_Mountain": { + "long": { + "generic": "Rocky-Mountain-Zeit", + "standard": "Rocky Mountain-Normalzeit", + "daylight": "Rocky-Mountain-Sommerzeit" + } + }, + "America_Pacific": { + "long": { + "generic": "Nordamerikanische Westküstenzeit", + "standard": "Nordamerikanische Westküsten-Normalzeit", + "daylight": "Nordamerikanische Westküsten-Sommerzeit" + } + }, + "Anadyr": { + "long": { + "generic": "Anadyr Zeit", + "standard": "Anadyr Normalzeit", + "daylight": "Anadyr Sommerzeit" + } + }, + "Apia": { + "long": { + "generic": "Apia-Zeit", + "standard": "Apia-Normalzeit", + "daylight": "Apia-Sommerzeit" + } + }, + "Aqtau": { + "long": { + "generic": "Aqtau-Zeit", + "standard": "Aqtau-Normalzeit", + "daylight": "Aqtau-Sommerzeit" + } + }, + "Aqtobe": { + "long": { + "generic": "Aqtöbe-Zeit", + "standard": "Aqtöbe-Normalzeit", + "daylight": "Aqtöbe-Sommerzeit" + } + }, + "Arabian": { + "long": { + "generic": "Arabische Zeit", + "standard": "Arabische Normalzeit", + "daylight": "Arabische Sommerzeit" + } + }, + "Argentina": { + "long": { + "generic": "Argentinische Zeit", + "standard": "Argentinische Normalzeit", + "daylight": "Argentinische Sommerzeit" + } + }, + "Argentina_Western": { + "long": { + "generic": "Westargentinische Zeit", + "standard": "Westargentinische Normalzeit", + "daylight": "Westargentinische Sommerzeit" + } + }, + "Armenia": { + "long": { + "generic": "Armenische Zeit", + "standard": "Armenische Normalzeit", + "daylight": "Armenische Sommerzeit" + } + }, + "Atlantic": { + "long": { + "generic": "Atlantik-Zeit", + "standard": "Atlantik-Normalzeit", + "daylight": "Atlantik-Sommerzeit" + } + }, + "Australia_Central": { + "long": { + "generic": "Zentralaustralische Zeit", + "standard": "Zentralaustralische Normalzeit", + "daylight": "Zentralaustralische Sommerzeit" + } + }, + "Australia_CentralWestern": { + "long": { + "generic": "Zentral-/Westaustralische Zeit", + "standard": "Zentral-/Westaustralische Normalzeit", + "daylight": "Zentral-/Westaustralische Sommerzeit" + } + }, + "Australia_Eastern": { + "long": { + "generic": "Ostaustralische Zeit", + "standard": "Ostaustralische Normalzeit", + "daylight": "Ostaustralische Sommerzeit" + } + }, + "Australia_Western": { + "long": { + "generic": "Westaustralische Zeit", + "standard": "Westaustralische Normalzeit", + "daylight": "Westaustralische Sommerzeit" + } + }, + "Azerbaijan": { + "long": { + "generic": "Aserbaidschanische Zeit", + "standard": "Aserbeidschanische Normalzeit", + "daylight": "Aserbaidschanische Sommerzeit" + } + }, + "Azores": { + "long": { + "generic": "Azoren-Zeit", + "standard": "Azoren-Normalzeit", + "daylight": "Azoren-Sommerzeit" + } + }, + "Bangladesh": { + "long": { + "generic": "Bangladesch-Zeit", + "standard": "Bangladesch-Normalzeit", + "daylight": "Bangladesch-Sommerzeit" + } + }, + "Bhutan": { + "long": { + "standard": "Bhutan-Zeit" + } + }, + "Bolivia": { + "long": { + "standard": "Bolivianische Zeit" + } + }, + "Brasilia": { + "long": { + "generic": "Brasília-Zeit", + "standard": "Brasília-Normalzeit", + "daylight": "Brasília-Sommerzeit" + } + }, + "Brunei": { + "long": { + "standard": "Brunei-Zeit" + } + }, + "Cape_Verde": { + "long": { + "generic": "Cabo-Verde-Zeit", + "standard": "Cabo-Verde-Normalzeit", + "daylight": "Cabo-Verde-Sommerzeit" + } + }, + "Casey": { + "long": { + "standard": "Casey-Zeit" + } + }, + "Chamorro": { + "long": { + "standard": "Chamorro-Zeit" + } + }, + "Chatham": { + "long": { + "generic": "Chatham-Zeit", + "standard": "Chatham-Normalzeit", + "daylight": "Chatham-Sommerzeit" + } + }, + "Chile": { + "long": { + "generic": "Chilenische Zeit", + "standard": "Chilenische Normalzeit", + "daylight": "Chilenische Sommerzeit" + } + }, + "China": { + "long": { + "generic": "Chinesische Zeit", + "standard": "Chinesische Normalzeit", + "daylight": "Chinesische Sommerzeit" + } + }, + "Choibalsan": { + "long": { + "generic": "Tschoibalsan-Zeit", + "standard": "Tschoibalsan-Normalzeit", + "daylight": "Tschoibalsan-Sommerzeit" + } + }, + "Christmas": { + "long": { + "standard": "Weihnachtsinsel-Zeit" + } + }, + "Cocos": { + "long": { + "standard": "Kokosinseln-Zeit" + } + }, + "Colombia": { + "long": { + "generic": "Kolumbianische Zeit", + "standard": "Kolumbianische Normalzeit", + "daylight": "Kolumbianische Sommerzeit" + } + }, + "Cook": { + "long": { + "generic": "Cookinseln-Zeit", + "standard": "Cookinseln-Normalzeit", + "daylight": "Cookinseln-Sommerzeit" + } + }, + "Cuba": { + "long": { + "generic": "Kubanische Zeit", + "standard": "Kubanische Normalzeit", + "daylight": "Kubanische Sommerzeit" + } + }, + "Davis": { + "long": { + "standard": "Davis-Zeit" + } + }, + "DumontDUrville": { + "long": { + "standard": "Dumont-d’Urville-Zeit" + } + }, + "East_Timor": { + "long": { + "standard": "Osttimor-Zeit" + } + }, + "Easter": { + "long": { + "generic": "Osterinsel-Zeit", + "standard": "Osterinsel-Normalzeit", + "daylight": "Osterinsel-Sommerzeit" + } + }, + "Ecuador": { + "long": { + "standard": "Ecuadorianische Zeit" + } + }, + "Europe_Central": { + "long": { + "generic": "Mitteleuropäische Zeit", + "standard": "Mitteleuropäische Normalzeit", + "daylight": "Mitteleuropäische Sommerzeit" + }, + "short": { + "generic": "MEZ", + "standard": "MEZ", + "daylight": "MESZ" + } + }, + "Europe_Eastern": { + "long": { + "generic": "Osteuropäische Zeit", + "standard": "Osteuropäische Normalzeit", + "daylight": "Osteuropäische Sommerzeit" + }, + "short": { + "generic": "OEZ", + "standard": "OEZ", + "daylight": "OESZ" + } + }, + "Europe_Further_Eastern": { + "long": { + "standard": "Kaliningrader Zeit" + } + }, + "Europe_Western": { + "long": { + "generic": "Westeuropäische Zeit", + "standard": "Westeuropäische Normalzeit", + "daylight": "Westeuropäische Sommerzeit" + }, + "short": { + "generic": "WEZ", + "standard": "WEZ", + "daylight": "WESZ" + } + }, + "Falkland": { + "long": { + "generic": "Falklandinseln-Zeit", + "standard": "Falklandinseln-Normalzeit", + "daylight": "Falklandinseln-Sommerzeit" + } + }, + "Fiji": { + "long": { + "generic": "Fidschi-Zeit", + "standard": "Fidschi-Normalzeit", + "daylight": "Fidschi-Sommerzeit" + } + }, + "French_Guiana": { + "long": { + "standard": "Französisch-Guayana-Zeit" + } + }, + "French_Southern": { + "long": { + "standard": "Französische Süd- und Antarktisgebiete-Zeit" + } + }, + "Galapagos": { + "long": { + "standard": "Galapagos-Zeit" + } + }, + "Gambier": { + "long": { + "standard": "Gambier-Zeit" + } + }, + "Georgia": { + "long": { + "generic": "Georgische Zeit", + "standard": "Georgische Normalzeit", + "daylight": "Georgische Sommerzeit" + } + }, + "Gilbert_Islands": { + "long": { + "standard": "Gilbert-Inseln-Zeit" + } + }, + "GMT": { + "long": { + "standard": "Mittlere Greenwich-Zeit" + } + }, + "Greenland_Eastern": { + "long": { + "generic": "Ostgrönland-Zeit", + "standard": "Ostgrönland-Normalzeit", + "daylight": "Ostgrönland-Sommerzeit" + } + }, + "Greenland_Western": { + "long": { + "generic": "Westgrönland-Zeit", + "standard": "Westgrönland-Normalzeit", + "daylight": "Westgrönland-Sommerzeit" + } + }, + "Guam": { + "long": { + "standard": "Guam-Zeit" + } + }, + "Gulf": { + "long": { + "standard": "Golf-Zeit" + } + }, + "Guyana": { + "long": { + "standard": "Guyana-Zeit" + } + }, + "Hawaii_Aleutian": { + "long": { + "generic": "Hawaii-Aleuten-Zeit", + "standard": "Hawaii-Aleuten-Normalzeit", + "daylight": "Hawaii-Aleuten-Sommerzeit" + } + }, + "Hong_Kong": { + "long": { + "generic": "Hongkong-Zeit", + "standard": "Hongkong-Normalzeit", + "daylight": "Hongkong-Sommerzeit" + } + }, + "Hovd": { + "long": { + "generic": "Chowd-Zeit", + "standard": "Chowd-Normalzeit", + "daylight": "Chowd-Sommerzeit" + } + }, + "India": { + "long": { + "standard": "Indische Zeit" + } + }, + "Indian_Ocean": { + "long": { + "standard": "Indischer Ozean-Zeit" + } + }, + "Indochina": { + "long": { + "standard": "Indochina-Zeit" + } + }, + "Indonesia_Central": { + "long": { + "standard": "Zentralindonesische Zeit" + } + }, + "Indonesia_Eastern": { + "long": { + "standard": "Ostindonesische Zeit" + } + }, + "Indonesia_Western": { + "long": { + "standard": "Westindonesische Zeit" + } + }, + "Iran": { + "long": { + "generic": "Iranische Zeit", + "standard": "Iranische Normalzeit", + "daylight": "Iranische Sommerzeit" + } + }, + "Irkutsk": { + "long": { + "generic": "Irkutsk-Zeit", + "standard": "Irkutsk-Normalzeit", + "daylight": "Irkutsk-Sommerzeit" + } + }, + "Israel": { + "long": { + "generic": "Israelische Zeit", + "standard": "Israelische Normalzeit", + "daylight": "Israelische Sommerzeit" + } + }, + "Japan": { + "long": { + "generic": "Japanische Zeit", + "standard": "Japanische Normalzeit", + "daylight": "Japanische Sommerzeit" + } + }, + "Kamchatka": { + "long": { + "generic": "Kamtschatka-Zeit", + "standard": "Kamtschatka-Normalzeit", + "daylight": "Kamtschatka-Sommerzeit" + } + }, + "Kazakhstan_Eastern": { + "long": { + "standard": "Ostkasachische Zeit" + } + }, + "Kazakhstan_Western": { + "long": { + "standard": "Westkasachische Zeit" + } + }, + "Korea": { + "long": { + "generic": "Koreanische Zeit", + "standard": "Koreanische Normalzeit", + "daylight": "Koreanische Sommerzeit" + } + }, + "Kosrae": { + "long": { + "standard": "Kosrae-Zeit" + } + }, + "Krasnoyarsk": { + "long": { + "generic": "Krasnojarsk-Zeit", + "standard": "Krasnojarsk-Normalzeit", + "daylight": "Krasnojarsk-Sommerzeit" + } + }, + "Kyrgystan": { + "long": { + "standard": "Kirgisistan-Zeit" + } + }, + "Lanka": { + "long": { + "standard": "Sri-Lanka-Zeit" + } + }, + "Line_Islands": { + "long": { + "standard": "Linieninseln-Zeit" + } + }, + "Lord_Howe": { + "long": { + "generic": "Lord-Howe-Zeit", + "standard": "Lord-Howe-Normalzeit", + "daylight": "Lord-Howe-Sommerzeit" + } + }, + "Macau": { + "long": { + "generic": "Macau-Zeit", + "standard": "Macau-Normalzeit", + "daylight": "Macau-Sommerzeit" + } + }, + "Macquarie": { + "long": { + "standard": "Macquarieinsel-Zeit" + } + }, + "Magadan": { + "long": { + "generic": "Magadan-Zeit", + "standard": "Magadan-Normalzeit", + "daylight": "Magadan-Sommerzeit" + } + }, + "Malaysia": { + "long": { + "standard": "Malaysische Zeit" + } + }, + "Maldives": { + "long": { + "standard": "Malediven-Zeit" + } + }, + "Marquesas": { + "long": { + "standard": "Marquesas-Zeit" + } + }, + "Marshall_Islands": { + "long": { + "standard": "Marshallinseln-Zeit" + } + }, + "Mauritius": { + "long": { + "generic": "Mauritius-Zeit", + "standard": "Mauritius-Normalzeit", + "daylight": "Mauritius-Sommerzeit" + } + }, + "Mawson": { + "long": { + "standard": "Mawson-Zeit" + } + }, + "Mexico_Northwest": { + "long": { + "generic": "Mexiko Nordwestliche Zone-Zeit", + "standard": "Mexiko Nordwestliche Zone-Normalzeit", + "daylight": "Mexiko Nordwestliche Zone-Sommerzeit" + } + }, + "Mexico_Pacific": { + "long": { + "generic": "Mexiko Pazifikzone-Zeit", + "standard": "Mexiko Pazifikzone-Normalzeit", + "daylight": "Mexiko Pazifikzone-Sommerzeit" + } + }, + "Mongolia": { + "long": { + "generic": "Ulaanbaatar-Zeit", + "standard": "Ulaanbaatar-Normalzeit", + "daylight": "Ulaanbaatar-Sommerzeit" + } + }, + "Moscow": { + "long": { + "generic": "Moskauer Zeit", + "standard": "Moskauer Normalzeit", + "daylight": "Moskauer Sommerzeit" + } + }, + "Myanmar": { + "long": { + "standard": "Myanmar-Zeit" + } + }, + "Nauru": { + "long": { + "standard": "Nauru-Zeit" + } + }, + "Nepal": { + "long": { + "standard": "Nepalesische Zeit" + } + }, + "New_Caledonia": { + "long": { + "generic": "Neukaledonische Zeit", + "standard": "Neukaledonische Normalzeit", + "daylight": "Neukaledonische Sommerzeit" + } + }, + "New_Zealand": { + "long": { + "generic": "Neuseeland-Zeit", + "standard": "Neuseeland-Normalzeit", + "daylight": "Neuseeland-Sommerzeit" + } + }, + "Newfoundland": { + "long": { + "generic": "Neufundland-Zeit", + "standard": "Neufundland-Normalzeit", + "daylight": "Neufundland-Sommerzeit" + } + }, + "Niue": { + "long": { + "standard": "Niue-Zeit" + } + }, + "Norfolk": { + "long": { + "standard": "Norfolkinsel-Zeit" + } + }, + "Noronha": { + "long": { + "generic": "Fernando de Noronha-Zeit", + "standard": "Fernando de Noronha-Normalzeit", + "daylight": "Fernando de Noronha-Sommerzeit" + } + }, + "North_Mariana": { + "long": { + "standard": "Nördliche-Marianen-Zeit" + } + }, + "Novosibirsk": { + "long": { + "generic": "Nowosibirsk-Zeit", + "standard": "Nowosibirsk-Normalzeit", + "daylight": "Nowosibirsk-Sommerzeit" + } + }, + "Omsk": { + "long": { + "generic": "Omsk-Zeit", + "standard": "Omsk-Normalzeit", + "daylight": "Omsk-Sommerzeit" + } + }, + "Pakistan": { + "long": { + "generic": "Pakistanische Zeit", + "standard": "Pakistanische Normalzeit", + "daylight": "Pakistanische Sommerzeit" + } + }, + "Palau": { + "long": { + "standard": "Palau-Zeit" + } + }, + "Papua_New_Guinea": { + "long": { + "standard": "Papua-Neuguinea-Zeit" + } + }, + "Paraguay": { + "long": { + "generic": "Paraguayanische Zeit", + "standard": "Paraguayanische Normalzeit", + "daylight": "Paraguayanische Sommerzeit" + } + }, + "Peru": { + "long": { + "generic": "Peruanische Zeit", + "standard": "Peruanische Normalzeit", + "daylight": "Peruanische Sommerzeit" + } + }, + "Philippines": { + "long": { + "generic": "Philippinische Zeit", + "standard": "Philippinische Normalzeit", + "daylight": "Philippinische Sommerzeit" + } + }, + "Phoenix_Islands": { + "long": { + "standard": "Phoenixinseln-Zeit" + } + }, + "Pierre_Miquelon": { + "long": { + "generic": "Saint-Pierre-und-Miquelon-Zeit", + "standard": "Saint-Pierre-und-Miquelon-Normalzeit", + "daylight": "Saint-Pierre-und-Miquelon-Sommerzeit" + } + }, + "Pitcairn": { + "long": { + "standard": "Pitcairninseln-Zeit" + } + }, + "Ponape": { + "long": { + "standard": "Ponape-Zeit" + } + }, + "Pyongyang": { + "long": { + "standard": "Pjöngjang-Zeit" + } + }, + "Qyzylorda": { + "long": { + "generic": "Quysylorda-Zeit", + "standard": "Quysylorda-Normalzeit", + "daylight": "Qysylorda-Sommerzeit" + } + }, + "Reunion": { + "long": { + "standard": "Réunion-Zeit" + } + }, + "Rothera": { + "long": { + "standard": "Rothera-Zeit" + } + }, + "Sakhalin": { + "long": { + "generic": "Sachalin-Zeit", + "standard": "Sachalin-Normalzeit", + "daylight": "Sachalin-Sommerzeit" + } + }, + "Samara": { + "long": { + "generic": "Samara-Zeit", + "standard": "Samara-Normalzeit", + "daylight": "Samara-Sommerzeit" + } + }, + "Samoa": { + "long": { + "generic": "Samoa-Zeit", + "standard": "Samoa-Normalzeit", + "daylight": "Samoa-Sommerzeit" + } + }, + "Seychelles": { + "long": { + "standard": "Seychellen-Zeit" + } + }, + "Singapore": { + "long": { + "standard": "Singapur-Zeit" + } + }, + "Solomon": { + "long": { + "standard": "Salomoninseln-Zeit" + } + }, + "South_Georgia": { + "long": { + "standard": "Südgeorgische Zeit" + } + }, + "Suriname": { + "long": { + "standard": "Suriname-Zeit" + } + }, + "Syowa": { + "long": { + "standard": "Syowa-Zeit" + } + }, + "Tahiti": { + "long": { + "standard": "Tahiti-Zeit" + } + }, + "Taipei": { + "long": { + "generic": "Taipeh-Zeit", + "standard": "Taipeh-Normalzeit", + "daylight": "Taipeh-Sommerzeit" + } + }, + "Tajikistan": { + "long": { + "standard": "Tadschikistan-Zeit" + } + }, + "Tokelau": { + "long": { + "standard": "Tokelau-Zeit" + } + }, + "Tonga": { + "long": { + "generic": "Tonganische Zeit", + "standard": "Tonganische Normalzeit", + "daylight": "Tonganische Sommerzeit" + } + }, + "Truk": { + "long": { + "standard": "Chuuk-Zeit" + } + }, + "Turkmenistan": { + "long": { + "generic": "Turkmenistan-Zeit", + "standard": "Turkmenistan-Normalzeit", + "daylight": "Turkmenistan-Sommerzeit" + } + }, + "Tuvalu": { + "long": { + "standard": "Tuvalu-Zeit" + } + }, + "Uruguay": { + "long": { + "generic": "Uruguayanische Zeit", + "standard": "Uruguyanische Normalzeit", + "daylight": "Uruguayanische Sommerzeit" + } + }, + "Uzbekistan": { + "long": { + "generic": "Usbekistan-Zeit", + "standard": "Usbekistan-Normalzeit", + "daylight": "Usbekistan-Sommerzeit" + } + }, + "Vanuatu": { + "long": { + "generic": "Vanuatu-Zeit", + "standard": "Vanuatu-Normalzeit", + "daylight": "Vanuatu-Sommerzeit" + } + }, + "Venezuela": { + "long": { + "standard": "Venezuela-Zeit" + } + }, + "Vladivostok": { + "long": { + "generic": "Wladiwostok-Zeit", + "standard": "Wladiwostok-Normalzeit", + "daylight": "Wladiwostok-Sommerzeit" + } + }, + "Volgograd": { + "long": { + "generic": "Wolgograd-Zeit", + "standard": "Wolgograd-Normalzeit", + "daylight": "Wolgograd-Sommerzeit" + } + }, + "Vostok": { + "long": { + "standard": "Wostok-Zeit" + } + }, + "Wake": { + "long": { + "standard": "Wake-Insel-Zeit" + } + }, + "Wallis": { + "long": { + "standard": "Wallis-und-Futuna-Zeit" + } + }, + "Yakutsk": { + "long": { + "generic": "Jakutsk-Zeit", + "standard": "Jakutsk-Normalzeit", + "daylight": "Jakutsk-Sommerzeit" + } + }, + "Yekaterinburg": { + "long": { + "generic": "Jekaterinburg-Zeit", + "standard": "Jekaterinburg-Normalzeit", + "daylight": "Jekaterinburg-Sommerzeit" + } + } + } + } + } + } + } +} diff --git a/ej2-angular/code-snippet/pivot-grid/save-and-load/tsconfig.json b/ej2-angular/code-snippet/pivot-grid/save-and-load/tsconfig.json new file mode 100644 index 0000000000..9fa16d6333 --- /dev/null +++ b/ej2-angular/code-snippet/pivot-grid/save-and-load/tsconfig.json @@ -0,0 +1,32 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "baseUrl": "./", + "outDir": "./dist/out-tsc", + "forceConsistentCasingInFileNames": true, + "strict": true, + "noImplicitOverride": true, + "noPropertyAccessFromIndexSignature": true, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, + "sourceMap": true, + "declaration": false, + "downlevelIteration": true, + "experimentalDecorators": true, + "moduleResolution": "node", + "importHelpers": true, + "target": "ES2022", + "module": "ES2022", + "useDefineForClassFields": false, + "lib": [ + "ES2022", + "dom" + ] + }, + "angularCompilerOptions": { + "enableI18nLegacyMessageIdFormat": false, + "strictInjectionParameters": true, + "strictInputAccessModifiers": true, + "strictTemplates": true + } +} \ No newline at end of file diff --git a/ej2-angular/pivotview/getting-started.md b/ej2-angular/pivotview/getting-started.md index 1758d3af33..bb742fcf1f 100644 --- a/ej2-angular/pivotview/getting-started.md +++ b/ej2-angular/pivotview/getting-started.md @@ -31,9 +31,21 @@ Start a new Angular application using below Angular CLI command. ```bash ng new my-app +``` + +This command will prompt you for a few settings for the new project, such as whether to add Angular routing and which stylesheet format to use. + +![Initial_setup](images/Initial-setup.png) + +By default, it will create a CSS-based application. + +Next, navigate to the created project folder: + +``` cd my-app ``` + ## Dependencies The following list of dependencies are required to use the pivot table component in your application. diff --git a/ej2-angular/pivotview/images/Initial-setup.png b/ej2-angular/pivotview/images/Initial-setup.png new file mode 100644 index 0000000000000000000000000000000000000000..fbbf8b0498d724dd8e610ab11fed2bb0fb5014a4 GIT binary patch literal 61123 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 a52*Ws6tB{hcTNcKAt$9QStV{9{C@z