製品版のみの機能
ピボット グリッド - すべてのピボット グリッド機能
このサンプルは CTP 機能を使用しています。製品版では、API や動作が変更される場合があります。
このサンプルは、より大きい画面サイズのためにデザインされました。
モバイル デバイスで画面を回転、フル サイズ表示、またはその他のデバイスにメールで送信します。
このサンプルは、igPivotGrid でサポートされる選択、ツールチップ、およびサイズ変更の igGrid 機能を有効にする方法を紹介します。
コード ビュー
クリップボードへコピー
<!DOCTYPE html>
<html>
<head>
<title></title>
<!-- Ignite UI for jQuery Required Combined CSS Files -->
<link href="http://cdn-na.infragistics.com/igniteui/2024.2/latest/css/themes/infragistics/infragistics.theme.css" rel="stylesheet" />
<link href="http://cdn-na.infragistics.com/igniteui/2024.2/latest/css/structure/infragistics.css" rel="stylesheet" />
<script src="http://ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.8.3.js"></script>
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://code.jquery.com/ui/1.11.1/jquery-ui.min.js"></script>
<!-- Ignite UI for jQuery Required Combined JavaScript Files -->
<script src="http://cdn-na.infragistics.com/igniteui/2024.2/latest/js/infragistics.core.js"></script>
<script src="http://cdn-na.infragistics.com/igniteui/2024.2/latest/js/infragistics.lob.js"></script>
<style>
#pivotGrid {
float: left;
}
</style>
</head>
<body>
<div id="pivotGrid"></div>
<script type="text/javascript" src="/data-files/sales.js"></script>
<script>
$(function () {
dataSource = new $.ig.OlapFlatDataSource({
dataSource: sales,
metadata: {
cube: {
name: "Sales",
caption: "セールス",
measuresDimension: {
caption: "メジャー",
measures: [
{ caption: "販売単位数", name: "UnitsSold", aggregator: $.ig.OlapUtilities.prototype.sumAggregator('UnitsSold') },
{ caption: "単価", name: "UnitPrice", aggregator: $.ig.OlapUtilities.prototype.sumAggregator('UnitPrice', 2) }]
},
dimensions: [
{
caption: "日付", name: "Date", hierarchies: [
$.ig.OlapUtilities.prototype.getDateHierarchy(
"Date", ["year", "quarter", "month", "date"], "Dates", "日付",
["年", "四半期", "月", "日"], "すべての期間")]
},
{
caption: "位置", name: "Location", hierarchies: [{
caption: "位置", name: "Location", levels: [
{ name: "AllLocations", levelCaption: "すべての場所", memberProvider: function (item) { return "すべての場所"; } },
{ name: "Country", levelCaption: "国", memberProvider: function (item) { return item.Country; } },
{ name: "City", levelCaption: "市", memberProvider: function (item) { return item.City; } }]
}]
},
{
caption: "製品", name: "Product", hierarchies: [{
caption: "製品", name: "Product", levels: [
{ name: "AllProducts", levelCaption: "すべての製品", memberProvider: function (item) { return "すべての製品"; } },
{ name: "ProductCategory", levelCaption: "カテゴリ", memberProvider: function (item) { return item.ProductCategory; } }]
}]
},
{
caption: "販売員", name: "Seller", hierarchies: [{
caption: "販売員", name: "Seller", levels: [
{ name: "AllSellers", levelCaption: "すべての販売員", memberProvider: function (item) { return "すべての販売員"; } },
{ name: "SellerName", levelCaption: "販売員", memberProvider: function (item) { return item.SellerName; } }]
}]
}
]
}
},
rows: "[Date].[Dates]",
columns: "[Product].[Product]",
measures: "[Measures].[UnitsSold]"
});
$("#pivotGrid").igPivotGrid({
gridOptions: {
features: [
{
name: "Selection"
},
{
name: "Tooltips",
visibility: "always"
},
{
name: "Resizing"
}
]
},
dataSource: dataSource,
height: "565px",
width: "100%"
});
});
</script>
</body>
</html>
var sales = [
{ "ProductCategory": "衣服", "UnitPrice": 12.814, "SellerName": "Stanley Brooker", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "01/01/2007", "UnitsSold": 282 },
{ "ProductCategory": "衣服", "UnitPrice": 49.579, "SellerName": "Elisa Longbottom", "Country": "イギリス", "City": "ケンブリッジ", "Date": "01/05/2007", "UnitsSold": 296 },
{ "ProductCategory": "バイク", "UnitPrice": 3.565, "SellerName": "Lydia Burson", "Country": "ブルガリア", "City": "ソフィア", "Date": "01/06/2007", "UnitsSold": 68 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 85.581, "SellerName": "David Haley", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "01/07/2007", "UnitsSold": 293 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 18.137, "SellerName": "John Smith", "Country": "イギリス", "City": "オックスフォード", "Date": "01/08/2007", "UnitsSold": 240 },
{ "ProductCategory": "衣服", "UnitPrice": 68.330, "SellerName": "Larry Lieb", "Country": "イギリス", "City": "ロンドン", "Date": "01/12/2007", "UnitsSold": 456 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 16.056, "SellerName": "Walter Pang", "Country": "イギリス", "City": "バーミンガム", "Date": "02/09/2007", "UnitsSold": 492 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 35.235, "SellerName": "Benjamin Dupree", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "02/16/2007", "UnitsSold": 78 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 73.215, "SellerName": "Nicholas Carmona", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "02/17/2007", "UnitsSold": 150 },
{ "ProductCategory": "衣服", "UnitPrice": 73.614, "SellerName": "Nicholas Carmona", "Country": "日本", "City": "東京", "Date": "02/19/2007", "UnitsSold": 262 },
{ "ProductCategory": "バイク", "UnitPrice": 47.080, "SellerName": "Monica Freitag", "Country": "イギリス", "City": "リバプール", "Date": "02/21/2007", "UnitsSold": 125 },
{ "ProductCategory": "衣服", "UnitPrice": 51.298, "SellerName": "Kathe Pettel", "Country": "イギリス", "City": "ケンブリッジ", "Date": "03/04/2007", "UnitsSold": 42 },
{ "ProductCategory": "バイク", "UnitPrice": 27.466, "SellerName": "David Haley", "Country": "日本", "City": "横浜", "Date": "03/04/2007", "UnitsSold": 282 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 22.374, "SellerName": "Antonio Charbonneau", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "03/17/2007", "UnitsSold": 305 },
{ "ProductCategory": "衣服", "UnitPrice": 85.292, "SellerName": "Glenn Landeros", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "03/23/2007", "UnitsSold": 265 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 80.675, "SellerName": "Elisa Longbottom", "Country": "イギリス", "City": "オックスフォード", "Date": "03/25/2007", "UnitsSold": 350 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 64.613, "SellerName": "Glenn Landeros", "Country": "アメリカ", "City": "リンカーン", "Date": "03/27/2007", "UnitsSold": 82 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 50.041, "SellerName": "Harry Tyler", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "04/02/2007", "UnitsSold": 67 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 16.311, "SellerName": "Brandon Mckim", "Country": "ブルガリア", "City": "プロブディブ", "Date": "04/04/2007", "UnitsSold": 370 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 49.852, "SellerName": "Monica Freitag", "Country": "アメリカ", "City": "クランバリ", "Date": "04/12/2007", "UnitsSold": 228 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 44.761, "SellerName": "Bryan Culver", "Country": "イギリス", "City": "ロンドン", "Date": "04/15/2007", "UnitsSold": 272 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 44.395, "SellerName": "Russell Shorter", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "04/18/2007", "UnitsSold": 227 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 39.287, "SellerName": "Stanley Brooker", "Country": "ブルガリア", "City": "ソフィア", "Date": "04/18/2007", "UnitsSold": 248 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 36.581, "SellerName": "Benjamin Meekins", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "04/21/2007", "UnitsSold": 414 },
{ "ProductCategory": "衣服", "UnitPrice": 75.828, "SellerName": "Walter Pang", "Country": "日本", "City": "東京", "Date": "04/25/2007", "UnitsSold": 43 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 57.757, "SellerName": "Antonio Charbonneau", "Country": "日本", "City": "横浜", "Date": "04/26/2007", "UnitsSold": 71 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 40.231, "SellerName": "Stanley Brooker", "Country": "イギリス", "City": "ケンブリッジ", "Date": "05/14/2007", "UnitsSold": 321 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 49.525, "SellerName": "Elisa Longbottom", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "05/17/2007", "UnitsSold": 329 },
{ "ProductCategory": "衣服", "UnitPrice": 56.460, "SellerName": "Benjamin Dupree", "Country": "日本", "City": "大阪", "Date": "05/17/2007", "UnitsSold": 88 },
{ "ProductCategory": "衣服", "UnitPrice": 67.129, "SellerName": "Glenn Landeros", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "05/26/2007", "UnitsSold": 366 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 14.628, "SellerName": "Walter Pang", "Country": "ドイツ", "City": "ハンブルグ", "Date": "06/02/2007", "UnitsSold": 450 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 89.260, "SellerName": "Howard Sprouse", "Country": "イギリス", "City": "ケンブリッジ", "Date": "06/06/2007", "UnitsSold": 475 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 33.752, "SellerName": "Nicholas Carmona", "Country": "アメリカ", "City": "ミネアポリス", "Date": "06/11/2007", "UnitsSold": 195 },
{ "ProductCategory": "バイク", "UnitPrice": 54.101, "SellerName": "Harold Garvin", "Country": "ドイツ", "City": "ハンブルグ", "Date": "06/17/2007", "UnitsSold": 458 },
{ "ProductCategory": "衣服", "UnitPrice": 18.437, "SellerName": "Benjamin Dupree", "Country": "イギリス", "City": "オックスフォード", "Date": "07/04/2007", "UnitsSold": 7 },
{ "ProductCategory": "バイク", "UnitPrice": 96.142, "SellerName": "Elisa Longbottom", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "07/08/2007", "UnitsSold": 158 },
{ "ProductCategory": "衣服", "UnitPrice": 22.990, "SellerName": "Benjamin Meekins", "Country": "アメリカ", "City": "メルビル", "Date": "07/09/2007", "UnitsSold": 34 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 52.664, "SellerName": "Larry Lieb", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "07/10/2007", "UnitsSold": 412 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 62.127, "SellerName": "John Smith", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "07/15/2007", "UnitsSold": 10 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 10.722, "SellerName": "Antonio Charbonneau", "Country": "アメリカ", "City": "ミネアポリス", "Date": "07/16/2007", "UnitsSold": 466 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 4.693, "SellerName": "Stanley Brooker", "Country": "日本", "City": "東京", "Date": "07/20/2007", "UnitsSold": 248 },
{ "ProductCategory": "衣服", "UnitPrice": 43.724, "SellerName": "Brandon Mckim", "Country": "イギリス", "City": "バーミンガム", "Date": "07/24/2007", "UnitsSold": 307 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 76.440, "SellerName": "Glenn Landeros", "Country": "ブルガリア", "City": "プロブディブ", "Date": "07/26/2007", "UnitsSold": 445 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 34.278, "SellerName": "Bryan Culver", "Country": "イギリス", "City": "ロンドン", "Date": "08/01/2007", "UnitsSold": 480 },
{ "ProductCategory": "衣服", "UnitPrice": 68.573, "SellerName": "Howard Sprouse", "Country": "日本", "City": "大阪", "Date": "08/02/2007", "UnitsSold": 390 },
{ "ProductCategory": "衣服", "UnitPrice": 65.068, "SellerName": "Larry Lieb", "Country": "アメリカ", "City": "シカゴ", "Date": "08/05/2007", "UnitsSold": 388 },
{ "ProductCategory": "バイク", "UnitPrice": 44.938, "SellerName": "Russell Shorter", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "08/19/2007", "UnitsSold": 37 },
{ "ProductCategory": "衣服", "UnitPrice": 93.468, "SellerName": "John Smith", "Country": "アメリカ", "City": "シアトル", "Date": "08/24/2007", "UnitsSold": 237 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 94.365, "SellerName": "Harry Tyler", "Country": "日本", "City": "横浜", "Date": "08/26/2007", "UnitsSold": 396 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 72.408, "SellerName": "David Haley", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "08/26/2007", "UnitsSold": 3 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 80.591, "SellerName": "Russell Shorter", "Country": "ドイツ", "City": "ベルリン", "Date": "09/02/2007", "UnitsSold": 330 },
{ "ProductCategory": "衣服", "UnitPrice": 65.404, "SellerName": "Benjamin Dupree", "Country": "アメリカ", "City": "ニューヨーク", "Date": "09/04/2007", "UnitsSold": 143 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 30.638, "SellerName": "Bryan Culver", "Country": "イギリス", "City": "リバプール", "Date": "09/05/2007", "UnitsSold": 318 },
{ "ProductCategory": "バイク", "UnitPrice": 7.616, "SellerName": "Alfredo Fetuchini", "Country": "ブルガリア", "City": "プロブディブ", "Date": "09/06/2007", "UnitsSold": 393 },
{ "ProductCategory": "衣服", "UnitPrice": 46.946, "SellerName": "Harold Garvin", "Country": "ドイツ", "City": "ハンブルグ", "Date": "09/10/2007", "UnitsSold": 129 },
{ "ProductCategory": "バイク", "UnitPrice": 38.017, "SellerName": "Glenn Landeros", "Country": "ブルガリア", "City": "プロブディブ", "Date": "09/17/2007", "UnitsSold": 426 },
{ "ProductCategory": "衣服", "UnitPrice": 2.481, "SellerName": "Harry Tyler", "Country": "ドイツ", "City": "ハンブルグ", "Date": "09/18/2007", "UnitsSold": 217 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 77.589, "SellerName": "John Smith", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "09/20/2007", "UnitsSold": 152 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 97.145, "SellerName": "Benjamin Meekins", "Country": "イギリス", "City": "リバプール", "Date": "09/25/2007", "UnitsSold": 452 },
{ "ProductCategory": "衣服", "UnitPrice": 19.697, "SellerName": "Carl Costello", "Country": "アメリカ", "City": "シアトル", "Date": "10/02/2007", "UnitsSold": 499 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 32.775, "SellerName": "Mark Slater", "Country": "イギリス", "City": "オックスフォード", "Date": "10/06/2007", "UnitsSold": 169 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 21.953, "SellerName": "Nicholas Carmona", "Country": "日本", "City": "横浜", "Date": "10/14/2007", "UnitsSold": 386 },
{ "ProductCategory": "バイク", "UnitPrice": 35.591, "SellerName": "Russell Shorter", "Country": "イギリス", "City": "オックスフォード", "Date": "10/14/2007", "UnitsSold": 454 },
{ "ProductCategory": "バイク", "UnitPrice": 46.950, "SellerName": "Elisa Longbottom", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "10/25/2007", "UnitsSold": 334 },
{ "ProductCategory": "バイク", "UnitPrice": 41.134, "SellerName": "Lydia Burson", "Country": "アメリカ", "City": "シカゴ", "Date": "10/26/2007", "UnitsSold": 107 },
{ "ProductCategory": "衣服", "UnitPrice": 13.837, "SellerName": "Mark Slater", "Country": "アメリカ", "City": "ミネアポリス", "Date": "11/07/2007", "UnitsSold": 275 },
{ "ProductCategory": "衣服", "UnitPrice": 64.159, "SellerName": "Monica Freitag", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "11/09/2007", "UnitsSold": 241 },
{ "ProductCategory": "衣服", "UnitPrice": 1.207, "SellerName": "Larry Lieb", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "11/11/2007", "UnitsSold": 177 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 57.805, "SellerName": "Monica Freitag", "Country": "日本", "City": "東京", "Date": "11/13/2007", "UnitsSold": 494 },
{ "ProductCategory": "衣服", "UnitPrice": 39.492, "SellerName": "Lydia Burson", "Country": "ブルガリア", "City": "ソフィア", "Date": "11/19/2007", "UnitsSold": 451 },
{ "ProductCategory": "衣服", "UnitPrice": 5.217, "SellerName": "Stanley Brooker", "Country": "日本", "City": "大阪", "Date": "01/01/2008", "UnitsSold": 125 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 53.429, "SellerName": "Kathe Pettel", "Country": "アメリカ", "City": "シカゴ", "Date": "01/02/2008", "UnitsSold": 103 },
{ "ProductCategory": "衣服", "UnitPrice": 52.157, "SellerName": "Larry Lieb", "Country": "日本", "City": "横浜", "Date": "01/03/2008", "UnitsSold": 224 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 17.694, "SellerName": "Nicholas Carmona", "Country": "日本", "City": "横浜", "Date": "01/07/2008", "UnitsSold": 498 },
{ "ProductCategory": "バイク", "UnitPrice": 80.741, "SellerName": "Benjamin Dupree", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "01/08/2008", "UnitsSold": 142 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 95.439, "SellerName": "Larry Lieb", "Country": "アメリカ", "City": "メルビル", "Date": "01/21/2008", "UnitsSold": 487 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 21.778, "SellerName": "David Haley", "Country": "ブルガリア", "City": "ソフィア", "Date": "01/27/2008", "UnitsSold": 331 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 29.907, "SellerName": "Glenn Landeros", "Country": "イギリス", "City": "リバプール", "Date": "02/03/2008", "UnitsSold": 418 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 39.839, "SellerName": "Benjamin Meekins", "Country": "ドイツ", "City": "ベルリン", "Date": "02/04/2008", "UnitsSold": 214 },
{ "ProductCategory": "バイク", "UnitPrice": 40.366, "SellerName": "Elisa Longbottom", "Country": "日本", "City": "横浜", "Date": "02/05/2008", "UnitsSold": 229 },
{ "ProductCategory": "衣服", "UnitPrice": 35.198, "SellerName": "Alfredo Fetuchini", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "02/05/2008", "UnitsSold": 16 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 41.755, "SellerName": "Harry Tyler", "Country": "イギリス", "City": "ケンブリッジ", "Date": "02/08/2008", "UnitsSold": 216 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 0.687, "SellerName": "Harry Tyler", "Country": "イギリス", "City": "ケンブリッジ", "Date": "02/09/2008", "UnitsSold": 486 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 37.556, "SellerName": "Elisa Longbottom", "Country": "ブルガリア", "City": "プロブディブ", "Date": "02/13/2008", "UnitsSold": 172 },
{ "ProductCategory": "バイク", "UnitPrice": 20.804, "SellerName": "Antonio Charbonneau", "Country": "ドイツ", "City": "ハンブルグ", "Date": "02/21/2008", "UnitsSold": 102 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 70.646, "SellerName": "Kathe Pettel", "Country": "日本", "City": "東京", "Date": "02/24/2008", "UnitsSold": 36 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 53.290, "SellerName": "Alfredo Fetuchini", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "02/25/2008", "UnitsSold": 71 },
{ "ProductCategory": "衣服", "UnitPrice": 24.854, "SellerName": "Alfredo Fetuchini", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "02/25/2008", "UnitsSold": 53 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 64.632, "SellerName": "Antonio Charbonneau", "Country": "ブルガリア", "City": "プロブディブ", "Date": "02/25/2008", "UnitsSold": 104 },
{ "ProductCategory": "バイク", "UnitPrice": 9.643, "SellerName": "Brandon Mckim", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "02/26/2008", "UnitsSold": 294 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 41.077, "SellerName": "Antonio Charbonneau", "Country": "ブルガリア", "City": "プロブディブ", "Date": "03/03/2008", "UnitsSold": 454 },
{ "ProductCategory": "衣服", "UnitPrice": 36.977, "SellerName": "Stanley Brooker", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "03/05/2008", "UnitsSold": 492 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 16.830, "SellerName": "Harry Tyler", "Country": "日本", "City": "横浜", "Date": "03/08/2008", "UnitsSold": 132 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 24.716, "SellerName": "Alfredo Fetuchini", "Country": "アメリカ", "City": "リンカーン", "Date": "03/09/2008", "UnitsSold": 225 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 65.644, "SellerName": "David Haley", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "03/10/2008", "UnitsSold": 422 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 70.470, "SellerName": "Glenn Landeros", "Country": "日本", "City": "横浜", "Date": "03/12/2008", "UnitsSold": 303 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 65.117, "SellerName": "Carl Costello", "Country": "アメリカ", "City": "リンカーン", "Date": "03/13/2008", "UnitsSold": 319 },
{ "ProductCategory": "衣服", "UnitPrice": 39.577, "SellerName": "Harold Garvin", "Country": "ブルガリア", "City": "ソフィア", "Date": "03/14/2008", "UnitsSold": 262 },
{ "ProductCategory": "バイク", "UnitPrice": 50.714, "SellerName": "Harold Garvin", "Country": "ドイツ", "City": "ベルリン", "Date": "03/23/2008", "UnitsSold": 345 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 88.246, "SellerName": "David Haley", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "04/03/2008", "UnitsSold": 407 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 47.252, "SellerName": "Walter Pang", "Country": "アメリカ", "City": "ニューヨーク", "Date": "04/04/2008", "UnitsSold": 121 },
{ "ProductCategory": "衣服", "UnitPrice": 30.427, "SellerName": "Larry Lieb", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "04/06/2008", "UnitsSold": 30 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 88.243, "SellerName": "Harold Garvin", "Country": "アメリカ", "City": "アトランタ", "Date": "04/11/2008", "UnitsSold": 293 },
{ "ProductCategory": "バイク", "UnitPrice": 16.463, "SellerName": "David Haley", "Country": "ブルガリア", "City": "プロブディブ", "Date": "04/12/2008", "UnitsSold": 271 },
{ "ProductCategory": "衣服", "UnitPrice": 95.208, "SellerName": "Howard Sprouse", "Country": "アメリカ", "City": "メルビル", "Date": "04/18/2008", "UnitsSold": 107 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 7.751, "SellerName": "Bryan Culver", "Country": "日本", "City": "大阪", "Date": "04/18/2008", "UnitsSold": 87 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 94.826, "SellerName": "David Haley", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "04/23/2008", "UnitsSold": 319 },
{ "ProductCategory": "衣服", "UnitPrice": 37.211, "SellerName": "Lydia Burson", "Country": "アメリカ", "City": "ミネアポリス", "Date": "04/24/2008", "UnitsSold": 346 },
{ "ProductCategory": "衣服", "UnitPrice": 99.308, "SellerName": "Benjamin Dupree", "Country": "アメリカ", "City": "メルビル", "Date": "05/07/2008", "UnitsSold": 382 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 96.081, "SellerName": "Larry Lieb", "Country": "日本", "City": "横浜", "Date": "05/11/2008", "UnitsSold": 334 },
{ "ProductCategory": "衣服", "UnitPrice": 26.152, "SellerName": "Harold Garvin", "Country": "ブルガリア", "City": "ソフィア", "Date": "05/13/2008", "UnitsSold": 176 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 80.816, "SellerName": "Mark Slater", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "05/19/2008", "UnitsSold": 125 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 78.320, "SellerName": "Russell Shorter", "Country": "日本", "City": "東京", "Date": "05/19/2008", "UnitsSold": 458 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 93.996, "SellerName": "Benjamin Meekins", "Country": "日本", "City": "東京", "Date": "05/25/2008", "UnitsSold": 331 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 96.600, "SellerName": "Stanley Brooker", "Country": "ブルガリア", "City": "プロブディブ", "Date": "05/27/2008", "UnitsSold": 39 },
{ "ProductCategory": "衣服", "UnitPrice": 37.643, "SellerName": "Claudia Kobayashi", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "06/06/2008", "UnitsSold": 238 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 46.977, "SellerName": "Walter Pang", "Country": "日本", "City": "東京", "Date": "06/07/2008", "UnitsSold": 84 },
{ "ProductCategory": "バイク", "UnitPrice": 80.151, "SellerName": "Mark Slater", "Country": "ドイツ", "City": "ベルリン", "Date": "06/08/2008", "UnitsSold": 363 },
{ "ProductCategory": "衣服", "UnitPrice": 43.519, "SellerName": "Harry Tyler", "Country": "ドイツ", "City": "ハンブルグ", "Date": "06/08/2008", "UnitsSold": 479 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 56.316, "SellerName": "Kathe Pettel", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "06/11/2008", "UnitsSold": 404 },
{ "ProductCategory": "衣服", "UnitPrice": 81.685, "SellerName": "Glenn Landeros", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "06/18/2008", "UnitsSold": 478 },
{ "ProductCategory": "衣服", "UnitPrice": 90.111, "SellerName": "Benjamin Meekins", "Country": "イギリス", "City": "リバプール", "Date": "06/19/2008", "UnitsSold": 285 },
{ "ProductCategory": "バイク", "UnitPrice": 99.342, "SellerName": "Kathe Pettel", "Country": "ブルガリア", "City": "プロブディブ", "Date": "06/22/2008", "UnitsSold": 15 },
{ "ProductCategory": "衣服", "UnitPrice": 30.834, "SellerName": "Brandon Mckim", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "06/26/2008", "UnitsSold": 245 },
{ "ProductCategory": "バイク", "UnitPrice": 99.386, "SellerName": "Nicholas Carmona", "Country": "イギリス", "City": "オックスフォード", "Date": "07/01/2008", "UnitsSold": 376 },
{ "ProductCategory": "バイク", "UnitPrice": 73.349, "SellerName": "Claudia Kobayashi", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "07/02/2008", "UnitsSold": 40 },
{ "ProductCategory": "バイク", "UnitPrice": 43.496, "SellerName": "Larry Lieb", "Country": "イギリス", "City": "バーミンガム", "Date": "07/10/2008", "UnitsSold": 112 },
{ "ProductCategory": "衣服", "UnitPrice": 16.394, "SellerName": "Antonio Charbonneau", "Country": "ブルガリア", "City": "プロブディブ", "Date": "07/15/2008", "UnitsSold": 224 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 71.402, "SellerName": "Stanley Brooker", "Country": "ブルガリア", "City": "ソフィア", "Date": "07/16/2008", "UnitsSold": 145 },
{ "ProductCategory": "バイク", "UnitPrice": 94.618, "SellerName": "Stanley Brooker", "Country": "ドイツ", "City": "ベルリン", "Date": "07/21/2008", "UnitsSold": 272 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 50.753, "SellerName": "Claudia Kobayashi", "Country": "アメリカ", "City": "シアトル", "Date": "07/27/2008", "UnitsSold": 278 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 12.782, "SellerName": "Harry Tyler", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "07/27/2008", "UnitsSold": 253 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 35.780, "SellerName": "Nicholas Carmona", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "08/01/2008", "UnitsSold": 255 },
{ "ProductCategory": "バイク", "UnitPrice": 17.133, "SellerName": "David Haley", "Country": "ブルガリア", "City": "ソフィア", "Date": "08/02/2008", "UnitsSold": 46 },
{ "ProductCategory": "バイク", "UnitPrice": 22.126, "SellerName": "Benjamin Dupree", "Country": "イギリス", "City": "バーミンガム", "Date": "08/08/2008", "UnitsSold": 279 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 62.986, "SellerName": "Russell Shorter", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "08/08/2008", "UnitsSold": 89 },
{ "ProductCategory": "衣服", "UnitPrice": 83.838, "SellerName": "Larry Lieb", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "08/14/2008", "UnitsSold": 17 },
{ "ProductCategory": "バイク", "UnitPrice": 14.075, "SellerName": "Lydia Burson", "Country": "ブルガリア", "City": "ソフィア", "Date": "08/21/2008", "UnitsSold": 470 },
{ "ProductCategory": "バイク", "UnitPrice": 34.591, "SellerName": "Elisa Longbottom", "Country": "イギリス", "City": "ロンドン", "Date": "08/25/2008", "UnitsSold": 195 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 86.727, "SellerName": "Lydia Burson", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "08/27/2008", "UnitsSold": 173 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 42.236, "SellerName": "Benjamin Dupree", "Country": "イギリス", "City": "バーミンガム", "Date": "09/01/2008", "UnitsSold": 472 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 25.687, "SellerName": "Larry Lieb", "Country": "ブルガリア", "City": "ソフィア", "Date": "09/06/2008", "UnitsSold": 148 },
{ "ProductCategory": "衣服", "UnitPrice": 23.208, "SellerName": "Walter Pang", "Country": "ドイツ", "City": "ベルリン", "Date": "09/06/2008", "UnitsSold": 314 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 83.763, "SellerName": "Nicholas Carmona", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "09/07/2008", "UnitsSold": 431 },
{ "ProductCategory": "衣服", "UnitPrice": 84.414, "SellerName": "Walter Pang", "Country": "ブルガリア", "City": "プロブディブ", "Date": "09/07/2008", "UnitsSold": 347 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 7.329, "SellerName": "Harry Tyler", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "09/11/2008", "UnitsSold": 27 },
{ "ProductCategory": "衣服", "UnitPrice": 9.553, "SellerName": "Elisa Longbottom", "Country": "ブルガリア", "City": "プロブディブ", "Date": "09/12/2008", "UnitsSold": 5 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 50.820, "SellerName": "Larry Lieb", "Country": "ブルガリア", "City": "プロブディブ", "Date": "09/19/2008", "UnitsSold": 191 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 79.869, "SellerName": "Bryan Culver", "Country": "ブルガリア", "City": "ソフィア", "Date": "09/25/2008", "UnitsSold": 421 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 62.238, "SellerName": "Carl Costello", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "10/03/2008", "UnitsSold": 297 },
{ "ProductCategory": "衣服", "UnitPrice": 96.094, "SellerName": "Glenn Landeros", "Country": "日本", "City": "横浜", "Date": "10/04/2008", "UnitsSold": 128 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 47.009, "SellerName": "Howard Sprouse", "Country": "イギリス", "City": "リバプール", "Date": "10/13/2008", "UnitsSold": 210 },
{ "ProductCategory": "バイク", "UnitPrice": 35.756, "SellerName": "Russell Shorter", "Country": "日本", "City": "東京", "Date": "10/14/2008", "UnitsSold": 315 },
{ "ProductCategory": "バイク", "UnitPrice": 78.989, "SellerName": "Benjamin Meekins", "Country": "日本", "City": "大阪", "Date": "10/19/2008", "UnitsSold": 489 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 84.320, "SellerName": "Walter Pang", "Country": "イギリス", "City": "オックスフォード", "Date": "10/21/2008", "UnitsSold": 47 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 25.528, "SellerName": "John Smith", "Country": "日本", "City": "大阪", "Date": "10/22/2008", "UnitsSold": 92 },
{ "ProductCategory": "バイク", "UnitPrice": 23.874, "SellerName": "Alfredo Fetuchini", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "11/01/2008", "UnitsSold": 30 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 53.634, "SellerName": "Stanley Brooker", "Country": "ブルガリア", "City": "ソフィア", "Date": "11/01/2008", "UnitsSold": 132 },
{ "ProductCategory": "バイク", "UnitPrice": 68.152, "SellerName": "Bryan Culver", "Country": "日本", "City": "東京", "Date": "11/10/2008", "UnitsSold": 368 },
{ "ProductCategory": "衣服", "UnitPrice": 59.880, "SellerName": "Kathe Pettel", "Country": "イギリス", "City": "オックスフォード", "Date": "11/11/2008", "UnitsSold": 482 },
{ "ProductCategory": "衣服", "UnitPrice": 5.754, "SellerName": "Antonio Charbonneau", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "11/11/2008", "UnitsSold": 22 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 95.849, "SellerName": "Claudia Kobayashi", "Country": "イギリス", "City": "オックスフォード", "Date": "11/20/2008", "UnitsSold": 159 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 59.066, "SellerName": "Alfredo Fetuchini", "Country": "アメリカ", "City": "リンカーン", "Date": "11/25/2008", "UnitsSold": 52 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 94.029, "SellerName": "Harry Tyler", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "01/05/2009", "UnitsSold": 194 },
{ "ProductCategory": "衣服", "UnitPrice": 12.794, "SellerName": "David Haley", "Country": "イギリス", "City": "ロンドン", "Date": "01/08/2009", "UnitsSold": 100 },
{ "ProductCategory": "衣服", "UnitPrice": 37.852, "SellerName": "Benjamin Meekins", "Country": "イギリス", "City": "オックスフォード", "Date": "01/10/2009", "UnitsSold": 252 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 79.434, "SellerName": "Kathe Pettel", "Country": "イギリス", "City": "バーミンガム", "Date": "01/13/2009", "UnitsSold": 116 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 90.918, "SellerName": "Elisa Longbottom", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "01/14/2009", "UnitsSold": 259 },
{ "ProductCategory": "バイク", "UnitPrice": 99.848, "SellerName": "Glenn Landeros", "Country": "ブルガリア", "City": "ソフィア", "Date": "01/19/2009", "UnitsSold": 217 },
{ "ProductCategory": "バイク", "UnitPrice": 43.273, "SellerName": "Bryan Culver", "Country": "ドイツ", "City": "ハンブルグ", "Date": "01/22/2009", "UnitsSold": 48 },
{ "ProductCategory": "衣服", "UnitPrice": 0.654, "SellerName": "Stanley Brooker", "Country": "アメリカ", "City": "メルビル", "Date": "02/02/2009", "UnitsSold": 445 },
{ "ProductCategory": "衣服", "UnitPrice": 60.464, "SellerName": "Kathe Pettel", "Country": "ブルガリア", "City": "ソフィア", "Date": "02/03/2009", "UnitsSold": 90 },
{ "ProductCategory": "バイク", "UnitPrice": 13.659, "SellerName": "Harry Tyler", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "02/07/2009", "UnitsSold": 453 },
{ "ProductCategory": "バイク", "UnitPrice": 44.160, "SellerName": "Harry Tyler", "Country": "日本", "City": "東京", "Date": "02/07/2009", "UnitsSold": 450 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 94.330, "SellerName": "Lydia Burson", "Country": "日本", "City": "大阪", "Date": "02/07/2009", "UnitsSold": 152 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 8.783, "SellerName": "Harry Tyler", "Country": "ブルガリア", "City": "プロブディブ", "Date": "02/16/2009", "UnitsSold": 119 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 79.235, "SellerName": "Kathe Pettel", "Country": "ブルガリア", "City": "ソフィア", "Date": "02/16/2009", "UnitsSold": 463 },
{ "ProductCategory": "バイク", "UnitPrice": 18.588, "SellerName": "Howard Sprouse", "Country": "ドイツ", "City": "ベルリン", "Date": "02/17/2009", "UnitsSold": 150 },
{ "ProductCategory": "バイク", "UnitPrice": 27.901, "SellerName": "Walter Pang", "Country": "アメリカ", "City": "リンカーン", "Date": "02/19/2009", "UnitsSold": 210 },
{ "ProductCategory": "バイク", "UnitPrice": 67.192, "SellerName": "Kathe Pettel", "Country": "アメリカ", "City": "アトランタ", "Date": "02/20/2009", "UnitsSold": 150 },
{ "ProductCategory": "バイク", "UnitPrice": 35.849, "SellerName": "Benjamin Meekins", "Country": "ブルガリア", "City": "プロブディブ", "Date": "02/21/2009", "UnitsSold": 97 },
{ "ProductCategory": "バイク", "UnitPrice": 34.073, "SellerName": "Stanley Brooker", "Country": "日本", "City": "東京", "Date": "02/22/2009", "UnitsSold": 256 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 66.299, "SellerName": "Russell Shorter", "Country": "アメリカ", "City": "クランバリ", "Date": "02/24/2009", "UnitsSold": 172 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 14.901, "SellerName": "Monica Freitag", "Country": "日本", "City": "東京", "Date": "02/24/2009", "UnitsSold": 489 },
{ "ProductCategory": "バイク", "UnitPrice": 51.915, "SellerName": "Claudia Kobayashi", "Country": "日本", "City": "横浜", "Date": "02/27/2009", "UnitsSold": 222 },
{ "ProductCategory": "衣服", "UnitPrice": 98.308, "SellerName": "Nicholas Carmona", "Country": "ブルガリア", "City": "ソフィア", "Date": "03/03/2009", "UnitsSold": 300 },
{ "ProductCategory": "バイク", "UnitPrice": 72.820, "SellerName": "Harry Tyler", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "03/03/2009", "UnitsSold": 270 },
{ "ProductCategory": "衣服", "UnitPrice": 16.260, "SellerName": "Claudia Kobayashi", "Country": "アメリカ", "City": "クランバリ", "Date": "03/07/2009", "UnitsSold": 263 },
{ "ProductCategory": "バイク", "UnitPrice": 93.446, "SellerName": "Elisa Longbottom", "Country": "日本", "City": "大阪", "Date": "03/10/2009", "UnitsSold": 28 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 42.142, "SellerName": "Howard Sprouse", "Country": "日本", "City": "横浜", "Date": "03/15/2009", "UnitsSold": 237 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 54.983, "SellerName": "Claudia Kobayashi", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "03/16/2009", "UnitsSold": 171 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 97.311, "SellerName": "Kathe Pettel", "Country": "ドイツ", "City": "ハンブルグ", "Date": "03/27/2009", "UnitsSold": 251 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 50.889, "SellerName": "Antonio Charbonneau", "Country": "ブルガリア", "City": "ソフィア", "Date": "04/01/2009", "UnitsSold": 275 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 4.714, "SellerName": "Brandon Mckim", "Country": "日本", "City": "東京", "Date": "04/06/2009", "UnitsSold": 311 },
{ "ProductCategory": "衣服", "UnitPrice": 70.850, "SellerName": "Monica Freitag", "Country": "日本", "City": "大阪", "Date": "04/07/2009", "UnitsSold": 217 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 96.778, "SellerName": "Claudia Kobayashi", "Country": "ブルガリア", "City": "ソフィア", "Date": "04/09/2009", "UnitsSold": 360 },
{ "ProductCategory": "バイク", "UnitPrice": 83.505, "SellerName": "Howard Sprouse", "Country": "日本", "City": "横浜", "Date": "04/12/2009", "UnitsSold": 35 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 96.413, "SellerName": "Nicholas Carmona", "Country": "アメリカ", "City": "メルビル", "Date": "04/15/2009", "UnitsSold": 294 },
{ "ProductCategory": "衣服", "UnitPrice": 70.802, "SellerName": "Howard Sprouse", "Country": "ブルガリア", "City": "プロブディブ", "Date": "04/16/2009", "UnitsSold": 436 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 94.524, "SellerName": "Kathe Pettel", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "04/20/2009", "UnitsSold": 78 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 29.603, "SellerName": "David Haley", "Country": "アメリカ", "City": "サクラメント", "Date": "04/22/2009", "UnitsSold": 301 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 70.597, "SellerName": "Mark Slater", "Country": "アメリカ", "City": "シカゴ", "Date": "05/02/2009", "UnitsSold": 24 },
{ "ProductCategory": "バイク", "UnitPrice": 71.666, "SellerName": "Howard Sprouse", "Country": "日本", "City": "大阪", "Date": "05/04/2009", "UnitsSold": 332 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 14.552, "SellerName": "Mark Slater", "Country": "アメリカ", "City": "アトランタ", "Date": "05/11/2009", "UnitsSold": 307 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 36.712, "SellerName": "Harold Garvin", "Country": "日本", "City": "横浜", "Date": "05/11/2009", "UnitsSold": 375 },
{ "ProductCategory": "バイク", "UnitPrice": 62.745, "SellerName": "Benjamin Dupree", "Country": "イギリス", "City": "ケンブリッジ", "Date": "05/12/2009", "UnitsSold": 499 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 13.699, "SellerName": "Russell Shorter", "Country": "日本", "City": "東京", "Date": "05/21/2009", "UnitsSold": 337 },
{ "ProductCategory": "バイク", "UnitPrice": 46.090, "SellerName": "Larry Lieb", "Country": "アメリカ", "City": "サクラメント", "Date": "05/24/2009", "UnitsSold": 284 },
{ "ProductCategory": "衣服", "UnitPrice": 95.336, "SellerName": "Howard Sprouse", "Country": "ブルガリア", "City": "ソフィア", "Date": "05/26/2009", "UnitsSold": 292 },
{ "ProductCategory": "バイク", "UnitPrice": 78.090, "SellerName": "Howard Sprouse", "Country": "ブルガリア", "City": "ソフィア", "Date": "05/26/2009", "UnitsSold": 424 },
{ "ProductCategory": "衣服", "UnitPrice": 99.392, "SellerName": "Mark Slater", "Country": "イギリス", "City": "オックスフォード", "Date": "06/05/2009", "UnitsSold": 271 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 86.944, "SellerName": "Howard Sprouse", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "06/10/2009", "UnitsSold": 6 },
{ "ProductCategory": "バイク", "UnitPrice": 13.495, "SellerName": "Elisa Longbottom", "Country": "アメリカ", "City": "リンカーン", "Date": "06/12/2009", "UnitsSold": 44 },
{ "ProductCategory": "バイク", "UnitPrice": 99.648, "SellerName": "Nicholas Carmona", "Country": "日本", "City": "東京", "Date": "06/12/2009", "UnitsSold": 277 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 16.877, "SellerName": "Brandon Mckim", "Country": "イギリス", "City": "ケンブリッジ", "Date": "06/13/2009", "UnitsSold": 98 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 42.376, "SellerName": "Elisa Longbottom", "Country": "日本", "City": "大阪", "Date": "06/22/2009", "UnitsSold": 443 },
{ "ProductCategory": "衣服", "UnitPrice": 79.539, "SellerName": "Benjamin Dupree", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "06/26/2009", "UnitsSold": 409 },
{ "ProductCategory": "衣服", "UnitPrice": 26.252, "SellerName": "Walter Pang", "Country": "ブルガリア", "City": "ソフィア", "Date": "07/02/2009", "UnitsSold": 240 },
{ "ProductCategory": "衣服", "UnitPrice": 34.046, "SellerName": "Kathe Pettel", "Country": "イギリス", "City": "バーミンガム", "Date": "07/10/2009", "UnitsSold": 23 },
{ "ProductCategory": "バイク", "UnitPrice": 29.379, "SellerName": "Larry Lieb", "Country": "日本", "City": "東京", "Date": "07/12/2009", "UnitsSold": 109 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 86.650, "SellerName": "Nicholas Carmona", "Country": "ブルガリア", "City": "ソフィア", "Date": "07/13/2009", "UnitsSold": 117 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 58.386, "SellerName": "Mark Slater", "Country": "イギリス", "City": "バーミンガム", "Date": "07/15/2009", "UnitsSold": 336 },
{ "ProductCategory": "衣服", "UnitPrice": 39.759, "SellerName": "Antonio Charbonneau", "Country": "ドイツ", "City": "ハンブルグ", "Date": "07/18/2009", "UnitsSold": 372 },
{ "ProductCategory": "バイク", "UnitPrice": 10.110, "SellerName": "Larry Lieb", "Country": "ドイツ", "City": "ハンブルグ", "Date": "07/19/2009", "UnitsSold": 403 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 17.772, "SellerName": "Harry Tyler", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "07/19/2009", "UnitsSold": 144 },
{ "ProductCategory": "衣服", "UnitPrice": 21.543, "SellerName": "Lydia Burson", "Country": "日本", "City": "大阪", "Date": "07/19/2009", "UnitsSold": 395 },
{ "ProductCategory": "衣服", "UnitPrice": 33.561, "SellerName": "Nicholas Carmona", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "07/20/2009", "UnitsSold": 236 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 48.763, "SellerName": "Larry Lieb", "Country": "日本", "City": "大阪", "Date": "07/20/2009", "UnitsSold": 160 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 81.797, "SellerName": "David Haley", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "07/20/2009", "UnitsSold": 157 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 9.673, "SellerName": "Glenn Landeros", "Country": "日本", "City": "東京", "Date": "07/25/2009", "UnitsSold": 255 },
{ "ProductCategory": "バイク", "UnitPrice": 88.575, "SellerName": "Mark Slater", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "08/16/2009", "UnitsSold": 284 },
{ "ProductCategory": "衣服", "UnitPrice": 89.335, "SellerName": "Walter Pang", "Country": "ブルガリア", "City": "ソフィア", "Date": "08/17/2009", "UnitsSold": 333 },
{ "ProductCategory": "バイク", "UnitPrice": 23.987, "SellerName": "Monica Freitag", "Country": "日本", "City": "横浜", "Date": "08/17/2009", "UnitsSold": 48 },
{ "ProductCategory": "バイク", "UnitPrice": 19.359, "SellerName": "Kathe Pettel", "Country": "日本", "City": "東京", "Date": "08/18/2009", "UnitsSold": 399 },
{ "ProductCategory": "バイク", "UnitPrice": 9.300, "SellerName": "Mark Slater", "Country": "ブルガリア", "City": "プロブディブ", "Date": "08/24/2009", "UnitsSold": 413 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 1.148, "SellerName": "Monica Freitag", "Country": "イギリス", "City": "オックスフォード", "Date": "09/06/2009", "UnitsSold": 182 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 76.979, "SellerName": "Russell Shorter", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "09/06/2009", "UnitsSold": 156 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 80.664, "SellerName": "Antonio Charbonneau", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "09/09/2009", "UnitsSold": 293 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 22.788, "SellerName": "Benjamin Dupree", "Country": "イギリス", "City": "バーミンガム", "Date": "10/01/2009", "UnitsSold": 16 },
{ "ProductCategory": "バイク", "UnitPrice": 78.053, "SellerName": "Benjamin Meekins", "Country": "イギリス", "City": "リバプール", "Date": "10/01/2009", "UnitsSold": 106 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 72.974, "SellerName": "Glenn Landeros", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "10/06/2009", "UnitsSold": 16 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 22.058, "SellerName": "John Smith", "Country": "イギリス", "City": "バーミンガム", "Date": "10/07/2009", "UnitsSold": 187 },
{ "ProductCategory": "バイク", "UnitPrice": 42.791, "SellerName": "Harry Tyler", "Country": "日本", "City": "大阪", "Date": "10/10/2009", "UnitsSold": 137 },
{ "ProductCategory": "衣服", "UnitPrice": 46.231, "SellerName": "Mark Slater", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "10/14/2009", "UnitsSold": 138 },
{ "ProductCategory": "バイク", "UnitPrice": 14.350, "SellerName": "Mark Slater", "Country": "ブルガリア", "City": "ソフィア", "Date": "10/24/2009", "UnitsSold": 256 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 40.100, "SellerName": "Antonio Charbonneau", "Country": "ドイツ", "City": "ハンブルグ", "Date": "10/24/2009", "UnitsSold": 353 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 17.189, "SellerName": "Lydia Burson", "Country": "ドイツ", "City": "ハンブルグ", "Date": "11/01/2009", "UnitsSold": 359 },
{ "ProductCategory": "バイク", "UnitPrice": 52.031, "SellerName": "Walter Pang", "Country": "アメリカ", "City": "メルビル", "Date": "11/04/2009", "UnitsSold": 134 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 90.993, "SellerName": "Larry Lieb", "Country": "イギリス", "City": "ロンドン", "Date": "11/09/2009", "UnitsSold": 263 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 88.538, "SellerName": "Monica Freitag", "Country": "ドイツ", "City": "ベルリン", "Date": "11/11/2009", "UnitsSold": 313 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 46.481, "SellerName": "Stanley Brooker", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "11/16/2009", "UnitsSold": 115 },
{ "ProductCategory": "衣服", "UnitPrice": 20.418, "SellerName": "Claudia Kobayashi", "Country": "アメリカ", "City": "ニューヨーク", "Date": "11/17/2009", "UnitsSold": 414 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 70.830, "SellerName": "Kathe Pettel", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "11/21/2009", "UnitsSold": 53 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 81.628, "SellerName": "John Smith", "Country": "イギリス", "City": "ロンドン", "Date": "11/22/2009", "UnitsSold": 472 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 9.714, "SellerName": "Harry Tyler", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "11/23/2009", "UnitsSold": 199 },
{ "ProductCategory": "バイク", "UnitPrice": 29.755, "SellerName": "Harold Garvin", "Country": "アメリカ", "City": "リンカーン", "Date": "11/24/2009", "UnitsSold": 241 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 33.118, "SellerName": "Glenn Landeros", "Country": "アメリカ", "City": "クランバリ", "Date": "11/24/2009", "UnitsSold": 320 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 65.635, "SellerName": "David Haley", "Country": "イギリス", "City": "リバプール", "Date": "01/02/2010", "UnitsSold": 299 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 62.085, "SellerName": "Benjamin Dupree", "Country": "ブルガリア", "City": "プロブディブ", "Date": "01/08/2010", "UnitsSold": 366 },
{ "ProductCategory": "衣服", "UnitPrice": 78.474, "SellerName": "John Smith", "Country": "アメリカ", "City": "メルビル", "Date": "01/10/2010", "UnitsSold": 290 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 11.587, "SellerName": "Lydia Burson", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "01/11/2010", "UnitsSold": 350 },
{ "ProductCategory": "衣服", "UnitPrice": 33.427, "SellerName": "Russell Shorter", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "01/14/2010", "UnitsSold": 469 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 96.141, "SellerName": "Nicholas Carmona", "Country": "イギリス", "City": "オックスフォード", "Date": "01/21/2010", "UnitsSold": 352 },
{ "ProductCategory": "バイク", "UnitPrice": 92.171, "SellerName": "Larry Lieb", "Country": "ブルガリア", "City": "プロブディブ", "Date": "01/25/2010", "UnitsSold": 47 },
{ "ProductCategory": "バイク", "UnitPrice": 93.045, "SellerName": "Russell Shorter", "Country": "アメリカ", "City": "シカゴ", "Date": "02/02/2010", "UnitsSold": 153 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 38.888, "SellerName": "Antonio Charbonneau", "Country": "ドイツ", "City": "ベルリン", "Date": "02/02/2010", "UnitsSold": 211 },
{ "ProductCategory": "バイク", "UnitPrice": 99.255, "SellerName": "Russell Shorter", "Country": "日本", "City": "東京", "Date": "02/04/2010", "UnitsSold": 267 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 94.418, "SellerName": "Antonio Charbonneau", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "02/04/2010", "UnitsSold": 91 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 19.770, "SellerName": "Claudia Kobayashi", "Country": "ドイツ", "City": "ベルリン", "Date": "02/05/2010", "UnitsSold": 84 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 87.127, "SellerName": "Howard Sprouse", "Country": "アメリカ", "City": "ミネアポリス", "Date": "02/11/2010", "UnitsSold": 270 },
{ "ProductCategory": "バイク", "UnitPrice": 76.219, "SellerName": "Alfredo Fetuchini", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "02/12/2010", "UnitsSold": 496 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 51.935, "SellerName": "John Smith", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "02/16/2010", "UnitsSold": 24 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 21.709, "SellerName": "Walter Pang", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "02/17/2010", "UnitsSold": 41 },
{ "ProductCategory": "バイク", "UnitPrice": 15.665, "SellerName": "John Smith", "Country": "ブルガリア", "City": "プロブディブ", "Date": "02/22/2010", "UnitsSold": 365 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 2.677, "SellerName": "Brandon Mckim", "Country": "アメリカ", "City": "ミネアポリス", "Date": "03/01/2010", "UnitsSold": 202 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 52.256, "SellerName": "Howard Sprouse", "Country": "日本", "City": "横浜", "Date": "03/01/2010", "UnitsSold": 225 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 0.306, "SellerName": "Stanley Brooker", "Country": "ドイツ", "City": "ハンブルグ", "Date": "03/03/2010", "UnitsSold": 206 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 22.362, "SellerName": "Larry Lieb", "Country": "アメリカ", "City": "シカゴ", "Date": "03/11/2010", "UnitsSold": 158 },
{ "ProductCategory": "バイク", "UnitPrice": 94.751, "SellerName": "Benjamin Meekins", "Country": "日本", "City": "横浜", "Date": "03/14/2010", "UnitsSold": 169 },
{ "ProductCategory": "バイク", "UnitPrice": 1.124, "SellerName": "John Smith", "Country": "日本", "City": "東京", "Date": "03/15/2010", "UnitsSold": 4 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 12.168, "SellerName": "Monica Freitag", "Country": "ブルガリア", "City": "ソフィア", "Date": "03/15/2010", "UnitsSold": 232 },
{ "ProductCategory": "バイク", "UnitPrice": 58.754, "SellerName": "Mark Slater", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "03/16/2010", "UnitsSold": 421 },
{ "ProductCategory": "バイク", "UnitPrice": 43.950, "SellerName": "David Haley", "Country": "イギリス", "City": "バーミンガム", "Date": "03/25/2010", "UnitsSold": 260 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 54.451, "SellerName": "Brandon Mckim", "Country": "日本", "City": "東京", "Date": "04/02/2010", "UnitsSold": 194 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 94.565, "SellerName": "Walter Pang", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "04/05/2010", "UnitsSold": 491 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 11.121, "SellerName": "Harold Garvin", "Country": "イギリス", "City": "リバプール", "Date": "04/14/2010", "UnitsSold": 256 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 18.092, "SellerName": "Alfredo Fetuchini", "Country": "アメリカ", "City": "クランバリ", "Date": "04/15/2010", "UnitsSold": 279 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 8.277, "SellerName": "Carl Costello", "Country": "イギリス", "City": "オックスフォード", "Date": "04/15/2010", "UnitsSold": 287 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 77.894, "SellerName": "Carl Costello", "Country": "日本", "City": "横浜", "Date": "04/22/2010", "UnitsSold": 363 },
{ "ProductCategory": "衣服", "UnitPrice": 55.624, "SellerName": "Mark Slater", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "04/22/2010", "UnitsSold": 499 },
{ "ProductCategory": "バイク", "UnitPrice": 39.338, "SellerName": "Lydia Burson", "Country": "ドイツ", "City": "ハンブルグ", "Date": "04/24/2010", "UnitsSold": 109 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 7.738, "SellerName": "Benjamin Dupree", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "05/04/2010", "UnitsSold": 25 },
{ "ProductCategory": "衣服", "UnitPrice": 62.437, "SellerName": "Alfredo Fetuchini", "Country": "アメリカ", "City": "ニューヨーク", "Date": "05/05/2010", "UnitsSold": 64 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 38.696, "SellerName": "Howard Sprouse", "Country": "ドイツ", "City": "ベルリン", "Date": "05/06/2010", "UnitsSold": 256 },
{ "ProductCategory": "バイク", "UnitPrice": 17.764, "SellerName": "Benjamin Meekins", "Country": "日本", "City": "大阪", "Date": "05/07/2010", "UnitsSold": 50 },
{ "ProductCategory": "衣服", "UnitPrice": 57.771, "SellerName": "Bryan Culver", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "05/07/2010", "UnitsSold": 437 },
{ "ProductCategory": "バイク", "UnitPrice": 21.412, "SellerName": "Bryan Culver", "Country": "アメリカ", "City": "シカゴ", "Date": "05/19/2010", "UnitsSold": 253 },
{ "ProductCategory": "衣服", "UnitPrice": 10.100, "SellerName": "Monica Freitag", "Country": "アメリカ", "City": "アトランタ", "Date": "05/22/2010", "UnitsSold": 312 },
{ "ProductCategory": "バイク", "UnitPrice": 87.649, "SellerName": "Claudia Kobayashi", "Country": "イギリス", "City": "ロンドン", "Date": "05/24/2010", "UnitsSold": 82 },
{ "ProductCategory": "衣服", "UnitPrice": 42.552, "SellerName": "Harold Garvin", "Country": "ブルガリア", "City": "プロブディブ", "Date": "06/01/2010", "UnitsSold": 467 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 79.772, "SellerName": "Alfredo Fetuchini", "Country": "イギリス", "City": "オックスフォード", "Date": "06/05/2010", "UnitsSold": 74 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 1.835, "SellerName": "Nicholas Carmona", "Country": "ドイツ", "City": "ハンブルグ", "Date": "06/10/2010", "UnitsSold": 81 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 15.038, "SellerName": "Kathe Pettel", "Country": "イギリス", "City": "リバプール", "Date": "06/25/2010", "UnitsSold": 88 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 43.393, "SellerName": "Antonio Charbonneau", "Country": "ブルガリア", "City": "プロブディブ", "Date": "06/26/2010", "UnitsSold": 126 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 16.236, "SellerName": "Elisa Longbottom", "Country": "アメリカ", "City": "リンカーン", "Date": "06/27/2010", "UnitsSold": 112 },
{ "ProductCategory": "衣服", "UnitPrice": 59.192, "SellerName": "Antonio Charbonneau", "Country": "アメリカ", "City": "シカゴ", "Date": "06/27/2010", "UnitsSold": 47 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 39.858, "SellerName": "Claudia Kobayashi", "Country": "日本", "City": "横浜", "Date": "07/05/2010", "UnitsSold": 218 },
{ "ProductCategory": "バイク", "UnitPrice": 27.044, "SellerName": "Nicholas Carmona", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "07/05/2010", "UnitsSold": 34 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 14.269, "SellerName": "Bryan Culver", "Country": "日本", "City": "大阪", "Date": "07/13/2010", "UnitsSold": 492 },
{ "ProductCategory": "衣服", "UnitPrice": 53.378, "SellerName": "Harry Tyler", "Country": "アメリカ", "City": "シカゴ", "Date": "07/16/2010", "UnitsSold": 464 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 21.432, "SellerName": "Harry Tyler", "Country": "日本", "City": "横浜", "Date": "07/17/2010", "UnitsSold": 118 },
{ "ProductCategory": "バイク", "UnitPrice": 23.970, "SellerName": "Nicholas Carmona", "Country": "ドイツ", "City": "ベルリン", "Date": "07/18/2010", "UnitsSold": 442 },
{ "ProductCategory": "衣服", "UnitPrice": 37.523, "SellerName": "Benjamin Meekins", "Country": "イギリス", "City": "バーミンガム", "Date": "07/23/2010", "UnitsSold": 248 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 60.678, "SellerName": "Lydia Burson", "Country": "アメリカ", "City": "アトランタ", "Date": "07/23/2010", "UnitsSold": 472 },
{ "ProductCategory": "バイク", "UnitPrice": 78.023, "SellerName": "Alfredo Fetuchini", "Country": "ドイツ", "City": "ベルリン", "Date": "07/24/2010", "UnitsSold": 140 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 47.635, "SellerName": "Lydia Burson", "Country": "ドイツ", "City": "ハンブルグ", "Date": "07/26/2010", "UnitsSold": 118 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 58.201, "SellerName": "Harry Tyler", "Country": "アメリカ", "City": "アトランタ", "Date": "07/27/2010", "UnitsSold": 176 },
{ "ProductCategory": "衣服", "UnitPrice": 98.375, "SellerName": "Russell Shorter", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "08/01/2010", "UnitsSold": 77 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 2.918, "SellerName": "Glenn Landeros", "Country": "日本", "City": "東京", "Date": "08/08/2010", "UnitsSold": 105 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 98.157, "SellerName": "Alfredo Fetuchini", "Country": "ドイツ", "City": "ハンブルグ", "Date": "08/21/2010", "UnitsSold": 160 },
{ "ProductCategory": "バイク", "UnitPrice": 79.036, "SellerName": "Stanley Brooker", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "08/26/2010", "UnitsSold": 186 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 17.790, "SellerName": "Harold Garvin", "Country": "日本", "City": "東京", "Date": "09/04/2010", "UnitsSold": 380 },
{ "ProductCategory": "バイク", "UnitPrice": 38.684, "SellerName": "John Smith", "Country": "アメリカ", "City": "アトランタ", "Date": "09/11/2010", "UnitsSold": 470 },
{ "ProductCategory": "衣服", "UnitPrice": 75.233, "SellerName": "Benjamin Dupree", "Country": "イギリス", "City": "リバプール", "Date": "09/13/2010", "UnitsSold": 348 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 55.301, "SellerName": "Carl Costello", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "09/14/2010", "UnitsSold": 151 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 51.315, "SellerName": "Kathe Pettel", "Country": "ドイツ", "City": "ハンブルグ", "Date": "09/24/2010", "UnitsSold": 7 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 31.307, "SellerName": "Monica Freitag", "Country": "日本", "City": "大阪", "Date": "10/07/2010", "UnitsSold": 123 },
{ "ProductCategory": "衣服", "UnitPrice": 79.959, "SellerName": "Mark Slater", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "10/08/2010", "UnitsSold": 374 },
{ "ProductCategory": "衣服", "UnitPrice": 94.657, "SellerName": "Kathe Pettel", "Country": "イギリス", "City": "ケンブリッジ", "Date": "10/11/2010", "UnitsSold": 178 },
{ "ProductCategory": "衣服", "UnitPrice": 41.967, "SellerName": "Bryan Culver", "Country": "イギリス", "City": "ロンドン", "Date": "10/22/2010", "UnitsSold": 354 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 46.564, "SellerName": "Elisa Longbottom", "Country": "アメリカ", "City": "メルビル", "Date": "10/25/2010", "UnitsSold": 459 },
{ "ProductCategory": "衣服", "UnitPrice": 27.142, "SellerName": "Mark Slater", "Country": "イギリス", "City": "バーミンガム", "Date": "11/02/2010", "UnitsSold": 78 },
{ "ProductCategory": "バイク", "UnitPrice": 30.232, "SellerName": "Walter Pang", "Country": "ブルガリア", "City": "プロブディブ", "Date": "11/03/2010", "UnitsSold": 417 },
{ "ProductCategory": "衣服", "UnitPrice": 82.166, "SellerName": "Walter Pang", "Country": "日本", "City": "横浜", "Date": "11/12/2010", "UnitsSold": 208 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 13.240, "SellerName": "Harold Garvin", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "11/19/2010", "UnitsSold": 359 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 8.829, "SellerName": "Russell Shorter", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "11/25/2010", "UnitsSold": 392 },
{ "ProductCategory": "衣服", "UnitPrice": 78.426, "SellerName": "John Smith", "Country": "ブルガリア", "City": "プロブディブ", "Date": "01/01/2011", "UnitsSold": 241 },
{ "ProductCategory": "衣服", "UnitPrice": 50.590, "SellerName": "Claudia Kobayashi", "Country": "イギリス", "City": "リバプール", "Date": "01/04/2011", "UnitsSold": 62 },
{ "ProductCategory": "バイク", "UnitPrice": 6.307, "SellerName": "Elisa Longbottom", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "01/06/2011", "UnitsSold": 485 },
{ "ProductCategory": "バイク", "UnitPrice": 47.444, "SellerName": "Bryan Culver", "Country": "日本", "City": "東京", "Date": "01/14/2011", "UnitsSold": 470 },
{ "ProductCategory": "バイク", "UnitPrice": 6.147, "SellerName": "Harry Tyler", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "01/23/2011", "UnitsSold": 197 },
{ "ProductCategory": "衣服", "UnitPrice": 57.598, "SellerName": "Larry Lieb", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "01/26/2011", "UnitsSold": 353 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 37.619, "SellerName": "Benjamin Meekins", "Country": "アメリカ", "City": "シカゴ", "Date": "02/01/2011", "UnitsSold": 338 },
{ "ProductCategory": "衣服", "UnitPrice": 20.995, "SellerName": "Claudia Kobayashi", "Country": "日本", "City": "横浜", "Date": "02/08/2011", "UnitsSold": 17 },
{ "ProductCategory": "衣服", "UnitPrice": 11.776, "SellerName": "Antonio Charbonneau", "Country": "アメリカ", "City": "サクラメント", "Date": "02/12/2011", "UnitsSold": 429 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 64.996, "SellerName": "Alfredo Fetuchini", "Country": "ドイツ", "City": "ベルリン", "Date": "02/14/2011", "UnitsSold": 385 },
{ "ProductCategory": "衣服", "UnitPrice": 19.899, "SellerName": "Claudia Kobayashi", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "02/20/2011", "UnitsSold": 166 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 3.243, "SellerName": "Lydia Burson", "Country": "ブルガリア", "City": "ソフィア", "Date": "02/20/2011", "UnitsSold": 137 },
{ "ProductCategory": "バイク", "UnitPrice": 18.180, "SellerName": "Russell Shorter", "Country": "ドイツ", "City": "ベルリン", "Date": "02/24/2011", "UnitsSold": 443 },
{ "ProductCategory": "バイク", "UnitPrice": 20.442, "SellerName": "Carl Costello", "Country": "ブルガリア", "City": "ソフィア", "Date": "02/26/2011", "UnitsSold": 40 },
{ "ProductCategory": "バイク", "UnitPrice": 20.547, "SellerName": "Glenn Landeros", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "03/05/2011", "UnitsSold": 138 },
{ "ProductCategory": "衣服", "UnitPrice": 23.766, "SellerName": "Lydia Burson", "Country": "アメリカ", "City": "メルビル", "Date": "03/09/2011", "UnitsSold": 15 },
{ "ProductCategory": "衣服", "UnitPrice": 76.253, "SellerName": "Antonio Charbonneau", "Country": "日本", "City": "大阪", "Date": "03/09/2011", "UnitsSold": 469 },
{ "ProductCategory": "衣服", "UnitPrice": 93.251, "SellerName": "Russell Shorter", "Country": "イギリス", "City": "オックスフォード", "Date": "03/11/2011", "UnitsSold": 426 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 62.992, "SellerName": "Benjamin Dupree", "Country": "日本", "City": "大阪", "Date": "03/16/2011", "UnitsSold": 208 },
{ "ProductCategory": "衣服", "UnitPrice": 58.498, "SellerName": "Brandon Mckim", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "03/21/2011", "UnitsSold": 155 },
{ "ProductCategory": "衣服", "UnitPrice": 82.383, "SellerName": "Stanley Brooker", "Country": "日本", "City": "東京", "Date": "03/23/2011", "UnitsSold": 381 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 19.168, "SellerName": "Nicholas Carmona", "Country": "ブルガリア", "City": "プロブディブ", "Date": "04/12/2011", "UnitsSold": 5 },
{ "ProductCategory": "衣服", "UnitPrice": 53.516, "SellerName": "Walter Pang", "Country": "イギリス", "City": "ケンブリッジ", "Date": "04/12/2011", "UnitsSold": 221 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 97.407, "SellerName": "Howard Sprouse", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "04/14/2011", "UnitsSold": 39 },
{ "ProductCategory": "バイク", "UnitPrice": 74.054, "SellerName": "Mark Slater", "Country": "ブルガリア", "City": "ソフィア", "Date": "04/16/2011", "UnitsSold": 468 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 8.104, "SellerName": "Claudia Kobayashi", "Country": "ブルガリア", "City": "ソフィア", "Date": "04/17/2011", "UnitsSold": 44 },
{ "ProductCategory": "衣服", "UnitPrice": 59.055, "SellerName": "John Smith", "Country": "イギリス", "City": "オックスフォード", "Date": "04/22/2011", "UnitsSold": 287 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 96.816, "SellerName": "Russell Shorter", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "04/24/2011", "UnitsSold": 463 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 76.712, "SellerName": "Walter Pang", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "04/24/2011", "UnitsSold": 335 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 73.424, "SellerName": "Walter Pang", "Country": "アメリカ", "City": "リンカーン", "Date": "04/24/2011", "UnitsSold": 211 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 66.398, "SellerName": "Benjamin Dupree", "Country": "アメリカ", "City": "サクラメント", "Date": "05/03/2011", "UnitsSold": 291 },
{ "ProductCategory": "衣服", "UnitPrice": 37.014, "SellerName": "John Smith", "Country": "アメリカ", "City": "シカゴ", "Date": "05/05/2011", "UnitsSold": 1 },
{ "ProductCategory": "衣服", "UnitPrice": 21.307, "SellerName": "Alfredo Fetuchini", "Country": "イギリス", "City": "リバプール", "Date": "05/06/2011", "UnitsSold": 120 },
{ "ProductCategory": "バイク", "UnitPrice": 19.893, "SellerName": "Benjamin Dupree", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "05/06/2011", "UnitsSold": 382 },
{ "ProductCategory": "衣服", "UnitPrice": 16.486, "SellerName": "Harry Tyler", "Country": "日本", "City": "東京", "Date": "05/07/2011", "UnitsSold": 63 },
{ "ProductCategory": "衣服", "UnitPrice": 41.660, "SellerName": "Stanley Brooker", "Country": "ドイツ", "City": "ハンブルグ", "Date": "05/12/2011", "UnitsSold": 230 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 4.977, "SellerName": "Larry Lieb", "Country": "日本", "City": "大阪", "Date": "05/13/2011", "UnitsSold": 362 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 10.749, "SellerName": "Monica Freitag", "Country": "ドイツ", "City": "ハンブルグ", "Date": "05/17/2011", "UnitsSold": 430 },
{ "ProductCategory": "バイク", "UnitPrice": 66.047, "SellerName": "Nicholas Carmona", "Country": "ドイツ", "City": "ベルリン", "Date": "05/23/2011", "UnitsSold": 204 },
{ "ProductCategory": "バイク", "UnitPrice": 60.848, "SellerName": "Antonio Charbonneau", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "05/24/2011", "UnitsSold": 118 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 68.708, "SellerName": "Walter Pang", "Country": "アメリカ", "City": "ニューヨーク", "Date": "06/01/2011", "UnitsSold": 17 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 40.680, "SellerName": "Walter Pang", "Country": "イギリス", "City": "ロンドン", "Date": "06/03/2011", "UnitsSold": 312 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 96.900, "SellerName": "Lydia Burson", "Country": "日本", "City": "東京", "Date": "06/12/2011", "UnitsSold": 283 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 67.031, "SellerName": "Benjamin Dupree", "Country": "ドイツ", "City": "ベルリン", "Date": "06/13/2011", "UnitsSold": 460 },
{ "ProductCategory": "バイク", "UnitPrice": 67.092, "SellerName": "Howard Sprouse", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "06/14/2011", "UnitsSold": 295 },
{ "ProductCategory": "バイク", "UnitPrice": 28.048, "SellerName": "Alfredo Fetuchini", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "06/15/2011", "UnitsSold": 49 },
{ "ProductCategory": "バイク", "UnitPrice": 7.383, "SellerName": "Russell Shorter", "Country": "ドイツ", "City": "ベルリン", "Date": "06/24/2011", "UnitsSold": 127 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 39.219, "SellerName": "Mark Slater", "Country": "イギリス", "City": "バーミンガム", "Date": "06/27/2011", "UnitsSold": 244 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 53.418, "SellerName": "Harold Garvin", "Country": "日本", "City": "大阪", "Date": "07/01/2011", "UnitsSold": 188 },
{ "ProductCategory": "バイク", "UnitPrice": 25.523, "SellerName": "Benjamin Dupree", "Country": "ドイツ", "City": "ハンブルグ", "Date": "07/06/2011", "UnitsSold": 458 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 70.257, "SellerName": "Nicholas Carmona", "Country": "アメリカ", "City": "シカゴ", "Date": "07/08/2011", "UnitsSold": 448 },
{ "ProductCategory": "バイク", "UnitPrice": 7.636, "SellerName": "Harold Garvin", "Country": "ブルガリア", "City": "ソフィア", "Date": "07/27/2011", "UnitsSold": 226 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 21.512, "SellerName": "Benjamin Dupree", "Country": "日本", "City": "大阪", "Date": "08/01/2011", "UnitsSold": 474 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 37.596, "SellerName": "David Haley", "Country": "アメリカ", "City": "ミネアポリス", "Date": "08/02/2011", "UnitsSold": 338 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 99.364, "SellerName": "Benjamin Meekins", "Country": "ブルガリア", "City": "ソフィア", "Date": "08/02/2011", "UnitsSold": 88 },
{ "ProductCategory": "バイク", "UnitPrice": 72.232, "SellerName": "Carl Costello", "Country": "ブルガリア", "City": "プロブディブ", "Date": "08/04/2011", "UnitsSold": 436 },
{ "ProductCategory": "衣服", "UnitPrice": 34.253, "SellerName": "Nicholas Carmona", "Country": "ブルガリア", "City": "ソフィア", "Date": "08/06/2011", "UnitsSold": 297 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 46.885, "SellerName": "Russell Shorter", "Country": "ブルガリア", "City": "ソフィア", "Date": "08/07/2011", "UnitsSold": 240 },
{ "ProductCategory": "バイク", "UnitPrice": 26.369, "SellerName": "Stanley Brooker", "Country": "ブルガリア", "City": "ソフィア", "Date": "08/07/2011", "UnitsSold": 415 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 49.072, "SellerName": "David Haley", "Country": "アメリカ", "City": "クランバリ", "Date": "08/08/2011", "UnitsSold": 435 },
{ "ProductCategory": "バイク", "UnitPrice": 95.058, "SellerName": "Monica Freitag", "Country": "イギリス", "City": "オックスフォード", "Date": "08/16/2011", "UnitsSold": 64 },
{ "ProductCategory": "衣服", "UnitPrice": 74.181, "SellerName": "John Smith", "Country": "日本", "City": "東京", "Date": "08/23/2011", "UnitsSold": 21 },
{ "ProductCategory": "衣服", "UnitPrice": 82.506, "SellerName": "Benjamin Dupree", "Country": "イギリス", "City": "リバプール", "Date": "08/25/2011", "UnitsSold": 467 },
{ "ProductCategory": "バイク", "UnitPrice": 42.773, "SellerName": "Lydia Burson", "Country": "日本", "City": "横浜", "Date": "09/02/2011", "UnitsSold": 98 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 83.472, "SellerName": "Russell Shorter", "Country": "アメリカ", "City": "アトランタ", "Date": "09/04/2011", "UnitsSold": 370 },
{ "ProductCategory": "バイク", "UnitPrice": 41.552, "SellerName": "Walter Pang", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "09/05/2011", "UnitsSold": 94 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 74.118, "SellerName": "Benjamin Dupree", "Country": "ドイツ", "City": "ハンブルグ", "Date": "09/09/2011", "UnitsSold": 106 },
{ "ProductCategory": "バイク", "UnitPrice": 75.404, "SellerName": "Claudia Kobayashi", "Country": "ドイツ", "City": "ベルリン", "Date": "09/11/2011", "UnitsSold": 261 },
{ "ProductCategory": "衣服", "UnitPrice": 10.227, "SellerName": "Howard Sprouse", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "09/17/2011", "UnitsSold": 307 },
{ "ProductCategory": "バイク", "UnitPrice": 72.929, "SellerName": "Harry Tyler", "Country": "アメリカ", "City": "ニューヨーク", "Date": "09/17/2011", "UnitsSold": 362 },
{ "ProductCategory": "バイク", "UnitPrice": 85.133, "SellerName": "Benjamin Meekins", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "09/24/2011", "UnitsSold": 330 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 77.595, "SellerName": "Walter Pang", "Country": "イギリス", "City": "オックスフォード", "Date": "09/26/2011", "UnitsSold": 23 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 50.362, "SellerName": "David Haley", "Country": "日本", "City": "東京", "Date": "09/27/2011", "UnitsSold": 392 },
{ "ProductCategory": "バイク", "UnitPrice": 32.290, "SellerName": "Larry Lieb", "Country": "日本", "City": "東京", "Date": "10/13/2011", "UnitsSold": 16 },
{ "ProductCategory": "衣服", "UnitPrice": 62.986, "SellerName": "Lydia Burson", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "10/13/2011", "UnitsSold": 100 },
{ "ProductCategory": "バイク", "UnitPrice": 13.441, "SellerName": "Carl Costello", "Country": "イギリス", "City": "ケンブリッジ", "Date": "10/22/2011", "UnitsSold": 132 },
{ "ProductCategory": "バイク", "UnitPrice": 0.361, "SellerName": "Nicholas Carmona", "Country": "アメリカ", "City": "シアトル", "Date": "10/22/2011", "UnitsSold": 22 },
{ "ProductCategory": "バイク", "UnitPrice": 66.237, "SellerName": "Walter Pang", "Country": "ブルガリア", "City": "プロブディブ", "Date": "11/02/2011", "UnitsSold": 96 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 50.146, "SellerName": "Elisa Longbottom", "Country": "ドイツ", "City": "ベルリン", "Date": "11/03/2011", "UnitsSold": 76 },
{ "ProductCategory": "バイク", "UnitPrice": 67.883, "SellerName": "Stanley Brooker", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "11/04/2011", "UnitsSold": 492 },
{ "ProductCategory": "衣服", "UnitPrice": 6.553, "SellerName": "Harry Tyler", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "11/08/2011", "UnitsSold": 49 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 35.553, "SellerName": "Russell Shorter", "Country": "ブルガリア", "City": "プロブディブ", "Date": "11/12/2011", "UnitsSold": 197 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 59.927, "SellerName": "Howard Sprouse", "Country": "イギリス", "City": "バーミンガム", "Date": "11/12/2011", "UnitsSold": 484 },
{ "ProductCategory": "バイク", "UnitPrice": 67.355, "SellerName": "Russell Shorter", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "11/13/2011", "UnitsSold": 182 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 51.975, "SellerName": "Alfredo Fetuchini", "Country": "日本", "City": "大阪", "Date": "11/15/2011", "UnitsSold": 42 },
{ "ProductCategory": "衣服", "UnitPrice": 66.674, "SellerName": "Brandon Mckim", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "11/19/2011", "UnitsSold": 109 },
{ "ProductCategory": "バイク", "UnitPrice": 56.137, "SellerName": "Harold Garvin", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "11/23/2011", "UnitsSold": 310 },
{ "ProductCategory": "衣服", "UnitPrice": 93.530, "SellerName": "Monica Freitag", "Country": "ブルガリア", "City": "ソフィア", "Date": "01/03/2012", "UnitsSold": 306 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 9.533, "SellerName": "Harold Garvin", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "01/06/2012", "UnitsSold": 290 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 41.117, "SellerName": "Monica Freitag", "Country": "アメリカ", "City": "クランバリ", "Date": "01/10/2012", "UnitsSold": 499 },
{ "ProductCategory": "衣服", "UnitPrice": 9.799, "SellerName": "Kathe Pettel", "Country": "イギリス", "City": "ケンブリッジ", "Date": "01/11/2012", "UnitsSold": 7 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 64.580, "SellerName": "Nicholas Carmona", "Country": "日本", "City": "横浜", "Date": "01/14/2012", "UnitsSold": 220 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 47.282, "SellerName": "Elisa Longbottom", "Country": "ブルガリア", "City": "ソフィア", "Date": "01/15/2012", "UnitsSold": 395 },
{ "ProductCategory": "衣服", "UnitPrice": 14.609, "SellerName": "Lydia Burson", "Country": "イギリス", "City": "リバプール", "Date": "01/18/2012", "UnitsSold": 219 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 10.681, "SellerName": "Larry Lieb", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "01/18/2012", "UnitsSold": 229 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 64.914, "SellerName": "Nicholas Carmona", "Country": "日本", "City": "大阪", "Date": "01/22/2012", "UnitsSold": 111 },
{ "ProductCategory": "バイク", "UnitPrice": 47.909, "SellerName": "Alfredo Fetuchini", "Country": "イギリス", "City": "ケンブリッジ", "Date": "02/01/2012", "UnitsSold": 237 },
{ "ProductCategory": "バイク", "UnitPrice": 87.815, "SellerName": "Claudia Kobayashi", "Country": "ブルガリア", "City": "ソフィア", "Date": "02/13/2012", "UnitsSold": 114 },
{ "ProductCategory": "衣服", "UnitPrice": 55.404, "SellerName": "Bryan Culver", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "02/23/2012", "UnitsSold": 329 },
{ "ProductCategory": "衣服", "UnitPrice": 40.755, "SellerName": "Howard Sprouse", "Country": "アメリカ", "City": "サクラメント", "Date": "02/24/2012", "UnitsSold": 135 },
{ "ProductCategory": "バイク", "UnitPrice": 57.827, "SellerName": "Harold Garvin", "Country": "イギリス", "City": "ロンドン", "Date": "03/02/2012", "UnitsSold": 187 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 14.764, "SellerName": "David Haley", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "03/10/2012", "UnitsSold": 286 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 12.991, "SellerName": "Antonio Charbonneau", "Country": "アメリカ", "City": "サクラメント", "Date": "03/11/2012", "UnitsSold": 468 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 26.013, "SellerName": "Monica Freitag", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "03/18/2012", "UnitsSold": 71 },
{ "ProductCategory": "バイク", "UnitPrice": 72.623, "SellerName": "Bryan Culver", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "03/21/2012", "UnitsSold": 251 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 44.430, "SellerName": "Monica Freitag", "Country": "ブルガリア", "City": "プロブディブ", "Date": "03/25/2012", "UnitsSold": 297 },
{ "ProductCategory": "バイク", "UnitPrice": 68.192, "SellerName": "Alfredo Fetuchini", "Country": "日本", "City": "大阪", "Date": "03/25/2012", "UnitsSold": 248 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 35.301, "SellerName": "Elisa Longbottom", "Country": "日本", "City": "横浜", "Date": "03/26/2012", "UnitsSold": 488 },
{ "ProductCategory": "衣服", "UnitPrice": 41.079, "SellerName": "Alfredo Fetuchini", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "04/06/2012", "UnitsSold": 211 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 29.287, "SellerName": "Stanley Brooker", "Country": "日本", "City": "大阪", "Date": "04/14/2012", "UnitsSold": 149 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 51.960, "SellerName": "Lydia Burson", "Country": "ブルガリア", "City": "ソフィア", "Date": "04/14/2012", "UnitsSold": 99 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 57.838, "SellerName": "Benjamin Meekins", "Country": "ブルガリア", "City": "プロブディブ", "Date": "04/16/2012", "UnitsSold": 225 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 25.879, "SellerName": "Nicholas Carmona", "Country": "イギリス", "City": "オックスフォード", "Date": "04/27/2012", "UnitsSold": 408 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 4.930, "SellerName": "Benjamin Meekins", "Country": "ドイツ", "City": "ベルリン", "Date": "05/09/2012", "UnitsSold": 417 },
{ "ProductCategory": "衣服", "UnitPrice": 3.035, "SellerName": "Alfredo Fetuchini", "Country": "アメリカ", "City": "クランバリ", "Date": "05/24/2012", "UnitsSold": 221 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 57.525, "SellerName": "Mark Slater", "Country": "アメリカ", "City": "シカゴ", "Date": "06/02/2012", "UnitsSold": 288 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 72.260, "SellerName": "Bryan Culver", "Country": "アメリカ", "City": "クランバリ", "Date": "06/03/2012", "UnitsSold": 372 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 82.533, "SellerName": "Kathe Pettel", "Country": "日本", "City": "東京", "Date": "06/03/2012", "UnitsSold": 408 },
{ "ProductCategory": "衣服", "UnitPrice": 91.596, "SellerName": "Benjamin Dupree", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "06/04/2012", "UnitsSold": 13 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 94.668, "SellerName": "Benjamin Dupree", "Country": "ブルガリア", "City": "プロブディブ", "Date": "06/05/2012", "UnitsSold": 487 },
{ "ProductCategory": "衣服", "UnitPrice": 46.269, "SellerName": "Benjamin Dupree", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "06/11/2012", "UnitsSold": 276 },
{ "ProductCategory": "バイク", "UnitPrice": 18.243, "SellerName": "Howard Sprouse", "Country": "イギリス", "City": "オックスフォード", "Date": "06/16/2012", "UnitsSold": 490 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 48.753, "SellerName": "Harold Garvin", "Country": "日本", "City": "東京", "Date": "06/18/2012", "UnitsSold": 238 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 94.427, "SellerName": "David Haley", "Country": "ブルガリア", "City": "ソフィア", "Date": "06/23/2012", "UnitsSold": 170 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 48.675, "SellerName": "Brandon Mckim", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "07/04/2012", "UnitsSold": 132 },
{ "ProductCategory": "バイク", "UnitPrice": 82.680, "SellerName": "Mark Slater", "Country": "ブルガリア", "City": "ソフィア", "Date": "07/05/2012", "UnitsSold": 443 },
{ "ProductCategory": "バイク", "UnitPrice": 38.192, "SellerName": "Benjamin Dupree", "Country": "ドイツ", "City": "ハンブルグ", "Date": "07/05/2012", "UnitsSold": 368 },
{ "ProductCategory": "バイク", "UnitPrice": 24.194, "SellerName": "Harold Garvin", "Country": "アメリカ", "City": "シカゴ", "Date": "07/11/2012", "UnitsSold": 39 },
{ "ProductCategory": "バイク", "UnitPrice": 3.989, "SellerName": "Alfredo Fetuchini", "Country": "ブルガリア", "City": "プロブディブ", "Date": "07/13/2012", "UnitsSold": 95 },
{ "ProductCategory": "衣服", "UnitPrice": 81.770, "SellerName": "Benjamin Meekins", "Country": "日本", "City": "大阪", "Date": "07/14/2012", "UnitsSold": 42 },
{ "ProductCategory": "バイク", "UnitPrice": 74.867, "SellerName": "Brandon Mckim", "Country": "日本", "City": "東京", "Date": "07/16/2012", "UnitsSold": 200 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 85.467, "SellerName": "Monica Freitag", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "07/16/2012", "UnitsSold": 221 },
{ "ProductCategory": "衣服", "UnitPrice": 96.415, "SellerName": "Larry Lieb", "Country": "アメリカ", "City": "クランバリ", "Date": "07/21/2012", "UnitsSold": 54 },
{ "ProductCategory": "衣服", "UnitPrice": 46.199, "SellerName": "Lydia Burson", "Country": "ブルガリア", "City": "プロブディブ", "Date": "07/21/2012", "UnitsSold": 173 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 99.843, "SellerName": "Lydia Burson", "Country": "イギリス", "City": "オックスフォード", "Date": "07/23/2012", "UnitsSold": 47 },
{ "ProductCategory": "バイク", "UnitPrice": 42.354, "SellerName": "Kathe Pettel", "Country": "アメリカ", "City": "シカゴ", "Date": "07/26/2012", "UnitsSold": 173 },
{ "ProductCategory": "バイク", "UnitPrice": 52.198, "SellerName": "Claudia Kobayashi", "Country": "ドイツ", "City": "ベルリン", "Date": "08/05/2012", "UnitsSold": 323 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 45.456, "SellerName": "Russell Shorter", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "08/07/2012", "UnitsSold": 264 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 56.771, "SellerName": "Mark Slater", "Country": "日本", "City": "東京", "Date": "08/09/2012", "UnitsSold": 385 },
{ "ProductCategory": "バイク", "UnitPrice": 3.565, "SellerName": "Harry Tyler", "Country": "ブルガリア", "City": "ソフィア", "Date": "08/10/2012", "UnitsSold": 56 },
{ "ProductCategory": "バイク", "UnitPrice": 34.601, "SellerName": "Benjamin Dupree", "Country": "ドイツ", "City": "ベルリン", "Date": "08/12/2012", "UnitsSold": 267 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 92.402, "SellerName": "Monica Freitag", "Country": "アメリカ", "City": "シアトル", "Date": "08/14/2012", "UnitsSold": 109 },
{ "ProductCategory": "衣服", "UnitPrice": 34.719, "SellerName": "Mark Slater", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "08/17/2012", "UnitsSold": 478 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 23.335, "SellerName": "Claudia Kobayashi", "Country": "ドイツ", "City": "ハイデルブルグ", "Date": "08/21/2012", "UnitsSold": 184 },
{ "ProductCategory": "バイク", "UnitPrice": 79.522, "SellerName": "Brandon Mckim", "Country": "ドイツ", "City": "ハンブルグ", "Date": "08/21/2012", "UnitsSold": 132 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 30.645, "SellerName": "Nicholas Carmona", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "08/22/2012", "UnitsSold": 142 },
{ "ProductCategory": "バイク", "UnitPrice": 89.887, "SellerName": "Carl Costello", "Country": "ブルガリア", "City": "ソフィア", "Date": "08/27/2012", "UnitsSold": 46 },
{ "ProductCategory": "バイク", "UnitPrice": 83.189, "SellerName": "Walter Pang", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "09/03/2012", "UnitsSold": 102 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 0.103, "SellerName": "Russell Shorter", "Country": "日本", "City": "横浜", "Date": "09/09/2012", "UnitsSold": 21 },
{ "ProductCategory": "衣服", "UnitPrice": 36.629, "SellerName": "Monica Freitag", "Country": "イギリス", "City": "オックスフォード", "Date": "09/10/2012", "UnitsSold": 442 },
{ "ProductCategory": "衣服", "UnitPrice": 92.308, "SellerName": "Harry Tyler", "Country": "ウルグアイ", "City": "モンテビデオ", "Date": "09/13/2012", "UnitsSold": 254 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 28.009, "SellerName": "Nicholas Carmona", "Country": "イギリス", "City": "バーミンガム", "Date": "09/13/2012", "UnitsSold": 251 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 60.301, "SellerName": "Antonio Charbonneau", "Country": "ブルガリア", "City": "プロブディブ", "Date": "09/15/2012", "UnitsSold": 119 },
{ "ProductCategory": "バイク", "UnitPrice": 33.007, "SellerName": "Claudia Kobayashi", "Country": "ウルグアイ", "City": "シウダッド・デ・ラ・コスタ", "Date": "09/19/2012", "UnitsSold": 256 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 99.002, "SellerName": "John Smith", "Country": "日本", "City": "大阪", "Date": "09/23/2012", "UnitsSold": 456 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 16.174, "SellerName": "Kathe Pettel", "Country": "アメリカ", "City": "メルビル", "Date": "10/01/2012", "UnitsSold": 430 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 72.899, "SellerName": "David Haley", "Country": "日本", "City": "横浜", "Date": "10/02/2012", "UnitsSold": 248 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 21.662, "SellerName": "Harold Garvin", "Country": "イギリス", "City": "ケンブリッジ", "Date": "10/18/2012", "UnitsSold": 440 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 28.342, "SellerName": "Howard Sprouse", "Country": "日本", "City": "大阪", "Date": "10/19/2012", "UnitsSold": 234 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 80.468, "SellerName": "Benjamin Meekins", "Country": "日本", "City": "横浜", "Date": "10/25/2012", "UnitsSold": 36 },
{ "ProductCategory": "アクセサリー", "UnitPrice": 97.686, "SellerName": "Harry Tyler", "Country": "アメリカ", "City": "シカゴ", "Date": "10/26/2012", "UnitsSold": 46 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 88.700, "SellerName": "Elisa Longbottom", "Country": "ブルガリア", "City": "プロブディブ", "Date": "11/02/2012", "UnitsSold": 211 },
{ "ProductCategory": "衣服", "UnitPrice": 67.261, "SellerName": "Walter Pang", "Country": "日本", "City": "横浜", "Date": "11/17/2012", "UnitsSold": 408 },
{ "ProductCategory": "コンポーネント", "UnitPrice": 7.145, "SellerName": "Walter Pang", "Country": "ブルガリア", "City": "ソフィア", "Date": "11/20/2012", "UnitsSold": 376 }];