From 39b02da626f69f9cdc4851cfba7768660e84d7ad Mon Sep 17 00:00:00 2001 From: Ivan Minchev Date: Thu, 9 Oct 2025 14:32:38 +0300 Subject: [PATCH 1/2] feat(grids): add cell merge samples --- .../cell-merge-custom-sample/.eslintrc.js | 76 +++ .../grid/cell-merge-custom-sample/ReadMe.md | 56 ++ .../cell-merge-custom-sample/package.json | 49 ++ .../public/index.html | 11 + .../sandbox.config.json | 5 + .../src/InvoicesData.ts | 544 ++++++++++++++++++ .../cell-merge-custom-sample/src/index.css | 7 + .../cell-merge-custom-sample/src/index.tsx | 68 +++ .../src/react-app-env.d.ts | 1 + .../cell-merge-custom-sample/tsconfig.json | 44 ++ samples/grids/grid/cell-merge.zip | Bin 0 -> 200559 bytes samples/grids/grid/cell-merge/.eslintrc.js | 76 +++ samples/grids/grid/cell-merge/ReadMe.md | 56 ++ samples/grids/grid/cell-merge/package.json | 49 ++ .../grids/grid/cell-merge/public/index.html | 11 + .../grids/grid/cell-merge/sandbox.config.json | 5 + .../grids/grid/cell-merge/src/InvoicesData.ts | 544 ++++++++++++++++++ samples/grids/grid/cell-merge/src/index.css | 7 + samples/grids/grid/cell-merge/src/index.tsx | 177 ++++++ .../grid/cell-merge/src/react-app-env.d.ts | 1 + samples/grids/grid/cell-merge/tsconfig.json | 44 ++ .../hierarchical-grid/cell-merge/.eslintrc.js | 76 +++ .../hierarchical-grid/cell-merge/ReadMe.md | 56 ++ .../hierarchical-grid/cell-merge/package.json | 49 ++ .../cell-merge/public/index.html | 11 + .../cell-merge/sandbox.config.json | 5 + .../src/MultiColumnsExportData.json | 367 ++++++++++++ .../cell-merge/src/index.css | 7 + .../cell-merge/src/index.tsx | 158 +++++ .../cell-merge/src/react-app-env.d.ts | 1 + .../cell-merge/tsconfig.json | 44 ++ .../grids/tree-grid/cell-merge/.eslintrc.js | 76 +++ samples/grids/tree-grid/cell-merge/ReadMe.md | 56 ++ .../grids/tree-grid/cell-merge/package.json | 49 ++ .../tree-grid/cell-merge/public/index.html | 11 + .../tree-grid/cell-merge/sandbox.config.json | 5 + .../src/MultiColumnsExportData.json | 367 ++++++++++++ .../grids/tree-grid/cell-merge/src/index.css | 7 + .../grids/tree-grid/cell-merge/src/index.tsx | 129 +++++ .../cell-merge/src/react-app-env.d.ts | 1 + .../grids/tree-grid/cell-merge/tsconfig.json | 44 ++ 41 files changed, 3350 insertions(+) create mode 100644 samples/grids/grid/cell-merge-custom-sample/.eslintrc.js create mode 100644 samples/grids/grid/cell-merge-custom-sample/ReadMe.md create mode 100644 samples/grids/grid/cell-merge-custom-sample/package.json create mode 100644 samples/grids/grid/cell-merge-custom-sample/public/index.html create mode 100644 samples/grids/grid/cell-merge-custom-sample/sandbox.config.json create mode 100644 samples/grids/grid/cell-merge-custom-sample/src/InvoicesData.ts create mode 100644 samples/grids/grid/cell-merge-custom-sample/src/index.css create mode 100644 samples/grids/grid/cell-merge-custom-sample/src/index.tsx create mode 100644 samples/grids/grid/cell-merge-custom-sample/src/react-app-env.d.ts create mode 100644 samples/grids/grid/cell-merge-custom-sample/tsconfig.json create mode 100644 samples/grids/grid/cell-merge.zip create mode 100644 samples/grids/grid/cell-merge/.eslintrc.js create mode 100644 samples/grids/grid/cell-merge/ReadMe.md create mode 100644 samples/grids/grid/cell-merge/package.json create mode 100644 samples/grids/grid/cell-merge/public/index.html create mode 100644 samples/grids/grid/cell-merge/sandbox.config.json create mode 100644 samples/grids/grid/cell-merge/src/InvoicesData.ts create mode 100644 samples/grids/grid/cell-merge/src/index.css create mode 100644 samples/grids/grid/cell-merge/src/index.tsx create mode 100644 samples/grids/grid/cell-merge/src/react-app-env.d.ts create mode 100644 samples/grids/grid/cell-merge/tsconfig.json create mode 100644 samples/grids/hierarchical-grid/cell-merge/.eslintrc.js create mode 100644 samples/grids/hierarchical-grid/cell-merge/ReadMe.md create mode 100644 samples/grids/hierarchical-grid/cell-merge/package.json create mode 100644 samples/grids/hierarchical-grid/cell-merge/public/index.html create mode 100644 samples/grids/hierarchical-grid/cell-merge/sandbox.config.json create mode 100644 samples/grids/hierarchical-grid/cell-merge/src/MultiColumnsExportData.json create mode 100644 samples/grids/hierarchical-grid/cell-merge/src/index.css create mode 100644 samples/grids/hierarchical-grid/cell-merge/src/index.tsx create mode 100644 samples/grids/hierarchical-grid/cell-merge/src/react-app-env.d.ts create mode 100644 samples/grids/hierarchical-grid/cell-merge/tsconfig.json create mode 100644 samples/grids/tree-grid/cell-merge/.eslintrc.js create mode 100644 samples/grids/tree-grid/cell-merge/ReadMe.md create mode 100644 samples/grids/tree-grid/cell-merge/package.json create mode 100644 samples/grids/tree-grid/cell-merge/public/index.html create mode 100644 samples/grids/tree-grid/cell-merge/sandbox.config.json create mode 100644 samples/grids/tree-grid/cell-merge/src/MultiColumnsExportData.json create mode 100644 samples/grids/tree-grid/cell-merge/src/index.css create mode 100644 samples/grids/tree-grid/cell-merge/src/index.tsx create mode 100644 samples/grids/tree-grid/cell-merge/src/react-app-env.d.ts create mode 100644 samples/grids/tree-grid/cell-merge/tsconfig.json diff --git a/samples/grids/grid/cell-merge-custom-sample/.eslintrc.js b/samples/grids/grid/cell-merge-custom-sample/.eslintrc.js new file mode 100644 index 0000000000..9d283f6407 --- /dev/null +++ b/samples/grids/grid/cell-merge-custom-sample/.eslintrc.js @@ -0,0 +1,76 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-var": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/grids/grid/cell-merge-custom-sample/ReadMe.md b/samples/grids/grid/cell-merge-custom-sample/ReadMe.md new file mode 100644 index 0000000000..2a66601832 --- /dev/null +++ b/samples/grids/grid/cell-merge-custom-sample/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Clipboard Operations feature using [Grid](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/grids/grid/clipboard-operations +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/grids/grid/cell-merge-custom-sample/package.json b/samples/grids/grid/cell-merge-custom-sample/package.json new file mode 100644 index 0000000000..7141bab0b8 --- /dev/null +++ b/samples/grids/grid/cell-merge-custom-sample/package.json @@ -0,0 +1,49 @@ +{ + "name": "example-ignite-ui-react", + "description": "This project provides example of using Ignite UI for React components", + "author": "Infragistics", + "version": "1.4.0", + "license": "", + "homepage": ".", + "private": true, + "scripts": { + "start": "set PORT=4200 && react-scripts --max_old_space_size=10240 start", + "build": "react-scripts --max_old_space_size=10240 build ", + "test": "react-scripts test --env=jsdom", + "eject": "react-scripts eject", + "lint": "eslint ./src/**/*.{ts,tsx}" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "19.3.0-rc.1", + "igniteui-react-core": "^19.0.2-beta.2", + "igniteui-react-datasources": "^19.0.2-beta.2", + "igniteui-react-grids": "19.3.0-rc.1", + "igniteui-react-inputs": "^19.0.2-beta.2", + "igniteui-react-layouts": "^19.0.2-beta.2", + "igniteui-webcomponents": "^6.2.0", + "lit-html": "^3.2.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-scripts": "^5.0.1", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^18.11.7", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "eslint": "^8.33.0", + "eslint-config-react": "^1.1.7", + "eslint-plugin-react": "^7.20.0", + "react-app-rewired": "^2.2.1", + "typescript": "^4.8.4", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/grids/grid/cell-merge-custom-sample/public/index.html b/samples/grids/grid/cell-merge-custom-sample/public/index.html new file mode 100644 index 0000000000..e2d3265576 --- /dev/null +++ b/samples/grids/grid/cell-merge-custom-sample/public/index.html @@ -0,0 +1,11 @@ + + + + Sample | Ignite UI | React | infragistics + + + + +
+ + \ No newline at end of file diff --git a/samples/grids/grid/cell-merge-custom-sample/sandbox.config.json b/samples/grids/grid/cell-merge-custom-sample/sandbox.config.json new file mode 100644 index 0000000000..07f53508eb --- /dev/null +++ b/samples/grids/grid/cell-merge-custom-sample/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/grids/grid/cell-merge-custom-sample/src/InvoicesData.ts b/samples/grids/grid/cell-merge-custom-sample/src/InvoicesData.ts new file mode 100644 index 0000000000..3d4f85aded --- /dev/null +++ b/samples/grids/grid/cell-merge-custom-sample/src/InvoicesData.ts @@ -0,0 +1,544 @@ +export class InvoicesDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public ShipName: string; + public ShipAddress: string; + public ShipCity: string; + public ShipPostalCode: number; + public ShipCountry: string; + public ShipRegion: string; + public ShipperName: string; + public CustomerID: number; + public CustomerName: string; + public CustomerFirstName: string; + public CustomerLastName: string; + public CustomerAddress: string; + public Salesperson: string; + public OrderID: number; + public OrderDate: string; + public ProductID: number; + public ProductName: string; + public UnitPrice: number; + public Quantity: number; + public ExtendedPrice: number; + public Freight: number; + public Discontinued: boolean; + public Region: string; + public Address: string; + public City: string; + public Country: string; + public PostalCode: number; + +} +export class InvoicesData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `124 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 60098, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1000, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `124 Wall Street, Miami, USA, 60098`, Salesperson: `Nancy Jefferson`, OrderID: 1931, OrderDate: `3/14/2022`, ProductID: 189, ProductName: `IPad`, UnitPrice: 16150.61, Quantity: 3, ExtendedPrice: 48451.83, Freight: 980.61, Discontinued: false, Region: `South East`, Address: `124 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 60098 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `162 Main Street`, ShipCity: `Miami`, ShipPostalCode: 80193, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1001, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `162 Main Street, Miami, USA, 80193`, Salesperson: `Anna Smith`, OrderID: 1163, OrderDate: `5/22/2022`, ProductID: 138, ProductName: `Mac Book Pro`, UnitPrice: 18520.59, Quantity: 4, ExtendedPrice: 74082.36, Freight: 850.59, Discontinued: false, Region: `West`, Address: `162 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 80193 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `164 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 50111, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1002, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `164 Wall Street, Miami, USA, 50111`, Salesperson: `Martin Watson`, OrderID: 1230, OrderDate: `2/9/2022`, ProductID: 118, ProductName: `Mac Book Air`, UnitPrice: 25310.39, Quantity: 3, ExtendedPrice: 75931.17, Freight: 210.39, Discontinued: false, Region: `West`, Address: `164 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 50111 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `124 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90123, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1003, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `124 Market Street, Philadelphia, USA, 90123`, Salesperson: `Anna Black`, OrderID: 1176, OrderDate: `6/3/2022`, ProductID: 169, ProductName: `Samsung Galaxy 22`, UnitPrice: 29890.86, Quantity: 4, ExtendedPrice: 119563.44, Freight: 800.86, Discontinued: false, Region: `South East`, Address: `124 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90123 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `181 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90095, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1004, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `181 Market Street, Miami, USA, 90095`, Salesperson: `Max Black`, OrderID: 1382, OrderDate: `1/10/2022`, ProductID: 185, ProductName: `Samsung Note`, UnitPrice: 7810.61, Quantity: 2, ExtendedPrice: 15621.22, Freight: 1790.61, Discontinued: false, Region: `West`, Address: `181 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90095 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `188 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50149, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1005, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `188 Wall Street, Los Angeles, USA, 50149`, Salesperson: `Martin Jefferson`, OrderID: 1864, OrderDate: `8/18/2022`, ProductID: 168, ProductName: `Samsung Galaxy 22`, UnitPrice: 9370.76, Quantity: 4, ExtendedPrice: 37483.04, Freight: 970.76, Discontinued: false, Region: `North East`, Address: `188 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50149 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `174 Market Street`, ShipCity: `Huston`, ShipPostalCode: 90112, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1006, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `174 Market Street, Huston, USA, 90112`, Salesperson: `Nancy Smith`, OrderID: 1502, OrderDate: `6/13/2022`, ProductID: 199, ProductName: `IPhone`, UnitPrice: 20830.47, Quantity: 2, ExtendedPrice: 41660.94, Freight: 1530.47, Discontinued: false, Region: `West`, Address: `174 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 90112 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `134 Market Street`, ShipCity: `Miami`, ShipPostalCode: 50083, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1007, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `134 Market Street, Miami, USA, 50083`, Salesperson: `Mike Jefferson`, OrderID: 1305, OrderDate: `10/21/2022`, ProductID: 185, ProductName: `Mac Book Air`, UnitPrice: 7320.44, Quantity: 2, ExtendedPrice: 14640.88, Freight: 630.44, Discontinued: false, Region: `West`, Address: `134 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 50083 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `177 Main Street`, ShipCity: `New York`, ShipPostalCode: 70185, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1008, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `177 Main Street, New York, USA, 70185`, Salesperson: `Pamela Watson`, OrderID: 1725, OrderDate: `5/7/2022`, ProductID: 133, ProductName: `Mac Book Air`, UnitPrice: 11240.72, Quantity: 3, ExtendedPrice: 33722.16, Freight: 420.72, Discontinued: false, Region: `South East`, Address: `177 Main Street`, City: `New York`, Country: `USA`, PostalCode: 70185 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `169 Main Street`, ShipCity: `Miami`, ShipPostalCode: 90183, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1009, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `169 Main Street, Miami, USA, 90183`, Salesperson: `Anna Watson`, OrderID: 1977, OrderDate: `10/14/2022`, ProductID: 178, ProductName: `IPhone`, UnitPrice: 6460.55, Quantity: 3, ExtendedPrice: 19381.65, Freight: 370.55, Discontinued: true, Region: `South East`, Address: `169 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 90183 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `151 Market Street`, ShipCity: `New York`, ShipPostalCode: 80160, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1010, CustomerName: `James Jackson`, CustomerFirstName: `James`, CustomerLastName: `Jackson`, CustomerAddress: `151 Market Street, New York, USA, 80160`, Salesperson: `Nancy Black`, OrderID: 1666, OrderDate: `12/6/2022`, ProductID: 140, ProductName: `Mac Book Pro`, UnitPrice: 7940.82, Quantity: 2, ExtendedPrice: 15881.64, Freight: 1670.82, Discontinued: false, Region: `South East`, Address: `151 Market Street`, City: `New York`, Country: `USA`, PostalCode: 80160 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `147 Main Street`, ShipCity: `Miami`, ShipPostalCode: 80183, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1011, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `147 Main Street, Miami, USA, 80183`, Salesperson: `Mike Madison`, OrderID: 1059, OrderDate: `5/14/2022`, ProductID: 174, ProductName: `Samsung Note`, UnitPrice: 14650.56, Quantity: 2, ExtendedPrice: 29301.12, Freight: 1770.56, Discontinued: false, Region: `West`, Address: `147 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 80183 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `134 Main Street`, ShipCity: `New York`, ShipPostalCode: 80066, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1012, CustomerName: `Mike Watson`, CustomerFirstName: `Mike`, CustomerLastName: `Watson`, CustomerAddress: `134 Main Street, New York, USA, 80066`, Salesperson: `Mike Black`, OrderID: 1851, OrderDate: `7/24/2022`, ProductID: 175, ProductName: `IPhone`, UnitPrice: 7870.39, Quantity: 2, ExtendedPrice: 15740.78, Freight: 360.39, Discontinued: false, Region: `West`, Address: `134 Main Street`, City: `New York`, Country: `USA`, PostalCode: 80066 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `159 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80096, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1013, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `159 Market Street, Los Angeles, USA, 80096`, Salesperson: `Anna Madison`, OrderID: 1451, OrderDate: `10/4/2022`, ProductID: 188, ProductName: `Mac Book Pro`, UnitPrice: 13920.38, Quantity: 4, ExtendedPrice: 55681.52, Freight: 1140.38, Discontinued: false, Region: `North East`, Address: `159 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80096 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `187 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 60144, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1014, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `187 Wall Street, Miami, USA, 60144`, Salesperson: `Ben Jefferson`, OrderID: 1331, OrderDate: `4/4/2022`, ProductID: 119, ProductName: `IPhone`, UnitPrice: 6940.73, Quantity: 5, ExtendedPrice: 34703.65, Freight: 640.73, Discontinued: false, Region: `West`, Address: `187 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 60144 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `158 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60063, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1015, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `158 Wall Street, Huston, USA, 60063`, Salesperson: `Martin Jefferson`, OrderID: 1609, OrderDate: `9/6/2022`, ProductID: 171, ProductName: `IPhone`, UnitPrice: 29080.28, Quantity: 2, ExtendedPrice: 58160.56, Freight: 1810.28, Discontinued: false, Region: `South East`, Address: `158 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60063 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `168 Main Street`, ShipCity: `Huston`, ShipPostalCode: 60184, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1016, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `168 Main Street, Huston, USA, 60184`, Salesperson: `Martin Watson`, OrderID: 1772, OrderDate: `3/20/2022`, ProductID: 152, ProductName: `Mac Book Air`, UnitPrice: 28350.9, Quantity: 5, ExtendedPrice: 141754.5, Freight: 1290.9, Discontinued: false, Region: `South East`, Address: `168 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 60184 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `116 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60129, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1017, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `116 Main Street, Miami, USA, 60129`, Salesperson: `Nancy Smith`, OrderID: 1792, OrderDate: `9/1/2022`, ProductID: 182, ProductName: `Samsung Note`, UnitPrice: 13730.78, Quantity: 4, ExtendedPrice: 54923.12, Freight: 740.78, Discontinued: false, Region: `North East`, Address: `116 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60129 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `116 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80090, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1018, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `116 Market Street, Los Angeles, USA, 80090`, Salesperson: `Anna Madison`, OrderID: 1285, OrderDate: `10/21/2022`, ProductID: 157, ProductName: `Mac Book Pro`, UnitPrice: 8120.36, Quantity: 3, ExtendedPrice: 24361.08, Freight: 410.36, Discontinued: false, Region: `West`, Address: `116 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80090 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `135 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90101, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1019, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `135 Wall Street, Philadelphia, USA, 90101`, Salesperson: `Mike Madison`, OrderID: 1205, OrderDate: `12/22/2022`, ProductID: 153, ProductName: `Mac Book Pro`, UnitPrice: 11830.22, Quantity: 2, ExtendedPrice: 23660.44, Freight: 330.22, Discontinued: true, Region: `North East`, Address: `135 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90101 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `164 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70056, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1020, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `164 Market Street, Philadelphia, USA, 70056`, Salesperson: `Ben Watson`, OrderID: 1759, OrderDate: `8/3/2022`, ProductID: 129, ProductName: `Mac Book Pro`, UnitPrice: 15140.82, Quantity: 4, ExtendedPrice: 60563.28, Freight: 1400.82, Discontinued: false, Region: `South East`, Address: `164 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70056 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `196 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 90169, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1021, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `196 Wall Street, Miami, USA, 90169`, Salesperson: `Mike Smith`, OrderID: 1879, OrderDate: `8/17/2022`, ProductID: 127, ProductName: `Mac Book Air`, UnitPrice: 26710.41, Quantity: 5, ExtendedPrice: 133552.05, Freight: 1810.41, Discontinued: false, Region: `West`, Address: `196 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 90169 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `175 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50142, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1022, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `175 Wall Street, Philadelphia, USA, 50142`, Salesperson: `Anna Jefferson`, OrderID: 1917, OrderDate: `3/6/2022`, ProductID: 114, ProductName: `IPad`, UnitPrice: 9640.51, Quantity: 3, ExtendedPrice: 28921.53, Freight: 840.51, Discontinued: false, Region: `North East`, Address: `175 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50142 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `122 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60097, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1023, CustomerName: `Pamela Black`, CustomerFirstName: `Pamela`, CustomerLastName: `Black`, CustomerAddress: `122 Main Street, Los Angeles, USA, 60097`, Salesperson: `James Black`, OrderID: 1176, OrderDate: `8/4/2022`, ProductID: 197, ProductName: `IPad`, UnitPrice: 14500.56, Quantity: 4, ExtendedPrice: 58002.24, Freight: 530.56, Discontinued: false, Region: `West`, Address: `122 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60097 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `139 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60175, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1024, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `139 Main Street, Miami, USA, 60175`, Salesperson: `Mike Jefferson`, OrderID: 1317, OrderDate: `5/21/2022`, ProductID: 115, ProductName: `Mac Book Air`, UnitPrice: 17200.82, Quantity: 2, ExtendedPrice: 34401.64, Freight: 1610.82, Discontinued: false, Region: `West`, Address: `139 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60175 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `155 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60124, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1025, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `155 Market Street, Philadelphia, USA, 60124`, Salesperson: `Max Smith`, OrderID: 1721, OrderDate: `6/15/2022`, ProductID: 197, ProductName: `Samsung Note`, UnitPrice: 9810.3, Quantity: 2, ExtendedPrice: 19620.6, Freight: 1990.3, Discontinued: false, Region: `South East`, Address: `155 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60124 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `136 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80120, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1026, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `136 Main Street, Philadelphia, USA, 80120`, Salesperson: `Max Smith`, OrderID: 1266, OrderDate: `12/13/2022`, ProductID: 198, ProductName: `Mac Book Pro`, UnitPrice: 25410.64, Quantity: 2, ExtendedPrice: 50821.28, Freight: 1860.64, Discontinued: false, Region: `West`, Address: `136 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80120 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `114 Main Street`, ShipCity: `New York`, ShipPostalCode: 60186, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1027, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `114 Main Street, New York, USA, 60186`, Salesperson: `Mike Jefferson`, OrderID: 1636, OrderDate: `7/7/2022`, ProductID: 174, ProductName: `Mac Book Pro`, UnitPrice: 13740.7, Quantity: 4, ExtendedPrice: 54962.8, Freight: 1960.7, Discontinued: false, Region: `West`, Address: `114 Main Street`, City: `New York`, Country: `USA`, PostalCode: 60186 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `167 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70193, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1028, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `167 Market Street, Huston, USA, 70193`, Salesperson: `Ben Jefferson`, OrderID: 1689, OrderDate: `1/2/2022`, ProductID: 192, ProductName: `IPad`, UnitPrice: 8760.83, Quantity: 3, ExtendedPrice: 26282.49, Freight: 490.83, Discontinued: false, Region: `South East`, Address: `167 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70193 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `139 Wall Street`, ShipCity: `New York`, ShipPostalCode: 80080, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1029, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `139 Wall Street, New York, USA, 80080`, Salesperson: `Anna Black`, OrderID: 1610, OrderDate: `3/17/2022`, ProductID: 105, ProductName: `Mac Book Pro`, UnitPrice: 19860.82, Quantity: 3, ExtendedPrice: 59582.46, Freight: 1990.82, Discontinued: true, Region: `West`, Address: `139 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 80080 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `173 Market Street`, ShipCity: `New York`, ShipPostalCode: 70054, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1030, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `173 Market Street, New York, USA, 70054`, Salesperson: `Ben Jackson`, OrderID: 1404, OrderDate: `12/8/2022`, ProductID: 171, ProductName: `IPhone`, UnitPrice: 12430.21, Quantity: 3, ExtendedPrice: 37290.63, Freight: 880.21, Discontinued: false, Region: `West`, Address: `173 Market Street`, City: `New York`, Country: `USA`, PostalCode: 70054 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `187 Wall Street`, ShipCity: `New York`, ShipPostalCode: 60100, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1031, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `187 Wall Street, New York, USA, 60100`, Salesperson: `Nancy Smith`, OrderID: 1480, OrderDate: `2/8/2022`, ProductID: 181, ProductName: `IPad`, UnitPrice: 26730.66, Quantity: 2, ExtendedPrice: 53461.32, Freight: 510.66, Discontinued: false, Region: `South East`, Address: `187 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 60100 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `149 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90150, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1032, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `149 Main Street, Los Angeles, USA, 90150`, Salesperson: `Max Jefferson`, OrderID: 1886, OrderDate: `12/2/2022`, ProductID: 132, ProductName: `IPhone`, UnitPrice: 13760.64, Quantity: 3, ExtendedPrice: 41281.92, Freight: 1110.64, Discontinued: false, Region: `West`, Address: `149 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90150 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `124 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80175, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1033, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `124 Market Street, Huston, USA, 80175`, Salesperson: `Nancy Smith`, OrderID: 1625, OrderDate: `11/9/2022`, ProductID: 100, ProductName: `IPad`, UnitPrice: 11590.58, Quantity: 3, ExtendedPrice: 34771.74, Freight: 1080.58, Discontinued: false, Region: `South East`, Address: `124 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80175 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `193 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60165, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1034, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `193 Wall Street, Philadelphia, USA, 60165`, Salesperson: `Martin Jackson`, OrderID: 1669, OrderDate: `7/3/2022`, ProductID: 157, ProductName: `Samsung Galaxy 22`, UnitPrice: 19220.31, Quantity: 2, ExtendedPrice: 38440.62, Freight: 1130.31, Discontinued: false, Region: `South East`, Address: `193 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60165 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `200 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80146, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1035, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `200 Wall Street, Philadelphia, USA, 80146`, Salesperson: `Pamela Jefferson`, OrderID: 1654, OrderDate: `1/7/2022`, ProductID: 155, ProductName: `IPhone`, UnitPrice: 7040.83, Quantity: 2, ExtendedPrice: 14081.66, Freight: 1420.83, Discontinued: false, Region: `North East`, Address: `200 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80146 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `122 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80150, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1036, CustomerName: `Nancy Smith`, CustomerFirstName: `Nancy`, CustomerLastName: `Smith`, CustomerAddress: `122 Market Street, Los Angeles, USA, 80150`, Salesperson: `Martin Jackson`, OrderID: 1678, OrderDate: `12/14/2022`, ProductID: 120, ProductName: `Mac Book Air`, UnitPrice: 6530.89, Quantity: 3, ExtendedPrice: 19592.67, Freight: 250.89, Discontinued: false, Region: `North East`, Address: `122 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80150 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `128 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50068, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1037, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `128 Main Street, Los Angeles, USA, 50068`, Salesperson: `Ben Watson`, OrderID: 1301, OrderDate: `1/25/2022`, ProductID: 166, ProductName: `IPad`, UnitPrice: 11420.23, Quantity: 2, ExtendedPrice: 22840.46, Freight: 950.23, Discontinued: false, Region: `South East`, Address: `128 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50068 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `119 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60180, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1038, CustomerName: `Pamela Smith`, CustomerFirstName: `Pamela`, CustomerLastName: `Smith`, CustomerAddress: `119 Market Street, Los Angeles, USA, 60180`, Salesperson: `Pamela Madison`, OrderID: 1385, OrderDate: `6/24/2022`, ProductID: 132, ProductName: `Mac Book Air`, UnitPrice: 29810.6, Quantity: 4, ExtendedPrice: 119242.4, Freight: 220.6, Discontinued: false, Region: `West`, Address: `119 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60180 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `115 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90168, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1039, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `115 Market Street, Los Angeles, USA, 90168`, Salesperson: `Martin Smith`, OrderID: 1308, OrderDate: `8/13/2022`, ProductID: 109, ProductName: `Samsung Galaxy 22`, UnitPrice: 20770.59, Quantity: 5, ExtendedPrice: 103852.95, Freight: 1690.59, Discontinued: true, Region: `North East`, Address: `115 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90168 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `128 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50118, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1040, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `128 Market Street, Los Angeles, USA, 50118`, Salesperson: `Pamela Black`, OrderID: 1519, OrderDate: `10/4/2022`, ProductID: 139, ProductName: `Mac Book Air`, UnitPrice: 14860.44, Quantity: 2, ExtendedPrice: 29720.88, Freight: 1670.44, Discontinued: false, Region: `South East`, Address: `128 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50118 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `108 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90129, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1041, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `108 Market Street, Los Angeles, USA, 90129`, Salesperson: `Nancy Black`, OrderID: 1118, OrderDate: `2/7/2022`, ProductID: 126, ProductName: `Mac Book Air`, UnitPrice: 28690.85, Quantity: 4, ExtendedPrice: 114763.4, Freight: 500.85, Discontinued: false, Region: `West`, Address: `108 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90129 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `180 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50101, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1042, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `180 Main Street, Los Angeles, USA, 50101`, Salesperson: `Martin Jefferson`, OrderID: 1541, OrderDate: `5/3/2022`, ProductID: 179, ProductName: `Mac Book Pro`, UnitPrice: 22630.28, Quantity: 3, ExtendedPrice: 67890.84, Freight: 1200.28, Discontinued: false, Region: `North East`, Address: `180 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50101 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `177 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90107, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1043, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `177 Market Street, Philadelphia, USA, 90107`, Salesperson: `Martin Jefferson`, OrderID: 1747, OrderDate: `5/11/2022`, ProductID: 133, ProductName: `Mac Book Pro`, UnitPrice: 6930.51, Quantity: 3, ExtendedPrice: 20791.53, Freight: 1660.51, Discontinued: false, Region: `South East`, Address: `177 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90107 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `134 Market Street`, ShipCity: `Miami`, ShipPostalCode: 70172, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1044, CustomerName: `Anna Jefferson`, CustomerFirstName: `Anna`, CustomerLastName: `Jefferson`, CustomerAddress: `134 Market Street, Miami, USA, 70172`, Salesperson: `Mike Smith`, OrderID: 1343, OrderDate: `10/11/2022`, ProductID: 190, ProductName: `Samsung Note`, UnitPrice: 26770.78, Quantity: 4, ExtendedPrice: 107083.12, Freight: 960.78, Discontinued: false, Region: `North East`, Address: `134 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 70172 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `117 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90124, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1045, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `117 Wall Street, Los Angeles, USA, 90124`, Salesperson: `Mike Watson`, OrderID: 1152, OrderDate: `2/25/2022`, ProductID: 101, ProductName: `Mac Book Pro`, UnitPrice: 8790.3, Quantity: 5, ExtendedPrice: 43951.5, Freight: 220.3, Discontinued: false, Region: `South East`, Address: `117 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90124 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `156 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60181, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1046, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `156 Wall Street, Philadelphia, USA, 60181`, Salesperson: `Anna Smith`, OrderID: 1823, OrderDate: `10/12/2022`, ProductID: 178, ProductName: `Samsung Note`, UnitPrice: 9750.55, Quantity: 3, ExtendedPrice: 29251.65, Freight: 1940.55, Discontinued: false, Region: `North East`, Address: `156 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60181 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `122 Main Street`, ShipCity: `New York`, ShipPostalCode: 90182, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1047, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `122 Main Street, New York, USA, 90182`, Salesperson: `Mike Black`, OrderID: 1548, OrderDate: `5/1/2022`, ProductID: 181, ProductName: `Mac Book Air`, UnitPrice: 11590.37, Quantity: 4, ExtendedPrice: 46361.48, Freight: 900.37, Discontinued: false, Region: `West`, Address: `122 Main Street`, City: `New York`, Country: `USA`, PostalCode: 90182 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `112 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60175, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1048, CustomerName: `Pamela Black`, CustomerFirstName: `Pamela`, CustomerLastName: `Black`, CustomerAddress: `112 Market Street, Los Angeles, USA, 60175`, Salesperson: `Mike Madison`, OrderID: 1581, OrderDate: `5/21/2022`, ProductID: 134, ProductName: `Mac Book Air`, UnitPrice: 8800.32, Quantity: 2, ExtendedPrice: 17600.64, Freight: 1820.32, Discontinued: false, Region: `South East`, Address: `112 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60175 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `153 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90170, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1049, CustomerName: `Pamela Black`, CustomerFirstName: `Pamela`, CustomerLastName: `Black`, CustomerAddress: `153 Market Street, Los Angeles, USA, 90170`, Salesperson: `Pamela Watson`, OrderID: 1145, OrderDate: `11/13/2022`, ProductID: 151, ProductName: `Mac Book Air`, UnitPrice: 25830.42, Quantity: 3, ExtendedPrice: 77491.26, Freight: 270.42, Discontinued: true, Region: `North East`, Address: `153 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90170 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `159 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80198, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1050, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `159 Market Street, Huston, USA, 80198`, Salesperson: `Pamela Jefferson`, OrderID: 1455, OrderDate: `12/16/2022`, ProductID: 115, ProductName: `Samsung Galaxy 22`, UnitPrice: 28510.28, Quantity: 2, ExtendedPrice: 57020.56, Freight: 1450.28, Discontinued: false, Region: `West`, Address: `159 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80198 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `125 Market Street`, ShipCity: `Miami`, ShipPostalCode: 70160, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1051, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `125 Market Street, Miami, USA, 70160`, Salesperson: `Anna Jefferson`, OrderID: 1787, OrderDate: `1/3/2022`, ProductID: 171, ProductName: `Mac Book Air`, UnitPrice: 18830.35, Quantity: 3, ExtendedPrice: 56491.05, Freight: 1770.35, Discontinued: false, Region: `South East`, Address: `125 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 70160 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `114 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70083, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1052, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `114 Wall Street, Los Angeles, USA, 70083`, Salesperson: `Anna Madison`, OrderID: 1591, OrderDate: `4/6/2022`, ProductID: 141, ProductName: `Mac Book Air`, UnitPrice: 18840.75, Quantity: 2, ExtendedPrice: 37681.5, Freight: 710.75, Discontinued: false, Region: `West`, Address: `114 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70083 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `193 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70170, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1053, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `193 Main Street, Los Angeles, USA, 70170`, Salesperson: `Anna Jackson`, OrderID: 1020, OrderDate: `7/20/2022`, ProductID: 177, ProductName: `IPad`, UnitPrice: 15250.55, Quantity: 3, ExtendedPrice: 45751.65, Freight: 980.55, Discontinued: false, Region: `West`, Address: `193 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70170 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `156 Main Street`, ShipCity: `Huston`, ShipPostalCode: 50127, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1054, CustomerName: `Ben Smith`, CustomerFirstName: `Ben`, CustomerLastName: `Smith`, CustomerAddress: `156 Main Street, Huston, USA, 50127`, Salesperson: `James Black`, OrderID: 1770, OrderDate: `3/24/2022`, ProductID: 141, ProductName: `Samsung Galaxy 22`, UnitPrice: 14910.59, Quantity: 5, ExtendedPrice: 74552.95, Freight: 1330.59, Discontinued: false, Region: `South East`, Address: `156 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 50127 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `146 Market Street`, ShipCity: `Miami`, ShipPostalCode: 60064, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1055, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `146 Market Street, Miami, USA, 60064`, Salesperson: `Mike Smith`, OrderID: 1766, OrderDate: `10/23/2022`, ProductID: 141, ProductName: `Mac Book Air`, UnitPrice: 16740.86, Quantity: 3, ExtendedPrice: 50222.58, Freight: 580.86, Discontinued: false, Region: `West`, Address: `146 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 60064 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `163 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90158, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1056, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `163 Market Street, Los Angeles, USA, 90158`, Salesperson: `Martin Jefferson`, OrderID: 1415, OrderDate: `9/2/2022`, ProductID: 112, ProductName: `IPhone`, UnitPrice: 25190.37, Quantity: 3, ExtendedPrice: 75571.11, Freight: 1060.37, Discontinued: false, Region: `South East`, Address: `163 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90158 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `171 Main Street`, ShipCity: `New York`, ShipPostalCode: 50163, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1057, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `171 Main Street, New York, USA, 50163`, Salesperson: `Martin Smith`, OrderID: 1430, OrderDate: `9/2/2022`, ProductID: 120, ProductName: `Samsung Note`, UnitPrice: 26340.71, Quantity: 2, ExtendedPrice: 52681.42, Freight: 770.71, Discontinued: false, Region: `North East`, Address: `171 Main Street`, City: `New York`, Country: `USA`, PostalCode: 50163 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `195 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60159, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1058, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `195 Wall Street, Philadelphia, USA, 60159`, Salesperson: `Ben Black`, OrderID: 1903, OrderDate: `2/19/2022`, ProductID: 161, ProductName: `IPad`, UnitPrice: 6290.33, Quantity: 5, ExtendedPrice: 31451.65, Freight: 890.33, Discontinued: false, Region: `South East`, Address: `195 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60159 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `171 Market Street`, ShipCity: `Huston`, ShipPostalCode: 50154, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1059, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `171 Market Street, Huston, USA, 50154`, Salesperson: `Anna Madison`, OrderID: 1578, OrderDate: `6/5/2022`, ProductID: 103, ProductName: `Samsung Galaxy 22`, UnitPrice: 20240.82, Quantity: 5, ExtendedPrice: 101204.1, Freight: 1490.82, Discontinued: true, Region: `West`, Address: `171 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 50154 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `103 Market Street`, ShipCity: `New York`, ShipPostalCode: 70081, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1060, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `103 Market Street, New York, USA, 70081`, Salesperson: `Pamela Jackson`, OrderID: 1142, OrderDate: `4/1/2022`, ProductID: 108, ProductName: `IPhone`, UnitPrice: 9790.41, Quantity: 3, ExtendedPrice: 29371.23, Freight: 980.41, Discontinued: false, Region: `South East`, Address: `103 Market Street`, City: `New York`, Country: `USA`, PostalCode: 70081 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `187 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70141, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1061, CustomerName: `Mike Smith`, CustomerFirstName: `Mike`, CustomerLastName: `Smith`, CustomerAddress: `187 Market Street, Los Angeles, USA, 70141`, Salesperson: `Ben Jefferson`, OrderID: 1871, OrderDate: `8/20/2022`, ProductID: 197, ProductName: `IPad`, UnitPrice: 28960.39, Quantity: 2, ExtendedPrice: 57920.78, Freight: 1280.39, Discontinued: false, Region: `West`, Address: `187 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70141 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `145 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50068, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1062, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `145 Main Street, Philadelphia, USA, 50068`, Salesperson: `Martin Watson`, OrderID: 1747, OrderDate: `1/20/2022`, ProductID: 198, ProductName: `Mac Book Pro`, UnitPrice: 12530.74, Quantity: 4, ExtendedPrice: 50122.96, Freight: 480.74, Discontinued: false, Region: `West`, Address: `145 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50068 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `109 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90197, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1063, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `109 Market Street, Los Angeles, USA, 90197`, Salesperson: `James Black`, OrderID: 1881, OrderDate: `11/6/2022`, ProductID: 162, ProductName: `Samsung Note`, UnitPrice: 29810.51, Quantity: 2, ExtendedPrice: 59621.02, Freight: 750.51, Discontinued: false, Region: `North East`, Address: `109 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90197 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `155 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50184, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1064, CustomerName: `Nancy Smith`, CustomerFirstName: `Nancy`, CustomerLastName: `Smith`, CustomerAddress: `155 Market Street, Los Angeles, USA, 50184`, Salesperson: `Mike Madison`, OrderID: 1172, OrderDate: `5/14/2022`, ProductID: 154, ProductName: `IPhone`, UnitPrice: 11440.88, Quantity: 2, ExtendedPrice: 22881.76, Freight: 1570.88, Discontinued: false, Region: `West`, Address: `155 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50184 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `136 Main Street`, ShipCity: `New York`, ShipPostalCode: 60147, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1065, CustomerName: `James Jackson`, CustomerFirstName: `James`, CustomerLastName: `Jackson`, CustomerAddress: `136 Main Street, New York, USA, 60147`, Salesperson: `James Jefferson`, OrderID: 1538, OrderDate: `2/4/2022`, ProductID: 142, ProductName: `IPad`, UnitPrice: 18340.25, Quantity: 5, ExtendedPrice: 91701.25, Freight: 1730.25, Discontinued: false, Region: `South East`, Address: `136 Main Street`, City: `New York`, Country: `USA`, PostalCode: 60147 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `184 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 60091, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1066, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `184 Wall Street, Miami, USA, 60091`, Salesperson: `Ben Jackson`, OrderID: 1863, OrderDate: `2/6/2022`, ProductID: 186, ProductName: `Samsung Note`, UnitPrice: 6690.4, Quantity: 5, ExtendedPrice: 33452, Freight: 930.4, Discontinued: false, Region: `West`, Address: `184 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 60091 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `103 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80170, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1067, CustomerName: `James Jackson`, CustomerFirstName: `James`, CustomerLastName: `Jackson`, CustomerAddress: `103 Market Street, Philadelphia, USA, 80170`, Salesperson: `Max Black`, OrderID: 1476, OrderDate: `1/13/2022`, ProductID: 156, ProductName: `Mac Book Pro`, UnitPrice: 29040.31, Quantity: 5, ExtendedPrice: 145201.55, Freight: 1070.31, Discontinued: false, Region: `West`, Address: `103 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80170 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `104 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80188, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1068, CustomerName: `Ben Smith`, CustomerFirstName: `Ben`, CustomerLastName: `Smith`, CustomerAddress: `104 Market Street, Los Angeles, USA, 80188`, Salesperson: `Martin Watson`, OrderID: 1131, OrderDate: `9/13/2022`, ProductID: 131, ProductName: `Samsung Galaxy 22`, UnitPrice: 6780.79, Quantity: 4, ExtendedPrice: 27123.16, Freight: 600.79, Discontinued: false, Region: `South East`, Address: `104 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80188 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `140 Main Street`, ShipCity: `New York`, ShipPostalCode: 90197, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1069, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `140 Main Street, New York, USA, 90197`, Salesperson: `Anna Smith`, OrderID: 1829, OrderDate: `2/18/2022`, ProductID: 152, ProductName: `Samsung Note`, UnitPrice: 20150.52, Quantity: 4, ExtendedPrice: 80602.08, Freight: 1840.52, Discontinued: true, Region: `North East`, Address: `140 Main Street`, City: `New York`, Country: `USA`, PostalCode: 90197 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `172 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90159, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1070, CustomerName: `Mike Smith`, CustomerFirstName: `Mike`, CustomerLastName: `Smith`, CustomerAddress: `172 Wall Street, Philadelphia, USA, 90159`, Salesperson: `Pamela Watson`, OrderID: 1082, OrderDate: `10/1/2022`, ProductID: 164, ProductName: `IPad`, UnitPrice: 23810.31, Quantity: 2, ExtendedPrice: 47620.62, Freight: 320.31, Discontinued: false, Region: `West`, Address: `172 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90159 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `147 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 90173, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1071, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `147 Wall Street, Huston, USA, 90173`, Salesperson: `Martin Smith`, OrderID: 1449, OrderDate: `1/21/2022`, ProductID: 111, ProductName: `Mac Book Pro`, UnitPrice: 8280.25, Quantity: 4, ExtendedPrice: 33121, Freight: 860.25, Discontinued: false, Region: `South East`, Address: `147 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 90173 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `161 Main Street`, ShipCity: `Huston`, ShipPostalCode: 90102, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1072, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `161 Main Street, Huston, USA, 90102`, Salesperson: `Nancy Black`, OrderID: 1609, OrderDate: `9/22/2022`, ProductID: 197, ProductName: `Samsung Note`, UnitPrice: 16740.35, Quantity: 4, ExtendedPrice: 66961.4, Freight: 1940.35, Discontinued: false, Region: `North East`, Address: `161 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 90102 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `102 Market Street`, ShipCity: `Miami`, ShipPostalCode: 70124, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1073, CustomerName: `Ben Smith`, CustomerFirstName: `Ben`, CustomerLastName: `Smith`, CustomerAddress: `102 Market Street, Miami, USA, 70124`, Salesperson: `Anna Smith`, OrderID: 1984, OrderDate: `8/6/2022`, ProductID: 123, ProductName: `Samsung Galaxy 22`, UnitPrice: 14660.66, Quantity: 3, ExtendedPrice: 43981.98, Freight: 1910.66, Discontinued: false, Region: `West`, Address: `102 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 70124 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `139 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90134, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1074, CustomerName: `Martin Black`, CustomerFirstName: `Martin`, CustomerLastName: `Black`, CustomerAddress: `139 Market Street, Miami, USA, 90134`, Salesperson: `Max Jackson`, OrderID: 1060, OrderDate: `3/11/2022`, ProductID: 154, ProductName: `Mac Book Pro`, UnitPrice: 14460.37, Quantity: 4, ExtendedPrice: 57841.48, Freight: 1020.37, Discontinued: false, Region: `West`, Address: `139 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90134 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `132 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60055, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1075, CustomerName: `Martin Jackson`, CustomerFirstName: `Martin`, CustomerLastName: `Jackson`, CustomerAddress: `132 Market Street, Philadelphia, USA, 60055`, Salesperson: `Pamela Madison`, OrderID: 1213, OrderDate: `9/3/2022`, ProductID: 108, ProductName: `IPhone`, UnitPrice: 19340.74, Quantity: 3, ExtendedPrice: 58022.22, Freight: 1370.74, Discontinued: false, Region: `West`, Address: `132 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60055 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `192 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90135, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1076, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `192 Market Street, Miami, USA, 90135`, Salesperson: `Nancy Madison`, OrderID: 1563, OrderDate: `5/8/2022`, ProductID: 162, ProductName: `Samsung Note`, UnitPrice: 12670.48, Quantity: 2, ExtendedPrice: 25340.96, Freight: 1870.48, Discontinued: false, Region: `South East`, Address: `192 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90135 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `108 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 90156, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1077, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `108 Wall Street, Miami, USA, 90156`, Salesperson: `Max Smith`, OrderID: 1087, OrderDate: `6/24/2022`, ProductID: 194, ProductName: `Samsung Galaxy 22`, UnitPrice: 6860.84, Quantity: 3, ExtendedPrice: 20582.52, Freight: 1880.84, Discontinued: false, Region: `South East`, Address: `108 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 90156 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `162 Wall Street`, ShipCity: `New York`, ShipPostalCode: 80121, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1078, CustomerName: `Nancy Smith`, CustomerFirstName: `Nancy`, CustomerLastName: `Smith`, CustomerAddress: `162 Wall Street, New York, USA, 80121`, Salesperson: `Anna Black`, OrderID: 1663, OrderDate: `9/5/2022`, ProductID: 149, ProductName: `Mac Book Pro`, UnitPrice: 29550.53, Quantity: 5, ExtendedPrice: 147752.65, Freight: 1270.53, Discontinued: false, Region: `South East`, Address: `162 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 80121 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `165 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70057, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1079, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `165 Main Street, Los Angeles, USA, 70057`, Salesperson: `James Watson`, OrderID: 1724, OrderDate: `5/6/2022`, ProductID: 180, ProductName: `IPad`, UnitPrice: 13560.61, Quantity: 3, ExtendedPrice: 40681.83, Freight: 760.61, Discontinued: true, Region: `North East`, Address: `165 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70057 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `162 Main Street`, ShipCity: `Huston`, ShipPostalCode: 60057, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1080, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `162 Main Street, Huston, USA, 60057`, Salesperson: `Anna Watson`, OrderID: 1156, OrderDate: `10/5/2022`, ProductID: 157, ProductName: `Samsung Galaxy 22`, UnitPrice: 17220.59, Quantity: 3, ExtendedPrice: 51661.77, Freight: 1550.59, Discontinued: false, Region: `North East`, Address: `162 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 60057 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `126 Main Street`, ShipCity: `Miami`, ShipPostalCode: 70200, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1081, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `126 Main Street, Miami, USA, 70200`, Salesperson: `Ben Watson`, OrderID: 1982, OrderDate: `9/11/2022`, ProductID: 123, ProductName: `Mac Book Air`, UnitPrice: 25780.79, Quantity: 2, ExtendedPrice: 51561.58, Freight: 680.79, Discontinued: false, Region: `South East`, Address: `126 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 70200 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `105 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 80141, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1082, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `105 Wall Street, Huston, USA, 80141`, Salesperson: `Pamela Watson`, OrderID: 1462, OrderDate: `6/6/2022`, ProductID: 189, ProductName: `Samsung Galaxy 22`, UnitPrice: 16990.62, Quantity: 2, ExtendedPrice: 33981.24, Freight: 710.62, Discontinued: false, Region: `West`, Address: `105 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 80141 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `113 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50187, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1083, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `113 Market Street, Philadelphia, USA, 50187`, Salesperson: `Martin Jefferson`, OrderID: 1698, OrderDate: `5/16/2022`, ProductID: 148, ProductName: `IPhone`, UnitPrice: 16930.87, Quantity: 4, ExtendedPrice: 67723.48, Freight: 1080.87, Discontinued: false, Region: `North East`, Address: `113 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50187 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `164 Main Street`, ShipCity: `New York`, ShipPostalCode: 80172, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1084, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `164 Main Street, New York, USA, 80172`, Salesperson: `Mike Jackson`, OrderID: 1300, OrderDate: `11/11/2022`, ProductID: 164, ProductName: `IPhone`, UnitPrice: 8120.59, Quantity: 4, ExtendedPrice: 32482.36, Freight: 1140.59, Discontinued: false, Region: `West`, Address: `164 Main Street`, City: `New York`, Country: `USA`, PostalCode: 80172 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `108 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90074, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1085, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `108 Main Street, Philadelphia, USA, 90074`, Salesperson: `Nancy Madison`, OrderID: 1401, OrderDate: `12/3/2022`, ProductID: 139, ProductName: `IPhone`, UnitPrice: 6160.25, Quantity: 4, ExtendedPrice: 24641, Freight: 1600.25, Discontinued: false, Region: `South East`, Address: `108 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90074 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `175 Main Street`, ShipCity: `Huston`, ShipPostalCode: 80111, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1086, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `175 Main Street, Huston, USA, 80111`, Salesperson: `Nancy Watson`, OrderID: 1474, OrderDate: `9/1/2022`, ProductID: 138, ProductName: `Mac Book Air`, UnitPrice: 7220.7, Quantity: 4, ExtendedPrice: 28882.8, Freight: 1530.7, Discontinued: false, Region: `West`, Address: `175 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 80111 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `102 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 80173, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1087, CustomerName: `Nancy Madison`, CustomerFirstName: `Nancy`, CustomerLastName: `Madison`, CustomerAddress: `102 Wall Street, Miami, USA, 80173`, Salesperson: `Martin Jackson`, OrderID: 1678, OrderDate: `5/6/2022`, ProductID: 190, ProductName: `IPad`, UnitPrice: 17990.28, Quantity: 4, ExtendedPrice: 71961.12, Freight: 1420.28, Discontinued: false, Region: `South East`, Address: `102 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 80173 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `163 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50105, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1088, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `163 Market Street, Philadelphia, USA, 50105`, Salesperson: `Martin Black`, OrderID: 1384, OrderDate: `4/16/2022`, ProductID: 156, ProductName: `Mac Book Pro`, UnitPrice: 15460.27, Quantity: 3, ExtendedPrice: 46380.81, Freight: 1250.27, Discontinued: false, Region: `West`, Address: `163 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50105 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `165 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 90075, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1089, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `165 Wall Street, Huston, USA, 90075`, Salesperson: `Nancy Jefferson`, OrderID: 1223, OrderDate: `7/20/2022`, ProductID: 105, ProductName: `Mac Book Pro`, UnitPrice: 15450.62, Quantity: 2, ExtendedPrice: 30901.24, Freight: 1350.62, Discontinued: true, Region: `North East`, Address: `165 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 90075 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `140 Wall Street`, ShipCity: `New York`, ShipPostalCode: 80134, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1090, CustomerName: `Anna Jefferson`, CustomerFirstName: `Anna`, CustomerLastName: `Jefferson`, CustomerAddress: `140 Wall Street, New York, USA, 80134`, Salesperson: `Anna Watson`, OrderID: 1189, OrderDate: `10/5/2022`, ProductID: 128, ProductName: `Samsung Note`, UnitPrice: 15460.25, Quantity: 5, ExtendedPrice: 77301.25, Freight: 840.25, Discontinued: false, Region: `West`, Address: `140 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 80134 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `191 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80168, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1091, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `191 Wall Street, Los Angeles, USA, 80168`, Salesperson: `Anna Madison`, OrderID: 1657, OrderDate: `8/7/2022`, ProductID: 154, ProductName: `IPad`, UnitPrice: 24990.6, Quantity: 5, ExtendedPrice: 124953, Freight: 1890.6, Discontinued: false, Region: `South East`, Address: `191 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80168 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `111 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60130, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1092, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `111 Market Street, Los Angeles, USA, 60130`, Salesperson: `Ben Jackson`, OrderID: 1818, OrderDate: `12/2/2022`, ProductID: 107, ProductName: `Samsung Note`, UnitPrice: 19750.45, Quantity: 4, ExtendedPrice: 79001.8, Freight: 1840.45, Discontinued: false, Region: `South East`, Address: `111 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60130 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `190 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50162, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1093, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `190 Market Street, Los Angeles, USA, 50162`, Salesperson: `Mike Watson`, OrderID: 1117, OrderDate: `10/12/2022`, ProductID: 176, ProductName: `Samsung Note`, UnitPrice: 15390.57, Quantity: 5, ExtendedPrice: 76952.85, Freight: 1500.57, Discontinued: false, Region: `West`, Address: `190 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50162 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `121 Main Street`, ShipCity: `Miami`, ShipPostalCode: 70156, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1094, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `121 Main Street, Miami, USA, 70156`, Salesperson: `Mike Jackson`, OrderID: 1188, OrderDate: `11/23/2022`, ProductID: 177, ProductName: `IPad`, UnitPrice: 23120.28, Quantity: 3, ExtendedPrice: 69360.84, Freight: 1670.28, Discontinued: false, Region: `South East`, Address: `121 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 70156 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `120 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60082, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1095, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `120 Main Street, Miami, USA, 60082`, Salesperson: `Nancy Smith`, OrderID: 1673, OrderDate: `1/25/2022`, ProductID: 189, ProductName: `Mac Book Air`, UnitPrice: 16310.31, Quantity: 4, ExtendedPrice: 65241.24, Freight: 370.31, Discontinued: false, Region: `South East`, Address: `120 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60082 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `102 Main Street`, ShipCity: `Miami`, ShipPostalCode: 90125, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1096, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `102 Main Street, Miami, USA, 90125`, Salesperson: `Pamela Smith`, OrderID: 1048, OrderDate: `8/6/2022`, ProductID: 148, ProductName: `Mac Book Pro`, UnitPrice: 14920.59, Quantity: 2, ExtendedPrice: 29841.18, Freight: 1110.59, Discontinued: false, Region: `West`, Address: `102 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 90125 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `125 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80199, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1097, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `125 Main Street, Los Angeles, USA, 80199`, Salesperson: `Pamela Black`, OrderID: 1336, OrderDate: `6/1/2022`, ProductID: 159, ProductName: `Mac Book Pro`, UnitPrice: 11370.4, Quantity: 5, ExtendedPrice: 56852, Freight: 1210.4, Discontinued: false, Region: `West`, Address: `125 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80199 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `109 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 60118, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1098, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `109 Wall Street, Miami, USA, 60118`, Salesperson: `James Madison`, OrderID: 1049, OrderDate: `2/14/2022`, ProductID: 172, ProductName: `Mac Book Pro`, UnitPrice: 18730.79, Quantity: 5, ExtendedPrice: 93653.95, Freight: 300.79, Discontinued: false, Region: `South East`, Address: `109 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 60118 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `149 Main Street`, ShipCity: `Miami`, ShipPostalCode: 50128, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1099, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `149 Main Street, Miami, USA, 50128`, Salesperson: `James Watson`, OrderID: 1292, OrderDate: `3/15/2022`, ProductID: 183, ProductName: `Mac Book Air`, UnitPrice: 16730.48, Quantity: 5, ExtendedPrice: 83652.4, Freight: 1320.48, Discontinued: true, Region: `North East`, Address: `149 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 50128 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `183 Wall Street`, ShipCity: `New York`, ShipPostalCode: 50089, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1100, CustomerName: `Ben Smith`, CustomerFirstName: `Ben`, CustomerLastName: `Smith`, CustomerAddress: `183 Wall Street, New York, USA, 50089`, Salesperson: `Max Watson`, OrderID: 1724, OrderDate: `9/22/2022`, ProductID: 160, ProductName: `IPad`, UnitPrice: 23370.51, Quantity: 3, ExtendedPrice: 70111.53, Freight: 1200.51, Discontinued: false, Region: `North East`, Address: `183 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 50089 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `195 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60110, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1101, CustomerName: `Martin Watson`, CustomerFirstName: `Martin`, CustomerLastName: `Watson`, CustomerAddress: `195 Market Street, Philadelphia, USA, 60110`, Salesperson: `Martin Black`, OrderID: 1154, OrderDate: `4/13/2022`, ProductID: 180, ProductName: `Samsung Note`, UnitPrice: 24870.49, Quantity: 4, ExtendedPrice: 99481.96, Freight: 1200.49, Discontinued: false, Region: `South East`, Address: `195 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60110 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `153 Market Street`, ShipCity: `New York`, ShipPostalCode: 60113, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1102, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `153 Market Street, New York, USA, 60113`, Salesperson: `Nancy Black`, OrderID: 1333, OrderDate: `2/24/2022`, ProductID: 192, ProductName: `Samsung Note`, UnitPrice: 12710.8, Quantity: 4, ExtendedPrice: 50843.2, Freight: 1520.8, Discontinued: false, Region: `North East`, Address: `153 Market Street`, City: `New York`, Country: `USA`, PostalCode: 60113 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `185 Market Street`, ShipCity: `Miami`, ShipPostalCode: 60118, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1103, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `185 Market Street, Miami, USA, 60118`, Salesperson: `Max Black`, OrderID: 1243, OrderDate: `2/7/2022`, ProductID: 124, ProductName: `Samsung Galaxy 22`, UnitPrice: 16270.33, Quantity: 4, ExtendedPrice: 65081.32, Freight: 1050.33, Discontinued: false, Region: `West`, Address: `185 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 60118 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `181 Market Street`, ShipCity: `Miami`, ShipPostalCode: 80055, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1104, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `181 Market Street, Miami, USA, 80055`, Salesperson: `Nancy Madison`, OrderID: 1090, OrderDate: `12/2/2022`, ProductID: 106, ProductName: `Mac Book Pro`, UnitPrice: 25150.85, Quantity: 5, ExtendedPrice: 125754.25, Freight: 560.85, Discontinued: false, Region: `North East`, Address: `181 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 80055 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `185 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60149, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1105, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `185 Market Street, Los Angeles, USA, 60149`, Salesperson: `Martin Madison`, OrderID: 1697, OrderDate: `10/12/2022`, ProductID: 193, ProductName: `Mac Book Air`, UnitPrice: 18440.22, Quantity: 5, ExtendedPrice: 92201.1, Freight: 1030.22, Discontinued: false, Region: `North East`, Address: `185 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60149 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `110 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90160, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1106, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `110 Wall Street, Los Angeles, USA, 90160`, Salesperson: `Mike Jefferson`, OrderID: 1868, OrderDate: `6/20/2022`, ProductID: 166, ProductName: `Samsung Galaxy 22`, UnitPrice: 10990.49, Quantity: 5, ExtendedPrice: 54952.45, Freight: 1250.49, Discontinued: false, Region: `North East`, Address: `110 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90160 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `124 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 90129, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1107, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `124 Wall Street, Miami, USA, 90129`, Salesperson: `Max Madison`, OrderID: 1419, OrderDate: `11/8/2022`, ProductID: 119, ProductName: `Mac Book Air`, UnitPrice: 9310.28, Quantity: 3, ExtendedPrice: 27930.84, Freight: 1660.28, Discontinued: false, Region: `West`, Address: `124 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 90129 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `144 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 80145, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1108, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `144 Wall Street, Huston, USA, 80145`, Salesperson: `Mike Smith`, OrderID: 1103, OrderDate: `5/14/2022`, ProductID: 172, ProductName: `Mac Book Pro`, UnitPrice: 5130.33, Quantity: 2, ExtendedPrice: 10260.66, Freight: 1840.33, Discontinued: false, Region: `North East`, Address: `144 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 80145 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `200 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50073, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1109, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `200 Main Street, Philadelphia, USA, 50073`, Salesperson: `Max Jackson`, OrderID: 1461, OrderDate: `6/13/2022`, ProductID: 153, ProductName: `Mac Book Pro`, UnitPrice: 23080.59, Quantity: 3, ExtendedPrice: 69241.77, Freight: 540.59, Discontinued: true, Region: `West`, Address: `200 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50073 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `196 Market Street`, ShipCity: `New York`, ShipPostalCode: 70070, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1110, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `196 Market Street, New York, USA, 70070`, Salesperson: `Nancy Smith`, OrderID: 1713, OrderDate: `3/6/2022`, ProductID: 121, ProductName: `Mac Book Pro`, UnitPrice: 29390.58, Quantity: 3, ExtendedPrice: 88171.74, Freight: 1170.58, Discontinued: false, Region: `West`, Address: `196 Market Street`, City: `New York`, Country: `USA`, PostalCode: 70070 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `154 Main Street`, ShipCity: `New York`, ShipPostalCode: 70167, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1111, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `154 Main Street, New York, USA, 70167`, Salesperson: `Pamela Jackson`, OrderID: 1956, OrderDate: `1/2/2022`, ProductID: 156, ProductName: `Samsung Note`, UnitPrice: 24870.88, Quantity: 2, ExtendedPrice: 49741.76, Freight: 1360.88, Discontinued: false, Region: `North East`, Address: `154 Main Street`, City: `New York`, Country: `USA`, PostalCode: 70167 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `110 Main Street`, ShipCity: `Miami`, ShipPostalCode: 90055, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1112, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `110 Main Street, Miami, USA, 90055`, Salesperson: `Anna Madison`, OrderID: 1530, OrderDate: `10/15/2022`, ProductID: 113, ProductName: `IPad`, UnitPrice: 24570.87, Quantity: 4, ExtendedPrice: 98283.48, Freight: 930.87, Discontinued: false, Region: `South East`, Address: `110 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 90055 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `200 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70105, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1113, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `200 Market Street, Huston, USA, 70105`, Salesperson: `James Jackson`, OrderID: 1488, OrderDate: `7/13/2022`, ProductID: 109, ProductName: `IPhone`, UnitPrice: 23860.57, Quantity: 4, ExtendedPrice: 95442.28, Freight: 1130.57, Discontinued: false, Region: `North East`, Address: `200 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70105 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `181 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80175, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1114, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `181 Main Street, Philadelphia, USA, 80175`, Salesperson: `Max Jackson`, OrderID: 1143, OrderDate: `6/13/2022`, ProductID: 144, ProductName: `Mac Book Air`, UnitPrice: 28390.63, Quantity: 5, ExtendedPrice: 141953.15, Freight: 300.63, Discontinued: false, Region: `North East`, Address: `181 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80175 }), + new InvoicesDataItem({ ShipName: `Jackson Home`, ShipAddress: `137 Market Street`, ShipCity: `Huston`, ShipPostalCode: 50144, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1115, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `137 Market Street, Huston, USA, 50144`, Salesperson: `Martin Jackson`, OrderID: 1274, OrderDate: `4/8/2022`, ProductID: 134, ProductName: `IPad`, UnitPrice: 22580.34, Quantity: 2, ExtendedPrice: 45160.68, Freight: 1720.34, Discontinued: false, Region: `South East`, Address: `137 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 50144 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `186 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70112, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1116, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `186 Main Street, Los Angeles, USA, 70112`, Salesperson: `Mike Jefferson`, OrderID: 1597, OrderDate: `8/6/2022`, ProductID: 127, ProductName: `Mac Book Pro`, UnitPrice: 28490.48, Quantity: 3, ExtendedPrice: 85471.44, Freight: 760.48, Discontinued: false, Region: `South East`, Address: `186 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70112 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `152 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 50080, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1117, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `152 Wall Street, Huston, USA, 50080`, Salesperson: `Max Jackson`, OrderID: 1632, OrderDate: `4/15/2022`, ProductID: 179, ProductName: `Mac Book Pro`, UnitPrice: 20680.38, Quantity: 5, ExtendedPrice: 103401.9, Freight: 490.38, Discontinued: false, Region: `West`, Address: `152 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 50080 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `147 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60136, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1118, CustomerName: `Pamela Black`, CustomerFirstName: `Pamela`, CustomerLastName: `Black`, CustomerAddress: `147 Wall Street, Huston, USA, 60136`, Salesperson: `Mike Watson`, OrderID: 1461, OrderDate: `4/21/2022`, ProductID: 118, ProductName: `Samsung Note`, UnitPrice: 6990.24, Quantity: 5, ExtendedPrice: 34951.2, Freight: 460.24, Discontinued: false, Region: `North East`, Address: `147 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60136 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `161 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80121, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1119, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `161 Market Street, Huston, USA, 80121`, Salesperson: `Martin Jefferson`, OrderID: 1380, OrderDate: `1/3/2022`, ProductID: 176, ProductName: `Mac Book Air`, UnitPrice: 26540.79, Quantity: 5, ExtendedPrice: 132703.95, Freight: 470.79, Discontinued: true, Region: `West`, Address: `161 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80121 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `118 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50189, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1120, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `118 Main Street, Philadelphia, USA, 50189`, Salesperson: `Ben Watson`, OrderID: 1658, OrderDate: `1/4/2022`, ProductID: 184, ProductName: `Mac Book Air`, UnitPrice: 16830.41, Quantity: 5, ExtendedPrice: 84152.05, Freight: 1660.41, Discontinued: false, Region: `West`, Address: `118 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50189 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `186 Market Street`, ShipCity: `Miami`, ShipPostalCode: 60097, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1121, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `186 Market Street, Miami, USA, 60097`, Salesperson: `Nancy Watson`, OrderID: 1754, OrderDate: `7/3/2022`, ProductID: 148, ProductName: `Mac Book Air`, UnitPrice: 5030.24, Quantity: 3, ExtendedPrice: 15090.72, Freight: 1660.24, Discontinued: false, Region: `South East`, Address: `186 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 60097 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `191 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90155, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1122, CustomerName: `Ben Smith`, CustomerFirstName: `Ben`, CustomerLastName: `Smith`, CustomerAddress: `191 Main Street, Los Angeles, USA, 90155`, Salesperson: `Anna Madison`, OrderID: 1279, OrderDate: `3/14/2022`, ProductID: 151, ProductName: `IPhone`, UnitPrice: 23590.82, Quantity: 3, ExtendedPrice: 70772.46, Freight: 1120.82, Discontinued: false, Region: `West`, Address: `191 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90155 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `190 Main Street`, ShipCity: `New York`, ShipPostalCode: 80075, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1123, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `190 Main Street, New York, USA, 80075`, Salesperson: `Martin Jackson`, OrderID: 1310, OrderDate: `11/7/2022`, ProductID: 183, ProductName: `Samsung Galaxy 22`, UnitPrice: 26450.4, Quantity: 5, ExtendedPrice: 132252, Freight: 420.4, Discontinued: false, Region: `South East`, Address: `190 Main Street`, City: `New York`, Country: `USA`, PostalCode: 80075 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `160 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80067, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1124, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `160 Market Street, Philadelphia, USA, 80067`, Salesperson: `Ben Jackson`, OrderID: 1920, OrderDate: `12/17/2022`, ProductID: 174, ProductName: `IPhone`, UnitPrice: 23660.88, Quantity: 4, ExtendedPrice: 94643.52, Freight: 1220.88, Discontinued: false, Region: `North East`, Address: `160 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80067 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `151 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 90124, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1125, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `151 Wall Street, Miami, USA, 90124`, Salesperson: `Mike Watson`, OrderID: 1497, OrderDate: `2/21/2022`, ProductID: 179, ProductName: `IPhone`, UnitPrice: 15940.51, Quantity: 5, ExtendedPrice: 79702.55, Freight: 1880.51, Discontinued: false, Region: `West`, Address: `151 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 90124 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `151 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70173, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1126, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `151 Market Street, Huston, USA, 70173`, Salesperson: `Pamela Jefferson`, OrderID: 1925, OrderDate: `2/15/2022`, ProductID: 170, ProductName: `IPhone`, UnitPrice: 13350.7, Quantity: 5, ExtendedPrice: 66753.5, Freight: 720.7, Discontinued: false, Region: `West`, Address: `151 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70173 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `114 Main Street`, ShipCity: `Miami`, ShipPostalCode: 80067, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1127, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `114 Main Street, Miami, USA, 80067`, Salesperson: `Pamela Black`, OrderID: 1338, OrderDate: `5/19/2022`, ProductID: 196, ProductName: `Samsung Note`, UnitPrice: 20820.82, Quantity: 4, ExtendedPrice: 83283.28, Freight: 1570.82, Discontinued: false, Region: `South East`, Address: `114 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 80067 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `189 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80157, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1128, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `189 Wall Street, Philadelphia, USA, 80157`, Salesperson: `Ben Watson`, OrderID: 1794, OrderDate: `9/9/2022`, ProductID: 168, ProductName: `Samsung Galaxy 22`, UnitPrice: 25550.56, Quantity: 4, ExtendedPrice: 102202.24, Freight: 400.56, Discontinued: false, Region: `North East`, Address: `189 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80157 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `198 Main Street`, ShipCity: `New York`, ShipPostalCode: 60169, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1129, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `198 Main Street, New York, USA, 60169`, Salesperson: `James Black`, OrderID: 1108, OrderDate: `2/5/2022`, ProductID: 194, ProductName: `Mac Book Air`, UnitPrice: 10890.26, Quantity: 3, ExtendedPrice: 32670.78, Freight: 760.26, Discontinued: true, Region: `South East`, Address: `198 Main Street`, City: `New York`, Country: `USA`, PostalCode: 60169 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `106 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60117, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1130, CustomerName: `James Jackson`, CustomerFirstName: `James`, CustomerLastName: `Jackson`, CustomerAddress: `106 Main Street, Los Angeles, USA, 60117`, Salesperson: `Pamela Jackson`, OrderID: 1953, OrderDate: `11/24/2022`, ProductID: 179, ProductName: `Samsung Note`, UnitPrice: 19940.84, Quantity: 3, ExtendedPrice: 59822.52, Freight: 890.84, Discontinued: false, Region: `West`, Address: `106 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60117 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `192 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90090, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1131, CustomerName: `James Madison`, CustomerFirstName: `James`, CustomerLastName: `Madison`, CustomerAddress: `192 Main Street, Los Angeles, USA, 90090`, Salesperson: `Max Jefferson`, OrderID: 1337, OrderDate: `10/10/2022`, ProductID: 198, ProductName: `Samsung Note`, UnitPrice: 18640.31, Quantity: 2, ExtendedPrice: 37280.62, Freight: 280.31, Discontinued: false, Region: `South East`, Address: `192 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90090 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `128 Market Street`, ShipCity: `Miami`, ShipPostalCode: 50136, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1132, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `128 Market Street, Miami, USA, 50136`, Salesperson: `Nancy Jefferson`, OrderID: 1617, OrderDate: `4/10/2022`, ProductID: 148, ProductName: `Samsung Galaxy 22`, UnitPrice: 26140.37, Quantity: 2, ExtendedPrice: 52280.74, Freight: 1270.37, Discontinued: false, Region: `West`, Address: `128 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 50136 }), + new InvoicesDataItem({ ShipName: `Jackson Home`, ShipAddress: `164 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 70190, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1133, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `164 Wall Street, Huston, USA, 70190`, Salesperson: `Nancy Watson`, OrderID: 1222, OrderDate: `3/15/2022`, ProductID: 140, ProductName: `IPad`, UnitPrice: 20540.74, Quantity: 3, ExtendedPrice: 61622.22, Freight: 1190.74, Discontinued: false, Region: `West`, Address: `164 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 70190 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `118 Main Street`, ShipCity: `Huston`, ShipPostalCode: 60126, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1134, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `118 Main Street, Huston, USA, 60126`, Salesperson: `Pamela Jefferson`, OrderID: 1888, OrderDate: `7/3/2022`, ProductID: 133, ProductName: `Samsung Galaxy 22`, UnitPrice: 25970.39, Quantity: 2, ExtendedPrice: 51940.78, Freight: 1110.39, Discontinued: false, Region: `North East`, Address: `118 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 60126 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `145 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50093, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1135, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `145 Wall Street, Philadelphia, USA, 50093`, Salesperson: `Nancy Jefferson`, OrderID: 1661, OrderDate: `5/14/2022`, ProductID: 199, ProductName: `Mac Book Air`, UnitPrice: 12190.38, Quantity: 2, ExtendedPrice: 24380.76, Freight: 1670.38, Discontinued: false, Region: `North East`, Address: `145 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50093 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `174 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70094, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1136, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `174 Wall Street, Los Angeles, USA, 70094`, Salesperson: `Max Madison`, OrderID: 1495, OrderDate: `1/19/2022`, ProductID: 188, ProductName: `Mac Book Pro`, UnitPrice: 18310.54, Quantity: 5, ExtendedPrice: 91552.7, Freight: 810.54, Discontinued: false, Region: `West`, Address: `174 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70094 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `146 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90093, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1137, CustomerName: `Martin Watson`, CustomerFirstName: `Martin`, CustomerLastName: `Watson`, CustomerAddress: `146 Wall Street, Philadelphia, USA, 90093`, Salesperson: `Mike Smith`, OrderID: 1649, OrderDate: `1/4/2022`, ProductID: 171, ProductName: `Mac Book Air`, UnitPrice: 6400.45, Quantity: 3, ExtendedPrice: 19201.35, Freight: 220.45, Discontinued: false, Region: `West`, Address: `146 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90093 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `181 Main Street`, ShipCity: `Miami`, ShipPostalCode: 80117, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1138, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `181 Main Street, Miami, USA, 80117`, Salesperson: `Mike Black`, OrderID: 1152, OrderDate: `5/12/2022`, ProductID: 172, ProductName: `Mac Book Pro`, UnitPrice: 26760.58, Quantity: 5, ExtendedPrice: 133802.9, Freight: 1480.58, Discontinued: false, Region: `West`, Address: `181 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 80117 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `183 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70191, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1139, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `183 Wall Street, Philadelphia, USA, 70191`, Salesperson: `Nancy Jefferson`, OrderID: 1471, OrderDate: `5/19/2022`, ProductID: 119, ProductName: `Mac Book Pro`, UnitPrice: 22030.88, Quantity: 5, ExtendedPrice: 110154.4, Freight: 990.88, Discontinued: true, Region: `West`, Address: `183 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70191 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `100 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80082, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1140, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `100 Wall Street, Philadelphia, USA, 80082`, Salesperson: `Max Madison`, OrderID: 1793, OrderDate: `3/16/2022`, ProductID: 158, ProductName: `Mac Book Pro`, UnitPrice: 20230.42, Quantity: 3, ExtendedPrice: 60691.26, Freight: 1990.42, Discontinued: false, Region: `West`, Address: `100 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80082 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `173 Market Street`, ShipCity: `New York`, ShipPostalCode: 90155, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1141, CustomerName: `Pamela Black`, CustomerFirstName: `Pamela`, CustomerLastName: `Black`, CustomerAddress: `173 Market Street, New York, USA, 90155`, Salesperson: `Pamela Black`, OrderID: 1928, OrderDate: `8/24/2022`, ProductID: 114, ProductName: `Mac Book Air`, UnitPrice: 24460.68, Quantity: 2, ExtendedPrice: 48921.36, Freight: 1840.68, Discontinued: false, Region: `West`, Address: `173 Market Street`, City: `New York`, Country: `USA`, PostalCode: 90155 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `171 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60087, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1142, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `171 Market Street, Philadelphia, USA, 60087`, Salesperson: `Pamela Madison`, OrderID: 1027, OrderDate: `1/25/2022`, ProductID: 145, ProductName: `Samsung Note`, UnitPrice: 6010.73, Quantity: 3, ExtendedPrice: 18032.19, Freight: 1860.73, Discontinued: false, Region: `West`, Address: `171 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60087 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `175 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60122, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1143, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `175 Wall Street, Huston, USA, 60122`, Salesperson: `Pamela Jackson`, OrderID: 1700, OrderDate: `12/10/2022`, ProductID: 150, ProductName: `Mac Book Pro`, UnitPrice: 22030.36, Quantity: 2, ExtendedPrice: 44060.72, Freight: 940.36, Discontinued: false, Region: `West`, Address: `175 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60122 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `174 Main Street`, ShipCity: `Miami`, ShipPostalCode: 90071, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1144, CustomerName: `Max Smith`, CustomerFirstName: `Max`, CustomerLastName: `Smith`, CustomerAddress: `174 Main Street, Miami, USA, 90071`, Salesperson: `Mike Jackson`, OrderID: 1769, OrderDate: `2/20/2022`, ProductID: 183, ProductName: `Mac Book Air`, UnitPrice: 25890.72, Quantity: 3, ExtendedPrice: 77672.16, Freight: 1540.72, Discontinued: false, Region: `West`, Address: `174 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 90071 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `100 Market Street`, ShipCity: `Huston`, ShipPostalCode: 90059, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1145, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `100 Market Street, Huston, USA, 90059`, Salesperson: `Max Jefferson`, OrderID: 1835, OrderDate: `5/15/2022`, ProductID: 142, ProductName: `Samsung Note`, UnitPrice: 28310.48, Quantity: 3, ExtendedPrice: 84931.44, Freight: 2000.48, Discontinued: false, Region: `West`, Address: `100 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 90059 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `120 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90120, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1146, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `120 Market Street, Miami, USA, 90120`, Salesperson: `Max Jefferson`, OrderID: 1787, OrderDate: `5/16/2022`, ProductID: 104, ProductName: `IPad`, UnitPrice: 8410.44, Quantity: 2, ExtendedPrice: 16820.88, Freight: 1620.44, Discontinued: false, Region: `West`, Address: `120 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90120 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `163 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80132, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1147, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `163 Wall Street, Los Angeles, USA, 80132`, Salesperson: `Pamela Watson`, OrderID: 1026, OrderDate: `7/10/2022`, ProductID: 130, ProductName: `Samsung Note`, UnitPrice: 13650.42, Quantity: 3, ExtendedPrice: 40951.26, Freight: 750.42, Discontinued: false, Region: `West`, Address: `163 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80132 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `169 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 90138, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1148, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `169 Wall Street, Huston, USA, 90138`, Salesperson: `Anna Smith`, OrderID: 1805, OrderDate: `1/6/2022`, ProductID: 126, ProductName: `Samsung Note`, UnitPrice: 29130.32, Quantity: 4, ExtendedPrice: 116521.28, Freight: 800.32, Discontinued: false, Region: `West`, Address: `169 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 90138 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `167 Market Street`, ShipCity: `Miami`, ShipPostalCode: 60152, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1149, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `167 Market Street, Miami, USA, 60152`, Salesperson: `Ben Jackson`, OrderID: 1292, OrderDate: `10/3/2022`, ProductID: 178, ProductName: `IPhone`, UnitPrice: 9150.64, Quantity: 5, ExtendedPrice: 45753.2, Freight: 1530.64, Discontinued: true, Region: `North East`, Address: `167 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 60152 }), + new InvoicesDataItem({ ShipName: `Jackson Home`, ShipAddress: `194 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80133, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1150, CustomerName: `Nancy Jackson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jackson`, CustomerAddress: `194 Wall Street, Philadelphia, USA, 80133`, Salesperson: `Martin Watson`, OrderID: 1240, OrderDate: `10/14/2022`, ProductID: 128, ProductName: `IPhone`, UnitPrice: 22900.38, Quantity: 5, ExtendedPrice: 114501.9, Freight: 1500.38, Discontinued: false, Region: `North East`, Address: `194 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80133 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `168 Wall Street`, ShipCity: `New York`, ShipPostalCode: 60104, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1151, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `168 Wall Street, New York, USA, 60104`, Salesperson: `Martin Madison`, OrderID: 1307, OrderDate: `5/19/2022`, ProductID: 109, ProductName: `Samsung Note`, UnitPrice: 18330.33, Quantity: 5, ExtendedPrice: 91651.65, Freight: 1960.33, Discontinued: false, Region: `North East`, Address: `168 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 60104 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `122 Market Street`, ShipCity: `New York`, ShipPostalCode: 60149, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1152, CustomerName: `Nancy Madison`, CustomerFirstName: `Nancy`, CustomerLastName: `Madison`, CustomerAddress: `122 Market Street, New York, USA, 60149`, Salesperson: `Mike Madison`, OrderID: 1360, OrderDate: `11/2/2022`, ProductID: 141, ProductName: `Mac Book Pro`, UnitPrice: 8620.6, Quantity: 2, ExtendedPrice: 17241.2, Freight: 950.6, Discontinued: false, Region: `South East`, Address: `122 Market Street`, City: `New York`, Country: `USA`, PostalCode: 60149 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `147 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80098, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1153, CustomerName: `Pamela Black`, CustomerFirstName: `Pamela`, CustomerLastName: `Black`, CustomerAddress: `147 Main Street, Philadelphia, USA, 80098`, Salesperson: `James Black`, OrderID: 1445, OrderDate: `11/2/2022`, ProductID: 151, ProductName: `Samsung Note`, UnitPrice: 27180.5, Quantity: 2, ExtendedPrice: 54361, Freight: 790.5, Discontinued: false, Region: `South East`, Address: `147 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80098 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `113 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90111, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1154, CustomerName: `Martin Jackson`, CustomerFirstName: `Martin`, CustomerLastName: `Jackson`, CustomerAddress: `113 Wall Street, Los Angeles, USA, 90111`, Salesperson: `Anna Jackson`, OrderID: 1014, OrderDate: `1/24/2022`, ProductID: 185, ProductName: `Mac Book Air`, UnitPrice: 14760.63, Quantity: 2, ExtendedPrice: 29521.26, Freight: 1520.63, Discontinued: false, Region: `West`, Address: `113 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90111 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `154 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60050, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1155, CustomerName: `Nancy Smith`, CustomerFirstName: `Nancy`, CustomerLastName: `Smith`, CustomerAddress: `154 Wall Street, Huston, USA, 60050`, Salesperson: `Nancy Smith`, OrderID: 1845, OrderDate: `4/8/2022`, ProductID: 105, ProductName: `IPad`, UnitPrice: 22600.77, Quantity: 4, ExtendedPrice: 90403.08, Freight: 670.77, Discontinued: false, Region: `North East`, Address: `154 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60050 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `188 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80121, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1156, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `188 Main Street, Philadelphia, USA, 80121`, Salesperson: `Martin Jefferson`, OrderID: 1587, OrderDate: `5/13/2022`, ProductID: 174, ProductName: `Samsung Note`, UnitPrice: 17020.74, Quantity: 2, ExtendedPrice: 34041.48, Freight: 1490.74, Discontinued: false, Region: `West`, Address: `188 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80121 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `181 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 90097, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1157, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `181 Wall Street, Huston, USA, 90097`, Salesperson: `Anna Madison`, OrderID: 1706, OrderDate: `5/22/2022`, ProductID: 112, ProductName: `Samsung Galaxy 22`, UnitPrice: 21780.43, Quantity: 3, ExtendedPrice: 65341.29, Freight: 1650.43, Discontinued: false, Region: `North East`, Address: `181 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 90097 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `171 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 50118, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1158, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `171 Wall Street, Miami, USA, 50118`, Salesperson: `Max Smith`, OrderID: 1335, OrderDate: `6/16/2022`, ProductID: 116, ProductName: `IPad`, UnitPrice: 7560.43, Quantity: 3, ExtendedPrice: 22681.29, Freight: 1140.43, Discontinued: false, Region: `West`, Address: `171 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 50118 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `193 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70176, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1159, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `193 Market Street, Philadelphia, USA, 70176`, Salesperson: `Martin Black`, OrderID: 1003, OrderDate: `9/11/2022`, ProductID: 170, ProductName: `IPhone`, UnitPrice: 15510.7, Quantity: 5, ExtendedPrice: 77553.5, Freight: 200.7, Discontinued: true, Region: `West`, Address: `193 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70176 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `125 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80142, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1160, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `125 Market Street, Philadelphia, USA, 80142`, Salesperson: `Martin Madison`, OrderID: 1723, OrderDate: `3/14/2022`, ProductID: 179, ProductName: `IPhone`, UnitPrice: 14760.6, Quantity: 3, ExtendedPrice: 44281.8, Freight: 1650.6, Discontinued: false, Region: `West`, Address: `125 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80142 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `128 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70111, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1161, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `128 Main Street, Philadelphia, USA, 70111`, Salesperson: `Max Jackson`, OrderID: 1810, OrderDate: `1/18/2022`, ProductID: 117, ProductName: `IPad`, UnitPrice: 19620.55, Quantity: 5, ExtendedPrice: 98102.75, Freight: 1030.55, Discontinued: false, Region: `South East`, Address: `128 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70111 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `131 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90058, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1162, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `131 Wall Street, Philadelphia, USA, 90058`, Salesperson: `Pamela Madison`, OrderID: 1224, OrderDate: `2/2/2022`, ProductID: 108, ProductName: `Mac Book Air`, UnitPrice: 9130.21, Quantity: 2, ExtendedPrice: 18260.42, Freight: 1110.21, Discontinued: false, Region: `West`, Address: `131 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90058 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `145 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50176, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1163, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `145 Main Street, Philadelphia, USA, 50176`, Salesperson: `Mike Smith`, OrderID: 1265, OrderDate: `4/22/2022`, ProductID: 147, ProductName: `IPhone`, UnitPrice: 15210.29, Quantity: 2, ExtendedPrice: 30420.58, Freight: 1470.29, Discontinued: false, Region: `South East`, Address: `145 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50176 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `123 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90058, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1164, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `123 Main Street, Philadelphia, USA, 90058`, Salesperson: `Martin Watson`, OrderID: 1428, OrderDate: `9/14/2022`, ProductID: 195, ProductName: `Samsung Note`, UnitPrice: 6440.36, Quantity: 4, ExtendedPrice: 25761.44, Freight: 350.36, Discontinued: false, Region: `West`, Address: `123 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90058 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `148 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60161, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1165, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `148 Wall Street, Los Angeles, USA, 60161`, Salesperson: `Nancy Black`, OrderID: 1367, OrderDate: `9/1/2022`, ProductID: 196, ProductName: `Mac Book Pro`, UnitPrice: 26990.25, Quantity: 4, ExtendedPrice: 107961, Freight: 950.25, Discontinued: false, Region: `West`, Address: `148 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60161 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `151 Main Street`, ShipCity: `New York`, ShipPostalCode: 90156, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1166, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `151 Main Street, New York, USA, 90156`, Salesperson: `Ben Smith`, OrderID: 1812, OrderDate: `6/23/2022`, ProductID: 182, ProductName: `Samsung Galaxy 22`, UnitPrice: 6230.76, Quantity: 5, ExtendedPrice: 31153.8, Freight: 920.76, Discontinued: false, Region: `West`, Address: `151 Main Street`, City: `New York`, Country: `USA`, PostalCode: 90156 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `128 Main Street`, ShipCity: `New York`, ShipPostalCode: 90073, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1167, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `128 Main Street, New York, USA, 90073`, Salesperson: `Nancy Madison`, OrderID: 1121, OrderDate: `3/25/2022`, ProductID: 166, ProductName: `Mac Book Air`, UnitPrice: 8360.33, Quantity: 3, ExtendedPrice: 25080.99, Freight: 1870.33, Discontinued: false, Region: `South East`, Address: `128 Main Street`, City: `New York`, Country: `USA`, PostalCode: 90073 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `109 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70139, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1168, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `109 Wall Street, Philadelphia, USA, 70139`, Salesperson: `James Jefferson`, OrderID: 1086, OrderDate: `11/22/2022`, ProductID: 192, ProductName: `IPhone`, UnitPrice: 13050.45, Quantity: 4, ExtendedPrice: 52201.8, Freight: 1850.45, Discontinued: false, Region: `North East`, Address: `109 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70139 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `196 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60096, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1169, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `196 Wall Street, Los Angeles, USA, 60096`, Salesperson: `Mike Watson`, OrderID: 1859, OrderDate: `8/11/2022`, ProductID: 157, ProductName: `IPhone`, UnitPrice: 14950.2, Quantity: 5, ExtendedPrice: 74751, Freight: 1140.2, Discontinued: true, Region: `South East`, Address: `196 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60096 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `101 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90111, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1170, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `101 Market Street, Philadelphia, USA, 90111`, Salesperson: `Mike Madison`, OrderID: 1952, OrderDate: `7/19/2022`, ProductID: 152, ProductName: `Samsung Galaxy 22`, UnitPrice: 29810.56, Quantity: 4, ExtendedPrice: 119242.24, Freight: 470.56, Discontinued: false, Region: `South East`, Address: `101 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90111 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `147 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90157, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1171, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `147 Main Street, Los Angeles, USA, 90157`, Salesperson: `Ben Black`, OrderID: 1351, OrderDate: `5/22/2022`, ProductID: 180, ProductName: `Samsung Note`, UnitPrice: 13470.4, Quantity: 5, ExtendedPrice: 67352, Freight: 1610.4, Discontinued: false, Region: `West`, Address: `147 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90157 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `195 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80071, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1172, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `195 Market Street, Huston, USA, 80071`, Salesperson: `Pamela Jefferson`, OrderID: 1371, OrderDate: `12/9/2022`, ProductID: 105, ProductName: `Mac Book Pro`, UnitPrice: 19040.72, Quantity: 4, ExtendedPrice: 76162.88, Freight: 1480.72, Discontinued: false, Region: `South East`, Address: `195 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80071 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `184 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90197, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1173, CustomerName: `Martin Black`, CustomerFirstName: `Martin`, CustomerLastName: `Black`, CustomerAddress: `184 Market Street, Los Angeles, USA, 90197`, Salesperson: `Martin Watson`, OrderID: 1537, OrderDate: `4/3/2022`, ProductID: 137, ProductName: `IPhone`, UnitPrice: 25370.79, Quantity: 2, ExtendedPrice: 50741.58, Freight: 1980.79, Discontinued: false, Region: `North East`, Address: `184 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90197 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `102 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70185, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1174, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `102 Market Street, Huston, USA, 70185`, Salesperson: `Ben Jackson`, OrderID: 1378, OrderDate: `7/6/2022`, ProductID: 182, ProductName: `Mac Book Pro`, UnitPrice: 19620.84, Quantity: 2, ExtendedPrice: 39241.68, Freight: 730.84, Discontinued: false, Region: `North East`, Address: `102 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70185 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `192 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60144, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1175, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `192 Wall Street, Huston, USA, 60144`, Salesperson: `Martin Jefferson`, OrderID: 1350, OrderDate: `10/23/2022`, ProductID: 138, ProductName: `IPad`, UnitPrice: 26010.88, Quantity: 2, ExtendedPrice: 52021.76, Freight: 260.88, Discontinued: false, Region: `North East`, Address: `192 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60144 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `114 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70079, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1176, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `114 Main Street, Philadelphia, USA, 70079`, Salesperson: `Anna Watson`, OrderID: 1889, OrderDate: `8/21/2022`, ProductID: 146, ProductName: `Samsung Galaxy 22`, UnitPrice: 23970.6, Quantity: 3, ExtendedPrice: 71911.8, Freight: 1870.6, Discontinued: false, Region: `North East`, Address: `114 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70079 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `199 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 90182, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1177, CustomerName: `Nancy Madison`, CustomerFirstName: `Nancy`, CustomerLastName: `Madison`, CustomerAddress: `199 Wall Street, Miami, USA, 90182`, Salesperson: `Anna Madison`, OrderID: 1285, OrderDate: `3/12/2022`, ProductID: 146, ProductName: `Samsung Note`, UnitPrice: 13660.54, Quantity: 2, ExtendedPrice: 27321.08, Freight: 1870.54, Discontinued: false, Region: `South East`, Address: `199 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 90182 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `141 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80097, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1178, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `141 Market Street, Philadelphia, USA, 80097`, Salesperson: `Pamela Watson`, OrderID: 1886, OrderDate: `8/1/2022`, ProductID: 107, ProductName: `Mac Book Pro`, UnitPrice: 11630.46, Quantity: 4, ExtendedPrice: 46521.84, Freight: 1530.46, Discontinued: false, Region: `North East`, Address: `141 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80097 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `168 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80162, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1179, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `168 Main Street, Los Angeles, USA, 80162`, Salesperson: `Mike Jackson`, OrderID: 1009, OrderDate: `4/7/2022`, ProductID: 149, ProductName: `IPad`, UnitPrice: 16960.32, Quantity: 3, ExtendedPrice: 50880.96, Freight: 1510.32, Discontinued: true, Region: `North East`, Address: `168 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80162 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `100 Market Street`, ShipCity: `Miami`, ShipPostalCode: 80063, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1180, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `100 Market Street, Miami, USA, 80063`, Salesperson: `Nancy Smith`, OrderID: 1046, OrderDate: `10/21/2022`, ProductID: 123, ProductName: `IPad`, UnitPrice: 19360.67, Quantity: 3, ExtendedPrice: 58082.01, Freight: 1510.67, Discontinued: false, Region: `South East`, Address: `100 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 80063 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `145 Market Street`, ShipCity: `Huston`, ShipPostalCode: 90152, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1181, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `145 Market Street, Huston, USA, 90152`, Salesperson: `Max Watson`, OrderID: 1593, OrderDate: `11/17/2022`, ProductID: 169, ProductName: `Samsung Note`, UnitPrice: 28870.27, Quantity: 5, ExtendedPrice: 144351.35, Freight: 1430.27, Discontinued: false, Region: `North East`, Address: `145 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 90152 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `154 Main Street`, ShipCity: `Miami`, ShipPostalCode: 90080, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1182, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `154 Main Street, Miami, USA, 90080`, Salesperson: `Nancy Jefferson`, OrderID: 1234, OrderDate: `3/21/2022`, ProductID: 111, ProductName: `IPad`, UnitPrice: 16610.78, Quantity: 2, ExtendedPrice: 33221.56, Freight: 1350.78, Discontinued: false, Region: `South East`, Address: `154 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 90080 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `166 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70090, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1183, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `166 Market Street, Huston, USA, 70090`, Salesperson: `Ben Watson`, OrderID: 1362, OrderDate: `5/2/2022`, ProductID: 122, ProductName: `Mac Book Air`, UnitPrice: 6870.64, Quantity: 4, ExtendedPrice: 27482.56, Freight: 750.64, Discontinued: false, Region: `North East`, Address: `166 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70090 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `180 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90169, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1184, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `180 Market Street, Miami, USA, 90169`, Salesperson: `Pamela Black`, OrderID: 1698, OrderDate: `1/18/2022`, ProductID: 129, ProductName: `IPad`, UnitPrice: 10960.71, Quantity: 5, ExtendedPrice: 54803.55, Freight: 1530.71, Discontinued: false, Region: `West`, Address: `180 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90169 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `169 Main Street`, ShipCity: `Huston`, ShipPostalCode: 50114, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1185, CustomerName: `Nancy Madison`, CustomerFirstName: `Nancy`, CustomerLastName: `Madison`, CustomerAddress: `169 Main Street, Huston, USA, 50114`, Salesperson: `Martin Smith`, OrderID: 1458, OrderDate: `6/15/2022`, ProductID: 183, ProductName: `IPhone`, UnitPrice: 16380.23, Quantity: 2, ExtendedPrice: 32760.46, Freight: 1990.23, Discontinued: false, Region: `West`, Address: `169 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 50114 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `132 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90064, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1186, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `132 Market Street, Miami, USA, 90064`, Salesperson: `Nancy Jackson`, OrderID: 1563, OrderDate: `6/17/2022`, ProductID: 193, ProductName: `Samsung Note`, UnitPrice: 25940.61, Quantity: 4, ExtendedPrice: 103762.44, Freight: 970.61, Discontinued: false, Region: `West`, Address: `132 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90064 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `107 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50110, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1187, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `107 Wall Street, Los Angeles, USA, 50110`, Salesperson: `Nancy Jefferson`, OrderID: 1934, OrderDate: `6/5/2022`, ProductID: 110, ProductName: `Samsung Note`, UnitPrice: 5360.47, Quantity: 3, ExtendedPrice: 16081.41, Freight: 1680.47, Discontinued: false, Region: `North East`, Address: `107 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50110 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `170 Wall Street`, ShipCity: `New York`, ShipPostalCode: 50149, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1188, CustomerName: `Pamela Black`, CustomerFirstName: `Pamela`, CustomerLastName: `Black`, CustomerAddress: `170 Wall Street, New York, USA, 50149`, Salesperson: `Mike Jefferson`, OrderID: 1880, OrderDate: `12/7/2022`, ProductID: 137, ProductName: `IPhone`, UnitPrice: 19560.62, Quantity: 4, ExtendedPrice: 78242.48, Freight: 680.62, Discontinued: false, Region: `West`, Address: `170 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 50149 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `152 Wall Street`, ShipCity: `New York`, ShipPostalCode: 50085, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1189, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `152 Wall Street, New York, USA, 50085`, Salesperson: `Anna Jackson`, OrderID: 1159, OrderDate: `5/18/2022`, ProductID: 167, ProductName: `IPad`, UnitPrice: 19270.25, Quantity: 2, ExtendedPrice: 38540.5, Freight: 1050.25, Discontinued: true, Region: `North East`, Address: `152 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 50085 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `186 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60146, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1190, CustomerName: `Mike Watson`, CustomerFirstName: `Mike`, CustomerLastName: `Watson`, CustomerAddress: `186 Wall Street, Los Angeles, USA, 60146`, Salesperson: `Nancy Madison`, OrderID: 1960, OrderDate: `3/2/2022`, ProductID: 167, ProductName: `Samsung Galaxy 22`, UnitPrice: 22090.53, Quantity: 3, ExtendedPrice: 66271.59, Freight: 1790.53, Discontinued: false, Region: `West`, Address: `186 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60146 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `194 Wall Street`, ShipCity: `New York`, ShipPostalCode: 50170, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1191, CustomerName: `Nancy Madison`, CustomerFirstName: `Nancy`, CustomerLastName: `Madison`, CustomerAddress: `194 Wall Street, New York, USA, 50170`, Salesperson: `Max Watson`, OrderID: 1658, OrderDate: `9/1/2022`, ProductID: 156, ProductName: `Samsung Galaxy 22`, UnitPrice: 27450.8, Quantity: 4, ExtendedPrice: 109803.2, Freight: 270.8, Discontinued: false, Region: `West`, Address: `194 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 50170 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `172 Main Street`, ShipCity: `New York`, ShipPostalCode: 70191, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1192, CustomerName: `Ben Smith`, CustomerFirstName: `Ben`, CustomerLastName: `Smith`, CustomerAddress: `172 Main Street, New York, USA, 70191`, Salesperson: `Pamela Madison`, OrderID: 1225, OrderDate: `3/22/2022`, ProductID: 170, ProductName: `Samsung Galaxy 22`, UnitPrice: 21150.84, Quantity: 5, ExtendedPrice: 105754.2, Freight: 1230.84, Discontinued: false, Region: `West`, Address: `172 Main Street`, City: `New York`, Country: `USA`, PostalCode: 70191 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `108 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70146, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1193, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `108 Market Street, Los Angeles, USA, 70146`, Salesperson: `Pamela Black`, OrderID: 1886, OrderDate: `8/20/2022`, ProductID: 126, ProductName: `IPhone`, UnitPrice: 6100.73, Quantity: 2, ExtendedPrice: 12201.46, Freight: 1340.73, Discontinued: false, Region: `South East`, Address: `108 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70146 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `109 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90083, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1194, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `109 Wall Street, Los Angeles, USA, 90083`, Salesperson: `Max Smith`, OrderID: 1191, OrderDate: `5/9/2022`, ProductID: 179, ProductName: `Samsung Galaxy 22`, UnitPrice: 20190.35, Quantity: 5, ExtendedPrice: 100951.75, Freight: 640.35, Discontinued: false, Region: `West`, Address: `109 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90083 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `121 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70102, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1195, CustomerName: `Max Smith`, CustomerFirstName: `Max`, CustomerLastName: `Smith`, CustomerAddress: `121 Market Street, Philadelphia, USA, 70102`, Salesperson: `Ben Black`, OrderID: 1051, OrderDate: `5/21/2022`, ProductID: 192, ProductName: `Mac Book Pro`, UnitPrice: 21730.32, Quantity: 5, ExtendedPrice: 108651.6, Freight: 1030.32, Discontinued: false, Region: `North East`, Address: `121 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70102 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `104 Wall Street`, ShipCity: `New York`, ShipPostalCode: 90066, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1196, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `104 Wall Street, New York, USA, 90066`, Salesperson: `Ben Watson`, OrderID: 1385, OrderDate: `2/2/2022`, ProductID: 182, ProductName: `IPad`, UnitPrice: 26120.45, Quantity: 4, ExtendedPrice: 104481.8, Freight: 1930.45, Discontinued: false, Region: `North East`, Address: `104 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 90066 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `126 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60091, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1197, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `126 Market Street, Philadelphia, USA, 60091`, Salesperson: `Anna Madison`, OrderID: 1675, OrderDate: `6/22/2022`, ProductID: 174, ProductName: `IPad`, UnitPrice: 13240.35, Quantity: 4, ExtendedPrice: 52961.4, Freight: 890.35, Discontinued: false, Region: `South East`, Address: `126 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60091 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `139 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70063, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1198, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `139 Main Street, Los Angeles, USA, 70063`, Salesperson: `Pamela Black`, OrderID: 1997, OrderDate: `11/17/2022`, ProductID: 200, ProductName: `IPhone`, UnitPrice: 8400.83, Quantity: 5, ExtendedPrice: 42004.15, Freight: 1340.83, Discontinued: false, Region: `West`, Address: `139 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70063 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `133 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 70071, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1199, CustomerName: `Mike Smith`, CustomerFirstName: `Mike`, CustomerLastName: `Smith`, CustomerAddress: `133 Wall Street, Miami, USA, 70071`, Salesperson: `James Watson`, OrderID: 1641, OrderDate: `11/12/2022`, ProductID: 147, ProductName: `Samsung Note`, UnitPrice: 10150.31, Quantity: 3, ExtendedPrice: 30450.93, Freight: 720.31, Discontinued: true, Region: `South East`, Address: `133 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 70071 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `166 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60137, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1200, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `166 Main Street, Miami, USA, 60137`, Salesperson: `Ben Madison`, OrderID: 1418, OrderDate: `11/8/2022`, ProductID: 135, ProductName: `IPhone`, UnitPrice: 9410.46, Quantity: 2, ExtendedPrice: 18820.92, Freight: 970.46, Discontinued: false, Region: `West`, Address: `166 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60137 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `143 Main Street`, ShipCity: `Miami`, ShipPostalCode: 70069, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1201, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `143 Main Street, Miami, USA, 70069`, Salesperson: `Anna Watson`, OrderID: 1545, OrderDate: `6/24/2022`, ProductID: 190, ProductName: `Mac Book Pro`, UnitPrice: 5030.78, Quantity: 3, ExtendedPrice: 15092.34, Freight: 1630.78, Discontinued: false, Region: `North East`, Address: `143 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 70069 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `106 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50097, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1202, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `106 Wall Street, Los Angeles, USA, 50097`, Salesperson: `James Jackson`, OrderID: 1493, OrderDate: `7/24/2022`, ProductID: 124, ProductName: `Samsung Note`, UnitPrice: 6390.72, Quantity: 5, ExtendedPrice: 31953.6, Freight: 1960.72, Discontinued: false, Region: `North East`, Address: `106 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50097 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `143 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50052, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1203, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `143 Market Street, Philadelphia, USA, 50052`, Salesperson: `Mike Jefferson`, OrderID: 1495, OrderDate: `2/14/2022`, ProductID: 179, ProductName: `Mac Book Pro`, UnitPrice: 16770.46, Quantity: 5, ExtendedPrice: 83852.3, Freight: 420.46, Discontinued: false, Region: `North East`, Address: `143 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50052 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `174 Wall Street`, ShipCity: `New York`, ShipPostalCode: 60127, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1204, CustomerName: `Nancy Smith`, CustomerFirstName: `Nancy`, CustomerLastName: `Smith`, CustomerAddress: `174 Wall Street, New York, USA, 60127`, Salesperson: `Max Watson`, OrderID: 1123, OrderDate: `11/20/2022`, ProductID: 186, ProductName: `Mac Book Air`, UnitPrice: 20930.48, Quantity: 4, ExtendedPrice: 83721.92, Freight: 950.48, Discontinued: false, Region: `South East`, Address: `174 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 60127 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `123 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60111, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1205, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `123 Wall Street, Los Angeles, USA, 60111`, Salesperson: `Pamela Jefferson`, OrderID: 1342, OrderDate: `12/8/2022`, ProductID: 140, ProductName: `Samsung Galaxy 22`, UnitPrice: 27010.34, Quantity: 3, ExtendedPrice: 81031.02, Freight: 1470.34, Discontinued: false, Region: `West`, Address: `123 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60111 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `166 Market Street`, ShipCity: `Miami`, ShipPostalCode: 50102, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1206, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `166 Market Street, Miami, USA, 50102`, Salesperson: `Ben Madison`, OrderID: 1017, OrderDate: `10/2/2022`, ProductID: 186, ProductName: `Samsung Galaxy 22`, UnitPrice: 12810.79, Quantity: 5, ExtendedPrice: 64053.95, Freight: 1990.79, Discontinued: false, Region: `North East`, Address: `166 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 50102 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `193 Main Street`, ShipCity: `Huston`, ShipPostalCode: 80187, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1207, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `193 Main Street, Huston, USA, 80187`, Salesperson: `Mike Jefferson`, OrderID: 1558, OrderDate: `11/12/2022`, ProductID: 194, ProductName: `Mac Book Pro`, UnitPrice: 26210.45, Quantity: 2, ExtendedPrice: 52420.9, Freight: 1110.45, Discontinued: false, Region: `North East`, Address: `193 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 80187 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `137 Main Street`, ShipCity: `Miami`, ShipPostalCode: 80111, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1208, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `137 Main Street, Miami, USA, 80111`, Salesperson: `Mike Watson`, OrderID: 1466, OrderDate: `11/18/2022`, ProductID: 189, ProductName: `Mac Book Air`, UnitPrice: 6190.57, Quantity: 3, ExtendedPrice: 18571.71, Freight: 1810.57, Discontinued: false, Region: `West`, Address: `137 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 80111 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `122 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80088, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1209, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `122 Main Street, Philadelphia, USA, 80088`, Salesperson: `Ben Jefferson`, OrderID: 1539, OrderDate: `11/13/2022`, ProductID: 131, ProductName: `IPhone`, UnitPrice: 21280.22, Quantity: 4, ExtendedPrice: 85120.88, Freight: 760.22, Discontinued: true, Region: `North East`, Address: `122 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80088 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `115 Main Street`, ShipCity: `New York`, ShipPostalCode: 80079, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1210, CustomerName: `Anna Jefferson`, CustomerFirstName: `Anna`, CustomerLastName: `Jefferson`, CustomerAddress: `115 Main Street, New York, USA, 80079`, Salesperson: `Max Jefferson`, OrderID: 1411, OrderDate: `11/22/2022`, ProductID: 135, ProductName: `Samsung Galaxy 22`, UnitPrice: 13700.71, Quantity: 3, ExtendedPrice: 41102.13, Freight: 1730.71, Discontinued: false, Region: `South East`, Address: `115 Main Street`, City: `New York`, Country: `USA`, PostalCode: 80079 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `114 Main Street`, ShipCity: `New York`, ShipPostalCode: 50137, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1211, CustomerName: `Mike Smith`, CustomerFirstName: `Mike`, CustomerLastName: `Smith`, CustomerAddress: `114 Main Street, New York, USA, 50137`, Salesperson: `Nancy Smith`, OrderID: 1890, OrderDate: `8/5/2022`, ProductID: 169, ProductName: `Samsung Galaxy 22`, UnitPrice: 11320.48, Quantity: 3, ExtendedPrice: 33961.44, Freight: 930.48, Discontinued: false, Region: `West`, Address: `114 Main Street`, City: `New York`, Country: `USA`, PostalCode: 50137 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `130 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 90082, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1212, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `130 Wall Street, Miami, USA, 90082`, Salesperson: `Nancy Madison`, OrderID: 1783, OrderDate: `9/1/2022`, ProductID: 109, ProductName: `IPhone`, UnitPrice: 24340.75, Quantity: 5, ExtendedPrice: 121703.75, Freight: 490.75, Discontinued: false, Region: `North East`, Address: `130 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 90082 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `140 Main Street`, ShipCity: `New York`, ShipPostalCode: 80095, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1213, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `140 Main Street, New York, USA, 80095`, Salesperson: `Pamela Watson`, OrderID: 1101, OrderDate: `5/25/2022`, ProductID: 101, ProductName: `Mac Book Air`, UnitPrice: 29980.24, Quantity: 4, ExtendedPrice: 119920.96, Freight: 1190.24, Discontinued: false, Region: `South East`, Address: `140 Main Street`, City: `New York`, Country: `USA`, PostalCode: 80095 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `165 Main Street`, ShipCity: `Huston`, ShipPostalCode: 90200, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1214, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `165 Main Street, Huston, USA, 90200`, Salesperson: `Max Watson`, OrderID: 1932, OrderDate: `2/10/2022`, ProductID: 159, ProductName: `Mac Book Air`, UnitPrice: 23460.59, Quantity: 4, ExtendedPrice: 93842.36, Freight: 710.59, Discontinued: false, Region: `South East`, Address: `165 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 90200 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `154 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70200, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1215, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `154 Market Street, Los Angeles, USA, 70200`, Salesperson: `Mike Black`, OrderID: 1514, OrderDate: `10/8/2022`, ProductID: 148, ProductName: `Samsung Note`, UnitPrice: 29540.27, Quantity: 4, ExtendedPrice: 118161.08, Freight: 1960.27, Discontinued: false, Region: `North East`, Address: `154 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70200 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `113 Market Street`, ShipCity: `New York`, ShipPostalCode: 50127, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1216, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `113 Market Street, New York, USA, 50127`, Salesperson: `James Jefferson`, OrderID: 1736, OrderDate: `10/21/2022`, ProductID: 188, ProductName: `IPad`, UnitPrice: 15350.27, Quantity: 4, ExtendedPrice: 61401.08, Freight: 540.27, Discontinued: false, Region: `South East`, Address: `113 Market Street`, City: `New York`, Country: `USA`, PostalCode: 50127 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `153 Main Street`, ShipCity: `Huston`, ShipPostalCode: 80064, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1217, CustomerName: `James Jackson`, CustomerFirstName: `James`, CustomerLastName: `Jackson`, CustomerAddress: `153 Main Street, Huston, USA, 80064`, Salesperson: `Mike Jackson`, OrderID: 1978, OrderDate: `12/25/2022`, ProductID: 125, ProductName: `IPad`, UnitPrice: 15880.31, Quantity: 3, ExtendedPrice: 47640.93, Freight: 800.31, Discontinued: false, Region: `North East`, Address: `153 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 80064 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `107 Main Street`, ShipCity: `Miami`, ShipPostalCode: 50196, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1218, CustomerName: `Mike Smith`, CustomerFirstName: `Mike`, CustomerLastName: `Smith`, CustomerAddress: `107 Main Street, Miami, USA, 50196`, Salesperson: `Martin Jackson`, OrderID: 1324, OrderDate: `7/18/2022`, ProductID: 188, ProductName: `Mac Book Air`, UnitPrice: 26990.38, Quantity: 4, ExtendedPrice: 107961.52, Freight: 610.38, Discontinued: false, Region: `South East`, Address: `107 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 50196 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `140 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 70154, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1219, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `140 Wall Street, Miami, USA, 70154`, Salesperson: `Nancy Madison`, OrderID: 1307, OrderDate: `4/19/2022`, ProductID: 114, ProductName: `IPhone`, UnitPrice: 18300.65, Quantity: 4, ExtendedPrice: 73202.6, Freight: 800.65, Discontinued: true, Region: `West`, Address: `140 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 70154 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `158 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50154, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1220, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `158 Market Street, Los Angeles, USA, 50154`, Salesperson: `James Black`, OrderID: 1808, OrderDate: `3/18/2022`, ProductID: 172, ProductName: `Mac Book Air`, UnitPrice: 27460.67, Quantity: 3, ExtendedPrice: 82382.01, Freight: 1220.67, Discontinued: false, Region: `North East`, Address: `158 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50154 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `116 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90170, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1221, CustomerName: `Pamela Smith`, CustomerFirstName: `Pamela`, CustomerLastName: `Smith`, CustomerAddress: `116 Main Street, Los Angeles, USA, 90170`, Salesperson: `James Jefferson`, OrderID: 1481, OrderDate: `5/22/2022`, ProductID: 177, ProductName: `IPhone`, UnitPrice: 23770.26, Quantity: 2, ExtendedPrice: 47540.52, Freight: 480.26, Discontinued: false, Region: `North East`, Address: `116 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90170 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `124 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 50137, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1222, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `124 Wall Street, Huston, USA, 50137`, Salesperson: `Martin Watson`, OrderID: 1874, OrderDate: `10/1/2022`, ProductID: 102, ProductName: `Mac Book Air`, UnitPrice: 12080.68, Quantity: 5, ExtendedPrice: 60403.4, Freight: 400.68, Discontinued: false, Region: `North East`, Address: `124 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 50137 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `197 Main Street`, ShipCity: `New York`, ShipPostalCode: 60174, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1223, CustomerName: `Nancy Smith`, CustomerFirstName: `Nancy`, CustomerLastName: `Smith`, CustomerAddress: `197 Main Street, New York, USA, 60174`, Salesperson: `Nancy Jefferson`, OrderID: 1377, OrderDate: `10/24/2022`, ProductID: 123, ProductName: `Mac Book Air`, UnitPrice: 10520.88, Quantity: 4, ExtendedPrice: 42083.52, Freight: 800.88, Discontinued: false, Region: `South East`, Address: `197 Main Street`, City: `New York`, Country: `USA`, PostalCode: 60174 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `192 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 80134, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1224, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `192 Wall Street, Miami, USA, 80134`, Salesperson: `James Madison`, OrderID: 1691, OrderDate: `6/13/2022`, ProductID: 123, ProductName: `IPhone`, UnitPrice: 11090.82, Quantity: 2, ExtendedPrice: 22181.64, Freight: 910.82, Discontinued: false, Region: `South East`, Address: `192 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 80134 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `111 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80054, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1225, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `111 Market Street, Huston, USA, 80054`, Salesperson: `Martin Jackson`, OrderID: 1242, OrderDate: `4/6/2022`, ProductID: 180, ProductName: `IPhone`, UnitPrice: 8180.25, Quantity: 5, ExtendedPrice: 40901.25, Freight: 510.25, Discontinued: false, Region: `North East`, Address: `111 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80054 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `106 Market Street`, ShipCity: `New York`, ShipPostalCode: 60139, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1226, CustomerName: `Nancy Jackson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jackson`, CustomerAddress: `106 Market Street, New York, USA, 60139`, Salesperson: `James Madison`, OrderID: 1745, OrderDate: `1/18/2022`, ProductID: 115, ProductName: `IPhone`, UnitPrice: 6570.23, Quantity: 5, ExtendedPrice: 32851.15, Freight: 840.23, Discontinued: false, Region: `West`, Address: `106 Market Street`, City: `New York`, Country: `USA`, PostalCode: 60139 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `198 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60058, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1227, CustomerName: `Nancy Jackson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jackson`, CustomerAddress: `198 Main Street, Los Angeles, USA, 60058`, Salesperson: `James Madison`, OrderID: 1111, OrderDate: `10/11/2022`, ProductID: 132, ProductName: `IPhone`, UnitPrice: 10970.23, Quantity: 3, ExtendedPrice: 32910.69, Freight: 1670.23, Discontinued: false, Region: `North East`, Address: `198 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60058 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `138 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 50133, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1228, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `138 Wall Street, Huston, USA, 50133`, Salesperson: `Ben Madison`, OrderID: 1182, OrderDate: `12/18/2022`, ProductID: 184, ProductName: `Mac Book Air`, UnitPrice: 27020.67, Quantity: 3, ExtendedPrice: 81062.01, Freight: 1750.67, Discontinued: false, Region: `South East`, Address: `138 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 50133 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `198 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50182, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1229, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `198 Market Street, Los Angeles, USA, 50182`, Salesperson: `Ben Jackson`, OrderID: 1252, OrderDate: `10/7/2022`, ProductID: 146, ProductName: `IPad`, UnitPrice: 21910.34, Quantity: 5, ExtendedPrice: 109551.7, Freight: 840.34, Discontinued: true, Region: `North East`, Address: `198 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50182 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `141 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70058, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1230, CustomerName: `James Jackson`, CustomerFirstName: `James`, CustomerLastName: `Jackson`, CustomerAddress: `141 Market Street, Philadelphia, USA, 70058`, Salesperson: `Martin Watson`, OrderID: 1635, OrderDate: `6/1/2022`, ProductID: 196, ProductName: `Mac Book Air`, UnitPrice: 16430.54, Quantity: 2, ExtendedPrice: 32861.08, Freight: 1420.54, Discontinued: false, Region: `North East`, Address: `141 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70058 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `107 Market Street`, ShipCity: `New York`, ShipPostalCode: 80108, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1231, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `107 Market Street, New York, USA, 80108`, Salesperson: `Mike Smith`, OrderID: 1922, OrderDate: `10/6/2022`, ProductID: 154, ProductName: `Mac Book Air`, UnitPrice: 8920.46, Quantity: 5, ExtendedPrice: 44602.3, Freight: 1160.46, Discontinued: false, Region: `West`, Address: `107 Market Street`, City: `New York`, Country: `USA`, PostalCode: 80108 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `166 Main Street`, ShipCity: `New York`, ShipPostalCode: 60199, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1232, CustomerName: `Martin Watson`, CustomerFirstName: `Martin`, CustomerLastName: `Watson`, CustomerAddress: `166 Main Street, New York, USA, 60199`, Salesperson: `Anna Smith`, OrderID: 1759, OrderDate: `3/10/2022`, ProductID: 145, ProductName: `Samsung Galaxy 22`, UnitPrice: 22420.27, Quantity: 5, ExtendedPrice: 112101.35, Freight: 1900.27, Discontinued: false, Region: `North East`, Address: `166 Main Street`, City: `New York`, Country: `USA`, PostalCode: 60199 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `188 Main Street`, ShipCity: `New York`, ShipPostalCode: 90082, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1233, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `188 Main Street, New York, USA, 90082`, Salesperson: `Ben Black`, OrderID: 1172, OrderDate: `11/9/2022`, ProductID: 148, ProductName: `Samsung Note`, UnitPrice: 22260.33, Quantity: 5, ExtendedPrice: 111301.65, Freight: 1530.33, Discontinued: false, Region: `West`, Address: `188 Main Street`, City: `New York`, Country: `USA`, PostalCode: 90082 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `168 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 80160, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1234, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `168 Wall Street, Miami, USA, 80160`, Salesperson: `Max Black`, OrderID: 1855, OrderDate: `9/9/2022`, ProductID: 195, ProductName: `Samsung Note`, UnitPrice: 11120.68, Quantity: 5, ExtendedPrice: 55603.4, Freight: 540.68, Discontinued: false, Region: `South East`, Address: `168 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 80160 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `151 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50192, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1235, CustomerName: `James Madison`, CustomerFirstName: `James`, CustomerLastName: `Madison`, CustomerAddress: `151 Wall Street, Philadelphia, USA, 50192`, Salesperson: `Pamela Watson`, OrderID: 1253, OrderDate: `9/24/2022`, ProductID: 153, ProductName: `Samsung Galaxy 22`, UnitPrice: 17650.73, Quantity: 5, ExtendedPrice: 88253.65, Freight: 1010.73, Discontinued: false, Region: `North East`, Address: `151 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50192 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `131 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60171, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1236, CustomerName: `Anna Jefferson`, CustomerFirstName: `Anna`, CustomerLastName: `Jefferson`, CustomerAddress: `131 Wall Street, Philadelphia, USA, 60171`, Salesperson: `James Jefferson`, OrderID: 1711, OrderDate: `9/12/2022`, ProductID: 192, ProductName: `IPhone`, UnitPrice: 18980.42, Quantity: 3, ExtendedPrice: 56941.26, Freight: 1070.42, Discontinued: false, Region: `North East`, Address: `131 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60171 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `101 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70109, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1237, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `101 Market Street, Huston, USA, 70109`, Salesperson: `Nancy Smith`, OrderID: 1155, OrderDate: `9/1/2022`, ProductID: 174, ProductName: `Mac Book Pro`, UnitPrice: 22330.35, Quantity: 2, ExtendedPrice: 44660.7, Freight: 250.35, Discontinued: false, Region: `West`, Address: `101 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70109 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `145 Main Street`, ShipCity: `New York`, ShipPostalCode: 50126, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1238, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `145 Main Street, New York, USA, 50126`, Salesperson: `Mike Watson`, OrderID: 1656, OrderDate: `3/7/2022`, ProductID: 139, ProductName: `IPhone`, UnitPrice: 9890.72, Quantity: 3, ExtendedPrice: 29672.16, Freight: 1890.72, Discontinued: false, Region: `West`, Address: `145 Main Street`, City: `New York`, Country: `USA`, PostalCode: 50126 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `190 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60055, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1239, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `190 Wall Street, Huston, USA, 60055`, Salesperson: `Mike Smith`, OrderID: 1192, OrderDate: `3/12/2022`, ProductID: 151, ProductName: `Samsung Galaxy 22`, UnitPrice: 16510.6, Quantity: 5, ExtendedPrice: 82553, Freight: 260.6, Discontinued: true, Region: `South East`, Address: `190 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60055 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `114 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50122, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1240, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `114 Market Street, Philadelphia, USA, 50122`, Salesperson: `James Madison`, OrderID: 1997, OrderDate: `8/3/2022`, ProductID: 195, ProductName: `Mac Book Pro`, UnitPrice: 20770.42, Quantity: 4, ExtendedPrice: 83081.68, Freight: 920.42, Discontinued: false, Region: `North East`, Address: `114 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50122 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `184 Main Street`, ShipCity: `Miami`, ShipPostalCode: 50147, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1241, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `184 Main Street, Miami, USA, 50147`, Salesperson: `Martin Madison`, OrderID: 1944, OrderDate: `7/11/2022`, ProductID: 105, ProductName: `Samsung Note`, UnitPrice: 22970.54, Quantity: 3, ExtendedPrice: 68911.62, Freight: 2000.54, Discontinued: false, Region: `South East`, Address: `184 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 50147 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `140 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50058, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1242, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `140 Wall Street, Los Angeles, USA, 50058`, Salesperson: `Max Madison`, OrderID: 1076, OrderDate: `12/1/2022`, ProductID: 108, ProductName: `IPhone`, UnitPrice: 5950.69, Quantity: 5, ExtendedPrice: 29753.45, Freight: 1440.69, Discontinued: false, Region: `South East`, Address: `140 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50058 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `178 Market Street`, ShipCity: `New York`, ShipPostalCode: 60194, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1243, CustomerName: `James Madison`, CustomerFirstName: `James`, CustomerLastName: `Madison`, CustomerAddress: `178 Market Street, New York, USA, 60194`, Salesperson: `James Madison`, OrderID: 1076, OrderDate: `6/25/2022`, ProductID: 176, ProductName: `IPhone`, UnitPrice: 17080.21, Quantity: 2, ExtendedPrice: 34160.42, Freight: 1200.21, Discontinued: false, Region: `West`, Address: `178 Market Street`, City: `New York`, Country: `USA`, PostalCode: 60194 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `179 Main Street`, ShipCity: `Huston`, ShipPostalCode: 70085, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1244, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `179 Main Street, Huston, USA, 70085`, Salesperson: `Ben Jackson`, OrderID: 1070, OrderDate: `5/7/2022`, ProductID: 101, ProductName: `IPhone`, UnitPrice: 19310.75, Quantity: 2, ExtendedPrice: 38621.5, Freight: 1270.75, Discontinued: false, Region: `West`, Address: `179 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 70085 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `169 Market Street`, ShipCity: `Miami`, ShipPostalCode: 70087, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1245, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `169 Market Street, Miami, USA, 70087`, Salesperson: `Nancy Black`, OrderID: 1469, OrderDate: `8/22/2022`, ProductID: 193, ProductName: `Samsung Note`, UnitPrice: 25420.4, Quantity: 2, ExtendedPrice: 50840.8, Freight: 1690.4, Discontinued: false, Region: `North East`, Address: `169 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 70087 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `108 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90128, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1246, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `108 Wall Street, Los Angeles, USA, 90128`, Salesperson: `Pamela Smith`, OrderID: 1948, OrderDate: `4/25/2022`, ProductID: 141, ProductName: `Samsung Galaxy 22`, UnitPrice: 19070.55, Quantity: 3, ExtendedPrice: 57211.65, Freight: 280.55, Discontinued: false, Region: `South East`, Address: `108 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90128 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `195 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80141, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1247, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `195 Market Street, Philadelphia, USA, 80141`, Salesperson: `Martin Smith`, OrderID: 1116, OrderDate: `1/1/2022`, ProductID: 162, ProductName: `Samsung Galaxy 22`, UnitPrice: 22190.27, Quantity: 5, ExtendedPrice: 110951.35, Freight: 1830.27, Discontinued: false, Region: `North East`, Address: `195 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80141 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `142 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50163, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1248, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `142 Main Street, Los Angeles, USA, 50163`, Salesperson: `Pamela Jefferson`, OrderID: 1640, OrderDate: `5/1/2022`, ProductID: 153, ProductName: `Samsung Note`, UnitPrice: 7690.79, Quantity: 3, ExtendedPrice: 23072.37, Freight: 1730.79, Discontinued: false, Region: `South East`, Address: `142 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50163 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `177 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80155, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1249, CustomerName: `Mike Watson`, CustomerFirstName: `Mike`, CustomerLastName: `Watson`, CustomerAddress: `177 Market Street, Philadelphia, USA, 80155`, Salesperson: `Anna Jefferson`, OrderID: 1748, OrderDate: `9/2/2022`, ProductID: 186, ProductName: `Mac Book Air`, UnitPrice: 25230.84, Quantity: 4, ExtendedPrice: 100923.36, Freight: 670.84, Discontinued: true, Region: `South East`, Address: `177 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80155 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `175 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80141, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1250, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `175 Market Street, Los Angeles, USA, 80141`, Salesperson: `Martin Black`, OrderID: 1251, OrderDate: `7/5/2022`, ProductID: 140, ProductName: `Mac Book Pro`, UnitPrice: 25960.45, Quantity: 2, ExtendedPrice: 51920.9, Freight: 260.45, Discontinued: false, Region: `North East`, Address: `175 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80141 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `110 Market Street`, ShipCity: `New York`, ShipPostalCode: 90174, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1251, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `110 Market Street, New York, USA, 90174`, Salesperson: `Pamela Black`, OrderID: 1397, OrderDate: `7/2/2022`, ProductID: 141, ProductName: `Samsung Note`, UnitPrice: 22150.67, Quantity: 3, ExtendedPrice: 66452.01, Freight: 640.67, Discontinued: false, Region: `North East`, Address: `110 Market Street`, City: `New York`, Country: `USA`, PostalCode: 90174 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `121 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70083, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1252, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `121 Wall Street, Los Angeles, USA, 70083`, Salesperson: `Ben Jefferson`, OrderID: 1938, OrderDate: `1/20/2022`, ProductID: 171, ProductName: `Samsung Galaxy 22`, UnitPrice: 9220.74, Quantity: 4, ExtendedPrice: 36882.96, Freight: 1030.74, Discontinued: false, Region: `South East`, Address: `121 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70083 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `122 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70122, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1253, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `122 Wall Street, Philadelphia, USA, 70122`, Salesperson: `Mike Watson`, OrderID: 1608, OrderDate: `2/9/2022`, ProductID: 109, ProductName: `Samsung Note`, UnitPrice: 11240.75, Quantity: 2, ExtendedPrice: 22481.5, Freight: 1010.75, Discontinued: false, Region: `West`, Address: `122 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70122 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `151 Main Street`, ShipCity: `Huston`, ShipPostalCode: 50057, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1254, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `151 Main Street, Huston, USA, 50057`, Salesperson: `Martin Watson`, OrderID: 1217, OrderDate: `8/4/2022`, ProductID: 185, ProductName: `Mac Book Pro`, UnitPrice: 16680.55, Quantity: 3, ExtendedPrice: 50041.65, Freight: 1710.55, Discontinued: false, Region: `North East`, Address: `151 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 50057 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `120 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 50131, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1255, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `120 Wall Street, Huston, USA, 50131`, Salesperson: `Ben Jackson`, OrderID: 1661, OrderDate: `5/1/2022`, ProductID: 190, ProductName: `Mac Book Air`, UnitPrice: 21450.85, Quantity: 5, ExtendedPrice: 107254.25, Freight: 1350.85, Discontinued: false, Region: `South East`, Address: `120 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 50131 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `134 Main Street`, ShipCity: `Huston`, ShipPostalCode: 90060, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1256, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `134 Main Street, Huston, USA, 90060`, Salesperson: `James Madison`, OrderID: 1766, OrderDate: `11/11/2022`, ProductID: 134, ProductName: `Mac Book Air`, UnitPrice: 12850.63, Quantity: 3, ExtendedPrice: 38551.89, Freight: 1790.63, Discontinued: false, Region: `West`, Address: `134 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 90060 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `150 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60151, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1257, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `150 Wall Street, Huston, USA, 60151`, Salesperson: `Martin Black`, OrderID: 1321, OrderDate: `8/4/2022`, ProductID: 125, ProductName: `Samsung Note`, UnitPrice: 29190.24, Quantity: 4, ExtendedPrice: 116760.96, Freight: 680.24, Discontinued: false, Region: `North East`, Address: `150 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60151 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `155 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60121, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1258, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `155 Wall Street, Huston, USA, 60121`, Salesperson: `Max Jackson`, OrderID: 1872, OrderDate: `2/20/2022`, ProductID: 188, ProductName: `Samsung Note`, UnitPrice: 22750.45, Quantity: 3, ExtendedPrice: 68251.35, Freight: 840.45, Discontinued: false, Region: `West`, Address: `155 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60121 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `184 Market Street`, ShipCity: `New York`, ShipPostalCode: 90156, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1259, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `184 Market Street, New York, USA, 90156`, Salesperson: `James Watson`, OrderID: 1828, OrderDate: `5/25/2022`, ProductID: 191, ProductName: `Samsung Galaxy 22`, UnitPrice: 29760.3, Quantity: 2, ExtendedPrice: 59520.6, Freight: 1960.3, Discontinued: true, Region: `North East`, Address: `184 Market Street`, City: `New York`, Country: `USA`, PostalCode: 90156 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `133 Market Street`, ShipCity: `Huston`, ShipPostalCode: 50074, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1260, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `133 Market Street, Huston, USA, 50074`, Salesperson: `Mike Black`, OrderID: 1966, OrderDate: `6/18/2022`, ProductID: 160, ProductName: `Mac Book Air`, UnitPrice: 7450.44, Quantity: 5, ExtendedPrice: 37252.2, Freight: 590.44, Discontinued: false, Region: `West`, Address: `133 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 50074 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `154 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70052, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1261, CustomerName: `Martin Black`, CustomerFirstName: `Martin`, CustomerLastName: `Black`, CustomerAddress: `154 Main Street, Philadelphia, USA, 70052`, Salesperson: `Ben Jackson`, OrderID: 1421, OrderDate: `9/17/2022`, ProductID: 127, ProductName: `Mac Book Air`, UnitPrice: 23000.47, Quantity: 2, ExtendedPrice: 46000.94, Freight: 550.47, Discontinued: false, Region: `South East`, Address: `154 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70052 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `114 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90174, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1262, CustomerName: `Max Smith`, CustomerFirstName: `Max`, CustomerLastName: `Smith`, CustomerAddress: `114 Wall Street, Philadelphia, USA, 90174`, Salesperson: `Pamela Smith`, OrderID: 1192, OrderDate: `12/4/2022`, ProductID: 105, ProductName: `Samsung Note`, UnitPrice: 19790.26, Quantity: 2, ExtendedPrice: 39580.52, Freight: 1150.26, Discontinued: false, Region: `South East`, Address: `114 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90174 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `154 Wall Street`, ShipCity: `New York`, ShipPostalCode: 90162, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1263, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `154 Wall Street, New York, USA, 90162`, Salesperson: `Nancy Smith`, OrderID: 1539, OrderDate: `7/16/2022`, ProductID: 139, ProductName: `Samsung Note`, UnitPrice: 11830.34, Quantity: 2, ExtendedPrice: 23660.68, Freight: 1930.34, Discontinued: false, Region: `West`, Address: `154 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 90162 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `140 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70136, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1264, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `140 Wall Street, Los Angeles, USA, 70136`, Salesperson: `Mike Jackson`, OrderID: 1271, OrderDate: `10/7/2022`, ProductID: 124, ProductName: `Samsung Note`, UnitPrice: 21020.81, Quantity: 2, ExtendedPrice: 42041.62, Freight: 1420.81, Discontinued: false, Region: `West`, Address: `140 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70136 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `185 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60116, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1265, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `185 Main Street, Philadelphia, USA, 60116`, Salesperson: `James Watson`, OrderID: 1090, OrderDate: `9/11/2022`, ProductID: 160, ProductName: `IPhone`, UnitPrice: 16070.46, Quantity: 3, ExtendedPrice: 48211.38, Freight: 1490.46, Discontinued: false, Region: `West`, Address: `185 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60116 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `179 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80107, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1266, CustomerName: `Max Smith`, CustomerFirstName: `Max`, CustomerLastName: `Smith`, CustomerAddress: `179 Market Street, Huston, USA, 80107`, Salesperson: `Nancy Smith`, OrderID: 1286, OrderDate: `1/10/2022`, ProductID: 161, ProductName: `Mac Book Air`, UnitPrice: 26160.38, Quantity: 3, ExtendedPrice: 78481.14, Freight: 570.38, Discontinued: false, Region: `West`, Address: `179 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80107 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `189 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 90073, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1267, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `189 Wall Street, Huston, USA, 90073`, Salesperson: `Martin Madison`, OrderID: 1754, OrderDate: `5/2/2022`, ProductID: 143, ProductName: `Samsung Galaxy 22`, UnitPrice: 29540.84, Quantity: 4, ExtendedPrice: 118163.36, Freight: 500.84, Discontinued: false, Region: `North East`, Address: `189 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 90073 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `106 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90153, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1268, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `106 Market Street, Miami, USA, 90153`, Salesperson: `Anna Black`, OrderID: 1321, OrderDate: `6/21/2022`, ProductID: 136, ProductName: `Samsung Galaxy 22`, UnitPrice: 12550.55, Quantity: 5, ExtendedPrice: 62752.75, Freight: 1440.55, Discontinued: false, Region: `West`, Address: `106 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90153 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `149 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50102, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1269, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `149 Wall Street, Los Angeles, USA, 50102`, Salesperson: `James Jefferson`, OrderID: 1262, OrderDate: `7/13/2022`, ProductID: 178, ProductName: `Samsung Note`, UnitPrice: 8690.45, Quantity: 3, ExtendedPrice: 26071.35, Freight: 1420.45, Discontinued: true, Region: `West`, Address: `149 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50102 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `192 Market Street`, ShipCity: `New York`, ShipPostalCode: 60078, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1270, CustomerName: `Martin Watson`, CustomerFirstName: `Martin`, CustomerLastName: `Watson`, CustomerAddress: `192 Market Street, New York, USA, 60078`, Salesperson: `Ben Jackson`, OrderID: 1586, OrderDate: `11/13/2022`, ProductID: 130, ProductName: `Mac Book Pro`, UnitPrice: 28630.86, Quantity: 2, ExtendedPrice: 57261.72, Freight: 980.86, Discontinued: false, Region: `West`, Address: `192 Market Street`, City: `New York`, Country: `USA`, PostalCode: 60078 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `159 Main Street`, ShipCity: `New York`, ShipPostalCode: 50050, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1271, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `159 Main Street, New York, USA, 50050`, Salesperson: `Max Jefferson`, OrderID: 1915, OrderDate: `2/10/2022`, ProductID: 178, ProductName: `Mac Book Pro`, UnitPrice: 19050.75, Quantity: 5, ExtendedPrice: 95253.75, Freight: 960.75, Discontinued: false, Region: `West`, Address: `159 Main Street`, City: `New York`, Country: `USA`, PostalCode: 50050 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `171 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60099, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1272, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `171 Wall Street, Los Angeles, USA, 60099`, Salesperson: `Pamela Jackson`, OrderID: 1503, OrderDate: `4/7/2022`, ProductID: 153, ProductName: `Samsung Galaxy 22`, UnitPrice: 26320.3, Quantity: 3, ExtendedPrice: 78960.9, Freight: 1360.3, Discontinued: false, Region: `South East`, Address: `171 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60099 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `161 Main Street`, ShipCity: `Huston`, ShipPostalCode: 70087, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1273, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `161 Main Street, Huston, USA, 70087`, Salesperson: `Nancy Watson`, OrderID: 1129, OrderDate: `9/4/2022`, ProductID: 119, ProductName: `Samsung Note`, UnitPrice: 26970.53, Quantity: 3, ExtendedPrice: 80911.59, Freight: 1890.53, Discontinued: false, Region: `South East`, Address: `161 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 70087 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `163 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50127, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1274, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `163 Market Street, Los Angeles, USA, 50127`, Salesperson: `Nancy Jefferson`, OrderID: 1508, OrderDate: `1/6/2022`, ProductID: 136, ProductName: `Mac Book Air`, UnitPrice: 12620.81, Quantity: 3, ExtendedPrice: 37862.43, Freight: 650.81, Discontinued: false, Region: `North East`, Address: `163 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50127 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `131 Market Street`, ShipCity: `Huston`, ShipPostalCode: 50052, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1275, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `131 Market Street, Huston, USA, 50052`, Salesperson: `Martin Watson`, OrderID: 1285, OrderDate: `8/6/2022`, ProductID: 123, ProductName: `Samsung Note`, UnitPrice: 22790.24, Quantity: 4, ExtendedPrice: 91160.96, Freight: 1140.24, Discontinued: false, Region: `South East`, Address: `131 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 50052 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `125 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 60101, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1276, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `125 Wall Street, Miami, USA, 60101`, Salesperson: `Ben Smith`, OrderID: 1881, OrderDate: `12/5/2022`, ProductID: 128, ProductName: `Mac Book Air`, UnitPrice: 18780.56, Quantity: 4, ExtendedPrice: 75122.24, Freight: 820.56, Discontinued: false, Region: `West`, Address: `125 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 60101 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `184 Main Street`, ShipCity: `Miami`, ShipPostalCode: 50157, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1277, CustomerName: `Nancy Jackson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jackson`, CustomerAddress: `184 Main Street, Miami, USA, 50157`, Salesperson: `Mike Smith`, OrderID: 1478, OrderDate: `9/18/2022`, ProductID: 131, ProductName: `IPad`, UnitPrice: 15000.21, Quantity: 5, ExtendedPrice: 75001.05, Freight: 1390.21, Discontinued: false, Region: `North East`, Address: `184 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 50157 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `199 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80050, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1278, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `199 Market Street, Huston, USA, 80050`, Salesperson: `Max Jefferson`, OrderID: 1767, OrderDate: `1/17/2022`, ProductID: 196, ProductName: `Mac Book Pro`, UnitPrice: 21600.31, Quantity: 3, ExtendedPrice: 64800.93, Freight: 1130.31, Discontinued: false, Region: `North East`, Address: `199 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80050 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `127 Market Street`, ShipCity: `Miami`, ShipPostalCode: 60073, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1279, CustomerName: `Nancy Madison`, CustomerFirstName: `Nancy`, CustomerLastName: `Madison`, CustomerAddress: `127 Market Street, Miami, USA, 60073`, Salesperson: `Mike Smith`, OrderID: 1229, OrderDate: `12/7/2022`, ProductID: 184, ProductName: `Mac Book Air`, UnitPrice: 27500.59, Quantity: 3, ExtendedPrice: 82501.77, Freight: 1380.59, Discontinued: true, Region: `West`, Address: `127 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 60073 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `169 Main Street`, ShipCity: `New York`, ShipPostalCode: 50123, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1280, CustomerName: `Mike Watson`, CustomerFirstName: `Mike`, CustomerLastName: `Watson`, CustomerAddress: `169 Main Street, New York, USA, 50123`, Salesperson: `Martin Jackson`, OrderID: 1761, OrderDate: `2/10/2022`, ProductID: 169, ProductName: `IPad`, UnitPrice: 21430.7, Quantity: 5, ExtendedPrice: 107153.5, Freight: 1170.7, Discontinued: false, Region: `North East`, Address: `169 Main Street`, City: `New York`, Country: `USA`, PostalCode: 50123 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `109 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80143, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1281, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `109 Main Street, Philadelphia, USA, 80143`, Salesperson: `Anna Black`, OrderID: 1461, OrderDate: `9/8/2022`, ProductID: 155, ProductName: `Samsung Galaxy 22`, UnitPrice: 28470.33, Quantity: 4, ExtendedPrice: 113881.32, Freight: 1750.33, Discontinued: false, Region: `North East`, Address: `109 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80143 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `103 Main Street`, ShipCity: `New York`, ShipPostalCode: 80198, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1282, CustomerName: `James Madison`, CustomerFirstName: `James`, CustomerLastName: `Madison`, CustomerAddress: `103 Main Street, New York, USA, 80198`, Salesperson: `Ben Black`, OrderID: 1210, OrderDate: `11/7/2022`, ProductID: 123, ProductName: `Samsung Galaxy 22`, UnitPrice: 11260.52, Quantity: 5, ExtendedPrice: 56302.6, Freight: 330.52, Discontinued: false, Region: `West`, Address: `103 Main Street`, City: `New York`, Country: `USA`, PostalCode: 80198 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `102 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50100, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1283, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `102 Market Street, Philadelphia, USA, 50100`, Salesperson: `Pamela Jefferson`, OrderID: 1262, OrderDate: `4/17/2022`, ProductID: 134, ProductName: `Mac Book Pro`, UnitPrice: 21890.55, Quantity: 4, ExtendedPrice: 87562.2, Freight: 500.55, Discontinued: false, Region: `West`, Address: `102 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50100 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `194 Market Street`, ShipCity: `New York`, ShipPostalCode: 80057, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1284, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `194 Market Street, New York, USA, 80057`, Salesperson: `Pamela Jefferson`, OrderID: 1490, OrderDate: `4/6/2022`, ProductID: 191, ProductName: `Samsung Galaxy 22`, UnitPrice: 15670.58, Quantity: 4, ExtendedPrice: 62682.32, Freight: 1320.58, Discontinued: false, Region: `South East`, Address: `194 Market Street`, City: `New York`, Country: `USA`, PostalCode: 80057 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `102 Main Street`, ShipCity: `Miami`, ShipPostalCode: 70175, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1285, CustomerName: `Nancy Madison`, CustomerFirstName: `Nancy`, CustomerLastName: `Madison`, CustomerAddress: `102 Main Street, Miami, USA, 70175`, Salesperson: `James Jackson`, OrderID: 1031, OrderDate: `3/18/2022`, ProductID: 196, ProductName: `Samsung Note`, UnitPrice: 16280.69, Quantity: 3, ExtendedPrice: 48842.07, Freight: 380.69, Discontinued: false, Region: `South East`, Address: `102 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 70175 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `139 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60067, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1286, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `139 Market Street, Philadelphia, USA, 60067`, Salesperson: `Max Jefferson`, OrderID: 1803, OrderDate: `1/22/2022`, ProductID: 134, ProductName: `Mac Book Pro`, UnitPrice: 7940.29, Quantity: 4, ExtendedPrice: 31761.16, Freight: 620.29, Discontinued: false, Region: `North East`, Address: `139 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60067 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `167 Market Street`, ShipCity: `New York`, ShipPostalCode: 80115, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1287, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `167 Market Street, New York, USA, 80115`, Salesperson: `Anna Black`, OrderID: 1465, OrderDate: `2/14/2022`, ProductID: 166, ProductName: `Samsung Note`, UnitPrice: 20420.2, Quantity: 4, ExtendedPrice: 81680.8, Freight: 960.2, Discontinued: false, Region: `North East`, Address: `167 Market Street`, City: `New York`, Country: `USA`, PostalCode: 80115 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `167 Market Street`, ShipCity: `New York`, ShipPostalCode: 80080, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1288, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `167 Market Street, New York, USA, 80080`, Salesperson: `Ben Jackson`, OrderID: 1303, OrderDate: `12/12/2022`, ProductID: 191, ProductName: `Samsung Galaxy 22`, UnitPrice: 20080.21, Quantity: 2, ExtendedPrice: 40160.42, Freight: 800.21, Discontinued: false, Region: `West`, Address: `167 Market Street`, City: `New York`, Country: `USA`, PostalCode: 80080 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `167 Market Street`, ShipCity: `New York`, ShipPostalCode: 90093, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1289, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `167 Market Street, New York, USA, 90093`, Salesperson: `Anna Smith`, OrderID: 1122, OrderDate: `8/6/2022`, ProductID: 189, ProductName: `Mac Book Air`, UnitPrice: 29420.55, Quantity: 4, ExtendedPrice: 117682.2, Freight: 1200.55, Discontinued: true, Region: `South East`, Address: `167 Market Street`, City: `New York`, Country: `USA`, PostalCode: 90093 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `114 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60133, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1290, CustomerName: `Nancy Madison`, CustomerFirstName: `Nancy`, CustomerLastName: `Madison`, CustomerAddress: `114 Wall Street, Philadelphia, USA, 60133`, Salesperson: `Anna Madison`, OrderID: 1402, OrderDate: `6/9/2022`, ProductID: 161, ProductName: `Samsung Galaxy 22`, UnitPrice: 16370.76, Quantity: 3, ExtendedPrice: 49112.28, Freight: 590.76, Discontinued: false, Region: `South East`, Address: `114 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60133 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `164 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60153, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1291, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `164 Market Street, Los Angeles, USA, 60153`, Salesperson: `Max Smith`, OrderID: 1165, OrderDate: `11/24/2022`, ProductID: 193, ProductName: `Mac Book Pro`, UnitPrice: 19240.53, Quantity: 4, ExtendedPrice: 76962.12, Freight: 1990.53, Discontinued: false, Region: `West`, Address: `164 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60153 }), + new InvoicesDataItem({ ShipName: `Jackson Home`, ShipAddress: `102 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90068, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1292, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `102 Market Street, Philadelphia, USA, 90068`, Salesperson: `Mike Madison`, OrderID: 1512, OrderDate: `9/4/2022`, ProductID: 186, ProductName: `Samsung Note`, UnitPrice: 26300.88, Quantity: 4, ExtendedPrice: 105203.52, Freight: 660.88, Discontinued: false, Region: `West`, Address: `102 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90068 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `158 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80149, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1293, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `158 Wall Street, Los Angeles, USA, 80149`, Salesperson: `Max Jackson`, OrderID: 1358, OrderDate: `2/22/2022`, ProductID: 110, ProductName: `Mac Book Pro`, UnitPrice: 23570.31, Quantity: 5, ExtendedPrice: 117851.55, Freight: 1260.31, Discontinued: false, Region: `North East`, Address: `158 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80149 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `125 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80176, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1294, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `125 Market Street, Huston, USA, 80176`, Salesperson: `Pamela Watson`, OrderID: 1106, OrderDate: `2/7/2022`, ProductID: 152, ProductName: `Samsung Galaxy 22`, UnitPrice: 6100.56, Quantity: 5, ExtendedPrice: 30502.8, Freight: 1900.56, Discontinued: false, Region: `West`, Address: `125 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80176 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `177 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50079, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1295, CustomerName: `Pamela Smith`, CustomerFirstName: `Pamela`, CustomerLastName: `Smith`, CustomerAddress: `177 Main Street, Los Angeles, USA, 50079`, Salesperson: `Max Watson`, OrderID: 1931, OrderDate: `6/5/2022`, ProductID: 113, ProductName: `Samsung Galaxy 22`, UnitPrice: 27350.45, Quantity: 3, ExtendedPrice: 82051.35, Freight: 1170.45, Discontinued: false, Region: `North East`, Address: `177 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50079 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `148 Market Street`, ShipCity: `New York`, ShipPostalCode: 90184, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1296, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `148 Market Street, New York, USA, 90184`, Salesperson: `James Smith`, OrderID: 1108, OrderDate: `8/5/2022`, ProductID: 122, ProductName: `Samsung Note`, UnitPrice: 5440.75, Quantity: 4, ExtendedPrice: 21763, Freight: 960.75, Discontinued: false, Region: `South East`, Address: `148 Market Street`, City: `New York`, Country: `USA`, PostalCode: 90184 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `113 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 50064, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1297, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `113 Wall Street, Huston, USA, 50064`, Salesperson: `Martin Smith`, OrderID: 1782, OrderDate: `3/24/2022`, ProductID: 107, ProductName: `IPad`, UnitPrice: 22200.88, Quantity: 4, ExtendedPrice: 88803.52, Freight: 510.88, Discontinued: false, Region: `West`, Address: `113 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 50064 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `134 Wall Street`, ShipCity: `New York`, ShipPostalCode: 80155, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1298, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `134 Wall Street, New York, USA, 80155`, Salesperson: `Nancy Jefferson`, OrderID: 1886, OrderDate: `3/6/2022`, ProductID: 181, ProductName: `Samsung Galaxy 22`, UnitPrice: 8550.46, Quantity: 4, ExtendedPrice: 34201.84, Freight: 1830.46, Discontinued: false, Region: `North East`, Address: `134 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 80155 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `142 Market Street`, ShipCity: `New York`, ShipPostalCode: 90103, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1299, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `142 Market Street, New York, USA, 90103`, Salesperson: `Anna Watson`, OrderID: 1578, OrderDate: `10/5/2022`, ProductID: 162, ProductName: `Mac Book Air`, UnitPrice: 19490.84, Quantity: 4, ExtendedPrice: 77963.36, Freight: 490.84, Discontinued: true, Region: `West`, Address: `142 Market Street`, City: `New York`, Country: `USA`, PostalCode: 90103 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `132 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90111, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1300, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `132 Market Street, Miami, USA, 90111`, Salesperson: `Ben Jefferson`, OrderID: 1903, OrderDate: `6/23/2022`, ProductID: 173, ProductName: `IPad`, UnitPrice: 23350.52, Quantity: 5, ExtendedPrice: 116752.6, Freight: 1210.52, Discontinued: false, Region: `South East`, Address: `132 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90111 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `180 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50182, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1301, CustomerName: `Mike Smith`, CustomerFirstName: `Mike`, CustomerLastName: `Smith`, CustomerAddress: `180 Main Street, Los Angeles, USA, 50182`, Salesperson: `Ben Black`, OrderID: 1201, OrderDate: `11/25/2022`, ProductID: 127, ProductName: `Mac Book Pro`, UnitPrice: 6730.57, Quantity: 3, ExtendedPrice: 20191.71, Freight: 1600.57, Discontinued: false, Region: `West`, Address: `180 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50182 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `135 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60076, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1302, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `135 Main Street, Philadelphia, USA, 60076`, Salesperson: `Mike Smith`, OrderID: 1488, OrderDate: `5/1/2022`, ProductID: 105, ProductName: `IPad`, UnitPrice: 27240.3, Quantity: 5, ExtendedPrice: 136201.5, Freight: 1130.3, Discontinued: false, Region: `West`, Address: `135 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60076 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `104 Wall Street`, ShipCity: `New York`, ShipPostalCode: 70191, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1303, CustomerName: `Nancy Madison`, CustomerFirstName: `Nancy`, CustomerLastName: `Madison`, CustomerAddress: `104 Wall Street, New York, USA, 70191`, Salesperson: `Pamela Jefferson`, OrderID: 1636, OrderDate: `2/16/2022`, ProductID: 104, ProductName: `Samsung Galaxy 22`, UnitPrice: 14830.46, Quantity: 2, ExtendedPrice: 29660.92, Freight: 540.46, Discontinued: false, Region: `West`, Address: `104 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 70191 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `122 Market Street`, ShipCity: `New York`, ShipPostalCode: 70071, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1304, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `122 Market Street, New York, USA, 70071`, Salesperson: `Max Black`, OrderID: 1588, OrderDate: `8/22/2022`, ProductID: 169, ProductName: `IPhone`, UnitPrice: 28440.73, Quantity: 3, ExtendedPrice: 85322.19, Freight: 640.73, Discontinued: false, Region: `North East`, Address: `122 Market Street`, City: `New York`, Country: `USA`, PostalCode: 70071 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `178 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80064, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1305, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `178 Main Street, Philadelphia, USA, 80064`, Salesperson: `Pamela Jackson`, OrderID: 1422, OrderDate: `7/3/2022`, ProductID: 150, ProductName: `Mac Book Air`, UnitPrice: 7100.37, Quantity: 4, ExtendedPrice: 28401.48, Freight: 1560.37, Discontinued: false, Region: `North East`, Address: `178 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80064 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `199 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80126, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1306, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `199 Main Street, Philadelphia, USA, 80126`, Salesperson: `Ben Jefferson`, OrderID: 1922, OrderDate: `1/13/2022`, ProductID: 116, ProductName: `Mac Book Air`, UnitPrice: 15400.22, Quantity: 4, ExtendedPrice: 61600.88, Freight: 1970.22, Discontinued: false, Region: `South East`, Address: `199 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80126 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `187 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 70093, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1307, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `187 Wall Street, Huston, USA, 70093`, Salesperson: `Ben Watson`, OrderID: 1023, OrderDate: `8/20/2022`, ProductID: 138, ProductName: `Samsung Note`, UnitPrice: 26450.63, Quantity: 2, ExtendedPrice: 52901.26, Freight: 980.63, Discontinued: false, Region: `South East`, Address: `187 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 70093 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `110 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50180, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1308, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `110 Market Street, Los Angeles, USA, 50180`, Salesperson: `Martin Smith`, OrderID: 1651, OrderDate: `8/10/2022`, ProductID: 131, ProductName: `IPhone`, UnitPrice: 11720.27, Quantity: 2, ExtendedPrice: 23440.54, Freight: 300.27, Discontinued: false, Region: `South East`, Address: `110 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50180 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `196 Wall Street`, ShipCity: `New York`, ShipPostalCode: 50190, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1309, CustomerName: `James Madison`, CustomerFirstName: `James`, CustomerLastName: `Madison`, CustomerAddress: `196 Wall Street, New York, USA, 50190`, Salesperson: `Nancy Madison`, OrderID: 1918, OrderDate: `7/11/2022`, ProductID: 160, ProductName: `IPad`, UnitPrice: 22400.31, Quantity: 2, ExtendedPrice: 44800.62, Freight: 1310.31, Discontinued: true, Region: `North East`, Address: `196 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 50190 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `172 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80154, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1310, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `172 Market Street, Philadelphia, USA, 80154`, Salesperson: `Ben Jackson`, OrderID: 1803, OrderDate: `2/14/2022`, ProductID: 100, ProductName: `Samsung Note`, UnitPrice: 5270.34, Quantity: 5, ExtendedPrice: 26351.7, Freight: 320.34, Discontinued: false, Region: `North East`, Address: `172 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80154 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `181 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50200, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1311, CustomerName: `Martin Watson`, CustomerFirstName: `Martin`, CustomerLastName: `Watson`, CustomerAddress: `181 Wall Street, Los Angeles, USA, 50200`, Salesperson: `James Watson`, OrderID: 1467, OrderDate: `12/13/2022`, ProductID: 171, ProductName: `Mac Book Air`, UnitPrice: 7830.21, Quantity: 4, ExtendedPrice: 31320.84, Freight: 1740.21, Discontinued: false, Region: `South East`, Address: `181 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50200 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `151 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70118, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1312, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `151 Main Street, Los Angeles, USA, 70118`, Salesperson: `Martin Watson`, OrderID: 1359, OrderDate: `4/5/2022`, ProductID: 141, ProductName: `IPhone`, UnitPrice: 27160.77, Quantity: 5, ExtendedPrice: 135803.85, Freight: 370.77, Discontinued: false, Region: `West`, Address: `151 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70118 }), + new InvoicesDataItem({ ShipName: `Jackson Home`, ShipAddress: `156 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90109, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1313, CustomerName: `James Jackson`, CustomerFirstName: `James`, CustomerLastName: `Jackson`, CustomerAddress: `156 Market Street, Miami, USA, 90109`, Salesperson: `James Jackson`, OrderID: 1592, OrderDate: `4/16/2022`, ProductID: 128, ProductName: `Samsung Note`, UnitPrice: 14910.41, Quantity: 5, ExtendedPrice: 74552.05, Freight: 1790.41, Discontinued: false, Region: `North East`, Address: `156 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90109 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `147 Main Street`, ShipCity: `Huston`, ShipPostalCode: 60054, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1314, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `147 Main Street, Huston, USA, 60054`, Salesperson: `Ben Watson`, OrderID: 1454, OrderDate: `12/12/2022`, ProductID: 131, ProductName: `Mac Book Air`, UnitPrice: 11280.22, Quantity: 3, ExtendedPrice: 33840.66, Freight: 1440.22, Discontinued: false, Region: `South East`, Address: `147 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 60054 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `123 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90190, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1315, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `123 Market Street, Philadelphia, USA, 90190`, Salesperson: `James Jefferson`, OrderID: 1529, OrderDate: `4/19/2022`, ProductID: 102, ProductName: `IPad`, UnitPrice: 7570.85, Quantity: 5, ExtendedPrice: 37854.25, Freight: 1630.85, Discontinued: false, Region: `West`, Address: `123 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90190 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `100 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90115, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1316, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `100 Wall Street, Los Angeles, USA, 90115`, Salesperson: `Nancy Smith`, OrderID: 1783, OrderDate: `9/2/2022`, ProductID: 144, ProductName: `Samsung Note`, UnitPrice: 5530.88, Quantity: 3, ExtendedPrice: 16592.64, Freight: 1800.88, Discontinued: false, Region: `North East`, Address: `100 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90115 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `184 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 50144, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1317, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `184 Wall Street, Miami, USA, 50144`, Salesperson: `Max Jackson`, OrderID: 1533, OrderDate: `12/19/2022`, ProductID: 189, ProductName: `Samsung Galaxy 22`, UnitPrice: 24820.6, Quantity: 2, ExtendedPrice: 49641.2, Freight: 1550.6, Discontinued: false, Region: `South East`, Address: `184 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 50144 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `187 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70132, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1318, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `187 Wall Street, Los Angeles, USA, 70132`, Salesperson: `Nancy Jackson`, OrderID: 1483, OrderDate: `1/8/2022`, ProductID: 182, ProductName: `Samsung Galaxy 22`, UnitPrice: 21520.76, Quantity: 4, ExtendedPrice: 86083.04, Freight: 770.76, Discontinued: false, Region: `North East`, Address: `187 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70132 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `162 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90083, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1319, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `162 Main Street, Philadelphia, USA, 90083`, Salesperson: `Max Jefferson`, OrderID: 1869, OrderDate: `6/3/2022`, ProductID: 118, ProductName: `IPhone`, UnitPrice: 15930.3, Quantity: 2, ExtendedPrice: 31860.6, Freight: 470.3, Discontinued: true, Region: `North East`, Address: `162 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90083 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `147 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50191, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1320, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `147 Main Street, Philadelphia, USA, 50191`, Salesperson: `Martin Jefferson`, OrderID: 1541, OrderDate: `2/1/2022`, ProductID: 159, ProductName: `Mac Book Pro`, UnitPrice: 29090.51, Quantity: 4, ExtendedPrice: 116362.04, Freight: 900.51, Discontinued: false, Region: `North East`, Address: `147 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50191 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `175 Wall Street`, ShipCity: `New York`, ShipPostalCode: 90056, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1321, CustomerName: `Martin Jackson`, CustomerFirstName: `Martin`, CustomerLastName: `Jackson`, CustomerAddress: `175 Wall Street, New York, USA, 90056`, Salesperson: `Anna Black`, OrderID: 1050, OrderDate: `8/6/2022`, ProductID: 120, ProductName: `IPad`, UnitPrice: 28490.38, Quantity: 5, ExtendedPrice: 142451.9, Freight: 860.38, Discontinued: false, Region: `West`, Address: `175 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 90056 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `129 Market Street`, ShipCity: `Huston`, ShipPostalCode: 50089, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1322, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `129 Market Street, Huston, USA, 50089`, Salesperson: `Mike Jefferson`, OrderID: 1188, OrderDate: `7/23/2022`, ProductID: 119, ProductName: `Mac Book Pro`, UnitPrice: 6710.58, Quantity: 3, ExtendedPrice: 20131.74, Freight: 1160.58, Discontinued: false, Region: `South East`, Address: `129 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 50089 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `104 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70079, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1323, CustomerName: `Ben Smith`, CustomerFirstName: `Ben`, CustomerLastName: `Smith`, CustomerAddress: `104 Wall Street, Philadelphia, USA, 70079`, Salesperson: `Martin Madison`, OrderID: 1452, OrderDate: `2/1/2022`, ProductID: 182, ProductName: `IPhone`, UnitPrice: 9260.28, Quantity: 2, ExtendedPrice: 18520.56, Freight: 1960.28, Discontinued: false, Region: `South East`, Address: `104 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70079 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `167 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70137, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1324, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `167 Wall Street, Philadelphia, USA, 70137`, Salesperson: `James Jefferson`, OrderID: 1542, OrderDate: `7/21/2022`, ProductID: 107, ProductName: `IPhone`, UnitPrice: 5100.82, Quantity: 5, ExtendedPrice: 25504.1, Freight: 610.82, Discontinued: false, Region: `North East`, Address: `167 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70137 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `128 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50188, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1325, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `128 Wall Street, Philadelphia, USA, 50188`, Salesperson: `Nancy Jefferson`, OrderID: 1993, OrderDate: `3/7/2022`, ProductID: 149, ProductName: `Samsung Note`, UnitPrice: 27520.59, Quantity: 4, ExtendedPrice: 110082.36, Freight: 1260.59, Discontinued: false, Region: `South East`, Address: `128 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50188 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `171 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70190, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1326, CustomerName: `Martin Watson`, CustomerFirstName: `Martin`, CustomerLastName: `Watson`, CustomerAddress: `171 Market Street, Huston, USA, 70190`, Salesperson: `Anna Madison`, OrderID: 1815, OrderDate: `7/4/2022`, ProductID: 195, ProductName: `Samsung Note`, UnitPrice: 27340.66, Quantity: 5, ExtendedPrice: 136703.3, Freight: 1790.66, Discontinued: false, Region: `South East`, Address: `171 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70190 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `191 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60123, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1327, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `191 Market Street, Philadelphia, USA, 60123`, Salesperson: `Anna Madison`, OrderID: 1319, OrderDate: `8/5/2022`, ProductID: 191, ProductName: `Samsung Note`, UnitPrice: 28500.5, Quantity: 5, ExtendedPrice: 142502.5, Freight: 1280.5, Discontinued: false, Region: `West`, Address: `191 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60123 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `150 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80139, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1328, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `150 Wall Street, Philadelphia, USA, 80139`, Salesperson: `Nancy Watson`, OrderID: 1592, OrderDate: `2/22/2022`, ProductID: 149, ProductName: `Mac Book Pro`, UnitPrice: 22890.6, Quantity: 5, ExtendedPrice: 114453, Freight: 920.6, Discontinued: false, Region: `South East`, Address: `150 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80139 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `112 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70172, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1329, CustomerName: `Nancy Jackson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jackson`, CustomerAddress: `112 Main Street, Los Angeles, USA, 70172`, Salesperson: `Max Jefferson`, OrderID: 1959, OrderDate: `10/15/2022`, ProductID: 156, ProductName: `Samsung Galaxy 22`, UnitPrice: 12050.71, Quantity: 4, ExtendedPrice: 48202.84, Freight: 270.71, Discontinued: true, Region: `North East`, Address: `112 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70172 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `121 Market Street`, ShipCity: `New York`, ShipPostalCode: 80122, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1330, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `121 Market Street, New York, USA, 80122`, Salesperson: `Ben Black`, OrderID: 1343, OrderDate: `5/25/2022`, ProductID: 118, ProductName: `Mac Book Pro`, UnitPrice: 7060.29, Quantity: 4, ExtendedPrice: 28241.16, Freight: 400.29, Discontinued: false, Region: `West`, Address: `121 Market Street`, City: `New York`, Country: `USA`, PostalCode: 80122 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `183 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 90122, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1331, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `183 Wall Street, Miami, USA, 90122`, Salesperson: `Pamela Smith`, OrderID: 1876, OrderDate: `2/8/2022`, ProductID: 137, ProductName: `Samsung Note`, UnitPrice: 10140.84, Quantity: 4, ExtendedPrice: 40563.36, Freight: 640.84, Discontinued: false, Region: `North East`, Address: `183 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 90122 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `105 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50068, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1332, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `105 Main Street, Los Angeles, USA, 50068`, Salesperson: `Ben Madison`, OrderID: 1322, OrderDate: `6/7/2022`, ProductID: 148, ProductName: `Mac Book Air`, UnitPrice: 20150.45, Quantity: 4, ExtendedPrice: 80601.8, Freight: 1190.45, Discontinued: false, Region: `North East`, Address: `105 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50068 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `199 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70061, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1333, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `199 Market Street, Huston, USA, 70061`, Salesperson: `Max Smith`, OrderID: 1046, OrderDate: `2/3/2022`, ProductID: 162, ProductName: `IPhone`, UnitPrice: 28480.38, Quantity: 2, ExtendedPrice: 56960.76, Freight: 1180.38, Discontinued: false, Region: `West`, Address: `199 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70061 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `142 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60058, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1334, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `142 Wall Street, Huston, USA, 60058`, Salesperson: `Mike Madison`, OrderID: 1433, OrderDate: `2/1/2022`, ProductID: 177, ProductName: `IPhone`, UnitPrice: 6770.89, Quantity: 5, ExtendedPrice: 33854.45, Freight: 520.89, Discontinued: false, Region: `South East`, Address: `142 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60058 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `140 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90131, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1335, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `140 Market Street, Los Angeles, USA, 90131`, Salesperson: `Pamela Black`, OrderID: 1894, OrderDate: `9/13/2022`, ProductID: 151, ProductName: `IPad`, UnitPrice: 5280.38, Quantity: 5, ExtendedPrice: 26401.9, Freight: 1610.38, Discontinued: false, Region: `North East`, Address: `140 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90131 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `106 Market Street`, ShipCity: `Miami`, ShipPostalCode: 60063, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1336, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `106 Market Street, Miami, USA, 60063`, Salesperson: `Anna Jackson`, OrderID: 1017, OrderDate: `6/12/2022`, ProductID: 173, ProductName: `Mac Book Pro`, UnitPrice: 27000.78, Quantity: 2, ExtendedPrice: 54001.56, Freight: 540.78, Discontinued: false, Region: `West`, Address: `106 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 60063 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `190 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70115, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1337, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `190 Market Street, Huston, USA, 70115`, Salesperson: `Martin Smith`, OrderID: 1583, OrderDate: `2/12/2022`, ProductID: 147, ProductName: `Samsung Note`, UnitPrice: 7560.53, Quantity: 2, ExtendedPrice: 15121.06, Freight: 260.53, Discontinued: false, Region: `South East`, Address: `190 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70115 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `129 Market Street`, ShipCity: `Miami`, ShipPostalCode: 70051, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1338, CustomerName: `Nancy Smith`, CustomerFirstName: `Nancy`, CustomerLastName: `Smith`, CustomerAddress: `129 Market Street, Miami, USA, 70051`, Salesperson: `Pamela Madison`, OrderID: 1202, OrderDate: `3/15/2022`, ProductID: 136, ProductName: `IPhone`, UnitPrice: 20520.41, Quantity: 2, ExtendedPrice: 41040.82, Freight: 550.41, Discontinued: false, Region: `North East`, Address: `129 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 70051 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `143 Main Street`, ShipCity: `Miami`, ShipPostalCode: 70144, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1339, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `143 Main Street, Miami, USA, 70144`, Salesperson: `James Jefferson`, OrderID: 1172, OrderDate: `10/15/2022`, ProductID: 136, ProductName: `IPad`, UnitPrice: 18760.26, Quantity: 4, ExtendedPrice: 75041.04, Freight: 540.26, Discontinued: true, Region: `North East`, Address: `143 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 70144 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `179 Market Street`, ShipCity: `New York`, ShipPostalCode: 90174, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1340, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `179 Market Street, New York, USA, 90174`, Salesperson: `Martin Madison`, OrderID: 1491, OrderDate: `4/19/2022`, ProductID: 176, ProductName: `Mac Book Air`, UnitPrice: 16000.56, Quantity: 4, ExtendedPrice: 64002.24, Freight: 690.56, Discontinued: false, Region: `West`, Address: `179 Market Street`, City: `New York`, Country: `USA`, PostalCode: 90174 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `152 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90077, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1341, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `152 Main Street, Philadelphia, USA, 90077`, Salesperson: `James Black`, OrderID: 1351, OrderDate: `9/19/2022`, ProductID: 147, ProductName: `IPhone`, UnitPrice: 19810.36, Quantity: 4, ExtendedPrice: 79241.44, Freight: 920.36, Discontinued: false, Region: `West`, Address: `152 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90077 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `170 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60097, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1342, CustomerName: `Anna Jefferson`, CustomerFirstName: `Anna`, CustomerLastName: `Jefferson`, CustomerAddress: `170 Main Street, Los Angeles, USA, 60097`, Salesperson: `Martin Black`, OrderID: 1619, OrderDate: `3/13/2022`, ProductID: 166, ProductName: `Mac Book Air`, UnitPrice: 27140.88, Quantity: 3, ExtendedPrice: 81422.64, Freight: 1480.88, Discontinued: false, Region: `North East`, Address: `170 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60097 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `198 Wall Street`, ShipCity: `New York`, ShipPostalCode: 90077, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1343, CustomerName: `Martin Black`, CustomerFirstName: `Martin`, CustomerLastName: `Black`, CustomerAddress: `198 Wall Street, New York, USA, 90077`, Salesperson: `James Smith`, OrderID: 1646, OrderDate: `9/2/2022`, ProductID: 122, ProductName: `Samsung Galaxy 22`, UnitPrice: 6160.87, Quantity: 3, ExtendedPrice: 18482.61, Freight: 1480.87, Discontinued: false, Region: `South East`, Address: `198 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 90077 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `193 Wall Street`, ShipCity: `New York`, ShipPostalCode: 60165, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1344, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `193 Wall Street, New York, USA, 60165`, Salesperson: `Ben Madison`, OrderID: 1516, OrderDate: `4/20/2022`, ProductID: 113, ProductName: `IPhone`, UnitPrice: 22310.25, Quantity: 2, ExtendedPrice: 44620.5, Freight: 1740.25, Discontinued: false, Region: `North East`, Address: `193 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 60165 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `108 Wall Street`, ShipCity: `New York`, ShipPostalCode: 90123, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1345, CustomerName: `James Jackson`, CustomerFirstName: `James`, CustomerLastName: `Jackson`, CustomerAddress: `108 Wall Street, New York, USA, 90123`, Salesperson: `Mike Madison`, OrderID: 1356, OrderDate: `11/2/2022`, ProductID: 105, ProductName: `Mac Book Air`, UnitPrice: 16240.78, Quantity: 5, ExtendedPrice: 81203.9, Freight: 260.78, Discontinued: false, Region: `North East`, Address: `108 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 90123 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `173 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60061, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1346, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `173 Main Street, Miami, USA, 60061`, Salesperson: `Mike Jefferson`, OrderID: 1062, OrderDate: `3/5/2022`, ProductID: 101, ProductName: `Samsung Galaxy 22`, UnitPrice: 25540.71, Quantity: 5, ExtendedPrice: 127703.55, Freight: 2000.71, Discontinued: false, Region: `West`, Address: `173 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60061 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `118 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60178, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1347, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `118 Wall Street, Los Angeles, USA, 60178`, Salesperson: `Max Madison`, OrderID: 1482, OrderDate: `8/24/2022`, ProductID: 105, ProductName: `IPhone`, UnitPrice: 17000.6, Quantity: 4, ExtendedPrice: 68002.4, Freight: 1390.6, Discontinued: false, Region: `West`, Address: `118 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60178 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `134 Wall Street`, ShipCity: `New York`, ShipPostalCode: 60096, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1348, CustomerName: `Martin Jackson`, CustomerFirstName: `Martin`, CustomerLastName: `Jackson`, CustomerAddress: `134 Wall Street, New York, USA, 60096`, Salesperson: `Ben Madison`, OrderID: 1443, OrderDate: `7/1/2022`, ProductID: 105, ProductName: `Samsung Galaxy 22`, UnitPrice: 12670.46, Quantity: 2, ExtendedPrice: 25340.92, Freight: 1280.46, Discontinued: false, Region: `North East`, Address: `134 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 60096 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `125 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50134, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1349, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `125 Market Street, Philadelphia, USA, 50134`, Salesperson: `Mike Watson`, OrderID: 1498, OrderDate: `1/17/2022`, ProductID: 194, ProductName: `IPhone`, UnitPrice: 23470.22, Quantity: 3, ExtendedPrice: 70410.66, Freight: 1370.22, Discontinued: true, Region: `South East`, Address: `125 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50134 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `145 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80099, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1350, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `145 Market Street, Philadelphia, USA, 80099`, Salesperson: `Nancy Watson`, OrderID: 1002, OrderDate: `11/11/2022`, ProductID: 116, ProductName: `Mac Book Air`, UnitPrice: 17060.57, Quantity: 3, ExtendedPrice: 51181.71, Freight: 1800.57, Discontinued: false, Region: `West`, Address: `145 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80099 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `130 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70052, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1351, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `130 Market Street, Philadelphia, USA, 70052`, Salesperson: `Pamela Watson`, OrderID: 1144, OrderDate: `10/15/2022`, ProductID: 168, ProductName: `IPhone`, UnitPrice: 13010.35, Quantity: 4, ExtendedPrice: 52041.4, Freight: 980.35, Discontinued: false, Region: `South East`, Address: `130 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70052 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `136 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 60165, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1352, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `136 Wall Street, Miami, USA, 60165`, Salesperson: `Mike Black`, OrderID: 1745, OrderDate: `4/9/2022`, ProductID: 119, ProductName: `Samsung Galaxy 22`, UnitPrice: 7900.53, Quantity: 4, ExtendedPrice: 31602.12, Freight: 1400.53, Discontinued: false, Region: `West`, Address: `136 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 60165 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `190 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60176, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1353, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `190 Wall Street, Philadelphia, USA, 60176`, Salesperson: `Martin Smith`, OrderID: 1489, OrderDate: `3/25/2022`, ProductID: 113, ProductName: `Samsung Galaxy 22`, UnitPrice: 23420.42, Quantity: 4, ExtendedPrice: 93681.68, Freight: 1660.42, Discontinued: false, Region: `West`, Address: `190 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60176 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `114 Main Street`, ShipCity: `Huston`, ShipPostalCode: 50060, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1354, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `114 Main Street, Huston, USA, 50060`, Salesperson: `Nancy Jackson`, OrderID: 1302, OrderDate: `3/21/2022`, ProductID: 144, ProductName: `Mac Book Pro`, UnitPrice: 21240.71, Quantity: 5, ExtendedPrice: 106203.55, Freight: 1000.71, Discontinued: false, Region: `North East`, Address: `114 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 50060 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `130 Market Street`, ShipCity: `Huston`, ShipPostalCode: 90062, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1355, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `130 Market Street, Huston, USA, 90062`, Salesperson: `Ben Jackson`, OrderID: 1901, OrderDate: `11/5/2022`, ProductID: 101, ProductName: `Samsung Galaxy 22`, UnitPrice: 17170.52, Quantity: 4, ExtendedPrice: 68682.08, Freight: 1600.52, Discontinued: false, Region: `South East`, Address: `130 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 90062 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `160 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50149, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1356, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `160 Market Street, Philadelphia, USA, 50149`, Salesperson: `Ben Watson`, OrderID: 1331, OrderDate: `2/5/2022`, ProductID: 151, ProductName: `Mac Book Pro`, UnitPrice: 17650.73, Quantity: 4, ExtendedPrice: 70602.92, Freight: 1720.73, Discontinued: false, Region: `South East`, Address: `160 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50149 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `130 Main Street`, ShipCity: `New York`, ShipPostalCode: 50184, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1357, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `130 Main Street, New York, USA, 50184`, Salesperson: `Anna Watson`, OrderID: 1161, OrderDate: `5/18/2022`, ProductID: 185, ProductName: `Samsung Galaxy 22`, UnitPrice: 12920.84, Quantity: 3, ExtendedPrice: 38762.52, Freight: 780.84, Discontinued: false, Region: `South East`, Address: `130 Main Street`, City: `New York`, Country: `USA`, PostalCode: 50184 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `120 Wall Street`, ShipCity: `New York`, ShipPostalCode: 90122, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1358, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `120 Wall Street, New York, USA, 90122`, Salesperson: `Martin Madison`, OrderID: 1211, OrderDate: `11/13/2022`, ProductID: 136, ProductName: `IPad`, UnitPrice: 21380.5, Quantity: 4, ExtendedPrice: 85522, Freight: 1130.5, Discontinued: false, Region: `West`, Address: `120 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 90122 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `108 Market Street`, ShipCity: `New York`, ShipPostalCode: 80106, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1359, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `108 Market Street, New York, USA, 80106`, Salesperson: `Anna Watson`, OrderID: 1010, OrderDate: `3/15/2022`, ProductID: 198, ProductName: `Samsung Galaxy 22`, UnitPrice: 18060.46, Quantity: 4, ExtendedPrice: 72241.84, Freight: 330.46, Discontinued: true, Region: `North East`, Address: `108 Market Street`, City: `New York`, Country: `USA`, PostalCode: 80106 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `114 Market Street`, ShipCity: `Miami`, ShipPostalCode: 70117, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1360, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `114 Market Street, Miami, USA, 70117`, Salesperson: `James Smith`, OrderID: 1001, OrderDate: `2/24/2022`, ProductID: 121, ProductName: `Mac Book Pro`, UnitPrice: 22020.55, Quantity: 5, ExtendedPrice: 110102.75, Freight: 1970.55, Discontinued: false, Region: `West`, Address: `114 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 70117 }), + new InvoicesDataItem({ ShipName: `Jackson Home`, ShipAddress: `134 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50108, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1361, CustomerName: `Nancy Jackson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jackson`, CustomerAddress: `134 Main Street, Philadelphia, USA, 50108`, Salesperson: `Max Jefferson`, OrderID: 1871, OrderDate: `3/1/2022`, ProductID: 114, ProductName: `Mac Book Air`, UnitPrice: 13010.27, Quantity: 5, ExtendedPrice: 65051.35, Freight: 1490.27, Discontinued: false, Region: `North East`, Address: `134 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50108 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `138 Market Street`, ShipCity: `Huston`, ShipPostalCode: 90082, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1362, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `138 Market Street, Huston, USA, 90082`, Salesperson: `Ben Watson`, OrderID: 1175, OrderDate: `4/11/2022`, ProductID: 159, ProductName: `Samsung Galaxy 22`, UnitPrice: 17660.27, Quantity: 5, ExtendedPrice: 88301.35, Freight: 1770.27, Discontinued: false, Region: `South East`, Address: `138 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 90082 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `131 Main Street`, ShipCity: `Miami`, ShipPostalCode: 90189, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1363, CustomerName: `James Madison`, CustomerFirstName: `James`, CustomerLastName: `Madison`, CustomerAddress: `131 Main Street, Miami, USA, 90189`, Salesperson: `Nancy Madison`, OrderID: 1072, OrderDate: `2/14/2022`, ProductID: 169, ProductName: `Mac Book Air`, UnitPrice: 24150.8, Quantity: 4, ExtendedPrice: 96603.2, Freight: 1040.8, Discontinued: false, Region: `South East`, Address: `131 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 90189 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `133 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90077, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1364, CustomerName: `Martin Watson`, CustomerFirstName: `Martin`, CustomerLastName: `Watson`, CustomerAddress: `133 Wall Street, Philadelphia, USA, 90077`, Salesperson: `Pamela Jackson`, OrderID: 1971, OrderDate: `10/16/2022`, ProductID: 108, ProductName: `Samsung Note`, UnitPrice: 18520.3, Quantity: 2, ExtendedPrice: 37040.6, Freight: 300.3, Discontinued: false, Region: `North East`, Address: `133 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90077 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `128 Market Street`, ShipCity: `Huston`, ShipPostalCode: 90109, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1365, CustomerName: `Pamela Smith`, CustomerFirstName: `Pamela`, CustomerLastName: `Smith`, CustomerAddress: `128 Market Street, Huston, USA, 90109`, Salesperson: `Nancy Jackson`, OrderID: 1024, OrderDate: `12/21/2022`, ProductID: 188, ProductName: `Samsung Note`, UnitPrice: 10040.29, Quantity: 4, ExtendedPrice: 40161.16, Freight: 1900.29, Discontinued: false, Region: `South East`, Address: `128 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 90109 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `154 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80119, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1366, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `154 Market Street, Philadelphia, USA, 80119`, Salesperson: `Nancy Jackson`, OrderID: 1537, OrderDate: `6/24/2022`, ProductID: 161, ProductName: `IPhone`, UnitPrice: 20110.8, Quantity: 5, ExtendedPrice: 100554, Freight: 1990.8, Discontinued: false, Region: `South East`, Address: `154 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80119 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `156 Main Street`, ShipCity: `Miami`, ShipPostalCode: 50128, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1367, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `156 Main Street, Miami, USA, 50128`, Salesperson: `Nancy Smith`, OrderID: 1289, OrderDate: `7/2/2022`, ProductID: 125, ProductName: `Samsung Galaxy 22`, UnitPrice: 18320.56, Quantity: 3, ExtendedPrice: 54961.68, Freight: 890.56, Discontinued: false, Region: `South East`, Address: `156 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 50128 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `130 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60146, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1368, CustomerName: `James Madison`, CustomerFirstName: `James`, CustomerLastName: `Madison`, CustomerAddress: `130 Main Street, Miami, USA, 60146`, Salesperson: `Nancy Jackson`, OrderID: 1451, OrderDate: `12/4/2022`, ProductID: 140, ProductName: `Samsung Galaxy 22`, UnitPrice: 6030.21, Quantity: 4, ExtendedPrice: 24120.84, Freight: 1930.21, Discontinued: false, Region: `North East`, Address: `130 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60146 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `159 Wall Street`, ShipCity: `New York`, ShipPostalCode: 70158, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1369, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `159 Wall Street, New York, USA, 70158`, Salesperson: `Max Jefferson`, OrderID: 1056, OrderDate: `1/10/2022`, ProductID: 151, ProductName: `Mac Book Pro`, UnitPrice: 27710.33, Quantity: 3, ExtendedPrice: 83130.99, Freight: 300.33, Discontinued: true, Region: `South East`, Address: `159 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 70158 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `189 Wall Street`, ShipCity: `New York`, ShipPostalCode: 90186, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1370, CustomerName: `Pamela Smith`, CustomerFirstName: `Pamela`, CustomerLastName: `Smith`, CustomerAddress: `189 Wall Street, New York, USA, 90186`, Salesperson: `Anna Jefferson`, OrderID: 1611, OrderDate: `9/14/2022`, ProductID: 180, ProductName: `IPhone`, UnitPrice: 15940.65, Quantity: 4, ExtendedPrice: 63762.6, Freight: 1210.65, Discontinued: false, Region: `North East`, Address: `189 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 90186 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `190 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50065, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1371, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `190 Wall Street, Philadelphia, USA, 50065`, Salesperson: `Martin Watson`, OrderID: 1731, OrderDate: `2/7/2022`, ProductID: 103, ProductName: `Mac Book Pro`, UnitPrice: 21560.2, Quantity: 4, ExtendedPrice: 86240.8, Freight: 1880.2, Discontinued: false, Region: `South East`, Address: `190 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50065 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `127 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80182, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1372, CustomerName: `Pamela Smith`, CustomerFirstName: `Pamela`, CustomerLastName: `Smith`, CustomerAddress: `127 Market Street, Los Angeles, USA, 80182`, Salesperson: `Ben Jefferson`, OrderID: 1156, OrderDate: `7/16/2022`, ProductID: 132, ProductName: `Samsung Galaxy 22`, UnitPrice: 15440.77, Quantity: 5, ExtendedPrice: 77203.85, Freight: 1730.77, Discontinued: false, Region: `West`, Address: `127 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80182 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `150 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50154, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1373, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `150 Market Street, Philadelphia, USA, 50154`, Salesperson: `Max Jackson`, OrderID: 1592, OrderDate: `12/25/2022`, ProductID: 109, ProductName: `Mac Book Air`, UnitPrice: 25510.57, Quantity: 2, ExtendedPrice: 51021.14, Freight: 1350.57, Discontinued: false, Region: `North East`, Address: `150 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50154 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `163 Market Street`, ShipCity: `Miami`, ShipPostalCode: 50149, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1374, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `163 Market Street, Miami, USA, 50149`, Salesperson: `James Smith`, OrderID: 1504, OrderDate: `10/7/2022`, ProductID: 197, ProductName: `Mac Book Pro`, UnitPrice: 23590.87, Quantity: 5, ExtendedPrice: 117954.35, Freight: 460.87, Discontinued: false, Region: `South East`, Address: `163 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 50149 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `114 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90131, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1375, CustomerName: `Pamela Smith`, CustomerFirstName: `Pamela`, CustomerLastName: `Smith`, CustomerAddress: `114 Wall Street, Philadelphia, USA, 90131`, Salesperson: `Nancy Jefferson`, OrderID: 1121, OrderDate: `11/25/2022`, ProductID: 148, ProductName: `Samsung Note`, UnitPrice: 13030.29, Quantity: 2, ExtendedPrice: 26060.58, Freight: 1140.29, Discontinued: false, Region: `South East`, Address: `114 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90131 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `167 Market Street`, ShipCity: `Huston`, ShipPostalCode: 50058, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1376, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `167 Market Street, Huston, USA, 50058`, Salesperson: `Martin Black`, OrderID: 1455, OrderDate: `8/6/2022`, ProductID: 196, ProductName: `IPhone`, UnitPrice: 13870.29, Quantity: 5, ExtendedPrice: 69351.45, Freight: 1080.29, Discontinued: false, Region: `West`, Address: `167 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 50058 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `181 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80062, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1377, CustomerName: `Anna Jackson`, CustomerFirstName: `Anna`, CustomerLastName: `Jackson`, CustomerAddress: `181 Market Street, Los Angeles, USA, 80062`, Salesperson: `Anna Black`, OrderID: 1320, OrderDate: `1/15/2022`, ProductID: 109, ProductName: `Mac Book Pro`, UnitPrice: 10990.65, Quantity: 3, ExtendedPrice: 32971.95, Freight: 310.65, Discontinued: false, Region: `North East`, Address: `181 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80062 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `113 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 80140, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1378, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `113 Wall Street, Miami, USA, 80140`, Salesperson: `Anna Jackson`, OrderID: 1936, OrderDate: `12/2/2022`, ProductID: 171, ProductName: `IPhone`, UnitPrice: 9550.78, Quantity: 4, ExtendedPrice: 38203.12, Freight: 1380.78, Discontinued: false, Region: `South East`, Address: `113 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 80140 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `188 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80072, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1379, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `188 Wall Street, Los Angeles, USA, 80072`, Salesperson: `Nancy Watson`, OrderID: 1767, OrderDate: `10/23/2022`, ProductID: 130, ProductName: `IPhone`, UnitPrice: 21500.21, Quantity: 2, ExtendedPrice: 43000.42, Freight: 1680.21, Discontinued: true, Region: `South East`, Address: `188 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80072 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `177 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80160, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1380, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `177 Market Street, Huston, USA, 80160`, Salesperson: `Max Jackson`, OrderID: 1118, OrderDate: `6/2/2022`, ProductID: 111, ProductName: `Mac Book Air`, UnitPrice: 20100.73, Quantity: 4, ExtendedPrice: 80402.92, Freight: 540.73, Discontinued: false, Region: `West`, Address: `177 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80160 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `139 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 80074, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1381, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `139 Wall Street, Miami, USA, 80074`, Salesperson: `Nancy Madison`, OrderID: 1269, OrderDate: `6/12/2022`, ProductID: 192, ProductName: `Mac Book Air`, UnitPrice: 17200.34, Quantity: 4, ExtendedPrice: 68801.36, Freight: 1280.34, Discontinued: false, Region: `North East`, Address: `139 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 80074 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `115 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90081, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1382, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `115 Wall Street, Los Angeles, USA, 90081`, Salesperson: `James Jackson`, OrderID: 1587, OrderDate: `4/9/2022`, ProductID: 187, ProductName: `Samsung Note`, UnitPrice: 24670.86, Quantity: 2, ExtendedPrice: 49341.72, Freight: 1360.86, Discontinued: false, Region: `North East`, Address: `115 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90081 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `130 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 50175, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1383, CustomerName: `Anna Jefferson`, CustomerFirstName: `Anna`, CustomerLastName: `Jefferson`, CustomerAddress: `130 Wall Street, Miami, USA, 50175`, Salesperson: `Mike Smith`, OrderID: 1632, OrderDate: `3/3/2022`, ProductID: 197, ProductName: `IPad`, UnitPrice: 9780.24, Quantity: 3, ExtendedPrice: 29340.72, Freight: 1420.24, Discontinued: false, Region: `West`, Address: `130 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 50175 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `110 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90171, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1384, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `110 Main Street, Philadelphia, USA, 90171`, Salesperson: `Max Jefferson`, OrderID: 1400, OrderDate: `6/24/2022`, ProductID: 123, ProductName: `IPhone`, UnitPrice: 12010.77, Quantity: 2, ExtendedPrice: 24021.54, Freight: 560.77, Discontinued: false, Region: `North East`, Address: `110 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90171 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `111 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80086, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1385, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `111 Market Street, Huston, USA, 80086`, Salesperson: `Ben Watson`, OrderID: 1040, OrderDate: `8/25/2022`, ProductID: 192, ProductName: `Samsung Note`, UnitPrice: 27920.64, Quantity: 5, ExtendedPrice: 139603.2, Freight: 250.64, Discontinued: false, Region: `South East`, Address: `111 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80086 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `132 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60121, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1386, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `132 Wall Street, Huston, USA, 60121`, Salesperson: `Anna Watson`, OrderID: 1445, OrderDate: `6/12/2022`, ProductID: 139, ProductName: `IPhone`, UnitPrice: 17460.46, Quantity: 3, ExtendedPrice: 52381.38, Freight: 1060.46, Discontinued: false, Region: `South East`, Address: `132 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60121 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `150 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60127, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1387, CustomerName: `Ben Smith`, CustomerFirstName: `Ben`, CustomerLastName: `Smith`, CustomerAddress: `150 Main Street, Philadelphia, USA, 60127`, Salesperson: `Max Smith`, OrderID: 1803, OrderDate: `4/15/2022`, ProductID: 172, ProductName: `Mac Book Air`, UnitPrice: 17820.62, Quantity: 4, ExtendedPrice: 71282.48, Freight: 1150.62, Discontinued: false, Region: `West`, Address: `150 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60127 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `173 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50160, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1388, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `173 Market Street, Philadelphia, USA, 50160`, Salesperson: `Nancy Jefferson`, OrderID: 1719, OrderDate: `4/23/2022`, ProductID: 134, ProductName: `IPhone`, UnitPrice: 22780.47, Quantity: 3, ExtendedPrice: 68341.41, Freight: 500.47, Discontinued: false, Region: `West`, Address: `173 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50160 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `120 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60064, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1389, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `120 Wall Street, Philadelphia, USA, 60064`, Salesperson: `Martin Jefferson`, OrderID: 1706, OrderDate: `5/15/2022`, ProductID: 151, ProductName: `Samsung Note`, UnitPrice: 16430.61, Quantity: 3, ExtendedPrice: 49291.83, Freight: 1650.61, Discontinued: true, Region: `West`, Address: `120 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60064 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `109 Main Street`, ShipCity: `Huston`, ShipPostalCode: 70200, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1390, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `109 Main Street, Huston, USA, 70200`, Salesperson: `James Watson`, OrderID: 1318, OrderDate: `6/10/2022`, ProductID: 163, ProductName: `IPad`, UnitPrice: 26710.76, Quantity: 4, ExtendedPrice: 106843.04, Freight: 330.76, Discontinued: false, Region: `South East`, Address: `109 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 70200 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `161 Main Street`, ShipCity: `Huston`, ShipPostalCode: 60159, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1391, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `161 Main Street, Huston, USA, 60159`, Salesperson: `Ben Smith`, OrderID: 1322, OrderDate: `6/3/2022`, ProductID: 170, ProductName: `IPad`, UnitPrice: 18660.7, Quantity: 4, ExtendedPrice: 74642.8, Freight: 1480.7, Discontinued: false, Region: `North East`, Address: `161 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 60159 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `194 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60148, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1392, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `194 Main Street, Los Angeles, USA, 60148`, Salesperson: `Pamela Black`, OrderID: 1664, OrderDate: `9/11/2022`, ProductID: 131, ProductName: `Mac Book Pro`, UnitPrice: 16990.84, Quantity: 5, ExtendedPrice: 84954.2, Freight: 1870.84, Discontinued: false, Region: `West`, Address: `194 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60148 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `191 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60148, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1393, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `191 Main Street, Los Angeles, USA, 60148`, Salesperson: `Martin Jackson`, OrderID: 1995, OrderDate: `7/3/2022`, ProductID: 107, ProductName: `Mac Book Pro`, UnitPrice: 18490.66, Quantity: 2, ExtendedPrice: 36981.32, Freight: 690.66, Discontinued: false, Region: `West`, Address: `191 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60148 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `129 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80148, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1394, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `129 Wall Street, Philadelphia, USA, 80148`, Salesperson: `Ben Jefferson`, OrderID: 1344, OrderDate: `10/13/2022`, ProductID: 168, ProductName: `IPhone`, UnitPrice: 5870.82, Quantity: 5, ExtendedPrice: 29354.1, Freight: 400.82, Discontinued: false, Region: `West`, Address: `129 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80148 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `148 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70084, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1395, CustomerName: `Anna Jefferson`, CustomerFirstName: `Anna`, CustomerLastName: `Jefferson`, CustomerAddress: `148 Market Street, Philadelphia, USA, 70084`, Salesperson: `Martin Smith`, OrderID: 1602, OrderDate: `3/2/2022`, ProductID: 153, ProductName: `Samsung Note`, UnitPrice: 8490.68, Quantity: 3, ExtendedPrice: 25472.04, Freight: 1650.68, Discontinued: false, Region: `North East`, Address: `148 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70084 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `152 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 90101, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1396, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `152 Wall Street, Miami, USA, 90101`, Salesperson: `Ben Black`, OrderID: 1059, OrderDate: `4/12/2022`, ProductID: 164, ProductName: `Samsung Galaxy 22`, UnitPrice: 12460.5, Quantity: 3, ExtendedPrice: 37381.5, Freight: 280.5, Discontinued: false, Region: `North East`, Address: `152 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 90101 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `147 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50200, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1397, CustomerName: `Nancy Jackson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jackson`, CustomerAddress: `147 Market Street, Philadelphia, USA, 50200`, Salesperson: `Nancy Watson`, OrderID: 1159, OrderDate: `5/12/2022`, ProductID: 136, ProductName: `IPhone`, UnitPrice: 20790.46, Quantity: 4, ExtendedPrice: 83161.84, Freight: 780.46, Discontinued: false, Region: `North East`, Address: `147 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50200 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `106 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60064, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1398, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `106 Main Street, Miami, USA, 60064`, Salesperson: `Nancy Watson`, OrderID: 1646, OrderDate: `2/13/2022`, ProductID: 143, ProductName: `IPad`, UnitPrice: 19180.29, Quantity: 4, ExtendedPrice: 76721.16, Freight: 1760.29, Discontinued: false, Region: `North East`, Address: `106 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60064 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `112 Main Street`, ShipCity: `Miami`, ShipPostalCode: 90118, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1399, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `112 Main Street, Miami, USA, 90118`, Salesperson: `Martin Black`, OrderID: 1205, OrderDate: `9/24/2022`, ProductID: 109, ProductName: `IPad`, UnitPrice: 25950.86, Quantity: 4, ExtendedPrice: 103803.44, Freight: 1780.86, Discontinued: true, Region: `North East`, Address: `112 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 90118 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `135 Main Street`, ShipCity: `Huston`, ShipPostalCode: 80177, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1400, CustomerName: `Mike Watson`, CustomerFirstName: `Mike`, CustomerLastName: `Watson`, CustomerAddress: `135 Main Street, Huston, USA, 80177`, Salesperson: `Max Madison`, OrderID: 1619, OrderDate: `7/15/2022`, ProductID: 174, ProductName: `Mac Book Pro`, UnitPrice: 24890.31, Quantity: 2, ExtendedPrice: 49780.62, Freight: 1540.31, Discontinued: false, Region: `West`, Address: `135 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 80177 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `156 Main Street`, ShipCity: `Miami`, ShipPostalCode: 70110, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1401, CustomerName: `Max Smith`, CustomerFirstName: `Max`, CustomerLastName: `Smith`, CustomerAddress: `156 Main Street, Miami, USA, 70110`, Salesperson: `Anna Watson`, OrderID: 1160, OrderDate: `10/21/2022`, ProductID: 127, ProductName: `IPad`, UnitPrice: 18400.21, Quantity: 3, ExtendedPrice: 55200.63, Freight: 580.21, Discontinued: false, Region: `South East`, Address: `156 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 70110 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `124 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90077, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1402, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `124 Wall Street, Los Angeles, USA, 90077`, Salesperson: `Ben Jefferson`, OrderID: 1017, OrderDate: `7/21/2022`, ProductID: 160, ProductName: `Samsung Note`, UnitPrice: 15430.8, Quantity: 5, ExtendedPrice: 77154, Freight: 1660.8, Discontinued: false, Region: `North East`, Address: `124 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90077 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `144 Market Street`, ShipCity: `New York`, ShipPostalCode: 50110, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1403, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `144 Market Street, New York, USA, 50110`, Salesperson: `James Jefferson`, OrderID: 1990, OrderDate: `5/17/2022`, ProductID: 112, ProductName: `IPhone`, UnitPrice: 20040.37, Quantity: 3, ExtendedPrice: 60121.11, Freight: 1710.37, Discontinued: false, Region: `South East`, Address: `144 Market Street`, City: `New York`, Country: `USA`, PostalCode: 50110 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `105 Main Street`, ShipCity: `Miami`, ShipPostalCode: 80117, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1404, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `105 Main Street, Miami, USA, 80117`, Salesperson: `Max Watson`, OrderID: 1002, OrderDate: `10/25/2022`, ProductID: 119, ProductName: `Samsung Galaxy 22`, UnitPrice: 28760.88, Quantity: 5, ExtendedPrice: 143804.4, Freight: 1220.88, Discontinued: false, Region: `West`, Address: `105 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 80117 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `142 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90124, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1405, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `142 Main Street, Los Angeles, USA, 90124`, Salesperson: `James Madison`, OrderID: 1433, OrderDate: `7/22/2022`, ProductID: 158, ProductName: `Mac Book Pro`, UnitPrice: 17750.64, Quantity: 5, ExtendedPrice: 88753.2, Freight: 1300.64, Discontinued: false, Region: `West`, Address: `142 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90124 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `141 Market Street`, ShipCity: `Huston`, ShipPostalCode: 50115, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1406, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `141 Market Street, Huston, USA, 50115`, Salesperson: `Anna Watson`, OrderID: 1195, OrderDate: `8/12/2022`, ProductID: 124, ProductName: `Mac Book Pro`, UnitPrice: 22040.48, Quantity: 2, ExtendedPrice: 44080.96, Freight: 1260.48, Discontinued: false, Region: `North East`, Address: `141 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 50115 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `145 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70160, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1407, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `145 Main Street, Los Angeles, USA, 70160`, Salesperson: `Max Watson`, OrderID: 1486, OrderDate: `1/13/2022`, ProductID: 103, ProductName: `Mac Book Air`, UnitPrice: 29480.67, Quantity: 3, ExtendedPrice: 88442.01, Freight: 1810.67, Discontinued: false, Region: `North East`, Address: `145 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70160 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `106 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80149, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1408, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `106 Main Street, Los Angeles, USA, 80149`, Salesperson: `James Smith`, OrderID: 1646, OrderDate: `9/4/2022`, ProductID: 191, ProductName: `Mac Book Pro`, UnitPrice: 5890.71, Quantity: 5, ExtendedPrice: 29453.55, Freight: 670.71, Discontinued: false, Region: `North East`, Address: `106 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80149 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `171 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60182, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1409, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `171 Market Street, Los Angeles, USA, 60182`, Salesperson: `James Smith`, OrderID: 1839, OrderDate: `12/12/2022`, ProductID: 120, ProductName: `IPhone`, UnitPrice: 17510.64, Quantity: 5, ExtendedPrice: 87553.2, Freight: 1150.64, Discontinued: true, Region: `West`, Address: `171 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60182 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `195 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60122, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1410, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `195 Market Street, Los Angeles, USA, 60122`, Salesperson: `Martin Madison`, OrderID: 1925, OrderDate: `1/22/2022`, ProductID: 164, ProductName: `Mac Book Pro`, UnitPrice: 12920.58, Quantity: 2, ExtendedPrice: 25841.16, Freight: 690.58, Discontinued: false, Region: `West`, Address: `195 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60122 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `137 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 70152, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1411, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `137 Wall Street, Miami, USA, 70152`, Salesperson: `Anna Jackson`, OrderID: 1055, OrderDate: `12/9/2022`, ProductID: 198, ProductName: `IPad`, UnitPrice: 9640.43, Quantity: 4, ExtendedPrice: 38561.72, Freight: 1930.43, Discontinued: false, Region: `North East`, Address: `137 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 70152 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `129 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 50177, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1412, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `129 Wall Street, Miami, USA, 50177`, Salesperson: `Martin Smith`, OrderID: 1845, OrderDate: `10/21/2022`, ProductID: 142, ProductName: `IPad`, UnitPrice: 16040.31, Quantity: 3, ExtendedPrice: 48120.93, Freight: 1050.31, Discontinued: false, Region: `West`, Address: `129 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 50177 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `174 Main Street`, ShipCity: `Huston`, ShipPostalCode: 90080, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1413, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `174 Main Street, Huston, USA, 90080`, Salesperson: `Nancy Jefferson`, OrderID: 1560, OrderDate: `6/23/2022`, ProductID: 110, ProductName: `Mac Book Pro`, UnitPrice: 25850.87, Quantity: 4, ExtendedPrice: 103403.48, Freight: 940.87, Discontinued: false, Region: `West`, Address: `174 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 90080 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `139 Market Street`, ShipCity: `New York`, ShipPostalCode: 60178, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1414, CustomerName: `Nancy Jackson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jackson`, CustomerAddress: `139 Market Street, New York, USA, 60178`, Salesperson: `Pamela Jefferson`, OrderID: 1102, OrderDate: `2/18/2022`, ProductID: 154, ProductName: `Mac Book Air`, UnitPrice: 13210.48, Quantity: 4, ExtendedPrice: 52841.92, Freight: 960.48, Discontinued: false, Region: `South East`, Address: `139 Market Street`, City: `New York`, Country: `USA`, PostalCode: 60178 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `127 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60192, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1415, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `127 Wall Street, Los Angeles, USA, 60192`, Salesperson: `Ben Smith`, OrderID: 1570, OrderDate: `5/19/2022`, ProductID: 105, ProductName: `Samsung Note`, UnitPrice: 24890.59, Quantity: 5, ExtendedPrice: 124452.95, Freight: 1860.59, Discontinued: false, Region: `West`, Address: `127 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60192 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `186 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90145, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1416, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `186 Market Street, Philadelphia, USA, 90145`, Salesperson: `Mike Jefferson`, OrderID: 1872, OrderDate: `11/18/2022`, ProductID: 165, ProductName: `IPhone`, UnitPrice: 19720.85, Quantity: 2, ExtendedPrice: 39441.7, Freight: 690.85, Discontinued: false, Region: `South East`, Address: `186 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90145 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `198 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70160, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1417, CustomerName: `Anna Jackson`, CustomerFirstName: `Anna`, CustomerLastName: `Jackson`, CustomerAddress: `198 Main Street, Philadelphia, USA, 70160`, Salesperson: `Martin Madison`, OrderID: 1155, OrderDate: `11/1/2022`, ProductID: 138, ProductName: `IPhone`, UnitPrice: 12260.46, Quantity: 2, ExtendedPrice: 24520.92, Freight: 1680.46, Discontinued: false, Region: `West`, Address: `198 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70160 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `110 Main Street`, ShipCity: `New York`, ShipPostalCode: 80119, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1418, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `110 Main Street, New York, USA, 80119`, Salesperson: `Anna Black`, OrderID: 1600, OrderDate: `8/12/2022`, ProductID: 118, ProductName: `Mac Book Air`, UnitPrice: 9840.45, Quantity: 4, ExtendedPrice: 39361.8, Freight: 1410.45, Discontinued: false, Region: `South East`, Address: `110 Main Street`, City: `New York`, Country: `USA`, PostalCode: 80119 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `187 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50082, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1419, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `187 Main Street, Los Angeles, USA, 50082`, Salesperson: `Pamela Watson`, OrderID: 1451, OrderDate: `12/10/2022`, ProductID: 144, ProductName: `Samsung Galaxy 22`, UnitPrice: 25180.7, Quantity: 2, ExtendedPrice: 50361.4, Freight: 560.7, Discontinued: true, Region: `North East`, Address: `187 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50082 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `121 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60178, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1420, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `121 Main Street, Miami, USA, 60178`, Salesperson: `Ben Jackson`, OrderID: 1294, OrderDate: `2/18/2022`, ProductID: 168, ProductName: `Samsung Galaxy 22`, UnitPrice: 18670.31, Quantity: 5, ExtendedPrice: 93351.55, Freight: 1410.31, Discontinued: false, Region: `West`, Address: `121 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60178 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `185 Wall Street`, ShipCity: `New York`, ShipPostalCode: 50177, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1421, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `185 Wall Street, New York, USA, 50177`, Salesperson: `James Watson`, OrderID: 1095, OrderDate: `6/16/2022`, ProductID: 182, ProductName: `Samsung Note`, UnitPrice: 10450.44, Quantity: 5, ExtendedPrice: 52252.2, Freight: 1030.44, Discontinued: false, Region: `West`, Address: `185 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 50177 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `177 Market Street`, ShipCity: `New York`, ShipPostalCode: 90081, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1422, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `177 Market Street, New York, USA, 90081`, Salesperson: `Pamela Smith`, OrderID: 1333, OrderDate: `5/21/2022`, ProductID: 159, ProductName: `Mac Book Air`, UnitPrice: 23900.49, Quantity: 5, ExtendedPrice: 119502.45, Freight: 1700.49, Discontinued: false, Region: `South East`, Address: `177 Market Street`, City: `New York`, Country: `USA`, PostalCode: 90081 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `106 Market Street`, ShipCity: `Miami`, ShipPostalCode: 70099, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1423, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `106 Market Street, Miami, USA, 70099`, Salesperson: `Pamela Jackson`, OrderID: 1147, OrderDate: `6/13/2022`, ProductID: 174, ProductName: `Mac Book Pro`, UnitPrice: 29460.63, Quantity: 2, ExtendedPrice: 58921.26, Freight: 1280.63, Discontinued: false, Region: `North East`, Address: `106 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 70099 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `179 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80150, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1424, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `179 Main Street, Philadelphia, USA, 80150`, Salesperson: `James Jefferson`, OrderID: 1595, OrderDate: `7/19/2022`, ProductID: 183, ProductName: `Samsung Galaxy 22`, UnitPrice: 19060.64, Quantity: 5, ExtendedPrice: 95303.2, Freight: 980.64, Discontinued: false, Region: `North East`, Address: `179 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80150 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `142 Main Street`, ShipCity: `Huston`, ShipPostalCode: 90100, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1425, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `142 Main Street, Huston, USA, 90100`, Salesperson: `Martin Black`, OrderID: 1061, OrderDate: `4/4/2022`, ProductID: 118, ProductName: `IPad`, UnitPrice: 17400.83, Quantity: 2, ExtendedPrice: 34801.66, Freight: 370.83, Discontinued: false, Region: `North East`, Address: `142 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 90100 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `189 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90144, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1426, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `189 Main Street, Philadelphia, USA, 90144`, Salesperson: `Martin Smith`, OrderID: 1114, OrderDate: `2/13/2022`, ProductID: 146, ProductName: `Samsung Galaxy 22`, UnitPrice: 16860.57, Quantity: 5, ExtendedPrice: 84302.85, Freight: 1050.57, Discontinued: false, Region: `North East`, Address: `189 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90144 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `130 Wall Street`, ShipCity: `New York`, ShipPostalCode: 90175, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1427, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `130 Wall Street, New York, USA, 90175`, Salesperson: `Nancy Black`, OrderID: 1716, OrderDate: `11/6/2022`, ProductID: 157, ProductName: `IPad`, UnitPrice: 19570.85, Quantity: 3, ExtendedPrice: 58712.55, Freight: 1620.85, Discontinued: false, Region: `North East`, Address: `130 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 90175 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `144 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80153, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1428, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `144 Market Street, Philadelphia, USA, 80153`, Salesperson: `Mike Smith`, OrderID: 1523, OrderDate: `8/5/2022`, ProductID: 139, ProductName: `Samsung Galaxy 22`, UnitPrice: 5100.26, Quantity: 3, ExtendedPrice: 15300.78, Freight: 1630.26, Discontinued: false, Region: `North East`, Address: `144 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80153 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `175 Wall Street`, ShipCity: `New York`, ShipPostalCode: 50150, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1429, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `175 Wall Street, New York, USA, 50150`, Salesperson: `James Jefferson`, OrderID: 1027, OrderDate: `12/7/2022`, ProductID: 151, ProductName: `IPad`, UnitPrice: 18940.75, Quantity: 4, ExtendedPrice: 75763, Freight: 1130.75, Discontinued: true, Region: `North East`, Address: `175 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 50150 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `152 Wall Street`, ShipCity: `New York`, ShipPostalCode: 70091, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1430, CustomerName: `Max Smith`, CustomerFirstName: `Max`, CustomerLastName: `Smith`, CustomerAddress: `152 Wall Street, New York, USA, 70091`, Salesperson: `Ben Smith`, OrderID: 1626, OrderDate: `1/1/2022`, ProductID: 145, ProductName: `IPhone`, UnitPrice: 29800.74, Quantity: 4, ExtendedPrice: 119202.96, Freight: 1440.74, Discontinued: false, Region: `West`, Address: `152 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 70091 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `127 Main Street`, ShipCity: `Miami`, ShipPostalCode: 90099, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1431, CustomerName: `Martin Jackson`, CustomerFirstName: `Martin`, CustomerLastName: `Jackson`, CustomerAddress: `127 Main Street, Miami, USA, 90099`, Salesperson: `Anna Smith`, OrderID: 1789, OrderDate: `10/15/2022`, ProductID: 139, ProductName: `Mac Book Air`, UnitPrice: 16220.23, Quantity: 2, ExtendedPrice: 32440.46, Freight: 1170.23, Discontinued: false, Region: `West`, Address: `127 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 90099 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `157 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 70162, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1432, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `157 Wall Street, Huston, USA, 70162`, Salesperson: `Martin Madison`, OrderID: 1622, OrderDate: `6/6/2022`, ProductID: 133, ProductName: `Samsung Note`, UnitPrice: 7410.73, Quantity: 4, ExtendedPrice: 29642.92, Freight: 1660.73, Discontinued: false, Region: `South East`, Address: `157 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 70162 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `159 Market Street`, ShipCity: `New York`, ShipPostalCode: 50198, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1433, CustomerName: `Mike Smith`, CustomerFirstName: `Mike`, CustomerLastName: `Smith`, CustomerAddress: `159 Market Street, New York, USA, 50198`, Salesperson: `Mike Smith`, OrderID: 1961, OrderDate: `9/7/2022`, ProductID: 120, ProductName: `Mac Book Pro`, UnitPrice: 9150.59, Quantity: 3, ExtendedPrice: 27451.77, Freight: 550.59, Discontinued: false, Region: `South East`, Address: `159 Market Street`, City: `New York`, Country: `USA`, PostalCode: 50198 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `109 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60160, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1434, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `109 Market Street, Philadelphia, USA, 60160`, Salesperson: `Mike Madison`, OrderID: 1868, OrderDate: `2/5/2022`, ProductID: 131, ProductName: `Samsung Galaxy 22`, UnitPrice: 20400.46, Quantity: 2, ExtendedPrice: 40800.92, Freight: 1640.46, Discontinued: false, Region: `South East`, Address: `109 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60160 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `138 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80164, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1435, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `138 Wall Street, Philadelphia, USA, 80164`, Salesperson: `Mike Smith`, OrderID: 1223, OrderDate: `7/4/2022`, ProductID: 199, ProductName: `Samsung Note`, UnitPrice: 23980.42, Quantity: 5, ExtendedPrice: 119902.1, Freight: 410.42, Discontinued: false, Region: `West`, Address: `138 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80164 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `164 Main Street`, ShipCity: `New York`, ShipPostalCode: 90183, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1436, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `164 Main Street, New York, USA, 90183`, Salesperson: `James Watson`, OrderID: 1766, OrderDate: `7/14/2022`, ProductID: 160, ProductName: `Samsung Note`, UnitPrice: 12280.79, Quantity: 2, ExtendedPrice: 24561.58, Freight: 1140.79, Discontinued: false, Region: `West`, Address: `164 Main Street`, City: `New York`, Country: `USA`, PostalCode: 90183 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `187 Main Street`, ShipCity: `New York`, ShipPostalCode: 80053, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1437, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `187 Main Street, New York, USA, 80053`, Salesperson: `Martin Watson`, OrderID: 1602, OrderDate: `12/25/2022`, ProductID: 112, ProductName: `Samsung Galaxy 22`, UnitPrice: 14860.39, Quantity: 5, ExtendedPrice: 74301.95, Freight: 1920.39, Discontinued: false, Region: `West`, Address: `187 Main Street`, City: `New York`, Country: `USA`, PostalCode: 80053 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `197 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 50076, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1438, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `197 Wall Street, Miami, USA, 50076`, Salesperson: `James Jefferson`, OrderID: 1281, OrderDate: `3/18/2022`, ProductID: 102, ProductName: `Samsung Galaxy 22`, UnitPrice: 11120.87, Quantity: 2, ExtendedPrice: 22241.74, Freight: 720.87, Discontinued: false, Region: `North East`, Address: `197 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 50076 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `127 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90067, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1439, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `127 Market Street, Los Angeles, USA, 90067`, Salesperson: `James Madison`, OrderID: 1736, OrderDate: `2/4/2022`, ProductID: 172, ProductName: `IPad`, UnitPrice: 20090.62, Quantity: 4, ExtendedPrice: 80362.48, Freight: 630.62, Discontinued: true, Region: `West`, Address: `127 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90067 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `150 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90161, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1440, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `150 Market Street, Philadelphia, USA, 90161`, Salesperson: `Anna Watson`, OrderID: 1683, OrderDate: `5/15/2022`, ProductID: 192, ProductName: `Mac Book Air`, UnitPrice: 7270.76, Quantity: 3, ExtendedPrice: 21812.28, Freight: 1880.76, Discontinued: false, Region: `West`, Address: `150 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90161 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `128 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70131, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1441, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `128 Market Street, Huston, USA, 70131`, Salesperson: `Ben Smith`, OrderID: 1652, OrderDate: `11/16/2022`, ProductID: 107, ProductName: `Samsung Note`, UnitPrice: 23290.38, Quantity: 2, ExtendedPrice: 46580.76, Freight: 400.38, Discontinued: false, Region: `West`, Address: `128 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70131 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `151 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 70185, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1442, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `151 Wall Street, Miami, USA, 70185`, Salesperson: `Nancy Black`, OrderID: 1385, OrderDate: `6/12/2022`, ProductID: 110, ProductName: `Mac Book Pro`, UnitPrice: 14390.77, Quantity: 2, ExtendedPrice: 28781.54, Freight: 1600.77, Discontinued: false, Region: `West`, Address: `151 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 70185 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `183 Wall Street`, ShipCity: `New York`, ShipPostalCode: 60080, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1443, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `183 Wall Street, New York, USA, 60080`, Salesperson: `Mike Madison`, OrderID: 1158, OrderDate: `3/11/2022`, ProductID: 172, ProductName: `Samsung Note`, UnitPrice: 25230.25, Quantity: 3, ExtendedPrice: 75690.75, Freight: 340.25, Discontinued: false, Region: `South East`, Address: `183 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 60080 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `137 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80117, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1444, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `137 Wall Street, Philadelphia, USA, 80117`, Salesperson: `Anna Black`, OrderID: 1310, OrderDate: `9/5/2022`, ProductID: 157, ProductName: `IPad`, UnitPrice: 21970.48, Quantity: 2, ExtendedPrice: 43940.96, Freight: 1420.48, Discontinued: false, Region: `South East`, Address: `137 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80117 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `158 Wall Street`, ShipCity: `New York`, ShipPostalCode: 80138, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1445, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `158 Wall Street, New York, USA, 80138`, Salesperson: `Martin Madison`, OrderID: 1385, OrderDate: `5/9/2022`, ProductID: 127, ProductName: `Samsung Galaxy 22`, UnitPrice: 12610.37, Quantity: 5, ExtendedPrice: 63051.85, Freight: 1410.37, Discontinued: false, Region: `West`, Address: `158 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 80138 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `145 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70189, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1446, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `145 Wall Street, Los Angeles, USA, 70189`, Salesperson: `Mike Jackson`, OrderID: 1725, OrderDate: `9/6/2022`, ProductID: 112, ProductName: `Mac Book Pro`, UnitPrice: 20520.26, Quantity: 4, ExtendedPrice: 82081.04, Freight: 710.26, Discontinued: false, Region: `West`, Address: `145 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70189 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `155 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 60114, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1447, CustomerName: `Pamela Black`, CustomerFirstName: `Pamela`, CustomerLastName: `Black`, CustomerAddress: `155 Wall Street, Miami, USA, 60114`, Salesperson: `Martin Madison`, OrderID: 1520, OrderDate: `6/15/2022`, ProductID: 174, ProductName: `IPhone`, UnitPrice: 16730.88, Quantity: 2, ExtendedPrice: 33461.76, Freight: 1020.88, Discontinued: false, Region: `South East`, Address: `155 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 60114 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `184 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80059, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1448, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `184 Main Street, Los Angeles, USA, 80059`, Salesperson: `Max Smith`, OrderID: 1764, OrderDate: `4/4/2022`, ProductID: 147, ProductName: `Mac Book Air`, UnitPrice: 29810.31, Quantity: 2, ExtendedPrice: 59620.62, Freight: 1200.31, Discontinued: false, Region: `West`, Address: `184 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80059 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `195 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 80052, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1449, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `195 Wall Street, Huston, USA, 80052`, Salesperson: `Max Jefferson`, OrderID: 1325, OrderDate: `8/23/2022`, ProductID: 186, ProductName: `Mac Book Pro`, UnitPrice: 19780.82, Quantity: 3, ExtendedPrice: 59342.46, Freight: 720.82, Discontinued: true, Region: `South East`, Address: `195 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 80052 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `168 Market Street`, ShipCity: `Miami`, ShipPostalCode: 70196, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1450, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `168 Market Street, Miami, USA, 70196`, Salesperson: `Martin Madison`, OrderID: 1216, OrderDate: `9/9/2022`, ProductID: 134, ProductName: `Samsung Galaxy 22`, UnitPrice: 25110.88, Quantity: 2, ExtendedPrice: 50221.76, Freight: 1040.88, Discontinued: false, Region: `West`, Address: `168 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 70196 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `196 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70064, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1451, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `196 Wall Street, Philadelphia, USA, 70064`, Salesperson: `Nancy Madison`, OrderID: 1924, OrderDate: `9/9/2022`, ProductID: 108, ProductName: `IPhone`, UnitPrice: 14220.86, Quantity: 2, ExtendedPrice: 28441.72, Freight: 1220.86, Discontinued: false, Region: `West`, Address: `196 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70064 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `125 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 90158, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1452, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `125 Wall Street, Huston, USA, 90158`, Salesperson: `Martin Jackson`, OrderID: 1952, OrderDate: `8/23/2022`, ProductID: 177, ProductName: `Samsung Galaxy 22`, UnitPrice: 11460.48, Quantity: 3, ExtendedPrice: 34381.44, Freight: 1140.48, Discontinued: false, Region: `West`, Address: `125 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 90158 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `113 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50104, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1453, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `113 Wall Street, Los Angeles, USA, 50104`, Salesperson: `Mike Black`, OrderID: 1388, OrderDate: `7/12/2022`, ProductID: 142, ProductName: `Samsung Galaxy 22`, UnitPrice: 25460.85, Quantity: 2, ExtendedPrice: 50921.7, Freight: 360.85, Discontinued: false, Region: `West`, Address: `113 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50104 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `176 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90069, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1454, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `176 Market Street, Philadelphia, USA, 90069`, Salesperson: `Max Jefferson`, OrderID: 1197, OrderDate: `9/3/2022`, ProductID: 132, ProductName: `IPhone`, UnitPrice: 5760.67, Quantity: 3, ExtendedPrice: 17282.01, Freight: 1350.67, Discontinued: false, Region: `South East`, Address: `176 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90069 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `142 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50098, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1455, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `142 Market Street, Los Angeles, USA, 50098`, Salesperson: `Nancy Smith`, OrderID: 1808, OrderDate: `3/2/2022`, ProductID: 145, ProductName: `Mac Book Pro`, UnitPrice: 18130.62, Quantity: 3, ExtendedPrice: 54391.86, Freight: 660.62, Discontinued: false, Region: `North East`, Address: `142 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50098 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `184 Main Street`, ShipCity: `New York`, ShipPostalCode: 50125, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1456, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `184 Main Street, New York, USA, 50125`, Salesperson: `Pamela Jackson`, OrderID: 1098, OrderDate: `9/11/2022`, ProductID: 106, ProductName: `Samsung Galaxy 22`, UnitPrice: 29450.81, Quantity: 5, ExtendedPrice: 147254.05, Freight: 820.81, Discontinued: false, Region: `North East`, Address: `184 Main Street`, City: `New York`, Country: `USA`, PostalCode: 50125 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `190 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70130, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1457, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `190 Main Street, Philadelphia, USA, 70130`, Salesperson: `Max Madison`, OrderID: 1942, OrderDate: `9/1/2022`, ProductID: 136, ProductName: `Mac Book Pro`, UnitPrice: 28790.51, Quantity: 3, ExtendedPrice: 86371.53, Freight: 460.51, Discontinued: false, Region: `North East`, Address: `190 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70130 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `121 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70093, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1458, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `121 Main Street, Los Angeles, USA, 70093`, Salesperson: `James Black`, OrderID: 1815, OrderDate: `6/16/2022`, ProductID: 144, ProductName: `Mac Book Pro`, UnitPrice: 9060.8, Quantity: 3, ExtendedPrice: 27182.4, Freight: 1990.8, Discontinued: false, Region: `North East`, Address: `121 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70093 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `111 Main Street`, ShipCity: `Huston`, ShipPostalCode: 50082, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1459, CustomerName: `Nancy Smith`, CustomerFirstName: `Nancy`, CustomerLastName: `Smith`, CustomerAddress: `111 Main Street, Huston, USA, 50082`, Salesperson: `Max Black`, OrderID: 1551, OrderDate: `4/6/2022`, ProductID: 130, ProductName: `Mac Book Pro`, UnitPrice: 29370.56, Quantity: 3, ExtendedPrice: 88111.68, Freight: 1970.56, Discontinued: true, Region: `North East`, Address: `111 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 50082 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `128 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90155, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1460, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `128 Market Street, Los Angeles, USA, 90155`, Salesperson: `James Smith`, OrderID: 1660, OrderDate: `6/6/2022`, ProductID: 175, ProductName: `Samsung Galaxy 22`, UnitPrice: 29130.58, Quantity: 2, ExtendedPrice: 58261.16, Freight: 340.58, Discontinued: false, Region: `West`, Address: `128 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90155 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `159 Main Street`, ShipCity: `Huston`, ShipPostalCode: 60166, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1461, CustomerName: `Mike Smith`, CustomerFirstName: `Mike`, CustomerLastName: `Smith`, CustomerAddress: `159 Main Street, Huston, USA, 60166`, Salesperson: `Mike Black`, OrderID: 1860, OrderDate: `5/20/2022`, ProductID: 197, ProductName: `Samsung Galaxy 22`, UnitPrice: 18630.66, Quantity: 4, ExtendedPrice: 74522.64, Freight: 1540.66, Discontinued: false, Region: `South East`, Address: `159 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 60166 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `115 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60171, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1462, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `115 Market Street, Los Angeles, USA, 60171`, Salesperson: `Mike Jackson`, OrderID: 1312, OrderDate: `9/12/2022`, ProductID: 182, ProductName: `Samsung Note`, UnitPrice: 19120.8, Quantity: 3, ExtendedPrice: 57362.4, Freight: 470.8, Discontinued: false, Region: `North East`, Address: `115 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60171 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `184 Main Street`, ShipCity: `New York`, ShipPostalCode: 80169, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1463, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `184 Main Street, New York, USA, 80169`, Salesperson: `Nancy Madison`, OrderID: 1738, OrderDate: `1/7/2022`, ProductID: 161, ProductName: `Mac Book Air`, UnitPrice: 9160.8, Quantity: 2, ExtendedPrice: 18321.6, Freight: 1850.8, Discontinued: false, Region: `West`, Address: `184 Main Street`, City: `New York`, Country: `USA`, PostalCode: 80169 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `147 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60068, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1464, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `147 Main Street, Miami, USA, 60068`, Salesperson: `Nancy Madison`, OrderID: 1981, OrderDate: `5/23/2022`, ProductID: 110, ProductName: `Samsung Note`, UnitPrice: 19100.54, Quantity: 5, ExtendedPrice: 95502.7, Freight: 1720.54, Discontinued: false, Region: `North East`, Address: `147 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60068 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `143 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 80182, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1465, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `143 Wall Street, Huston, USA, 80182`, Salesperson: `Anna Watson`, OrderID: 1067, OrderDate: `12/19/2022`, ProductID: 103, ProductName: `Samsung Note`, UnitPrice: 28900.7, Quantity: 3, ExtendedPrice: 86702.1, Freight: 770.7, Discontinued: false, Region: `North East`, Address: `143 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 80182 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `170 Main Street`, ShipCity: `New York`, ShipPostalCode: 60155, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1466, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `170 Main Street, New York, USA, 60155`, Salesperson: `James Jackson`, OrderID: 1746, OrderDate: `9/2/2022`, ProductID: 148, ProductName: `IPad`, UnitPrice: 25390.4, Quantity: 5, ExtendedPrice: 126952, Freight: 550.4, Discontinued: false, Region: `South East`, Address: `170 Main Street`, City: `New York`, Country: `USA`, PostalCode: 60155 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `111 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60079, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1467, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `111 Wall Street, Philadelphia, USA, 60079`, Salesperson: `Nancy Jefferson`, OrderID: 1334, OrderDate: `5/23/2022`, ProductID: 129, ProductName: `Mac Book Air`, UnitPrice: 14520.65, Quantity: 2, ExtendedPrice: 29041.3, Freight: 1250.65, Discontinued: false, Region: `West`, Address: `111 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60079 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `153 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 90056, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1468, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `153 Wall Street, Huston, USA, 90056`, Salesperson: `Anna Jackson`, OrderID: 1230, OrderDate: `4/15/2022`, ProductID: 128, ProductName: `IPhone`, UnitPrice: 14930.82, Quantity: 5, ExtendedPrice: 74654.1, Freight: 1470.82, Discontinued: false, Region: `North East`, Address: `153 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 90056 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `143 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50070, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1469, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `143 Main Street, Philadelphia, USA, 50070`, Salesperson: `Nancy Madison`, OrderID: 1761, OrderDate: `1/23/2022`, ProductID: 136, ProductName: `IPad`, UnitPrice: 10810.43, Quantity: 4, ExtendedPrice: 43241.72, Freight: 1910.43, Discontinued: true, Region: `South East`, Address: `143 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50070 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `174 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80126, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1470, CustomerName: `Pamela Black`, CustomerFirstName: `Pamela`, CustomerLastName: `Black`, CustomerAddress: `174 Market Street, Philadelphia, USA, 80126`, Salesperson: `Martin Madison`, OrderID: 1217, OrderDate: `7/7/2022`, ProductID: 170, ProductName: `IPhone`, UnitPrice: 16660.27, Quantity: 4, ExtendedPrice: 66641.08, Freight: 790.27, Discontinued: false, Region: `North East`, Address: `174 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80126 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `189 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60161, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1471, CustomerName: `Max Smith`, CustomerFirstName: `Max`, CustomerLastName: `Smith`, CustomerAddress: `189 Wall Street, Los Angeles, USA, 60161`, Salesperson: `Max Madison`, OrderID: 1882, OrderDate: `11/5/2022`, ProductID: 141, ProductName: `Mac Book Air`, UnitPrice: 18210.39, Quantity: 3, ExtendedPrice: 54631.17, Freight: 990.39, Discontinued: false, Region: `South East`, Address: `189 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60161 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `193 Market Street`, ShipCity: `Huston`, ShipPostalCode: 50163, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1472, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `193 Market Street, Huston, USA, 50163`, Salesperson: `Mike Black`, OrderID: 1855, OrderDate: `5/3/2022`, ProductID: 188, ProductName: `Samsung Note`, UnitPrice: 9860.59, Quantity: 5, ExtendedPrice: 49302.95, Freight: 1610.59, Discontinued: false, Region: `South East`, Address: `193 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 50163 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `128 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60162, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1473, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `128 Main Street, Miami, USA, 60162`, Salesperson: `Nancy Black`, OrderID: 1087, OrderDate: `4/5/2022`, ProductID: 166, ProductName: `Mac Book Air`, UnitPrice: 12090.33, Quantity: 4, ExtendedPrice: 48361.32, Freight: 1020.33, Discontinued: false, Region: `West`, Address: `128 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60162 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `179 Wall Street`, ShipCity: `New York`, ShipPostalCode: 50104, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1474, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `179 Wall Street, New York, USA, 50104`, Salesperson: `Martin Black`, OrderID: 1121, OrderDate: `12/2/2022`, ProductID: 169, ProductName: `IPad`, UnitPrice: 18020.22, Quantity: 4, ExtendedPrice: 72080.88, Freight: 830.22, Discontinued: false, Region: `West`, Address: `179 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 50104 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `168 Market Street`, ShipCity: `Huston`, ShipPostalCode: 60117, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1475, CustomerName: `Martin Jackson`, CustomerFirstName: `Martin`, CustomerLastName: `Jackson`, CustomerAddress: `168 Market Street, Huston, USA, 60117`, Salesperson: `James Madison`, OrderID: 1965, OrderDate: `10/17/2022`, ProductID: 166, ProductName: `Mac Book Pro`, UnitPrice: 6770.39, Quantity: 5, ExtendedPrice: 33851.95, Freight: 240.39, Discontinued: false, Region: `West`, Address: `168 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 60117 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `195 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 50103, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1476, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `195 Wall Street, Huston, USA, 50103`, Salesperson: `Ben Jackson`, OrderID: 1241, OrderDate: `2/3/2022`, ProductID: 159, ProductName: `Samsung Note`, UnitPrice: 14250.8, Quantity: 5, ExtendedPrice: 71254, Freight: 1870.8, Discontinued: false, Region: `North East`, Address: `195 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 50103 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `192 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70069, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1477, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `192 Main Street, Los Angeles, USA, 70069`, Salesperson: `Pamela Watson`, OrderID: 1440, OrderDate: `6/4/2022`, ProductID: 191, ProductName: `Samsung Galaxy 22`, UnitPrice: 23000.87, Quantity: 3, ExtendedPrice: 69002.61, Freight: 1680.87, Discontinued: false, Region: `North East`, Address: `192 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70069 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `139 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50143, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1478, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `139 Wall Street, Philadelphia, USA, 50143`, Salesperson: `Nancy Madison`, OrderID: 1507, OrderDate: `10/10/2022`, ProductID: 176, ProductName: `Mac Book Air`, UnitPrice: 25490.8, Quantity: 3, ExtendedPrice: 76472.4, Freight: 830.8, Discontinued: false, Region: `North East`, Address: `139 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50143 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `131 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 80108, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1479, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `131 Wall Street, Miami, USA, 80108`, Salesperson: `Ben Jefferson`, OrderID: 1702, OrderDate: `10/16/2022`, ProductID: 174, ProductName: `Mac Book Pro`, UnitPrice: 28620.58, Quantity: 4, ExtendedPrice: 114482.32, Freight: 950.58, Discontinued: true, Region: `South East`, Address: `131 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 80108 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `127 Market Street`, ShipCity: `Huston`, ShipPostalCode: 90097, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1480, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `127 Market Street, Huston, USA, 90097`, Salesperson: `Pamela Black`, OrderID: 1875, OrderDate: `7/24/2022`, ProductID: 164, ProductName: `Mac Book Air`, UnitPrice: 6750.85, Quantity: 2, ExtendedPrice: 13501.7, Freight: 1160.85, Discontinued: false, Region: `North East`, Address: `127 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 90097 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `190 Market Street`, ShipCity: `New York`, ShipPostalCode: 70142, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1481, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `190 Market Street, New York, USA, 70142`, Salesperson: `Pamela Smith`, OrderID: 1373, OrderDate: `5/19/2022`, ProductID: 108, ProductName: `Samsung Galaxy 22`, UnitPrice: 17230.33, Quantity: 3, ExtendedPrice: 51690.99, Freight: 1270.33, Discontinued: false, Region: `West`, Address: `190 Market Street`, City: `New York`, Country: `USA`, PostalCode: 70142 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `179 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90146, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1482, CustomerName: `Nancy Jackson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jackson`, CustomerAddress: `179 Main Street, Philadelphia, USA, 90146`, Salesperson: `James Jefferson`, OrderID: 1452, OrderDate: `5/16/2022`, ProductID: 170, ProductName: `Mac Book Air`, UnitPrice: 8320.5, Quantity: 4, ExtendedPrice: 33282, Freight: 510.5, Discontinued: false, Region: `North East`, Address: `179 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90146 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `183 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90165, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1483, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `183 Main Street, Los Angeles, USA, 90165`, Salesperson: `Max Watson`, OrderID: 1835, OrderDate: `9/8/2022`, ProductID: 198, ProductName: `Samsung Note`, UnitPrice: 13800.6, Quantity: 3, ExtendedPrice: 41401.8, Freight: 700.6, Discontinued: false, Region: `West`, Address: `183 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90165 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `108 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50151, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1484, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `108 Main Street, Philadelphia, USA, 50151`, Salesperson: `Mike Jefferson`, OrderID: 1448, OrderDate: `11/16/2022`, ProductID: 103, ProductName: `Samsung Note`, UnitPrice: 21840.84, Quantity: 5, ExtendedPrice: 109204.2, Freight: 1500.84, Discontinued: false, Region: `South East`, Address: `108 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50151 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `150 Market Street`, ShipCity: `New York`, ShipPostalCode: 80053, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1485, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `150 Market Street, New York, USA, 80053`, Salesperson: `Anna Black`, OrderID: 1160, OrderDate: `6/7/2022`, ProductID: 156, ProductName: `IPhone`, UnitPrice: 24480.65, Quantity: 2, ExtendedPrice: 48961.3, Freight: 860.65, Discontinued: false, Region: `West`, Address: `150 Market Street`, City: `New York`, Country: `USA`, PostalCode: 80053 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `121 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 50087, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1486, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `121 Wall Street, Miami, USA, 50087`, Salesperson: `Anna Jackson`, OrderID: 1277, OrderDate: `8/16/2022`, ProductID: 108, ProductName: `Mac Book Air`, UnitPrice: 27370.31, Quantity: 2, ExtendedPrice: 54740.62, Freight: 350.31, Discontinued: false, Region: `North East`, Address: `121 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 50087 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `187 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90094, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1487, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `187 Market Street, Miami, USA, 90094`, Salesperson: `Pamela Jefferson`, OrderID: 1895, OrderDate: `7/18/2022`, ProductID: 138, ProductName: `IPad`, UnitPrice: 15270.6, Quantity: 3, ExtendedPrice: 45811.8, Freight: 1920.6, Discontinued: false, Region: `West`, Address: `187 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90094 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `142 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50160, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1488, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `142 Main Street, Los Angeles, USA, 50160`, Salesperson: `Max Smith`, OrderID: 1559, OrderDate: `11/2/2022`, ProductID: 129, ProductName: `Samsung Note`, UnitPrice: 19940.22, Quantity: 5, ExtendedPrice: 99701.1, Freight: 540.22, Discontinued: false, Region: `West`, Address: `142 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50160 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `190 Market Street`, ShipCity: `Miami`, ShipPostalCode: 60164, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1489, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `190 Market Street, Miami, USA, 60164`, Salesperson: `Nancy Jefferson`, OrderID: 1144, OrderDate: `5/7/2022`, ProductID: 169, ProductName: `Samsung Galaxy 22`, UnitPrice: 29010.82, Quantity: 4, ExtendedPrice: 116043.28, Freight: 1870.82, Discontinued: true, Region: `North East`, Address: `190 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 60164 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `180 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70181, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1490, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `180 Main Street, Philadelphia, USA, 70181`, Salesperson: `Ben Black`, OrderID: 1396, OrderDate: `2/24/2022`, ProductID: 137, ProductName: `IPhone`, UnitPrice: 15420.8, Quantity: 4, ExtendedPrice: 61683.2, Freight: 1870.8, Discontinued: false, Region: `West`, Address: `180 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70181 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `152 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60139, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1491, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `152 Market Street, Philadelphia, USA, 60139`, Salesperson: `Mike Madison`, OrderID: 1733, OrderDate: `9/23/2022`, ProductID: 117, ProductName: `Mac Book Pro`, UnitPrice: 26430.79, Quantity: 5, ExtendedPrice: 132153.95, Freight: 270.79, Discontinued: false, Region: `North East`, Address: `152 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60139 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `176 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60072, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1492, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `176 Main Street, Miami, USA, 60072`, Salesperson: `Mike Black`, OrderID: 1473, OrderDate: `6/23/2022`, ProductID: 175, ProductName: `Samsung Note`, UnitPrice: 18440.43, Quantity: 4, ExtendedPrice: 73761.72, Freight: 1770.43, Discontinued: false, Region: `West`, Address: `176 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60072 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `120 Main Street`, ShipCity: `Miami`, ShipPostalCode: 80161, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1493, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `120 Main Street, Miami, USA, 80161`, Salesperson: `Ben Watson`, OrderID: 1674, OrderDate: `5/1/2022`, ProductID: 175, ProductName: `Samsung Galaxy 22`, UnitPrice: 23490.67, Quantity: 3, ExtendedPrice: 70472.01, Freight: 820.67, Discontinued: false, Region: `West`, Address: `120 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 80161 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `127 Main Street`, ShipCity: `Miami`, ShipPostalCode: 90183, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1494, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `127 Main Street, Miami, USA, 90183`, Salesperson: `Pamela Smith`, OrderID: 1279, OrderDate: `2/9/2022`, ProductID: 108, ProductName: `Samsung Note`, UnitPrice: 7560.83, Quantity: 4, ExtendedPrice: 30243.32, Freight: 470.83, Discontinued: false, Region: `West`, Address: `127 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 90183 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `129 Market Street`, ShipCity: `New York`, ShipPostalCode: 50067, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1495, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `129 Market Street, New York, USA, 50067`, Salesperson: `Nancy Jackson`, OrderID: 1502, OrderDate: `9/25/2022`, ProductID: 175, ProductName: `Samsung Note`, UnitPrice: 24020.51, Quantity: 4, ExtendedPrice: 96082.04, Freight: 1320.51, Discontinued: false, Region: `South East`, Address: `129 Market Street`, City: `New York`, Country: `USA`, PostalCode: 50067 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `118 Market Street`, ShipCity: `New York`, ShipPostalCode: 70088, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1496, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `118 Market Street, New York, USA, 70088`, Salesperson: `Anna Watson`, OrderID: 1672, OrderDate: `7/8/2022`, ProductID: 178, ProductName: `Mac Book Air`, UnitPrice: 9150.21, Quantity: 2, ExtendedPrice: 18300.42, Freight: 470.21, Discontinued: false, Region: `West`, Address: `118 Market Street`, City: `New York`, Country: `USA`, PostalCode: 70088 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `146 Main Street`, ShipCity: `Huston`, ShipPostalCode: 60135, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1497, CustomerName: `Mike Watson`, CustomerFirstName: `Mike`, CustomerLastName: `Watson`, CustomerAddress: `146 Main Street, Huston, USA, 60135`, Salesperson: `Anna Black`, OrderID: 1449, OrderDate: `4/4/2022`, ProductID: 194, ProductName: `IPhone`, UnitPrice: 19390.48, Quantity: 4, ExtendedPrice: 77561.92, Freight: 1350.48, Discontinued: false, Region: `North East`, Address: `146 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 60135 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `146 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80195, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1498, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `146 Market Street, Huston, USA, 80195`, Salesperson: `Ben Black`, OrderID: 1100, OrderDate: `7/1/2022`, ProductID: 103, ProductName: `IPhone`, UnitPrice: 12430.89, Quantity: 3, ExtendedPrice: 37292.67, Freight: 1060.89, Discontinued: false, Region: `North East`, Address: `146 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80195 }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/grids/grid/cell-merge-custom-sample/src/index.css b/samples/grids/grid/cell-merge-custom-sample/src/index.css new file mode 100644 index 0000000000..544c74b366 --- /dev/null +++ b/samples/grids/grid/cell-merge-custom-sample/src/index.css @@ -0,0 +1,7 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + +.wrapper { + justify-content: space-evenly; + margin: 1rem; +} \ No newline at end of file diff --git a/samples/grids/grid/cell-merge-custom-sample/src/index.tsx b/samples/grids/grid/cell-merge-custom-sample/src/index.tsx new file mode 100644 index 0000000000..4bd71c47fa --- /dev/null +++ b/samples/grids/grid/cell-merge-custom-sample/src/index.tsx @@ -0,0 +1,68 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; + +import { IgrGridMergeStrategy } from 'igniteui-react-grids'; +import { IgrGrid, IgrColumn } from 'igniteui-react-grids'; + +import 'igniteui-react-grids/grids/themes/light/bootstrap.css'; + +export default function App() { + const cellMergeMode = "always"; + + const data = [ + { ActionID: "1", ProjectName: "IOT Switch Project", ActionName: "Data Import", Type: "Request", Priority: "Low", Status: "New", Created: new Date("2017-03-25"), LastEdit: new Date("2017-05-08") }, + { ActionID: "2", ProjectName: "IOT Switch Project", ActionName: "Reports", Type: "Request", Priority: "Low", Status: "New", Created: new Date("2017-03-14"), LastEdit: new Date("2017-03-15") }, + { ActionID: "4", ProjectName: "IOT Switch Project", ActionName: "Multiple Settings", Type: "Request", Priority: "Low", Status: "Rejected", Created: new Date("2017-04-05"), LastEdit: new Date("2017-04-30") }, + { ActionID: "3", ProjectName: "IOT Switch Project", ActionName: "Data Archiving", Type: "Request", Priority: "Medium", Status: "New", Created: new Date("2017-08-21"), LastEdit: new Date("2017-09-08") }, + { ActionID: "5", ProjectName: "IOT Switch Project", ActionName: "Main Menu: Return Button", Type: "Bug", Priority: "Medium", Status: "Fixed", Created: new Date("2017-06-17"), LastEdit: new Date("2017-07-03") }, + { ActionID: "6", ProjectName: "IOT Switch Project", ActionName: "Auto Turn Off", Type: "Bug", Priority: "Medium", Status: "New", Created: new Date("2017-04-12"), LastEdit: new Date("2017-05-27") }, + { ActionID: "7", ProjectName: "VR Device", ActionName: "Higher DRI", Type: "Request", Priority: "Medium", Status: "New", Created: new Date("2016-08-11"), LastEdit: new Date("2016-08-11") }, + { ActionID: "8", ProjectName: "VR Device", ActionName: "Accessible Power Button", Type: "Request", Priority: "Medium", Status: "New", Created: new Date("2016-07-13"), LastEdit: new Date("2016-07-14") }, + { ActionID: "9", ProjectName: "VR Device", ActionName: "Additional options", Type: "Request", Priority: "High", Status: "Rejected", Created: new Date("2016-09-02"), LastEdit: new Date("2016-09-08") }, + { ActionID: "10", ProjectName: "VR Device", ActionName: "Data Log", Type: "Request", Priority: "High", Status: "New", Created: new Date("2017-03-25"), LastEdit: new Date("2017-05-08") }, + { ActionID: "12", ProjectName: "VR Device", ActionName: "Motion Blur", Type: "Bug", Priority: "High", Status: "New", Created: new Date("2017-03-25"), LastEdit: new Date("2017-05-08") }, + { ActionID: "11", ProjectName: "VR Device", ActionName: "Left Sensors Delay", Type: "Bug", Priority: "High", Status: "Fixed", Created: new Date("2017-03-25"), LastEdit: new Date("2017-05-08") } + ]; + + const perProjectMergeStrategy = new PerProjectMergeStrategy(); + + return ( + <> +
+
+ + + + + + + + + + + + + + + +
+
+ + ); +} + +// rendering above component in the React DOM +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render(); + +export class PerProjectMergeStrategy implements IgrGridMergeStrategy { + public comparer(prevRecord: any, record: any, field: string): boolean { + const a = prevRecord[field]; + const b = record[field]; + const projA = prevRecord["ProjectName"]; + const projB = record["ProjectName"]; + return a === b && projA === projB; + } +} \ No newline at end of file diff --git a/samples/grids/grid/cell-merge-custom-sample/src/react-app-env.d.ts b/samples/grids/grid/cell-merge-custom-sample/src/react-app-env.d.ts new file mode 100644 index 0000000000..6431bc5fc6 --- /dev/null +++ b/samples/grids/grid/cell-merge-custom-sample/src/react-app-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/samples/grids/grid/cell-merge-custom-sample/tsconfig.json b/samples/grids/grid/cell-merge-custom-sample/tsconfig.json new file mode 100644 index 0000000000..8c0d146f95 --- /dev/null +++ b/samples/grids/grid/cell-merge-custom-sample/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react-jsx", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/grids/grid/cell-merge.zip b/samples/grids/grid/cell-merge.zip new file mode 100644 index 0000000000000000000000000000000000000000..c16d05362414e4e8a0ab2b25b0c0373fc7dfc7c2 GIT binary patch literal 200559 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
V`Ol^%B8GEQx`HOTW=RykjSzV zdA!ttDVjq|l0phQAJi+hkeE%p&GKnrs@7};baM^4cVYALl`e<&UtgocHx*5}$_N5K zdJ3NS^eT`tR}+evsL38$EG79^u-3Sp&LC4)fh-J(3Fn#R=xDE|{+NlsuF|8IM zgn+iJmIZzonqqA6gxgoPX z$|Cc%8I1;2$}MWr3)yZ#4$5{ED!A;>>jkp`;5gn5A|~V(fi1~v8`u`d?c@l-n?;yb z-v0DuGB9UTz}(ofv;8*n;{(8bT_~Y@J((RHoWmHmi{eZh0w4Z?kF@%9`gRWBrISdS zmD0R^&~4OA;qhoqrh1_+lmr*i$cx%#NHNM`S$N%X63pk~U{II%dN>OR>Ud<(*7K}L zU}kfFBd3+5ezkB}FG0A+%)O+lSa93Up?VgAtx7#)^ zI6&abJMe*UALE7qb_%V~v(cObn0CtzPZ|u(_S=y%?s9dlb=lIbYh60Tv_7-bVs4lR zHcvgvYv{E2S!dtn{60|suy-6|PSCZsHfM(T?~lqk@> zmc{AW^)8~%4hjUl-DP&B4uKEboMGNFJcdOgZe|kHrZ6kRgF&qX$63D1rW(8w zjWF9u8nr4a23@a*`v6DKd3G`}R>~rXkkS-c|Dfw)ryrpVBC`RW==U29=fqh%0RNdt z@pt0)DEa%o=RG}l$ysrFpCR*}sp**k1irXA!?fQl75n-KWs@P!%0O7j8Py@2)0rY3 zTeS#Fl4>vqN0#!*$~+uL^BnIOgpZAVmYhrndLnC`>+ID1BFSJLt)nGlEIa1kyexU} zGJ$8EcHJKY-;`4R=RCV=@EA&zb$A1CGx^$(;(8=RhC zh2khvIhgL0fJ-D{(HBYsa#gt(jJkW zF9ZMq9AT%+iwT49(*O{PA|NefcTA(%D$gf^4sqv#xmBXt+kDH_w7)^gV0|--( zs8m1BbS==;1Wh@0G>0US+d7Bk49-T2+*-zWcinl%(_Ivbp6Xb#TKhKeTq}Ips zfE|fvO9t5snCx~lc0?!3(xT>jWUx)jmPaJXXXyf^M9b5N37#G5d@DH>51871s;3)o zrPmA)NJ0~D;Z-f-)sej4?0ctu-$$$LvOIrsDYgrLF}e1!pPV%QOd$85_=!FQK3_k` zr5Au_yo+gW%FhjbwCU0fzb+4U=8@Y&RE*}4tWvyO9()1gcFd;fl$}hgO?`B5IB~Pm z5c9S@0eR){y8}t*1EiH~vADx+k@Y%=@_A1m@|7dpPhakH7!yL>R0i^i`uii95UN)h z$F`*=b*K6v?D*qsNH3(#a=YgDQmGFD>u@{-Bp*yMYoAMuj4Z|}ytejhHE6O$v>dhZ zYP#rP2ip_U4BPLIG*b*M>ECRe7w)N-uDUaBJ*eRYZ3uk)55j$qWoXu-%tfnJ5Ons| z-z18GH^E+Kn%FTW8J&~Em;?B!)-kiPwJmDGVyNg37IPecJ^mQRO1xb%YUpW;jWA|b zit90ldkxIejSuc88;I_K2Cg|!9= z_&Jk?z=wa}nN%;&Pe+c>A!f_VYI~^n=+ab3qiFVXnIwYM)@~SdyI(S_>p6SIhoT+8 zn2@0+&Q{;W{ANWQJSHQ%15D~F=7vi>WRmt9j!}E z9KT8?|D+H?M`$Ju0jdZDr~sKHLocFtG?VWh$(CdL`N(i{rsIev+qo_G1tK(V=b7?wj>Csml*8e6dVnF2km&GkTp1yorbYZ{7?)R5J0*Aos z1^57Nh)aCE8t+NrL@Nlevq#JQI9l@4{6GcJB)Ds79C#<((;8h5PHl;>D zqBOw{kSq*{M|C`(_j3<|(3N7q2K;5d!aD`j!`bcc9&U$z%9H*A0R+Bmf#^Wb`Pkr0 zO~sApjh!I2WSu-Sf~D!! z*^2RgKHc#ZHpbPZCrU!v?|q#t(1uUe{L-ClYywjz1iFQ=8Ak3G2;`w_-B4kxWoxzk zv^}SN?<6AX6Y5)g8K|}dFJK1gZCigoC0SjA?!O(p!ON+S;0_9GhWv#IF7 z3v0QjL}*PQ$ZR~O4=5fKtKvYAhYH90*%$~yYHH-^WOl44>X(V%`{s0S6y9yy>*zA= z?w`*Oz#;JQ7kq>^WELN?Zo;e%8@|9hrJQ>w0zr!Dl3oL?f>JGd;zUGZ1&uhZA%#kh zBUljJQ#FUX*3VbHv4X`pV+v!6XKB6e5v%Ih=BolPc`jM?E#Snc>cWT~ zYUdh-14cpR+<^0F5V+P2z`iNFQk5?cHAazp>Qw#tY?DFJ>p8{9C6Vay`dp2NJhR~) zHLTL?%ok}CIo74N@O!naUiW;cY4wIecbuF1mdr1UWe{)TsUG`W%hAHup&0%BYVh&B zYo{{aj>+{ed46zxlx9_sCPs9%ygons>jxHrcjU@*??J|^JG}4Tv04psx64y_+5&}0 z&}(v_KKI$QCAy%}^0qo!OOt5A4^nR?mc0H)+cs)^%$y7Pg# zRWF04sg_PWumsiHgX5ou=Hc1(Q+^$mAD>C*8S^1C_iNg9nNtLp>Uu`>D8v343(*^- z5cr*&!Pnxcw0)}g$0 z&YFNC0%Jd9pp18pj=~hZJ8sr`#C(;h?Y7+izude-4t|iqA0_ZVfvKOg)$7G@=G{k2 zZV$VnG@5XoSk5(iR(K{C=xIQ)z$8Kem)xUrp*n@E^ih%l`eYt&8e?Hl)(NJ=Zgdbw zIw9w-r+FieMH1Pk-#ZKz{n%l!U#cj5Ku3CY=aQ#BP+$80ocidT`uEi>UU1q!Wfs4} z2Z1l!ADYu@-Rv9Pkr>G&bkD`-bZ5bMPK3ar5a>$q$70KrjF+u)PFZhjteQfhuVdYe z+~R`X9wL&Mc+{#^(3)#}#pNUTAF?2Qa85Qs8C7$PX{ap19YyTd+q;kbAPb3{Bp?K|LPUwa_65l7oVo# z2WB8O684E_nR|6-_=UX97b|q+v1mmwHPY9N+L^pHt(cQOi`;&HIQUe|&yQ($3d;$} zvO?0>Jm4OvbLg9%7jQ66h+dg+8l-dcxt_1iA~flO6e$|g zu6(1ktg+44ZNbAbL&O`Vn~a)--p^?5Ko4A&Kjh@P-gp*D_{Hrrpitz4HDLU`j^D^X z1pVnh&TsaC6=CQO;AM%)tLNps0=z5XKhFFA4I=zgCZl_%`%4i$toG=cboa!^yjOJe z402Gc3@UW3IfZ;3US&?E39u!YDKHgCHC>Hn#ypaIuY>%B9+7(kHm5itOQP8N{Gz8K zi8X5`Fl>cqCdnLSrdnPH6=Aktr(!u};aGK1I!_wVn`v+@Wq<8(`RtGL`R{)F51{*x zYWtr*<{s()3>X4mG{7^sK{6j3C&|in4=1VO1Ee?$)aYl-oHJ?Y2cBONxB#5OrBk4%(!tzhDdW`onxD%A5jB z>ezIO@;YMJW!3uOJFQX1pxIZBbtcWzn}d^hUxRd`)Tn~Q1GDrZG<>J~VTL+_-Ltk1 z#S4MApMe+TgH~iRRr{@YGFRPfj+d3go4g>_BSZ`VhT=U8Pe>-0o7`1UafD1djhyuE znw9-YU!9IgIPPb=&3=jGi8Tf`_D?fAmm)iw*+6z4d{C-4Wz$ zt#v)FON`0tHo2^uM%Y7#X%N|BSQ-Zw+n!EM+(NNYVwQT6mz#CCp|EAnm7ZeuMQqH% zvlOcKqZO;}$Gg+?{@~>AeyLfzu2cMj1=A~B5cs-1Tv&zueAHIfJXn<_TTM6e1PCO% zi&%F|#xRGCdlNnq^>Xh|XOW{%Q=vsH+;A4wez)0}>TbUr<87O)MLOTj`%}to_UkWZ z)T@m8=dkG&83cZFV>pXWIm%#Sg^)-`(yTq^EigjFmm_N2MiLE-mPNkZX3IPwoS4RU zsNb~9xS7ffJQrC7z%++E1SxxrJew@7B?fHxg!_UVhJga`LrcNa48HkRSJf62rHS{r zKSl3cCcd}w{B!u>6-o&F?(N~cfk`I6>c`j==IDjW`*7-Udzmc6+N8&HssjgE^96I- z*OL((Vzz9z^RWlys?XCRd?KAB z{NCN+0?jUoSmpBVl1w`}%|rjd?kG(3PP7)bC9|ja6cT_`E(JF3Af3%}BZ`a46W7Oi z+m$moSU?aqX%944X!5-B64=(iU=Q_1t$ZHF0rTuptbgd0R~$NQQa`-nIWH)D*JKSG z#~Bg$KX`s#u|VL{)$mz}^Obn=2}*&8NW~Z1RhQ5!bf?q;*JSp7Kc*vZCYe;RWakF& z%≦̸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�*<(TnG9>{_lnB)C{FILTV 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

J_gxww_Woqu@ZVh~z+Z@3_jk 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%0ABpw~upnqy-KiX$MR1sgALP@dYpB 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 YlsKDM*?_Unzz2lKfzdUI6PT$O0B+vZi~s-t literal 0 HcmV?d00001 diff --git a/samples/grids/grid/cell-merge/.eslintrc.js b/samples/grids/grid/cell-merge/.eslintrc.js new file mode 100644 index 0000000000..9d283f6407 --- /dev/null +++ b/samples/grids/grid/cell-merge/.eslintrc.js @@ -0,0 +1,76 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-var": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/grids/grid/cell-merge/ReadMe.md b/samples/grids/grid/cell-merge/ReadMe.md new file mode 100644 index 0000000000..2a66601832 --- /dev/null +++ b/samples/grids/grid/cell-merge/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Clipboard Operations feature using [Grid](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/grids/grid/clipboard-operations +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/grids/grid/cell-merge/package.json b/samples/grids/grid/cell-merge/package.json new file mode 100644 index 0000000000..7141bab0b8 --- /dev/null +++ b/samples/grids/grid/cell-merge/package.json @@ -0,0 +1,49 @@ +{ + "name": "example-ignite-ui-react", + "description": "This project provides example of using Ignite UI for React components", + "author": "Infragistics", + "version": "1.4.0", + "license": "", + "homepage": ".", + "private": true, + "scripts": { + "start": "set PORT=4200 && react-scripts --max_old_space_size=10240 start", + "build": "react-scripts --max_old_space_size=10240 build ", + "test": "react-scripts test --env=jsdom", + "eject": "react-scripts eject", + "lint": "eslint ./src/**/*.{ts,tsx}" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "19.3.0-rc.1", + "igniteui-react-core": "^19.0.2-beta.2", + "igniteui-react-datasources": "^19.0.2-beta.2", + "igniteui-react-grids": "19.3.0-rc.1", + "igniteui-react-inputs": "^19.0.2-beta.2", + "igniteui-react-layouts": "^19.0.2-beta.2", + "igniteui-webcomponents": "^6.2.0", + "lit-html": "^3.2.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-scripts": "^5.0.1", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^18.11.7", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "eslint": "^8.33.0", + "eslint-config-react": "^1.1.7", + "eslint-plugin-react": "^7.20.0", + "react-app-rewired": "^2.2.1", + "typescript": "^4.8.4", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/grids/grid/cell-merge/public/index.html b/samples/grids/grid/cell-merge/public/index.html new file mode 100644 index 0000000000..e2d3265576 --- /dev/null +++ b/samples/grids/grid/cell-merge/public/index.html @@ -0,0 +1,11 @@ + + + + Sample | Ignite UI | React | infragistics + + + + +

+ + \ No newline at end of file diff --git a/samples/grids/grid/cell-merge/sandbox.config.json b/samples/grids/grid/cell-merge/sandbox.config.json new file mode 100644 index 0000000000..07f53508eb --- /dev/null +++ b/samples/grids/grid/cell-merge/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/grids/grid/cell-merge/src/InvoicesData.ts b/samples/grids/grid/cell-merge/src/InvoicesData.ts new file mode 100644 index 0000000000..3d4f85aded --- /dev/null +++ b/samples/grids/grid/cell-merge/src/InvoicesData.ts @@ -0,0 +1,544 @@ +export class InvoicesDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public ShipName: string; + public ShipAddress: string; + public ShipCity: string; + public ShipPostalCode: number; + public ShipCountry: string; + public ShipRegion: string; + public ShipperName: string; + public CustomerID: number; + public CustomerName: string; + public CustomerFirstName: string; + public CustomerLastName: string; + public CustomerAddress: string; + public Salesperson: string; + public OrderID: number; + public OrderDate: string; + public ProductID: number; + public ProductName: string; + public UnitPrice: number; + public Quantity: number; + public ExtendedPrice: number; + public Freight: number; + public Discontinued: boolean; + public Region: string; + public Address: string; + public City: string; + public Country: string; + public PostalCode: number; + +} +export class InvoicesData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `124 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 60098, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1000, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `124 Wall Street, Miami, USA, 60098`, Salesperson: `Nancy Jefferson`, OrderID: 1931, OrderDate: `3/14/2022`, ProductID: 189, ProductName: `IPad`, UnitPrice: 16150.61, Quantity: 3, ExtendedPrice: 48451.83, Freight: 980.61, Discontinued: false, Region: `South East`, Address: `124 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 60098 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `162 Main Street`, ShipCity: `Miami`, ShipPostalCode: 80193, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1001, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `162 Main Street, Miami, USA, 80193`, Salesperson: `Anna Smith`, OrderID: 1163, OrderDate: `5/22/2022`, ProductID: 138, ProductName: `Mac Book Pro`, UnitPrice: 18520.59, Quantity: 4, ExtendedPrice: 74082.36, Freight: 850.59, Discontinued: false, Region: `West`, Address: `162 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 80193 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `164 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 50111, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1002, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `164 Wall Street, Miami, USA, 50111`, Salesperson: `Martin Watson`, OrderID: 1230, OrderDate: `2/9/2022`, ProductID: 118, ProductName: `Mac Book Air`, UnitPrice: 25310.39, Quantity: 3, ExtendedPrice: 75931.17, Freight: 210.39, Discontinued: false, Region: `West`, Address: `164 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 50111 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `124 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90123, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1003, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `124 Market Street, Philadelphia, USA, 90123`, Salesperson: `Anna Black`, OrderID: 1176, OrderDate: `6/3/2022`, ProductID: 169, ProductName: `Samsung Galaxy 22`, UnitPrice: 29890.86, Quantity: 4, ExtendedPrice: 119563.44, Freight: 800.86, Discontinued: false, Region: `South East`, Address: `124 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90123 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `181 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90095, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1004, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `181 Market Street, Miami, USA, 90095`, Salesperson: `Max Black`, OrderID: 1382, OrderDate: `1/10/2022`, ProductID: 185, ProductName: `Samsung Note`, UnitPrice: 7810.61, Quantity: 2, ExtendedPrice: 15621.22, Freight: 1790.61, Discontinued: false, Region: `West`, Address: `181 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90095 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `188 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50149, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1005, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `188 Wall Street, Los Angeles, USA, 50149`, Salesperson: `Martin Jefferson`, OrderID: 1864, OrderDate: `8/18/2022`, ProductID: 168, ProductName: `Samsung Galaxy 22`, UnitPrice: 9370.76, Quantity: 4, ExtendedPrice: 37483.04, Freight: 970.76, Discontinued: false, Region: `North East`, Address: `188 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50149 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `174 Market Street`, ShipCity: `Huston`, ShipPostalCode: 90112, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1006, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `174 Market Street, Huston, USA, 90112`, Salesperson: `Nancy Smith`, OrderID: 1502, OrderDate: `6/13/2022`, ProductID: 199, ProductName: `IPhone`, UnitPrice: 20830.47, Quantity: 2, ExtendedPrice: 41660.94, Freight: 1530.47, Discontinued: false, Region: `West`, Address: `174 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 90112 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `134 Market Street`, ShipCity: `Miami`, ShipPostalCode: 50083, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1007, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `134 Market Street, Miami, USA, 50083`, Salesperson: `Mike Jefferson`, OrderID: 1305, OrderDate: `10/21/2022`, ProductID: 185, ProductName: `Mac Book Air`, UnitPrice: 7320.44, Quantity: 2, ExtendedPrice: 14640.88, Freight: 630.44, Discontinued: false, Region: `West`, Address: `134 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 50083 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `177 Main Street`, ShipCity: `New York`, ShipPostalCode: 70185, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1008, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `177 Main Street, New York, USA, 70185`, Salesperson: `Pamela Watson`, OrderID: 1725, OrderDate: `5/7/2022`, ProductID: 133, ProductName: `Mac Book Air`, UnitPrice: 11240.72, Quantity: 3, ExtendedPrice: 33722.16, Freight: 420.72, Discontinued: false, Region: `South East`, Address: `177 Main Street`, City: `New York`, Country: `USA`, PostalCode: 70185 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `169 Main Street`, ShipCity: `Miami`, ShipPostalCode: 90183, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1009, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `169 Main Street, Miami, USA, 90183`, Salesperson: `Anna Watson`, OrderID: 1977, OrderDate: `10/14/2022`, ProductID: 178, ProductName: `IPhone`, UnitPrice: 6460.55, Quantity: 3, ExtendedPrice: 19381.65, Freight: 370.55, Discontinued: true, Region: `South East`, Address: `169 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 90183 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `151 Market Street`, ShipCity: `New York`, ShipPostalCode: 80160, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1010, CustomerName: `James Jackson`, CustomerFirstName: `James`, CustomerLastName: `Jackson`, CustomerAddress: `151 Market Street, New York, USA, 80160`, Salesperson: `Nancy Black`, OrderID: 1666, OrderDate: `12/6/2022`, ProductID: 140, ProductName: `Mac Book Pro`, UnitPrice: 7940.82, Quantity: 2, ExtendedPrice: 15881.64, Freight: 1670.82, Discontinued: false, Region: `South East`, Address: `151 Market Street`, City: `New York`, Country: `USA`, PostalCode: 80160 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `147 Main Street`, ShipCity: `Miami`, ShipPostalCode: 80183, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1011, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `147 Main Street, Miami, USA, 80183`, Salesperson: `Mike Madison`, OrderID: 1059, OrderDate: `5/14/2022`, ProductID: 174, ProductName: `Samsung Note`, UnitPrice: 14650.56, Quantity: 2, ExtendedPrice: 29301.12, Freight: 1770.56, Discontinued: false, Region: `West`, Address: `147 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 80183 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `134 Main Street`, ShipCity: `New York`, ShipPostalCode: 80066, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1012, CustomerName: `Mike Watson`, CustomerFirstName: `Mike`, CustomerLastName: `Watson`, CustomerAddress: `134 Main Street, New York, USA, 80066`, Salesperson: `Mike Black`, OrderID: 1851, OrderDate: `7/24/2022`, ProductID: 175, ProductName: `IPhone`, UnitPrice: 7870.39, Quantity: 2, ExtendedPrice: 15740.78, Freight: 360.39, Discontinued: false, Region: `West`, Address: `134 Main Street`, City: `New York`, Country: `USA`, PostalCode: 80066 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `159 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80096, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1013, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `159 Market Street, Los Angeles, USA, 80096`, Salesperson: `Anna Madison`, OrderID: 1451, OrderDate: `10/4/2022`, ProductID: 188, ProductName: `Mac Book Pro`, UnitPrice: 13920.38, Quantity: 4, ExtendedPrice: 55681.52, Freight: 1140.38, Discontinued: false, Region: `North East`, Address: `159 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80096 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `187 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 60144, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1014, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `187 Wall Street, Miami, USA, 60144`, Salesperson: `Ben Jefferson`, OrderID: 1331, OrderDate: `4/4/2022`, ProductID: 119, ProductName: `IPhone`, UnitPrice: 6940.73, Quantity: 5, ExtendedPrice: 34703.65, Freight: 640.73, Discontinued: false, Region: `West`, Address: `187 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 60144 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `158 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60063, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1015, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `158 Wall Street, Huston, USA, 60063`, Salesperson: `Martin Jefferson`, OrderID: 1609, OrderDate: `9/6/2022`, ProductID: 171, ProductName: `IPhone`, UnitPrice: 29080.28, Quantity: 2, ExtendedPrice: 58160.56, Freight: 1810.28, Discontinued: false, Region: `South East`, Address: `158 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60063 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `168 Main Street`, ShipCity: `Huston`, ShipPostalCode: 60184, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1016, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `168 Main Street, Huston, USA, 60184`, Salesperson: `Martin Watson`, OrderID: 1772, OrderDate: `3/20/2022`, ProductID: 152, ProductName: `Mac Book Air`, UnitPrice: 28350.9, Quantity: 5, ExtendedPrice: 141754.5, Freight: 1290.9, Discontinued: false, Region: `South East`, Address: `168 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 60184 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `116 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60129, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1017, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `116 Main Street, Miami, USA, 60129`, Salesperson: `Nancy Smith`, OrderID: 1792, OrderDate: `9/1/2022`, ProductID: 182, ProductName: `Samsung Note`, UnitPrice: 13730.78, Quantity: 4, ExtendedPrice: 54923.12, Freight: 740.78, Discontinued: false, Region: `North East`, Address: `116 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60129 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `116 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80090, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1018, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `116 Market Street, Los Angeles, USA, 80090`, Salesperson: `Anna Madison`, OrderID: 1285, OrderDate: `10/21/2022`, ProductID: 157, ProductName: `Mac Book Pro`, UnitPrice: 8120.36, Quantity: 3, ExtendedPrice: 24361.08, Freight: 410.36, Discontinued: false, Region: `West`, Address: `116 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80090 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `135 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90101, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1019, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `135 Wall Street, Philadelphia, USA, 90101`, Salesperson: `Mike Madison`, OrderID: 1205, OrderDate: `12/22/2022`, ProductID: 153, ProductName: `Mac Book Pro`, UnitPrice: 11830.22, Quantity: 2, ExtendedPrice: 23660.44, Freight: 330.22, Discontinued: true, Region: `North East`, Address: `135 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90101 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `164 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70056, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1020, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `164 Market Street, Philadelphia, USA, 70056`, Salesperson: `Ben Watson`, OrderID: 1759, OrderDate: `8/3/2022`, ProductID: 129, ProductName: `Mac Book Pro`, UnitPrice: 15140.82, Quantity: 4, ExtendedPrice: 60563.28, Freight: 1400.82, Discontinued: false, Region: `South East`, Address: `164 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70056 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `196 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 90169, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1021, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `196 Wall Street, Miami, USA, 90169`, Salesperson: `Mike Smith`, OrderID: 1879, OrderDate: `8/17/2022`, ProductID: 127, ProductName: `Mac Book Air`, UnitPrice: 26710.41, Quantity: 5, ExtendedPrice: 133552.05, Freight: 1810.41, Discontinued: false, Region: `West`, Address: `196 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 90169 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `175 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50142, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1022, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `175 Wall Street, Philadelphia, USA, 50142`, Salesperson: `Anna Jefferson`, OrderID: 1917, OrderDate: `3/6/2022`, ProductID: 114, ProductName: `IPad`, UnitPrice: 9640.51, Quantity: 3, ExtendedPrice: 28921.53, Freight: 840.51, Discontinued: false, Region: `North East`, Address: `175 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50142 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `122 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60097, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1023, CustomerName: `Pamela Black`, CustomerFirstName: `Pamela`, CustomerLastName: `Black`, CustomerAddress: `122 Main Street, Los Angeles, USA, 60097`, Salesperson: `James Black`, OrderID: 1176, OrderDate: `8/4/2022`, ProductID: 197, ProductName: `IPad`, UnitPrice: 14500.56, Quantity: 4, ExtendedPrice: 58002.24, Freight: 530.56, Discontinued: false, Region: `West`, Address: `122 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60097 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `139 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60175, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1024, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `139 Main Street, Miami, USA, 60175`, Salesperson: `Mike Jefferson`, OrderID: 1317, OrderDate: `5/21/2022`, ProductID: 115, ProductName: `Mac Book Air`, UnitPrice: 17200.82, Quantity: 2, ExtendedPrice: 34401.64, Freight: 1610.82, Discontinued: false, Region: `West`, Address: `139 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60175 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `155 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60124, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1025, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `155 Market Street, Philadelphia, USA, 60124`, Salesperson: `Max Smith`, OrderID: 1721, OrderDate: `6/15/2022`, ProductID: 197, ProductName: `Samsung Note`, UnitPrice: 9810.3, Quantity: 2, ExtendedPrice: 19620.6, Freight: 1990.3, Discontinued: false, Region: `South East`, Address: `155 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60124 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `136 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80120, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1026, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `136 Main Street, Philadelphia, USA, 80120`, Salesperson: `Max Smith`, OrderID: 1266, OrderDate: `12/13/2022`, ProductID: 198, ProductName: `Mac Book Pro`, UnitPrice: 25410.64, Quantity: 2, ExtendedPrice: 50821.28, Freight: 1860.64, Discontinued: false, Region: `West`, Address: `136 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80120 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `114 Main Street`, ShipCity: `New York`, ShipPostalCode: 60186, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1027, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `114 Main Street, New York, USA, 60186`, Salesperson: `Mike Jefferson`, OrderID: 1636, OrderDate: `7/7/2022`, ProductID: 174, ProductName: `Mac Book Pro`, UnitPrice: 13740.7, Quantity: 4, ExtendedPrice: 54962.8, Freight: 1960.7, Discontinued: false, Region: `West`, Address: `114 Main Street`, City: `New York`, Country: `USA`, PostalCode: 60186 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `167 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70193, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1028, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `167 Market Street, Huston, USA, 70193`, Salesperson: `Ben Jefferson`, OrderID: 1689, OrderDate: `1/2/2022`, ProductID: 192, ProductName: `IPad`, UnitPrice: 8760.83, Quantity: 3, ExtendedPrice: 26282.49, Freight: 490.83, Discontinued: false, Region: `South East`, Address: `167 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70193 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `139 Wall Street`, ShipCity: `New York`, ShipPostalCode: 80080, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1029, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `139 Wall Street, New York, USA, 80080`, Salesperson: `Anna Black`, OrderID: 1610, OrderDate: `3/17/2022`, ProductID: 105, ProductName: `Mac Book Pro`, UnitPrice: 19860.82, Quantity: 3, ExtendedPrice: 59582.46, Freight: 1990.82, Discontinued: true, Region: `West`, Address: `139 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 80080 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `173 Market Street`, ShipCity: `New York`, ShipPostalCode: 70054, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1030, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `173 Market Street, New York, USA, 70054`, Salesperson: `Ben Jackson`, OrderID: 1404, OrderDate: `12/8/2022`, ProductID: 171, ProductName: `IPhone`, UnitPrice: 12430.21, Quantity: 3, ExtendedPrice: 37290.63, Freight: 880.21, Discontinued: false, Region: `West`, Address: `173 Market Street`, City: `New York`, Country: `USA`, PostalCode: 70054 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `187 Wall Street`, ShipCity: `New York`, ShipPostalCode: 60100, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1031, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `187 Wall Street, New York, USA, 60100`, Salesperson: `Nancy Smith`, OrderID: 1480, OrderDate: `2/8/2022`, ProductID: 181, ProductName: `IPad`, UnitPrice: 26730.66, Quantity: 2, ExtendedPrice: 53461.32, Freight: 510.66, Discontinued: false, Region: `South East`, Address: `187 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 60100 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `149 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90150, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1032, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `149 Main Street, Los Angeles, USA, 90150`, Salesperson: `Max Jefferson`, OrderID: 1886, OrderDate: `12/2/2022`, ProductID: 132, ProductName: `IPhone`, UnitPrice: 13760.64, Quantity: 3, ExtendedPrice: 41281.92, Freight: 1110.64, Discontinued: false, Region: `West`, Address: `149 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90150 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `124 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80175, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1033, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `124 Market Street, Huston, USA, 80175`, Salesperson: `Nancy Smith`, OrderID: 1625, OrderDate: `11/9/2022`, ProductID: 100, ProductName: `IPad`, UnitPrice: 11590.58, Quantity: 3, ExtendedPrice: 34771.74, Freight: 1080.58, Discontinued: false, Region: `South East`, Address: `124 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80175 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `193 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60165, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1034, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `193 Wall Street, Philadelphia, USA, 60165`, Salesperson: `Martin Jackson`, OrderID: 1669, OrderDate: `7/3/2022`, ProductID: 157, ProductName: `Samsung Galaxy 22`, UnitPrice: 19220.31, Quantity: 2, ExtendedPrice: 38440.62, Freight: 1130.31, Discontinued: false, Region: `South East`, Address: `193 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60165 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `200 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80146, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1035, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `200 Wall Street, Philadelphia, USA, 80146`, Salesperson: `Pamela Jefferson`, OrderID: 1654, OrderDate: `1/7/2022`, ProductID: 155, ProductName: `IPhone`, UnitPrice: 7040.83, Quantity: 2, ExtendedPrice: 14081.66, Freight: 1420.83, Discontinued: false, Region: `North East`, Address: `200 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80146 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `122 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80150, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1036, CustomerName: `Nancy Smith`, CustomerFirstName: `Nancy`, CustomerLastName: `Smith`, CustomerAddress: `122 Market Street, Los Angeles, USA, 80150`, Salesperson: `Martin Jackson`, OrderID: 1678, OrderDate: `12/14/2022`, ProductID: 120, ProductName: `Mac Book Air`, UnitPrice: 6530.89, Quantity: 3, ExtendedPrice: 19592.67, Freight: 250.89, Discontinued: false, Region: `North East`, Address: `122 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80150 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `128 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50068, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1037, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `128 Main Street, Los Angeles, USA, 50068`, Salesperson: `Ben Watson`, OrderID: 1301, OrderDate: `1/25/2022`, ProductID: 166, ProductName: `IPad`, UnitPrice: 11420.23, Quantity: 2, ExtendedPrice: 22840.46, Freight: 950.23, Discontinued: false, Region: `South East`, Address: `128 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50068 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `119 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60180, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1038, CustomerName: `Pamela Smith`, CustomerFirstName: `Pamela`, CustomerLastName: `Smith`, CustomerAddress: `119 Market Street, Los Angeles, USA, 60180`, Salesperson: `Pamela Madison`, OrderID: 1385, OrderDate: `6/24/2022`, ProductID: 132, ProductName: `Mac Book Air`, UnitPrice: 29810.6, Quantity: 4, ExtendedPrice: 119242.4, Freight: 220.6, Discontinued: false, Region: `West`, Address: `119 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60180 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `115 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90168, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1039, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `115 Market Street, Los Angeles, USA, 90168`, Salesperson: `Martin Smith`, OrderID: 1308, OrderDate: `8/13/2022`, ProductID: 109, ProductName: `Samsung Galaxy 22`, UnitPrice: 20770.59, Quantity: 5, ExtendedPrice: 103852.95, Freight: 1690.59, Discontinued: true, Region: `North East`, Address: `115 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90168 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `128 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50118, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1040, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `128 Market Street, Los Angeles, USA, 50118`, Salesperson: `Pamela Black`, OrderID: 1519, OrderDate: `10/4/2022`, ProductID: 139, ProductName: `Mac Book Air`, UnitPrice: 14860.44, Quantity: 2, ExtendedPrice: 29720.88, Freight: 1670.44, Discontinued: false, Region: `South East`, Address: `128 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50118 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `108 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90129, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1041, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `108 Market Street, Los Angeles, USA, 90129`, Salesperson: `Nancy Black`, OrderID: 1118, OrderDate: `2/7/2022`, ProductID: 126, ProductName: `Mac Book Air`, UnitPrice: 28690.85, Quantity: 4, ExtendedPrice: 114763.4, Freight: 500.85, Discontinued: false, Region: `West`, Address: `108 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90129 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `180 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50101, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1042, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `180 Main Street, Los Angeles, USA, 50101`, Salesperson: `Martin Jefferson`, OrderID: 1541, OrderDate: `5/3/2022`, ProductID: 179, ProductName: `Mac Book Pro`, UnitPrice: 22630.28, Quantity: 3, ExtendedPrice: 67890.84, Freight: 1200.28, Discontinued: false, Region: `North East`, Address: `180 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50101 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `177 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90107, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1043, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `177 Market Street, Philadelphia, USA, 90107`, Salesperson: `Martin Jefferson`, OrderID: 1747, OrderDate: `5/11/2022`, ProductID: 133, ProductName: `Mac Book Pro`, UnitPrice: 6930.51, Quantity: 3, ExtendedPrice: 20791.53, Freight: 1660.51, Discontinued: false, Region: `South East`, Address: `177 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90107 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `134 Market Street`, ShipCity: `Miami`, ShipPostalCode: 70172, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1044, CustomerName: `Anna Jefferson`, CustomerFirstName: `Anna`, CustomerLastName: `Jefferson`, CustomerAddress: `134 Market Street, Miami, USA, 70172`, Salesperson: `Mike Smith`, OrderID: 1343, OrderDate: `10/11/2022`, ProductID: 190, ProductName: `Samsung Note`, UnitPrice: 26770.78, Quantity: 4, ExtendedPrice: 107083.12, Freight: 960.78, Discontinued: false, Region: `North East`, Address: `134 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 70172 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `117 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90124, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1045, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `117 Wall Street, Los Angeles, USA, 90124`, Salesperson: `Mike Watson`, OrderID: 1152, OrderDate: `2/25/2022`, ProductID: 101, ProductName: `Mac Book Pro`, UnitPrice: 8790.3, Quantity: 5, ExtendedPrice: 43951.5, Freight: 220.3, Discontinued: false, Region: `South East`, Address: `117 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90124 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `156 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60181, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1046, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `156 Wall Street, Philadelphia, USA, 60181`, Salesperson: `Anna Smith`, OrderID: 1823, OrderDate: `10/12/2022`, ProductID: 178, ProductName: `Samsung Note`, UnitPrice: 9750.55, Quantity: 3, ExtendedPrice: 29251.65, Freight: 1940.55, Discontinued: false, Region: `North East`, Address: `156 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60181 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `122 Main Street`, ShipCity: `New York`, ShipPostalCode: 90182, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1047, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `122 Main Street, New York, USA, 90182`, Salesperson: `Mike Black`, OrderID: 1548, OrderDate: `5/1/2022`, ProductID: 181, ProductName: `Mac Book Air`, UnitPrice: 11590.37, Quantity: 4, ExtendedPrice: 46361.48, Freight: 900.37, Discontinued: false, Region: `West`, Address: `122 Main Street`, City: `New York`, Country: `USA`, PostalCode: 90182 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `112 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60175, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1048, CustomerName: `Pamela Black`, CustomerFirstName: `Pamela`, CustomerLastName: `Black`, CustomerAddress: `112 Market Street, Los Angeles, USA, 60175`, Salesperson: `Mike Madison`, OrderID: 1581, OrderDate: `5/21/2022`, ProductID: 134, ProductName: `Mac Book Air`, UnitPrice: 8800.32, Quantity: 2, ExtendedPrice: 17600.64, Freight: 1820.32, Discontinued: false, Region: `South East`, Address: `112 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60175 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `153 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90170, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1049, CustomerName: `Pamela Black`, CustomerFirstName: `Pamela`, CustomerLastName: `Black`, CustomerAddress: `153 Market Street, Los Angeles, USA, 90170`, Salesperson: `Pamela Watson`, OrderID: 1145, OrderDate: `11/13/2022`, ProductID: 151, ProductName: `Mac Book Air`, UnitPrice: 25830.42, Quantity: 3, ExtendedPrice: 77491.26, Freight: 270.42, Discontinued: true, Region: `North East`, Address: `153 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90170 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `159 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80198, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1050, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `159 Market Street, Huston, USA, 80198`, Salesperson: `Pamela Jefferson`, OrderID: 1455, OrderDate: `12/16/2022`, ProductID: 115, ProductName: `Samsung Galaxy 22`, UnitPrice: 28510.28, Quantity: 2, ExtendedPrice: 57020.56, Freight: 1450.28, Discontinued: false, Region: `West`, Address: `159 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80198 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `125 Market Street`, ShipCity: `Miami`, ShipPostalCode: 70160, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1051, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `125 Market Street, Miami, USA, 70160`, Salesperson: `Anna Jefferson`, OrderID: 1787, OrderDate: `1/3/2022`, ProductID: 171, ProductName: `Mac Book Air`, UnitPrice: 18830.35, Quantity: 3, ExtendedPrice: 56491.05, Freight: 1770.35, Discontinued: false, Region: `South East`, Address: `125 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 70160 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `114 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70083, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1052, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `114 Wall Street, Los Angeles, USA, 70083`, Salesperson: `Anna Madison`, OrderID: 1591, OrderDate: `4/6/2022`, ProductID: 141, ProductName: `Mac Book Air`, UnitPrice: 18840.75, Quantity: 2, ExtendedPrice: 37681.5, Freight: 710.75, Discontinued: false, Region: `West`, Address: `114 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70083 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `193 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70170, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1053, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `193 Main Street, Los Angeles, USA, 70170`, Salesperson: `Anna Jackson`, OrderID: 1020, OrderDate: `7/20/2022`, ProductID: 177, ProductName: `IPad`, UnitPrice: 15250.55, Quantity: 3, ExtendedPrice: 45751.65, Freight: 980.55, Discontinued: false, Region: `West`, Address: `193 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70170 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `156 Main Street`, ShipCity: `Huston`, ShipPostalCode: 50127, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1054, CustomerName: `Ben Smith`, CustomerFirstName: `Ben`, CustomerLastName: `Smith`, CustomerAddress: `156 Main Street, Huston, USA, 50127`, Salesperson: `James Black`, OrderID: 1770, OrderDate: `3/24/2022`, ProductID: 141, ProductName: `Samsung Galaxy 22`, UnitPrice: 14910.59, Quantity: 5, ExtendedPrice: 74552.95, Freight: 1330.59, Discontinued: false, Region: `South East`, Address: `156 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 50127 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `146 Market Street`, ShipCity: `Miami`, ShipPostalCode: 60064, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1055, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `146 Market Street, Miami, USA, 60064`, Salesperson: `Mike Smith`, OrderID: 1766, OrderDate: `10/23/2022`, ProductID: 141, ProductName: `Mac Book Air`, UnitPrice: 16740.86, Quantity: 3, ExtendedPrice: 50222.58, Freight: 580.86, Discontinued: false, Region: `West`, Address: `146 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 60064 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `163 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90158, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1056, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `163 Market Street, Los Angeles, USA, 90158`, Salesperson: `Martin Jefferson`, OrderID: 1415, OrderDate: `9/2/2022`, ProductID: 112, ProductName: `IPhone`, UnitPrice: 25190.37, Quantity: 3, ExtendedPrice: 75571.11, Freight: 1060.37, Discontinued: false, Region: `South East`, Address: `163 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90158 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `171 Main Street`, ShipCity: `New York`, ShipPostalCode: 50163, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1057, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `171 Main Street, New York, USA, 50163`, Salesperson: `Martin Smith`, OrderID: 1430, OrderDate: `9/2/2022`, ProductID: 120, ProductName: `Samsung Note`, UnitPrice: 26340.71, Quantity: 2, ExtendedPrice: 52681.42, Freight: 770.71, Discontinued: false, Region: `North East`, Address: `171 Main Street`, City: `New York`, Country: `USA`, PostalCode: 50163 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `195 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60159, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1058, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `195 Wall Street, Philadelphia, USA, 60159`, Salesperson: `Ben Black`, OrderID: 1903, OrderDate: `2/19/2022`, ProductID: 161, ProductName: `IPad`, UnitPrice: 6290.33, Quantity: 5, ExtendedPrice: 31451.65, Freight: 890.33, Discontinued: false, Region: `South East`, Address: `195 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60159 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `171 Market Street`, ShipCity: `Huston`, ShipPostalCode: 50154, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1059, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `171 Market Street, Huston, USA, 50154`, Salesperson: `Anna Madison`, OrderID: 1578, OrderDate: `6/5/2022`, ProductID: 103, ProductName: `Samsung Galaxy 22`, UnitPrice: 20240.82, Quantity: 5, ExtendedPrice: 101204.1, Freight: 1490.82, Discontinued: true, Region: `West`, Address: `171 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 50154 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `103 Market Street`, ShipCity: `New York`, ShipPostalCode: 70081, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1060, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `103 Market Street, New York, USA, 70081`, Salesperson: `Pamela Jackson`, OrderID: 1142, OrderDate: `4/1/2022`, ProductID: 108, ProductName: `IPhone`, UnitPrice: 9790.41, Quantity: 3, ExtendedPrice: 29371.23, Freight: 980.41, Discontinued: false, Region: `South East`, Address: `103 Market Street`, City: `New York`, Country: `USA`, PostalCode: 70081 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `187 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70141, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1061, CustomerName: `Mike Smith`, CustomerFirstName: `Mike`, CustomerLastName: `Smith`, CustomerAddress: `187 Market Street, Los Angeles, USA, 70141`, Salesperson: `Ben Jefferson`, OrderID: 1871, OrderDate: `8/20/2022`, ProductID: 197, ProductName: `IPad`, UnitPrice: 28960.39, Quantity: 2, ExtendedPrice: 57920.78, Freight: 1280.39, Discontinued: false, Region: `West`, Address: `187 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70141 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `145 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50068, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1062, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `145 Main Street, Philadelphia, USA, 50068`, Salesperson: `Martin Watson`, OrderID: 1747, OrderDate: `1/20/2022`, ProductID: 198, ProductName: `Mac Book Pro`, UnitPrice: 12530.74, Quantity: 4, ExtendedPrice: 50122.96, Freight: 480.74, Discontinued: false, Region: `West`, Address: `145 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50068 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `109 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90197, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1063, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `109 Market Street, Los Angeles, USA, 90197`, Salesperson: `James Black`, OrderID: 1881, OrderDate: `11/6/2022`, ProductID: 162, ProductName: `Samsung Note`, UnitPrice: 29810.51, Quantity: 2, ExtendedPrice: 59621.02, Freight: 750.51, Discontinued: false, Region: `North East`, Address: `109 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90197 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `155 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50184, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1064, CustomerName: `Nancy Smith`, CustomerFirstName: `Nancy`, CustomerLastName: `Smith`, CustomerAddress: `155 Market Street, Los Angeles, USA, 50184`, Salesperson: `Mike Madison`, OrderID: 1172, OrderDate: `5/14/2022`, ProductID: 154, ProductName: `IPhone`, UnitPrice: 11440.88, Quantity: 2, ExtendedPrice: 22881.76, Freight: 1570.88, Discontinued: false, Region: `West`, Address: `155 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50184 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `136 Main Street`, ShipCity: `New York`, ShipPostalCode: 60147, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1065, CustomerName: `James Jackson`, CustomerFirstName: `James`, CustomerLastName: `Jackson`, CustomerAddress: `136 Main Street, New York, USA, 60147`, Salesperson: `James Jefferson`, OrderID: 1538, OrderDate: `2/4/2022`, ProductID: 142, ProductName: `IPad`, UnitPrice: 18340.25, Quantity: 5, ExtendedPrice: 91701.25, Freight: 1730.25, Discontinued: false, Region: `South East`, Address: `136 Main Street`, City: `New York`, Country: `USA`, PostalCode: 60147 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `184 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 60091, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1066, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `184 Wall Street, Miami, USA, 60091`, Salesperson: `Ben Jackson`, OrderID: 1863, OrderDate: `2/6/2022`, ProductID: 186, ProductName: `Samsung Note`, UnitPrice: 6690.4, Quantity: 5, ExtendedPrice: 33452, Freight: 930.4, Discontinued: false, Region: `West`, Address: `184 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 60091 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `103 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80170, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1067, CustomerName: `James Jackson`, CustomerFirstName: `James`, CustomerLastName: `Jackson`, CustomerAddress: `103 Market Street, Philadelphia, USA, 80170`, Salesperson: `Max Black`, OrderID: 1476, OrderDate: `1/13/2022`, ProductID: 156, ProductName: `Mac Book Pro`, UnitPrice: 29040.31, Quantity: 5, ExtendedPrice: 145201.55, Freight: 1070.31, Discontinued: false, Region: `West`, Address: `103 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80170 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `104 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80188, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1068, CustomerName: `Ben Smith`, CustomerFirstName: `Ben`, CustomerLastName: `Smith`, CustomerAddress: `104 Market Street, Los Angeles, USA, 80188`, Salesperson: `Martin Watson`, OrderID: 1131, OrderDate: `9/13/2022`, ProductID: 131, ProductName: `Samsung Galaxy 22`, UnitPrice: 6780.79, Quantity: 4, ExtendedPrice: 27123.16, Freight: 600.79, Discontinued: false, Region: `South East`, Address: `104 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80188 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `140 Main Street`, ShipCity: `New York`, ShipPostalCode: 90197, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1069, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `140 Main Street, New York, USA, 90197`, Salesperson: `Anna Smith`, OrderID: 1829, OrderDate: `2/18/2022`, ProductID: 152, ProductName: `Samsung Note`, UnitPrice: 20150.52, Quantity: 4, ExtendedPrice: 80602.08, Freight: 1840.52, Discontinued: true, Region: `North East`, Address: `140 Main Street`, City: `New York`, Country: `USA`, PostalCode: 90197 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `172 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90159, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1070, CustomerName: `Mike Smith`, CustomerFirstName: `Mike`, CustomerLastName: `Smith`, CustomerAddress: `172 Wall Street, Philadelphia, USA, 90159`, Salesperson: `Pamela Watson`, OrderID: 1082, OrderDate: `10/1/2022`, ProductID: 164, ProductName: `IPad`, UnitPrice: 23810.31, Quantity: 2, ExtendedPrice: 47620.62, Freight: 320.31, Discontinued: false, Region: `West`, Address: `172 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90159 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `147 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 90173, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1071, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `147 Wall Street, Huston, USA, 90173`, Salesperson: `Martin Smith`, OrderID: 1449, OrderDate: `1/21/2022`, ProductID: 111, ProductName: `Mac Book Pro`, UnitPrice: 8280.25, Quantity: 4, ExtendedPrice: 33121, Freight: 860.25, Discontinued: false, Region: `South East`, Address: `147 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 90173 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `161 Main Street`, ShipCity: `Huston`, ShipPostalCode: 90102, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1072, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `161 Main Street, Huston, USA, 90102`, Salesperson: `Nancy Black`, OrderID: 1609, OrderDate: `9/22/2022`, ProductID: 197, ProductName: `Samsung Note`, UnitPrice: 16740.35, Quantity: 4, ExtendedPrice: 66961.4, Freight: 1940.35, Discontinued: false, Region: `North East`, Address: `161 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 90102 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `102 Market Street`, ShipCity: `Miami`, ShipPostalCode: 70124, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1073, CustomerName: `Ben Smith`, CustomerFirstName: `Ben`, CustomerLastName: `Smith`, CustomerAddress: `102 Market Street, Miami, USA, 70124`, Salesperson: `Anna Smith`, OrderID: 1984, OrderDate: `8/6/2022`, ProductID: 123, ProductName: `Samsung Galaxy 22`, UnitPrice: 14660.66, Quantity: 3, ExtendedPrice: 43981.98, Freight: 1910.66, Discontinued: false, Region: `West`, Address: `102 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 70124 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `139 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90134, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1074, CustomerName: `Martin Black`, CustomerFirstName: `Martin`, CustomerLastName: `Black`, CustomerAddress: `139 Market Street, Miami, USA, 90134`, Salesperson: `Max Jackson`, OrderID: 1060, OrderDate: `3/11/2022`, ProductID: 154, ProductName: `Mac Book Pro`, UnitPrice: 14460.37, Quantity: 4, ExtendedPrice: 57841.48, Freight: 1020.37, Discontinued: false, Region: `West`, Address: `139 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90134 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `132 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60055, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1075, CustomerName: `Martin Jackson`, CustomerFirstName: `Martin`, CustomerLastName: `Jackson`, CustomerAddress: `132 Market Street, Philadelphia, USA, 60055`, Salesperson: `Pamela Madison`, OrderID: 1213, OrderDate: `9/3/2022`, ProductID: 108, ProductName: `IPhone`, UnitPrice: 19340.74, Quantity: 3, ExtendedPrice: 58022.22, Freight: 1370.74, Discontinued: false, Region: `West`, Address: `132 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60055 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `192 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90135, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1076, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `192 Market Street, Miami, USA, 90135`, Salesperson: `Nancy Madison`, OrderID: 1563, OrderDate: `5/8/2022`, ProductID: 162, ProductName: `Samsung Note`, UnitPrice: 12670.48, Quantity: 2, ExtendedPrice: 25340.96, Freight: 1870.48, Discontinued: false, Region: `South East`, Address: `192 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90135 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `108 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 90156, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1077, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `108 Wall Street, Miami, USA, 90156`, Salesperson: `Max Smith`, OrderID: 1087, OrderDate: `6/24/2022`, ProductID: 194, ProductName: `Samsung Galaxy 22`, UnitPrice: 6860.84, Quantity: 3, ExtendedPrice: 20582.52, Freight: 1880.84, Discontinued: false, Region: `South East`, Address: `108 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 90156 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `162 Wall Street`, ShipCity: `New York`, ShipPostalCode: 80121, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1078, CustomerName: `Nancy Smith`, CustomerFirstName: `Nancy`, CustomerLastName: `Smith`, CustomerAddress: `162 Wall Street, New York, USA, 80121`, Salesperson: `Anna Black`, OrderID: 1663, OrderDate: `9/5/2022`, ProductID: 149, ProductName: `Mac Book Pro`, UnitPrice: 29550.53, Quantity: 5, ExtendedPrice: 147752.65, Freight: 1270.53, Discontinued: false, Region: `South East`, Address: `162 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 80121 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `165 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70057, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1079, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `165 Main Street, Los Angeles, USA, 70057`, Salesperson: `James Watson`, OrderID: 1724, OrderDate: `5/6/2022`, ProductID: 180, ProductName: `IPad`, UnitPrice: 13560.61, Quantity: 3, ExtendedPrice: 40681.83, Freight: 760.61, Discontinued: true, Region: `North East`, Address: `165 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70057 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `162 Main Street`, ShipCity: `Huston`, ShipPostalCode: 60057, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1080, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `162 Main Street, Huston, USA, 60057`, Salesperson: `Anna Watson`, OrderID: 1156, OrderDate: `10/5/2022`, ProductID: 157, ProductName: `Samsung Galaxy 22`, UnitPrice: 17220.59, Quantity: 3, ExtendedPrice: 51661.77, Freight: 1550.59, Discontinued: false, Region: `North East`, Address: `162 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 60057 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `126 Main Street`, ShipCity: `Miami`, ShipPostalCode: 70200, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1081, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `126 Main Street, Miami, USA, 70200`, Salesperson: `Ben Watson`, OrderID: 1982, OrderDate: `9/11/2022`, ProductID: 123, ProductName: `Mac Book Air`, UnitPrice: 25780.79, Quantity: 2, ExtendedPrice: 51561.58, Freight: 680.79, Discontinued: false, Region: `South East`, Address: `126 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 70200 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `105 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 80141, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1082, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `105 Wall Street, Huston, USA, 80141`, Salesperson: `Pamela Watson`, OrderID: 1462, OrderDate: `6/6/2022`, ProductID: 189, ProductName: `Samsung Galaxy 22`, UnitPrice: 16990.62, Quantity: 2, ExtendedPrice: 33981.24, Freight: 710.62, Discontinued: false, Region: `West`, Address: `105 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 80141 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `113 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50187, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1083, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `113 Market Street, Philadelphia, USA, 50187`, Salesperson: `Martin Jefferson`, OrderID: 1698, OrderDate: `5/16/2022`, ProductID: 148, ProductName: `IPhone`, UnitPrice: 16930.87, Quantity: 4, ExtendedPrice: 67723.48, Freight: 1080.87, Discontinued: false, Region: `North East`, Address: `113 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50187 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `164 Main Street`, ShipCity: `New York`, ShipPostalCode: 80172, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1084, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `164 Main Street, New York, USA, 80172`, Salesperson: `Mike Jackson`, OrderID: 1300, OrderDate: `11/11/2022`, ProductID: 164, ProductName: `IPhone`, UnitPrice: 8120.59, Quantity: 4, ExtendedPrice: 32482.36, Freight: 1140.59, Discontinued: false, Region: `West`, Address: `164 Main Street`, City: `New York`, Country: `USA`, PostalCode: 80172 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `108 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90074, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1085, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `108 Main Street, Philadelphia, USA, 90074`, Salesperson: `Nancy Madison`, OrderID: 1401, OrderDate: `12/3/2022`, ProductID: 139, ProductName: `IPhone`, UnitPrice: 6160.25, Quantity: 4, ExtendedPrice: 24641, Freight: 1600.25, Discontinued: false, Region: `South East`, Address: `108 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90074 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `175 Main Street`, ShipCity: `Huston`, ShipPostalCode: 80111, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1086, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `175 Main Street, Huston, USA, 80111`, Salesperson: `Nancy Watson`, OrderID: 1474, OrderDate: `9/1/2022`, ProductID: 138, ProductName: `Mac Book Air`, UnitPrice: 7220.7, Quantity: 4, ExtendedPrice: 28882.8, Freight: 1530.7, Discontinued: false, Region: `West`, Address: `175 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 80111 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `102 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 80173, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1087, CustomerName: `Nancy Madison`, CustomerFirstName: `Nancy`, CustomerLastName: `Madison`, CustomerAddress: `102 Wall Street, Miami, USA, 80173`, Salesperson: `Martin Jackson`, OrderID: 1678, OrderDate: `5/6/2022`, ProductID: 190, ProductName: `IPad`, UnitPrice: 17990.28, Quantity: 4, ExtendedPrice: 71961.12, Freight: 1420.28, Discontinued: false, Region: `South East`, Address: `102 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 80173 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `163 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50105, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1088, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `163 Market Street, Philadelphia, USA, 50105`, Salesperson: `Martin Black`, OrderID: 1384, OrderDate: `4/16/2022`, ProductID: 156, ProductName: `Mac Book Pro`, UnitPrice: 15460.27, Quantity: 3, ExtendedPrice: 46380.81, Freight: 1250.27, Discontinued: false, Region: `West`, Address: `163 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50105 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `165 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 90075, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1089, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `165 Wall Street, Huston, USA, 90075`, Salesperson: `Nancy Jefferson`, OrderID: 1223, OrderDate: `7/20/2022`, ProductID: 105, ProductName: `Mac Book Pro`, UnitPrice: 15450.62, Quantity: 2, ExtendedPrice: 30901.24, Freight: 1350.62, Discontinued: true, Region: `North East`, Address: `165 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 90075 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `140 Wall Street`, ShipCity: `New York`, ShipPostalCode: 80134, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1090, CustomerName: `Anna Jefferson`, CustomerFirstName: `Anna`, CustomerLastName: `Jefferson`, CustomerAddress: `140 Wall Street, New York, USA, 80134`, Salesperson: `Anna Watson`, OrderID: 1189, OrderDate: `10/5/2022`, ProductID: 128, ProductName: `Samsung Note`, UnitPrice: 15460.25, Quantity: 5, ExtendedPrice: 77301.25, Freight: 840.25, Discontinued: false, Region: `West`, Address: `140 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 80134 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `191 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80168, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1091, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `191 Wall Street, Los Angeles, USA, 80168`, Salesperson: `Anna Madison`, OrderID: 1657, OrderDate: `8/7/2022`, ProductID: 154, ProductName: `IPad`, UnitPrice: 24990.6, Quantity: 5, ExtendedPrice: 124953, Freight: 1890.6, Discontinued: false, Region: `South East`, Address: `191 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80168 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `111 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60130, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1092, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `111 Market Street, Los Angeles, USA, 60130`, Salesperson: `Ben Jackson`, OrderID: 1818, OrderDate: `12/2/2022`, ProductID: 107, ProductName: `Samsung Note`, UnitPrice: 19750.45, Quantity: 4, ExtendedPrice: 79001.8, Freight: 1840.45, Discontinued: false, Region: `South East`, Address: `111 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60130 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `190 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50162, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1093, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `190 Market Street, Los Angeles, USA, 50162`, Salesperson: `Mike Watson`, OrderID: 1117, OrderDate: `10/12/2022`, ProductID: 176, ProductName: `Samsung Note`, UnitPrice: 15390.57, Quantity: 5, ExtendedPrice: 76952.85, Freight: 1500.57, Discontinued: false, Region: `West`, Address: `190 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50162 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `121 Main Street`, ShipCity: `Miami`, ShipPostalCode: 70156, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1094, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `121 Main Street, Miami, USA, 70156`, Salesperson: `Mike Jackson`, OrderID: 1188, OrderDate: `11/23/2022`, ProductID: 177, ProductName: `IPad`, UnitPrice: 23120.28, Quantity: 3, ExtendedPrice: 69360.84, Freight: 1670.28, Discontinued: false, Region: `South East`, Address: `121 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 70156 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `120 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60082, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1095, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `120 Main Street, Miami, USA, 60082`, Salesperson: `Nancy Smith`, OrderID: 1673, OrderDate: `1/25/2022`, ProductID: 189, ProductName: `Mac Book Air`, UnitPrice: 16310.31, Quantity: 4, ExtendedPrice: 65241.24, Freight: 370.31, Discontinued: false, Region: `South East`, Address: `120 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60082 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `102 Main Street`, ShipCity: `Miami`, ShipPostalCode: 90125, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1096, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `102 Main Street, Miami, USA, 90125`, Salesperson: `Pamela Smith`, OrderID: 1048, OrderDate: `8/6/2022`, ProductID: 148, ProductName: `Mac Book Pro`, UnitPrice: 14920.59, Quantity: 2, ExtendedPrice: 29841.18, Freight: 1110.59, Discontinued: false, Region: `West`, Address: `102 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 90125 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `125 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80199, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1097, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `125 Main Street, Los Angeles, USA, 80199`, Salesperson: `Pamela Black`, OrderID: 1336, OrderDate: `6/1/2022`, ProductID: 159, ProductName: `Mac Book Pro`, UnitPrice: 11370.4, Quantity: 5, ExtendedPrice: 56852, Freight: 1210.4, Discontinued: false, Region: `West`, Address: `125 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80199 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `109 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 60118, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1098, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `109 Wall Street, Miami, USA, 60118`, Salesperson: `James Madison`, OrderID: 1049, OrderDate: `2/14/2022`, ProductID: 172, ProductName: `Mac Book Pro`, UnitPrice: 18730.79, Quantity: 5, ExtendedPrice: 93653.95, Freight: 300.79, Discontinued: false, Region: `South East`, Address: `109 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 60118 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `149 Main Street`, ShipCity: `Miami`, ShipPostalCode: 50128, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1099, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `149 Main Street, Miami, USA, 50128`, Salesperson: `James Watson`, OrderID: 1292, OrderDate: `3/15/2022`, ProductID: 183, ProductName: `Mac Book Air`, UnitPrice: 16730.48, Quantity: 5, ExtendedPrice: 83652.4, Freight: 1320.48, Discontinued: true, Region: `North East`, Address: `149 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 50128 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `183 Wall Street`, ShipCity: `New York`, ShipPostalCode: 50089, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1100, CustomerName: `Ben Smith`, CustomerFirstName: `Ben`, CustomerLastName: `Smith`, CustomerAddress: `183 Wall Street, New York, USA, 50089`, Salesperson: `Max Watson`, OrderID: 1724, OrderDate: `9/22/2022`, ProductID: 160, ProductName: `IPad`, UnitPrice: 23370.51, Quantity: 3, ExtendedPrice: 70111.53, Freight: 1200.51, Discontinued: false, Region: `North East`, Address: `183 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 50089 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `195 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60110, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1101, CustomerName: `Martin Watson`, CustomerFirstName: `Martin`, CustomerLastName: `Watson`, CustomerAddress: `195 Market Street, Philadelphia, USA, 60110`, Salesperson: `Martin Black`, OrderID: 1154, OrderDate: `4/13/2022`, ProductID: 180, ProductName: `Samsung Note`, UnitPrice: 24870.49, Quantity: 4, ExtendedPrice: 99481.96, Freight: 1200.49, Discontinued: false, Region: `South East`, Address: `195 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60110 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `153 Market Street`, ShipCity: `New York`, ShipPostalCode: 60113, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1102, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `153 Market Street, New York, USA, 60113`, Salesperson: `Nancy Black`, OrderID: 1333, OrderDate: `2/24/2022`, ProductID: 192, ProductName: `Samsung Note`, UnitPrice: 12710.8, Quantity: 4, ExtendedPrice: 50843.2, Freight: 1520.8, Discontinued: false, Region: `North East`, Address: `153 Market Street`, City: `New York`, Country: `USA`, PostalCode: 60113 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `185 Market Street`, ShipCity: `Miami`, ShipPostalCode: 60118, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1103, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `185 Market Street, Miami, USA, 60118`, Salesperson: `Max Black`, OrderID: 1243, OrderDate: `2/7/2022`, ProductID: 124, ProductName: `Samsung Galaxy 22`, UnitPrice: 16270.33, Quantity: 4, ExtendedPrice: 65081.32, Freight: 1050.33, Discontinued: false, Region: `West`, Address: `185 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 60118 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `181 Market Street`, ShipCity: `Miami`, ShipPostalCode: 80055, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1104, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `181 Market Street, Miami, USA, 80055`, Salesperson: `Nancy Madison`, OrderID: 1090, OrderDate: `12/2/2022`, ProductID: 106, ProductName: `Mac Book Pro`, UnitPrice: 25150.85, Quantity: 5, ExtendedPrice: 125754.25, Freight: 560.85, Discontinued: false, Region: `North East`, Address: `181 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 80055 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `185 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60149, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1105, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `185 Market Street, Los Angeles, USA, 60149`, Salesperson: `Martin Madison`, OrderID: 1697, OrderDate: `10/12/2022`, ProductID: 193, ProductName: `Mac Book Air`, UnitPrice: 18440.22, Quantity: 5, ExtendedPrice: 92201.1, Freight: 1030.22, Discontinued: false, Region: `North East`, Address: `185 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60149 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `110 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90160, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1106, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `110 Wall Street, Los Angeles, USA, 90160`, Salesperson: `Mike Jefferson`, OrderID: 1868, OrderDate: `6/20/2022`, ProductID: 166, ProductName: `Samsung Galaxy 22`, UnitPrice: 10990.49, Quantity: 5, ExtendedPrice: 54952.45, Freight: 1250.49, Discontinued: false, Region: `North East`, Address: `110 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90160 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `124 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 90129, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1107, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `124 Wall Street, Miami, USA, 90129`, Salesperson: `Max Madison`, OrderID: 1419, OrderDate: `11/8/2022`, ProductID: 119, ProductName: `Mac Book Air`, UnitPrice: 9310.28, Quantity: 3, ExtendedPrice: 27930.84, Freight: 1660.28, Discontinued: false, Region: `West`, Address: `124 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 90129 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `144 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 80145, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1108, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `144 Wall Street, Huston, USA, 80145`, Salesperson: `Mike Smith`, OrderID: 1103, OrderDate: `5/14/2022`, ProductID: 172, ProductName: `Mac Book Pro`, UnitPrice: 5130.33, Quantity: 2, ExtendedPrice: 10260.66, Freight: 1840.33, Discontinued: false, Region: `North East`, Address: `144 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 80145 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `200 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50073, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1109, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `200 Main Street, Philadelphia, USA, 50073`, Salesperson: `Max Jackson`, OrderID: 1461, OrderDate: `6/13/2022`, ProductID: 153, ProductName: `Mac Book Pro`, UnitPrice: 23080.59, Quantity: 3, ExtendedPrice: 69241.77, Freight: 540.59, Discontinued: true, Region: `West`, Address: `200 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50073 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `196 Market Street`, ShipCity: `New York`, ShipPostalCode: 70070, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1110, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `196 Market Street, New York, USA, 70070`, Salesperson: `Nancy Smith`, OrderID: 1713, OrderDate: `3/6/2022`, ProductID: 121, ProductName: `Mac Book Pro`, UnitPrice: 29390.58, Quantity: 3, ExtendedPrice: 88171.74, Freight: 1170.58, Discontinued: false, Region: `West`, Address: `196 Market Street`, City: `New York`, Country: `USA`, PostalCode: 70070 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `154 Main Street`, ShipCity: `New York`, ShipPostalCode: 70167, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1111, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `154 Main Street, New York, USA, 70167`, Salesperson: `Pamela Jackson`, OrderID: 1956, OrderDate: `1/2/2022`, ProductID: 156, ProductName: `Samsung Note`, UnitPrice: 24870.88, Quantity: 2, ExtendedPrice: 49741.76, Freight: 1360.88, Discontinued: false, Region: `North East`, Address: `154 Main Street`, City: `New York`, Country: `USA`, PostalCode: 70167 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `110 Main Street`, ShipCity: `Miami`, ShipPostalCode: 90055, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1112, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `110 Main Street, Miami, USA, 90055`, Salesperson: `Anna Madison`, OrderID: 1530, OrderDate: `10/15/2022`, ProductID: 113, ProductName: `IPad`, UnitPrice: 24570.87, Quantity: 4, ExtendedPrice: 98283.48, Freight: 930.87, Discontinued: false, Region: `South East`, Address: `110 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 90055 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `200 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70105, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1113, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `200 Market Street, Huston, USA, 70105`, Salesperson: `James Jackson`, OrderID: 1488, OrderDate: `7/13/2022`, ProductID: 109, ProductName: `IPhone`, UnitPrice: 23860.57, Quantity: 4, ExtendedPrice: 95442.28, Freight: 1130.57, Discontinued: false, Region: `North East`, Address: `200 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70105 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `181 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80175, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1114, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `181 Main Street, Philadelphia, USA, 80175`, Salesperson: `Max Jackson`, OrderID: 1143, OrderDate: `6/13/2022`, ProductID: 144, ProductName: `Mac Book Air`, UnitPrice: 28390.63, Quantity: 5, ExtendedPrice: 141953.15, Freight: 300.63, Discontinued: false, Region: `North East`, Address: `181 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80175 }), + new InvoicesDataItem({ ShipName: `Jackson Home`, ShipAddress: `137 Market Street`, ShipCity: `Huston`, ShipPostalCode: 50144, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1115, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `137 Market Street, Huston, USA, 50144`, Salesperson: `Martin Jackson`, OrderID: 1274, OrderDate: `4/8/2022`, ProductID: 134, ProductName: `IPad`, UnitPrice: 22580.34, Quantity: 2, ExtendedPrice: 45160.68, Freight: 1720.34, Discontinued: false, Region: `South East`, Address: `137 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 50144 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `186 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70112, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1116, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `186 Main Street, Los Angeles, USA, 70112`, Salesperson: `Mike Jefferson`, OrderID: 1597, OrderDate: `8/6/2022`, ProductID: 127, ProductName: `Mac Book Pro`, UnitPrice: 28490.48, Quantity: 3, ExtendedPrice: 85471.44, Freight: 760.48, Discontinued: false, Region: `South East`, Address: `186 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70112 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `152 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 50080, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1117, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `152 Wall Street, Huston, USA, 50080`, Salesperson: `Max Jackson`, OrderID: 1632, OrderDate: `4/15/2022`, ProductID: 179, ProductName: `Mac Book Pro`, UnitPrice: 20680.38, Quantity: 5, ExtendedPrice: 103401.9, Freight: 490.38, Discontinued: false, Region: `West`, Address: `152 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 50080 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `147 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60136, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1118, CustomerName: `Pamela Black`, CustomerFirstName: `Pamela`, CustomerLastName: `Black`, CustomerAddress: `147 Wall Street, Huston, USA, 60136`, Salesperson: `Mike Watson`, OrderID: 1461, OrderDate: `4/21/2022`, ProductID: 118, ProductName: `Samsung Note`, UnitPrice: 6990.24, Quantity: 5, ExtendedPrice: 34951.2, Freight: 460.24, Discontinued: false, Region: `North East`, Address: `147 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60136 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `161 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80121, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1119, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `161 Market Street, Huston, USA, 80121`, Salesperson: `Martin Jefferson`, OrderID: 1380, OrderDate: `1/3/2022`, ProductID: 176, ProductName: `Mac Book Air`, UnitPrice: 26540.79, Quantity: 5, ExtendedPrice: 132703.95, Freight: 470.79, Discontinued: true, Region: `West`, Address: `161 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80121 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `118 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50189, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1120, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `118 Main Street, Philadelphia, USA, 50189`, Salesperson: `Ben Watson`, OrderID: 1658, OrderDate: `1/4/2022`, ProductID: 184, ProductName: `Mac Book Air`, UnitPrice: 16830.41, Quantity: 5, ExtendedPrice: 84152.05, Freight: 1660.41, Discontinued: false, Region: `West`, Address: `118 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50189 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `186 Market Street`, ShipCity: `Miami`, ShipPostalCode: 60097, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1121, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `186 Market Street, Miami, USA, 60097`, Salesperson: `Nancy Watson`, OrderID: 1754, OrderDate: `7/3/2022`, ProductID: 148, ProductName: `Mac Book Air`, UnitPrice: 5030.24, Quantity: 3, ExtendedPrice: 15090.72, Freight: 1660.24, Discontinued: false, Region: `South East`, Address: `186 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 60097 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `191 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90155, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1122, CustomerName: `Ben Smith`, CustomerFirstName: `Ben`, CustomerLastName: `Smith`, CustomerAddress: `191 Main Street, Los Angeles, USA, 90155`, Salesperson: `Anna Madison`, OrderID: 1279, OrderDate: `3/14/2022`, ProductID: 151, ProductName: `IPhone`, UnitPrice: 23590.82, Quantity: 3, ExtendedPrice: 70772.46, Freight: 1120.82, Discontinued: false, Region: `West`, Address: `191 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90155 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `190 Main Street`, ShipCity: `New York`, ShipPostalCode: 80075, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1123, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `190 Main Street, New York, USA, 80075`, Salesperson: `Martin Jackson`, OrderID: 1310, OrderDate: `11/7/2022`, ProductID: 183, ProductName: `Samsung Galaxy 22`, UnitPrice: 26450.4, Quantity: 5, ExtendedPrice: 132252, Freight: 420.4, Discontinued: false, Region: `South East`, Address: `190 Main Street`, City: `New York`, Country: `USA`, PostalCode: 80075 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `160 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80067, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1124, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `160 Market Street, Philadelphia, USA, 80067`, Salesperson: `Ben Jackson`, OrderID: 1920, OrderDate: `12/17/2022`, ProductID: 174, ProductName: `IPhone`, UnitPrice: 23660.88, Quantity: 4, ExtendedPrice: 94643.52, Freight: 1220.88, Discontinued: false, Region: `North East`, Address: `160 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80067 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `151 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 90124, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1125, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `151 Wall Street, Miami, USA, 90124`, Salesperson: `Mike Watson`, OrderID: 1497, OrderDate: `2/21/2022`, ProductID: 179, ProductName: `IPhone`, UnitPrice: 15940.51, Quantity: 5, ExtendedPrice: 79702.55, Freight: 1880.51, Discontinued: false, Region: `West`, Address: `151 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 90124 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `151 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70173, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1126, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `151 Market Street, Huston, USA, 70173`, Salesperson: `Pamela Jefferson`, OrderID: 1925, OrderDate: `2/15/2022`, ProductID: 170, ProductName: `IPhone`, UnitPrice: 13350.7, Quantity: 5, ExtendedPrice: 66753.5, Freight: 720.7, Discontinued: false, Region: `West`, Address: `151 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70173 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `114 Main Street`, ShipCity: `Miami`, ShipPostalCode: 80067, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1127, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `114 Main Street, Miami, USA, 80067`, Salesperson: `Pamela Black`, OrderID: 1338, OrderDate: `5/19/2022`, ProductID: 196, ProductName: `Samsung Note`, UnitPrice: 20820.82, Quantity: 4, ExtendedPrice: 83283.28, Freight: 1570.82, Discontinued: false, Region: `South East`, Address: `114 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 80067 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `189 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80157, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1128, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `189 Wall Street, Philadelphia, USA, 80157`, Salesperson: `Ben Watson`, OrderID: 1794, OrderDate: `9/9/2022`, ProductID: 168, ProductName: `Samsung Galaxy 22`, UnitPrice: 25550.56, Quantity: 4, ExtendedPrice: 102202.24, Freight: 400.56, Discontinued: false, Region: `North East`, Address: `189 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80157 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `198 Main Street`, ShipCity: `New York`, ShipPostalCode: 60169, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1129, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `198 Main Street, New York, USA, 60169`, Salesperson: `James Black`, OrderID: 1108, OrderDate: `2/5/2022`, ProductID: 194, ProductName: `Mac Book Air`, UnitPrice: 10890.26, Quantity: 3, ExtendedPrice: 32670.78, Freight: 760.26, Discontinued: true, Region: `South East`, Address: `198 Main Street`, City: `New York`, Country: `USA`, PostalCode: 60169 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `106 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60117, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1130, CustomerName: `James Jackson`, CustomerFirstName: `James`, CustomerLastName: `Jackson`, CustomerAddress: `106 Main Street, Los Angeles, USA, 60117`, Salesperson: `Pamela Jackson`, OrderID: 1953, OrderDate: `11/24/2022`, ProductID: 179, ProductName: `Samsung Note`, UnitPrice: 19940.84, Quantity: 3, ExtendedPrice: 59822.52, Freight: 890.84, Discontinued: false, Region: `West`, Address: `106 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60117 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `192 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90090, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1131, CustomerName: `James Madison`, CustomerFirstName: `James`, CustomerLastName: `Madison`, CustomerAddress: `192 Main Street, Los Angeles, USA, 90090`, Salesperson: `Max Jefferson`, OrderID: 1337, OrderDate: `10/10/2022`, ProductID: 198, ProductName: `Samsung Note`, UnitPrice: 18640.31, Quantity: 2, ExtendedPrice: 37280.62, Freight: 280.31, Discontinued: false, Region: `South East`, Address: `192 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90090 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `128 Market Street`, ShipCity: `Miami`, ShipPostalCode: 50136, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1132, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `128 Market Street, Miami, USA, 50136`, Salesperson: `Nancy Jefferson`, OrderID: 1617, OrderDate: `4/10/2022`, ProductID: 148, ProductName: `Samsung Galaxy 22`, UnitPrice: 26140.37, Quantity: 2, ExtendedPrice: 52280.74, Freight: 1270.37, Discontinued: false, Region: `West`, Address: `128 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 50136 }), + new InvoicesDataItem({ ShipName: `Jackson Home`, ShipAddress: `164 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 70190, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1133, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `164 Wall Street, Huston, USA, 70190`, Salesperson: `Nancy Watson`, OrderID: 1222, OrderDate: `3/15/2022`, ProductID: 140, ProductName: `IPad`, UnitPrice: 20540.74, Quantity: 3, ExtendedPrice: 61622.22, Freight: 1190.74, Discontinued: false, Region: `West`, Address: `164 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 70190 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `118 Main Street`, ShipCity: `Huston`, ShipPostalCode: 60126, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1134, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `118 Main Street, Huston, USA, 60126`, Salesperson: `Pamela Jefferson`, OrderID: 1888, OrderDate: `7/3/2022`, ProductID: 133, ProductName: `Samsung Galaxy 22`, UnitPrice: 25970.39, Quantity: 2, ExtendedPrice: 51940.78, Freight: 1110.39, Discontinued: false, Region: `North East`, Address: `118 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 60126 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `145 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50093, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1135, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `145 Wall Street, Philadelphia, USA, 50093`, Salesperson: `Nancy Jefferson`, OrderID: 1661, OrderDate: `5/14/2022`, ProductID: 199, ProductName: `Mac Book Air`, UnitPrice: 12190.38, Quantity: 2, ExtendedPrice: 24380.76, Freight: 1670.38, Discontinued: false, Region: `North East`, Address: `145 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50093 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `174 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70094, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1136, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `174 Wall Street, Los Angeles, USA, 70094`, Salesperson: `Max Madison`, OrderID: 1495, OrderDate: `1/19/2022`, ProductID: 188, ProductName: `Mac Book Pro`, UnitPrice: 18310.54, Quantity: 5, ExtendedPrice: 91552.7, Freight: 810.54, Discontinued: false, Region: `West`, Address: `174 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70094 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `146 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90093, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1137, CustomerName: `Martin Watson`, CustomerFirstName: `Martin`, CustomerLastName: `Watson`, CustomerAddress: `146 Wall Street, Philadelphia, USA, 90093`, Salesperson: `Mike Smith`, OrderID: 1649, OrderDate: `1/4/2022`, ProductID: 171, ProductName: `Mac Book Air`, UnitPrice: 6400.45, Quantity: 3, ExtendedPrice: 19201.35, Freight: 220.45, Discontinued: false, Region: `West`, Address: `146 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90093 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `181 Main Street`, ShipCity: `Miami`, ShipPostalCode: 80117, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1138, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `181 Main Street, Miami, USA, 80117`, Salesperson: `Mike Black`, OrderID: 1152, OrderDate: `5/12/2022`, ProductID: 172, ProductName: `Mac Book Pro`, UnitPrice: 26760.58, Quantity: 5, ExtendedPrice: 133802.9, Freight: 1480.58, Discontinued: false, Region: `West`, Address: `181 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 80117 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `183 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70191, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1139, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `183 Wall Street, Philadelphia, USA, 70191`, Salesperson: `Nancy Jefferson`, OrderID: 1471, OrderDate: `5/19/2022`, ProductID: 119, ProductName: `Mac Book Pro`, UnitPrice: 22030.88, Quantity: 5, ExtendedPrice: 110154.4, Freight: 990.88, Discontinued: true, Region: `West`, Address: `183 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70191 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `100 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80082, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1140, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `100 Wall Street, Philadelphia, USA, 80082`, Salesperson: `Max Madison`, OrderID: 1793, OrderDate: `3/16/2022`, ProductID: 158, ProductName: `Mac Book Pro`, UnitPrice: 20230.42, Quantity: 3, ExtendedPrice: 60691.26, Freight: 1990.42, Discontinued: false, Region: `West`, Address: `100 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80082 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `173 Market Street`, ShipCity: `New York`, ShipPostalCode: 90155, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1141, CustomerName: `Pamela Black`, CustomerFirstName: `Pamela`, CustomerLastName: `Black`, CustomerAddress: `173 Market Street, New York, USA, 90155`, Salesperson: `Pamela Black`, OrderID: 1928, OrderDate: `8/24/2022`, ProductID: 114, ProductName: `Mac Book Air`, UnitPrice: 24460.68, Quantity: 2, ExtendedPrice: 48921.36, Freight: 1840.68, Discontinued: false, Region: `West`, Address: `173 Market Street`, City: `New York`, Country: `USA`, PostalCode: 90155 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `171 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60087, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1142, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `171 Market Street, Philadelphia, USA, 60087`, Salesperson: `Pamela Madison`, OrderID: 1027, OrderDate: `1/25/2022`, ProductID: 145, ProductName: `Samsung Note`, UnitPrice: 6010.73, Quantity: 3, ExtendedPrice: 18032.19, Freight: 1860.73, Discontinued: false, Region: `West`, Address: `171 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60087 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `175 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60122, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1143, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `175 Wall Street, Huston, USA, 60122`, Salesperson: `Pamela Jackson`, OrderID: 1700, OrderDate: `12/10/2022`, ProductID: 150, ProductName: `Mac Book Pro`, UnitPrice: 22030.36, Quantity: 2, ExtendedPrice: 44060.72, Freight: 940.36, Discontinued: false, Region: `West`, Address: `175 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60122 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `174 Main Street`, ShipCity: `Miami`, ShipPostalCode: 90071, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1144, CustomerName: `Max Smith`, CustomerFirstName: `Max`, CustomerLastName: `Smith`, CustomerAddress: `174 Main Street, Miami, USA, 90071`, Salesperson: `Mike Jackson`, OrderID: 1769, OrderDate: `2/20/2022`, ProductID: 183, ProductName: `Mac Book Air`, UnitPrice: 25890.72, Quantity: 3, ExtendedPrice: 77672.16, Freight: 1540.72, Discontinued: false, Region: `West`, Address: `174 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 90071 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `100 Market Street`, ShipCity: `Huston`, ShipPostalCode: 90059, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1145, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `100 Market Street, Huston, USA, 90059`, Salesperson: `Max Jefferson`, OrderID: 1835, OrderDate: `5/15/2022`, ProductID: 142, ProductName: `Samsung Note`, UnitPrice: 28310.48, Quantity: 3, ExtendedPrice: 84931.44, Freight: 2000.48, Discontinued: false, Region: `West`, Address: `100 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 90059 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `120 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90120, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1146, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `120 Market Street, Miami, USA, 90120`, Salesperson: `Max Jefferson`, OrderID: 1787, OrderDate: `5/16/2022`, ProductID: 104, ProductName: `IPad`, UnitPrice: 8410.44, Quantity: 2, ExtendedPrice: 16820.88, Freight: 1620.44, Discontinued: false, Region: `West`, Address: `120 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90120 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `163 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80132, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1147, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `163 Wall Street, Los Angeles, USA, 80132`, Salesperson: `Pamela Watson`, OrderID: 1026, OrderDate: `7/10/2022`, ProductID: 130, ProductName: `Samsung Note`, UnitPrice: 13650.42, Quantity: 3, ExtendedPrice: 40951.26, Freight: 750.42, Discontinued: false, Region: `West`, Address: `163 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80132 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `169 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 90138, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1148, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `169 Wall Street, Huston, USA, 90138`, Salesperson: `Anna Smith`, OrderID: 1805, OrderDate: `1/6/2022`, ProductID: 126, ProductName: `Samsung Note`, UnitPrice: 29130.32, Quantity: 4, ExtendedPrice: 116521.28, Freight: 800.32, Discontinued: false, Region: `West`, Address: `169 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 90138 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `167 Market Street`, ShipCity: `Miami`, ShipPostalCode: 60152, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1149, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `167 Market Street, Miami, USA, 60152`, Salesperson: `Ben Jackson`, OrderID: 1292, OrderDate: `10/3/2022`, ProductID: 178, ProductName: `IPhone`, UnitPrice: 9150.64, Quantity: 5, ExtendedPrice: 45753.2, Freight: 1530.64, Discontinued: true, Region: `North East`, Address: `167 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 60152 }), + new InvoicesDataItem({ ShipName: `Jackson Home`, ShipAddress: `194 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80133, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1150, CustomerName: `Nancy Jackson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jackson`, CustomerAddress: `194 Wall Street, Philadelphia, USA, 80133`, Salesperson: `Martin Watson`, OrderID: 1240, OrderDate: `10/14/2022`, ProductID: 128, ProductName: `IPhone`, UnitPrice: 22900.38, Quantity: 5, ExtendedPrice: 114501.9, Freight: 1500.38, Discontinued: false, Region: `North East`, Address: `194 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80133 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `168 Wall Street`, ShipCity: `New York`, ShipPostalCode: 60104, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1151, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `168 Wall Street, New York, USA, 60104`, Salesperson: `Martin Madison`, OrderID: 1307, OrderDate: `5/19/2022`, ProductID: 109, ProductName: `Samsung Note`, UnitPrice: 18330.33, Quantity: 5, ExtendedPrice: 91651.65, Freight: 1960.33, Discontinued: false, Region: `North East`, Address: `168 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 60104 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `122 Market Street`, ShipCity: `New York`, ShipPostalCode: 60149, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1152, CustomerName: `Nancy Madison`, CustomerFirstName: `Nancy`, CustomerLastName: `Madison`, CustomerAddress: `122 Market Street, New York, USA, 60149`, Salesperson: `Mike Madison`, OrderID: 1360, OrderDate: `11/2/2022`, ProductID: 141, ProductName: `Mac Book Pro`, UnitPrice: 8620.6, Quantity: 2, ExtendedPrice: 17241.2, Freight: 950.6, Discontinued: false, Region: `South East`, Address: `122 Market Street`, City: `New York`, Country: `USA`, PostalCode: 60149 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `147 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80098, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1153, CustomerName: `Pamela Black`, CustomerFirstName: `Pamela`, CustomerLastName: `Black`, CustomerAddress: `147 Main Street, Philadelphia, USA, 80098`, Salesperson: `James Black`, OrderID: 1445, OrderDate: `11/2/2022`, ProductID: 151, ProductName: `Samsung Note`, UnitPrice: 27180.5, Quantity: 2, ExtendedPrice: 54361, Freight: 790.5, Discontinued: false, Region: `South East`, Address: `147 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80098 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `113 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90111, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1154, CustomerName: `Martin Jackson`, CustomerFirstName: `Martin`, CustomerLastName: `Jackson`, CustomerAddress: `113 Wall Street, Los Angeles, USA, 90111`, Salesperson: `Anna Jackson`, OrderID: 1014, OrderDate: `1/24/2022`, ProductID: 185, ProductName: `Mac Book Air`, UnitPrice: 14760.63, Quantity: 2, ExtendedPrice: 29521.26, Freight: 1520.63, Discontinued: false, Region: `West`, Address: `113 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90111 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `154 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60050, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1155, CustomerName: `Nancy Smith`, CustomerFirstName: `Nancy`, CustomerLastName: `Smith`, CustomerAddress: `154 Wall Street, Huston, USA, 60050`, Salesperson: `Nancy Smith`, OrderID: 1845, OrderDate: `4/8/2022`, ProductID: 105, ProductName: `IPad`, UnitPrice: 22600.77, Quantity: 4, ExtendedPrice: 90403.08, Freight: 670.77, Discontinued: false, Region: `North East`, Address: `154 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60050 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `188 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80121, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1156, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `188 Main Street, Philadelphia, USA, 80121`, Salesperson: `Martin Jefferson`, OrderID: 1587, OrderDate: `5/13/2022`, ProductID: 174, ProductName: `Samsung Note`, UnitPrice: 17020.74, Quantity: 2, ExtendedPrice: 34041.48, Freight: 1490.74, Discontinued: false, Region: `West`, Address: `188 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80121 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `181 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 90097, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1157, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `181 Wall Street, Huston, USA, 90097`, Salesperson: `Anna Madison`, OrderID: 1706, OrderDate: `5/22/2022`, ProductID: 112, ProductName: `Samsung Galaxy 22`, UnitPrice: 21780.43, Quantity: 3, ExtendedPrice: 65341.29, Freight: 1650.43, Discontinued: false, Region: `North East`, Address: `181 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 90097 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `171 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 50118, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1158, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `171 Wall Street, Miami, USA, 50118`, Salesperson: `Max Smith`, OrderID: 1335, OrderDate: `6/16/2022`, ProductID: 116, ProductName: `IPad`, UnitPrice: 7560.43, Quantity: 3, ExtendedPrice: 22681.29, Freight: 1140.43, Discontinued: false, Region: `West`, Address: `171 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 50118 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `193 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70176, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1159, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `193 Market Street, Philadelphia, USA, 70176`, Salesperson: `Martin Black`, OrderID: 1003, OrderDate: `9/11/2022`, ProductID: 170, ProductName: `IPhone`, UnitPrice: 15510.7, Quantity: 5, ExtendedPrice: 77553.5, Freight: 200.7, Discontinued: true, Region: `West`, Address: `193 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70176 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `125 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80142, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1160, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `125 Market Street, Philadelphia, USA, 80142`, Salesperson: `Martin Madison`, OrderID: 1723, OrderDate: `3/14/2022`, ProductID: 179, ProductName: `IPhone`, UnitPrice: 14760.6, Quantity: 3, ExtendedPrice: 44281.8, Freight: 1650.6, Discontinued: false, Region: `West`, Address: `125 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80142 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `128 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70111, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1161, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `128 Main Street, Philadelphia, USA, 70111`, Salesperson: `Max Jackson`, OrderID: 1810, OrderDate: `1/18/2022`, ProductID: 117, ProductName: `IPad`, UnitPrice: 19620.55, Quantity: 5, ExtendedPrice: 98102.75, Freight: 1030.55, Discontinued: false, Region: `South East`, Address: `128 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70111 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `131 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90058, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1162, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `131 Wall Street, Philadelphia, USA, 90058`, Salesperson: `Pamela Madison`, OrderID: 1224, OrderDate: `2/2/2022`, ProductID: 108, ProductName: `Mac Book Air`, UnitPrice: 9130.21, Quantity: 2, ExtendedPrice: 18260.42, Freight: 1110.21, Discontinued: false, Region: `West`, Address: `131 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90058 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `145 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50176, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1163, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `145 Main Street, Philadelphia, USA, 50176`, Salesperson: `Mike Smith`, OrderID: 1265, OrderDate: `4/22/2022`, ProductID: 147, ProductName: `IPhone`, UnitPrice: 15210.29, Quantity: 2, ExtendedPrice: 30420.58, Freight: 1470.29, Discontinued: false, Region: `South East`, Address: `145 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50176 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `123 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90058, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1164, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `123 Main Street, Philadelphia, USA, 90058`, Salesperson: `Martin Watson`, OrderID: 1428, OrderDate: `9/14/2022`, ProductID: 195, ProductName: `Samsung Note`, UnitPrice: 6440.36, Quantity: 4, ExtendedPrice: 25761.44, Freight: 350.36, Discontinued: false, Region: `West`, Address: `123 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90058 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `148 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60161, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1165, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `148 Wall Street, Los Angeles, USA, 60161`, Salesperson: `Nancy Black`, OrderID: 1367, OrderDate: `9/1/2022`, ProductID: 196, ProductName: `Mac Book Pro`, UnitPrice: 26990.25, Quantity: 4, ExtendedPrice: 107961, Freight: 950.25, Discontinued: false, Region: `West`, Address: `148 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60161 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `151 Main Street`, ShipCity: `New York`, ShipPostalCode: 90156, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1166, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `151 Main Street, New York, USA, 90156`, Salesperson: `Ben Smith`, OrderID: 1812, OrderDate: `6/23/2022`, ProductID: 182, ProductName: `Samsung Galaxy 22`, UnitPrice: 6230.76, Quantity: 5, ExtendedPrice: 31153.8, Freight: 920.76, Discontinued: false, Region: `West`, Address: `151 Main Street`, City: `New York`, Country: `USA`, PostalCode: 90156 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `128 Main Street`, ShipCity: `New York`, ShipPostalCode: 90073, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1167, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `128 Main Street, New York, USA, 90073`, Salesperson: `Nancy Madison`, OrderID: 1121, OrderDate: `3/25/2022`, ProductID: 166, ProductName: `Mac Book Air`, UnitPrice: 8360.33, Quantity: 3, ExtendedPrice: 25080.99, Freight: 1870.33, Discontinued: false, Region: `South East`, Address: `128 Main Street`, City: `New York`, Country: `USA`, PostalCode: 90073 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `109 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70139, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1168, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `109 Wall Street, Philadelphia, USA, 70139`, Salesperson: `James Jefferson`, OrderID: 1086, OrderDate: `11/22/2022`, ProductID: 192, ProductName: `IPhone`, UnitPrice: 13050.45, Quantity: 4, ExtendedPrice: 52201.8, Freight: 1850.45, Discontinued: false, Region: `North East`, Address: `109 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70139 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `196 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60096, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1169, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `196 Wall Street, Los Angeles, USA, 60096`, Salesperson: `Mike Watson`, OrderID: 1859, OrderDate: `8/11/2022`, ProductID: 157, ProductName: `IPhone`, UnitPrice: 14950.2, Quantity: 5, ExtendedPrice: 74751, Freight: 1140.2, Discontinued: true, Region: `South East`, Address: `196 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60096 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `101 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90111, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1170, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `101 Market Street, Philadelphia, USA, 90111`, Salesperson: `Mike Madison`, OrderID: 1952, OrderDate: `7/19/2022`, ProductID: 152, ProductName: `Samsung Galaxy 22`, UnitPrice: 29810.56, Quantity: 4, ExtendedPrice: 119242.24, Freight: 470.56, Discontinued: false, Region: `South East`, Address: `101 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90111 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `147 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90157, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1171, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `147 Main Street, Los Angeles, USA, 90157`, Salesperson: `Ben Black`, OrderID: 1351, OrderDate: `5/22/2022`, ProductID: 180, ProductName: `Samsung Note`, UnitPrice: 13470.4, Quantity: 5, ExtendedPrice: 67352, Freight: 1610.4, Discontinued: false, Region: `West`, Address: `147 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90157 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `195 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80071, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1172, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `195 Market Street, Huston, USA, 80071`, Salesperson: `Pamela Jefferson`, OrderID: 1371, OrderDate: `12/9/2022`, ProductID: 105, ProductName: `Mac Book Pro`, UnitPrice: 19040.72, Quantity: 4, ExtendedPrice: 76162.88, Freight: 1480.72, Discontinued: false, Region: `South East`, Address: `195 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80071 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `184 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90197, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1173, CustomerName: `Martin Black`, CustomerFirstName: `Martin`, CustomerLastName: `Black`, CustomerAddress: `184 Market Street, Los Angeles, USA, 90197`, Salesperson: `Martin Watson`, OrderID: 1537, OrderDate: `4/3/2022`, ProductID: 137, ProductName: `IPhone`, UnitPrice: 25370.79, Quantity: 2, ExtendedPrice: 50741.58, Freight: 1980.79, Discontinued: false, Region: `North East`, Address: `184 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90197 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `102 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70185, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1174, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `102 Market Street, Huston, USA, 70185`, Salesperson: `Ben Jackson`, OrderID: 1378, OrderDate: `7/6/2022`, ProductID: 182, ProductName: `Mac Book Pro`, UnitPrice: 19620.84, Quantity: 2, ExtendedPrice: 39241.68, Freight: 730.84, Discontinued: false, Region: `North East`, Address: `102 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70185 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `192 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60144, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1175, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `192 Wall Street, Huston, USA, 60144`, Salesperson: `Martin Jefferson`, OrderID: 1350, OrderDate: `10/23/2022`, ProductID: 138, ProductName: `IPad`, UnitPrice: 26010.88, Quantity: 2, ExtendedPrice: 52021.76, Freight: 260.88, Discontinued: false, Region: `North East`, Address: `192 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60144 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `114 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70079, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1176, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `114 Main Street, Philadelphia, USA, 70079`, Salesperson: `Anna Watson`, OrderID: 1889, OrderDate: `8/21/2022`, ProductID: 146, ProductName: `Samsung Galaxy 22`, UnitPrice: 23970.6, Quantity: 3, ExtendedPrice: 71911.8, Freight: 1870.6, Discontinued: false, Region: `North East`, Address: `114 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70079 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `199 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 90182, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1177, CustomerName: `Nancy Madison`, CustomerFirstName: `Nancy`, CustomerLastName: `Madison`, CustomerAddress: `199 Wall Street, Miami, USA, 90182`, Salesperson: `Anna Madison`, OrderID: 1285, OrderDate: `3/12/2022`, ProductID: 146, ProductName: `Samsung Note`, UnitPrice: 13660.54, Quantity: 2, ExtendedPrice: 27321.08, Freight: 1870.54, Discontinued: false, Region: `South East`, Address: `199 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 90182 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `141 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80097, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1178, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `141 Market Street, Philadelphia, USA, 80097`, Salesperson: `Pamela Watson`, OrderID: 1886, OrderDate: `8/1/2022`, ProductID: 107, ProductName: `Mac Book Pro`, UnitPrice: 11630.46, Quantity: 4, ExtendedPrice: 46521.84, Freight: 1530.46, Discontinued: false, Region: `North East`, Address: `141 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80097 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `168 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80162, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1179, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `168 Main Street, Los Angeles, USA, 80162`, Salesperson: `Mike Jackson`, OrderID: 1009, OrderDate: `4/7/2022`, ProductID: 149, ProductName: `IPad`, UnitPrice: 16960.32, Quantity: 3, ExtendedPrice: 50880.96, Freight: 1510.32, Discontinued: true, Region: `North East`, Address: `168 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80162 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `100 Market Street`, ShipCity: `Miami`, ShipPostalCode: 80063, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1180, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `100 Market Street, Miami, USA, 80063`, Salesperson: `Nancy Smith`, OrderID: 1046, OrderDate: `10/21/2022`, ProductID: 123, ProductName: `IPad`, UnitPrice: 19360.67, Quantity: 3, ExtendedPrice: 58082.01, Freight: 1510.67, Discontinued: false, Region: `South East`, Address: `100 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 80063 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `145 Market Street`, ShipCity: `Huston`, ShipPostalCode: 90152, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1181, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `145 Market Street, Huston, USA, 90152`, Salesperson: `Max Watson`, OrderID: 1593, OrderDate: `11/17/2022`, ProductID: 169, ProductName: `Samsung Note`, UnitPrice: 28870.27, Quantity: 5, ExtendedPrice: 144351.35, Freight: 1430.27, Discontinued: false, Region: `North East`, Address: `145 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 90152 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `154 Main Street`, ShipCity: `Miami`, ShipPostalCode: 90080, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1182, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `154 Main Street, Miami, USA, 90080`, Salesperson: `Nancy Jefferson`, OrderID: 1234, OrderDate: `3/21/2022`, ProductID: 111, ProductName: `IPad`, UnitPrice: 16610.78, Quantity: 2, ExtendedPrice: 33221.56, Freight: 1350.78, Discontinued: false, Region: `South East`, Address: `154 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 90080 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `166 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70090, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1183, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `166 Market Street, Huston, USA, 70090`, Salesperson: `Ben Watson`, OrderID: 1362, OrderDate: `5/2/2022`, ProductID: 122, ProductName: `Mac Book Air`, UnitPrice: 6870.64, Quantity: 4, ExtendedPrice: 27482.56, Freight: 750.64, Discontinued: false, Region: `North East`, Address: `166 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70090 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `180 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90169, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1184, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `180 Market Street, Miami, USA, 90169`, Salesperson: `Pamela Black`, OrderID: 1698, OrderDate: `1/18/2022`, ProductID: 129, ProductName: `IPad`, UnitPrice: 10960.71, Quantity: 5, ExtendedPrice: 54803.55, Freight: 1530.71, Discontinued: false, Region: `West`, Address: `180 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90169 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `169 Main Street`, ShipCity: `Huston`, ShipPostalCode: 50114, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1185, CustomerName: `Nancy Madison`, CustomerFirstName: `Nancy`, CustomerLastName: `Madison`, CustomerAddress: `169 Main Street, Huston, USA, 50114`, Salesperson: `Martin Smith`, OrderID: 1458, OrderDate: `6/15/2022`, ProductID: 183, ProductName: `IPhone`, UnitPrice: 16380.23, Quantity: 2, ExtendedPrice: 32760.46, Freight: 1990.23, Discontinued: false, Region: `West`, Address: `169 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 50114 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `132 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90064, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1186, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `132 Market Street, Miami, USA, 90064`, Salesperson: `Nancy Jackson`, OrderID: 1563, OrderDate: `6/17/2022`, ProductID: 193, ProductName: `Samsung Note`, UnitPrice: 25940.61, Quantity: 4, ExtendedPrice: 103762.44, Freight: 970.61, Discontinued: false, Region: `West`, Address: `132 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90064 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `107 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50110, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1187, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `107 Wall Street, Los Angeles, USA, 50110`, Salesperson: `Nancy Jefferson`, OrderID: 1934, OrderDate: `6/5/2022`, ProductID: 110, ProductName: `Samsung Note`, UnitPrice: 5360.47, Quantity: 3, ExtendedPrice: 16081.41, Freight: 1680.47, Discontinued: false, Region: `North East`, Address: `107 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50110 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `170 Wall Street`, ShipCity: `New York`, ShipPostalCode: 50149, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1188, CustomerName: `Pamela Black`, CustomerFirstName: `Pamela`, CustomerLastName: `Black`, CustomerAddress: `170 Wall Street, New York, USA, 50149`, Salesperson: `Mike Jefferson`, OrderID: 1880, OrderDate: `12/7/2022`, ProductID: 137, ProductName: `IPhone`, UnitPrice: 19560.62, Quantity: 4, ExtendedPrice: 78242.48, Freight: 680.62, Discontinued: false, Region: `West`, Address: `170 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 50149 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `152 Wall Street`, ShipCity: `New York`, ShipPostalCode: 50085, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1189, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `152 Wall Street, New York, USA, 50085`, Salesperson: `Anna Jackson`, OrderID: 1159, OrderDate: `5/18/2022`, ProductID: 167, ProductName: `IPad`, UnitPrice: 19270.25, Quantity: 2, ExtendedPrice: 38540.5, Freight: 1050.25, Discontinued: true, Region: `North East`, Address: `152 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 50085 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `186 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60146, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1190, CustomerName: `Mike Watson`, CustomerFirstName: `Mike`, CustomerLastName: `Watson`, CustomerAddress: `186 Wall Street, Los Angeles, USA, 60146`, Salesperson: `Nancy Madison`, OrderID: 1960, OrderDate: `3/2/2022`, ProductID: 167, ProductName: `Samsung Galaxy 22`, UnitPrice: 22090.53, Quantity: 3, ExtendedPrice: 66271.59, Freight: 1790.53, Discontinued: false, Region: `West`, Address: `186 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60146 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `194 Wall Street`, ShipCity: `New York`, ShipPostalCode: 50170, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1191, CustomerName: `Nancy Madison`, CustomerFirstName: `Nancy`, CustomerLastName: `Madison`, CustomerAddress: `194 Wall Street, New York, USA, 50170`, Salesperson: `Max Watson`, OrderID: 1658, OrderDate: `9/1/2022`, ProductID: 156, ProductName: `Samsung Galaxy 22`, UnitPrice: 27450.8, Quantity: 4, ExtendedPrice: 109803.2, Freight: 270.8, Discontinued: false, Region: `West`, Address: `194 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 50170 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `172 Main Street`, ShipCity: `New York`, ShipPostalCode: 70191, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1192, CustomerName: `Ben Smith`, CustomerFirstName: `Ben`, CustomerLastName: `Smith`, CustomerAddress: `172 Main Street, New York, USA, 70191`, Salesperson: `Pamela Madison`, OrderID: 1225, OrderDate: `3/22/2022`, ProductID: 170, ProductName: `Samsung Galaxy 22`, UnitPrice: 21150.84, Quantity: 5, ExtendedPrice: 105754.2, Freight: 1230.84, Discontinued: false, Region: `West`, Address: `172 Main Street`, City: `New York`, Country: `USA`, PostalCode: 70191 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `108 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70146, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1193, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `108 Market Street, Los Angeles, USA, 70146`, Salesperson: `Pamela Black`, OrderID: 1886, OrderDate: `8/20/2022`, ProductID: 126, ProductName: `IPhone`, UnitPrice: 6100.73, Quantity: 2, ExtendedPrice: 12201.46, Freight: 1340.73, Discontinued: false, Region: `South East`, Address: `108 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70146 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `109 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90083, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1194, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `109 Wall Street, Los Angeles, USA, 90083`, Salesperson: `Max Smith`, OrderID: 1191, OrderDate: `5/9/2022`, ProductID: 179, ProductName: `Samsung Galaxy 22`, UnitPrice: 20190.35, Quantity: 5, ExtendedPrice: 100951.75, Freight: 640.35, Discontinued: false, Region: `West`, Address: `109 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90083 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `121 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70102, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1195, CustomerName: `Max Smith`, CustomerFirstName: `Max`, CustomerLastName: `Smith`, CustomerAddress: `121 Market Street, Philadelphia, USA, 70102`, Salesperson: `Ben Black`, OrderID: 1051, OrderDate: `5/21/2022`, ProductID: 192, ProductName: `Mac Book Pro`, UnitPrice: 21730.32, Quantity: 5, ExtendedPrice: 108651.6, Freight: 1030.32, Discontinued: false, Region: `North East`, Address: `121 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70102 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `104 Wall Street`, ShipCity: `New York`, ShipPostalCode: 90066, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1196, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `104 Wall Street, New York, USA, 90066`, Salesperson: `Ben Watson`, OrderID: 1385, OrderDate: `2/2/2022`, ProductID: 182, ProductName: `IPad`, UnitPrice: 26120.45, Quantity: 4, ExtendedPrice: 104481.8, Freight: 1930.45, Discontinued: false, Region: `North East`, Address: `104 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 90066 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `126 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60091, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1197, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `126 Market Street, Philadelphia, USA, 60091`, Salesperson: `Anna Madison`, OrderID: 1675, OrderDate: `6/22/2022`, ProductID: 174, ProductName: `IPad`, UnitPrice: 13240.35, Quantity: 4, ExtendedPrice: 52961.4, Freight: 890.35, Discontinued: false, Region: `South East`, Address: `126 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60091 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `139 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70063, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1198, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `139 Main Street, Los Angeles, USA, 70063`, Salesperson: `Pamela Black`, OrderID: 1997, OrderDate: `11/17/2022`, ProductID: 200, ProductName: `IPhone`, UnitPrice: 8400.83, Quantity: 5, ExtendedPrice: 42004.15, Freight: 1340.83, Discontinued: false, Region: `West`, Address: `139 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70063 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `133 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 70071, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1199, CustomerName: `Mike Smith`, CustomerFirstName: `Mike`, CustomerLastName: `Smith`, CustomerAddress: `133 Wall Street, Miami, USA, 70071`, Salesperson: `James Watson`, OrderID: 1641, OrderDate: `11/12/2022`, ProductID: 147, ProductName: `Samsung Note`, UnitPrice: 10150.31, Quantity: 3, ExtendedPrice: 30450.93, Freight: 720.31, Discontinued: true, Region: `South East`, Address: `133 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 70071 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `166 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60137, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1200, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `166 Main Street, Miami, USA, 60137`, Salesperson: `Ben Madison`, OrderID: 1418, OrderDate: `11/8/2022`, ProductID: 135, ProductName: `IPhone`, UnitPrice: 9410.46, Quantity: 2, ExtendedPrice: 18820.92, Freight: 970.46, Discontinued: false, Region: `West`, Address: `166 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60137 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `143 Main Street`, ShipCity: `Miami`, ShipPostalCode: 70069, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1201, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `143 Main Street, Miami, USA, 70069`, Salesperson: `Anna Watson`, OrderID: 1545, OrderDate: `6/24/2022`, ProductID: 190, ProductName: `Mac Book Pro`, UnitPrice: 5030.78, Quantity: 3, ExtendedPrice: 15092.34, Freight: 1630.78, Discontinued: false, Region: `North East`, Address: `143 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 70069 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `106 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50097, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1202, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `106 Wall Street, Los Angeles, USA, 50097`, Salesperson: `James Jackson`, OrderID: 1493, OrderDate: `7/24/2022`, ProductID: 124, ProductName: `Samsung Note`, UnitPrice: 6390.72, Quantity: 5, ExtendedPrice: 31953.6, Freight: 1960.72, Discontinued: false, Region: `North East`, Address: `106 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50097 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `143 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50052, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1203, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `143 Market Street, Philadelphia, USA, 50052`, Salesperson: `Mike Jefferson`, OrderID: 1495, OrderDate: `2/14/2022`, ProductID: 179, ProductName: `Mac Book Pro`, UnitPrice: 16770.46, Quantity: 5, ExtendedPrice: 83852.3, Freight: 420.46, Discontinued: false, Region: `North East`, Address: `143 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50052 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `174 Wall Street`, ShipCity: `New York`, ShipPostalCode: 60127, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1204, CustomerName: `Nancy Smith`, CustomerFirstName: `Nancy`, CustomerLastName: `Smith`, CustomerAddress: `174 Wall Street, New York, USA, 60127`, Salesperson: `Max Watson`, OrderID: 1123, OrderDate: `11/20/2022`, ProductID: 186, ProductName: `Mac Book Air`, UnitPrice: 20930.48, Quantity: 4, ExtendedPrice: 83721.92, Freight: 950.48, Discontinued: false, Region: `South East`, Address: `174 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 60127 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `123 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60111, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1205, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `123 Wall Street, Los Angeles, USA, 60111`, Salesperson: `Pamela Jefferson`, OrderID: 1342, OrderDate: `12/8/2022`, ProductID: 140, ProductName: `Samsung Galaxy 22`, UnitPrice: 27010.34, Quantity: 3, ExtendedPrice: 81031.02, Freight: 1470.34, Discontinued: false, Region: `West`, Address: `123 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60111 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `166 Market Street`, ShipCity: `Miami`, ShipPostalCode: 50102, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1206, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `166 Market Street, Miami, USA, 50102`, Salesperson: `Ben Madison`, OrderID: 1017, OrderDate: `10/2/2022`, ProductID: 186, ProductName: `Samsung Galaxy 22`, UnitPrice: 12810.79, Quantity: 5, ExtendedPrice: 64053.95, Freight: 1990.79, Discontinued: false, Region: `North East`, Address: `166 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 50102 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `193 Main Street`, ShipCity: `Huston`, ShipPostalCode: 80187, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1207, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `193 Main Street, Huston, USA, 80187`, Salesperson: `Mike Jefferson`, OrderID: 1558, OrderDate: `11/12/2022`, ProductID: 194, ProductName: `Mac Book Pro`, UnitPrice: 26210.45, Quantity: 2, ExtendedPrice: 52420.9, Freight: 1110.45, Discontinued: false, Region: `North East`, Address: `193 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 80187 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `137 Main Street`, ShipCity: `Miami`, ShipPostalCode: 80111, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1208, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `137 Main Street, Miami, USA, 80111`, Salesperson: `Mike Watson`, OrderID: 1466, OrderDate: `11/18/2022`, ProductID: 189, ProductName: `Mac Book Air`, UnitPrice: 6190.57, Quantity: 3, ExtendedPrice: 18571.71, Freight: 1810.57, Discontinued: false, Region: `West`, Address: `137 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 80111 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `122 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80088, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1209, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `122 Main Street, Philadelphia, USA, 80088`, Salesperson: `Ben Jefferson`, OrderID: 1539, OrderDate: `11/13/2022`, ProductID: 131, ProductName: `IPhone`, UnitPrice: 21280.22, Quantity: 4, ExtendedPrice: 85120.88, Freight: 760.22, Discontinued: true, Region: `North East`, Address: `122 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80088 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `115 Main Street`, ShipCity: `New York`, ShipPostalCode: 80079, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1210, CustomerName: `Anna Jefferson`, CustomerFirstName: `Anna`, CustomerLastName: `Jefferson`, CustomerAddress: `115 Main Street, New York, USA, 80079`, Salesperson: `Max Jefferson`, OrderID: 1411, OrderDate: `11/22/2022`, ProductID: 135, ProductName: `Samsung Galaxy 22`, UnitPrice: 13700.71, Quantity: 3, ExtendedPrice: 41102.13, Freight: 1730.71, Discontinued: false, Region: `South East`, Address: `115 Main Street`, City: `New York`, Country: `USA`, PostalCode: 80079 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `114 Main Street`, ShipCity: `New York`, ShipPostalCode: 50137, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1211, CustomerName: `Mike Smith`, CustomerFirstName: `Mike`, CustomerLastName: `Smith`, CustomerAddress: `114 Main Street, New York, USA, 50137`, Salesperson: `Nancy Smith`, OrderID: 1890, OrderDate: `8/5/2022`, ProductID: 169, ProductName: `Samsung Galaxy 22`, UnitPrice: 11320.48, Quantity: 3, ExtendedPrice: 33961.44, Freight: 930.48, Discontinued: false, Region: `West`, Address: `114 Main Street`, City: `New York`, Country: `USA`, PostalCode: 50137 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `130 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 90082, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1212, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `130 Wall Street, Miami, USA, 90082`, Salesperson: `Nancy Madison`, OrderID: 1783, OrderDate: `9/1/2022`, ProductID: 109, ProductName: `IPhone`, UnitPrice: 24340.75, Quantity: 5, ExtendedPrice: 121703.75, Freight: 490.75, Discontinued: false, Region: `North East`, Address: `130 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 90082 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `140 Main Street`, ShipCity: `New York`, ShipPostalCode: 80095, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1213, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `140 Main Street, New York, USA, 80095`, Salesperson: `Pamela Watson`, OrderID: 1101, OrderDate: `5/25/2022`, ProductID: 101, ProductName: `Mac Book Air`, UnitPrice: 29980.24, Quantity: 4, ExtendedPrice: 119920.96, Freight: 1190.24, Discontinued: false, Region: `South East`, Address: `140 Main Street`, City: `New York`, Country: `USA`, PostalCode: 80095 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `165 Main Street`, ShipCity: `Huston`, ShipPostalCode: 90200, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1214, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `165 Main Street, Huston, USA, 90200`, Salesperson: `Max Watson`, OrderID: 1932, OrderDate: `2/10/2022`, ProductID: 159, ProductName: `Mac Book Air`, UnitPrice: 23460.59, Quantity: 4, ExtendedPrice: 93842.36, Freight: 710.59, Discontinued: false, Region: `South East`, Address: `165 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 90200 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `154 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70200, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1215, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `154 Market Street, Los Angeles, USA, 70200`, Salesperson: `Mike Black`, OrderID: 1514, OrderDate: `10/8/2022`, ProductID: 148, ProductName: `Samsung Note`, UnitPrice: 29540.27, Quantity: 4, ExtendedPrice: 118161.08, Freight: 1960.27, Discontinued: false, Region: `North East`, Address: `154 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70200 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `113 Market Street`, ShipCity: `New York`, ShipPostalCode: 50127, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1216, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `113 Market Street, New York, USA, 50127`, Salesperson: `James Jefferson`, OrderID: 1736, OrderDate: `10/21/2022`, ProductID: 188, ProductName: `IPad`, UnitPrice: 15350.27, Quantity: 4, ExtendedPrice: 61401.08, Freight: 540.27, Discontinued: false, Region: `South East`, Address: `113 Market Street`, City: `New York`, Country: `USA`, PostalCode: 50127 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `153 Main Street`, ShipCity: `Huston`, ShipPostalCode: 80064, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1217, CustomerName: `James Jackson`, CustomerFirstName: `James`, CustomerLastName: `Jackson`, CustomerAddress: `153 Main Street, Huston, USA, 80064`, Salesperson: `Mike Jackson`, OrderID: 1978, OrderDate: `12/25/2022`, ProductID: 125, ProductName: `IPad`, UnitPrice: 15880.31, Quantity: 3, ExtendedPrice: 47640.93, Freight: 800.31, Discontinued: false, Region: `North East`, Address: `153 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 80064 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `107 Main Street`, ShipCity: `Miami`, ShipPostalCode: 50196, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1218, CustomerName: `Mike Smith`, CustomerFirstName: `Mike`, CustomerLastName: `Smith`, CustomerAddress: `107 Main Street, Miami, USA, 50196`, Salesperson: `Martin Jackson`, OrderID: 1324, OrderDate: `7/18/2022`, ProductID: 188, ProductName: `Mac Book Air`, UnitPrice: 26990.38, Quantity: 4, ExtendedPrice: 107961.52, Freight: 610.38, Discontinued: false, Region: `South East`, Address: `107 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 50196 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `140 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 70154, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1219, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `140 Wall Street, Miami, USA, 70154`, Salesperson: `Nancy Madison`, OrderID: 1307, OrderDate: `4/19/2022`, ProductID: 114, ProductName: `IPhone`, UnitPrice: 18300.65, Quantity: 4, ExtendedPrice: 73202.6, Freight: 800.65, Discontinued: true, Region: `West`, Address: `140 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 70154 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `158 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50154, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1220, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `158 Market Street, Los Angeles, USA, 50154`, Salesperson: `James Black`, OrderID: 1808, OrderDate: `3/18/2022`, ProductID: 172, ProductName: `Mac Book Air`, UnitPrice: 27460.67, Quantity: 3, ExtendedPrice: 82382.01, Freight: 1220.67, Discontinued: false, Region: `North East`, Address: `158 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50154 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `116 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90170, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1221, CustomerName: `Pamela Smith`, CustomerFirstName: `Pamela`, CustomerLastName: `Smith`, CustomerAddress: `116 Main Street, Los Angeles, USA, 90170`, Salesperson: `James Jefferson`, OrderID: 1481, OrderDate: `5/22/2022`, ProductID: 177, ProductName: `IPhone`, UnitPrice: 23770.26, Quantity: 2, ExtendedPrice: 47540.52, Freight: 480.26, Discontinued: false, Region: `North East`, Address: `116 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90170 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `124 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 50137, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1222, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `124 Wall Street, Huston, USA, 50137`, Salesperson: `Martin Watson`, OrderID: 1874, OrderDate: `10/1/2022`, ProductID: 102, ProductName: `Mac Book Air`, UnitPrice: 12080.68, Quantity: 5, ExtendedPrice: 60403.4, Freight: 400.68, Discontinued: false, Region: `North East`, Address: `124 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 50137 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `197 Main Street`, ShipCity: `New York`, ShipPostalCode: 60174, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1223, CustomerName: `Nancy Smith`, CustomerFirstName: `Nancy`, CustomerLastName: `Smith`, CustomerAddress: `197 Main Street, New York, USA, 60174`, Salesperson: `Nancy Jefferson`, OrderID: 1377, OrderDate: `10/24/2022`, ProductID: 123, ProductName: `Mac Book Air`, UnitPrice: 10520.88, Quantity: 4, ExtendedPrice: 42083.52, Freight: 800.88, Discontinued: false, Region: `South East`, Address: `197 Main Street`, City: `New York`, Country: `USA`, PostalCode: 60174 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `192 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 80134, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1224, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `192 Wall Street, Miami, USA, 80134`, Salesperson: `James Madison`, OrderID: 1691, OrderDate: `6/13/2022`, ProductID: 123, ProductName: `IPhone`, UnitPrice: 11090.82, Quantity: 2, ExtendedPrice: 22181.64, Freight: 910.82, Discontinued: false, Region: `South East`, Address: `192 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 80134 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `111 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80054, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1225, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `111 Market Street, Huston, USA, 80054`, Salesperson: `Martin Jackson`, OrderID: 1242, OrderDate: `4/6/2022`, ProductID: 180, ProductName: `IPhone`, UnitPrice: 8180.25, Quantity: 5, ExtendedPrice: 40901.25, Freight: 510.25, Discontinued: false, Region: `North East`, Address: `111 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80054 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `106 Market Street`, ShipCity: `New York`, ShipPostalCode: 60139, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1226, CustomerName: `Nancy Jackson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jackson`, CustomerAddress: `106 Market Street, New York, USA, 60139`, Salesperson: `James Madison`, OrderID: 1745, OrderDate: `1/18/2022`, ProductID: 115, ProductName: `IPhone`, UnitPrice: 6570.23, Quantity: 5, ExtendedPrice: 32851.15, Freight: 840.23, Discontinued: false, Region: `West`, Address: `106 Market Street`, City: `New York`, Country: `USA`, PostalCode: 60139 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `198 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60058, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1227, CustomerName: `Nancy Jackson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jackson`, CustomerAddress: `198 Main Street, Los Angeles, USA, 60058`, Salesperson: `James Madison`, OrderID: 1111, OrderDate: `10/11/2022`, ProductID: 132, ProductName: `IPhone`, UnitPrice: 10970.23, Quantity: 3, ExtendedPrice: 32910.69, Freight: 1670.23, Discontinued: false, Region: `North East`, Address: `198 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60058 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `138 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 50133, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1228, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `138 Wall Street, Huston, USA, 50133`, Salesperson: `Ben Madison`, OrderID: 1182, OrderDate: `12/18/2022`, ProductID: 184, ProductName: `Mac Book Air`, UnitPrice: 27020.67, Quantity: 3, ExtendedPrice: 81062.01, Freight: 1750.67, Discontinued: false, Region: `South East`, Address: `138 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 50133 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `198 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50182, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1229, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `198 Market Street, Los Angeles, USA, 50182`, Salesperson: `Ben Jackson`, OrderID: 1252, OrderDate: `10/7/2022`, ProductID: 146, ProductName: `IPad`, UnitPrice: 21910.34, Quantity: 5, ExtendedPrice: 109551.7, Freight: 840.34, Discontinued: true, Region: `North East`, Address: `198 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50182 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `141 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70058, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1230, CustomerName: `James Jackson`, CustomerFirstName: `James`, CustomerLastName: `Jackson`, CustomerAddress: `141 Market Street, Philadelphia, USA, 70058`, Salesperson: `Martin Watson`, OrderID: 1635, OrderDate: `6/1/2022`, ProductID: 196, ProductName: `Mac Book Air`, UnitPrice: 16430.54, Quantity: 2, ExtendedPrice: 32861.08, Freight: 1420.54, Discontinued: false, Region: `North East`, Address: `141 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70058 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `107 Market Street`, ShipCity: `New York`, ShipPostalCode: 80108, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1231, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `107 Market Street, New York, USA, 80108`, Salesperson: `Mike Smith`, OrderID: 1922, OrderDate: `10/6/2022`, ProductID: 154, ProductName: `Mac Book Air`, UnitPrice: 8920.46, Quantity: 5, ExtendedPrice: 44602.3, Freight: 1160.46, Discontinued: false, Region: `West`, Address: `107 Market Street`, City: `New York`, Country: `USA`, PostalCode: 80108 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `166 Main Street`, ShipCity: `New York`, ShipPostalCode: 60199, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1232, CustomerName: `Martin Watson`, CustomerFirstName: `Martin`, CustomerLastName: `Watson`, CustomerAddress: `166 Main Street, New York, USA, 60199`, Salesperson: `Anna Smith`, OrderID: 1759, OrderDate: `3/10/2022`, ProductID: 145, ProductName: `Samsung Galaxy 22`, UnitPrice: 22420.27, Quantity: 5, ExtendedPrice: 112101.35, Freight: 1900.27, Discontinued: false, Region: `North East`, Address: `166 Main Street`, City: `New York`, Country: `USA`, PostalCode: 60199 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `188 Main Street`, ShipCity: `New York`, ShipPostalCode: 90082, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1233, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `188 Main Street, New York, USA, 90082`, Salesperson: `Ben Black`, OrderID: 1172, OrderDate: `11/9/2022`, ProductID: 148, ProductName: `Samsung Note`, UnitPrice: 22260.33, Quantity: 5, ExtendedPrice: 111301.65, Freight: 1530.33, Discontinued: false, Region: `West`, Address: `188 Main Street`, City: `New York`, Country: `USA`, PostalCode: 90082 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `168 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 80160, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1234, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `168 Wall Street, Miami, USA, 80160`, Salesperson: `Max Black`, OrderID: 1855, OrderDate: `9/9/2022`, ProductID: 195, ProductName: `Samsung Note`, UnitPrice: 11120.68, Quantity: 5, ExtendedPrice: 55603.4, Freight: 540.68, Discontinued: false, Region: `South East`, Address: `168 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 80160 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `151 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50192, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1235, CustomerName: `James Madison`, CustomerFirstName: `James`, CustomerLastName: `Madison`, CustomerAddress: `151 Wall Street, Philadelphia, USA, 50192`, Salesperson: `Pamela Watson`, OrderID: 1253, OrderDate: `9/24/2022`, ProductID: 153, ProductName: `Samsung Galaxy 22`, UnitPrice: 17650.73, Quantity: 5, ExtendedPrice: 88253.65, Freight: 1010.73, Discontinued: false, Region: `North East`, Address: `151 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50192 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `131 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60171, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1236, CustomerName: `Anna Jefferson`, CustomerFirstName: `Anna`, CustomerLastName: `Jefferson`, CustomerAddress: `131 Wall Street, Philadelphia, USA, 60171`, Salesperson: `James Jefferson`, OrderID: 1711, OrderDate: `9/12/2022`, ProductID: 192, ProductName: `IPhone`, UnitPrice: 18980.42, Quantity: 3, ExtendedPrice: 56941.26, Freight: 1070.42, Discontinued: false, Region: `North East`, Address: `131 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60171 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `101 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70109, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1237, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `101 Market Street, Huston, USA, 70109`, Salesperson: `Nancy Smith`, OrderID: 1155, OrderDate: `9/1/2022`, ProductID: 174, ProductName: `Mac Book Pro`, UnitPrice: 22330.35, Quantity: 2, ExtendedPrice: 44660.7, Freight: 250.35, Discontinued: false, Region: `West`, Address: `101 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70109 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `145 Main Street`, ShipCity: `New York`, ShipPostalCode: 50126, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1238, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `145 Main Street, New York, USA, 50126`, Salesperson: `Mike Watson`, OrderID: 1656, OrderDate: `3/7/2022`, ProductID: 139, ProductName: `IPhone`, UnitPrice: 9890.72, Quantity: 3, ExtendedPrice: 29672.16, Freight: 1890.72, Discontinued: false, Region: `West`, Address: `145 Main Street`, City: `New York`, Country: `USA`, PostalCode: 50126 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `190 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60055, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1239, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `190 Wall Street, Huston, USA, 60055`, Salesperson: `Mike Smith`, OrderID: 1192, OrderDate: `3/12/2022`, ProductID: 151, ProductName: `Samsung Galaxy 22`, UnitPrice: 16510.6, Quantity: 5, ExtendedPrice: 82553, Freight: 260.6, Discontinued: true, Region: `South East`, Address: `190 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60055 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `114 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50122, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1240, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `114 Market Street, Philadelphia, USA, 50122`, Salesperson: `James Madison`, OrderID: 1997, OrderDate: `8/3/2022`, ProductID: 195, ProductName: `Mac Book Pro`, UnitPrice: 20770.42, Quantity: 4, ExtendedPrice: 83081.68, Freight: 920.42, Discontinued: false, Region: `North East`, Address: `114 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50122 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `184 Main Street`, ShipCity: `Miami`, ShipPostalCode: 50147, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1241, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `184 Main Street, Miami, USA, 50147`, Salesperson: `Martin Madison`, OrderID: 1944, OrderDate: `7/11/2022`, ProductID: 105, ProductName: `Samsung Note`, UnitPrice: 22970.54, Quantity: 3, ExtendedPrice: 68911.62, Freight: 2000.54, Discontinued: false, Region: `South East`, Address: `184 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 50147 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `140 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50058, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1242, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `140 Wall Street, Los Angeles, USA, 50058`, Salesperson: `Max Madison`, OrderID: 1076, OrderDate: `12/1/2022`, ProductID: 108, ProductName: `IPhone`, UnitPrice: 5950.69, Quantity: 5, ExtendedPrice: 29753.45, Freight: 1440.69, Discontinued: false, Region: `South East`, Address: `140 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50058 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `178 Market Street`, ShipCity: `New York`, ShipPostalCode: 60194, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1243, CustomerName: `James Madison`, CustomerFirstName: `James`, CustomerLastName: `Madison`, CustomerAddress: `178 Market Street, New York, USA, 60194`, Salesperson: `James Madison`, OrderID: 1076, OrderDate: `6/25/2022`, ProductID: 176, ProductName: `IPhone`, UnitPrice: 17080.21, Quantity: 2, ExtendedPrice: 34160.42, Freight: 1200.21, Discontinued: false, Region: `West`, Address: `178 Market Street`, City: `New York`, Country: `USA`, PostalCode: 60194 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `179 Main Street`, ShipCity: `Huston`, ShipPostalCode: 70085, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1244, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `179 Main Street, Huston, USA, 70085`, Salesperson: `Ben Jackson`, OrderID: 1070, OrderDate: `5/7/2022`, ProductID: 101, ProductName: `IPhone`, UnitPrice: 19310.75, Quantity: 2, ExtendedPrice: 38621.5, Freight: 1270.75, Discontinued: false, Region: `West`, Address: `179 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 70085 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `169 Market Street`, ShipCity: `Miami`, ShipPostalCode: 70087, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1245, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `169 Market Street, Miami, USA, 70087`, Salesperson: `Nancy Black`, OrderID: 1469, OrderDate: `8/22/2022`, ProductID: 193, ProductName: `Samsung Note`, UnitPrice: 25420.4, Quantity: 2, ExtendedPrice: 50840.8, Freight: 1690.4, Discontinued: false, Region: `North East`, Address: `169 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 70087 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `108 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90128, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1246, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `108 Wall Street, Los Angeles, USA, 90128`, Salesperson: `Pamela Smith`, OrderID: 1948, OrderDate: `4/25/2022`, ProductID: 141, ProductName: `Samsung Galaxy 22`, UnitPrice: 19070.55, Quantity: 3, ExtendedPrice: 57211.65, Freight: 280.55, Discontinued: false, Region: `South East`, Address: `108 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90128 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `195 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80141, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1247, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `195 Market Street, Philadelphia, USA, 80141`, Salesperson: `Martin Smith`, OrderID: 1116, OrderDate: `1/1/2022`, ProductID: 162, ProductName: `Samsung Galaxy 22`, UnitPrice: 22190.27, Quantity: 5, ExtendedPrice: 110951.35, Freight: 1830.27, Discontinued: false, Region: `North East`, Address: `195 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80141 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `142 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50163, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1248, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `142 Main Street, Los Angeles, USA, 50163`, Salesperson: `Pamela Jefferson`, OrderID: 1640, OrderDate: `5/1/2022`, ProductID: 153, ProductName: `Samsung Note`, UnitPrice: 7690.79, Quantity: 3, ExtendedPrice: 23072.37, Freight: 1730.79, Discontinued: false, Region: `South East`, Address: `142 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50163 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `177 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80155, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1249, CustomerName: `Mike Watson`, CustomerFirstName: `Mike`, CustomerLastName: `Watson`, CustomerAddress: `177 Market Street, Philadelphia, USA, 80155`, Salesperson: `Anna Jefferson`, OrderID: 1748, OrderDate: `9/2/2022`, ProductID: 186, ProductName: `Mac Book Air`, UnitPrice: 25230.84, Quantity: 4, ExtendedPrice: 100923.36, Freight: 670.84, Discontinued: true, Region: `South East`, Address: `177 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80155 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `175 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80141, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1250, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `175 Market Street, Los Angeles, USA, 80141`, Salesperson: `Martin Black`, OrderID: 1251, OrderDate: `7/5/2022`, ProductID: 140, ProductName: `Mac Book Pro`, UnitPrice: 25960.45, Quantity: 2, ExtendedPrice: 51920.9, Freight: 260.45, Discontinued: false, Region: `North East`, Address: `175 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80141 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `110 Market Street`, ShipCity: `New York`, ShipPostalCode: 90174, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1251, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `110 Market Street, New York, USA, 90174`, Salesperson: `Pamela Black`, OrderID: 1397, OrderDate: `7/2/2022`, ProductID: 141, ProductName: `Samsung Note`, UnitPrice: 22150.67, Quantity: 3, ExtendedPrice: 66452.01, Freight: 640.67, Discontinued: false, Region: `North East`, Address: `110 Market Street`, City: `New York`, Country: `USA`, PostalCode: 90174 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `121 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70083, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1252, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `121 Wall Street, Los Angeles, USA, 70083`, Salesperson: `Ben Jefferson`, OrderID: 1938, OrderDate: `1/20/2022`, ProductID: 171, ProductName: `Samsung Galaxy 22`, UnitPrice: 9220.74, Quantity: 4, ExtendedPrice: 36882.96, Freight: 1030.74, Discontinued: false, Region: `South East`, Address: `121 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70083 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `122 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70122, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1253, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `122 Wall Street, Philadelphia, USA, 70122`, Salesperson: `Mike Watson`, OrderID: 1608, OrderDate: `2/9/2022`, ProductID: 109, ProductName: `Samsung Note`, UnitPrice: 11240.75, Quantity: 2, ExtendedPrice: 22481.5, Freight: 1010.75, Discontinued: false, Region: `West`, Address: `122 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70122 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `151 Main Street`, ShipCity: `Huston`, ShipPostalCode: 50057, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1254, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `151 Main Street, Huston, USA, 50057`, Salesperson: `Martin Watson`, OrderID: 1217, OrderDate: `8/4/2022`, ProductID: 185, ProductName: `Mac Book Pro`, UnitPrice: 16680.55, Quantity: 3, ExtendedPrice: 50041.65, Freight: 1710.55, Discontinued: false, Region: `North East`, Address: `151 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 50057 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `120 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 50131, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1255, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `120 Wall Street, Huston, USA, 50131`, Salesperson: `Ben Jackson`, OrderID: 1661, OrderDate: `5/1/2022`, ProductID: 190, ProductName: `Mac Book Air`, UnitPrice: 21450.85, Quantity: 5, ExtendedPrice: 107254.25, Freight: 1350.85, Discontinued: false, Region: `South East`, Address: `120 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 50131 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `134 Main Street`, ShipCity: `Huston`, ShipPostalCode: 90060, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1256, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `134 Main Street, Huston, USA, 90060`, Salesperson: `James Madison`, OrderID: 1766, OrderDate: `11/11/2022`, ProductID: 134, ProductName: `Mac Book Air`, UnitPrice: 12850.63, Quantity: 3, ExtendedPrice: 38551.89, Freight: 1790.63, Discontinued: false, Region: `West`, Address: `134 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 90060 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `150 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60151, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1257, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `150 Wall Street, Huston, USA, 60151`, Salesperson: `Martin Black`, OrderID: 1321, OrderDate: `8/4/2022`, ProductID: 125, ProductName: `Samsung Note`, UnitPrice: 29190.24, Quantity: 4, ExtendedPrice: 116760.96, Freight: 680.24, Discontinued: false, Region: `North East`, Address: `150 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60151 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `155 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60121, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1258, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `155 Wall Street, Huston, USA, 60121`, Salesperson: `Max Jackson`, OrderID: 1872, OrderDate: `2/20/2022`, ProductID: 188, ProductName: `Samsung Note`, UnitPrice: 22750.45, Quantity: 3, ExtendedPrice: 68251.35, Freight: 840.45, Discontinued: false, Region: `West`, Address: `155 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60121 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `184 Market Street`, ShipCity: `New York`, ShipPostalCode: 90156, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1259, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `184 Market Street, New York, USA, 90156`, Salesperson: `James Watson`, OrderID: 1828, OrderDate: `5/25/2022`, ProductID: 191, ProductName: `Samsung Galaxy 22`, UnitPrice: 29760.3, Quantity: 2, ExtendedPrice: 59520.6, Freight: 1960.3, Discontinued: true, Region: `North East`, Address: `184 Market Street`, City: `New York`, Country: `USA`, PostalCode: 90156 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `133 Market Street`, ShipCity: `Huston`, ShipPostalCode: 50074, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1260, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `133 Market Street, Huston, USA, 50074`, Salesperson: `Mike Black`, OrderID: 1966, OrderDate: `6/18/2022`, ProductID: 160, ProductName: `Mac Book Air`, UnitPrice: 7450.44, Quantity: 5, ExtendedPrice: 37252.2, Freight: 590.44, Discontinued: false, Region: `West`, Address: `133 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 50074 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `154 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70052, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1261, CustomerName: `Martin Black`, CustomerFirstName: `Martin`, CustomerLastName: `Black`, CustomerAddress: `154 Main Street, Philadelphia, USA, 70052`, Salesperson: `Ben Jackson`, OrderID: 1421, OrderDate: `9/17/2022`, ProductID: 127, ProductName: `Mac Book Air`, UnitPrice: 23000.47, Quantity: 2, ExtendedPrice: 46000.94, Freight: 550.47, Discontinued: false, Region: `South East`, Address: `154 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70052 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `114 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90174, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1262, CustomerName: `Max Smith`, CustomerFirstName: `Max`, CustomerLastName: `Smith`, CustomerAddress: `114 Wall Street, Philadelphia, USA, 90174`, Salesperson: `Pamela Smith`, OrderID: 1192, OrderDate: `12/4/2022`, ProductID: 105, ProductName: `Samsung Note`, UnitPrice: 19790.26, Quantity: 2, ExtendedPrice: 39580.52, Freight: 1150.26, Discontinued: false, Region: `South East`, Address: `114 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90174 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `154 Wall Street`, ShipCity: `New York`, ShipPostalCode: 90162, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1263, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `154 Wall Street, New York, USA, 90162`, Salesperson: `Nancy Smith`, OrderID: 1539, OrderDate: `7/16/2022`, ProductID: 139, ProductName: `Samsung Note`, UnitPrice: 11830.34, Quantity: 2, ExtendedPrice: 23660.68, Freight: 1930.34, Discontinued: false, Region: `West`, Address: `154 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 90162 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `140 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70136, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1264, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `140 Wall Street, Los Angeles, USA, 70136`, Salesperson: `Mike Jackson`, OrderID: 1271, OrderDate: `10/7/2022`, ProductID: 124, ProductName: `Samsung Note`, UnitPrice: 21020.81, Quantity: 2, ExtendedPrice: 42041.62, Freight: 1420.81, Discontinued: false, Region: `West`, Address: `140 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70136 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `185 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60116, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1265, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `185 Main Street, Philadelphia, USA, 60116`, Salesperson: `James Watson`, OrderID: 1090, OrderDate: `9/11/2022`, ProductID: 160, ProductName: `IPhone`, UnitPrice: 16070.46, Quantity: 3, ExtendedPrice: 48211.38, Freight: 1490.46, Discontinued: false, Region: `West`, Address: `185 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60116 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `179 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80107, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1266, CustomerName: `Max Smith`, CustomerFirstName: `Max`, CustomerLastName: `Smith`, CustomerAddress: `179 Market Street, Huston, USA, 80107`, Salesperson: `Nancy Smith`, OrderID: 1286, OrderDate: `1/10/2022`, ProductID: 161, ProductName: `Mac Book Air`, UnitPrice: 26160.38, Quantity: 3, ExtendedPrice: 78481.14, Freight: 570.38, Discontinued: false, Region: `West`, Address: `179 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80107 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `189 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 90073, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1267, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `189 Wall Street, Huston, USA, 90073`, Salesperson: `Martin Madison`, OrderID: 1754, OrderDate: `5/2/2022`, ProductID: 143, ProductName: `Samsung Galaxy 22`, UnitPrice: 29540.84, Quantity: 4, ExtendedPrice: 118163.36, Freight: 500.84, Discontinued: false, Region: `North East`, Address: `189 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 90073 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `106 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90153, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1268, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `106 Market Street, Miami, USA, 90153`, Salesperson: `Anna Black`, OrderID: 1321, OrderDate: `6/21/2022`, ProductID: 136, ProductName: `Samsung Galaxy 22`, UnitPrice: 12550.55, Quantity: 5, ExtendedPrice: 62752.75, Freight: 1440.55, Discontinued: false, Region: `West`, Address: `106 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90153 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `149 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50102, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1269, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `149 Wall Street, Los Angeles, USA, 50102`, Salesperson: `James Jefferson`, OrderID: 1262, OrderDate: `7/13/2022`, ProductID: 178, ProductName: `Samsung Note`, UnitPrice: 8690.45, Quantity: 3, ExtendedPrice: 26071.35, Freight: 1420.45, Discontinued: true, Region: `West`, Address: `149 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50102 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `192 Market Street`, ShipCity: `New York`, ShipPostalCode: 60078, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1270, CustomerName: `Martin Watson`, CustomerFirstName: `Martin`, CustomerLastName: `Watson`, CustomerAddress: `192 Market Street, New York, USA, 60078`, Salesperson: `Ben Jackson`, OrderID: 1586, OrderDate: `11/13/2022`, ProductID: 130, ProductName: `Mac Book Pro`, UnitPrice: 28630.86, Quantity: 2, ExtendedPrice: 57261.72, Freight: 980.86, Discontinued: false, Region: `West`, Address: `192 Market Street`, City: `New York`, Country: `USA`, PostalCode: 60078 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `159 Main Street`, ShipCity: `New York`, ShipPostalCode: 50050, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1271, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `159 Main Street, New York, USA, 50050`, Salesperson: `Max Jefferson`, OrderID: 1915, OrderDate: `2/10/2022`, ProductID: 178, ProductName: `Mac Book Pro`, UnitPrice: 19050.75, Quantity: 5, ExtendedPrice: 95253.75, Freight: 960.75, Discontinued: false, Region: `West`, Address: `159 Main Street`, City: `New York`, Country: `USA`, PostalCode: 50050 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `171 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60099, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1272, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `171 Wall Street, Los Angeles, USA, 60099`, Salesperson: `Pamela Jackson`, OrderID: 1503, OrderDate: `4/7/2022`, ProductID: 153, ProductName: `Samsung Galaxy 22`, UnitPrice: 26320.3, Quantity: 3, ExtendedPrice: 78960.9, Freight: 1360.3, Discontinued: false, Region: `South East`, Address: `171 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60099 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `161 Main Street`, ShipCity: `Huston`, ShipPostalCode: 70087, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1273, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `161 Main Street, Huston, USA, 70087`, Salesperson: `Nancy Watson`, OrderID: 1129, OrderDate: `9/4/2022`, ProductID: 119, ProductName: `Samsung Note`, UnitPrice: 26970.53, Quantity: 3, ExtendedPrice: 80911.59, Freight: 1890.53, Discontinued: false, Region: `South East`, Address: `161 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 70087 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `163 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50127, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1274, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `163 Market Street, Los Angeles, USA, 50127`, Salesperson: `Nancy Jefferson`, OrderID: 1508, OrderDate: `1/6/2022`, ProductID: 136, ProductName: `Mac Book Air`, UnitPrice: 12620.81, Quantity: 3, ExtendedPrice: 37862.43, Freight: 650.81, Discontinued: false, Region: `North East`, Address: `163 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50127 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `131 Market Street`, ShipCity: `Huston`, ShipPostalCode: 50052, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1275, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `131 Market Street, Huston, USA, 50052`, Salesperson: `Martin Watson`, OrderID: 1285, OrderDate: `8/6/2022`, ProductID: 123, ProductName: `Samsung Note`, UnitPrice: 22790.24, Quantity: 4, ExtendedPrice: 91160.96, Freight: 1140.24, Discontinued: false, Region: `South East`, Address: `131 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 50052 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `125 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 60101, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1276, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `125 Wall Street, Miami, USA, 60101`, Salesperson: `Ben Smith`, OrderID: 1881, OrderDate: `12/5/2022`, ProductID: 128, ProductName: `Mac Book Air`, UnitPrice: 18780.56, Quantity: 4, ExtendedPrice: 75122.24, Freight: 820.56, Discontinued: false, Region: `West`, Address: `125 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 60101 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `184 Main Street`, ShipCity: `Miami`, ShipPostalCode: 50157, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1277, CustomerName: `Nancy Jackson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jackson`, CustomerAddress: `184 Main Street, Miami, USA, 50157`, Salesperson: `Mike Smith`, OrderID: 1478, OrderDate: `9/18/2022`, ProductID: 131, ProductName: `IPad`, UnitPrice: 15000.21, Quantity: 5, ExtendedPrice: 75001.05, Freight: 1390.21, Discontinued: false, Region: `North East`, Address: `184 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 50157 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `199 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80050, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1278, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `199 Market Street, Huston, USA, 80050`, Salesperson: `Max Jefferson`, OrderID: 1767, OrderDate: `1/17/2022`, ProductID: 196, ProductName: `Mac Book Pro`, UnitPrice: 21600.31, Quantity: 3, ExtendedPrice: 64800.93, Freight: 1130.31, Discontinued: false, Region: `North East`, Address: `199 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80050 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `127 Market Street`, ShipCity: `Miami`, ShipPostalCode: 60073, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1279, CustomerName: `Nancy Madison`, CustomerFirstName: `Nancy`, CustomerLastName: `Madison`, CustomerAddress: `127 Market Street, Miami, USA, 60073`, Salesperson: `Mike Smith`, OrderID: 1229, OrderDate: `12/7/2022`, ProductID: 184, ProductName: `Mac Book Air`, UnitPrice: 27500.59, Quantity: 3, ExtendedPrice: 82501.77, Freight: 1380.59, Discontinued: true, Region: `West`, Address: `127 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 60073 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `169 Main Street`, ShipCity: `New York`, ShipPostalCode: 50123, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1280, CustomerName: `Mike Watson`, CustomerFirstName: `Mike`, CustomerLastName: `Watson`, CustomerAddress: `169 Main Street, New York, USA, 50123`, Salesperson: `Martin Jackson`, OrderID: 1761, OrderDate: `2/10/2022`, ProductID: 169, ProductName: `IPad`, UnitPrice: 21430.7, Quantity: 5, ExtendedPrice: 107153.5, Freight: 1170.7, Discontinued: false, Region: `North East`, Address: `169 Main Street`, City: `New York`, Country: `USA`, PostalCode: 50123 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `109 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80143, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1281, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `109 Main Street, Philadelphia, USA, 80143`, Salesperson: `Anna Black`, OrderID: 1461, OrderDate: `9/8/2022`, ProductID: 155, ProductName: `Samsung Galaxy 22`, UnitPrice: 28470.33, Quantity: 4, ExtendedPrice: 113881.32, Freight: 1750.33, Discontinued: false, Region: `North East`, Address: `109 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80143 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `103 Main Street`, ShipCity: `New York`, ShipPostalCode: 80198, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1282, CustomerName: `James Madison`, CustomerFirstName: `James`, CustomerLastName: `Madison`, CustomerAddress: `103 Main Street, New York, USA, 80198`, Salesperson: `Ben Black`, OrderID: 1210, OrderDate: `11/7/2022`, ProductID: 123, ProductName: `Samsung Galaxy 22`, UnitPrice: 11260.52, Quantity: 5, ExtendedPrice: 56302.6, Freight: 330.52, Discontinued: false, Region: `West`, Address: `103 Main Street`, City: `New York`, Country: `USA`, PostalCode: 80198 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `102 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50100, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1283, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `102 Market Street, Philadelphia, USA, 50100`, Salesperson: `Pamela Jefferson`, OrderID: 1262, OrderDate: `4/17/2022`, ProductID: 134, ProductName: `Mac Book Pro`, UnitPrice: 21890.55, Quantity: 4, ExtendedPrice: 87562.2, Freight: 500.55, Discontinued: false, Region: `West`, Address: `102 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50100 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `194 Market Street`, ShipCity: `New York`, ShipPostalCode: 80057, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1284, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `194 Market Street, New York, USA, 80057`, Salesperson: `Pamela Jefferson`, OrderID: 1490, OrderDate: `4/6/2022`, ProductID: 191, ProductName: `Samsung Galaxy 22`, UnitPrice: 15670.58, Quantity: 4, ExtendedPrice: 62682.32, Freight: 1320.58, Discontinued: false, Region: `South East`, Address: `194 Market Street`, City: `New York`, Country: `USA`, PostalCode: 80057 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `102 Main Street`, ShipCity: `Miami`, ShipPostalCode: 70175, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1285, CustomerName: `Nancy Madison`, CustomerFirstName: `Nancy`, CustomerLastName: `Madison`, CustomerAddress: `102 Main Street, Miami, USA, 70175`, Salesperson: `James Jackson`, OrderID: 1031, OrderDate: `3/18/2022`, ProductID: 196, ProductName: `Samsung Note`, UnitPrice: 16280.69, Quantity: 3, ExtendedPrice: 48842.07, Freight: 380.69, Discontinued: false, Region: `South East`, Address: `102 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 70175 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `139 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60067, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1286, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `139 Market Street, Philadelphia, USA, 60067`, Salesperson: `Max Jefferson`, OrderID: 1803, OrderDate: `1/22/2022`, ProductID: 134, ProductName: `Mac Book Pro`, UnitPrice: 7940.29, Quantity: 4, ExtendedPrice: 31761.16, Freight: 620.29, Discontinued: false, Region: `North East`, Address: `139 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60067 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `167 Market Street`, ShipCity: `New York`, ShipPostalCode: 80115, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1287, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `167 Market Street, New York, USA, 80115`, Salesperson: `Anna Black`, OrderID: 1465, OrderDate: `2/14/2022`, ProductID: 166, ProductName: `Samsung Note`, UnitPrice: 20420.2, Quantity: 4, ExtendedPrice: 81680.8, Freight: 960.2, Discontinued: false, Region: `North East`, Address: `167 Market Street`, City: `New York`, Country: `USA`, PostalCode: 80115 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `167 Market Street`, ShipCity: `New York`, ShipPostalCode: 80080, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1288, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `167 Market Street, New York, USA, 80080`, Salesperson: `Ben Jackson`, OrderID: 1303, OrderDate: `12/12/2022`, ProductID: 191, ProductName: `Samsung Galaxy 22`, UnitPrice: 20080.21, Quantity: 2, ExtendedPrice: 40160.42, Freight: 800.21, Discontinued: false, Region: `West`, Address: `167 Market Street`, City: `New York`, Country: `USA`, PostalCode: 80080 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `167 Market Street`, ShipCity: `New York`, ShipPostalCode: 90093, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1289, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `167 Market Street, New York, USA, 90093`, Salesperson: `Anna Smith`, OrderID: 1122, OrderDate: `8/6/2022`, ProductID: 189, ProductName: `Mac Book Air`, UnitPrice: 29420.55, Quantity: 4, ExtendedPrice: 117682.2, Freight: 1200.55, Discontinued: true, Region: `South East`, Address: `167 Market Street`, City: `New York`, Country: `USA`, PostalCode: 90093 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `114 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60133, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1290, CustomerName: `Nancy Madison`, CustomerFirstName: `Nancy`, CustomerLastName: `Madison`, CustomerAddress: `114 Wall Street, Philadelphia, USA, 60133`, Salesperson: `Anna Madison`, OrderID: 1402, OrderDate: `6/9/2022`, ProductID: 161, ProductName: `Samsung Galaxy 22`, UnitPrice: 16370.76, Quantity: 3, ExtendedPrice: 49112.28, Freight: 590.76, Discontinued: false, Region: `South East`, Address: `114 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60133 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `164 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60153, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1291, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `164 Market Street, Los Angeles, USA, 60153`, Salesperson: `Max Smith`, OrderID: 1165, OrderDate: `11/24/2022`, ProductID: 193, ProductName: `Mac Book Pro`, UnitPrice: 19240.53, Quantity: 4, ExtendedPrice: 76962.12, Freight: 1990.53, Discontinued: false, Region: `West`, Address: `164 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60153 }), + new InvoicesDataItem({ ShipName: `Jackson Home`, ShipAddress: `102 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90068, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1292, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `102 Market Street, Philadelphia, USA, 90068`, Salesperson: `Mike Madison`, OrderID: 1512, OrderDate: `9/4/2022`, ProductID: 186, ProductName: `Samsung Note`, UnitPrice: 26300.88, Quantity: 4, ExtendedPrice: 105203.52, Freight: 660.88, Discontinued: false, Region: `West`, Address: `102 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90068 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `158 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80149, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1293, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `158 Wall Street, Los Angeles, USA, 80149`, Salesperson: `Max Jackson`, OrderID: 1358, OrderDate: `2/22/2022`, ProductID: 110, ProductName: `Mac Book Pro`, UnitPrice: 23570.31, Quantity: 5, ExtendedPrice: 117851.55, Freight: 1260.31, Discontinued: false, Region: `North East`, Address: `158 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80149 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `125 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80176, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1294, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `125 Market Street, Huston, USA, 80176`, Salesperson: `Pamela Watson`, OrderID: 1106, OrderDate: `2/7/2022`, ProductID: 152, ProductName: `Samsung Galaxy 22`, UnitPrice: 6100.56, Quantity: 5, ExtendedPrice: 30502.8, Freight: 1900.56, Discontinued: false, Region: `West`, Address: `125 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80176 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `177 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50079, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1295, CustomerName: `Pamela Smith`, CustomerFirstName: `Pamela`, CustomerLastName: `Smith`, CustomerAddress: `177 Main Street, Los Angeles, USA, 50079`, Salesperson: `Max Watson`, OrderID: 1931, OrderDate: `6/5/2022`, ProductID: 113, ProductName: `Samsung Galaxy 22`, UnitPrice: 27350.45, Quantity: 3, ExtendedPrice: 82051.35, Freight: 1170.45, Discontinued: false, Region: `North East`, Address: `177 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50079 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `148 Market Street`, ShipCity: `New York`, ShipPostalCode: 90184, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1296, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `148 Market Street, New York, USA, 90184`, Salesperson: `James Smith`, OrderID: 1108, OrderDate: `8/5/2022`, ProductID: 122, ProductName: `Samsung Note`, UnitPrice: 5440.75, Quantity: 4, ExtendedPrice: 21763, Freight: 960.75, Discontinued: false, Region: `South East`, Address: `148 Market Street`, City: `New York`, Country: `USA`, PostalCode: 90184 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `113 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 50064, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1297, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `113 Wall Street, Huston, USA, 50064`, Salesperson: `Martin Smith`, OrderID: 1782, OrderDate: `3/24/2022`, ProductID: 107, ProductName: `IPad`, UnitPrice: 22200.88, Quantity: 4, ExtendedPrice: 88803.52, Freight: 510.88, Discontinued: false, Region: `West`, Address: `113 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 50064 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `134 Wall Street`, ShipCity: `New York`, ShipPostalCode: 80155, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1298, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `134 Wall Street, New York, USA, 80155`, Salesperson: `Nancy Jefferson`, OrderID: 1886, OrderDate: `3/6/2022`, ProductID: 181, ProductName: `Samsung Galaxy 22`, UnitPrice: 8550.46, Quantity: 4, ExtendedPrice: 34201.84, Freight: 1830.46, Discontinued: false, Region: `North East`, Address: `134 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 80155 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `142 Market Street`, ShipCity: `New York`, ShipPostalCode: 90103, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1299, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `142 Market Street, New York, USA, 90103`, Salesperson: `Anna Watson`, OrderID: 1578, OrderDate: `10/5/2022`, ProductID: 162, ProductName: `Mac Book Air`, UnitPrice: 19490.84, Quantity: 4, ExtendedPrice: 77963.36, Freight: 490.84, Discontinued: true, Region: `West`, Address: `142 Market Street`, City: `New York`, Country: `USA`, PostalCode: 90103 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `132 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90111, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1300, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `132 Market Street, Miami, USA, 90111`, Salesperson: `Ben Jefferson`, OrderID: 1903, OrderDate: `6/23/2022`, ProductID: 173, ProductName: `IPad`, UnitPrice: 23350.52, Quantity: 5, ExtendedPrice: 116752.6, Freight: 1210.52, Discontinued: false, Region: `South East`, Address: `132 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90111 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `180 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50182, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1301, CustomerName: `Mike Smith`, CustomerFirstName: `Mike`, CustomerLastName: `Smith`, CustomerAddress: `180 Main Street, Los Angeles, USA, 50182`, Salesperson: `Ben Black`, OrderID: 1201, OrderDate: `11/25/2022`, ProductID: 127, ProductName: `Mac Book Pro`, UnitPrice: 6730.57, Quantity: 3, ExtendedPrice: 20191.71, Freight: 1600.57, Discontinued: false, Region: `West`, Address: `180 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50182 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `135 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60076, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1302, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `135 Main Street, Philadelphia, USA, 60076`, Salesperson: `Mike Smith`, OrderID: 1488, OrderDate: `5/1/2022`, ProductID: 105, ProductName: `IPad`, UnitPrice: 27240.3, Quantity: 5, ExtendedPrice: 136201.5, Freight: 1130.3, Discontinued: false, Region: `West`, Address: `135 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60076 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `104 Wall Street`, ShipCity: `New York`, ShipPostalCode: 70191, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1303, CustomerName: `Nancy Madison`, CustomerFirstName: `Nancy`, CustomerLastName: `Madison`, CustomerAddress: `104 Wall Street, New York, USA, 70191`, Salesperson: `Pamela Jefferson`, OrderID: 1636, OrderDate: `2/16/2022`, ProductID: 104, ProductName: `Samsung Galaxy 22`, UnitPrice: 14830.46, Quantity: 2, ExtendedPrice: 29660.92, Freight: 540.46, Discontinued: false, Region: `West`, Address: `104 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 70191 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `122 Market Street`, ShipCity: `New York`, ShipPostalCode: 70071, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1304, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `122 Market Street, New York, USA, 70071`, Salesperson: `Max Black`, OrderID: 1588, OrderDate: `8/22/2022`, ProductID: 169, ProductName: `IPhone`, UnitPrice: 28440.73, Quantity: 3, ExtendedPrice: 85322.19, Freight: 640.73, Discontinued: false, Region: `North East`, Address: `122 Market Street`, City: `New York`, Country: `USA`, PostalCode: 70071 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `178 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80064, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1305, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `178 Main Street, Philadelphia, USA, 80064`, Salesperson: `Pamela Jackson`, OrderID: 1422, OrderDate: `7/3/2022`, ProductID: 150, ProductName: `Mac Book Air`, UnitPrice: 7100.37, Quantity: 4, ExtendedPrice: 28401.48, Freight: 1560.37, Discontinued: false, Region: `North East`, Address: `178 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80064 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `199 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80126, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1306, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `199 Main Street, Philadelphia, USA, 80126`, Salesperson: `Ben Jefferson`, OrderID: 1922, OrderDate: `1/13/2022`, ProductID: 116, ProductName: `Mac Book Air`, UnitPrice: 15400.22, Quantity: 4, ExtendedPrice: 61600.88, Freight: 1970.22, Discontinued: false, Region: `South East`, Address: `199 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80126 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `187 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 70093, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1307, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `187 Wall Street, Huston, USA, 70093`, Salesperson: `Ben Watson`, OrderID: 1023, OrderDate: `8/20/2022`, ProductID: 138, ProductName: `Samsung Note`, UnitPrice: 26450.63, Quantity: 2, ExtendedPrice: 52901.26, Freight: 980.63, Discontinued: false, Region: `South East`, Address: `187 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 70093 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `110 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50180, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1308, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `110 Market Street, Los Angeles, USA, 50180`, Salesperson: `Martin Smith`, OrderID: 1651, OrderDate: `8/10/2022`, ProductID: 131, ProductName: `IPhone`, UnitPrice: 11720.27, Quantity: 2, ExtendedPrice: 23440.54, Freight: 300.27, Discontinued: false, Region: `South East`, Address: `110 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50180 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `196 Wall Street`, ShipCity: `New York`, ShipPostalCode: 50190, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1309, CustomerName: `James Madison`, CustomerFirstName: `James`, CustomerLastName: `Madison`, CustomerAddress: `196 Wall Street, New York, USA, 50190`, Salesperson: `Nancy Madison`, OrderID: 1918, OrderDate: `7/11/2022`, ProductID: 160, ProductName: `IPad`, UnitPrice: 22400.31, Quantity: 2, ExtendedPrice: 44800.62, Freight: 1310.31, Discontinued: true, Region: `North East`, Address: `196 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 50190 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `172 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80154, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1310, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `172 Market Street, Philadelphia, USA, 80154`, Salesperson: `Ben Jackson`, OrderID: 1803, OrderDate: `2/14/2022`, ProductID: 100, ProductName: `Samsung Note`, UnitPrice: 5270.34, Quantity: 5, ExtendedPrice: 26351.7, Freight: 320.34, Discontinued: false, Region: `North East`, Address: `172 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80154 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `181 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50200, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1311, CustomerName: `Martin Watson`, CustomerFirstName: `Martin`, CustomerLastName: `Watson`, CustomerAddress: `181 Wall Street, Los Angeles, USA, 50200`, Salesperson: `James Watson`, OrderID: 1467, OrderDate: `12/13/2022`, ProductID: 171, ProductName: `Mac Book Air`, UnitPrice: 7830.21, Quantity: 4, ExtendedPrice: 31320.84, Freight: 1740.21, Discontinued: false, Region: `South East`, Address: `181 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50200 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `151 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70118, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1312, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `151 Main Street, Los Angeles, USA, 70118`, Salesperson: `Martin Watson`, OrderID: 1359, OrderDate: `4/5/2022`, ProductID: 141, ProductName: `IPhone`, UnitPrice: 27160.77, Quantity: 5, ExtendedPrice: 135803.85, Freight: 370.77, Discontinued: false, Region: `West`, Address: `151 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70118 }), + new InvoicesDataItem({ ShipName: `Jackson Home`, ShipAddress: `156 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90109, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1313, CustomerName: `James Jackson`, CustomerFirstName: `James`, CustomerLastName: `Jackson`, CustomerAddress: `156 Market Street, Miami, USA, 90109`, Salesperson: `James Jackson`, OrderID: 1592, OrderDate: `4/16/2022`, ProductID: 128, ProductName: `Samsung Note`, UnitPrice: 14910.41, Quantity: 5, ExtendedPrice: 74552.05, Freight: 1790.41, Discontinued: false, Region: `North East`, Address: `156 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90109 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `147 Main Street`, ShipCity: `Huston`, ShipPostalCode: 60054, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1314, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `147 Main Street, Huston, USA, 60054`, Salesperson: `Ben Watson`, OrderID: 1454, OrderDate: `12/12/2022`, ProductID: 131, ProductName: `Mac Book Air`, UnitPrice: 11280.22, Quantity: 3, ExtendedPrice: 33840.66, Freight: 1440.22, Discontinued: false, Region: `South East`, Address: `147 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 60054 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `123 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90190, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1315, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `123 Market Street, Philadelphia, USA, 90190`, Salesperson: `James Jefferson`, OrderID: 1529, OrderDate: `4/19/2022`, ProductID: 102, ProductName: `IPad`, UnitPrice: 7570.85, Quantity: 5, ExtendedPrice: 37854.25, Freight: 1630.85, Discontinued: false, Region: `West`, Address: `123 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90190 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `100 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90115, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1316, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `100 Wall Street, Los Angeles, USA, 90115`, Salesperson: `Nancy Smith`, OrderID: 1783, OrderDate: `9/2/2022`, ProductID: 144, ProductName: `Samsung Note`, UnitPrice: 5530.88, Quantity: 3, ExtendedPrice: 16592.64, Freight: 1800.88, Discontinued: false, Region: `North East`, Address: `100 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90115 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `184 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 50144, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1317, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `184 Wall Street, Miami, USA, 50144`, Salesperson: `Max Jackson`, OrderID: 1533, OrderDate: `12/19/2022`, ProductID: 189, ProductName: `Samsung Galaxy 22`, UnitPrice: 24820.6, Quantity: 2, ExtendedPrice: 49641.2, Freight: 1550.6, Discontinued: false, Region: `South East`, Address: `184 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 50144 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `187 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70132, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1318, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `187 Wall Street, Los Angeles, USA, 70132`, Salesperson: `Nancy Jackson`, OrderID: 1483, OrderDate: `1/8/2022`, ProductID: 182, ProductName: `Samsung Galaxy 22`, UnitPrice: 21520.76, Quantity: 4, ExtendedPrice: 86083.04, Freight: 770.76, Discontinued: false, Region: `North East`, Address: `187 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70132 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `162 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90083, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1319, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `162 Main Street, Philadelphia, USA, 90083`, Salesperson: `Max Jefferson`, OrderID: 1869, OrderDate: `6/3/2022`, ProductID: 118, ProductName: `IPhone`, UnitPrice: 15930.3, Quantity: 2, ExtendedPrice: 31860.6, Freight: 470.3, Discontinued: true, Region: `North East`, Address: `162 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90083 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `147 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50191, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1320, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `147 Main Street, Philadelphia, USA, 50191`, Salesperson: `Martin Jefferson`, OrderID: 1541, OrderDate: `2/1/2022`, ProductID: 159, ProductName: `Mac Book Pro`, UnitPrice: 29090.51, Quantity: 4, ExtendedPrice: 116362.04, Freight: 900.51, Discontinued: false, Region: `North East`, Address: `147 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50191 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `175 Wall Street`, ShipCity: `New York`, ShipPostalCode: 90056, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1321, CustomerName: `Martin Jackson`, CustomerFirstName: `Martin`, CustomerLastName: `Jackson`, CustomerAddress: `175 Wall Street, New York, USA, 90056`, Salesperson: `Anna Black`, OrderID: 1050, OrderDate: `8/6/2022`, ProductID: 120, ProductName: `IPad`, UnitPrice: 28490.38, Quantity: 5, ExtendedPrice: 142451.9, Freight: 860.38, Discontinued: false, Region: `West`, Address: `175 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 90056 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `129 Market Street`, ShipCity: `Huston`, ShipPostalCode: 50089, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1322, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `129 Market Street, Huston, USA, 50089`, Salesperson: `Mike Jefferson`, OrderID: 1188, OrderDate: `7/23/2022`, ProductID: 119, ProductName: `Mac Book Pro`, UnitPrice: 6710.58, Quantity: 3, ExtendedPrice: 20131.74, Freight: 1160.58, Discontinued: false, Region: `South East`, Address: `129 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 50089 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `104 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70079, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1323, CustomerName: `Ben Smith`, CustomerFirstName: `Ben`, CustomerLastName: `Smith`, CustomerAddress: `104 Wall Street, Philadelphia, USA, 70079`, Salesperson: `Martin Madison`, OrderID: 1452, OrderDate: `2/1/2022`, ProductID: 182, ProductName: `IPhone`, UnitPrice: 9260.28, Quantity: 2, ExtendedPrice: 18520.56, Freight: 1960.28, Discontinued: false, Region: `South East`, Address: `104 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70079 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `167 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70137, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1324, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `167 Wall Street, Philadelphia, USA, 70137`, Salesperson: `James Jefferson`, OrderID: 1542, OrderDate: `7/21/2022`, ProductID: 107, ProductName: `IPhone`, UnitPrice: 5100.82, Quantity: 5, ExtendedPrice: 25504.1, Freight: 610.82, Discontinued: false, Region: `North East`, Address: `167 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70137 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `128 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50188, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1325, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `128 Wall Street, Philadelphia, USA, 50188`, Salesperson: `Nancy Jefferson`, OrderID: 1993, OrderDate: `3/7/2022`, ProductID: 149, ProductName: `Samsung Note`, UnitPrice: 27520.59, Quantity: 4, ExtendedPrice: 110082.36, Freight: 1260.59, Discontinued: false, Region: `South East`, Address: `128 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50188 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `171 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70190, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1326, CustomerName: `Martin Watson`, CustomerFirstName: `Martin`, CustomerLastName: `Watson`, CustomerAddress: `171 Market Street, Huston, USA, 70190`, Salesperson: `Anna Madison`, OrderID: 1815, OrderDate: `7/4/2022`, ProductID: 195, ProductName: `Samsung Note`, UnitPrice: 27340.66, Quantity: 5, ExtendedPrice: 136703.3, Freight: 1790.66, Discontinued: false, Region: `South East`, Address: `171 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70190 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `191 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60123, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1327, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `191 Market Street, Philadelphia, USA, 60123`, Salesperson: `Anna Madison`, OrderID: 1319, OrderDate: `8/5/2022`, ProductID: 191, ProductName: `Samsung Note`, UnitPrice: 28500.5, Quantity: 5, ExtendedPrice: 142502.5, Freight: 1280.5, Discontinued: false, Region: `West`, Address: `191 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60123 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `150 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80139, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1328, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `150 Wall Street, Philadelphia, USA, 80139`, Salesperson: `Nancy Watson`, OrderID: 1592, OrderDate: `2/22/2022`, ProductID: 149, ProductName: `Mac Book Pro`, UnitPrice: 22890.6, Quantity: 5, ExtendedPrice: 114453, Freight: 920.6, Discontinued: false, Region: `South East`, Address: `150 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80139 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `112 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70172, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1329, CustomerName: `Nancy Jackson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jackson`, CustomerAddress: `112 Main Street, Los Angeles, USA, 70172`, Salesperson: `Max Jefferson`, OrderID: 1959, OrderDate: `10/15/2022`, ProductID: 156, ProductName: `Samsung Galaxy 22`, UnitPrice: 12050.71, Quantity: 4, ExtendedPrice: 48202.84, Freight: 270.71, Discontinued: true, Region: `North East`, Address: `112 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70172 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `121 Market Street`, ShipCity: `New York`, ShipPostalCode: 80122, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1330, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `121 Market Street, New York, USA, 80122`, Salesperson: `Ben Black`, OrderID: 1343, OrderDate: `5/25/2022`, ProductID: 118, ProductName: `Mac Book Pro`, UnitPrice: 7060.29, Quantity: 4, ExtendedPrice: 28241.16, Freight: 400.29, Discontinued: false, Region: `West`, Address: `121 Market Street`, City: `New York`, Country: `USA`, PostalCode: 80122 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `183 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 90122, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1331, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `183 Wall Street, Miami, USA, 90122`, Salesperson: `Pamela Smith`, OrderID: 1876, OrderDate: `2/8/2022`, ProductID: 137, ProductName: `Samsung Note`, UnitPrice: 10140.84, Quantity: 4, ExtendedPrice: 40563.36, Freight: 640.84, Discontinued: false, Region: `North East`, Address: `183 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 90122 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `105 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50068, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1332, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `105 Main Street, Los Angeles, USA, 50068`, Salesperson: `Ben Madison`, OrderID: 1322, OrderDate: `6/7/2022`, ProductID: 148, ProductName: `Mac Book Air`, UnitPrice: 20150.45, Quantity: 4, ExtendedPrice: 80601.8, Freight: 1190.45, Discontinued: false, Region: `North East`, Address: `105 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50068 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `199 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70061, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1333, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `199 Market Street, Huston, USA, 70061`, Salesperson: `Max Smith`, OrderID: 1046, OrderDate: `2/3/2022`, ProductID: 162, ProductName: `IPhone`, UnitPrice: 28480.38, Quantity: 2, ExtendedPrice: 56960.76, Freight: 1180.38, Discontinued: false, Region: `West`, Address: `199 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70061 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `142 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60058, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1334, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `142 Wall Street, Huston, USA, 60058`, Salesperson: `Mike Madison`, OrderID: 1433, OrderDate: `2/1/2022`, ProductID: 177, ProductName: `IPhone`, UnitPrice: 6770.89, Quantity: 5, ExtendedPrice: 33854.45, Freight: 520.89, Discontinued: false, Region: `South East`, Address: `142 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60058 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `140 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90131, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1335, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `140 Market Street, Los Angeles, USA, 90131`, Salesperson: `Pamela Black`, OrderID: 1894, OrderDate: `9/13/2022`, ProductID: 151, ProductName: `IPad`, UnitPrice: 5280.38, Quantity: 5, ExtendedPrice: 26401.9, Freight: 1610.38, Discontinued: false, Region: `North East`, Address: `140 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90131 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `106 Market Street`, ShipCity: `Miami`, ShipPostalCode: 60063, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1336, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `106 Market Street, Miami, USA, 60063`, Salesperson: `Anna Jackson`, OrderID: 1017, OrderDate: `6/12/2022`, ProductID: 173, ProductName: `Mac Book Pro`, UnitPrice: 27000.78, Quantity: 2, ExtendedPrice: 54001.56, Freight: 540.78, Discontinued: false, Region: `West`, Address: `106 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 60063 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `190 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70115, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1337, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `190 Market Street, Huston, USA, 70115`, Salesperson: `Martin Smith`, OrderID: 1583, OrderDate: `2/12/2022`, ProductID: 147, ProductName: `Samsung Note`, UnitPrice: 7560.53, Quantity: 2, ExtendedPrice: 15121.06, Freight: 260.53, Discontinued: false, Region: `South East`, Address: `190 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70115 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `129 Market Street`, ShipCity: `Miami`, ShipPostalCode: 70051, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1338, CustomerName: `Nancy Smith`, CustomerFirstName: `Nancy`, CustomerLastName: `Smith`, CustomerAddress: `129 Market Street, Miami, USA, 70051`, Salesperson: `Pamela Madison`, OrderID: 1202, OrderDate: `3/15/2022`, ProductID: 136, ProductName: `IPhone`, UnitPrice: 20520.41, Quantity: 2, ExtendedPrice: 41040.82, Freight: 550.41, Discontinued: false, Region: `North East`, Address: `129 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 70051 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `143 Main Street`, ShipCity: `Miami`, ShipPostalCode: 70144, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1339, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `143 Main Street, Miami, USA, 70144`, Salesperson: `James Jefferson`, OrderID: 1172, OrderDate: `10/15/2022`, ProductID: 136, ProductName: `IPad`, UnitPrice: 18760.26, Quantity: 4, ExtendedPrice: 75041.04, Freight: 540.26, Discontinued: true, Region: `North East`, Address: `143 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 70144 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `179 Market Street`, ShipCity: `New York`, ShipPostalCode: 90174, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1340, CustomerName: `Martin Smith`, CustomerFirstName: `Martin`, CustomerLastName: `Smith`, CustomerAddress: `179 Market Street, New York, USA, 90174`, Salesperson: `Martin Madison`, OrderID: 1491, OrderDate: `4/19/2022`, ProductID: 176, ProductName: `Mac Book Air`, UnitPrice: 16000.56, Quantity: 4, ExtendedPrice: 64002.24, Freight: 690.56, Discontinued: false, Region: `West`, Address: `179 Market Street`, City: `New York`, Country: `USA`, PostalCode: 90174 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `152 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90077, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1341, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `152 Main Street, Philadelphia, USA, 90077`, Salesperson: `James Black`, OrderID: 1351, OrderDate: `9/19/2022`, ProductID: 147, ProductName: `IPhone`, UnitPrice: 19810.36, Quantity: 4, ExtendedPrice: 79241.44, Freight: 920.36, Discontinued: false, Region: `West`, Address: `152 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90077 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `170 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60097, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1342, CustomerName: `Anna Jefferson`, CustomerFirstName: `Anna`, CustomerLastName: `Jefferson`, CustomerAddress: `170 Main Street, Los Angeles, USA, 60097`, Salesperson: `Martin Black`, OrderID: 1619, OrderDate: `3/13/2022`, ProductID: 166, ProductName: `Mac Book Air`, UnitPrice: 27140.88, Quantity: 3, ExtendedPrice: 81422.64, Freight: 1480.88, Discontinued: false, Region: `North East`, Address: `170 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60097 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `198 Wall Street`, ShipCity: `New York`, ShipPostalCode: 90077, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1343, CustomerName: `Martin Black`, CustomerFirstName: `Martin`, CustomerLastName: `Black`, CustomerAddress: `198 Wall Street, New York, USA, 90077`, Salesperson: `James Smith`, OrderID: 1646, OrderDate: `9/2/2022`, ProductID: 122, ProductName: `Samsung Galaxy 22`, UnitPrice: 6160.87, Quantity: 3, ExtendedPrice: 18482.61, Freight: 1480.87, Discontinued: false, Region: `South East`, Address: `198 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 90077 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `193 Wall Street`, ShipCity: `New York`, ShipPostalCode: 60165, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1344, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `193 Wall Street, New York, USA, 60165`, Salesperson: `Ben Madison`, OrderID: 1516, OrderDate: `4/20/2022`, ProductID: 113, ProductName: `IPhone`, UnitPrice: 22310.25, Quantity: 2, ExtendedPrice: 44620.5, Freight: 1740.25, Discontinued: false, Region: `North East`, Address: `193 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 60165 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `108 Wall Street`, ShipCity: `New York`, ShipPostalCode: 90123, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1345, CustomerName: `James Jackson`, CustomerFirstName: `James`, CustomerLastName: `Jackson`, CustomerAddress: `108 Wall Street, New York, USA, 90123`, Salesperson: `Mike Madison`, OrderID: 1356, OrderDate: `11/2/2022`, ProductID: 105, ProductName: `Mac Book Air`, UnitPrice: 16240.78, Quantity: 5, ExtendedPrice: 81203.9, Freight: 260.78, Discontinued: false, Region: `North East`, Address: `108 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 90123 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `173 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60061, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1346, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `173 Main Street, Miami, USA, 60061`, Salesperson: `Mike Jefferson`, OrderID: 1062, OrderDate: `3/5/2022`, ProductID: 101, ProductName: `Samsung Galaxy 22`, UnitPrice: 25540.71, Quantity: 5, ExtendedPrice: 127703.55, Freight: 2000.71, Discontinued: false, Region: `West`, Address: `173 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60061 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `118 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60178, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1347, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `118 Wall Street, Los Angeles, USA, 60178`, Salesperson: `Max Madison`, OrderID: 1482, OrderDate: `8/24/2022`, ProductID: 105, ProductName: `IPhone`, UnitPrice: 17000.6, Quantity: 4, ExtendedPrice: 68002.4, Freight: 1390.6, Discontinued: false, Region: `West`, Address: `118 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60178 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `134 Wall Street`, ShipCity: `New York`, ShipPostalCode: 60096, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1348, CustomerName: `Martin Jackson`, CustomerFirstName: `Martin`, CustomerLastName: `Jackson`, CustomerAddress: `134 Wall Street, New York, USA, 60096`, Salesperson: `Ben Madison`, OrderID: 1443, OrderDate: `7/1/2022`, ProductID: 105, ProductName: `Samsung Galaxy 22`, UnitPrice: 12670.46, Quantity: 2, ExtendedPrice: 25340.92, Freight: 1280.46, Discontinued: false, Region: `North East`, Address: `134 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 60096 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `125 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50134, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1349, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `125 Market Street, Philadelphia, USA, 50134`, Salesperson: `Mike Watson`, OrderID: 1498, OrderDate: `1/17/2022`, ProductID: 194, ProductName: `IPhone`, UnitPrice: 23470.22, Quantity: 3, ExtendedPrice: 70410.66, Freight: 1370.22, Discontinued: true, Region: `South East`, Address: `125 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50134 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `145 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80099, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1350, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `145 Market Street, Philadelphia, USA, 80099`, Salesperson: `Nancy Watson`, OrderID: 1002, OrderDate: `11/11/2022`, ProductID: 116, ProductName: `Mac Book Air`, UnitPrice: 17060.57, Quantity: 3, ExtendedPrice: 51181.71, Freight: 1800.57, Discontinued: false, Region: `West`, Address: `145 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80099 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `130 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70052, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1351, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `130 Market Street, Philadelphia, USA, 70052`, Salesperson: `Pamela Watson`, OrderID: 1144, OrderDate: `10/15/2022`, ProductID: 168, ProductName: `IPhone`, UnitPrice: 13010.35, Quantity: 4, ExtendedPrice: 52041.4, Freight: 980.35, Discontinued: false, Region: `South East`, Address: `130 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70052 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `136 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 60165, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1352, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `136 Wall Street, Miami, USA, 60165`, Salesperson: `Mike Black`, OrderID: 1745, OrderDate: `4/9/2022`, ProductID: 119, ProductName: `Samsung Galaxy 22`, UnitPrice: 7900.53, Quantity: 4, ExtendedPrice: 31602.12, Freight: 1400.53, Discontinued: false, Region: `West`, Address: `136 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 60165 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `190 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60176, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1353, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `190 Wall Street, Philadelphia, USA, 60176`, Salesperson: `Martin Smith`, OrderID: 1489, OrderDate: `3/25/2022`, ProductID: 113, ProductName: `Samsung Galaxy 22`, UnitPrice: 23420.42, Quantity: 4, ExtendedPrice: 93681.68, Freight: 1660.42, Discontinued: false, Region: `West`, Address: `190 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60176 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `114 Main Street`, ShipCity: `Huston`, ShipPostalCode: 50060, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1354, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `114 Main Street, Huston, USA, 50060`, Salesperson: `Nancy Jackson`, OrderID: 1302, OrderDate: `3/21/2022`, ProductID: 144, ProductName: `Mac Book Pro`, UnitPrice: 21240.71, Quantity: 5, ExtendedPrice: 106203.55, Freight: 1000.71, Discontinued: false, Region: `North East`, Address: `114 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 50060 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `130 Market Street`, ShipCity: `Huston`, ShipPostalCode: 90062, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1355, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `130 Market Street, Huston, USA, 90062`, Salesperson: `Ben Jackson`, OrderID: 1901, OrderDate: `11/5/2022`, ProductID: 101, ProductName: `Samsung Galaxy 22`, UnitPrice: 17170.52, Quantity: 4, ExtendedPrice: 68682.08, Freight: 1600.52, Discontinued: false, Region: `South East`, Address: `130 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 90062 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `160 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50149, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1356, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `160 Market Street, Philadelphia, USA, 50149`, Salesperson: `Ben Watson`, OrderID: 1331, OrderDate: `2/5/2022`, ProductID: 151, ProductName: `Mac Book Pro`, UnitPrice: 17650.73, Quantity: 4, ExtendedPrice: 70602.92, Freight: 1720.73, Discontinued: false, Region: `South East`, Address: `160 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50149 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `130 Main Street`, ShipCity: `New York`, ShipPostalCode: 50184, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1357, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `130 Main Street, New York, USA, 50184`, Salesperson: `Anna Watson`, OrderID: 1161, OrderDate: `5/18/2022`, ProductID: 185, ProductName: `Samsung Galaxy 22`, UnitPrice: 12920.84, Quantity: 3, ExtendedPrice: 38762.52, Freight: 780.84, Discontinued: false, Region: `South East`, Address: `130 Main Street`, City: `New York`, Country: `USA`, PostalCode: 50184 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `120 Wall Street`, ShipCity: `New York`, ShipPostalCode: 90122, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1358, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `120 Wall Street, New York, USA, 90122`, Salesperson: `Martin Madison`, OrderID: 1211, OrderDate: `11/13/2022`, ProductID: 136, ProductName: `IPad`, UnitPrice: 21380.5, Quantity: 4, ExtendedPrice: 85522, Freight: 1130.5, Discontinued: false, Region: `West`, Address: `120 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 90122 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `108 Market Street`, ShipCity: `New York`, ShipPostalCode: 80106, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1359, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `108 Market Street, New York, USA, 80106`, Salesperson: `Anna Watson`, OrderID: 1010, OrderDate: `3/15/2022`, ProductID: 198, ProductName: `Samsung Galaxy 22`, UnitPrice: 18060.46, Quantity: 4, ExtendedPrice: 72241.84, Freight: 330.46, Discontinued: true, Region: `North East`, Address: `108 Market Street`, City: `New York`, Country: `USA`, PostalCode: 80106 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `114 Market Street`, ShipCity: `Miami`, ShipPostalCode: 70117, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1360, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `114 Market Street, Miami, USA, 70117`, Salesperson: `James Smith`, OrderID: 1001, OrderDate: `2/24/2022`, ProductID: 121, ProductName: `Mac Book Pro`, UnitPrice: 22020.55, Quantity: 5, ExtendedPrice: 110102.75, Freight: 1970.55, Discontinued: false, Region: `West`, Address: `114 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 70117 }), + new InvoicesDataItem({ ShipName: `Jackson Home`, ShipAddress: `134 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50108, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1361, CustomerName: `Nancy Jackson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jackson`, CustomerAddress: `134 Main Street, Philadelphia, USA, 50108`, Salesperson: `Max Jefferson`, OrderID: 1871, OrderDate: `3/1/2022`, ProductID: 114, ProductName: `Mac Book Air`, UnitPrice: 13010.27, Quantity: 5, ExtendedPrice: 65051.35, Freight: 1490.27, Discontinued: false, Region: `North East`, Address: `134 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50108 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `138 Market Street`, ShipCity: `Huston`, ShipPostalCode: 90082, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1362, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `138 Market Street, Huston, USA, 90082`, Salesperson: `Ben Watson`, OrderID: 1175, OrderDate: `4/11/2022`, ProductID: 159, ProductName: `Samsung Galaxy 22`, UnitPrice: 17660.27, Quantity: 5, ExtendedPrice: 88301.35, Freight: 1770.27, Discontinued: false, Region: `South East`, Address: `138 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 90082 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `131 Main Street`, ShipCity: `Miami`, ShipPostalCode: 90189, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1363, CustomerName: `James Madison`, CustomerFirstName: `James`, CustomerLastName: `Madison`, CustomerAddress: `131 Main Street, Miami, USA, 90189`, Salesperson: `Nancy Madison`, OrderID: 1072, OrderDate: `2/14/2022`, ProductID: 169, ProductName: `Mac Book Air`, UnitPrice: 24150.8, Quantity: 4, ExtendedPrice: 96603.2, Freight: 1040.8, Discontinued: false, Region: `South East`, Address: `131 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 90189 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `133 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90077, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1364, CustomerName: `Martin Watson`, CustomerFirstName: `Martin`, CustomerLastName: `Watson`, CustomerAddress: `133 Wall Street, Philadelphia, USA, 90077`, Salesperson: `Pamela Jackson`, OrderID: 1971, OrderDate: `10/16/2022`, ProductID: 108, ProductName: `Samsung Note`, UnitPrice: 18520.3, Quantity: 2, ExtendedPrice: 37040.6, Freight: 300.3, Discontinued: false, Region: `North East`, Address: `133 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90077 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `128 Market Street`, ShipCity: `Huston`, ShipPostalCode: 90109, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1365, CustomerName: `Pamela Smith`, CustomerFirstName: `Pamela`, CustomerLastName: `Smith`, CustomerAddress: `128 Market Street, Huston, USA, 90109`, Salesperson: `Nancy Jackson`, OrderID: 1024, OrderDate: `12/21/2022`, ProductID: 188, ProductName: `Samsung Note`, UnitPrice: 10040.29, Quantity: 4, ExtendedPrice: 40161.16, Freight: 1900.29, Discontinued: false, Region: `South East`, Address: `128 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 90109 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `154 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80119, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1366, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `154 Market Street, Philadelphia, USA, 80119`, Salesperson: `Nancy Jackson`, OrderID: 1537, OrderDate: `6/24/2022`, ProductID: 161, ProductName: `IPhone`, UnitPrice: 20110.8, Quantity: 5, ExtendedPrice: 100554, Freight: 1990.8, Discontinued: false, Region: `South East`, Address: `154 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80119 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `156 Main Street`, ShipCity: `Miami`, ShipPostalCode: 50128, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1367, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `156 Main Street, Miami, USA, 50128`, Salesperson: `Nancy Smith`, OrderID: 1289, OrderDate: `7/2/2022`, ProductID: 125, ProductName: `Samsung Galaxy 22`, UnitPrice: 18320.56, Quantity: 3, ExtendedPrice: 54961.68, Freight: 890.56, Discontinued: false, Region: `South East`, Address: `156 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 50128 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `130 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60146, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1368, CustomerName: `James Madison`, CustomerFirstName: `James`, CustomerLastName: `Madison`, CustomerAddress: `130 Main Street, Miami, USA, 60146`, Salesperson: `Nancy Jackson`, OrderID: 1451, OrderDate: `12/4/2022`, ProductID: 140, ProductName: `Samsung Galaxy 22`, UnitPrice: 6030.21, Quantity: 4, ExtendedPrice: 24120.84, Freight: 1930.21, Discontinued: false, Region: `North East`, Address: `130 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60146 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `159 Wall Street`, ShipCity: `New York`, ShipPostalCode: 70158, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1369, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `159 Wall Street, New York, USA, 70158`, Salesperson: `Max Jefferson`, OrderID: 1056, OrderDate: `1/10/2022`, ProductID: 151, ProductName: `Mac Book Pro`, UnitPrice: 27710.33, Quantity: 3, ExtendedPrice: 83130.99, Freight: 300.33, Discontinued: true, Region: `South East`, Address: `159 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 70158 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `189 Wall Street`, ShipCity: `New York`, ShipPostalCode: 90186, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1370, CustomerName: `Pamela Smith`, CustomerFirstName: `Pamela`, CustomerLastName: `Smith`, CustomerAddress: `189 Wall Street, New York, USA, 90186`, Salesperson: `Anna Jefferson`, OrderID: 1611, OrderDate: `9/14/2022`, ProductID: 180, ProductName: `IPhone`, UnitPrice: 15940.65, Quantity: 4, ExtendedPrice: 63762.6, Freight: 1210.65, Discontinued: false, Region: `North East`, Address: `189 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 90186 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `190 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50065, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1371, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `190 Wall Street, Philadelphia, USA, 50065`, Salesperson: `Martin Watson`, OrderID: 1731, OrderDate: `2/7/2022`, ProductID: 103, ProductName: `Mac Book Pro`, UnitPrice: 21560.2, Quantity: 4, ExtendedPrice: 86240.8, Freight: 1880.2, Discontinued: false, Region: `South East`, Address: `190 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50065 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `127 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80182, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1372, CustomerName: `Pamela Smith`, CustomerFirstName: `Pamela`, CustomerLastName: `Smith`, CustomerAddress: `127 Market Street, Los Angeles, USA, 80182`, Salesperson: `Ben Jefferson`, OrderID: 1156, OrderDate: `7/16/2022`, ProductID: 132, ProductName: `Samsung Galaxy 22`, UnitPrice: 15440.77, Quantity: 5, ExtendedPrice: 77203.85, Freight: 1730.77, Discontinued: false, Region: `West`, Address: `127 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80182 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `150 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50154, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1373, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `150 Market Street, Philadelphia, USA, 50154`, Salesperson: `Max Jackson`, OrderID: 1592, OrderDate: `12/25/2022`, ProductID: 109, ProductName: `Mac Book Air`, UnitPrice: 25510.57, Quantity: 2, ExtendedPrice: 51021.14, Freight: 1350.57, Discontinued: false, Region: `North East`, Address: `150 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50154 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `163 Market Street`, ShipCity: `Miami`, ShipPostalCode: 50149, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1374, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `163 Market Street, Miami, USA, 50149`, Salesperson: `James Smith`, OrderID: 1504, OrderDate: `10/7/2022`, ProductID: 197, ProductName: `Mac Book Pro`, UnitPrice: 23590.87, Quantity: 5, ExtendedPrice: 117954.35, Freight: 460.87, Discontinued: false, Region: `South East`, Address: `163 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 50149 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `114 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90131, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1375, CustomerName: `Pamela Smith`, CustomerFirstName: `Pamela`, CustomerLastName: `Smith`, CustomerAddress: `114 Wall Street, Philadelphia, USA, 90131`, Salesperson: `Nancy Jefferson`, OrderID: 1121, OrderDate: `11/25/2022`, ProductID: 148, ProductName: `Samsung Note`, UnitPrice: 13030.29, Quantity: 2, ExtendedPrice: 26060.58, Freight: 1140.29, Discontinued: false, Region: `South East`, Address: `114 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90131 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `167 Market Street`, ShipCity: `Huston`, ShipPostalCode: 50058, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1376, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `167 Market Street, Huston, USA, 50058`, Salesperson: `Martin Black`, OrderID: 1455, OrderDate: `8/6/2022`, ProductID: 196, ProductName: `IPhone`, UnitPrice: 13870.29, Quantity: 5, ExtendedPrice: 69351.45, Freight: 1080.29, Discontinued: false, Region: `West`, Address: `167 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 50058 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `181 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80062, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1377, CustomerName: `Anna Jackson`, CustomerFirstName: `Anna`, CustomerLastName: `Jackson`, CustomerAddress: `181 Market Street, Los Angeles, USA, 80062`, Salesperson: `Anna Black`, OrderID: 1320, OrderDate: `1/15/2022`, ProductID: 109, ProductName: `Mac Book Pro`, UnitPrice: 10990.65, Quantity: 3, ExtendedPrice: 32971.95, Freight: 310.65, Discontinued: false, Region: `North East`, Address: `181 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80062 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `113 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 80140, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1378, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `113 Wall Street, Miami, USA, 80140`, Salesperson: `Anna Jackson`, OrderID: 1936, OrderDate: `12/2/2022`, ProductID: 171, ProductName: `IPhone`, UnitPrice: 9550.78, Quantity: 4, ExtendedPrice: 38203.12, Freight: 1380.78, Discontinued: false, Region: `South East`, Address: `113 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 80140 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `188 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80072, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1379, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `188 Wall Street, Los Angeles, USA, 80072`, Salesperson: `Nancy Watson`, OrderID: 1767, OrderDate: `10/23/2022`, ProductID: 130, ProductName: `IPhone`, UnitPrice: 21500.21, Quantity: 2, ExtendedPrice: 43000.42, Freight: 1680.21, Discontinued: true, Region: `South East`, Address: `188 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80072 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `177 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80160, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1380, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `177 Market Street, Huston, USA, 80160`, Salesperson: `Max Jackson`, OrderID: 1118, OrderDate: `6/2/2022`, ProductID: 111, ProductName: `Mac Book Air`, UnitPrice: 20100.73, Quantity: 4, ExtendedPrice: 80402.92, Freight: 540.73, Discontinued: false, Region: `West`, Address: `177 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80160 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `139 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 80074, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1381, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `139 Wall Street, Miami, USA, 80074`, Salesperson: `Nancy Madison`, OrderID: 1269, OrderDate: `6/12/2022`, ProductID: 192, ProductName: `Mac Book Air`, UnitPrice: 17200.34, Quantity: 4, ExtendedPrice: 68801.36, Freight: 1280.34, Discontinued: false, Region: `North East`, Address: `139 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 80074 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `115 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90081, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1382, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `115 Wall Street, Los Angeles, USA, 90081`, Salesperson: `James Jackson`, OrderID: 1587, OrderDate: `4/9/2022`, ProductID: 187, ProductName: `Samsung Note`, UnitPrice: 24670.86, Quantity: 2, ExtendedPrice: 49341.72, Freight: 1360.86, Discontinued: false, Region: `North East`, Address: `115 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90081 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `130 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 50175, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1383, CustomerName: `Anna Jefferson`, CustomerFirstName: `Anna`, CustomerLastName: `Jefferson`, CustomerAddress: `130 Wall Street, Miami, USA, 50175`, Salesperson: `Mike Smith`, OrderID: 1632, OrderDate: `3/3/2022`, ProductID: 197, ProductName: `IPad`, UnitPrice: 9780.24, Quantity: 3, ExtendedPrice: 29340.72, Freight: 1420.24, Discontinued: false, Region: `West`, Address: `130 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 50175 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `110 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90171, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1384, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `110 Main Street, Philadelphia, USA, 90171`, Salesperson: `Max Jefferson`, OrderID: 1400, OrderDate: `6/24/2022`, ProductID: 123, ProductName: `IPhone`, UnitPrice: 12010.77, Quantity: 2, ExtendedPrice: 24021.54, Freight: 560.77, Discontinued: false, Region: `North East`, Address: `110 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90171 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `111 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80086, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1385, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `111 Market Street, Huston, USA, 80086`, Salesperson: `Ben Watson`, OrderID: 1040, OrderDate: `8/25/2022`, ProductID: 192, ProductName: `Samsung Note`, UnitPrice: 27920.64, Quantity: 5, ExtendedPrice: 139603.2, Freight: 250.64, Discontinued: false, Region: `South East`, Address: `111 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80086 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `132 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 60121, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1386, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `132 Wall Street, Huston, USA, 60121`, Salesperson: `Anna Watson`, OrderID: 1445, OrderDate: `6/12/2022`, ProductID: 139, ProductName: `IPhone`, UnitPrice: 17460.46, Quantity: 3, ExtendedPrice: 52381.38, Freight: 1060.46, Discontinued: false, Region: `South East`, Address: `132 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 60121 }), + new InvoicesDataItem({ ShipName: `Smith Townhouse`, ShipAddress: `150 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60127, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1387, CustomerName: `Ben Smith`, CustomerFirstName: `Ben`, CustomerLastName: `Smith`, CustomerAddress: `150 Main Street, Philadelphia, USA, 60127`, Salesperson: `Max Smith`, OrderID: 1803, OrderDate: `4/15/2022`, ProductID: 172, ProductName: `Mac Book Air`, UnitPrice: 17820.62, Quantity: 4, ExtendedPrice: 71282.48, Freight: 1150.62, Discontinued: false, Region: `West`, Address: `150 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60127 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `173 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50160, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1388, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `173 Market Street, Philadelphia, USA, 50160`, Salesperson: `Nancy Jefferson`, OrderID: 1719, OrderDate: `4/23/2022`, ProductID: 134, ProductName: `IPhone`, UnitPrice: 22780.47, Quantity: 3, ExtendedPrice: 68341.41, Freight: 500.47, Discontinued: false, Region: `West`, Address: `173 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50160 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `120 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60064, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1389, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `120 Wall Street, Philadelphia, USA, 60064`, Salesperson: `Martin Jefferson`, OrderID: 1706, OrderDate: `5/15/2022`, ProductID: 151, ProductName: `Samsung Note`, UnitPrice: 16430.61, Quantity: 3, ExtendedPrice: 49291.83, Freight: 1650.61, Discontinued: true, Region: `West`, Address: `120 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60064 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `109 Main Street`, ShipCity: `Huston`, ShipPostalCode: 70200, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1390, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `109 Main Street, Huston, USA, 70200`, Salesperson: `James Watson`, OrderID: 1318, OrderDate: `6/10/2022`, ProductID: 163, ProductName: `IPad`, UnitPrice: 26710.76, Quantity: 4, ExtendedPrice: 106843.04, Freight: 330.76, Discontinued: false, Region: `South East`, Address: `109 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 70200 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `161 Main Street`, ShipCity: `Huston`, ShipPostalCode: 60159, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1391, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `161 Main Street, Huston, USA, 60159`, Salesperson: `Ben Smith`, OrderID: 1322, OrderDate: `6/3/2022`, ProductID: 170, ProductName: `IPad`, UnitPrice: 18660.7, Quantity: 4, ExtendedPrice: 74642.8, Freight: 1480.7, Discontinued: false, Region: `North East`, Address: `161 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 60159 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `194 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60148, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1392, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `194 Main Street, Los Angeles, USA, 60148`, Salesperson: `Pamela Black`, OrderID: 1664, OrderDate: `9/11/2022`, ProductID: 131, ProductName: `Mac Book Pro`, UnitPrice: 16990.84, Quantity: 5, ExtendedPrice: 84954.2, Freight: 1870.84, Discontinued: false, Region: `West`, Address: `194 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60148 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `191 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60148, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1393, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `191 Main Street, Los Angeles, USA, 60148`, Salesperson: `Martin Jackson`, OrderID: 1995, OrderDate: `7/3/2022`, ProductID: 107, ProductName: `Mac Book Pro`, UnitPrice: 18490.66, Quantity: 2, ExtendedPrice: 36981.32, Freight: 690.66, Discontinued: false, Region: `West`, Address: `191 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60148 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `129 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80148, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1394, CustomerName: `Martin Jefferson`, CustomerFirstName: `Martin`, CustomerLastName: `Jefferson`, CustomerAddress: `129 Wall Street, Philadelphia, USA, 80148`, Salesperson: `Ben Jefferson`, OrderID: 1344, OrderDate: `10/13/2022`, ProductID: 168, ProductName: `IPhone`, UnitPrice: 5870.82, Quantity: 5, ExtendedPrice: 29354.1, Freight: 400.82, Discontinued: false, Region: `West`, Address: `129 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80148 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `148 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70084, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1395, CustomerName: `Anna Jefferson`, CustomerFirstName: `Anna`, CustomerLastName: `Jefferson`, CustomerAddress: `148 Market Street, Philadelphia, USA, 70084`, Salesperson: `Martin Smith`, OrderID: 1602, OrderDate: `3/2/2022`, ProductID: 153, ProductName: `Samsung Note`, UnitPrice: 8490.68, Quantity: 3, ExtendedPrice: 25472.04, Freight: 1650.68, Discontinued: false, Region: `North East`, Address: `148 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70084 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `152 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 90101, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1396, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `152 Wall Street, Miami, USA, 90101`, Salesperson: `Ben Black`, OrderID: 1059, OrderDate: `4/12/2022`, ProductID: 164, ProductName: `Samsung Galaxy 22`, UnitPrice: 12460.5, Quantity: 3, ExtendedPrice: 37381.5, Freight: 280.5, Discontinued: false, Region: `North East`, Address: `152 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 90101 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `147 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50200, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1397, CustomerName: `Nancy Jackson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jackson`, CustomerAddress: `147 Market Street, Philadelphia, USA, 50200`, Salesperson: `Nancy Watson`, OrderID: 1159, OrderDate: `5/12/2022`, ProductID: 136, ProductName: `IPhone`, UnitPrice: 20790.46, Quantity: 4, ExtendedPrice: 83161.84, Freight: 780.46, Discontinued: false, Region: `North East`, Address: `147 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50200 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `106 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60064, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1398, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `106 Main Street, Miami, USA, 60064`, Salesperson: `Nancy Watson`, OrderID: 1646, OrderDate: `2/13/2022`, ProductID: 143, ProductName: `IPad`, UnitPrice: 19180.29, Quantity: 4, ExtendedPrice: 76721.16, Freight: 1760.29, Discontinued: false, Region: `North East`, Address: `106 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60064 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `112 Main Street`, ShipCity: `Miami`, ShipPostalCode: 90118, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1399, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `112 Main Street, Miami, USA, 90118`, Salesperson: `Martin Black`, OrderID: 1205, OrderDate: `9/24/2022`, ProductID: 109, ProductName: `IPad`, UnitPrice: 25950.86, Quantity: 4, ExtendedPrice: 103803.44, Freight: 1780.86, Discontinued: true, Region: `North East`, Address: `112 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 90118 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `135 Main Street`, ShipCity: `Huston`, ShipPostalCode: 80177, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1400, CustomerName: `Mike Watson`, CustomerFirstName: `Mike`, CustomerLastName: `Watson`, CustomerAddress: `135 Main Street, Huston, USA, 80177`, Salesperson: `Max Madison`, OrderID: 1619, OrderDate: `7/15/2022`, ProductID: 174, ProductName: `Mac Book Pro`, UnitPrice: 24890.31, Quantity: 2, ExtendedPrice: 49780.62, Freight: 1540.31, Discontinued: false, Region: `West`, Address: `135 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 80177 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `156 Main Street`, ShipCity: `Miami`, ShipPostalCode: 70110, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1401, CustomerName: `Max Smith`, CustomerFirstName: `Max`, CustomerLastName: `Smith`, CustomerAddress: `156 Main Street, Miami, USA, 70110`, Salesperson: `Anna Watson`, OrderID: 1160, OrderDate: `10/21/2022`, ProductID: 127, ProductName: `IPad`, UnitPrice: 18400.21, Quantity: 3, ExtendedPrice: 55200.63, Freight: 580.21, Discontinued: false, Region: `South East`, Address: `156 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 70110 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `124 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90077, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1402, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `124 Wall Street, Los Angeles, USA, 90077`, Salesperson: `Ben Jefferson`, OrderID: 1017, OrderDate: `7/21/2022`, ProductID: 160, ProductName: `Samsung Note`, UnitPrice: 15430.8, Quantity: 5, ExtendedPrice: 77154, Freight: 1660.8, Discontinued: false, Region: `North East`, Address: `124 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90077 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `144 Market Street`, ShipCity: `New York`, ShipPostalCode: 50110, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1403, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `144 Market Street, New York, USA, 50110`, Salesperson: `James Jefferson`, OrderID: 1990, OrderDate: `5/17/2022`, ProductID: 112, ProductName: `IPhone`, UnitPrice: 20040.37, Quantity: 3, ExtendedPrice: 60121.11, Freight: 1710.37, Discontinued: false, Region: `South East`, Address: `144 Market Street`, City: `New York`, Country: `USA`, PostalCode: 50110 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `105 Main Street`, ShipCity: `Miami`, ShipPostalCode: 80117, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1404, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `105 Main Street, Miami, USA, 80117`, Salesperson: `Max Watson`, OrderID: 1002, OrderDate: `10/25/2022`, ProductID: 119, ProductName: `Samsung Galaxy 22`, UnitPrice: 28760.88, Quantity: 5, ExtendedPrice: 143804.4, Freight: 1220.88, Discontinued: false, Region: `West`, Address: `105 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 80117 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `142 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90124, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1405, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `142 Main Street, Los Angeles, USA, 90124`, Salesperson: `James Madison`, OrderID: 1433, OrderDate: `7/22/2022`, ProductID: 158, ProductName: `Mac Book Pro`, UnitPrice: 17750.64, Quantity: 5, ExtendedPrice: 88753.2, Freight: 1300.64, Discontinued: false, Region: `West`, Address: `142 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90124 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `141 Market Street`, ShipCity: `Huston`, ShipPostalCode: 50115, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1406, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `141 Market Street, Huston, USA, 50115`, Salesperson: `Anna Watson`, OrderID: 1195, OrderDate: `8/12/2022`, ProductID: 124, ProductName: `Mac Book Pro`, UnitPrice: 22040.48, Quantity: 2, ExtendedPrice: 44080.96, Freight: 1260.48, Discontinued: false, Region: `North East`, Address: `141 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 50115 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `145 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70160, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1407, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `145 Main Street, Los Angeles, USA, 70160`, Salesperson: `Max Watson`, OrderID: 1486, OrderDate: `1/13/2022`, ProductID: 103, ProductName: `Mac Book Air`, UnitPrice: 29480.67, Quantity: 3, ExtendedPrice: 88442.01, Freight: 1810.67, Discontinued: false, Region: `North East`, Address: `145 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70160 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `106 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80149, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1408, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `106 Main Street, Los Angeles, USA, 80149`, Salesperson: `James Smith`, OrderID: 1646, OrderDate: `9/4/2022`, ProductID: 191, ProductName: `Mac Book Pro`, UnitPrice: 5890.71, Quantity: 5, ExtendedPrice: 29453.55, Freight: 670.71, Discontinued: false, Region: `North East`, Address: `106 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80149 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `171 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60182, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1409, CustomerName: `Anna Madison`, CustomerFirstName: `Anna`, CustomerLastName: `Madison`, CustomerAddress: `171 Market Street, Los Angeles, USA, 60182`, Salesperson: `James Smith`, OrderID: 1839, OrderDate: `12/12/2022`, ProductID: 120, ProductName: `IPhone`, UnitPrice: 17510.64, Quantity: 5, ExtendedPrice: 87553.2, Freight: 1150.64, Discontinued: true, Region: `West`, Address: `171 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60182 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `195 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60122, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1410, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `195 Market Street, Los Angeles, USA, 60122`, Salesperson: `Martin Madison`, OrderID: 1925, OrderDate: `1/22/2022`, ProductID: 164, ProductName: `Mac Book Pro`, UnitPrice: 12920.58, Quantity: 2, ExtendedPrice: 25841.16, Freight: 690.58, Discontinued: false, Region: `West`, Address: `195 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60122 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `137 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 70152, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1411, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `137 Wall Street, Miami, USA, 70152`, Salesperson: `Anna Jackson`, OrderID: 1055, OrderDate: `12/9/2022`, ProductID: 198, ProductName: `IPad`, UnitPrice: 9640.43, Quantity: 4, ExtendedPrice: 38561.72, Freight: 1930.43, Discontinued: false, Region: `North East`, Address: `137 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 70152 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `129 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 50177, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1412, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `129 Wall Street, Miami, USA, 50177`, Salesperson: `Martin Smith`, OrderID: 1845, OrderDate: `10/21/2022`, ProductID: 142, ProductName: `IPad`, UnitPrice: 16040.31, Quantity: 3, ExtendedPrice: 48120.93, Freight: 1050.31, Discontinued: false, Region: `West`, Address: `129 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 50177 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `174 Main Street`, ShipCity: `Huston`, ShipPostalCode: 90080, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1413, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `174 Main Street, Huston, USA, 90080`, Salesperson: `Nancy Jefferson`, OrderID: 1560, OrderDate: `6/23/2022`, ProductID: 110, ProductName: `Mac Book Pro`, UnitPrice: 25850.87, Quantity: 4, ExtendedPrice: 103403.48, Freight: 940.87, Discontinued: false, Region: `West`, Address: `174 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 90080 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `139 Market Street`, ShipCity: `New York`, ShipPostalCode: 60178, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1414, CustomerName: `Nancy Jackson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jackson`, CustomerAddress: `139 Market Street, New York, USA, 60178`, Salesperson: `Pamela Jefferson`, OrderID: 1102, OrderDate: `2/18/2022`, ProductID: 154, ProductName: `Mac Book Air`, UnitPrice: 13210.48, Quantity: 4, ExtendedPrice: 52841.92, Freight: 960.48, Discontinued: false, Region: `South East`, Address: `139 Market Street`, City: `New York`, Country: `USA`, PostalCode: 60178 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `127 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60192, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1415, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `127 Wall Street, Los Angeles, USA, 60192`, Salesperson: `Ben Smith`, OrderID: 1570, OrderDate: `5/19/2022`, ProductID: 105, ProductName: `Samsung Note`, UnitPrice: 24890.59, Quantity: 5, ExtendedPrice: 124452.95, Freight: 1860.59, Discontinued: false, Region: `West`, Address: `127 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60192 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `186 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90145, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1416, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `186 Market Street, Philadelphia, USA, 90145`, Salesperson: `Mike Jefferson`, OrderID: 1872, OrderDate: `11/18/2022`, ProductID: 165, ProductName: `IPhone`, UnitPrice: 19720.85, Quantity: 2, ExtendedPrice: 39441.7, Freight: 690.85, Discontinued: false, Region: `South East`, Address: `186 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90145 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `198 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70160, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1417, CustomerName: `Anna Jackson`, CustomerFirstName: `Anna`, CustomerLastName: `Jackson`, CustomerAddress: `198 Main Street, Philadelphia, USA, 70160`, Salesperson: `Martin Madison`, OrderID: 1155, OrderDate: `11/1/2022`, ProductID: 138, ProductName: `IPhone`, UnitPrice: 12260.46, Quantity: 2, ExtendedPrice: 24520.92, Freight: 1680.46, Discontinued: false, Region: `West`, Address: `198 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70160 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `110 Main Street`, ShipCity: `New York`, ShipPostalCode: 80119, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1418, CustomerName: `Ben Jefferson`, CustomerFirstName: `Ben`, CustomerLastName: `Jefferson`, CustomerAddress: `110 Main Street, New York, USA, 80119`, Salesperson: `Anna Black`, OrderID: 1600, OrderDate: `8/12/2022`, ProductID: 118, ProductName: `Mac Book Air`, UnitPrice: 9840.45, Quantity: 4, ExtendedPrice: 39361.8, Freight: 1410.45, Discontinued: false, Region: `South East`, Address: `110 Main Street`, City: `New York`, Country: `USA`, PostalCode: 80119 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `187 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50082, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1419, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `187 Main Street, Los Angeles, USA, 50082`, Salesperson: `Pamela Watson`, OrderID: 1451, OrderDate: `12/10/2022`, ProductID: 144, ProductName: `Samsung Galaxy 22`, UnitPrice: 25180.7, Quantity: 2, ExtendedPrice: 50361.4, Freight: 560.7, Discontinued: true, Region: `North East`, Address: `187 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50082 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `121 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60178, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1420, CustomerName: `Mike Jackson`, CustomerFirstName: `Mike`, CustomerLastName: `Jackson`, CustomerAddress: `121 Main Street, Miami, USA, 60178`, Salesperson: `Ben Jackson`, OrderID: 1294, OrderDate: `2/18/2022`, ProductID: 168, ProductName: `Samsung Galaxy 22`, UnitPrice: 18670.31, Quantity: 5, ExtendedPrice: 93351.55, Freight: 1410.31, Discontinued: false, Region: `West`, Address: `121 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60178 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `185 Wall Street`, ShipCity: `New York`, ShipPostalCode: 50177, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1421, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `185 Wall Street, New York, USA, 50177`, Salesperson: `James Watson`, OrderID: 1095, OrderDate: `6/16/2022`, ProductID: 182, ProductName: `Samsung Note`, UnitPrice: 10450.44, Quantity: 5, ExtendedPrice: 52252.2, Freight: 1030.44, Discontinued: false, Region: `West`, Address: `185 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 50177 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `177 Market Street`, ShipCity: `New York`, ShipPostalCode: 90081, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1422, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `177 Market Street, New York, USA, 90081`, Salesperson: `Pamela Smith`, OrderID: 1333, OrderDate: `5/21/2022`, ProductID: 159, ProductName: `Mac Book Air`, UnitPrice: 23900.49, Quantity: 5, ExtendedPrice: 119502.45, Freight: 1700.49, Discontinued: false, Region: `South East`, Address: `177 Market Street`, City: `New York`, Country: `USA`, PostalCode: 90081 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `106 Market Street`, ShipCity: `Miami`, ShipPostalCode: 70099, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1423, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `106 Market Street, Miami, USA, 70099`, Salesperson: `Pamela Jackson`, OrderID: 1147, OrderDate: `6/13/2022`, ProductID: 174, ProductName: `Mac Book Pro`, UnitPrice: 29460.63, Quantity: 2, ExtendedPrice: 58921.26, Freight: 1280.63, Discontinued: false, Region: `North East`, Address: `106 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 70099 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `179 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80150, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1424, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `179 Main Street, Philadelphia, USA, 80150`, Salesperson: `James Jefferson`, OrderID: 1595, OrderDate: `7/19/2022`, ProductID: 183, ProductName: `Samsung Galaxy 22`, UnitPrice: 19060.64, Quantity: 5, ExtendedPrice: 95303.2, Freight: 980.64, Discontinued: false, Region: `North East`, Address: `179 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80150 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `142 Main Street`, ShipCity: `Huston`, ShipPostalCode: 90100, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1425, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `142 Main Street, Huston, USA, 90100`, Salesperson: `Martin Black`, OrderID: 1061, OrderDate: `4/4/2022`, ProductID: 118, ProductName: `IPad`, UnitPrice: 17400.83, Quantity: 2, ExtendedPrice: 34801.66, Freight: 370.83, Discontinued: false, Region: `North East`, Address: `142 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 90100 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `189 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90144, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1426, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `189 Main Street, Philadelphia, USA, 90144`, Salesperson: `Martin Smith`, OrderID: 1114, OrderDate: `2/13/2022`, ProductID: 146, ProductName: `Samsung Galaxy 22`, UnitPrice: 16860.57, Quantity: 5, ExtendedPrice: 84302.85, Freight: 1050.57, Discontinued: false, Region: `North East`, Address: `189 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90144 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `130 Wall Street`, ShipCity: `New York`, ShipPostalCode: 90175, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1427, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `130 Wall Street, New York, USA, 90175`, Salesperson: `Nancy Black`, OrderID: 1716, OrderDate: `11/6/2022`, ProductID: 157, ProductName: `IPad`, UnitPrice: 19570.85, Quantity: 3, ExtendedPrice: 58712.55, Freight: 1620.85, Discontinued: false, Region: `North East`, Address: `130 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 90175 }), + new InvoicesDataItem({ ShipName: `Smith Market`, ShipAddress: `144 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80153, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1428, CustomerName: `Anna Smith`, CustomerFirstName: `Anna`, CustomerLastName: `Smith`, CustomerAddress: `144 Market Street, Philadelphia, USA, 80153`, Salesperson: `Mike Smith`, OrderID: 1523, OrderDate: `8/5/2022`, ProductID: 139, ProductName: `Samsung Galaxy 22`, UnitPrice: 5100.26, Quantity: 3, ExtendedPrice: 15300.78, Freight: 1630.26, Discontinued: false, Region: `North East`, Address: `144 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80153 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `175 Wall Street`, ShipCity: `New York`, ShipPostalCode: 50150, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1429, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `175 Wall Street, New York, USA, 50150`, Salesperson: `James Jefferson`, OrderID: 1027, OrderDate: `12/7/2022`, ProductID: 151, ProductName: `IPad`, UnitPrice: 18940.75, Quantity: 4, ExtendedPrice: 75763, Freight: 1130.75, Discontinued: true, Region: `North East`, Address: `175 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 50150 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `152 Wall Street`, ShipCity: `New York`, ShipPostalCode: 70091, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1430, CustomerName: `Max Smith`, CustomerFirstName: `Max`, CustomerLastName: `Smith`, CustomerAddress: `152 Wall Street, New York, USA, 70091`, Salesperson: `Ben Smith`, OrderID: 1626, OrderDate: `1/1/2022`, ProductID: 145, ProductName: `IPhone`, UnitPrice: 29800.74, Quantity: 4, ExtendedPrice: 119202.96, Freight: 1440.74, Discontinued: false, Region: `West`, Address: `152 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 70091 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `127 Main Street`, ShipCity: `Miami`, ShipPostalCode: 90099, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1431, CustomerName: `Martin Jackson`, CustomerFirstName: `Martin`, CustomerLastName: `Jackson`, CustomerAddress: `127 Main Street, Miami, USA, 90099`, Salesperson: `Anna Smith`, OrderID: 1789, OrderDate: `10/15/2022`, ProductID: 139, ProductName: `Mac Book Air`, UnitPrice: 16220.23, Quantity: 2, ExtendedPrice: 32440.46, Freight: 1170.23, Discontinued: false, Region: `West`, Address: `127 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 90099 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `157 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 70162, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1432, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `157 Wall Street, Huston, USA, 70162`, Salesperson: `Martin Madison`, OrderID: 1622, OrderDate: `6/6/2022`, ProductID: 133, ProductName: `Samsung Note`, UnitPrice: 7410.73, Quantity: 4, ExtendedPrice: 29642.92, Freight: 1660.73, Discontinued: false, Region: `South East`, Address: `157 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 70162 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `159 Market Street`, ShipCity: `New York`, ShipPostalCode: 50198, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1433, CustomerName: `Mike Smith`, CustomerFirstName: `Mike`, CustomerLastName: `Smith`, CustomerAddress: `159 Market Street, New York, USA, 50198`, Salesperson: `Mike Smith`, OrderID: 1961, OrderDate: `9/7/2022`, ProductID: 120, ProductName: `Mac Book Pro`, UnitPrice: 9150.59, Quantity: 3, ExtendedPrice: 27451.77, Freight: 550.59, Discontinued: false, Region: `South East`, Address: `159 Market Street`, City: `New York`, Country: `USA`, PostalCode: 50198 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `109 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60160, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1434, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `109 Market Street, Philadelphia, USA, 60160`, Salesperson: `Mike Madison`, OrderID: 1868, OrderDate: `2/5/2022`, ProductID: 131, ProductName: `Samsung Galaxy 22`, UnitPrice: 20400.46, Quantity: 2, ExtendedPrice: 40800.92, Freight: 1640.46, Discontinued: false, Region: `South East`, Address: `109 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60160 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `138 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80164, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1435, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `138 Wall Street, Philadelphia, USA, 80164`, Salesperson: `Mike Smith`, OrderID: 1223, OrderDate: `7/4/2022`, ProductID: 199, ProductName: `Samsung Note`, UnitPrice: 23980.42, Quantity: 5, ExtendedPrice: 119902.1, Freight: 410.42, Discontinued: false, Region: `West`, Address: `138 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80164 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `164 Main Street`, ShipCity: `New York`, ShipPostalCode: 90183, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1436, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `164 Main Street, New York, USA, 90183`, Salesperson: `James Watson`, OrderID: 1766, OrderDate: `7/14/2022`, ProductID: 160, ProductName: `Samsung Note`, UnitPrice: 12280.79, Quantity: 2, ExtendedPrice: 24561.58, Freight: 1140.79, Discontinued: false, Region: `West`, Address: `164 Main Street`, City: `New York`, Country: `USA`, PostalCode: 90183 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `187 Main Street`, ShipCity: `New York`, ShipPostalCode: 80053, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1437, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `187 Main Street, New York, USA, 80053`, Salesperson: `Martin Watson`, OrderID: 1602, OrderDate: `12/25/2022`, ProductID: 112, ProductName: `Samsung Galaxy 22`, UnitPrice: 14860.39, Quantity: 5, ExtendedPrice: 74301.95, Freight: 1920.39, Discontinued: false, Region: `West`, Address: `187 Main Street`, City: `New York`, Country: `USA`, PostalCode: 80053 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `197 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 50076, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1438, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `197 Wall Street, Miami, USA, 50076`, Salesperson: `James Jefferson`, OrderID: 1281, OrderDate: `3/18/2022`, ProductID: 102, ProductName: `Samsung Galaxy 22`, UnitPrice: 11120.87, Quantity: 2, ExtendedPrice: 22241.74, Freight: 720.87, Discontinued: false, Region: `North East`, Address: `197 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 50076 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `127 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90067, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1439, CustomerName: `James Watson`, CustomerFirstName: `James`, CustomerLastName: `Watson`, CustomerAddress: `127 Market Street, Los Angeles, USA, 90067`, Salesperson: `James Madison`, OrderID: 1736, OrderDate: `2/4/2022`, ProductID: 172, ProductName: `IPad`, UnitPrice: 20090.62, Quantity: 4, ExtendedPrice: 80362.48, Freight: 630.62, Discontinued: true, Region: `West`, Address: `127 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90067 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `150 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90161, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1440, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `150 Market Street, Philadelphia, USA, 90161`, Salesperson: `Anna Watson`, OrderID: 1683, OrderDate: `5/15/2022`, ProductID: 192, ProductName: `Mac Book Air`, UnitPrice: 7270.76, Quantity: 3, ExtendedPrice: 21812.28, Freight: 1880.76, Discontinued: false, Region: `West`, Address: `150 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90161 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `128 Market Street`, ShipCity: `Huston`, ShipPostalCode: 70131, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1441, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `128 Market Street, Huston, USA, 70131`, Salesperson: `Ben Smith`, OrderID: 1652, OrderDate: `11/16/2022`, ProductID: 107, ProductName: `Samsung Note`, UnitPrice: 23290.38, Quantity: 2, ExtendedPrice: 46580.76, Freight: 400.38, Discontinued: false, Region: `West`, Address: `128 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 70131 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `151 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 70185, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1442, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `151 Wall Street, Miami, USA, 70185`, Salesperson: `Nancy Black`, OrderID: 1385, OrderDate: `6/12/2022`, ProductID: 110, ProductName: `Mac Book Pro`, UnitPrice: 14390.77, Quantity: 2, ExtendedPrice: 28781.54, Freight: 1600.77, Discontinued: false, Region: `West`, Address: `151 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 70185 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `183 Wall Street`, ShipCity: `New York`, ShipPostalCode: 60080, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1443, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `183 Wall Street, New York, USA, 60080`, Salesperson: `Mike Madison`, OrderID: 1158, OrderDate: `3/11/2022`, ProductID: 172, ProductName: `Samsung Note`, UnitPrice: 25230.25, Quantity: 3, ExtendedPrice: 75690.75, Freight: 340.25, Discontinued: false, Region: `South East`, Address: `183 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 60080 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `137 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80117, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1444, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `137 Wall Street, Philadelphia, USA, 80117`, Salesperson: `Anna Black`, OrderID: 1310, OrderDate: `9/5/2022`, ProductID: 157, ProductName: `IPad`, UnitPrice: 21970.48, Quantity: 2, ExtendedPrice: 43940.96, Freight: 1420.48, Discontinued: false, Region: `South East`, Address: `137 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80117 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `158 Wall Street`, ShipCity: `New York`, ShipPostalCode: 80138, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1445, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `158 Wall Street, New York, USA, 80138`, Salesperson: `Martin Madison`, OrderID: 1385, OrderDate: `5/9/2022`, ProductID: 127, ProductName: `Samsung Galaxy 22`, UnitPrice: 12610.37, Quantity: 5, ExtendedPrice: 63051.85, Freight: 1410.37, Discontinued: false, Region: `West`, Address: `158 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 80138 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `145 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70189, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1446, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `145 Wall Street, Los Angeles, USA, 70189`, Salesperson: `Mike Jackson`, OrderID: 1725, OrderDate: `9/6/2022`, ProductID: 112, ProductName: `Mac Book Pro`, UnitPrice: 20520.26, Quantity: 4, ExtendedPrice: 82081.04, Freight: 710.26, Discontinued: false, Region: `West`, Address: `145 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70189 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `155 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 60114, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1447, CustomerName: `Pamela Black`, CustomerFirstName: `Pamela`, CustomerLastName: `Black`, CustomerAddress: `155 Wall Street, Miami, USA, 60114`, Salesperson: `Martin Madison`, OrderID: 1520, OrderDate: `6/15/2022`, ProductID: 174, ProductName: `IPhone`, UnitPrice: 16730.88, Quantity: 2, ExtendedPrice: 33461.76, Freight: 1020.88, Discontinued: false, Region: `South East`, Address: `155 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 60114 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `184 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 80059, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1448, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `184 Main Street, Los Angeles, USA, 80059`, Salesperson: `Max Smith`, OrderID: 1764, OrderDate: `4/4/2022`, ProductID: 147, ProductName: `Mac Book Air`, UnitPrice: 29810.31, Quantity: 2, ExtendedPrice: 59620.62, Freight: 1200.31, Discontinued: false, Region: `West`, Address: `184 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 80059 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `195 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 80052, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1449, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `195 Wall Street, Huston, USA, 80052`, Salesperson: `Max Jefferson`, OrderID: 1325, OrderDate: `8/23/2022`, ProductID: 186, ProductName: `Mac Book Pro`, UnitPrice: 19780.82, Quantity: 3, ExtendedPrice: 59342.46, Freight: 720.82, Discontinued: true, Region: `South East`, Address: `195 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 80052 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `168 Market Street`, ShipCity: `Miami`, ShipPostalCode: 70196, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1450, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `168 Market Street, Miami, USA, 70196`, Salesperson: `Martin Madison`, OrderID: 1216, OrderDate: `9/9/2022`, ProductID: 134, ProductName: `Samsung Galaxy 22`, UnitPrice: 25110.88, Quantity: 2, ExtendedPrice: 50221.76, Freight: 1040.88, Discontinued: false, Region: `West`, Address: `168 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 70196 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `196 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70064, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1451, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `196 Wall Street, Philadelphia, USA, 70064`, Salesperson: `Nancy Madison`, OrderID: 1924, OrderDate: `9/9/2022`, ProductID: 108, ProductName: `IPhone`, UnitPrice: 14220.86, Quantity: 2, ExtendedPrice: 28441.72, Freight: 1220.86, Discontinued: false, Region: `West`, Address: `196 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70064 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `125 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 90158, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1452, CustomerName: `Max Madison`, CustomerFirstName: `Max`, CustomerLastName: `Madison`, CustomerAddress: `125 Wall Street, Huston, USA, 90158`, Salesperson: `Martin Jackson`, OrderID: 1952, OrderDate: `8/23/2022`, ProductID: 177, ProductName: `Samsung Galaxy 22`, UnitPrice: 11460.48, Quantity: 3, ExtendedPrice: 34381.44, Freight: 1140.48, Discontinued: false, Region: `West`, Address: `125 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 90158 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `113 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50104, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1453, CustomerName: `Ben Watson`, CustomerFirstName: `Ben`, CustomerLastName: `Watson`, CustomerAddress: `113 Wall Street, Los Angeles, USA, 50104`, Salesperson: `Mike Black`, OrderID: 1388, OrderDate: `7/12/2022`, ProductID: 142, ProductName: `Samsung Galaxy 22`, UnitPrice: 25460.85, Quantity: 2, ExtendedPrice: 50921.7, Freight: 360.85, Discontinued: false, Region: `West`, Address: `113 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50104 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `176 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90069, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1454, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `176 Market Street, Philadelphia, USA, 90069`, Salesperson: `Max Jefferson`, OrderID: 1197, OrderDate: `9/3/2022`, ProductID: 132, ProductName: `IPhone`, UnitPrice: 5760.67, Quantity: 3, ExtendedPrice: 17282.01, Freight: 1350.67, Discontinued: false, Region: `South East`, Address: `176 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90069 }), + new InvoicesDataItem({ ShipName: `Jefferson Townhouse`, ShipAddress: `142 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50098, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1455, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `142 Market Street, Los Angeles, USA, 50098`, Salesperson: `Nancy Smith`, OrderID: 1808, OrderDate: `3/2/2022`, ProductID: 145, ProductName: `Mac Book Pro`, UnitPrice: 18130.62, Quantity: 3, ExtendedPrice: 54391.86, Freight: 660.62, Discontinued: false, Region: `North East`, Address: `142 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50098 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `184 Main Street`, ShipCity: `New York`, ShipPostalCode: 50125, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1456, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `184 Main Street, New York, USA, 50125`, Salesperson: `Pamela Jackson`, OrderID: 1098, OrderDate: `9/11/2022`, ProductID: 106, ProductName: `Samsung Galaxy 22`, UnitPrice: 29450.81, Quantity: 5, ExtendedPrice: 147254.05, Freight: 820.81, Discontinued: false, Region: `North East`, Address: `184 Main Street`, City: `New York`, Country: `USA`, PostalCode: 50125 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `190 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70130, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1457, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `190 Main Street, Philadelphia, USA, 70130`, Salesperson: `Max Madison`, OrderID: 1942, OrderDate: `9/1/2022`, ProductID: 136, ProductName: `Mac Book Pro`, UnitPrice: 28790.51, Quantity: 3, ExtendedPrice: 86371.53, Freight: 460.51, Discontinued: false, Region: `North East`, Address: `190 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70130 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `121 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70093, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1458, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `121 Main Street, Los Angeles, USA, 70093`, Salesperson: `James Black`, OrderID: 1815, OrderDate: `6/16/2022`, ProductID: 144, ProductName: `Mac Book Pro`, UnitPrice: 9060.8, Quantity: 3, ExtendedPrice: 27182.4, Freight: 1990.8, Discontinued: false, Region: `North East`, Address: `121 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70093 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `111 Main Street`, ShipCity: `Huston`, ShipPostalCode: 50082, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1459, CustomerName: `Nancy Smith`, CustomerFirstName: `Nancy`, CustomerLastName: `Smith`, CustomerAddress: `111 Main Street, Huston, USA, 50082`, Salesperson: `Max Black`, OrderID: 1551, OrderDate: `4/6/2022`, ProductID: 130, ProductName: `Mac Book Pro`, UnitPrice: 29370.56, Quantity: 3, ExtendedPrice: 88111.68, Freight: 1970.56, Discontinued: true, Region: `North East`, Address: `111 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 50082 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `128 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90155, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1460, CustomerName: `Max Jefferson`, CustomerFirstName: `Max`, CustomerLastName: `Jefferson`, CustomerAddress: `128 Market Street, Los Angeles, USA, 90155`, Salesperson: `James Smith`, OrderID: 1660, OrderDate: `6/6/2022`, ProductID: 175, ProductName: `Samsung Galaxy 22`, UnitPrice: 29130.58, Quantity: 2, ExtendedPrice: 58261.16, Freight: 340.58, Discontinued: false, Region: `West`, Address: `128 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90155 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `159 Main Street`, ShipCity: `Huston`, ShipPostalCode: 60166, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1461, CustomerName: `Mike Smith`, CustomerFirstName: `Mike`, CustomerLastName: `Smith`, CustomerAddress: `159 Main Street, Huston, USA, 60166`, Salesperson: `Mike Black`, OrderID: 1860, OrderDate: `5/20/2022`, ProductID: 197, ProductName: `Samsung Galaxy 22`, UnitPrice: 18630.66, Quantity: 4, ExtendedPrice: 74522.64, Freight: 1540.66, Discontinued: false, Region: `South East`, Address: `159 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 60166 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `115 Market Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60171, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1462, CustomerName: `Nancy Jefferson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jefferson`, CustomerAddress: `115 Market Street, Los Angeles, USA, 60171`, Salesperson: `Mike Jackson`, OrderID: 1312, OrderDate: `9/12/2022`, ProductID: 182, ProductName: `Samsung Note`, UnitPrice: 19120.8, Quantity: 3, ExtendedPrice: 57362.4, Freight: 470.8, Discontinued: false, Region: `North East`, Address: `115 Market Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60171 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `184 Main Street`, ShipCity: `New York`, ShipPostalCode: 80169, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1463, CustomerName: `Nancy Watson`, CustomerFirstName: `Nancy`, CustomerLastName: `Watson`, CustomerAddress: `184 Main Street, New York, USA, 80169`, Salesperson: `Nancy Madison`, OrderID: 1738, OrderDate: `1/7/2022`, ProductID: 161, ProductName: `Mac Book Air`, UnitPrice: 9160.8, Quantity: 2, ExtendedPrice: 18321.6, Freight: 1850.8, Discontinued: false, Region: `West`, Address: `184 Main Street`, City: `New York`, Country: `USA`, PostalCode: 80169 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `147 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60068, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1464, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `147 Main Street, Miami, USA, 60068`, Salesperson: `Nancy Madison`, OrderID: 1981, OrderDate: `5/23/2022`, ProductID: 110, ProductName: `Samsung Note`, UnitPrice: 19100.54, Quantity: 5, ExtendedPrice: 95502.7, Freight: 1720.54, Discontinued: false, Region: `North East`, Address: `147 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60068 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `143 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 80182, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1465, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `143 Wall Street, Huston, USA, 80182`, Salesperson: `Anna Watson`, OrderID: 1067, OrderDate: `12/19/2022`, ProductID: 103, ProductName: `Samsung Note`, UnitPrice: 28900.7, Quantity: 3, ExtendedPrice: 86702.1, Freight: 770.7, Discontinued: false, Region: `North East`, Address: `143 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 80182 }), + new InvoicesDataItem({ ShipName: `Watson Estate`, ShipAddress: `170 Main Street`, ShipCity: `New York`, ShipPostalCode: 60155, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1466, CustomerName: `Max Watson`, CustomerFirstName: `Max`, CustomerLastName: `Watson`, CustomerAddress: `170 Main Street, New York, USA, 60155`, Salesperson: `James Jackson`, OrderID: 1746, OrderDate: `9/2/2022`, ProductID: 148, ProductName: `IPad`, UnitPrice: 25390.4, Quantity: 5, ExtendedPrice: 126952, Freight: 550.4, Discontinued: false, Region: `South East`, Address: `170 Main Street`, City: `New York`, Country: `USA`, PostalCode: 60155 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `111 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60079, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1467, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `111 Wall Street, Philadelphia, USA, 60079`, Salesperson: `Nancy Jefferson`, OrderID: 1334, OrderDate: `5/23/2022`, ProductID: 129, ProductName: `Mac Book Air`, UnitPrice: 14520.65, Quantity: 2, ExtendedPrice: 29041.3, Freight: 1250.65, Discontinued: false, Region: `West`, Address: `111 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60079 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `153 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 90056, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1468, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `153 Wall Street, Huston, USA, 90056`, Salesperson: `Anna Jackson`, OrderID: 1230, OrderDate: `4/15/2022`, ProductID: 128, ProductName: `IPhone`, UnitPrice: 14930.82, Quantity: 5, ExtendedPrice: 74654.1, Freight: 1470.82, Discontinued: false, Region: `North East`, Address: `153 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 90056 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `143 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50070, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1469, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `143 Main Street, Philadelphia, USA, 50070`, Salesperson: `Nancy Madison`, OrderID: 1761, OrderDate: `1/23/2022`, ProductID: 136, ProductName: `IPad`, UnitPrice: 10810.43, Quantity: 4, ExtendedPrice: 43241.72, Freight: 1910.43, Discontinued: true, Region: `South East`, Address: `143 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50070 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `174 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 80126, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1470, CustomerName: `Pamela Black`, CustomerFirstName: `Pamela`, CustomerLastName: `Black`, CustomerAddress: `174 Market Street, Philadelphia, USA, 80126`, Salesperson: `Martin Madison`, OrderID: 1217, OrderDate: `7/7/2022`, ProductID: 170, ProductName: `IPhone`, UnitPrice: 16660.27, Quantity: 4, ExtendedPrice: 66641.08, Freight: 790.27, Discontinued: false, Region: `North East`, Address: `174 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 80126 }), + new InvoicesDataItem({ ShipName: `Smith Home`, ShipAddress: `189 Wall Street`, ShipCity: `Los Angeles`, ShipPostalCode: 60161, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1471, CustomerName: `Max Smith`, CustomerFirstName: `Max`, CustomerLastName: `Smith`, CustomerAddress: `189 Wall Street, Los Angeles, USA, 60161`, Salesperson: `Max Madison`, OrderID: 1882, OrderDate: `11/5/2022`, ProductID: 141, ProductName: `Mac Book Air`, UnitPrice: 18210.39, Quantity: 3, ExtendedPrice: 54631.17, Freight: 990.39, Discontinued: false, Region: `South East`, Address: `189 Wall Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 60161 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `193 Market Street`, ShipCity: `Huston`, ShipPostalCode: 50163, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1472, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `193 Market Street, Huston, USA, 50163`, Salesperson: `Mike Black`, OrderID: 1855, OrderDate: `5/3/2022`, ProductID: 188, ProductName: `Samsung Note`, UnitPrice: 9860.59, Quantity: 5, ExtendedPrice: 49302.95, Freight: 1610.59, Discontinued: false, Region: `South East`, Address: `193 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 50163 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `128 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60162, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1473, CustomerName: `Max Jackson`, CustomerFirstName: `Max`, CustomerLastName: `Jackson`, CustomerAddress: `128 Main Street, Miami, USA, 60162`, Salesperson: `Nancy Black`, OrderID: 1087, OrderDate: `4/5/2022`, ProductID: 166, ProductName: `Mac Book Air`, UnitPrice: 12090.33, Quantity: 4, ExtendedPrice: 48361.32, Freight: 1020.33, Discontinued: false, Region: `West`, Address: `128 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60162 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `179 Wall Street`, ShipCity: `New York`, ShipPostalCode: 50104, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1474, CustomerName: `Ben Jackson`, CustomerFirstName: `Ben`, CustomerLastName: `Jackson`, CustomerAddress: `179 Wall Street, New York, USA, 50104`, Salesperson: `Martin Black`, OrderID: 1121, OrderDate: `12/2/2022`, ProductID: 169, ProductName: `IPad`, UnitPrice: 18020.22, Quantity: 4, ExtendedPrice: 72080.88, Freight: 830.22, Discontinued: false, Region: `West`, Address: `179 Wall Street`, City: `New York`, Country: `USA`, PostalCode: 50104 }), + new InvoicesDataItem({ ShipName: `Jackson Townhouse`, ShipAddress: `168 Market Street`, ShipCity: `Huston`, ShipPostalCode: 60117, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1475, CustomerName: `Martin Jackson`, CustomerFirstName: `Martin`, CustomerLastName: `Jackson`, CustomerAddress: `168 Market Street, Huston, USA, 60117`, Salesperson: `James Madison`, OrderID: 1965, OrderDate: `10/17/2022`, ProductID: 166, ProductName: `Mac Book Pro`, UnitPrice: 6770.39, Quantity: 5, ExtendedPrice: 33851.95, Freight: 240.39, Discontinued: false, Region: `West`, Address: `168 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 60117 }), + new InvoicesDataItem({ ShipName: `Black Market`, ShipAddress: `195 Wall Street`, ShipCity: `Huston`, ShipPostalCode: 50103, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1476, CustomerName: `Mike Black`, CustomerFirstName: `Mike`, CustomerLastName: `Black`, CustomerAddress: `195 Wall Street, Huston, USA, 50103`, Salesperson: `Ben Jackson`, OrderID: 1241, OrderDate: `2/3/2022`, ProductID: 159, ProductName: `Samsung Note`, UnitPrice: 14250.8, Quantity: 5, ExtendedPrice: 71254, Freight: 1870.8, Discontinued: false, Region: `North East`, Address: `195 Wall Street`, City: `Huston`, Country: `USA`, PostalCode: 50103 }), + new InvoicesDataItem({ ShipName: `Jefferson Market`, ShipAddress: `192 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 70069, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1477, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `192 Main Street, Los Angeles, USA, 70069`, Salesperson: `Pamela Watson`, OrderID: 1440, OrderDate: `6/4/2022`, ProductID: 191, ProductName: `Samsung Galaxy 22`, UnitPrice: 23000.87, Quantity: 3, ExtendedPrice: 69002.61, Freight: 1680.87, Discontinued: false, Region: `North East`, Address: `192 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 70069 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `139 Wall Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50143, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `United Package`, CustomerID: 1478, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `139 Wall Street, Philadelphia, USA, 50143`, Salesperson: `Nancy Madison`, OrderID: 1507, OrderDate: `10/10/2022`, ProductID: 176, ProductName: `Mac Book Air`, UnitPrice: 25490.8, Quantity: 3, ExtendedPrice: 76472.4, Freight: 830.8, Discontinued: false, Region: `North East`, Address: `139 Wall Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50143 }), + new InvoicesDataItem({ ShipName: `Madison Estate`, ShipAddress: `131 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 80108, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Federal Shipping`, CustomerID: 1479, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `131 Wall Street, Miami, USA, 80108`, Salesperson: `Ben Jefferson`, OrderID: 1702, OrderDate: `10/16/2022`, ProductID: 174, ProductName: `Mac Book Pro`, UnitPrice: 28620.58, Quantity: 4, ExtendedPrice: 114482.32, Freight: 950.58, Discontinued: true, Region: `South East`, Address: `131 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 80108 }), + new InvoicesDataItem({ ShipName: `Smith Estate`, ShipAddress: `127 Market Street`, ShipCity: `Huston`, ShipPostalCode: 90097, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1480, CustomerName: `James Smith`, CustomerFirstName: `James`, CustomerLastName: `Smith`, CustomerAddress: `127 Market Street, Huston, USA, 90097`, Salesperson: `Pamela Black`, OrderID: 1875, OrderDate: `7/24/2022`, ProductID: 164, ProductName: `Mac Book Air`, UnitPrice: 6750.85, Quantity: 2, ExtendedPrice: 13501.7, Freight: 1160.85, Discontinued: false, Region: `North East`, Address: `127 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 90097 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `190 Market Street`, ShipCity: `New York`, ShipPostalCode: 70142, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1481, CustomerName: `Pamela Madison`, CustomerFirstName: `Pamela`, CustomerLastName: `Madison`, CustomerAddress: `190 Market Street, New York, USA, 70142`, Salesperson: `Pamela Smith`, OrderID: 1373, OrderDate: `5/19/2022`, ProductID: 108, ProductName: `Samsung Galaxy 22`, UnitPrice: 17230.33, Quantity: 3, ExtendedPrice: 51690.99, Freight: 1270.33, Discontinued: false, Region: `West`, Address: `190 Market Street`, City: `New York`, Country: `USA`, PostalCode: 70142 }), + new InvoicesDataItem({ ShipName: `Jackson Market`, ShipAddress: `179 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 90146, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1482, CustomerName: `Nancy Jackson`, CustomerFirstName: `Nancy`, CustomerLastName: `Jackson`, CustomerAddress: `179 Main Street, Philadelphia, USA, 90146`, Salesperson: `James Jefferson`, OrderID: 1452, OrderDate: `5/16/2022`, ProductID: 170, ProductName: `Mac Book Air`, UnitPrice: 8320.5, Quantity: 4, ExtendedPrice: 33282, Freight: 510.5, Discontinued: false, Region: `North East`, Address: `179 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 90146 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `183 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 90165, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1483, CustomerName: `Anna Black`, CustomerFirstName: `Anna`, CustomerLastName: `Black`, CustomerAddress: `183 Main Street, Los Angeles, USA, 90165`, Salesperson: `Max Watson`, OrderID: 1835, OrderDate: `9/8/2022`, ProductID: 198, ProductName: `Samsung Note`, UnitPrice: 13800.6, Quantity: 3, ExtendedPrice: 41401.8, Freight: 700.6, Discontinued: false, Region: `West`, Address: `183 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 90165 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `108 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 50151, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `Speedy Express`, CustomerID: 1484, CustomerName: `Max Black`, CustomerFirstName: `Max`, CustomerLastName: `Black`, CustomerAddress: `108 Main Street, Philadelphia, USA, 50151`, Salesperson: `Mike Jefferson`, OrderID: 1448, OrderDate: `11/16/2022`, ProductID: 103, ProductName: `Samsung Note`, UnitPrice: 21840.84, Quantity: 5, ExtendedPrice: 109204.2, Freight: 1500.84, Discontinued: false, Region: `South East`, Address: `108 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 50151 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `150 Market Street`, ShipCity: `New York`, ShipPostalCode: 80053, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1485, CustomerName: `James Jefferson`, CustomerFirstName: `James`, CustomerLastName: `Jefferson`, CustomerAddress: `150 Market Street, New York, USA, 80053`, Salesperson: `Anna Black`, OrderID: 1160, OrderDate: `6/7/2022`, ProductID: 156, ProductName: `IPhone`, UnitPrice: 24480.65, Quantity: 2, ExtendedPrice: 48961.3, Freight: 860.65, Discontinued: false, Region: `West`, Address: `150 Market Street`, City: `New York`, Country: `USA`, PostalCode: 80053 }), + new InvoicesDataItem({ ShipName: `Jefferson Estate`, ShipAddress: `121 Wall Street`, ShipCity: `Miami`, ShipPostalCode: 50087, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1486, CustomerName: `Mike Jefferson`, CustomerFirstName: `Mike`, CustomerLastName: `Jefferson`, CustomerAddress: `121 Wall Street, Miami, USA, 50087`, Salesperson: `Anna Jackson`, OrderID: 1277, OrderDate: `8/16/2022`, ProductID: 108, ProductName: `Mac Book Air`, UnitPrice: 27370.31, Quantity: 2, ExtendedPrice: 54740.62, Freight: 350.31, Discontinued: false, Region: `North East`, Address: `121 Wall Street`, City: `Miami`, Country: `USA`, PostalCode: 50087 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `187 Market Street`, ShipCity: `Miami`, ShipPostalCode: 90094, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `United Package`, CustomerID: 1487, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `187 Market Street, Miami, USA, 90094`, Salesperson: `Pamela Jefferson`, OrderID: 1895, OrderDate: `7/18/2022`, ProductID: 138, ProductName: `IPad`, UnitPrice: 15270.6, Quantity: 3, ExtendedPrice: 45811.8, Freight: 1920.6, Discontinued: false, Region: `West`, Address: `187 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 90094 }), + new InvoicesDataItem({ ShipName: `Watson Market`, ShipAddress: `142 Main Street`, ShipCity: `Los Angeles`, ShipPostalCode: 50160, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1488, CustomerName: `Pamela Watson`, CustomerFirstName: `Pamela`, CustomerLastName: `Watson`, CustomerAddress: `142 Main Street, Los Angeles, USA, 50160`, Salesperson: `Max Smith`, OrderID: 1559, OrderDate: `11/2/2022`, ProductID: 129, ProductName: `Samsung Note`, UnitPrice: 19940.22, Quantity: 5, ExtendedPrice: 99701.1, Freight: 540.22, Discontinued: false, Region: `West`, Address: `142 Main Street`, City: `Los Angeles`, Country: `USA`, PostalCode: 50160 }), + new InvoicesDataItem({ ShipName: `Black Townhouse`, ShipAddress: `190 Market Street`, ShipCity: `Miami`, ShipPostalCode: 60164, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1489, CustomerName: `James Black`, CustomerFirstName: `James`, CustomerLastName: `Black`, CustomerAddress: `190 Market Street, Miami, USA, 60164`, Salesperson: `Nancy Jefferson`, OrderID: 1144, OrderDate: `5/7/2022`, ProductID: 169, ProductName: `Samsung Galaxy 22`, UnitPrice: 29010.82, Quantity: 4, ExtendedPrice: 116043.28, Freight: 1870.82, Discontinued: true, Region: `North East`, Address: `190 Market Street`, City: `Miami`, Country: `USA`, PostalCode: 60164 }), + new InvoicesDataItem({ ShipName: `Madison Market`, ShipAddress: `180 Main Street`, ShipCity: `Philadelphia`, ShipPostalCode: 70181, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1490, CustomerName: `Ben Madison`, CustomerFirstName: `Ben`, CustomerLastName: `Madison`, CustomerAddress: `180 Main Street, Philadelphia, USA, 70181`, Salesperson: `Ben Black`, OrderID: 1396, OrderDate: `2/24/2022`, ProductID: 137, ProductName: `IPhone`, UnitPrice: 15420.8, Quantity: 4, ExtendedPrice: 61683.2, Freight: 1870.8, Discontinued: false, Region: `West`, Address: `180 Main Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 70181 }), + new InvoicesDataItem({ ShipName: `Watson Home`, ShipAddress: `152 Market Street`, ShipCity: `Philadelphia`, ShipPostalCode: 60139, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1491, CustomerName: `Anna Watson`, CustomerFirstName: `Anna`, CustomerLastName: `Watson`, CustomerAddress: `152 Market Street, Philadelphia, USA, 60139`, Salesperson: `Mike Madison`, OrderID: 1733, OrderDate: `9/23/2022`, ProductID: 117, ProductName: `Mac Book Pro`, UnitPrice: 26430.79, Quantity: 5, ExtendedPrice: 132153.95, Freight: 270.79, Discontinued: false, Region: `North East`, Address: `152 Market Street`, City: `Philadelphia`, Country: `USA`, PostalCode: 60139 }), + new InvoicesDataItem({ ShipName: `Black Home`, ShipAddress: `176 Main Street`, ShipCity: `Miami`, ShipPostalCode: 60072, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1492, CustomerName: `Nancy Black`, CustomerFirstName: `Nancy`, CustomerLastName: `Black`, CustomerAddress: `176 Main Street, Miami, USA, 60072`, Salesperson: `Mike Black`, OrderID: 1473, OrderDate: `6/23/2022`, ProductID: 175, ProductName: `Samsung Note`, UnitPrice: 18440.43, Quantity: 4, ExtendedPrice: 73761.72, Freight: 1770.43, Discontinued: false, Region: `West`, Address: `176 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 60072 }), + new InvoicesDataItem({ ShipName: `Madison Home`, ShipAddress: `120 Main Street`, ShipCity: `Miami`, ShipPostalCode: 80161, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1493, CustomerName: `Martin Madison`, CustomerFirstName: `Martin`, CustomerLastName: `Madison`, CustomerAddress: `120 Main Street, Miami, USA, 80161`, Salesperson: `Ben Watson`, OrderID: 1674, OrderDate: `5/1/2022`, ProductID: 175, ProductName: `Samsung Galaxy 22`, UnitPrice: 23490.67, Quantity: 3, ExtendedPrice: 70472.01, Freight: 820.67, Discontinued: false, Region: `West`, Address: `120 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 80161 }), + new InvoicesDataItem({ ShipName: `Black Estate`, ShipAddress: `127 Main Street`, ShipCity: `Miami`, ShipPostalCode: 90183, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Federal Shipping`, CustomerID: 1494, CustomerName: `Ben Black`, CustomerFirstName: `Ben`, CustomerLastName: `Black`, CustomerAddress: `127 Main Street, Miami, USA, 90183`, Salesperson: `Pamela Smith`, OrderID: 1279, OrderDate: `2/9/2022`, ProductID: 108, ProductName: `Samsung Note`, UnitPrice: 7560.83, Quantity: 4, ExtendedPrice: 30243.32, Freight: 470.83, Discontinued: false, Region: `West`, Address: `127 Main Street`, City: `Miami`, Country: `USA`, PostalCode: 90183 }), + new InvoicesDataItem({ ShipName: `Jackson Estate`, ShipAddress: `129 Market Street`, ShipCity: `New York`, ShipPostalCode: 50067, ShipCountry: `USA`, ShipRegion: `South East`, ShipperName: `United Package`, CustomerID: 1495, CustomerName: `Pamela Jackson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jackson`, CustomerAddress: `129 Market Street, New York, USA, 50067`, Salesperson: `Nancy Jackson`, OrderID: 1502, OrderDate: `9/25/2022`, ProductID: 175, ProductName: `Samsung Note`, UnitPrice: 24020.51, Quantity: 4, ExtendedPrice: 96082.04, Freight: 1320.51, Discontinued: false, Region: `South East`, Address: `129 Market Street`, City: `New York`, Country: `USA`, PostalCode: 50067 }), + new InvoicesDataItem({ ShipName: `Madison Townhouse`, ShipAddress: `118 Market Street`, ShipCity: `New York`, ShipPostalCode: 70088, ShipCountry: `USA`, ShipRegion: `West`, ShipperName: `Speedy Express`, CustomerID: 1496, CustomerName: `Mike Madison`, CustomerFirstName: `Mike`, CustomerLastName: `Madison`, CustomerAddress: `118 Market Street, New York, USA, 70088`, Salesperson: `Anna Watson`, OrderID: 1672, OrderDate: `7/8/2022`, ProductID: 178, ProductName: `Mac Book Air`, UnitPrice: 9150.21, Quantity: 2, ExtendedPrice: 18300.42, Freight: 470.21, Discontinued: false, Region: `West`, Address: `118 Market Street`, City: `New York`, Country: `USA`, PostalCode: 70088 }), + new InvoicesDataItem({ ShipName: `Watson Townhouse`, ShipAddress: `146 Main Street`, ShipCity: `Huston`, ShipPostalCode: 60135, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Speedy Express`, CustomerID: 1497, CustomerName: `Mike Watson`, CustomerFirstName: `Mike`, CustomerLastName: `Watson`, CustomerAddress: `146 Main Street, Huston, USA, 60135`, Salesperson: `Anna Black`, OrderID: 1449, OrderDate: `4/4/2022`, ProductID: 194, ProductName: `IPhone`, UnitPrice: 19390.48, Quantity: 4, ExtendedPrice: 77561.92, Freight: 1350.48, Discontinued: false, Region: `North East`, Address: `146 Main Street`, City: `Huston`, Country: `USA`, PostalCode: 60135 }), + new InvoicesDataItem({ ShipName: `Jefferson Home`, ShipAddress: `146 Market Street`, ShipCity: `Huston`, ShipPostalCode: 80195, ShipCountry: `USA`, ShipRegion: `North East`, ShipperName: `Federal Shipping`, CustomerID: 1498, CustomerName: `Pamela Jefferson`, CustomerFirstName: `Pamela`, CustomerLastName: `Jefferson`, CustomerAddress: `146 Market Street, Huston, USA, 80195`, Salesperson: `Ben Black`, OrderID: 1100, OrderDate: `7/1/2022`, ProductID: 103, ProductName: `IPhone`, UnitPrice: 12430.89, Quantity: 3, ExtendedPrice: 37292.67, Freight: 1060.89, Discontinued: false, Region: `North East`, Address: `146 Market Street`, City: `Huston`, Country: `USA`, PostalCode: 80195 }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/grids/grid/cell-merge/src/index.css b/samples/grids/grid/cell-merge/src/index.css new file mode 100644 index 0000000000..544c74b366 --- /dev/null +++ b/samples/grids/grid/cell-merge/src/index.css @@ -0,0 +1,7 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + +.wrapper { + justify-content: space-evenly; + margin: 1rem; +} \ No newline at end of file diff --git a/samples/grids/grid/cell-merge/src/index.tsx b/samples/grids/grid/cell-merge/src/index.tsx new file mode 100644 index 0000000000..c2560025f1 --- /dev/null +++ b/samples/grids/grid/cell-merge/src/index.tsx @@ -0,0 +1,177 @@ +import React, { useRef, useState } from "react"; +import ReactDOM from "react-dom/client"; +import "./index.css"; + +import { IgrSelect, IgrSelectItem } from "igniteui-react"; +import { + GridSelectionMode, + GridCellMergeMode, + IgrGridToolbar, + IgrCellTemplateContext, +} from "igniteui-react-grids"; +import { IgrGrid, IgrColumn } from "igniteui-react-grids"; + +import "igniteui-react-grids/grids/themes/light/bootstrap.css"; +import { InvoicesData } from "./InvoicesData"; + +export default function App() { + const data = new InvoicesData(); + const gridRef = useRef(null); + const selectionMode: GridSelectionMode = "single"; + const [cellMergeMode, setCellMergeMode] = + useState("always"); + const mergeTypes: { name: string; value: GridCellMergeMode }[] = [ + { + name: "Merge always", + value: "always", + }, + { + name: "Merge on sort", + value: "onSort", + }, + ]; + + const formatCurrency = (val: number) => { + return "$" + val.toFixed(2); + }; + + const webGridDiscontinuedCellTemplate = (ctx: IgrCellTemplateContext) => { + if (ctx.cell.value) { + return ( + Continued + ); + } else { + return ( + Discontinued + ); + } + }; + + //const perProjectMergeStrategy = new PerProjectMergeStrategy(); + + return ( + <> +
+
+ + + + setCellMergeMode(e.detail.value as GridCellMergeMode) + } + > + + {mergeTypes.map((type) => ( + + {type.name} + + ))} + + + + + + + + + + + + + + + +
+
+ + ); +} + +// rendering above component in the React DOM +const root = ReactDOM.createRoot(document.getElementById("root")); +root.render(); + +export class PerProjectMergeStrategy { + public comparer(prevRecord: any, record: any, field: string): boolean { + const a = prevRecord[field]; + const b = record[field]; + const projA = prevRecord["ProjectName"]; + const projB = record["ProjectName"]; + return a === b && projA === projB; + } +} diff --git a/samples/grids/grid/cell-merge/src/react-app-env.d.ts b/samples/grids/grid/cell-merge/src/react-app-env.d.ts new file mode 100644 index 0000000000..6431bc5fc6 --- /dev/null +++ b/samples/grids/grid/cell-merge/src/react-app-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/samples/grids/grid/cell-merge/tsconfig.json b/samples/grids/grid/cell-merge/tsconfig.json new file mode 100644 index 0000000000..8c0d146f95 --- /dev/null +++ b/samples/grids/grid/cell-merge/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react-jsx", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/grids/hierarchical-grid/cell-merge/.eslintrc.js b/samples/grids/hierarchical-grid/cell-merge/.eslintrc.js new file mode 100644 index 0000000000..9d283f6407 --- /dev/null +++ b/samples/grids/hierarchical-grid/cell-merge/.eslintrc.js @@ -0,0 +1,76 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-var": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/cell-merge/ReadMe.md b/samples/grids/hierarchical-grid/cell-merge/ReadMe.md new file mode 100644 index 0000000000..2a66601832 --- /dev/null +++ b/samples/grids/hierarchical-grid/cell-merge/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Clipboard Operations feature using [Grid](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/grids/grid/clipboard-operations +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/grids/hierarchical-grid/cell-merge/package.json b/samples/grids/hierarchical-grid/cell-merge/package.json new file mode 100644 index 0000000000..7141bab0b8 --- /dev/null +++ b/samples/grids/hierarchical-grid/cell-merge/package.json @@ -0,0 +1,49 @@ +{ + "name": "example-ignite-ui-react", + "description": "This project provides example of using Ignite UI for React components", + "author": "Infragistics", + "version": "1.4.0", + "license": "", + "homepage": ".", + "private": true, + "scripts": { + "start": "set PORT=4200 && react-scripts --max_old_space_size=10240 start", + "build": "react-scripts --max_old_space_size=10240 build ", + "test": "react-scripts test --env=jsdom", + "eject": "react-scripts eject", + "lint": "eslint ./src/**/*.{ts,tsx}" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "19.3.0-rc.1", + "igniteui-react-core": "^19.0.2-beta.2", + "igniteui-react-datasources": "^19.0.2-beta.2", + "igniteui-react-grids": "19.3.0-rc.1", + "igniteui-react-inputs": "^19.0.2-beta.2", + "igniteui-react-layouts": "^19.0.2-beta.2", + "igniteui-webcomponents": "^6.2.0", + "lit-html": "^3.2.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-scripts": "^5.0.1", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^18.11.7", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "eslint": "^8.33.0", + "eslint-config-react": "^1.1.7", + "eslint-plugin-react": "^7.20.0", + "react-app-rewired": "^2.2.1", + "typescript": "^4.8.4", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/grids/hierarchical-grid/cell-merge/public/index.html b/samples/grids/hierarchical-grid/cell-merge/public/index.html new file mode 100644 index 0000000000..e2d3265576 --- /dev/null +++ b/samples/grids/hierarchical-grid/cell-merge/public/index.html @@ -0,0 +1,11 @@ + + + + Sample | Ignite UI | React | infragistics + + + + +
+ + \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/cell-merge/sandbox.config.json b/samples/grids/hierarchical-grid/cell-merge/sandbox.config.json new file mode 100644 index 0000000000..07f53508eb --- /dev/null +++ b/samples/grids/hierarchical-grid/cell-merge/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/cell-merge/src/MultiColumnsExportData.json b/samples/grids/hierarchical-grid/cell-merge/src/MultiColumnsExportData.json new file mode 100644 index 0000000000..483f76e929 --- /dev/null +++ b/samples/grids/hierarchical-grid/cell-merge/src/MultiColumnsExportData.json @@ -0,0 +1,367 @@ +[ + { + "ID": "ALFKI", + "CompanyName": "Alfreds Futterkiste", + "ContactName": "Maria Anders", + "ContactTitle": "Sales Representative", + "Address": "Obere Str. 57", + "City": "Berlin", + "Region": "Berlin", + "PostalCode": "12209", + "Country": "Germany", + "Phone": "030-0074321", + "Fax": "030-0076545", + "ChildCompanies": [ + { + "ID": "ANATR", + "CompanyName": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", + "ContactTitle": "Owner", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "Region": "México D.F.", + "PostalCode": "05021", + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", + "ChildCompanies": [ + { + "ID": "AROUT", + "CompanyName": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "Region": "London", + "PostalCode": "10000", + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750" + }, + { + "ID": "BERGS", + "CompanyName": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "Region": "Luleå", + "PostalCode": "25000", + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67" + }, + { + "ID": "BLAUS", + "CompanyName": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", + "ContactTitle": "Sales Representative", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "Region": "Mannheim", + "PostalCode": "68306", + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924" + }, + { + "ID": "BLONP", + "CompanyName": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "Region": "Strasbourg", + "PostalCode": "67000", + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32" + }, + { + "ID": "BOLID", + "CompanyName": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", + "ContactTitle": "Owner", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "Region": "Madrid", + "PostalCode": "28023", + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99" + }, + { + "ID": "BONAP", + "CompanyName": "Bon app", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "Region": "Marseille", + "PostalCode": "13008", + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41" + }, + { + "ID": "BOTTM", + "CompanyName": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": "13000", + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745" + }, + { + "ID": "BSBEV", + "CompanyName": "Beverages", + "ContactName": "Victoria Ashworth", + "ContactTitle": "Sales Representative", + "Address": "Fauntleroy Circus", + "City": "London", + "Region": "London", + "PostalCode": "37000", + "Country": "UK", + "Phone": "(171) 555-1212", + "Fax": "011-4988261" + } + ] + }, + { + "ID": "ANTON", + "CompanyName": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "Region": "México D.F.", + "PostalCode": "05023", + "Country": "Mexico", + "Phone": "(5) 555-3932", + "Fax": "011-4988261", + "ChildCompanies": [ + { + "ID": "CACTU", + "CompanyName": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "Region": "Buenos Aires", + "PostalCode": "1010", + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892" + }, + { + "ID": "CENTC", + "CompanyName": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", + "ContactTitle": "Marketing Manager", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "Region": "México D.F.", + "PostalCode": "05022", + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293" + }, + { + "ID": "CHOPS", + "CompanyName": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "Region": "Bern", + "PostalCode": "3012", + "Country": "Switzerland", + "Phone": "0452-076545", + "Fax": "011-4988261" + } + ] + } + ] + }, + { + "ID": "COMMI", + "CompanyName": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": "16000", + "Country": "Brazil", + "Phone": "(11) 555-7647", + "Fax": "089-0877451", + "ChildCompanies": [ + { + "ID": "CONSH", + "CompanyName": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", + "ContactTitle": "Sales Representative", + "Address": "Berkeley Gardens 12 Brewery", + "City": "London", + "Region": "London", + "PostalCode": "23000", + "Country": "UK", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", + "ChildCompanies": [ + { + "ID": "EASTC", + "CompanyName": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "Region": "London", + "PostalCode": "42000", + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373" + }, + { + "ID": "ERNSH", + "CompanyName": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "Region": "Graz", + "PostalCode": "8010", + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426" + } + ] + }, + { + "ID": "DRACD", + "CompanyName": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "Region": "Aachen", + "PostalCode": "52066", + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428" + }, + { + "ID": "DUMON", + "CompanyName": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "Region": "Nantes", + "PostalCode": "44000", + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", + "ChildCompanies": [ + { + "ID": "FAMIA", + "CompanyName": "Familia Arquibaldo", + "ContactName": "Aria Cruz", + "ContactTitle": "Marketing Assistant", + "Address": "Rua Orós, 92", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": "12000", + "Country": "Brazil", + "Phone": "(11) 555-9857", + "Fax": "089-0877451" + } + ] + } + ] + }, + { + "ID": "FISSA", + "CompanyName": "FISSA Fabrica Inter. Salchichas S.A.", + "ContactName": "Diego Roel", + "ContactTitle": "Accounting Manager", + "Address": "C/ Moralzarzal, 86", + "City": "Madrid", + "Region": "Madrid", + "PostalCode": "28034", + "Country": "Spain", + "Phone": "(91) 555 94 44", + "Fax": "(91) 555 55 93", + "ChildCompanies": [ + { + "ID": "FOLIG", + "CompanyName": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Assistant Sales Agent", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "Region": "Lille", + "PostalCode": "59000", + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17" + }, + { + "ID": "FOLKO", + "CompanyName": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "Region": "Bräcke", + "PostalCode": "19000", + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Fax": "089-0877451" + }, + { + "ID": "FRANK", + "CompanyName": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "Region": "München", + "PostalCode": "80805", + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451" + }, + { + "ID": "FRANR", + "CompanyName": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "Region": "Nantes", + "PostalCode": "44000", + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20" + } + ] + }, + { + "ID": "FRANS", + "CompanyName": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "Region": "Torino", + "PostalCode": "10100", + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261" + } +] diff --git a/samples/grids/hierarchical-grid/cell-merge/src/index.css b/samples/grids/hierarchical-grid/cell-merge/src/index.css new file mode 100644 index 0000000000..544c74b366 --- /dev/null +++ b/samples/grids/hierarchical-grid/cell-merge/src/index.css @@ -0,0 +1,7 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + +.wrapper { + justify-content: space-evenly; + margin: 1rem; +} \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/cell-merge/src/index.tsx b/samples/grids/hierarchical-grid/cell-merge/src/index.tsx new file mode 100644 index 0000000000..9a384082ff --- /dev/null +++ b/samples/grids/hierarchical-grid/cell-merge/src/index.tsx @@ -0,0 +1,158 @@ +import React, { useState } from "react"; +import ReactDOM from "react-dom/client"; +import "./index.css"; + +import { IgrSelect, IgrSelectItem } from "igniteui-react"; +import { + GridCellMergeMode, + IgrGridToolbar, + IgrHierarchicalGrid, + IgrRowIsland, + SortingDirection, + IgrSortingExpression, +} from "igniteui-react-grids"; +import { IgrColumn } from "igniteui-react-grids"; + +import "igniteui-react-grids/grids/themes/light/bootstrap.css"; +import MultiColumnsExportData from "./MultiColumnsExportData.json"; + +export default function App() { + const localData = MultiColumnsExportData; + const [cellMergeMode, setCellMergeMode] = + useState("always"); + const [cellMergeModeRowIsland, setCellMergeModeRowIsland] = + useState("always"); + const mergeTypes: { name: string; value: GridCellMergeMode }[] = [ + { + name: "Merge always", + value: "always", + }, + { + name: "Merge on sort", + value: "onSort", + }, + ]; + const sortExpr: IgrSortingExpression[] = [ + { + fieldName: "ContactTitle", + dir: SortingDirection.Asc, + }, + ]; + + return ( + <> +
+
+ + + + setCellMergeMode(e.detail.value as GridCellMergeMode) + } + > + + {mergeTypes.map((type) => ( + + {type.name} + + ))} + + + + setCellMergeModeRowIsland(e.detail.value as GridCellMergeMode) + } + > + + {mergeTypes.map((type) => ( + + {type.name} + + ))} + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + ); +} + +// rendering above component in the React DOM +const root = ReactDOM.createRoot(document.getElementById("root")); +root.render(); diff --git a/samples/grids/hierarchical-grid/cell-merge/src/react-app-env.d.ts b/samples/grids/hierarchical-grid/cell-merge/src/react-app-env.d.ts new file mode 100644 index 0000000000..6431bc5fc6 --- /dev/null +++ b/samples/grids/hierarchical-grid/cell-merge/src/react-app-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/samples/grids/hierarchical-grid/cell-merge/tsconfig.json b/samples/grids/hierarchical-grid/cell-merge/tsconfig.json new file mode 100644 index 0000000000..8c0d146f95 --- /dev/null +++ b/samples/grids/hierarchical-grid/cell-merge/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react-jsx", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/grids/tree-grid/cell-merge/.eslintrc.js b/samples/grids/tree-grid/cell-merge/.eslintrc.js new file mode 100644 index 0000000000..9d283f6407 --- /dev/null +++ b/samples/grids/tree-grid/cell-merge/.eslintrc.js @@ -0,0 +1,76 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-var": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/grids/tree-grid/cell-merge/ReadMe.md b/samples/grids/tree-grid/cell-merge/ReadMe.md new file mode 100644 index 0000000000..2a66601832 --- /dev/null +++ b/samples/grids/tree-grid/cell-merge/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Clipboard Operations feature using [Grid](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/grids/grid/clipboard-operations +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/grids/tree-grid/cell-merge/package.json b/samples/grids/tree-grid/cell-merge/package.json new file mode 100644 index 0000000000..7141bab0b8 --- /dev/null +++ b/samples/grids/tree-grid/cell-merge/package.json @@ -0,0 +1,49 @@ +{ + "name": "example-ignite-ui-react", + "description": "This project provides example of using Ignite UI for React components", + "author": "Infragistics", + "version": "1.4.0", + "license": "", + "homepage": ".", + "private": true, + "scripts": { + "start": "set PORT=4200 && react-scripts --max_old_space_size=10240 start", + "build": "react-scripts --max_old_space_size=10240 build ", + "test": "react-scripts test --env=jsdom", + "eject": "react-scripts eject", + "lint": "eslint ./src/**/*.{ts,tsx}" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "19.3.0-rc.1", + "igniteui-react-core": "^19.0.2-beta.2", + "igniteui-react-datasources": "^19.0.2-beta.2", + "igniteui-react-grids": "19.3.0-rc.1", + "igniteui-react-inputs": "^19.0.2-beta.2", + "igniteui-react-layouts": "^19.0.2-beta.2", + "igniteui-webcomponents": "^6.2.0", + "lit-html": "^3.2.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-scripts": "^5.0.1", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^18.11.7", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "eslint": "^8.33.0", + "eslint-config-react": "^1.1.7", + "eslint-plugin-react": "^7.20.0", + "react-app-rewired": "^2.2.1", + "typescript": "^4.8.4", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/grids/tree-grid/cell-merge/public/index.html b/samples/grids/tree-grid/cell-merge/public/index.html new file mode 100644 index 0000000000..e2d3265576 --- /dev/null +++ b/samples/grids/tree-grid/cell-merge/public/index.html @@ -0,0 +1,11 @@ + + + + Sample | Ignite UI | React | infragistics + + + + +
+ + \ No newline at end of file diff --git a/samples/grids/tree-grid/cell-merge/sandbox.config.json b/samples/grids/tree-grid/cell-merge/sandbox.config.json new file mode 100644 index 0000000000..07f53508eb --- /dev/null +++ b/samples/grids/tree-grid/cell-merge/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/grids/tree-grid/cell-merge/src/MultiColumnsExportData.json b/samples/grids/tree-grid/cell-merge/src/MultiColumnsExportData.json new file mode 100644 index 0000000000..483f76e929 --- /dev/null +++ b/samples/grids/tree-grid/cell-merge/src/MultiColumnsExportData.json @@ -0,0 +1,367 @@ +[ + { + "ID": "ALFKI", + "CompanyName": "Alfreds Futterkiste", + "ContactName": "Maria Anders", + "ContactTitle": "Sales Representative", + "Address": "Obere Str. 57", + "City": "Berlin", + "Region": "Berlin", + "PostalCode": "12209", + "Country": "Germany", + "Phone": "030-0074321", + "Fax": "030-0076545", + "ChildCompanies": [ + { + "ID": "ANATR", + "CompanyName": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", + "ContactTitle": "Owner", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "Region": "México D.F.", + "PostalCode": "05021", + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", + "ChildCompanies": [ + { + "ID": "AROUT", + "CompanyName": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "Region": "London", + "PostalCode": "10000", + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750" + }, + { + "ID": "BERGS", + "CompanyName": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "Region": "Luleå", + "PostalCode": "25000", + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67" + }, + { + "ID": "BLAUS", + "CompanyName": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", + "ContactTitle": "Sales Representative", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "Region": "Mannheim", + "PostalCode": "68306", + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924" + }, + { + "ID": "BLONP", + "CompanyName": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "Region": "Strasbourg", + "PostalCode": "67000", + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32" + }, + { + "ID": "BOLID", + "CompanyName": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", + "ContactTitle": "Owner", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "Region": "Madrid", + "PostalCode": "28023", + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99" + }, + { + "ID": "BONAP", + "CompanyName": "Bon app", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "Region": "Marseille", + "PostalCode": "13008", + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41" + }, + { + "ID": "BOTTM", + "CompanyName": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": "13000", + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745" + }, + { + "ID": "BSBEV", + "CompanyName": "Beverages", + "ContactName": "Victoria Ashworth", + "ContactTitle": "Sales Representative", + "Address": "Fauntleroy Circus", + "City": "London", + "Region": "London", + "PostalCode": "37000", + "Country": "UK", + "Phone": "(171) 555-1212", + "Fax": "011-4988261" + } + ] + }, + { + "ID": "ANTON", + "CompanyName": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "Region": "México D.F.", + "PostalCode": "05023", + "Country": "Mexico", + "Phone": "(5) 555-3932", + "Fax": "011-4988261", + "ChildCompanies": [ + { + "ID": "CACTU", + "CompanyName": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "Region": "Buenos Aires", + "PostalCode": "1010", + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892" + }, + { + "ID": "CENTC", + "CompanyName": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", + "ContactTitle": "Marketing Manager", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "Region": "México D.F.", + "PostalCode": "05022", + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293" + }, + { + "ID": "CHOPS", + "CompanyName": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "Region": "Bern", + "PostalCode": "3012", + "Country": "Switzerland", + "Phone": "0452-076545", + "Fax": "011-4988261" + } + ] + } + ] + }, + { + "ID": "COMMI", + "CompanyName": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": "16000", + "Country": "Brazil", + "Phone": "(11) 555-7647", + "Fax": "089-0877451", + "ChildCompanies": [ + { + "ID": "CONSH", + "CompanyName": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", + "ContactTitle": "Sales Representative", + "Address": "Berkeley Gardens 12 Brewery", + "City": "London", + "Region": "London", + "PostalCode": "23000", + "Country": "UK", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", + "ChildCompanies": [ + { + "ID": "EASTC", + "CompanyName": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "Region": "London", + "PostalCode": "42000", + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373" + }, + { + "ID": "ERNSH", + "CompanyName": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "Region": "Graz", + "PostalCode": "8010", + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426" + } + ] + }, + { + "ID": "DRACD", + "CompanyName": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "Region": "Aachen", + "PostalCode": "52066", + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428" + }, + { + "ID": "DUMON", + "CompanyName": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "Region": "Nantes", + "PostalCode": "44000", + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", + "ChildCompanies": [ + { + "ID": "FAMIA", + "CompanyName": "Familia Arquibaldo", + "ContactName": "Aria Cruz", + "ContactTitle": "Marketing Assistant", + "Address": "Rua Orós, 92", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": "12000", + "Country": "Brazil", + "Phone": "(11) 555-9857", + "Fax": "089-0877451" + } + ] + } + ] + }, + { + "ID": "FISSA", + "CompanyName": "FISSA Fabrica Inter. Salchichas S.A.", + "ContactName": "Diego Roel", + "ContactTitle": "Accounting Manager", + "Address": "C/ Moralzarzal, 86", + "City": "Madrid", + "Region": "Madrid", + "PostalCode": "28034", + "Country": "Spain", + "Phone": "(91) 555 94 44", + "Fax": "(91) 555 55 93", + "ChildCompanies": [ + { + "ID": "FOLIG", + "CompanyName": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Assistant Sales Agent", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "Region": "Lille", + "PostalCode": "59000", + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17" + }, + { + "ID": "FOLKO", + "CompanyName": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "Region": "Bräcke", + "PostalCode": "19000", + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Fax": "089-0877451" + }, + { + "ID": "FRANK", + "CompanyName": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "Region": "München", + "PostalCode": "80805", + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451" + }, + { + "ID": "FRANR", + "CompanyName": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "Region": "Nantes", + "PostalCode": "44000", + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20" + } + ] + }, + { + "ID": "FRANS", + "CompanyName": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "Region": "Torino", + "PostalCode": "10100", + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261" + } +] diff --git a/samples/grids/tree-grid/cell-merge/src/index.css b/samples/grids/tree-grid/cell-merge/src/index.css new file mode 100644 index 0000000000..544c74b366 --- /dev/null +++ b/samples/grids/tree-grid/cell-merge/src/index.css @@ -0,0 +1,7 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + +.wrapper { + justify-content: space-evenly; + margin: 1rem; +} \ No newline at end of file diff --git a/samples/grids/tree-grid/cell-merge/src/index.tsx b/samples/grids/tree-grid/cell-merge/src/index.tsx new file mode 100644 index 0000000000..77272f18ca --- /dev/null +++ b/samples/grids/tree-grid/cell-merge/src/index.tsx @@ -0,0 +1,129 @@ +import React, { useState } from "react"; +import ReactDOM from "react-dom/client"; +import "./index.css"; + +import { IgrSelect, IgrSelectItem } from "igniteui-react"; +import { + GridCellMergeMode, + IgrGridToolbar, + SortingDirection, + IgrSortingExpression, + IgrTreeGrid, + IgrGridMergeStrategy +} from "igniteui-react-grids"; +import { IgrColumn } from "igniteui-react-grids"; + +import "igniteui-react-grids/grids/themes/light/bootstrap.css"; +import MultiColumnsExportData from "./MultiColumnsExportData.json"; + +export default function App() { + const data = MultiColumnsExportData; + const childDataKey = "Categories"; + const [cellMergeMode, setCellMergeMode] = + useState("always"); + const mergeTypes: { name: string; value: GridCellMergeMode }[] = [ + { + name: "Merge always", + value: "always", + }, + { + name: "Merge on sort", + value: "onSort", + }, + ]; + const sortExpr: IgrSortingExpression[] = [ + { + fieldName: "Country", + dir: SortingDirection.Asc, + }, + ]; + const mergeStrategies = [ + { + name: "Default Strategy" + value: new IgrDefaultTreeGridMergeStrategy(); + } + ] + + return ( + <> +
+
+ + + setCellMergeMode(e.detail.value)} + > + + {mergeTypes.map((type) => ( + + {type.name} + + ))} + + + setMergeStrategy(e.detail.value)} + onSelectionChanging={strategySelection} + > + + {mergeStrategies.map((type) => ( + + {type.name} + + ))} + + + + + + + + + + + + + +
+
+ + ); +} + +// rendering above component in the React DOM +const root = ReactDOM.createRoot(document.getElementById("root")); +root.render(); diff --git a/samples/grids/tree-grid/cell-merge/src/react-app-env.d.ts b/samples/grids/tree-grid/cell-merge/src/react-app-env.d.ts new file mode 100644 index 0000000000..6431bc5fc6 --- /dev/null +++ b/samples/grids/tree-grid/cell-merge/src/react-app-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/samples/grids/tree-grid/cell-merge/tsconfig.json b/samples/grids/tree-grid/cell-merge/tsconfig.json new file mode 100644 index 0000000000..8c0d146f95 --- /dev/null +++ b/samples/grids/tree-grid/cell-merge/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react-jsx", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} From 684675b09517c9925003f9e14f9759ed04ecf285 Mon Sep 17 00:00:00 2001 From: Ivan Minchev Date: Wed, 22 Oct 2025 13:27:18 +0300 Subject: [PATCH 2/2] feat(cell-merging): add custom cell merging strategy samples --- .../cell-merge-custom-sample/package.json | 4 +- .../cell-merge-custom-sample/src/index.tsx | 231 +++++++++++---- samples/grids/grid/cell-merge.zip | Bin 200559 -> 0 bytes samples/grids/grid/cell-merge/package.json | 4 +- samples/grids/grid/cell-merge/src/index.tsx | 15 +- .../cell-merge-custom-sample/.eslintrc.js | 76 +++++ .../cell-merge-custom-sample/ReadMe.md | 56 ++++ .../cell-merge-custom-sample/package.json | 49 ++++ .../public/index.html | 11 + .../sandbox.config.json | 5 + .../src/MultiColumnsExportData.json | 0 .../cell-merge-custom-sample/src/index.css | 7 + .../cell-merge-custom-sample/src/index.tsx | 154 ++++++++++ .../src/react-app-env.d.ts | 1 + .../cell-merge-custom-sample/tsconfig.json | 44 +++ .../hierarchical-grid/cell-merge/package.json | 4 +- .../cell-merge/src/index.tsx | 6 +- .../cell-merge-custom-sample/.eslintrc.js | 76 +++++ .../cell-merge-custom-sample/ReadMe.md | 56 ++++ .../cell-merge-custom-sample/package.json | 49 ++++ .../public/index.html | 11 + .../sandbox.config.json | 5 + .../src/EmployeesFlatDetails2.ts | 269 ++++++++++++++++++ .../cell-merge-custom-sample/src/index.css | 7 + .../cell-merge-custom-sample/src/index.tsx | 122 ++++++++ .../src/react-app-env.d.ts | 1 + .../cell-merge-custom-sample/tsconfig.json | 44 +++ .../grids/tree-grid/cell-merge/package.json | 4 +- .../cell-merge/src/EmployeesFlatDetails.ts | 50 ++++ .../grids/tree-grid/cell-merge/src/index.tsx | 94 +++--- 30 files changed, 1347 insertions(+), 108 deletions(-) delete mode 100644 samples/grids/grid/cell-merge.zip create mode 100644 samples/grids/hierarchical-grid/cell-merge-custom-sample/.eslintrc.js create mode 100644 samples/grids/hierarchical-grid/cell-merge-custom-sample/ReadMe.md create mode 100644 samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json create mode 100644 samples/grids/hierarchical-grid/cell-merge-custom-sample/public/index.html create mode 100644 samples/grids/hierarchical-grid/cell-merge-custom-sample/sandbox.config.json rename samples/grids/{tree-grid/cell-merge => hierarchical-grid/cell-merge-custom-sample}/src/MultiColumnsExportData.json (100%) create mode 100644 samples/grids/hierarchical-grid/cell-merge-custom-sample/src/index.css create mode 100644 samples/grids/hierarchical-grid/cell-merge-custom-sample/src/index.tsx create mode 100644 samples/grids/hierarchical-grid/cell-merge-custom-sample/src/react-app-env.d.ts create mode 100644 samples/grids/hierarchical-grid/cell-merge-custom-sample/tsconfig.json create mode 100644 samples/grids/tree-grid/cell-merge-custom-sample/.eslintrc.js create mode 100644 samples/grids/tree-grid/cell-merge-custom-sample/ReadMe.md create mode 100644 samples/grids/tree-grid/cell-merge-custom-sample/package.json create mode 100644 samples/grids/tree-grid/cell-merge-custom-sample/public/index.html create mode 100644 samples/grids/tree-grid/cell-merge-custom-sample/sandbox.config.json create mode 100644 samples/grids/tree-grid/cell-merge-custom-sample/src/EmployeesFlatDetails2.ts create mode 100644 samples/grids/tree-grid/cell-merge-custom-sample/src/index.css create mode 100644 samples/grids/tree-grid/cell-merge-custom-sample/src/index.tsx create mode 100644 samples/grids/tree-grid/cell-merge-custom-sample/src/react-app-env.d.ts create mode 100644 samples/grids/tree-grid/cell-merge-custom-sample/tsconfig.json create mode 100644 samples/grids/tree-grid/cell-merge/src/EmployeesFlatDetails.ts diff --git a/samples/grids/grid/cell-merge-custom-sample/package.json b/samples/grids/grid/cell-merge-custom-sample/package.json index 7141bab0b8..0795802186 100644 --- a/samples/grids/grid/cell-merge-custom-sample/package.json +++ b/samples/grids/grid/cell-merge-custom-sample/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "19.3.0-rc.1", + "igniteui-react": "19.3.0-rc.3", "igniteui-react-core": "^19.0.2-beta.2", "igniteui-react-datasources": "^19.0.2-beta.2", - "igniteui-react-grids": "19.3.0-rc.1", + "igniteui-react-grids": "19.3.0-rc.3", "igniteui-react-inputs": "^19.0.2-beta.2", "igniteui-react-layouts": "^19.0.2-beta.2", "igniteui-webcomponents": "^6.2.0", diff --git a/samples/grids/grid/cell-merge-custom-sample/src/index.tsx b/samples/grids/grid/cell-merge-custom-sample/src/index.tsx index 4bd71c47fa..80209dea30 100644 --- a/samples/grids/grid/cell-merge-custom-sample/src/index.tsx +++ b/samples/grids/grid/cell-merge-custom-sample/src/index.tsx @@ -1,63 +1,192 @@ -import React from 'react'; -import ReactDOM from 'react-dom/client'; -import './index.css'; +import React from "react"; +import ReactDOM from "react-dom/client"; +import "./index.css"; -import { IgrGridMergeStrategy } from 'igniteui-react-grids'; -import { IgrGrid, IgrColumn } from 'igniteui-react-grids'; +import { + IgrDefaultMergeStrategy, + IgrGridBaseDirective, + IgrGridMergeStrategy, +} from "igniteui-react-grids"; +import { IgrGrid, IgrColumn } from "igniteui-react-grids"; -import 'igniteui-react-grids/grids/themes/light/bootstrap.css'; +import "igniteui-react-grids/grids/themes/light/bootstrap.css"; export default function App() { - const cellMergeMode = "always"; + const cellMergeMode = "always"; - const data = [ - { ActionID: "1", ProjectName: "IOT Switch Project", ActionName: "Data Import", Type: "Request", Priority: "Low", Status: "New", Created: new Date("2017-03-25"), LastEdit: new Date("2017-05-08") }, - { ActionID: "2", ProjectName: "IOT Switch Project", ActionName: "Reports", Type: "Request", Priority: "Low", Status: "New", Created: new Date("2017-03-14"), LastEdit: new Date("2017-03-15") }, - { ActionID: "4", ProjectName: "IOT Switch Project", ActionName: "Multiple Settings", Type: "Request", Priority: "Low", Status: "Rejected", Created: new Date("2017-04-05"), LastEdit: new Date("2017-04-30") }, - { ActionID: "3", ProjectName: "IOT Switch Project", ActionName: "Data Archiving", Type: "Request", Priority: "Medium", Status: "New", Created: new Date("2017-08-21"), LastEdit: new Date("2017-09-08") }, - { ActionID: "5", ProjectName: "IOT Switch Project", ActionName: "Main Menu: Return Button", Type: "Bug", Priority: "Medium", Status: "Fixed", Created: new Date("2017-06-17"), LastEdit: new Date("2017-07-03") }, - { ActionID: "6", ProjectName: "IOT Switch Project", ActionName: "Auto Turn Off", Type: "Bug", Priority: "Medium", Status: "New", Created: new Date("2017-04-12"), LastEdit: new Date("2017-05-27") }, - { ActionID: "7", ProjectName: "VR Device", ActionName: "Higher DRI", Type: "Request", Priority: "Medium", Status: "New", Created: new Date("2016-08-11"), LastEdit: new Date("2016-08-11") }, - { ActionID: "8", ProjectName: "VR Device", ActionName: "Accessible Power Button", Type: "Request", Priority: "Medium", Status: "New", Created: new Date("2016-07-13"), LastEdit: new Date("2016-07-14") }, - { ActionID: "9", ProjectName: "VR Device", ActionName: "Additional options", Type: "Request", Priority: "High", Status: "Rejected", Created: new Date("2016-09-02"), LastEdit: new Date("2016-09-08") }, - { ActionID: "10", ProjectName: "VR Device", ActionName: "Data Log", Type: "Request", Priority: "High", Status: "New", Created: new Date("2017-03-25"), LastEdit: new Date("2017-05-08") }, - { ActionID: "12", ProjectName: "VR Device", ActionName: "Motion Blur", Type: "Bug", Priority: "High", Status: "New", Created: new Date("2017-03-25"), LastEdit: new Date("2017-05-08") }, - { ActionID: "11", ProjectName: "VR Device", ActionName: "Left Sensors Delay", Type: "Bug", Priority: "High", Status: "Fixed", Created: new Date("2017-03-25"), LastEdit: new Date("2017-05-08") } - ]; + const data = [ + { + ActionID: "1", + ProjectName: "IOT Switch Project", + ActionName: "Data Import", + Type: "Request", + Priority: "Low", + Status: "New", + Created: new Date("2017-03-25"), + LastEdit: new Date("2017-05-08"), + }, + { + ActionID: "2", + ProjectName: "IOT Switch Project", + ActionName: "Reports", + Type: "Request", + Priority: "Low", + Status: "New", + Created: new Date("2017-03-14"), + LastEdit: new Date("2017-03-15"), + }, + { + ActionID: "4", + ProjectName: "IOT Switch Project", + ActionName: "Multiple Settings", + Type: "Request", + Priority: "Low", + Status: "Rejected", + Created: new Date("2017-04-05"), + LastEdit: new Date("2017-04-30"), + }, + { + ActionID: "3", + ProjectName: "IOT Switch Project", + ActionName: "Data Archiving", + Type: "Request", + Priority: "Medium", + Status: "New", + Created: new Date("2017-08-21"), + LastEdit: new Date("2017-09-08"), + }, + { + ActionID: "5", + ProjectName: "IOT Switch Project", + ActionName: "Main Menu: Return Button", + Type: "Bug", + Priority: "Medium", + Status: "Fixed", + Created: new Date("2017-06-17"), + LastEdit: new Date("2017-07-03"), + }, + { + ActionID: "6", + ProjectName: "IOT Switch Project", + ActionName: "Auto Turn Off", + Type: "Bug", + Priority: "Medium", + Status: "New", + Created: new Date("2017-04-12"), + LastEdit: new Date("2017-05-27"), + }, + { + ActionID: "7", + ProjectName: "VR Device", + ActionName: "Higher DRI", + Type: "Request", + Priority: "Medium", + Status: "New", + Created: new Date("2016-08-11"), + LastEdit: new Date("2016-08-11"), + }, + { + ActionID: "8", + ProjectName: "VR Device", + ActionName: "Accessible Power Button", + Type: "Request", + Priority: "Medium", + Status: "New", + Created: new Date("2016-07-13"), + LastEdit: new Date("2016-07-14"), + }, + { + ActionID: "9", + ProjectName: "VR Device", + ActionName: "Additional options", + Type: "Request", + Priority: "High", + Status: "Rejected", + Created: new Date("2016-09-02"), + LastEdit: new Date("2016-09-08"), + }, + { + ActionID: "10", + ProjectName: "VR Device", + ActionName: "Data Log", + Type: "Request", + Priority: "High", + Status: "New", + Created: new Date("2017-03-25"), + LastEdit: new Date("2017-05-08"), + }, + { + ActionID: "12", + ProjectName: "VR Device", + ActionName: "Motion Blur", + Type: "Bug", + Priority: "High", + Status: "New", + Created: new Date("2017-03-25"), + LastEdit: new Date("2017-05-08"), + }, + { + ActionID: "11", + ProjectName: "VR Device", + ActionName: "Left Sensors Delay", + Type: "Bug", + Priority: "High", + Status: "Fixed", + Created: new Date("2017-03-25"), + LastEdit: new Date("2017-05-08"), + }, + ]; - const perProjectMergeStrategy = new PerProjectMergeStrategy(); - - return ( - <> -
-
- - - - - - - - - - - - - - - -
-
- - ); + const perProjectMergeStrategy = + new PerProjectMergeStrategy() as IgrGridMergeStrategy; + + return ( + <> +
+
+ + + + + + + + + +
+
+ + ); } // rendering above component in the React DOM -const root = ReactDOM.createRoot(document.getElementById('root')); -root.render(); +const root = ReactDOM.createRoot(document.getElementById("root")); +root.render(); -export class PerProjectMergeStrategy implements IgrGridMergeStrategy { +export class PerProjectMergeStrategy extends IgrDefaultMergeStrategy { public comparer(prevRecord: any, record: any, field: string): boolean { const a = prevRecord[field]; const b = record[field]; @@ -65,4 +194,4 @@ export class PerProjectMergeStrategy implements IgrGridMergeStrategy { const projB = record["ProjectName"]; return a === b && projA === projB; } -} \ No newline at end of file +} diff --git a/samples/grids/grid/cell-merge.zip b/samples/grids/grid/cell-merge.zip deleted file mode 100644 index c16d05362414e4e8a0ab2b25b0c0373fc7dfc7c2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 200559 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
V`Ol^%B8GEQx`HOTW=RykjSzV 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≦̸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�*<(TnG9>{_lnB)C{FILTV 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

J_gxww_Woqu@ZVh~z+Z@3_jk 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%0ABpw~upnqy-KiX$MR1sgALP@dYpB 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 YlsKDM*?_Unzz2lKfzdUI6PT$O0B+vZi~s-t diff --git a/samples/grids/grid/cell-merge/package.json b/samples/grids/grid/cell-merge/package.json index 7141bab0b8..0795802186 100644 --- a/samples/grids/grid/cell-merge/package.json +++ b/samples/grids/grid/cell-merge/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "19.3.0-rc.1", + "igniteui-react": "19.3.0-rc.3", "igniteui-react-core": "^19.0.2-beta.2", "igniteui-react-datasources": "^19.0.2-beta.2", - "igniteui-react-grids": "19.3.0-rc.1", + "igniteui-react-grids": "19.3.0-rc.3", "igniteui-react-inputs": "^19.0.2-beta.2", "igniteui-react-layouts": "^19.0.2-beta.2", "igniteui-webcomponents": "^6.2.0", diff --git a/samples/grids/grid/cell-merge/src/index.tsx b/samples/grids/grid/cell-merge/src/index.tsx index c2560025f1..8e575b0d76 100644 --- a/samples/grids/grid/cell-merge/src/index.tsx +++ b/samples/grids/grid/cell-merge/src/index.tsx @@ -55,8 +55,6 @@ export default function App() { } }; - //const perProjectMergeStrategy = new PerProjectMergeStrategy(); - return ( <>

@@ -69,12 +67,11 @@ export default function App() { cellMergeMode={cellMergeMode} width="100%" height="570px" - //mergeStrategy={perProjectMergeStrategy} > + onChange={(e: any) => setCellMergeMode(e.detail.value as GridCellMergeMode) } > @@ -165,13 +162,3 @@ export default function App() { // rendering above component in the React DOM const root = ReactDOM.createRoot(document.getElementById("root")); root.render(); - -export class PerProjectMergeStrategy { - public comparer(prevRecord: any, record: any, field: string): boolean { - const a = prevRecord[field]; - const b = record[field]; - const projA = prevRecord["ProjectName"]; - const projB = record["ProjectName"]; - return a === b && projA === projB; - } -} diff --git a/samples/grids/hierarchical-grid/cell-merge-custom-sample/.eslintrc.js b/samples/grids/hierarchical-grid/cell-merge-custom-sample/.eslintrc.js new file mode 100644 index 0000000000..9d283f6407 --- /dev/null +++ b/samples/grids/hierarchical-grid/cell-merge-custom-sample/.eslintrc.js @@ -0,0 +1,76 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-var": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/cell-merge-custom-sample/ReadMe.md b/samples/grids/hierarchical-grid/cell-merge-custom-sample/ReadMe.md new file mode 100644 index 0000000000..2a66601832 --- /dev/null +++ b/samples/grids/hierarchical-grid/cell-merge-custom-sample/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Clipboard Operations feature using [Grid](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/grids/grid/clipboard-operations +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json b/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json new file mode 100644 index 0000000000..0795802186 --- /dev/null +++ b/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json @@ -0,0 +1,49 @@ +{ + "name": "example-ignite-ui-react", + "description": "This project provides example of using Ignite UI for React components", + "author": "Infragistics", + "version": "1.4.0", + "license": "", + "homepage": ".", + "private": true, + "scripts": { + "start": "set PORT=4200 && react-scripts --max_old_space_size=10240 start", + "build": "react-scripts --max_old_space_size=10240 build ", + "test": "react-scripts test --env=jsdom", + "eject": "react-scripts eject", + "lint": "eslint ./src/**/*.{ts,tsx}" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "19.3.0-rc.3", + "igniteui-react-core": "^19.0.2-beta.2", + "igniteui-react-datasources": "^19.0.2-beta.2", + "igniteui-react-grids": "19.3.0-rc.3", + "igniteui-react-inputs": "^19.0.2-beta.2", + "igniteui-react-layouts": "^19.0.2-beta.2", + "igniteui-webcomponents": "^6.2.0", + "lit-html": "^3.2.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-scripts": "^5.0.1", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^18.11.7", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "eslint": "^8.33.0", + "eslint-config-react": "^1.1.7", + "eslint-plugin-react": "^7.20.0", + "react-app-rewired": "^2.2.1", + "typescript": "^4.8.4", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/grids/hierarchical-grid/cell-merge-custom-sample/public/index.html b/samples/grids/hierarchical-grid/cell-merge-custom-sample/public/index.html new file mode 100644 index 0000000000..e2d3265576 --- /dev/null +++ b/samples/grids/hierarchical-grid/cell-merge-custom-sample/public/index.html @@ -0,0 +1,11 @@ + + + + Sample | Ignite UI | React | infragistics + + + + +
+ + \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/cell-merge-custom-sample/sandbox.config.json b/samples/grids/hierarchical-grid/cell-merge-custom-sample/sandbox.config.json new file mode 100644 index 0000000000..07f53508eb --- /dev/null +++ b/samples/grids/hierarchical-grid/cell-merge-custom-sample/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/grids/tree-grid/cell-merge/src/MultiColumnsExportData.json b/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/MultiColumnsExportData.json similarity index 100% rename from samples/grids/tree-grid/cell-merge/src/MultiColumnsExportData.json rename to samples/grids/hierarchical-grid/cell-merge-custom-sample/src/MultiColumnsExportData.json diff --git a/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/index.css b/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/index.css new file mode 100644 index 0000000000..544c74b366 --- /dev/null +++ b/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/index.css @@ -0,0 +1,7 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + +.wrapper { + justify-content: space-evenly; + margin: 1rem; +} \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/index.tsx b/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/index.tsx new file mode 100644 index 0000000000..3dc44b74c4 --- /dev/null +++ b/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/index.tsx @@ -0,0 +1,154 @@ +import React, { useState } from "react"; +import ReactDOM from "react-dom/client"; +import "./index.css"; + +import { + GridCellMergeMode, + IgrHierarchicalGrid, + IgrRowIsland, + SortingDirection, + IgrSortingExpression, + IgrColumn, + IgrDefaultMergeStrategy, + IgrGridMergeStrategy, +} from "igniteui-react-grids"; + +import "igniteui-react-grids/grids/themes/light/bootstrap.css"; +import MultiColumnsExportData from "./MultiColumnsExportData.json"; + +export default function App() { + const [cellMergeMode] = useState("always"); + const sortExpr: IgrSortingExpression[] = [ + { + fieldName: "ContactTitle", + dir: SortingDirection.Asc, + }, + ]; + + const perCountryMergeStrategy = + new PerCountryMergeStrategy() as IgrGridMergeStrategy; + + return ( + <> +
+
+ + + + + + + + + + + + + + + + + + + + + + + +
+
+ + ); +} + +// rendering above component in the React DOM +const root = ReactDOM.createRoot(document.getElementById("root")); +root.render(); + +class PerCountryMergeStrategy extends IgrDefaultMergeStrategy { + // Custom comparer logic: merge only within same country + public comparer(prevRecord: any, record: any, field: string): boolean { + const a = prevRecord[field]; + const b = record[field]; + const countryA = prevRecord["Country"]; + const countryB = record["Country"]; + return a === b && countryA === countryB; + } +} diff --git a/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/react-app-env.d.ts b/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/react-app-env.d.ts new file mode 100644 index 0000000000..6431bc5fc6 --- /dev/null +++ b/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/react-app-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/samples/grids/hierarchical-grid/cell-merge-custom-sample/tsconfig.json b/samples/grids/hierarchical-grid/cell-merge-custom-sample/tsconfig.json new file mode 100644 index 0000000000..8c0d146f95 --- /dev/null +++ b/samples/grids/hierarchical-grid/cell-merge-custom-sample/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react-jsx", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/grids/hierarchical-grid/cell-merge/package.json b/samples/grids/hierarchical-grid/cell-merge/package.json index 7141bab0b8..0795802186 100644 --- a/samples/grids/hierarchical-grid/cell-merge/package.json +++ b/samples/grids/hierarchical-grid/cell-merge/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "19.3.0-rc.1", + "igniteui-react": "19.3.0-rc.3", "igniteui-react-core": "^19.0.2-beta.2", "igniteui-react-datasources": "^19.0.2-beta.2", - "igniteui-react-grids": "19.3.0-rc.1", + "igniteui-react-grids": "19.3.0-rc.3", "igniteui-react-inputs": "^19.0.2-beta.2", "igniteui-react-layouts": "^19.0.2-beta.2", "igniteui-webcomponents": "^6.2.0", diff --git a/samples/grids/hierarchical-grid/cell-merge/src/index.tsx b/samples/grids/hierarchical-grid/cell-merge/src/index.tsx index 9a384082ff..7c0b8ef1fe 100644 --- a/samples/grids/hierarchical-grid/cell-merge/src/index.tsx +++ b/samples/grids/hierarchical-grid/cell-merge/src/index.tsx @@ -10,8 +10,8 @@ import { IgrRowIsland, SortingDirection, IgrSortingExpression, + IgrColumn, } from "igniteui-react-grids"; -import { IgrColumn } from "igniteui-react-grids"; import "igniteui-react-grids/grids/themes/light/bootstrap.css"; import MultiColumnsExportData from "./MultiColumnsExportData.json"; @@ -57,7 +57,7 @@ export default function App() { + onChange={(e: any) => setCellMergeMode(e.detail.value as GridCellMergeMode) } > @@ -71,7 +71,7 @@ export default function App() { + onChange={(e: any) => setCellMergeModeRowIsland(e.detail.value as GridCellMergeMode) } > diff --git a/samples/grids/tree-grid/cell-merge-custom-sample/.eslintrc.js b/samples/grids/tree-grid/cell-merge-custom-sample/.eslintrc.js new file mode 100644 index 0000000000..9d283f6407 --- /dev/null +++ b/samples/grids/tree-grid/cell-merge-custom-sample/.eslintrc.js @@ -0,0 +1,76 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-var": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/grids/tree-grid/cell-merge-custom-sample/ReadMe.md b/samples/grids/tree-grid/cell-merge-custom-sample/ReadMe.md new file mode 100644 index 0000000000..2a66601832 --- /dev/null +++ b/samples/grids/tree-grid/cell-merge-custom-sample/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Clipboard Operations feature using [Grid](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/grids/grid/clipboard-operations +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/grids/tree-grid/cell-merge-custom-sample/package.json b/samples/grids/tree-grid/cell-merge-custom-sample/package.json new file mode 100644 index 0000000000..0795802186 --- /dev/null +++ b/samples/grids/tree-grid/cell-merge-custom-sample/package.json @@ -0,0 +1,49 @@ +{ + "name": "example-ignite-ui-react", + "description": "This project provides example of using Ignite UI for React components", + "author": "Infragistics", + "version": "1.4.0", + "license": "", + "homepage": ".", + "private": true, + "scripts": { + "start": "set PORT=4200 && react-scripts --max_old_space_size=10240 start", + "build": "react-scripts --max_old_space_size=10240 build ", + "test": "react-scripts test --env=jsdom", + "eject": "react-scripts eject", + "lint": "eslint ./src/**/*.{ts,tsx}" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "19.3.0-rc.3", + "igniteui-react-core": "^19.0.2-beta.2", + "igniteui-react-datasources": "^19.0.2-beta.2", + "igniteui-react-grids": "19.3.0-rc.3", + "igniteui-react-inputs": "^19.0.2-beta.2", + "igniteui-react-layouts": "^19.0.2-beta.2", + "igniteui-webcomponents": "^6.2.0", + "lit-html": "^3.2.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-scripts": "^5.0.1", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^18.11.7", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "eslint": "^8.33.0", + "eslint-config-react": "^1.1.7", + "eslint-plugin-react": "^7.20.0", + "react-app-rewired": "^2.2.1", + "typescript": "^4.8.4", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/grids/tree-grid/cell-merge-custom-sample/public/index.html b/samples/grids/tree-grid/cell-merge-custom-sample/public/index.html new file mode 100644 index 0000000000..e2d3265576 --- /dev/null +++ b/samples/grids/tree-grid/cell-merge-custom-sample/public/index.html @@ -0,0 +1,11 @@ + + + + Sample | Ignite UI | React | infragistics + + + + +
+ + \ No newline at end of file diff --git a/samples/grids/tree-grid/cell-merge-custom-sample/sandbox.config.json b/samples/grids/tree-grid/cell-merge-custom-sample/sandbox.config.json new file mode 100644 index 0000000000..07f53508eb --- /dev/null +++ b/samples/grids/tree-grid/cell-merge-custom-sample/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/grids/tree-grid/cell-merge-custom-sample/src/EmployeesFlatDetails2.ts b/samples/grids/tree-grid/cell-merge-custom-sample/src/EmployeesFlatDetails2.ts new file mode 100644 index 0000000000..1a7bd8396e --- /dev/null +++ b/samples/grids/tree-grid/cell-merge-custom-sample/src/EmployeesFlatDetails2.ts @@ -0,0 +1,269 @@ +/* eslint-disable @typescript-eslint/naming-convention */ +export const generateEmployeeDetailedFlatData2 = () => ([ + { + Address: 'Obere Str. 57', + Age: 55, + City: 'Berlin', + Country: 'Germany', + Fax: '030-0076545', + HireDate: new Date(2008, 3, 20), + ID: 1, + Name: 'Johnathan Winchester', + ParentID: -1, + Phone: '030-0074321', + PostalCode: '12209', + Title: 'Development Manager' + }, + { + Address: 'Forsterstr. 57', + Age: 29, + City: 'Berlin', + Country: 'Germany', + Fax: '0621-08924', + HireDate: new Date(2009, 6, 19), + ID: 2, + Name: 'Thomas Anderson', + ParentID: 1, + Phone: '0621-08460', + PostalCode: '68306', + Title: 'Senior Software Developer' + }, + { + Address: 'Berguvsvägen 8', + Age: 43, + City: 'Berlin', + Country: 'Germany', + Fax: '0921-12 34 67', + HireDate: new Date(2011, 6, 3), + ID: 3, + Name: 'Michael Burke', + ParentID: 1, + Phone: '0921-12 34 65', + PostalCode: 'S-958 22', + Title: 'Senior Software Developer' + }, + { + Address: 'Hauptstr. 29', + Age: 50, + City: 'Berlin', + Country: 'Germany', + Fax: '(5) 555-6691', + HireDate: new Date(2007, 11, 18), + ID: 19, + Name: 'Klaus Schmidt', + ParentID: 1, + Phone: '0452-076545', + PostalCode: '3012', + Title: 'Senior Software Developer' + }, + { + Address: 'Walserweg 21', + Age: 39, + City: 'Berlin', + Country: 'Germany', + Fax: '0241-059428', + HireDate: new Date(2010, 3, 22), + ID: 9, + Name: 'Francisco Chang', + ParentID: 1, + Phone: '0241-039123', + PostalCode: '52066', + Title: 'Senior Software Developer' + }, + { + Address: 'Avda. de la Constitución 2222', + Age: 42, + City: 'México D.F.', + Country: 'Mexico', + Fax: '(5) 555-3745', + HireDate: new Date(2014, 1, 22), + ID: 4, + Name: 'Ana Sanders', + ParentID: -1, + Phone: '(5) 555-4729', + PostalCode: '05021', + Title: 'CEO' + }, + { + Address: 'Mataderos 2312', + Age: 49, + City: 'México D.F.', + Country: 'Mexico', + Fax: '(5) 555-3995', + HireDate: new Date(2014, 1, 22), + ID: 18, + Name: 'Victoria Lincoln', + ParentID: -1, + Phone: '(5) 555-3932', + PostalCode: '05023', + Title: 'Accounting Manager' + }, + { + Address: 'Sierras de Granada 9993', + Age: 44, + City: 'México D.F.', + Country: 'Mexico', + Fax: '(5) 555-7293', + HireDate: new Date(2014, 4, 4), + ID: 17, + Name: 'Antonio Moreno', + ParentID: 18, + Phone: '(5) 555-3392', + PostalCode: '05022', + Title: 'Senior Accountant' + }, + { + Address: 'Cerrito 333', + Age: 39, + City: 'Buenos Aires', + Country: 'Argentina', + Fax: '(1) 135-4892', + HireDate: new Date(2010, 3, 22), + ID: 13, + Name: 'Trevor Ashworth', + ParentID: 5, + Phone: '(1) 135-5555', + PostalCode: '1010', + Title: 'Director' + }, + { + Address: '23 Tsawassen Blvd.', + Age: 44, + City: 'Toronto', + Country: 'Canada', + Fax: '(604) 555-3745', + HireDate: new Date(2014, 4, 4), + ID: 14, + Name: 'Laurence Johnson', + ParentID: 4, + Phone: '(604) 555-4729', + PostalCode: 'T2F 8M4', + Title: 'Director' + }, + { + Address: 'Fauntleroy Circus', + Age: 25, + City: 'London', + Country: 'UK', + Fax: '(5) 555-3798', + HireDate: new Date(2017, 11, 9), + ID: 5, + Name: 'Elizabeth Richards', + ParentID: 4, + Phone: '(171) 555-1212', + PostalCode: 'EC2 5NT', + Title: 'Vice President' + }, + { + Address: '120 Hanover Sq.', + Age: 61, + City: 'London', + Country: 'UK', + Fax: '(171) 555-6750', + HireDate: new Date(2010, 1, 1), + ID: 10, + Name: 'Yang Wang', + ParentID: -1, + Phone: '(171) 555-7788', + PostalCode: 'WA1 1DP', + Title: 'Localization Manager' + }, + { + Address: 'Berkeley Gardens 12', + Age: 25, + City: 'London', + Country: 'UK', + Fax: '(171) 555-9199', + HireDate: new Date(2017, 11, 9), + ID: 15, + Name: 'Patricia Simpson', + ParentID: 10, + Phone: '(171) 555-2282', + PostalCode: 'WX1 6LT', + Title: 'Localization Intern' + }, + { + Address: '35 King George', + Age: 25, + City: 'London', + Country: 'UK', + Fax: '(171) 555-3373', + HireDate: new Date(2018, 3, 18), + ID: 16, + Name: 'Peter Lewis', + ParentID: 10, + Phone: '(171) 555-0297', + PostalCode: 'WX3 6FW', + Title: 'Localization Intern' + }, + { + Address: 'Walserweg 21', + Age: 39, + City: 'London', + Country: 'UK', + Fax: '0241-059428', + HireDate: new Date(2010, 3, 22), + ID: 20, + Name: 'Linda Brown', + ParentID: 10, + Phone: '0241-039123', + PostalCode: '52066', + Title: 'Localization Intern' + }, + { + Address: 'Av. dos Lusíadas, 23', + Age: 27, + City: 'Bern', + Country: 'Switzerland', + Fax: '', + HireDate: new Date(2016, 2, 19), + ID: 8, + Name: 'Casey Harper', + ParentID: 10, + Phone: '(11) 555-7647', + PostalCode: '05432-043', + Title: 'Senior Localization' + }, + { + Address: '24, place Kléber', + Age: 31, + City: 'Strasbourg', + Country: 'France', + Fax: '88.60.15.32', + HireDate: new Date(2014, 8, 18), + ID: 11, + Name: 'Monica Reyes', + ParentID: 1, + Phone: '88.60.15.31', + PostalCode: '67000', + Title: 'Software Development Team Lead' + }, + { + Address: 'C/ Araquil, 67', + Age: 35, + City: 'Madrid', + Country: 'Spain', + Fax: '(91) 555 91 99', + HireDate: new Date(2015, 9, 17), + ID: 6, + Name: 'Roland Mendel', + ParentID: 11, + Phone: '(91) 555 22 82', + PostalCode: '28023', + Title: 'Senior Software Developer' + }, + { + Address: '12, rue des Bouchers', + Age: 44, + City: 'Marseille', + Country: 'France', + Fax: '91.24.45.41', + HireDate: new Date(2009, 10, 11), + ID: 12, + Name: 'Sven Cooper', + ParentID: 11, + Phone: '91.24.45.40', + PostalCode: '13008', + Title: 'Senior Software Developer' + } +]); \ No newline at end of file diff --git a/samples/grids/tree-grid/cell-merge-custom-sample/src/index.css b/samples/grids/tree-grid/cell-merge-custom-sample/src/index.css new file mode 100644 index 0000000000..544c74b366 --- /dev/null +++ b/samples/grids/tree-grid/cell-merge-custom-sample/src/index.css @@ -0,0 +1,7 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + +.wrapper { + justify-content: space-evenly; + margin: 1rem; +} \ No newline at end of file diff --git a/samples/grids/tree-grid/cell-merge-custom-sample/src/index.tsx b/samples/grids/tree-grid/cell-merge-custom-sample/src/index.tsx new file mode 100644 index 0000000000..e1b21f2b07 --- /dev/null +++ b/samples/grids/tree-grid/cell-merge-custom-sample/src/index.tsx @@ -0,0 +1,122 @@ +import React, { useEffect, useState } from "react"; +import ReactDOM from "react-dom/client"; +import "./index.css"; + +import { IgrSelect, IgrSelectItem } from "igniteui-react"; +import { + GridCellMergeMode, + IgrGridToolbar, + SortingDirection, + IgrSortingExpression, + IgrTreeGrid, + IgrGridMergeStrategy, + IgrDefaultTreeGridMergeStrategy, + IgrByLevelTreeGridMergeStrategy, + IgrDefaultMergeStrategy, +} from "igniteui-react-grids"; +import { IgrColumn } from "igniteui-react-grids"; + +import "igniteui-react-grids/grids/themes/light/bootstrap.css"; +import { generateEmployeeDetailedFlatData2 } from "./EmployeesFlatDetails2"; + +export default function App() { + const data = generateEmployeeDetailedFlatData2(); + const [cellMergeMode] = useState("always"); + + const sortExpr: IgrSortingExpression[] = [ + { + fieldName: "Country", + dir: SortingDirection.Asc, + }, + ]; + + const customMergeStrategy = new CustomTreeGridMergeStrategy(); + return ( + <> +
+
+ + + + + + + + + + + + + + +
+
+ + ); +} + +// rendering above component in the React DOM +const root = ReactDOM.createRoot(document.getElementById("root")); +root.render(); + +class CustomTreeGridMergeStrategy extends IgrDefaultTreeGridMergeStrategy { + // Merge only cells within same country and level + public comparer(prevRecord: any, record: any, field: string): boolean { + const a = prevRecord[field]; + const b = record[field]; + + const levelA = prevRecord.level; + const levelB = record.level; + + const countryA = prevRecord.data["Country"]; + const countryB = record.data["Country"]; + + return a === b && levelA === levelB && countryA === countryB; + } +} diff --git a/samples/grids/tree-grid/cell-merge-custom-sample/src/react-app-env.d.ts b/samples/grids/tree-grid/cell-merge-custom-sample/src/react-app-env.d.ts new file mode 100644 index 0000000000..6431bc5fc6 --- /dev/null +++ b/samples/grids/tree-grid/cell-merge-custom-sample/src/react-app-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/samples/grids/tree-grid/cell-merge-custom-sample/tsconfig.json b/samples/grids/tree-grid/cell-merge-custom-sample/tsconfig.json new file mode 100644 index 0000000000..8c0d146f95 --- /dev/null +++ b/samples/grids/tree-grid/cell-merge-custom-sample/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react-jsx", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/grids/tree-grid/cell-merge/package.json b/samples/grids/tree-grid/cell-merge/package.json index 7141bab0b8..0795802186 100644 --- a/samples/grids/tree-grid/cell-merge/package.json +++ b/samples/grids/tree-grid/cell-merge/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "19.3.0-rc.1", + "igniteui-react": "19.3.0-rc.3", "igniteui-react-core": "^19.0.2-beta.2", "igniteui-react-datasources": "^19.0.2-beta.2", - "igniteui-react-grids": "19.3.0-rc.1", + "igniteui-react-grids": "19.3.0-rc.3", "igniteui-react-inputs": "^19.0.2-beta.2", "igniteui-react-layouts": "^19.0.2-beta.2", "igniteui-webcomponents": "^6.2.0", diff --git a/samples/grids/tree-grid/cell-merge/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/cell-merge/src/EmployeesFlatDetails.ts new file mode 100644 index 0000000000..3d9e9f57d5 --- /dev/null +++ b/samples/grids/tree-grid/cell-merge/src/EmployeesFlatDetails.ts @@ -0,0 +1,50 @@ +export class EmployeesFlatDetailsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public Address: string; + public Age: number; + public City: string; + public Country: string; + public Fax: string; + public HireDate: string; + public ID: number; + public Name: string; + public ParentID: number; + public Phone: string; + public PostalCode: number; + public Title: string; + public LastName: string; + public FullAddress: string; + +} +export class EmployeesFlatDetails extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EmployeesFlatDetailsItem({ Address: `Obere Str. 57`, Age: 55, City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, Phone: `030-0074321`, PostalCode: 12209, Title: `Development Manager`, LastName: `Winchester`, FullAddress: `Obere Str. 57, Berlin, Germany` }), + new EmployeesFlatDetailsItem({ Address: `Avda. de la Constitución 2222`, Age: 42, City: `México D.F.`, Country: `Mexico`, Fax: `(51) 555-3745`, HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, Phone: `(5) 555-4729`, PostalCode: 5021, Title: `CEO`, LastName: `Sanders`, FullAddress: `Avda. de la Constitución 2222, México D.F., Mexico` }), + new EmployeesFlatDetailsItem({ Address: `Mataderos 2312`, Age: 49, City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, Phone: `(5) 555-3932`, PostalCode: 5023, Title: `Accounting Manager`, LastName: `Lincoln`, FullAddress: `Mataderos 2312, México D.F., Mexico` }), + new EmployeesFlatDetailsItem({ Address: `120 Hanover Sq.`, Age: 61, City: `London`, Country: `UK`, Fax: `(171) 555-6750`, HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, Phone: `(171) 555-7788`, PostalCode: 39000, Title: `Localization Manager`, LastName: `Wang`, FullAddress: `120 Hanover Sq., London, UK` }), + new EmployeesFlatDetailsItem({ Address: `Berguvsvägen 8`, Age: 43, City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, Phone: `0921-12 34 65`, PostalCode: 29000, Title: `Senior Software Developer`, LastName: `Burke`, FullAddress: `Berguvsvägen 8, Luleå, Sweden` }), + new EmployeesFlatDetailsItem({ Address: `Forsterstr. 57`, Age: 29, City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, Phone: `0621-08460`, PostalCode: 68306, Title: `Senior Software Developer`, LastName: `Anderson`, FullAddress: `Forsterstr. 57, Mannheim, Germany` }), + new EmployeesFlatDetailsItem({ Address: `24, place Kléber`, Age: 31, City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, Phone: `88.60.15.31`, PostalCode: 67000, Title: `Software Development Team Lead`, LastName: `Reyes`, FullAddress: `24, place Kléber, Strasbourg, France` }), + new EmployeesFlatDetailsItem({ Address: `C/ Araquil, 67`, Age: 35, City: `Madrid`, Country: `Spain`, Fax: `(911) 555 91 99`, HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, Phone: `(91) 555 22 82`, PostalCode: 28023, Title: `Senior Software Developer`, LastName: `Mendel`, FullAddress: `C/ Araquil, 67, Madrid, Spain` }), + new EmployeesFlatDetailsItem({ Address: `12, rue des Bouchers`, Age: 44, City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, Phone: `91.24.45.40`, PostalCode: 13008, Title: `Senior Software Developer`, LastName: `Cooper`, FullAddress: `12, rue des Bouchers, Marseille, France` }), + new EmployeesFlatDetailsItem({ Address: `23 Tsawassen Blvd.`, Age: 44, City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, Phone: `(604) 555-4729`, PostalCode: 19000, Title: `Director`, LastName: `Johnson`, FullAddress: `23 Tsawassen Blvd., Tsawassen, Canada` }), + new EmployeesFlatDetailsItem({ Address: `Fauntleroy Circus`, Age: 25, City: `London`, Country: `UK`, Fax: `(125) 555-3798`, HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, Phone: `(171) 555-1212`, PostalCode: 30000, Title: `Vice President`, LastName: `Richards`, FullAddress: `Fauntleroy Circus, London, UK` }), + new EmployeesFlatDetailsItem({ Address: `Cerrito 333`, Age: 39, City: `Buenos Aires`, Country: `Argentina`, Fax: `(121) 135-4892`, HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, Phone: `(1) 135-5555`, PostalCode: 1010, Title: `Director`, LastName: `Ashworth`, FullAddress: `Cerrito 333, Buenos Aires, Argentina` }), + new EmployeesFlatDetailsItem({ Address: `Sierras de Granada 9993`, Age: 44, City: `México D.F.`, Country: `Mexico`, Fax: `(153) 555-7293`, HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, Phone: `(5) 555-3392`, PostalCode: 5022, Title: `Senior Accountant`, LastName: `Moreno`, FullAddress: `Sierras de Granada 9993, México D.F., Mexico` }), + new EmployeesFlatDetailsItem({ Address: `Hauptstr. 29`, Age: 50, City: `Sao Paulo`, Country: `Brazil`, Fax: `(531) 555-6691`, HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, Phone: `0452-076545`, PostalCode: 3012, Title: `Senior Localization Developer`, LastName: `Rodriguez`, FullAddress: `Hauptstr. 29, Sao Paulo, Brazil` }), + new EmployeesFlatDetailsItem({ Address: `Av. dos Lusíadas, 23`, Age: 27, City: `Bern`, Country: `Switzerland`, Fax: `(271) 335-357`, HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, Phone: `(11) 555-7647`, PostalCode: 40000, Title: `Senior Localization`, LastName: `Harper`, FullAddress: `Av. dos Lusíadas, 23, Bern, Switzerland` }), + new EmployeesFlatDetailsItem({ Address: `Berkeley Gardens 12`, Age: 25, City: `London`, Country: `UK`, Fax: `(171) 555-9199`, HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, Phone: `(171) 555-2282`, PostalCode: 26000, Title: `Localization Intern`, LastName: `Simpson`, FullAddress: `Berkeley Gardens 12, London, UK` }), + new EmployeesFlatDetailsItem({ Address: `Walserweg 21`, Age: 39, City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, Phone: `0241-039123`, PostalCode: 52066, Title: `Localization Intern`, LastName: `Chang`, FullAddress: `Walserweg 21, Aachen, Germany` }), + new EmployeesFlatDetailsItem({ Address: `35 King George`, Age: 25, City: `London`, Country: `UK`, Fax: `(171) 555-3373`, HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, Phone: `(171) 555-0297`, PostalCode: 48000, Title: `Localization Intern`, LastName: `Lewis`, FullAddress: `35 King George, London, UK` }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/grids/tree-grid/cell-merge/src/index.tsx b/samples/grids/tree-grid/cell-merge/src/index.tsx index 77272f18ca..3a0ca68fac 100644 --- a/samples/grids/tree-grid/cell-merge/src/index.tsx +++ b/samples/grids/tree-grid/cell-merge/src/index.tsx @@ -1,4 +1,4 @@ -import React, { useState } from "react"; +import React, { useEffect, useState } from "react"; import ReactDOM from "react-dom/client"; import "./index.css"; @@ -9,40 +9,54 @@ import { SortingDirection, IgrSortingExpression, IgrTreeGrid, - IgrGridMergeStrategy + IgrGridMergeStrategy, + IgrDefaultTreeGridMergeStrategy, + IgrByLevelTreeGridMergeStrategy, } from "igniteui-react-grids"; import { IgrColumn } from "igniteui-react-grids"; import "igniteui-react-grids/grids/themes/light/bootstrap.css"; -import MultiColumnsExportData from "./MultiColumnsExportData.json"; +import { EmployeesFlatDetails } from "./EmployeesFlatDetails"; export default function App() { - const data = MultiColumnsExportData; - const childDataKey = "Categories"; + const [data, setData] = useState([]); const [cellMergeMode, setCellMergeMode] = useState("always"); - const mergeTypes: { name: string; value: GridCellMergeMode }[] = [ - { - name: "Merge always", - value: "always", - }, - { - name: "Merge on sort", - value: "onSort", - }, + const [mergeStrategyName, setMergeStrategyName] = + useState("Default Strategy"); + + useEffect(() => { + const employeesFlatDetails = new EmployeesFlatDetails(); + + setData(employeesFlatDetails); + }, []); + + const mergeTypes = [ + { name: "Always", value: "always" }, + { name: "On Sort", value: "onSort" }, ]; + const sortExpr: IgrSortingExpression[] = [ { fieldName: "Country", dir: SortingDirection.Asc, }, ]; + const mergeStrategies = [ { - name: "Default Strategy" - value: new IgrDefaultTreeGridMergeStrategy(); - } - ] + name: "Default Strategy", + value: new IgrDefaultTreeGridMergeStrategy(), + }, + { + name: "By Level Strategy", + value: new IgrByLevelTreeGridMergeStrategy(), + }, + ]; + + const mergeStrategy = + mergeStrategies.find((m) => m.name === mergeStrategyName)?.value ?? + mergeStrategies[0].value; return ( <> @@ -57,44 +71,48 @@ export default function App() { primaryKey="ID" foreignKey="ParentID" cellMergeMode={cellMergeMode} - mergeStrategy={mergeStrategy} + mergeStrategy={mergeStrategy as IgrGridMergeStrategy} > setCellMergeMode(e.detail.value)} value={cellMergeMode} - onChange={(e) => setCellMergeMode(e.detail.value)} > {mergeTypes.map((type) => ( - + {type.name} ))} setMergeStrategy(e.detail.value)} - onSelectionChanging={strategySelection} + onChange={(e: any) => { + setMergeStrategyName(e.detail.value); + }} + value={mergeStrategyName} > {mergeStrategies.map((type) => ( - + {type.name} ))} - + + @@ -103,6 +121,7 @@ export default function App() { dataType="string" width="200px" merge={true} + editable={true} sortable={true} /> - - + +